diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4c1ac889715..d764006fdcc 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,7 +3,7 @@
 #
 # 21st September 2010 Ben Morgan
 #
-# $Id: CMakeLists.txt 89062 2015-03-18 10:10:02Z gcosmo $
+# $Id: CMakeLists.txt 90844 2015-06-10 10:03:56Z gcosmo $
 #
 
 #------------------------------------------------------------------------------
@@ -72,10 +72,10 @@ set(CMAKE_MODULE_PATH
 # See the documentation in each of these modules for further details.
 #
 # - Versioning. We do this here for now
-set(${PROJECT_NAME}_VERSION "10.1.1")
+set(${PROJECT_NAME}_VERSION "10.1.2")
 set(${PROJECT_NAME}_VERSION_MAJOR "10")
 set(${PROJECT_NAME}_VERSION_MINOR "1")
-set(${PROJECT_NAME}_VERSION_PATCH "1")
+set(${PROJECT_NAME}_VERSION_PATCH "2")
 
 # - Provide dependent options as these are needed for some Geant4 features
 include(CMakeDependentOption)
diff --git a/ReleaseNotes/Patch4.10.1-2.txt b/ReleaseNotes/Patch4.10.1-2.txt
new file mode 100644
index 00000000000..5236a04d5f5
--- /dev/null
+++ b/ReleaseNotes/Patch4.10.1-2.txt
@@ -0,0 +1,273 @@
+
+                 Geant4 10.1 - patch-02 Release Notes
+                 ------------------------------------
+
+                                                            19 June 2015
+
+List of fixes included in this public patch since the public release 10.1.p01:
+
+  o Configuration:
+    -------------
+    + CMake:
+      o Added extensions to allow use of system CLHEP granular libraries.
+        Provide new advanced option GEANT4_USE_SYSTEM_CLHEP_GRANULAR, which can
+        be set to enable use of CLHEP granular libraries from the system; when
+        activated, use new FindCLHEP interface to search for Geant4's required
+        Export and document a new variable "Geant4_system_clhep_ISGRANULAR" that
+        clients can query to check whether the system CLHEP was linked in granular
+        mode. Support CLHEP granular library listing in '--libs' argument.
+        Added CLHEP_ROOT_DIR to CMake cache, allowing it to be edited in the
+        CMake curses/GUI.
+      o Updated AppleClang version regex to properly parse LLVM version
+        number in Xcode 6.3.
+      o Corrected Qt5 settings for test applications.
+      o Added '-no-gcc' compilation option for Intel-icc compiler.
+    + GNUMake:
+      o Updated CPPFLAGS for Linux-icc and WIN32-g++ configurations.
+
+  o Analysis:
+    --------
+    + Updated to g4tools 1.17.2: changes for Windows (MinGW) to use '_MSC_VER'
+      in place of 'WIN32' flag. Addressing problem report #1721.
+
+  o Event:
+    -----
+    + Increased level of verbosity of /gps/verbose command.
+      /gps/verbose now acts globally on all sources in case of multiple ones
+      (no need to activate verbosity for each source).
+      Protecting the command /gps/source/set in case of out-of-bound index.
+      Addressing problem report #1744.
+    + Clean up code and removed not needed thread-local data that 
+      need to be shared for UI commands to work properly.
+    + Fixes for Coverity defects.
+
+  o Externals:
+    ---------
+    + CLHEP:
+      o Fixed usage of std::abs() in RandGaussZiggurat.
+      o Moved static methods handling static data in G4RandGauss from inline
+        to source. Addressing problem report #1754.
+      o Switch off warnings for deprecated calls to auto_ptr in Utility headers.
+    + USolids:
+      o Corrected string returned as type-ID by GetEntityType() to conform
+        to shape kind in: UExtrudedSolid, UMultiUnion, UQuadrangularFacet,
+        UTessellatedSolid, UTrap, UTriangularFacet and UVCSGfaceted.
+      o Replaced Exception IDs in UUtils to avoid clashes with wild global
+        extern functions in Root.
+      o UVector3: made data private and defined accessors x(), y() and z().
+        Made implementations operators +(), -(), *(), and /() inline.
+        Adapted all classes to the change.
+      o Fixed DistanceToOut(p) and Inside(p) in USphere for sphere cut in theta
+        for point (0,0,0) and for cases when Start/End angle have not to be taken
+        in account (STheta==0 || eTheta==pi).
+      o Added method GetPointOnEdge() to UBox.
+      o Fixed Coverity defect for unused variable quantity in UCons.
+      o Some code cleanup and minor fixes...
+
+  o Geometry:
+    --------
+    + divisions:
+      o G4VDivisionParameterisation: avoid creation/deletion of rotation matrix
+        for ChangeRotMatrix(). Addressing problem report #1743.
+      o Fixed Coverity defect in G4ReplicatedSlice for uninitialised pointer.
+    + management:
+      o Added streaming operator <<() to G4AffineTransform.
+      o Removed unused data-member in G4LogicalVolume, and fixed minor
+        Coverity defect for unitialised member 'fBiasWeight' in constructor.
+      o G4USolid: use accessors x(), y() and z() from UVector3, instead of
+        directly accessing its data-members.
+        Use scoped enum for EnumSide if c++11 enabled.
+    + navigation:
+      o Enabled ComputeStep() in navigation helper classes (Normal, Voxel,
+        and Parameterised) to recognise invalid points outside the mother
+        volume. Before it was not recognised, but used instead as a numeric
+        value (kInfinity). In case it was kInfinity, this meant the volume
+        could not be chosen, and the track never exited the volume. This
+        invalid response now triggers an immediate exit from the volume
+        and daughters do not need to be considered.
+        Use return value of motherSolid DistanceToOut(p,v), each time
+        that it is called. Correct 'invalid' answer ('kInfinity' or
+        negative) to zero.
+      o Improvements in G4PropagatorInField to enable identification of first
+        and last step in a volume, when tracking in a field.
+        Addressing old problem report #1032.
+        Added new methods to report looping and stuck tracks and correction
+        for roundoff issue.
+      o NavigationLogger: added method for Reporting a point is outside the
+        mother volume: CheckAndReportBadNormal(), CheckDaughterEntryPoint().
+      o G4AuxiliaryNavigationServices: optimised to reuse dot product, rather
+        than recomputing; added optional printout (protected by debug flag).
+      o G4VIntersectionLocator: added PrintStatus() method with additional
+        ostringstream argument.
+      o Code cleanup and various minor fixes.
+    + solids/Boolean:
+      o G4UMultiUnion: use accessors x(), y() and z() from UVector3, instead
+        of directly accessing its data-members.
+    + solids/CSG:
+      o Fixed calculation of Normal in G4Para for kPX and kMX sides in
+        DistanceToOut(p,v) and ApproxSurfaceNormal(p).
+        Addressing problem report #1736.
+      o Fixed DistanceToOut(p) and Inside(p) in G4Sphere for sphere cut in theta
+        for point (0,0,0) and for cases when Start/End angle have not to be taken
+        in account (STheta==0 || eTheta==pi).
+        Added corresponding test cases to unit test for testG4Sphere.
+        Fix triggered by analysing setup provided in problem report #1702.
+      o Use accessors x(), y() and z() from UVector3 in USolids wrappers, instead
+        of directly accessing its data-members.
+      o Fixed Coverity defect for unused variable quantity in G4Cons.
+    + solids/specific:
+      o Use accessors x(), y() and z() from UVector3 in USolids wrappers, instead
+        of directly accessing its data-members.
+    + volumes:
+      o Simplified implementation in G4NavigationHistoryPool to make use of simple
+        stack of free entries. Pre-allocate size of vectors and inlined GetLevels().
+        Also addressing problem report #1730.
+
+  o Generic Processes:
+    -----------------
+    + Transportation:
+      o G4Transportation, G4CoupledTransportation: added ability to identify last
+        step in volume for the case of propagation in field.
+        Addresses old problem report #1032.
+
+  o Global:
+    ------
+    + Fix in G4StatDouble to return RMS 0 instead of -1 in the case the number
+      of entries is below 2 (fixes arithmetic exceptions in examples for run
+      with 1 event only).
+    + Fixed bug in G4CacheReference::Destroy(); modified behavior to identify
+      internal inconsistencies and throw exception.
+    + Added copy constructor and assignment operator to G4Cache.
+      Addressing problem report #1739.
+    + Corrected logic for use of TLS on clang compiler for the Random module.
+    + Added guard against potential loop in G4RandomTools::G4LambertianRand().
+    + Added "g/mole" Molar mass definition to G4UnitsTable.
+    + Define G4THREADSLEEP(tick) macro in G4Threading.hh also for sequential
+      builds.
+    + Updated date and version for 10.1.p02.
+
+  o Materials:
+    ---------
+    + G4NistManager: corrected printout of elements and materials.
+      Addressing problem report #1747.
+
+  o Persistency:
+    -----------
+    + GDML:
+      o Added missing "dichroic" surface model for optical property,
+        consistent with addition done since release 10.0.
+      o Avoid use of standard evaluator for import of units; adopt G4UnitsTable
+        instead, in order to avoid loss of precision due to unit's conversion.
+      o Correction for optional stripping of world-volume.
+      o Corrected parsing of shape type-ID for MultiUnion in G4GDMLWriteSolids.
+      o Improved text in G4Exception for failed import of file in G4GDMLRead.
+      o Fixed non-initialised boolean flag in G4GDMLRead, reported by Coverity.
+
+  o Physics Lists:
+    -------------
+    + constructors/gamma_lepto_nuclear:
+      o G4EmExtraPhysics, G4EmMessenger: clean up messenger and added new
+        UI commands. Addresses problem report #1752.
+      o Fixed Coverity defects.
+
+  o Processes - Electromagnetic:
+    ---------------------------
+    + dna:
+      o Fixed reproducibility of the chemistry module.
+      o Fixed bug for "no reaction table found"; new class G4ITReaction.
+      o Added Fe56 into G4DNARuddIonisationExtendedModel.
+      o BornIonisation: corrected array cleaning.
+      o ScreenRutherfordElastic: corrected retrieval of water density.
+      o Added missing virtual GetValue() method in G4DNAChemistryManager.
+      o Removed "virtual" keyword when accessing position in G4IT.
+      o G4shared_ptr refers to std::shared_ptr when C++11 is activated.
+      o Some code cleanup.
+    + high-energy:
+      o G4eeTo3PiModel: do not use default constructor for G4LorentzVector.
+    + low-energy:
+      o G4LivermorePhotoElectricModel: implemented protection to avoid rare
+        precision lost in de-excitation.
+      o G4EMDataSet: fixed Coverity defects.
+    + standard:
+      o G4WentzelVIModel: repeat check on safety for new steps.
+        In SampleScattering optimized use of random engine.
+      o G4UniversalFluctuation, G4KleinNishinaCompton, G4KleinNishinaModel:
+        define local pointer to random engine.
+      o G4WentzelOKandVIxSection: improved angular sampling.
+      o G4KleinNishinaModel, G4WentzelOKandVIxSection: accurate initialisation
+        of G4ThreeVectors and G4LorentzVector in constructors.
+      o G4PAIModel, G4PAIModelData, G4PAIPhotModel, G4PAIPhotModelData: fixed
+        initialisation of cuts to happen only in run-time methods; added copy
+        of vector of G4MaterialCutsCouple from master to worker threads.
+        Addresses problem report #1731.
+    + utils:
+      o G4VMultipleScattering, G4VMscModel, G4VEmAngularDistribution: accurate
+        initialisation of G4ThreeVectors and G4LorentzVector in constructors.
+
+  o Processes - Hadronic:
+    --------------------
+    + cross_sections:
+      o G4ComponentGGHadronNucleusXsc: extended applicability for kaons down
+        to 0.1*MeV.
+    + models/binary_cascade:
+      o Use const address as argument to typeid() in method
+        G4BinaryCascade::DebugApplyCollisionFail(), fixing compilation
+        warning on clang-3.6.
+    + models/cascade:
+      o G4PreCompoundDeexcitation: properly delete precompound products (i.e.
+        G4ReactionProduct objects). Fixes issue of constant memory growth in
+        the use of G4Allocator. Also addressing problem report #1735.
+    + models/de_excitation:
+      o G4NeutronRadCapture: added check on initial kinematics for all isotopes;
+        proper initialisation of G4LorentzVector in class constructor, fixed
+        Coverity reports.
+    + models/parton_string:
+      o G4FTFParticipants: added a new method to clean up the member vector;
+        using the above new method in G4FTFModel::GetStrings() to release
+        memory allocated and otherwise leaked; reduces observed memory growth
+        in use of G4Allocator. Also addressing problem report #1735.
+      o G4FTFModel: fixed bug in the method SamplingNucleonKinematics().
+        Addressing problem report #1741.
+        Fixed energy non-conservation in nucleus-nucleus interactions.
+      o G4FTFParameters: fixed bug in nucleon-nucleon cross-section, and
+        added protection against zero inelastic cross-section.
+    + models/pre_equilibrium:
+      o G4PreCompoundTransition: added protection against numerical problem
+        due too high excitation energy; use G4Log and G4Exp instead of G4Pow;
+        cleanup sampling of number of charged excitons.
+      o Fixed Coverity defects and some code cleanup.
+    + models/quasi_elastic:
+      o Code cleanup: removed unneeded statics and thread-local variables.
+    + models/theo_high_energy:
+      o Updated according to new quasi-elastic code cleanup.
+
+  o Track
+    -----
+    + Improved G4ParticleChangeForTransport by adding update for FirstStep
+      in volume. Also addressing problem report #1715.
+
+  o Examples:
+    --------
+    + Updated reference outputs.
+    + extended/electromagnetic/TestEm8:
+      o PhysicsList: fix in configuration of models per G4Region in MT mode.
+        Addressing problem report #1731.
+      o Run: added protection against numerical exception for run
+        with 0 or 1 events
+
+ ----------------------------------------------------------------------------
+
+                             Technical Notes
+                             --------------- 
+
+  o  This patch should be applied on top of release 10.1 or 10.1.p01.
+  o  Technical notes distributed for release 10.1 are also applicable and
+     valid for this patch.
+
+The code and rebuilt binary libraries for release 10.1.p02 are available
+through our "Download" Web page:
+   http://cern.ch/geant4/support/download.shtml
+
+Please refer to the Geant4 User Documentation:
+   http://cern.ch/geant4/support/userdocuments.shtml
+for further information about using Geant4.
diff --git a/cmake/History b/cmake/History
index 4620f2d0b9d..551b2ae4803 100644
--- a/cmake/History
+++ b/cmake/History
@@ -31,6 +31,66 @@ add this in the documentation for the changed file as [BUGFIX #BUGNUMBER].
 
      ----------------------------------------------------------
 
+8th June 2015 - Ben Morgan (cmake-V10-00-41)
+- Templates/Geant4Config.cmake.in : Always re-find Qt5 via find_package
+  if Geant4 was configured with Qt5 support. Qt5 libraries are in
+  public link interface of G4interfaces and G4OpenGL whether or not it
+  is activated for an application, so must always be linked. Without
+  refinding, dangling imported targets are left in the link interfaces 
+  of G4interfaces and G4OpenGL.
+
+5th May 2015 - Ben Morgan (cmake-V10-00-40)
+- Modules/Geant4ConfigureModulefile.cmake : Genarate a modulefile
+  for the build tree. Requested by developers, but otherwise unsupported.
+- Templates/geant4-modulefile.in : Update export variables to allow
+  transparent configuration of build/install tree versions.
+
+29th April 2015 - Ben Morgan
+- Modules/Geant4MakeRules_cxx.cmake: Add `-no-gcc` to CMAKE_CXX_FLAGS
+  when using Intel compiler. This is temporary fix to give
+  matching flags against old GNUmake build. It requires further checks
+  to understand full behaviour of this flag to tune code versus
+  Intel's `-gcc-sys` flag and `__INTEL_COMPILER` macro.
+
+22nd April 2015 - Ben Morgan
+- Modules/FindCLHEP.cmake: Add CLHEP_ROOT_DIR to CMake cache, allowing
+  it to be editted in the CMake curses/GUI. Use unset command to remove
+  LIBRARY and INCLUDE_DIR variables for CLHEP from the cache when
+  CLHEP_ROOT_DIR is changed.
+- Templates/geant4-env-skeleton.in: Add expansion entry for CLHEP library
+  path
+- Modules/Geant4ToolchainBackwardCompatibility.cmake: Export setting
+  of dynamic library path to prepend system CLHEP's library path in
+  geant4.(c)sh
+
+17th April 2015 - Ben Morgan
+- Fixes for JIRA DEV-185 (Allow use of system CLHEP granular libraries)
+- Modules/FindCLHEP.cmake: Allow component arguments to be supplied to
+  find_package, each component being a CLHEP granular library. Support
+  dependencies between components, and fail on REQUIRED if any requested
+  component or dependency is not found. Set cache variables for each requested
+  component library, and fill CLHEP_LIBRARIES with the requested libraries
+- Modules/Geant4OptionalComponents.cmake: Provide new advanced option 
+  GEANT4_USE_SYSTEM_CLHEP_GRANULAR, which can be set to enable use of CLHEP
+  granular libraries from the system. When activated, use new FindCLHEP 
+  interface to search for Geant4's required components. 
+- Templates/Geant4Config.cmake.in: Export and document a new variable, 
+  Geant4_system_clhep_ISGRANULAR that clients can query to check whether
+  the system CLHEP was linked in granular mode.
+- Modules/Geant4ConfigureConfigScript.cmake: Process and export system CLHEP
+  library list to support either singular or granular CLHEP libraries.
+- Templates/geant4-config.in: Support CLHEP granular library listing in
+  '--libs' argument.
+- Modules/Geant4ToolchainBackwardCompatibility.cmake: Export CLHEP_LIB env var
+  to support use of system CLHEP libraries in granular mode.
+- Templates/geant4make-skeleton.in: Export CLHEP_LIB env var to support
+  system CLHEP libs in granular mode.
+
+15th April 2015 - Ben Morgan
+- Modules/Geant4MakeRules_cxx.cmake: Update AppleClang version regex for
+  Xcode 6.1. This version adds the patch number to the "based on LLVM"
+  id. The full version number is now derived.
+
 20th March 2015 - Gabriele Cosmo (cmake-V10-00-39)
 - Modules/Geant4MacroLibraryTargets.cmake: Added external G4geomUSolids
   library to static linkage list. Addressing problem report #1725.
diff --git a/cmake/Modules/FindCLHEP.cmake b/cmake/Modules/FindCLHEP.cmake
index 5ca94a56544..20a03d69b60 100644
--- a/cmake/Modules/FindCLHEP.cmake
+++ b/cmake/Modules/FindCLHEP.cmake
@@ -21,15 +21,15 @@
 # You can provide a minimum version number that should be used.
 # If you provide this version number and specify the REQUIRED attribute,
 # this module will fail if it can't find a CLHEP of the specified version
-# or higher. If you further specify the EXACT attribute, then this module 
+# or higher. If you further specify the EXACT attribute, then this module
 # will fail if it can't find a CLHEP with a version eaxctly as specified.
 #
 # ===========================================================================
 # Variables used by this module which can be used to change the default
 # behaviour, and hence need to be set before calling find_package:
 #
-#  CLHEP_ROOT_DIR        The preferred installation prefix for searching for 
-#                        CLHEP. Set this if the module has problems finding 
+#  CLHEP_ROOT_DIR        The preferred installation prefix for searching for
+#                        CLHEP. Set this if the module has problems finding
 #                        the proper CLHEP installation.
 #
 # If you don't supply CLHEP_ROOT_DIR, the module will search on the standard
@@ -37,8 +37,10 @@
 # program in the PATH, and if found will use the prefix supplied by this
 # program as a HINT on where to find the CLHEP headers and libraries.
 #
-# You can re-run CMake with a different version of CLHEP_ROOT_DIR to 
+# You can re-run CMake with a different version of CLHEP_ROOT_DIR to
 # force a new search for CLHEP using the new version of CLHEP_ROOT_DIR.
+# CLHEP_ROOT_DIR is cached and so can be editted in the CMake curses
+# and GUI interfaces
 #
 # ============================================================================
 # Variables set by this module:
@@ -58,7 +60,7 @@
 #  CLHEP_INCLUDE_DIR    The path to the CLHEP include directory: cached
 #
 #  CLHEP_LIBRARY        The path to the CLHEP library: cached
-# 
+#
 # You should not need to set these in the vast majority of cases
 #
 
@@ -66,35 +68,60 @@
 # Copyright (C) 2010,2011 Ben Morgan <Ben.Morgan@warwick.ac.uk>
 # Copyright (C) 2010,2011 University of Warwick
 # All rights reserved.
-# 
-# Redistribution and use in source and binary forms, with or without 
+#
+# Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
 #
-# * Redistributions of source code must retain the above copyright notice, 
+# * Redistributions of source code must retain the above copyright notice,
 #   this list of conditions and the following disclaimer.
 #
-# * Redistributions in binary form must reproduce the above copyright notice, 
-#   this list of conditions and the following disclaimer in the documentation 
+# * Redistributions in binary form must reproduce the above copyright notice,
+#   this list of conditions and the following disclaimer in the documentation
 #   and/or other materials provided with the distribution.
 #
-# * Neither the name of the University of Warwick nor the names of its 
-#   contributors may be used to endorse or promote products derived from 
+# * Neither the name of the University of Warwick nor the names of its
+#   contributors may be used to endorse or promote products derived from
 #   this software without specific prior written permission.
 #
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 
-# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
+# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
 #============================================================================
 
+#-----------------------------------------------------------------------
+# Define library components for use if requested
+#
+set(CLHEP_COMPONENTS
+  Cast
+  Evaluator
+  Exceptions
+  GenericFunctions
+  Geometry
+  Matrix
+  Random
+  RandomObjects
+  RefCount
+  Vector
+  )
+
+# - and their interdependencies (taken from CLHEP webpage, may not
+# be totally up to date, but assumed to be complete
+set(CLHEP_Geometry_REQUIRES Vector)
+set(CLHEP_Matrix_REQUIRES Random Vector)
+set(CLHEP_RandomObjects_REQUIRES Matrix Random Vector)
+set(CLHEP_RefCount_REQUIRES Cast)
+set(CLHEP_Exceptions_REQUIRES RefCount Cast)
+
+set(CLHEP_ROOT_DIR "${CLHEP_ROOT_DIR}" CACHE PATH "prefix of system CLHEP installation")
 
 #----------------------------------------------------------------------------
 # Enable re-search if known CLHEP_ROOT_DIR changes?
@@ -104,11 +131,22 @@ if(NOT "${CLHEP_ROOT_DIR}" STREQUAL "${CLHEP_INTERNAL_ROOT_DIR}")
         message(STATUS "CLHEP_ROOT_DIR Changed, Rechecking for CLHEP")
     endif()
 
-    set(CLHEP_INTERNAL_ROOT_DIR ${CLHEP_ROOT_DIR} 
+    set(CLHEP_INTERNAL_ROOT_DIR ${CLHEP_ROOT_DIR}
         CACHE INTERNAL "Last value supplied for where to locate CLHEP")
-    set(CLHEP_INCLUDE_DIR CLHEP_INCLUDE_DIR-NOTFOUND)
-    set(CLHEP_LIBRARY CLHEP_LIBRARY-NOTFOUND)
-    set(CLHEP_CONFIG_EXECUTABLE CLHEP_CONFIG_EXECUTABLE-NOTFOUND)
+      #set(CLHEP_INCLUDE_DIR CLHEP_INCLUDE_DIR-NOTFOUND)
+      #set(CLHEP_LIBRARY CLHEP_LIBRARY-NOTFOUND)
+      #foreach(__clhep_comp ${CLHEP_COMPONENTS})
+      #set(CLHEP_${__clhep_comp}_LIBRARY CLHEP_${__clhep_comp}_LIBRARY-NOTFOUND)
+      #endforeach()
+      #set(CLHEP_CONFIG_EXECUTABLE CLHEP_CONFIG_EXECUTABLE-NOTFOUND)
+    unset(CLHEP_INCLUDE_DIR CACHE)
+    unset(CLHEP_LIBRARY CACHE)
+    foreach(__clhep_comp ${CLHEP_COMPONENTS})
+      unset(CLHEP_${__clhep_comp}_LIBRARY CACHE)
+    endforeach()
+    unset(CLHEP_CONFIG_EXECUTABLE CACHE)
+
+
     set(CLHEP_LIBRARIES )
     set(CLHEP_INCLUDE_DIRS )
     set(CLHEP_FOUND FALSE)
@@ -156,19 +194,9 @@ endif()
 find_path(CLHEP_INCLUDE_DIR CLHEP/Units/defs.h
     HINTS ${_clhep_root_hints}
     PATH_SUFFIXES include
-    DOC "Path to the CLHEP headers" 
-)
-
-#----------------------------------------------------------------------------
-# Find the CLHEP library
-# Prefer lib64 if available.
-find_library(CLHEP_LIBRARY CLHEP
-    HINTS ${_clhep_root_hints}
-    PATH_SUFFIXES lib64 lib
-    DOC "Path to the CLHEP library"
+    DOC "Path to the CLHEP headers"
 )
 
-
 #----------------------------------------------------------------------------
 # Extract the CLHEP version from defs.h
 # Versions COMPATIBLE if RequestedVersion > FoundVersion
@@ -183,7 +211,7 @@ if(CLHEP_INCLUDE_DIR)
     if(NOT CLHEP_FIND_QUIETLY)
         message(STATUS "Found CLHEP Version ${CLHEP_VERSION}")
     endif()
-  
+
     if(CLHEP_FIND_VERSION)
         set(CLHEP_VERSIONING_TESTS CLHEP_VERSION_COMPATIBLE)
 
@@ -202,6 +230,39 @@ if(CLHEP_INCLUDE_DIR)
     endif()
 endif()
 
+#----------------------------------------------------------------------------
+# Find the CLHEP library - AFTER version checking because CLHEP component
+# libs are named including the version number
+# Prefer lib64 if available.
+set(__CLHEP_LIBRARY_SET)
+
+if(CLHEP_FIND_COMPONENTS)
+  # Resolve dependencies of requested components
+  set(CLHEP_RESOLVED_FIND_COMPONENTS)
+
+  foreach(__clhep_comp ${CLHEP_FIND_COMPONENTS})
+    list(APPEND CLHEP_RESOLVED_FIND_COMPONENTS ${__clhep_comp} ${CLHEP_${__clhep_comp}_REQUIRES})
+  endforeach()
+
+  list(REMOVE_DUPLICATES CLHEP_RESOLVED_FIND_COMPONENTS)
+
+  foreach(__clhep_comp ${CLHEP_RESOLVED_FIND_COMPONENTS})
+    find_library(CLHEP_${__clhep_comp}_LIBRARY CLHEP-${__clhep_comp}-${CLHEP_VERSION}
+      HINTS ${_clhep_root_hints}
+      PATH_SUFFIXES lib64 lib
+      DOC "Path to the CLHEP ${__clhep_comp} library"
+      )
+    list(APPEND __CLHEP_LIBRARY_SET "CLHEP_${__clhep_comp}_LIBRARY")
+  endforeach()
+else()
+  find_library(CLHEP_LIBRARY CLHEP
+    HINTS ${_clhep_root_hints}
+    PATH_SUFFIXES lib64 lib
+    DOC "Path to the CLHEP library"
+    )
+  set(__CLHEP_LIBRARY_SET "CLHEP_LIBRARY")
+endif()
+
 #----------------------------------------------------------------------------
 # Construct an error message for FPHSA
 #
@@ -211,7 +272,7 @@ if(NOT CLHEP_INCLUDE_DIR)
     set(CLHEP_DEFAULT_MSG "${CLHEP_DEFAULT_MSG}CLHEP Header Path Not Found\n")
 endif()
 
-if(NOT CLHEP_LIBRARY)
+if(NOT CLHEP_FIND_COMPONENTS AND NOT CLHEP_LIBRARY)
     set(CLHEP_DEFAULT_MSG "${CLHEP_DEFAULT_MSG}CLHEP Library Not Found\n")
 endif()
 
@@ -228,31 +289,33 @@ if(CLHEP_FIND_VERSION)
 endif()
 
 
-
-
 #----------------------------------------------------------------------------
 # Handle the QUIETLY and REQUIRED arguments, setting CLHEP_FOUND to TRUE if
 # all listed variables are TRUE
 #
 include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(CLHEP 
+find_package_handle_standard_args(CLHEP
     "${CLHEP_DEFAULT_MSG}"
-    CLHEP_LIBRARY
+    ${__CLHEP_LIBRARY_SET}
     CLHEP_INCLUDE_DIR
     ${CLHEP_VERSIONING_TESTS}
     )
 
-
 #----------------------------------------------------------------------------
 # If we found CLHEP, set the needed non-cache variables
 #
 if(CLHEP_FOUND)
-    set(CLHEP_LIBRARIES ${CLHEP_LIBRARY})
-    set(CLHEP_INCLUDE_DIRS ${CLHEP_INCLUDE_DIR})
+  set(CLHEP_LIBRARIES)
+  foreach(__clhep_lib ${__CLHEP_LIBRARY_SET})
+    list(APPEND CLHEP_LIBRARIES ${${__clhep_lib}})
+  endforeach()
+  set(CLHEP_INCLUDE_DIRS ${CLHEP_INCLUDE_DIR})
 endif()
 
 #----------------------------------------------------------------------------
 # Mark cache variables that can be adjusted as advanced
 #
 mark_as_advanced(CLHEP_INCLUDE_DIR CLHEP_LIBRARY)
-
+foreach(__clhep_comp ${CLHEP_COMPONENTS})
+  mark_as_advanced(CLHEP_${__clhep_comp}_LIBRARY)
+endforeach()
diff --git a/cmake/Modules/Geant4ConfigureConfigScript.cmake b/cmake/Modules/Geant4ConfigureConfigScript.cmake
index 2a7a4cce27c..c326f5fb625 100644
--- a/cmake/Modules/Geant4ConfigureConfigScript.cmake
+++ b/cmake/Modules/Geant4ConfigureConfigScript.cmake
@@ -94,6 +94,15 @@ if(NOT GEANT4_BUILD_GRANULAR_LIBS AND UNIX)
   # - CLHEP
   if(GEANT4_USE_SYSTEM_CLHEP)
     set(G4_BUILTWITH_CLHEP "no")
+    #libpath
+    list(GET CLHEP_LIBRARIES 0 _zeroth_clhep_lib)
+    get_filename_component(_system_clhep_libdir "${_zeroth_clhep_lib}" PATH)
+    set(G4_SYSTEM_CLHEP_LIBRARIES "-L${_system_clhep_libdir}")
+    foreach(_clhep_lib ${CLHEP_LIBRARIES})
+      get_filename_component(_curlib "${_clhep_lib}" NAME)
+      string(REGEX REPLACE "^lib(.*)\\.(so|a|dylib|lib|dll)$" "\\1" _curlib "${_curlib}")
+      set(G4_SYSTEM_CLHEP_LIBRARIES "${G4_SYSTEM_CLHEP_LIBRARIES} -l${_curlib}")
+    endforeach()
   else()
     set(G4_BUILTWITH_CLHEP "yes")
   endif()
diff --git a/cmake/Modules/Geant4ConfigureModulefile.cmake b/cmake/Modules/Geant4ConfigureModulefile.cmake
index 3fe0604e378..988afd38393 100644
--- a/cmake/Modules/Geant4ConfigureModulefile.cmake
+++ b/cmake/Modules/Geant4ConfigureModulefile.cmake
@@ -1,21 +1,48 @@
 # - Script for configuring and installing a Modulefile for Geant4
 #
 # Environment Modules is a standard tool for configuring the environment
-# for a package in a shel/intepreter agnostic way. See:
+# for a package in a shell/intepreter agnostic way. See:
 #
 #  http://modules.sourceforge.net/
 #
 # As with other Geant4 tool support, a template file is provided to
-# generate the modulefile using the known build settings. Because
-# modulefiles are generally only used on installed packages, only
-# an Install Tree file is generated.
+# generate the modulefile using the known build settings. Though
+# modulefiles are generally only used for installed packages, modulefiles
+# are generated for both the Build and Install Trees.
 #
-# The resultant modulefile is installed to the share directory, though
-# this is not intended to be its final location. System Admins may
-# wish to move the file to their local modulefile path
+# The resultant modulefile for the Build Tree is only provided on an
+# 'as is' basis. It is intended for Geant4 developers only, and is
+# otherwise unsupported.
+#
+# The resultant modulefile for the Install Tree is installed to the
+# share directory, though this is not intended to be its final location.
+# System Admins may wish to move the file to their local modulefile path.
+# Absolute paths to the install of Geant4 are used to help move the
+# modulefile around, so if both modulefile and install of Geant4 are
+# moved, the paths in the modulefile should be patched/sedded.
 #
 
 macro(_geant4_prepare_modulefile_inputs)
+  cmake_parse_arguments(GPI
+    ""
+    "MODE"
+    ""
+    ${ARGN}
+    )
+
+  # - Paths
+  if("${GPI_MODE}" STREQUAL "INSTALL")
+    set(GEANT4_MODULEFILE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+    set(GEANT4_MODULEFILE_INSTALL_BINDIR "${CMAKE_INSTALL_FULL_BINDIR}")
+    set(GEANT4_MODULEFILE_INSTALL_LIBDIR "${CMAKE_INSTALL_FULL_LIBDIR}")
+    geant4_export_datasets(INSTALL GEANT4_EXPORTED_DATASETS)
+  else()
+    set(GEANT4_MODULEFILE_INSTALL_PREFIX "${PROJECT_BINARY_DIR}")
+    set(GEANT4_MODULEFILE_INSTALL_BINDIR "${PROJECT_BINARY_DIR}")
+    set(GEANT4_MODULEFILE_INSTALL_LIBDIR "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}")
+    geant4_export_datasets(BUILD GEANT4_EXPORTED_DATASETS)
+  endif()
+
   # - Compatibility
   if(APPLE)
     set(DYNAMIC_LOADER_PATHNAME "DYLD_LIBRARY_PATH")
@@ -24,20 +51,22 @@ macro(_geant4_prepare_modulefile_inputs)
   endif()
 
   # - Datasets
-  geant4_get_datasetnames(GEANT4_EXPORTED_DATASETS)
   set(G4DATASET_TCLLIST)
-  list(REMOVE_ITEM GEANT4_EXPORTED_DATASETS "G4ENSDFSTATE")
   foreach(_ds ${GEANT4_EXPORTED_DATASETS})
-    geant4_get_dataset_property(${_ds} ENVVAR ${_ds}_ENVVAR)
-    geant4_get_dataset_property(${_ds} INSTALL_DIR ${_ds}_PATH)
-    set(G4DATASET_TCLLIST "${G4DATASET_TCLLIST} ${${_ds}_ENVVAR} ${${_ds}_PATH}")
+    # listify tuple
+    string(REPLACE "|" ";" _ds "${_ds}")
+    # Extract envar and path entries
+    list(GET _ds 1 _ds_ENVVAR)
+    list(GET _ds 2 _ds_PATH)
+    set(G4DATASET_TCLLIST "${G4DATASET_TCLLIST} ${_ds_ENVVAR} ${_ds_PATH}")
   endforeach()
 endmacro()
 
 
 function(geant4_configure_modulefile)
+  # Install Tree
   # - prepare configuration environment
-  _geant4_prepare_modulefile_inputs()
+  _geant4_prepare_modulefile_inputs(MODE INSTALL)
 
   # - Configure the file
   configure_file(
@@ -51,5 +80,16 @@ function(geant4_configure_modulefile)
     DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/Geant4-${Geant4_VERSION}
     COMPONENT Development
     )
+
+  # Build Tree
+  # - prepare configuration environment
+  _geant4_prepare_modulefile_inputs()
+
+  # - Configure the file
+  configure_file(
+    ${PROJECT_SOURCE_DIR}/cmake/Templates/geant4-modulefile.in
+    ${PROJECT_BINARY_DIR}/geant4-${Geant4_VERSION}
+    @ONLY
+    )
 endfunction()
 
diff --git a/cmake/Modules/Geant4MakeRules_cxx.cmake b/cmake/Modules/Geant4MakeRules_cxx.cmake
index 9df0b1667b5..670a74967fa 100644
--- a/cmake/Modules/Geant4MakeRules_cxx.cmake
+++ b/cmake/Modules/Geant4MakeRules_cxx.cmake
@@ -84,7 +84,7 @@ function(__configure_cxxstd_clang)
   # version of LLVM X.Y, not a release, so it may not provide all features
   # present in the X.Y release.
   if(APPLE AND "${_clangcxx_version}" MATCHES ".*Apple LLVM version.*")
-    string(REGEX REPLACE ".*based on LLVM ([0-9]\\.[0-9]+)svn.*" "\\1" _clangcxx_version ${_clangcxx_version})
+    string(REGEX REPLACE ".*based on LLVM ([0-9](\\.[0-9])+)svn.*" "\\1" _clangcxx_version ${_clangcxx_version})
   endif()
   message(STATUS "Clang version : ${_clangcxx_version}")
 
@@ -214,7 +214,7 @@ endif()
 #
 # Sufficient id on all platforms?
 if(CMAKE_CXX_COMPILER MATCHES "icpc.*|icc.*")
-  set(CMAKE_CXX_FLAGS_INIT "-w1 -Wno-non-virtual-dtor -Wpointer-arith -Wwrite-strings -fp-model precise")
+  set(CMAKE_CXX_FLAGS_INIT "-w1 -Wno-non-virtual-dtor -Wpointer-arith -Wwrite-strings -no-gcc -fp-model precise")
   set(CMAKE_CXX_FLAGS_DEBUG_INIT "-g")
   set(CMAKE_CXX_FLAGS_RELEASE_INIT "-O2 -DNDEBUG")
   set(CMAKE_CXX_FLAGS_MINSIZEREL_INIT "-Os -DNDEBUG")
diff --git a/cmake/Modules/Geant4OptionalComponents.cmake b/cmake/Modules/Geant4OptionalComponents.cmake
index d3c7609d356..73c2a874dee 100644
--- a/cmake/Modules/Geant4OptionalComponents.cmake
+++ b/cmake/Modules/Geant4OptionalComponents.cmake
@@ -9,6 +9,7 @@
 #
 # Options configured here:
 #  CLHEP   - Control use of internal G4clhep, or locate external CLHEP
+#            Also control selection of singular or modular CLHEP libs
 #  EXPAT   - Control use of internal G4expat, or locate external EXPAT.
 #  ZLIB    - Control use of internal G4zlib, or locate external ZLIB
 #  GDML    - Requires external XercesC
@@ -24,6 +25,9 @@
 # We also allow that it can be automatically enabled by providing
 # the CLHEP_ROOT_DIR option (which FindCLHEP will recognize)
 #
+# As requested by ATLAS, an additional option for preferring use of
+# CLHEP's granular libs is provided when using a system CLHEP.
+#
 # KNOWNISSUE : For internal CLHEP, how to deal with static and shared?
 if(CLHEP_ROOT_DIR)
   set(_default_use_system_clhep ON)
@@ -34,9 +38,24 @@ endif()
 option(GEANT4_USE_SYSTEM_CLHEP "Use system CLHEP library" ${_default_use_system_clhep})
 
 if(GEANT4_USE_SYSTEM_CLHEP)
+  set(__system_clhep_mode " (singular)")
+  # Further advanced option to select granular CLHEP libs
+  option(GEANT4_USE_SYSTEM_CLHEP_GRANULAR "Use system CLHEP granular libraries" OFF)
+  mark_as_advanced(GEANT4_USE_SYSTEM_CLHEP_GRANULAR)
+
+  if(GEANT4_USE_SYSTEM_CLHEP_GRANULAR)
+    set(__g4_clhep_components
+      Evaluator
+      Geometry
+      Random
+      Vector
+      )
+    set(__system_clhep_mode " (granular)")
+  endif()
+
   # We keep this as required, because if the user chooses to use a
   # system option we assume that we absolutely, positively require this.
-  find_package(CLHEP 2.1.2.3 REQUIRED)
+  find_package(CLHEP 2.1.2.3 REQUIRED ${__g4_clhep_components})
   set(GEANT4_USE_SYSTEM_CLHEP TRUE)
 else()
   set(CLHEP_FOUND TRUE)
@@ -49,7 +68,7 @@ else()
   endif()
 endif()
 
-GEANT4_ADD_FEATURE(GEANT4_USE_SYSTEM_CLHEP "Using system CLHEP library")
+GEANT4_ADD_FEATURE(GEANT4_USE_SYSTEM_CLHEP "Using system CLHEP library${__system_clhep_mode}")
 
 #-----------------------------------------------------------------------
 # Find required EXPAT package
diff --git a/cmake/Modules/Geant4ToolchainBackwardCompatibility.cmake b/cmake/Modules/Geant4ToolchainBackwardCompatibility.cmake
index 22dc47c2271..2d416108f65 100644
--- a/cmake/Modules/Geant4ToolchainBackwardCompatibility.cmake
+++ b/cmake/Modules/Geant4ToolchainBackwardCompatibility.cmake
@@ -319,15 +319,37 @@ macro(_g4tc_configure_tc_variables SHELL_FAMILY SCRIPT_NAME)
   if(GEANT4_USE_SYSTEM_CLHEP)
     # Have to use detected CLHEP paths to set base dir and others
     get_filename_component(_CLHEP_BASE_DIR ${CLHEP_INCLUDE_DIR} PATH)
-    get_filename_component(_CLHEP_LIB_DIR ${CLHEP_LIBRARY} PATH)
+
+    # Handle granular vs singular cases
+    if(GEANT4_USE_SYSTEM_CLHEP_GRANULAR)
+      get_filename_component(_CLHEP_LIB_DIR ${CLHEP_Vector_LIBRARY} PATH)
+    else()
+      get_filename_component(_CLHEP_LIB_DIR ${CLHEP_LIBRARY} PATH)
+    endif()
 
     set(GEANT4_TC_G4LIB_USE_CLHEP "# USING SYSTEM CLHEP")
     _g4tc_setenv_command(GEANT4_TC_CLHEP_BASE_DIR ${SHELL_FAMILY} CLHEP_BASE_DIR ${_CLHEP_BASE_DIR})
 
     _g4tc_setenv_command(GEANT4_TC_CLHEP_INCLUDE_DIR ${SHELL_FAMILY} CLHEP_INCLUDE_DIR ${CLHEP_INCLUDE_DIR})
 
+    # Only need to handle CLHEP_LIB for granular case
+    if(GEANT4_USE_SYSTEM_CLHEP_GRANULAR)
+      set(G4_SYSTEM_CLHEP_LIBRARIES )
+      foreach(_clhep_lib ${CLHEP_LIBRARIES})
+        get_filename_component(_curlib "${_clhep_lib}" NAME)
+        string(REGEX REPLACE "^lib(.*)\\.(so|a|dylib|lib|dll)$" "\\1" _curlib "${_curlib}")
+        set(G4_SYSTEM_CLHEP_LIBRARIES "${G4_SYSTEM_CLHEP_LIBRARIES} -l${_curlib}")
+      endforeach()
+
+      # Strip first "-l" as that's prepended by Geant4Make
+      string(REGEX REPLACE "^ *\\-l" "" G4_SYSTEM_CLHEP_LIBRARIES "${G4_SYSTEM_CLHEP_LIBRARIES}")
+
+      _g4tc_setenv_command(GEANT4_TC_CLHEP_LIB ${SHELL_FAMILY} CLHEP_LIB "\"${G4_SYSTEM_CLHEP_LIBRARIES}\"")
+    endif()
+
     _g4tc_setenv_command(GEANT4_TC_CLHEP_LIB_DIR ${SHELL_FAMILY} CLHEP_LIB_DIR ${_CLHEP_LIB_DIR})
 
+
     if(${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
       _g4tc_prepend_path(GEANT4_TC_CLHEP_LIB_PATH_SETUP ${SHELL_FAMILY} DYLD_LIBRARY_PATH \${CLHEP_LIB_DIR})
     else()
@@ -707,6 +729,24 @@ foreach(_shell bourne;cshell)
     "\"`cd $geant4_envbindir/${G4ENV_BINDIR_TO_LIBDIR} > /dev/null ; pwd`\""
     )
 
+  # Third party lib paths
+  # - CLHEP, if system
+  set(GEANT4_TC_CLHEP_LIB_PATH_SETUP "# - Builtin CLHEP used")
+  if(GEANT4_USE_SYSTEM_CLHEP)
+    # Handle granular vs singular cases
+    if(GEANT4_USE_SYSTEM_CLHEP_GRANULAR)
+      get_filename_component(_CLHEP_LIB_DIR ${CLHEP_Vector_LIBRARY} PATH)
+    else()
+      get_filename_component(_CLHEP_LIB_DIR ${CLHEP_LIBRARY} PATH)
+    endif()
+
+    _g4tc_prepend_path(GEANT4_TC_CLHEP_LIB_PATH_SETUP
+      ${_shell}
+      ${_libpathname}
+      "${_CLHEP_LIB_DIR}"
+      )
+  endif()
+
   # - Set data paths
   set(GEANT4_ENV_DATASETS )
   foreach(_ds ${GEANT4_EXPORTED_DATASETS})
diff --git a/cmake/Templates/Geant4Config.cmake.in b/cmake/Templates/Geant4Config.cmake.in
index d2971216bf2..510b562d2bd 100644
--- a/cmake/Templates/Geant4Config.cmake.in
+++ b/cmake/Templates/Geant4Config.cmake.in
@@ -109,6 +109,12 @@
 # system APIs as required, and you should use these to ensure you compile
 # and link against the same API version.
 #
+# An additional variable is set for CLHEP when Geant4 was built using a
+# system install to indicate whether the single/granular CLHEP library/ies
+# was/were linked against
+#
+#  Geant4_system_clhep_ISGRANULAR (TRUE is Geant4 linked to granular CLHEP)
+#
 # Environment variables for, and directory paths to, physics datasets
 # used by some Geant4 physics processes may be determined from the
 # variables
@@ -262,6 +268,10 @@ unset(Geant4_DATASET_DESCRIPTIONS)
 #
 # Builtin/External packages
 set(Geant4_builtin_clhep_FOUND @GEANT4_USE_BUILTIN_CLHEP@)
+if(NOT Geant4_builtin_clhep_FOUND)
+  set(Geant4_system_clhep_ISGRANULAR @GEANT4_USE_SYSTEM_CLHEP_GRANULAR@)
+endif()
+
 set(Geant4_builtin_expat_FOUND @GEANT4_USE_BUILTIN_EXPAT@)
 set(Geant4_builtin_zlib_FOUND @GEANT4_USE_BUILTIN_ZLIB@)
 set(Geant4_builtin_usolids_FOUND @GEANT4_USE_BUILTIN_USOLIDS@)
@@ -357,18 +367,20 @@ endif()
 set(Geant4_qt_FOUND @GEANT4_USE_QT@)
 set(Geant4_USES_QT5 @Qt5Core_FOUND@)
 if(Geant4_qt_FOUND)
-  if(Geant4_FIND_REQUIRED_qt OR Geant4_FIND_REQUIRED_ui_all OR
-      Geant4_FIND_REQUIRED_vis_all)
+  # Must always refind Qt5 to recreate imported targets. Because these
+  # are in the public interface, always need linking.
+  if(Geant4_USES_QT5)
+    find_package(Qt5Core REQUIRED PATHS "@Qt5Core_DIR@")
+    find_package(Qt5Gui REQUIRED PATHS "@Qt5Gui_DIR@")
+    find_package(Qt5Widgets REQUIRED PATHS "@Qt5Widgets_DIR@")
+    find_package(Qt5OpenGL REQUIRED PATHS "@Qt5OpenGL_DIR@")
+    find_package(Qt5PrintSupport REQUIRED PATHS "@Qt5PrintSupport_DIR@")
+  endif()
+
+  if(Geant4_FIND_REQUIRED_qt OR Geant4_FIND_REQUIRED_ui_all OR Geant4_FIND_REQUIRED_vis_all)
     # If we have Qt5, we need to refind the components because they use
     # imported targets, so linking will not work unless we recreate
     # them
-    if(Geant4_USES_QT5)
-      find_package(Qt5Core REQUIRED PATHS "@Qt5Core_DIR@")
-      find_package(Qt5Gui REQUIRED PATHS "@Qt5Gui_DIR@")
-      find_package(Qt5Widgets REQUIRED PATHS "@Qt5Widgets_DIR@")
-      find_package(Qt5OpenGL REQUIRED PATHS "@Qt5OpenGL_DIR@")
-      find_package(Qt5PrintSupport REQUIRED PATHS "@Qt5PrintSupport_DIR@")
-    endif()
 
     list(APPEND
       Geant4_DEFINITIONS
diff --git a/cmake/Templates/geant4-config.in b/cmake/Templates/geant4-config.in
index 8f429c0cdde..6cd8294988e 100644
--- a/cmake/Templates/geant4-config.in
+++ b/cmake/Templates/geant4-config.in
@@ -132,7 +132,7 @@ feature_list="${feature_list} clhep[${have_clhep}]"
 
 if test "x${have_clhep}" = "xno" ; then
   cflags="${cflags} `${clhep_config_exe} --include`"
-  libs="${libs} `${clhep_config_exe} --libs`"
+  libs="${libs} @G4_SYSTEM_CLHEP_LIBRARIES@"
 fi
 if test "x${have_clhep}" = "xyes" ; then
   libs="${libs} -lG4clhep"
diff --git a/cmake/Templates/geant4-env-skeleton.in b/cmake/Templates/geant4-env-skeleton.in
index 45db4d7c339..4bdc292541f 100644
--- a/cmake/Templates/geant4-env-skeleton.in
+++ b/cmake/Templates/geant4-env-skeleton.in
@@ -19,11 +19,16 @@
 @GEANT4_ENV_SELFLOCATE_COMMAND@
 @GEANT4_TC_IF_SELFLOCATED@
 #-----------------------------------------------------------------------
-# Setup binary and library paths...
+# Setup Geant4 binary and library paths...
 #
 @GEANT4_ENV_BINPATH_SETUP@
 @GEANT4_ENV_LIBPATH_SETUP@
 
+#-----------------------------------------------------------------------
+# Setup Third-party binary and library paths...
+# - CLHEP
+@GEANT4_TC_CLHEP_LIB_PATH_SETUP@
+
 #-----------------------------------------------------------------------
 # Resource file paths
 #
diff --git a/cmake/Templates/geant4-modulefile.in b/cmake/Templates/geant4-modulefile.in
index 4119bf68535..dddcb1976c6 100644
--- a/cmake/Templates/geant4-modulefile.in
+++ b/cmake/Templates/geant4-modulefile.in
@@ -39,9 +39,9 @@
 # Edit these only if you require Geant4 to be found relative to the
 # location of this modulefile
 #
-set geant4_install_prefix "@CMAKE_INSTALL_PREFIX@"
-set geant4_install_bindir "@CMAKE_INSTALL_FULL_BINDIR@"
-set geant4_install_libdir "@CMAKE_INSTALL_FULL_LIBDIR@"
+set geant4_install_prefix "@GEANT4_MODULEFILE_INSTALL_PREFIX@"
+set geant4_install_bindir "@GEANT4_MODULEFILE_INSTALL_BINDIR@"
+set geant4_install_libdir "@GEANT4_MODULEFILE_INSTALL_LIBDIR@"
 
 #
 # Provide help and whatis responses
diff --git a/cmake/Templates/geant4make-skeleton.in b/cmake/Templates/geant4make-skeleton.in
index af3393ba8ba..1db01ce49cf 100644
--- a/cmake/Templates/geant4make-skeleton.in
+++ b/cmake/Templates/geant4make-skeleton.in
@@ -156,6 +156,7 @@
 @GEANT4_TC_CLHEP_BASE_DIR@
 @GEANT4_TC_CLHEP_INCLUDE_DIR@
 @GEANT4_TC_CLHEP_LIB_DIR@
+@GEANT4_TC_CLHEP_LIB@
 @GEANT4_TC_CLHEP_LIB_PATH_SETUP@
 
 #-----------------------------------------------------------------------
diff --git a/config/History b/config/History
index 49175fef40f..708c844f73c 100644
--- a/config/History
+++ b/config/History
@@ -1,4 +1,4 @@
-svn log $Id: History 85534 2014-10-30 16:19:42Z gcosmo $
+svn log $Id: History 90693 2015-06-08 08:53:38Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -16,6 +16,9 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+28th May 2015   Gabriele Cosmo  (config-V10-00-12)
+- Updated CPPFLAGS for Linux-icc and WIN32-g++ configurations.
+
 29th October 2014   Gabriele Cosmo  (config-V10-00-11/10)
 - Moved geometry/solids/usolids module to externals.
   Adapted scripts for optional external USolids library build.
diff --git a/config/sys/Linux-icc.gmk b/config/sys/Linux-icc.gmk
index bade6a3a1da..7e82ac867d5 100644
--- a/config/sys/Linux-icc.gmk
+++ b/config/sys/Linux-icc.gmk
@@ -1,10 +1,11 @@
 #
-# ------ GNU/LINUX ------         Intel icc 11.0
+# ------ GNU/LINUX ------         Intel icc 15.x.x
 #
 ifeq ($(G4SYSTEM),Linux-icc)
   CXX       := icc
   CXXFLAGS  := -ansi -fp-model precise -no-gcc -w1
   ifdef G4USE_STD11
+    CPPFLAGS  += -std=c++0x
     CXXFLAGS  += -std=c++11
   endif
   ifdef G4MULTITHREADED
diff --git a/config/sys/WIN32-g++.gmk b/config/sys/WIN32-g++.gmk
index 1da1f1c1bf4..46af8f82835 100644
--- a/config/sys/WIN32-g++.gmk
+++ b/config/sys/WIN32-g++.gmk
@@ -9,6 +9,10 @@ ifeq ($(G4SYSTEM),WIN32-g++)
   CXX       := g++
   CXXFLAGS  := -W -Wall -ansi -pedantic -Wno-non-virtual-dtor -Wno-long-long
   CXXFLAGS  += -Wwrite-strings -Wpointer-arith -Woverloaded-virtual -pipe
+  ifdef G4USE_STD11
+    CPPFLAGS  += -std=c++11
+    CXXFLAGS  += -std=c++11
+  endif
   ifdef G4OPTIMISE
     CXXFLAGS  += -O
     FCFLAGS   := -O
diff --git a/examples/advanced/air_shower/air_shower.out b/examples/advanced/air_shower/air_shower.out
index 959a6101ad0..95222c4a547 100644
--- a/examples/advanced/air_shower/air_shower.out
+++ b/examples/advanced/air_shower/air_shower.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -405,8 +405,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
 ooo Run 0 starts (global).
 
 --------- Ranlux engine status ---------
- Initial seed = 1427810459
- float_seed_table[] = 0.00129068 0.716498 0.102399 0.577875 0.205122 0.785871 0.931663 0.721366 0.846767 0.591076 0.497134 0.415225 0.941634 0.568824 0.962956 0.837319 0.536752 0.650286 0.659763 0.877199 0.301396 0.196718 0.585857 0.533373 
+ Initial seed = 1435156027
+ float_seed_table[] = 0.330457 0.947765 0.961853 0.650326 0.217333 0.377246 0.198952 0.917148 0.821542 0.309048 0.338879 0.0747123 0.714531 0.381004 0.566601 0.118208 0.126822 0.828969 0.526111 0.869223 0.222714 0.873506 0.513575 0.235941 
  i_lag = 23, j_lag = 9
  carry = 0, count24 = 0
  luxury = 3 nskip = 199
@@ -420,2478 +420,690 @@ mu- Mono Plane
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     12.3     65.1    1e+03       300        0        0         0       World initStep
-    1     12.3     65.1      945       300  0.00759       55        55       World muIoni
-    2     12.6     65.1      857       300   0.0101     88.3       143       World muIoni
-    3     12.6     65.1      846       300  0.00159     10.4       154       World muIoni
-    4     12.7     65.1      777       300  0.00937     69.5       223       World muIoni
-    5     13.3     65.1      557       300   0.0308      220       443       World muIoni
-    6     13.3     65.1      536       300   0.0046     20.8       464       World muIoni
-    7     14.3     64.8      247       300   0.0419      289       753       World muIoni
-    8     14.4     64.8      218       300  0.00392     28.7       782       World muIoni
-    9     14.7     64.6     55.1       300   0.0242      163       945       World muIoni
-   10     14.9     64.3     -237       300   0.0411      292  1.24e+03       World muIoni
-   11       15     64.1     -321       300   0.0136     84.1  1.32e+03       World muIoni
-   12       15       64     -341       300   0.0021       20  1.34e+03       World muIoni
-   13       15     63.9     -377       300  0.00459     35.6  1.38e+03       World muIoni
-   14     15.3     62.8     -711       300   0.0433      334  1.71e+03       World muIoni
-   15     15.3     62.6     -797       299   0.0119     85.3   1.8e+03       World muIoni
-   16     15.7     61.9     -990       299   0.0292      193  1.99e+03 LensMotherPV Transportation
-   17     15.7     61.9 -1.01e+03       299 0.000902     16.1  2.01e+03      LensPV Transportation
-   18     15.7     61.9 -1.01e+03       299    0.441     1.79  2.01e+03       World Transportation
+    0     -213      -96    1e+03       300        0        0         0       World initStep
+    1     -213      -96      998       300 0.000281     2.18      2.18       World muIoni
+    2     -213      -96      953       300  0.00512     44.8        47       World muIoni
+    3     -213      -96      897       300  0.00708     56.4       103       World muIoni
+    4     -214    -96.2      600       298     0.04      296       400       World muIoni
+    5     -214    -96.1      565       298  0.00513     35.1       435       World muIoni
+    6     -214    -96.1      495       298  0.00988     69.7       505       World muIoni
+    7     -214    -95.7      240       298   0.0411      255       760       World muIoni
+    8     -214    -95.7      193       298  0.00713     47.2       807       World muIoni
+    9     -214    -95.6       85       298   0.0151      108       915       World muIoni
+   10     -214      -95     -188       298    0.039      273  1.19e+03       World muIoni
+   11     -214    -94.5     -324       298   0.0216      136  1.32e+03       World muIoni
+   12     -214    -94.2     -414       298   0.0109     89.6  1.41e+03       World muIoni
+   13     -214    -93.7     -587       298    0.021      173  1.59e+03       World muIoni
+   14     -214    -93.5     -633       298  0.00605     45.7  1.63e+03       World muIoni
+   15     -214    -92.8     -879       298   0.0369      246  1.88e+03       World muIoni
+   16     -214    -92.6     -921       298  0.00514     42.4  1.92e+03       World muIoni
+   17     -214    -92.5     -946       298  0.00307     24.7  1.95e+03       World muIoni
+   18     -214    -92.4     -978       298  0.00431     32.1  1.98e+03       World muIoni
+   19     -214    -92.3 -1.01e+03       298  0.00314     29.8  2.01e+03 LensFramePV Transportation
+   20     -214    -92.3 -1.01e+03       297     1.08      2.8  2.01e+03       World Transportation
+   21     -214    -92.1 -1.09e+03       297   0.0111     78.9  2.09e+03       World muIoni
+   22     -213    -91.7 -1.25e+03       297   0.0236      164  2.25e+03       World muIoni
+   23     -212    -91.1 -1.42e+03       297    0.024      164  2.42e+03       World muIoni
+   24     -211      -91 -1.49e+03       297   0.0125     70.3  2.49e+03       World muIoni
+   25     -211    -90.9 -1.5e+03       297  0.00106     7.94   2.5e+03       World muIoni
+   26     -211    -90.9 -1.52e+03       297   0.0035     18.9  2.52e+03 UVscopeBack Transportation
+   27     -211    -90.9 -1.52e+03       296    0.309        1  2.52e+03       World Transportation
+   28     -211    -90.5 -1.61e+03       296   0.0134     97.3  2.61e+03       World muIoni
+   29     -210    -90.2 -1.66e+03       296  0.00568     42.1  2.66e+03       World muIoni
+   30     -209    -88.4   -2e+03       296   0.0528      345     3e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 181,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 23,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.72e-06        0        0         0      LensPV initStep
-    1       16     61.7 -1.01e+03  2.72e-06        0     0.54      0.54       World Transportation
-    2       16     61.7 -1.01e+03  2.72e-06        0 1.13e-13      0.54      LensPV Transportation
-    3     17.8     60.7 -1.01e+03  2.72e-06        0      2.8      3.34 LensMotherPV Transportation
-    4     17.8     60.7 -1.01e+03  2.72e-06        0        0      3.34      LensPV Transportation
-    5     19.9     58.3 -1.01e+03  2.72e-06        0      3.7      7.04       World Transportation
-    6     19.9     58.3 -1.01e+03  2.72e-06        0  1.5e-13      7.04      LensPV Transportation
-    7     22.1     55.7 -1.01e+03  2.72e-06        0     4.08      11.1      LensPV OpAbsorption
+    0     -210    -90.2 -1.66e+03    0.0123        0        0         0       World initStep
+    1     -210    -90.3 -1.66e+03    0.0101  0.00104    0.667     0.667       World eIoni
+    2     -210    -91.2 -1.66e+03   0.00458  0.00549     1.79      2.45       World eIoni
+    3     -210    -91.5 -1.65e+03         0  0.00458    0.611      3.07       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 180,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 24,   Parent ID = 23
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.03e-06        0        0         0      LensPV initStep
-    1     15.7     61.8 -1.01e+03  5.03e-06        0   0.0261    0.0261      LensPV OpAbsorption
+    0     -210    -90.3 -1.66e+03   0.00119        0        0         0       World initStep
+    1     -210    -90.3 -1.66e+03         0  0.00119   0.0687    0.0687       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 179,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 22,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.27e-06        0        0         0      LensPV initStep
-    1     14.6       63 -1.01e+03  3.27e-06        0     2.22      2.22       World Transportation
-    2     14.6       63 -1.01e+03  3.27e-06        0 1.14e-13      2.22      LensPV Transportation
-    3     13.6       64 -1.01e+03  3.27e-06        0     1.93      4.16 LensMotherPV Transportation
-    4     4.99     70.1   -1e+03  3.27e-06        0     10.7      14.9      LensPV Transportation
-    5     1.66     75.9   -1e+03  3.27e-06        0     6.71      21.6 LensMotherPV Transportation
-    6     1.66     75.9   -1e+03  3.27e-06        0 1.42e-13      21.6      LensPV Transportation
-    7     1.44     76.1   -1e+03  3.27e-06        0    0.424        22      LensPV OpAbsorption
+    0     -211    -90.5 -1.61e+03   0.00129        0        0         0       World initStep
+    1     -211    -90.5 -1.61e+03         0  0.00129   0.0775    0.0775       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 178,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 21,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.04e-06        0        0         0      LensPV initStep
-    1     16.1     61.4 -1.01e+03  4.04e-06        0    0.893     0.893       World Transportation
-    2     16.1     61.4 -1.01e+03  4.04e-06        0 1.16e-13     0.893      LensPV Transportation
-    3     17.3     60.1 -1.01e+03  4.04e-06        0     2.36      3.26      LensPV OpAbsorption
+    0     -211    -90.9 -1.5e+03   0.00106        0        0         0       World initStep
+    1     -211      -91 -1.5e+03         0  0.00106   0.0579    0.0579       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 177,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 20,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   5.7e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03   5.7e-06        0 4.41e-101 4.41e-101      LensPV OpAbsorption
+    0     -211      -91 -1.49e+03   0.00132        0        0         0       World initStep
+    1     -211      -91 -1.49e+03         0  0.00132     0.08      0.08       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 176,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 19,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.96e-06        0        0         0      LensPV initStep
-    1     15.8       62 -1.01e+03  4.96e-06        0     0.23      0.23      LensPV OpAbsorption
+    0     -212    -91.1 -1.42e+03   0.00168        0        0         0       World initStep
+    1     -212    -91.1 -1.42e+03         0  0.00168    0.115     0.115       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 175,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 18,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.76e-06        0        0         0      LensPV initStep
-    1       15       62 -1.01e+03  2.76e-06        0     1.01      1.01       World Transportation
-    2       15       62 -1.01e+03  2.76e-06        0 1.13e-13      1.01      LensPV Transportation
-    3     14.5       62 -1.01e+03  2.76e-06        0    0.617      1.62      LensPV OpAbsorption
+    0     -213    -91.7 -1.25e+03   0.00205        0        0         0       World initStep
+    1     -213    -91.7 -1.25e+03         0  0.00205    0.157     0.157       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 174,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 17,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.87e-06        0        0         0      LensPV initStep
-    1     15.9     61.9 -1.01e+03  4.87e-06        0    0.276     0.276      LensPV OpAbsorption
+    0     -214    -92.1 -1.09e+03   0.00101        0        0         0       World initStep
+    1     -214    -92.1 -1.09e+03         0  0.00101   0.0543    0.0543       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 173,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.86e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.86e-06        0 1.21e-100 1.21e-100      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 172,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   5.8e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03   5.8e-06        0 1.1e-100  1.1e-100      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 171,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.06e-06        0        0         0      LensPV initStep
-    1     15.3     63.2 -1.01e+03  2.06e-06        0     1.97      1.97       World Transportation
-    2     15.3     63.2 -1.01e+03  2.06e-06        0 1.12e-13      1.97      LensPV Transportation
-    3       15     64.4 -1.01e+03  2.06e-06        0     1.66      3.63 LensMotherPV Transportation
-    4     13.4       69   -1e+03  2.06e-06        0     5.37         9      LensPV Transportation
-    5     13.4       69   -1e+03  2.06e-06        0        0         9 LensMotherPV Transportation
-    6    -8.19     44.4     -990  2.06e-06        0     35.9      44.9       World Transportation
-    7     -195     -169     -864  2.06e-06        0      310       355   UVSCopePV Transportation
-    8     -195     -169     -864  2.06e-06        0        0       355       World Transportation
-    9      -41      160     -990  2.06e-06        0      384       739 LensMotherPV Transportation
-   10    -35.1      172     -995  2.06e-06        0     14.5       754      LensPV Transportation
-   11    -34.5      175     -996  2.06e-06        0     3.23       757 LensMotherPV Transportation
-   12    -34.5      175     -996  2.06e-06        0        0       757      LensPV Transportation
-   13    -30.2      182 -1.01e+03  2.06e-06        0     14.5       771       World Transportation
-   14     21.4      257 -1.08e+03  2.06e-06        0      118       889   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 170,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.16e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.16e-06        0 6.39e-101 6.39e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 169,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   4.5e-06        0        0         0      LensPV initStep
-    1     15.9     61.7 -1.01e+03   4.5e-06        0    0.326     0.326       World Transportation
-    2     15.9     61.7 -1.01e+03   4.5e-06        0 1.16e-13     0.326      LensPV Transportation
-    3     17.8     60.7 -1.01e+03   4.5e-06        0     2.87       3.2 LensMotherPV Transportation
-    4     17.8     60.7 -1.01e+03   4.5e-06        0        0       3.2      LensPV Transportation
-    5     19.9     58.2 -1.01e+03   4.5e-06        0     3.85      7.05       World Transportation
-    6     19.9     58.2 -1.01e+03   4.5e-06        0 1.56e-13      7.05      LensPV Transportation
-    7     21.2     56.8 -1.01e+03   4.5e-06        0     2.18      9.23      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 168,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.72e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.72e-06        0 7.03e-101 7.03e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 167,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.77e-06        0        0         0      LensPV initStep
-    1     14.6     61.8 -1.01e+03  2.77e-06        0     1.47      1.47       World Transportation
-    2     14.6     61.8 -1.01e+03  2.77e-06        0 1.13e-13      1.47      LensPV Transportation
-    3     12.5     61.5 -1.01e+03  2.77e-06        0        3      4.47 LensMotherPV Transportation
-    4     12.5     61.5 -1.01e+03  2.77e-06        0        0      4.47      LensPV Transportation
-    5     9.12     59.9 -1.01e+03  2.77e-06        0     4.27      8.73       World Transportation
-    6     9.12     59.9 -1.01e+03  2.77e-06        0 1.61e-13      8.73      LensPV Transportation
-    7     3.22       57   -1e+03  2.77e-06        0     7.52      16.3 LensMotherPV Transportation
-    8     3.22       57   -1e+03  2.77e-06        0        0      16.3      LensPV Transportation
-    9    -2.73     52.7 -1.01e+03  2.77e-06        0     7.49      23.7 LensMotherPV Transportation
-   10    -2.73     52.7 -1.01e+03  2.77e-06        0        0      23.7      LensPV Transportation
-   11      -12       58 -1.01e+03  2.77e-06        0       11      34.7      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 166,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.09e-06        0        0         0      LensPV initStep
-    1     15.2     61.8 -1.01e+03  3.09e-06        0    0.627     0.627       World Transportation
-    2     15.2     61.8 -1.01e+03  3.09e-06        0 1.14e-13     0.627      LensPV Transportation
-    3     13.1     61.7 -1.01e+03  3.09e-06        0      2.9      3.53 LensMotherPV Transportation
-    4     13.1     61.7 -1.01e+03  3.09e-06        0        0      3.53      LensPV Transportation
-    5     9.89     60.2 -1.01e+03  3.09e-06        0     4.09      7.62       World Transportation
-    6     9.89     60.2 -1.01e+03  3.09e-06        0  1.6e-13      7.62      LensPV Transportation
-    7     5.21       58 -1.01e+03  3.09e-06        0     5.92      13.5      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 165,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.81e-06        0        0         0      LensPV initStep
-    1     15.6     61.7 -1.01e+03  4.81e-06        0    0.289     0.289      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 164,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.96e-06        0        0         0      LensPV initStep
-    1     15.6     61.8 -1.01e+03  4.96e-06        0    0.178     0.178      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 163,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.89e-06        0        0         0      LensPV initStep
-    1     16.3     61.3 -1.01e+03  4.89e-06        0     1.14      1.14       World Transportation
-    2     16.3     61.3 -1.01e+03  4.89e-06        0 1.17e-13      1.14      LensPV Transportation
-    3     16.4     61.2 -1.01e+03  4.89e-06        0    0.158       1.3      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 162,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.08e-06        0        0         0      LensPV initStep
-    1     15.3     61.5 -1.01e+03  3.08e-06        0    0.702     0.702       World Transportation
-    2     15.3     61.5 -1.01e+03  3.08e-06        0 1.14e-13     0.702      LensPV Transportation
-    3     14.6     60.8 -1.01e+03  3.08e-06        0     1.33      2.03      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 161,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   4.5e-06        0        0         0      LensPV initStep
-    1     15.8     60.5 -1.01e+03   4.5e-06        0     1.89      1.89       World Transportation
-    2     15.8     60.5 -1.01e+03   4.5e-06        0 1.16e-13      1.89      LensPV Transportation
-    3     16.2     57.2   -1e+03   4.5e-06        0     4.45      6.34 LensMotherPV Transportation
-    4     16.2     57.2   -1e+03   4.5e-06        0        0      6.34      LensPV Transportation
-    5     16.4     50.1 -1.01e+03   4.5e-06        0     7.25      13.6 LensMotherPV Transportation
-    6       17     47.7 -1.01e+03   4.5e-06        0     2.68      16.3      LensPV Transportation
-    7       17     47.3 -1.01e+03   4.5e-06        0    0.579      16.9       World Transportation
-    8       17     47.3 -1.01e+03   4.5e-06        0        0      16.9      LensPV Transportation
-    9     17.1     46.7 -1.01e+03   4.5e-06        0    0.808      17.7 LensMotherPV Transportation
-   10     17.1     46.7 -1.01e+03   4.5e-06        0 1.35e-13      17.7      LensPV Transportation
-   11     17.1     45.5 -1.01e+03   4.5e-06        0     1.33        19       World Transportation
-   12     17.1     45.5 -1.01e+03   4.5e-06        0        0        19      LensPV Transportation
-   13     17.2     42.9 -1.01e+03   4.5e-06        0      2.9      21.9 LensMotherPV Transportation
-   14     17.2     42.9 -1.01e+03   4.5e-06        0 4.18e-14      21.9      LensPV Transportation
-   15     17.2     35.1 -1.01e+03   4.5e-06        0      7.9      29.8      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 160,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.31e-06        0        0         0      LensPV initStep
-    1       16     61.4 -1.01e+03  4.31e-06        0    0.738     0.738       World Transportation
-    2       16     61.4 -1.01e+03  4.31e-06        0 1.16e-13     0.738      LensPV Transportation
-    3     17.4     59.6 -1.01e+03  4.31e-06        0     3.08      3.82      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 159,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.41e-06        0        0         0      LensPV initStep
-    1     15.7     62.2 -1.01e+03  3.41e-06        0     0.43      0.43       World Transportation
-    2     15.7     62.2 -1.01e+03  3.41e-06        0 1.14e-13      0.43      LensPV Transportation
-    3       16     63.5 -1.01e+03  3.41e-06        0     1.92      2.35 LensMotherPV Transportation
-    4     16.8     68.3   -1e+03  3.41e-06        0     5.22      7.57      LensPV Transportation
-    5     17.8     72.8   -1e+03  3.41e-06        0     4.78      12.4 LensMotherPV Transportation
-    6     17.8     72.8   -1e+03  3.41e-06        0 7.82e-14      12.4      LensPV Transportation
-    7     18.2     75.1 -1.01e+03  3.41e-06        0     4.01      16.4      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 158,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   2.7e-06        0        0         0      LensPV initStep
-    1     15.4     61.5 -1.01e+03   2.7e-06        0    0.683     0.683       World Transportation
-    2     15.4     61.5 -1.01e+03   2.7e-06        0 1.13e-13     0.683      LensPV Transportation
-    3     13.6     59.4 -1.01e+03   2.7e-06        0     3.75      4.43 LensMotherPV Transportation
-    4     13.6     59.4 -1.01e+03   2.7e-06        0        0      4.43      LensPV Transportation
-    5     13.5     59.2 -1.01e+03   2.7e-06        0    0.183      4.61      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 157,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.81e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.81e-06        0 3.45e-100 3.45e-100      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 156,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.08e-06        0        0         0      LensPV initStep
-    1     17.6     61.6 -1.01e+03  4.08e-06        0     2.61      2.61       World Transportation
-    2     17.6     61.6 -1.01e+03  4.08e-06        0 1.15e-13      2.61      LensPV Transportation
-    3     19.4     61.3 -1.01e+03  4.08e-06        0     2.46      5.07 LensMotherPV Transportation
-    4     19.4     61.3 -1.01e+03  4.08e-06        0        0      5.07      LensPV Transportation
-    5       21     60.1 -1.01e+03  4.08e-06        0     2.61      7.68       World Transportation
-    6       21     60.1 -1.01e+03  4.08e-06        0 1.23e-13      7.68      LensPV Transportation
-    7     22.9     58.6 -1.01e+03  4.08e-06        0     3.18      10.9 LensMotherPV Transportation
-    8     22.9     58.6 -1.01e+03  4.08e-06        0        0      10.9      LensPV Transportation
-    9     25.3     55.2 -1.01e+03  4.08e-06        0     4.58      15.4       World Transportation
-   10     25.3     55.2 -1.01e+03  4.08e-06        0 1.76e-13      15.4      LensPV Transportation
-   11     29.4     49.3   -1e+03  4.08e-06        0     8.02      23.5 LensMotherPV Transportation
-   12     29.4     49.3   -1e+03  4.08e-06        0 1.28e-14      23.5      LensPV Transportation
-   13     33.4     40.8 -1.01e+03  4.08e-06        0     9.57        33 LensMotherPV Transportation
-   14     33.4     40.8 -1.01e+03  4.08e-06        0        0        33      LensPV Transportation
-   15     42.1     38.7 -1.01e+03  4.08e-06        0     9.16      42.2       World Transportation
-   16     42.1     38.7 -1.01e+03  4.08e-06        0 4.12e-13      42.2      LensPV Transportation
-   17     51.8     36.3 -1.01e+03  4.08e-06        0     10.2      52.4 LensMotherPV Transportation
-   18     51.8     36.3 -1.01e+03  4.08e-06        0        0      52.4      LensPV Transportation
-   19     53.7     35.5 -1.01e+03  4.08e-06        0     2.34      54.8      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 155,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.36e-06        0        0         0      LensPV initStep
-    1     15.3     61.4 -1.01e+03  2.36e-06        0    0.803     0.803       World Transportation
-    2     15.3     61.4 -1.01e+03  2.36e-06        0 1.13e-13     0.803      LensPV Transportation
-    3     13.5     59.5 -1.01e+03  2.36e-06        0     3.72      4.52 LensMotherPV Transportation
-    4     13.5     59.5 -1.01e+03  2.36e-06        0        0      4.52      LensPV Transportation
-    5     8.35     52.1 -1.01e+03  2.36e-06        0      9.3      13.8      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 154,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.91e-06        0        0         0      LensPV initStep
-    1     15.7     62.3 -1.01e+03  2.91e-06        0    0.559     0.559       World Transportation
-    2     15.7     62.3 -1.01e+03  2.91e-06        0 1.13e-13     0.559      LensPV Transportation
-    3     15.7     63.5 -1.01e+03  2.91e-06        0     1.78      2.34      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 153,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.58e-06        0        0         0      LensPV initStep
-    1     16.3     62.7 -1.01e+03  3.58e-06        0     1.42      1.42       World Transportation
-    2     16.3     62.7 -1.01e+03  3.58e-06        0 1.14e-13      1.42      LensPV Transportation
-    3     17.1     63.7 -1.01e+03  3.58e-06        0     1.76      3.18 LensMotherPV Transportation
-    4     20.5     67.3   -1e+03  3.58e-06        0     5.25      8.44      LensPV Transportation
-    5     23.4     71.8   -1e+03  3.58e-06        0     5.57        14      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 152,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  1.91e-06        0        0         0      LensPV initStep
-    1     16.3     61.1 -1.01e+03  1.91e-06        0     1.42      1.42       World Transportation
-    2     16.3     61.1 -1.01e+03  1.91e-06        0 1.12e-13      1.42      LensPV Transportation
-    3     17.9     59.2 -1.01e+03  1.91e-06        0     3.35      4.77 LensMotherPV Transportation
-    4     17.9     59.2 -1.01e+03  1.91e-06        0        0      4.77      LensPV Transportation
-    5     20.1     54.2 -1.01e+03  1.91e-06        0     5.93      10.7       World Transportation
-    6     20.1     54.2 -1.01e+03  1.91e-06        0 1.99e-13      10.7      LensPV Transportation
-    7     20.8     52.6 -1.01e+03  1.91e-06        0     1.91      12.6      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 151,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   3.3e-06        0        0         0      LensPV initStep
-    1     16.3     61.4 -1.01e+03   3.3e-06        0     1.05      1.05       World Transportation
-    2     16.3     61.4 -1.01e+03   3.3e-06        0 1.14e-13      1.05      LensPV Transportation
-    3     18.1       60 -1.01e+03   3.3e-06        0     3.08      4.12 LensMotherPV Transportation
-    4     18.1       60 -1.01e+03   3.3e-06        0        0      4.12      LensPV Transportation
-    5     20.3     56.5 -1.01e+03   3.3e-06        0     4.64      8.77       World Transportation
-    6     20.3     56.5 -1.01e+03   3.3e-06        0 1.73e-13      8.77      LensPV Transportation
-    7       22     53.9 -1.01e+03   3.3e-06        0      3.5      12.3      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 150,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.87e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  4.87e-06        0   0.0386    0.0386      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 149,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.92e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.92e-06        0 2.14e-100 2.14e-100      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 148,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.06e-06        0        0         0      LensPV initStep
-    1     16.1     62.5 -1.01e+03  4.06e-06        0     1.05      1.05       World Transportation
-    2     16.1     62.5 -1.01e+03  4.06e-06        0 1.15e-13      1.05      LensPV Transportation
-    3     16.8     63.7 -1.01e+03  4.06e-06        0     1.81      2.87 LensMotherPV Transportation
-    4     19.4     67.6   -1e+03  4.06e-06        0     5.04       7.9      LensPV Transportation
-    5     21.4     71.5   -1e+03  4.06e-06        0     4.55      12.5      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 147,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.12e-06        0        0         0      LensPV initStep
-    1     15.5     61.7 -1.01e+03  4.12e-06        0    0.376     0.376       World Transportation
-    2     15.5     61.7 -1.01e+03  4.12e-06        0 1.15e-13     0.376      LensPV Transportation
-    3     13.3     60.2 -1.01e+03  4.12e-06        0     3.53       3.9 LensMotherPV Transportation
-    4     13.3     60.2 -1.01e+03  4.12e-06        0        0       3.9      LensPV Transportation
-    5     8.14     54.7 -1.01e+03  4.12e-06        0     7.95      11.9       World Transportation
-    6     8.14     54.7 -1.01e+03  4.12e-06        0  2.6e-13      11.9      LensPV Transportation
-    7     6.99     53.5 -1.01e+03  4.12e-06        0     1.75      13.6      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 146,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.56e-06        0        0         0      LensPV initStep
-    1     15.2     60.2 -1.01e+03  2.56e-06        0     2.38      2.38       World Transportation
-    2     15.2     60.2 -1.01e+03  2.56e-06        0 1.13e-13      2.38      LensPV Transportation
-    3       15     59.5 -1.01e+03  2.56e-06        0     1.02      3.39      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 145,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.19e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  3.19e-06        0   0.0618    0.0618      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 144,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.16e-06        0        0         0      LensPV initStep
-    1     15.1     61.3 -1.01e+03  2.16e-06        0     1.04      1.04       World Transportation
-    2     15.1     61.3 -1.01e+03  2.16e-06        0 1.13e-13      1.04      LensPV Transportation
-    3     13.2     59.4 -1.01e+03  2.16e-06        0     3.75      4.79 LensMotherPV Transportation
-    4     13.2     59.4 -1.01e+03  2.16e-06        0        0      4.79      LensPV Transportation
-    5     8.05     52.3 -1.01e+03  2.16e-06        0     9.16        14       World Transportation
-    6     8.05     52.3 -1.01e+03  2.16e-06        0 2.75e-13        14      LensPV Transportation
-    7     7.91     52.1 -1.01e+03  2.16e-06        0    0.242      14.2 LensMotherPV Transportation
-    8    -23.5     30.6     -990  2.16e-06        0     42.1      56.3       World Transportation
-    9     -232     -112     -872  2.16e-06        0      279       335   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 143,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.69e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.69e-06        0 9.2e-101  9.2e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 142,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.03e-06        0        0         0      LensPV initStep
-    1     16.4     63.1 -1.01e+03  3.03e-06        0     2.04      2.04       World Transportation
-    2     16.4     63.1 -1.01e+03  3.03e-06        0 1.13e-13      2.04      LensPV Transportation
-    3       17     64.1 -1.01e+03  3.03e-06        0     1.58      3.63 LensMotherPV Transportation
-    4     19.3     67.6 -1.01e+03  3.03e-06        0     4.55      8.18      LensPV Transportation
-    5     21.8     72.4   -1e+03  3.03e-06        0      5.6      13.8 LensMotherPV Transportation
-    6     21.8     72.4   -1e+03  3.03e-06        0 1.24e-13      13.8      LensPV Transportation
-    7     23.6     75.1 -1.01e+03  3.03e-06        0     5.43      19.2       World Transportation
-    8      124      226 -1.1e+03  3.03e-06        0      202       221   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 141,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  6.04e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  6.04e-06        0 9.4e-102  9.4e-102      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 140,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.59e-06        0        0         0      LensPV initStep
-    1     15.4     61.5 -1.01e+03  3.59e-06        0    0.677     0.677       World Transportation
-    2     15.4     61.5 -1.01e+03  3.59e-06        0 1.15e-13     0.677      LensPV Transportation
-    3     13.5     59.4 -1.01e+03  3.59e-06        0      3.8      4.48 LensMotherPV Transportation
-    4     13.5     59.4 -1.01e+03  3.59e-06        0 2.45e-14      4.48      LensPV Transportation
-    5     8.67       52 -1.01e+03  3.59e-06        0     9.12      13.6 LensMotherPV Transportation
-    6     8.67       52 -1.01e+03  3.59e-06        0        0      13.6      LensPV Transportation
-    7     8.41       53 -1.01e+03  3.59e-06        0     1.06      14.7       World Transportation
-    8     8.41       53 -1.01e+03  3.59e-06        0 3.07e-13      14.7      LensPV Transportation
-    9     6.18     61.6 -1.01e+03  3.59e-06        0     9.13      23.8 LensMotherPV Transportation
-   10     6.18     61.6 -1.01e+03  3.59e-06        0        0      23.8      LensPV Transportation
-   11     5.26     63.9 -1.01e+03  3.59e-06        0      3.4      27.2       World Transportation
-   12     5.26     63.9 -1.01e+03  3.59e-06        0 1.14e-13      27.2      LensPV Transportation
-   13     4.73     65.2 -1.01e+03  3.59e-06        0     1.98      29.2 LensMotherPV Transportation
-   14     2.18     70.3   -1e+03  3.59e-06        0     6.02      35.2      LensPV Transportation
-   15    0.826       75   -1e+03  3.59e-06        0     5.07      40.3 LensMotherPV Transportation
-   16    0.826       75   -1e+03  3.59e-06        0 8.88e-14      40.3      LensPV Transportation
-   17   -0.791     78.5 -1.01e+03  3.59e-06        0     5.97      46.3       World Transportation
-   18    -78.1      246 -1.05e+03  3.59e-06        0      188       235   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 139,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.54e-06        0        0         0      LensPV initStep
-    1     15.7     61.8 -1.01e+03  4.54e-06        0   0.0589    0.0589      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 138,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.63e-06        0        0         0      LensPV initStep
-    1     14.9     61.7 -1.01e+03  2.63e-06        0     1.07      1.07       World Transportation
-    2     14.9     61.7 -1.01e+03  2.63e-06        0 1.13e-13      1.07      LensPV Transportation
-    3     12.7     61.1 -1.01e+03  2.63e-06        0     3.13       4.2 LensMotherPV Transportation
-    4     12.7     61.1 -1.01e+03  2.63e-06        0        0       4.2      LensPV Transportation
-    5     8.92     58.8 -1.01e+03  2.63e-06        0     4.99      9.19       World Transportation
-    6     8.92     58.8 -1.01e+03  2.63e-06        0  1.8e-13      9.19      LensPV Transportation
-    7    0.899     53.8   -1e+03  2.63e-06        0     10.5      19.7 LensMotherPV Transportation
-    8    0.899     53.8   -1e+03  2.63e-06        0        0      19.7      LensPV Transportation
-    9   -0.365     52.7   -1e+03  2.63e-06        0     1.65      21.3 LensMotherPV Transportation
-   10   -0.365     52.7   -1e+03  2.63e-06        0        0      21.3      LensPV Transportation
-   11    -6.66     57.7   -1e+03  2.63e-06        0     8.11      29.4 LensMotherPV Transportation
-   12    -6.66     57.7   -1e+03  2.63e-06        0        0      29.4      LensPV Transportation
-   13    -13.3     62.7 -1.01e+03  2.63e-06        0     8.57        38      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 137,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.21e-06        0        0         0      LensPV initStep
-    1     15.7     61.8 -1.01e+03  4.21e-06        0    0.127     0.127       World Transportation
-    2     15.7     61.8 -1.01e+03  4.21e-06        0 1.16e-13     0.127      LensPV Transportation
-    3     17.2     59.8 -1.01e+03  4.21e-06        0     3.29      3.42 LensMotherPV Transportation
-    4     17.2     59.8 -1.01e+03  4.21e-06        0 2.84e-14      3.42      LensPV Transportation
-    5     19.5     54.3 -1.01e+03  4.21e-06        0     6.36      9.78       World Transportation
-    6     19.5     54.3 -1.01e+03  4.21e-06        0 2.24e-13      9.78      LensPV Transportation
-    7     22.2     47.8 -1.01e+03  4.21e-06        0      7.5      17.3 LensMotherPV Transportation
-    8     22.2     47.8 -1.01e+03  4.21e-06        0        0      17.3      LensPV Transportation
-    9     24.7     48.6   -1e+03  4.21e-06        0     2.78      20.1      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 136,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.35e-06        0        0         0      LensPV initStep
-    1     15.9     61.4 -1.01e+03  4.35e-06        0    0.726     0.726       World Transportation
-    2     15.9     61.4 -1.01e+03  4.35e-06        0 1.16e-13     0.726      LensPV Transportation
-    3     16.4     60.4 -1.01e+03  4.35e-06        0     1.47       2.2      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 135,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.47e-06        0        0         0      LensPV initStep
-    1     15.4     60.8 -1.01e+03  2.47e-06        0     1.57      1.57       World Transportation
-    2     15.4     60.8 -1.01e+03  2.47e-06        0 1.13e-13      1.57      LensPV Transportation
-    3     14.8     57.7   -1e+03  2.47e-06        0     4.28      5.84 LensMotherPV Transportation
-    4     14.8     57.7   -1e+03  2.47e-06        0  1.5e-14      5.84      LensPV Transportation
-    5     13.2     51.1 -1.01e+03  2.47e-06        0     7.03      12.9 LensMotherPV Transportation
-    6     12.7     48.6 -1.01e+03  2.47e-06        0     2.68      15.6      LensPV Transportation
-    7     12.6     48.1 -1.01e+03  2.47e-06        0    0.718      16.3       World Transportation
-    8     12.6     48.1 -1.01e+03  2.47e-06        0        0      16.3      LensPV Transportation
-    9     12.4     47.3 -1.01e+03  2.47e-06        0     1.09      17.4 LensMotherPV Transportation
-   10     12.4     47.3 -1.01e+03  2.47e-06        0 7.82e-14      17.4      LensPV Transportation
-   11     11.9     45.4 -1.01e+03  2.47e-06        0     2.05      19.4       World Transportation
-   12     11.9     45.4 -1.01e+03  2.47e-06        0        0      19.4      LensPV Transportation
-   13     10.7     39.9 -1.01e+03  2.47e-06        0     6.11      25.5 LensMotherPV Transportation
-   14     10.7     39.9 -1.01e+03  2.47e-06        0  4.1e-13      25.5      LensPV Transportation
-   15     9.26     33.9 -1.01e+03  2.47e-06        0     6.17      31.7 LensMotherPV Transportation
-   16    -9.22    -51.9   -1e+03  2.47e-06        0     87.8       119      LensPV Transportation
-   17     -9.9    -55.3   -1e+03  2.47e-06        0     3.43       123 LensMotherPV Transportation
-   18     -9.9    -55.3   -1e+03  2.47e-06        0        0       123      LensPV Transportation
-   19    -11.2    -61.5 -1.01e+03  2.47e-06        0     7.46       130       World Transportation
-   20    -11.2    -61.5 -1.01e+03  2.47e-06        0  1.5e-13       130      LensPV Transportation
-   21    -11.7    -63.9 -1.01e+03  2.47e-06        0     2.83       133 LensMotherPV Transportation
-   22    -11.7    -63.9 -1.01e+03  2.47e-06        0        0       133      LensPV Transportation
-   23    -11.9    -64.6 -1.01e+03  2.47e-06        0     1.67       135       World Transportation
-   24    -54.4     -252 -1.21e+03  2.47e-06        0      276       411   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 134,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  1.98e-06        0        0         0      LensPV initStep
-    1     16.5     61.8 -1.01e+03  1.98e-06        0      1.2       1.2       World Transportation
-    2     16.5     61.8 -1.01e+03  1.98e-06        0 1.12e-13       1.2      LensPV Transportation
-    3     18.2     61.6 -1.01e+03  1.98e-06        0     2.39      3.59 LensMotherPV Transportation
-    4     18.2     61.6 -1.01e+03  1.98e-06        0        0      3.59      LensPV Transportation
-    5     19.8     60.6 -1.01e+03  1.98e-06        0     2.48      6.07       World Transportation
-    6     19.8     60.6 -1.01e+03  1.98e-06        0 1.17e-13      6.07      LensPV Transportation
-    7     21.1     59.6 -1.01e+03  1.98e-06        0     2.27      8.34      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 133,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.11e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.11e-06        0 7.61e-101 7.61e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 132,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.68e-06        0        0         0      LensPV initStep
-    1     14.7     61.1 -1.01e+03  2.68e-06        0     1.72      1.72       World Transportation
-    2     14.7     61.1 -1.01e+03  2.68e-06        0 1.13e-13      1.72      LensPV Transportation
-    3     12.5     59.4 -1.01e+03  2.68e-06        0     3.85      5.57 LensMotherPV Transportation
-    4     12.5     59.4 -1.01e+03  2.68e-06        0        0      5.57      LensPV Transportation
-    5     11.3     57.9 -1.01e+03  2.68e-06        0     2.03       7.6      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 131,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.12e-06        0        0         0      LensPV initStep
-    1       15     60.9 -1.01e+03  3.12e-06        0     1.59      1.59       World Transportation
-    2       15     60.9 -1.01e+03  3.12e-06        0 1.14e-13      1.59      LensPV Transportation
-    3     13.7     59.2 -1.01e+03  3.12e-06        0     2.99      4.57      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 130,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.15e-06        0        0         0      LensPV initStep
-    1     16.1     63.5 -1.01e+03  3.15e-06        0      2.3       2.3       World Transportation
-    2     16.1     63.5 -1.01e+03  3.15e-06        0 1.13e-13       2.3      LensPV Transportation
-    3     16.4     64.5 -1.01e+03  3.15e-06        0      1.5      3.79 LensMotherPV Transportation
-    4     17.4     68.1 -1.01e+03  3.15e-06        0     4.09      7.89      LensPV Transportation
-    5     18.9     73.6   -1e+03  3.15e-06        0     5.85      13.7 LensMotherPV Transportation
-    6     18.9     73.6   -1e+03  3.15e-06        0        0      13.7      LensPV Transportation
-    7     19.1     74.1   -1e+03  3.15e-06        0     1.03      14.8      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 129,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.31e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.31e-06        0 6.94e-101 6.94e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 128,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.45e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.45e-06        0 3.55e-102 3.55e-102      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 127,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.05e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.05e-06        0 2.07e-101 2.07e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 126,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  1.99e-06        0        0         0      LensPV initStep
-    1     15.6     61.7 -1.01e+03  1.99e-06        0    0.198     0.198      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 125,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   1.8e-06        0        0         0      LensPV initStep
-    1     16.5     61.9 -1.01e+03   1.8e-06        0     1.17      1.17       World Transportation
-    2     16.5     61.9 -1.01e+03   1.8e-06        0 1.12e-13      1.17      LensPV Transportation
-    3     18.1     62.1 -1.01e+03   1.8e-06        0     2.23       3.4 LensMotherPV Transportation
-    4     18.1     62.1 -1.01e+03   1.8e-06        0        0       3.4      LensPV Transportation
-    5     19.4     61.4 -1.01e+03   1.8e-06        0     2.13      5.53       World Transportation
-    6     19.4     61.4 -1.01e+03   1.8e-06        0 1.07e-13      5.53      LensPV Transportation
-    7     20.8     60.6 -1.01e+03   1.8e-06        0     2.34      7.87 LensMotherPV Transportation
-    8     20.8     60.6 -1.01e+03   1.8e-06        0 7.11e-15      7.87      LensPV Transportation
-    9     22.2     58.7 -1.01e+03   1.8e-06        0     2.98      10.9       World Transportation
-   10     22.2     58.7 -1.01e+03   1.8e-06        0 1.36e-13      10.9      LensPV Transportation
-   11     24.4     55.6 -1.01e+03   1.8e-06        0     4.57      15.4 LensMotherPV Transportation
-   12     24.4     55.6 -1.01e+03   1.8e-06        0        0      15.4      LensPV Transportation
-   13     26.7     50.6 -1.01e+03   1.8e-06        0     5.75      21.2      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 124,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.57e-06        0        0         0      LensPV initStep
-    1     15.6     62.8 -1.01e+03  3.57e-06        0     1.28      1.28       World Transportation
-    2     15.6     62.8 -1.01e+03  3.57e-06        0 1.14e-13      1.28      LensPV Transportation
-    3     15.5     64.1 -1.01e+03  3.57e-06        0     1.77      3.05 LensMotherPV Transportation
-    4     14.7     68.8   -1e+03  3.57e-06        0     5.11      8.16      LensPV Transportation
-    5     14.6       74   -1e+03  3.57e-06        0     5.43      13.6 LensMotherPV Transportation
-    6     14.6       74   -1e+03  3.57e-06        0 3.55e-14      13.6      LensPV Transportation
-    7     14.1     77.5 -1.01e+03  3.57e-06        0     5.62      19.2       World Transportation
-    8    -12.8      258 -1.08e+03  3.57e-06        0      194       214   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 123,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.33e-06        0        0         0      LensPV initStep
-    1     16.5     60.3 -1.01e+03  2.33e-06        0     2.38      2.38       World Transportation
-    2     16.5     60.3 -1.01e+03  2.33e-06        0 1.13e-13      2.38      LensPV Transportation
-    3     17.8     57.8 -1.01e+03  2.33e-06        0     3.91       6.3 LensMotherPV Transportation
-    4     17.8     57.8 -1.01e+03  2.33e-06        0        0       6.3      LensPV Transportation
-    5     19.8     50.3 -1.01e+03  2.33e-06        0     8.21      14.5       World Transportation
-    6     19.8     50.3 -1.01e+03  2.33e-06        0 2.37e-13      14.5      LensPV Transportation
-    7     20.3     48.7 -1.01e+03  2.33e-06        0     1.84      16.3 LensMotherPV Transportation
-    8     26.4     45.6   -1e+03  2.33e-06        0     7.86      24.2      LensPV Transportation
-    9     26.4     45.6   -1e+03  2.33e-06        0        0      24.2 LensMotherPV Transportation
-   10     46.1     32.5     -990  2.33e-06        0     27.2      51.4       World Transportation
-   11      239    -96.7     -859  2.33e-06        0      267       318   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 122,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.27e-06        0        0         0      LensPV initStep
-    1     16.7     62.1 -1.01e+03  2.27e-06        0     1.48      1.48       World Transportation
-    2     16.7     62.1 -1.01e+03  2.27e-06        0 1.13e-13      1.48      LensPV Transportation
-    3     18.2     62.5 -1.01e+03  2.27e-06        0     2.09      3.57 LensMotherPV Transportation
-    4     31.5     62.8   -1e+03  2.27e-06        0     13.6      17.2      LensPV Transportation
-    5     36.1     65.2   -1e+03  2.27e-06        0      5.2      22.4 LensMotherPV Transportation
-    6     36.1     65.2   -1e+03  2.27e-06        0 1.21e-13      22.4      LensPV Transportation
-    7     41.8     66.9 -1.01e+03  2.27e-06        0     7.61        30       World Transportation
-    8     41.8     66.9 -1.01e+03  2.27e-06        0        0        30      LensPV Transportation
-    9     44.7     67.8 -1.01e+03  2.27e-06        0     3.81      33.8 LensMotherPV Transportation
-   10     44.7     67.8 -1.01e+03  2.27e-06        0        0      33.8      LensPV Transportation
-   11     45.9     67.2 -1.01e+03  2.27e-06        0     2.75      36.6       World Transportation
-   12      256    -29.8 -1.21e+03  2.27e-06        0      306       343   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 121,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.89e-06        0        0         0      LensPV initStep
-    1       15     62.2 -1.01e+03  3.89e-06        0    0.981     0.981       World Transportation
-    2       15     62.2 -1.01e+03  3.89e-06        0 1.15e-13     0.981      LensPV Transportation
-    3     13.5     62.9 -1.01e+03  3.89e-06        0      2.4      3.38 LensMotherPV Transportation
-    4     13.5     62.9 -1.01e+03  3.89e-06        0 1.42e-14      3.38      LensPV Transportation
-    5     13.4     62.9 -1.01e+03  3.89e-06        0    0.121       3.5      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 120,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.96e-06        0        0         0      LensPV initStep
-    1     15.2     62.9 -1.01e+03  2.96e-06        0     1.58      1.58       World Transportation
-    2     15.2     62.9 -1.01e+03  2.96e-06        0 1.13e-13      1.58      LensPV Transportation
-    3     14.6     64.1 -1.01e+03  2.96e-06        0     1.83      3.41 LensMotherPV Transportation
-    4     10.9     69.5   -1e+03  2.96e-06        0      6.9      10.3      LensPV Transportation
-    5     9.49     74.1   -1e+03  2.96e-06        0     5.02      15.3 LensMotherPV Transportation
-    6     9.49     74.1   -1e+03  2.96e-06        0 3.55e-15      15.3      LensPV Transportation
-    7     7.39     77.9 -1.01e+03  2.96e-06        0     6.38      21.7       World Transportation
-    8     7.39     77.9 -1.01e+03  2.96e-06        0        0      21.7      LensPV Transportation
-    9     6.19     80.1 -1.01e+03  2.96e-06        0     3.65      25.4 LensMotherPV Transportation
-   10       -9      101     -990  2.96e-06        0     29.7      55.1       World Transportation
-   11     -108      234     -891  2.96e-06        0      194       249   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 119,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   3.9e-06        0        0         0      LensPV initStep
-    1     15.6     62.2 -1.01e+03   3.9e-06        0    0.519     0.519       World Transportation
-    2     15.6     62.2 -1.01e+03   3.9e-06        0 1.14e-13     0.519      LensPV Transportation
-    3     15.4     63.6 -1.01e+03   3.9e-06        0     1.94      2.46 LensMotherPV Transportation
-    4     14.4     68.8   -1e+03   3.9e-06        0     5.64      8.11      LensPV Transportation
-    5     14.1     73.9   -1e+03   3.9e-06        0     5.22      13.3 LensMotherPV Transportation
-    6     14.1     73.9   -1e+03   3.9e-06        0        0      13.3      LensPV Transportation
-    7     13.5     77.5 -1.01e+03   3.9e-06        0      5.8      19.1       World Transportation
-    8    -19.3      257 -1.06e+03   3.9e-06        0      189       209   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 118,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  6.01e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  6.01e-06        0 4.11e-101 4.11e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 117,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.12e-06        0        0         0      LensPV initStep
-    1     15.2     60.5 -1.01e+03  4.12e-06        0     1.98      1.98       World Transportation
-    2     15.2     60.5 -1.01e+03  4.12e-06        0 1.16e-13      1.98      LensPV Transportation
-    3     14.2     57.2   -1e+03  4.12e-06        0     4.63      6.61 LensMotherPV Transportation
-    4     14.2     57.2   -1e+03  4.12e-06        0        0      6.61      LensPV Transportation
-    5     14.2     57.1   -1e+03  4.12e-06        0   0.0749      6.69      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 116,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.15e-06        0        0         0      LensPV initStep
-    1     15.6       62 -1.01e+03  4.15e-06        0    0.205     0.205       World Transportation
-    2     15.6       62 -1.01e+03  4.15e-06        0 1.15e-13     0.205      LensPV Transportation
-    3     14.5     63.2 -1.01e+03  4.15e-06        0     2.23      2.44 LensMotherPV Transportation
-    4     4.06     70.2 -1.01e+03  4.15e-06        0     12.6        15      LensPV Transportation
-    5    -1.44     79.4   -1e+03  4.15e-06        0     10.7      25.8 LensMotherPV Transportation
-    6    -1.44     79.4   -1e+03  4.15e-06        0 2.06e-13      25.8      LensPV Transportation
-    7    -4.05     82.7 -1.01e+03  4.15e-06        0     5.14      30.9       World Transportation
-    8    -4.05     82.7 -1.01e+03  4.15e-06        0        0      30.9      LensPV Transportation
-    9    -4.57     83.3 -1.01e+03  4.15e-06        0     1.04      31.9      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 115,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.67e-06        0        0         0      LensPV initStep
-    1       16       62 -1.01e+03  4.67e-06        0    0.526     0.526       World Transportation
-    2       16       62 -1.01e+03  4.67e-06        0 1.16e-13     0.526      LensPV Transportation
-    3     17.4     62.8 -1.01e+03  4.67e-06        0     2.11      2.64 LensMotherPV Transportation
-    4     25.5     65.5 -1.01e+03  4.67e-06        0      8.7      11.3      LensPV Transportation
-    5     26.1     65.9 -1.01e+03  4.67e-06        0    0.674        12      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 114,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   1.9e-06        0        0         0      LensPV initStep
-    1     15.1     61.6 -1.01e+03   1.9e-06        0    0.903     0.903       World Transportation
-    2     15.1     61.6 -1.01e+03   1.9e-06        0 1.12e-13     0.903      LensPV Transportation
-    3       13     60.5 -1.01e+03   1.9e-06        0     3.31      4.21 LensMotherPV Transportation
-    4       13     60.5 -1.01e+03   1.9e-06        0        0      4.21      LensPV Transportation
-    5      8.6     56.9 -1.01e+03   1.9e-06        0     6.16      10.4       World Transportation
-    6      8.6     56.9 -1.01e+03   1.9e-06        0 2.08e-13      10.4      LensPV Transportation
-    7     3.57     52.6 -1.01e+03   1.9e-06        0     7.11      17.5 LensMotherPV Transportation
-    8     3.57     52.6 -1.01e+03   1.9e-06        0        0      17.5      LensPV Transportation
-    9     1.15     55.3   -1e+03   1.9e-06        0      3.9      21.4 LensMotherPV Transportation
-   10     1.15     55.3   -1e+03   1.9e-06        0        0      21.4      LensPV Transportation
-   11    -2.72     57.8 -1.01e+03   1.9e-06        0     6.18      27.6       World Transportation
-   12    -2.72     57.8 -1.01e+03   1.9e-06        0 1.17e-13      27.6      LensPV Transportation
-   13    -5.44     59.5 -1.01e+03   1.9e-06        0     4.34      31.9 LensMotherPV Transportation
-   14    -79.7     90.1     -990   1.9e-06        0     81.7       114       World Transportation
-   15     -213      145     -963   1.9e-06        0      147       261   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 113,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.54e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.54e-06        0 3.88e-101 3.88e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 112,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.67e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.67e-06        0 1.75e-100 1.75e-100      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 111,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.21e-06        0        0         0      LensPV initStep
-    1     16.1       61 -1.01e+03  2.21e-06        0      1.4       1.4       World Transportation
-    2     16.1       61 -1.01e+03  2.21e-06        0 1.13e-13       1.4      LensPV Transportation
-    3     17.3     58.6 -1.01e+03  2.21e-06        0     3.66      5.06 LensMotherPV Transportation
-    4     17.3     58.6 -1.01e+03  2.21e-06        0        0      5.06      LensPV Transportation
-    5     19.3     51.5 -1.01e+03  2.21e-06        0     7.76      12.8       World Transportation
-    6     19.3     51.5 -1.01e+03  2.21e-06        0  2.4e-13      12.8      LensPV Transportation
-    7       20     48.8 -1.01e+03  2.21e-06        0     3.01      15.8 LensMotherPV Transportation
-    8       20     48.8 -1.01e+03  2.21e-06        0        0      15.8      LensPV Transportation
-    9     25.9     52.2   -1e+03  2.21e-06        0     7.17        23 LensMotherPV Transportation
-   10     25.9     52.2   -1e+03  2.21e-06        0        0        23      LensPV Transportation
-   11     29.3     53.3 -1.01e+03  2.21e-06        0     4.86      27.9       World Transportation
-   12     29.3     53.3 -1.01e+03  2.21e-06        0 1.14e-13      27.9      LensPV Transportation
-   13     31.5       54 -1.01e+03  2.21e-06        0     3.15        31 LensMotherPV Transportation
-   14     42.6     55.9   -1e+03  2.21e-06        0     11.9      42.9      LensPV Transportation
-   15     43.3     56.3   -1e+03  2.21e-06        0    0.847      43.7 LensMotherPV Transportation
-   16     43.3     56.3   -1e+03  2.21e-06        0 1.42e-14      43.7      LensPV Transportation
-   17       49     57.8 -1.01e+03  2.21e-06        0     8.36      52.1       World Transportation
-   18       49     57.8 -1.01e+03  2.21e-06        0        0      52.1      LensPV Transportation
-   19     52.2     58.6   -1e+03  2.21e-06        0     4.68      56.8 LensMotherPV Transportation
-   20     78.6       62     -990  2.21e-06        0     30.4      87.2       World Transportation
-   21      244     82.8     -899  2.21e-06        0      190       277   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 110,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   5.9e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03   5.9e-06        0 3.74e-101 3.74e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 109,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.08e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.08e-06        0 6.83e-100 6.83e-100      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 108,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.22e-06        0        0         0      LensPV initStep
-    1     16.6     61.6 -1.01e+03  4.22e-06        0     1.26      1.26       World Transportation
-    2     16.6     61.6 -1.01e+03  4.22e-06        0 1.16e-13      1.26      LensPV Transportation
-    3     18.5     60.9 -1.01e+03  4.22e-06        0     2.71      3.98 LensMotherPV Transportation
-    4     18.5     60.9 -1.01e+03  4.22e-06        0        0      3.98      LensPV Transportation
-    5     20.4     59.1 -1.01e+03  4.22e-06        0     3.22       7.2       World Transportation
-    6     20.4     59.1 -1.01e+03  4.22e-06        0 1.38e-13       7.2      LensPV Transportation
-    7     23.1     56.6 -1.01e+03  4.22e-06        0     4.45      11.7 LensMotherPV Transportation
-    8     23.1     56.6 -1.01e+03  4.22e-06        0        0      11.7      LensPV Transportation
-    9     26.9     50.6 -1.01e+03  4.22e-06        0     7.51      19.2       World Transportation
-   10     26.9     50.6 -1.01e+03  4.22e-06        0 2.32e-13      19.2      LensPV Transportation
-   11       28     48.8 -1.01e+03  4.22e-06        0     2.28      21.4      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 107,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.83e-06        0        0         0      LensPV initStep
-    1       17     60.7 -1.01e+03  3.83e-06        0     2.44      2.44       World Transportation
-    2       17     60.7 -1.01e+03  3.83e-06        0 1.15e-13      2.44      LensPV Transportation
-    3     18.9       59 -1.01e+03  3.83e-06        0     3.39      5.82 LensMotherPV Transportation
-    4     18.9       59 -1.01e+03  3.83e-06        0        0      5.82      LensPV Transportation
-    5     20.3     56.5 -1.01e+03  3.83e-06        0     3.17         9      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 106,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.21e-06        0        0         0      LensPV initStep
-    1     15.7       63 -1.01e+03  3.21e-06        0     1.59      1.59       World Transportation
-    2     15.7       63 -1.01e+03  3.21e-06        0 1.13e-13      1.59      LensPV Transportation
-    3     15.7     64.2 -1.01e+03  3.21e-06        0     1.68      3.27 LensMotherPV Transportation
-    4     15.5     68.6   -1e+03  3.21e-06        0     4.74      8.01      LensPV Transportation
-    5     15.8     73.8   -1e+03  3.21e-06        0      5.4      13.4 LensMotherPV Transportation
-    6     15.8     73.8   -1e+03  3.21e-06        0 1.07e-14      13.4      LensPV Transportation
-    7     15.7     74.6   -1e+03  3.21e-06        0     1.33      14.7      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 105,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.56e-06        0        0         0      LensPV initStep
-    1     14.9     61.3 -1.01e+03  3.56e-06        0     1.37      1.37       World Transportation
-    2     14.9     61.3 -1.01e+03  3.56e-06        0 1.15e-13      1.37      LensPV Transportation
-    3     12.7     59.6 -1.01e+03  3.56e-06        0     3.78      5.15 LensMotherPV Transportation
-    4     12.7     59.6 -1.01e+03  3.56e-06        0 5.68e-14      5.15      LensPV Transportation
-    5      8.1     54.6 -1.01e+03  3.56e-06        0      7.1      12.2      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 104,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   3.4e-06        0        0         0      LensPV initStep
-    1     15.3     61.8 -1.01e+03   3.4e-06        0    0.527     0.527       World Transportation
-    2     15.3     61.8 -1.01e+03   3.4e-06        0 1.14e-13     0.527      LensPV Transportation
-    3     13.2     61.5 -1.01e+03   3.4e-06        0     2.97       3.5 LensMotherPV Transportation
-    4     13.2     61.5 -1.01e+03   3.4e-06        0        0       3.5      LensPV Transportation
-    5      9.7     59.8 -1.01e+03   3.4e-06        0     4.38      7.87       World Transportation
-    6      9.7     59.8 -1.01e+03   3.4e-06        0 1.68e-13      7.87      LensPV Transportation
-    7     3.29     56.5   -1e+03   3.4e-06        0     8.13        16 LensMotherPV Transportation
-    8     3.29     56.5   -1e+03   3.4e-06        0        0        16      LensPV Transportation
-    9    -1.95     52.7 -1.01e+03   3.4e-06        0     6.56      22.6 LensMotherPV Transportation
-   10    -1.95     52.7 -1.01e+03   3.4e-06        0        0      22.6      LensPV Transportation
-   11    -15.1     60.8 -1.01e+03   3.4e-06        0     15.7      38.3       World Transportation
-   12    -15.1     60.8 -1.01e+03   3.4e-06        0  4.6e-13      38.3      LensPV Transportation
-   13    -19.9     63.8 -1.01e+03   3.4e-06        0      5.7        44 LensMotherPV Transportation
-   14    -19.9     63.8 -1.01e+03   3.4e-06        0        0        44      LensPV Transportation
-   15    -21.3     64.4 -1.01e+03   3.4e-06        0     1.84      45.8       World Transportation
-   16    -21.3     64.4 -1.01e+03   3.4e-06        0 1.48e-13      45.8      LensPV Transportation
-   17    -22.1     64.7 -1.01e+03   3.4e-06        0        1      46.8 LensMotherPV Transportation
-   18    -22.1     64.7 -1.01e+03   3.4e-06        0        0      46.8      LensPV Transportation
-   19    -22.6     64.7 -1.01e+03   3.4e-06        0    0.712      47.5       World Transportation
-   20    -22.6     64.7 -1.01e+03   3.4e-06        0 1.05e-13      47.5      LensPV Transportation
-   21      -23     64.7 -1.01e+03   3.4e-06        0    0.603      48.1 LensMotherPV Transportation
-   22    -31.8     62.7   -1e+03   3.4e-06        0     9.38      57.5      LensPV Transportation
-   23    -37.7     65.4   -1e+03   3.4e-06        0     6.61      64.1 LensMotherPV Transportation
-   24    -37.7     65.4   -1e+03   3.4e-06        0 9.24e-14      64.1      LensPV Transportation
-   25    -42.2     66.3 -1.01e+03   3.4e-06        0      6.1      70.2      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 103,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.61e-06        0        0         0      LensPV initStep
-    1     13.9     61.2 -1.01e+03  4.61e-06        0     2.51      2.51       World Transportation
-    2     13.9     61.2 -1.01e+03  4.61e-06        0 1.16e-13      2.51      LensPV Transportation
-    3     12.9     60.8 -1.01e+03  4.61e-06        0     1.46      3.96      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 102,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  1.96e-06        0        0         0      LensPV initStep
-    1     16.6     60.8 -1.01e+03  1.96e-06        0     1.96      1.96       World Transportation
-    2     16.6     60.8 -1.01e+03  1.96e-06        0 1.13e-13      1.96      LensPV Transportation
-    3     18.3     59.1 -1.01e+03  1.96e-06        0     3.35      5.31 LensMotherPV Transportation
-    4     18.3     59.1 -1.01e+03  1.96e-06        0        0      5.31      LensPV Transportation
-    5     20.6     54.6 -1.01e+03  1.96e-06        0     5.57      10.9       World Transportation
-    6     20.6     54.6 -1.01e+03  1.96e-06        0 1.87e-13      10.9      LensPV Transportation
-    7     24.5     46.7   -1e+03  1.96e-06        0     9.66      20.5 LensMotherPV Transportation
-    8     24.5     46.7   -1e+03  1.96e-06        0        0      20.5      LensPV Transportation
-    9     25.8     46.9   -1e+03  1.96e-06        0     1.44        22 LensMotherPV Transportation
-   10     25.8     46.9   -1e+03  1.96e-06        0        0        22      LensPV Transportation
-   11     31.3       46 -1.01e+03  1.96e-06        0     7.25      29.2       World Transportation
-   12     31.3       46 -1.01e+03  1.96e-06        0 1.22e-13      29.2      LensPV Transportation
-   13     35.5     45.3   -1e+03  1.96e-06        0     5.51      34.7 LensMotherPV Transportation
-   14     35.5     45.3   -1e+03  1.96e-06        0        0      34.7      LensPV Transportation
-   15     36.6     44.4 -1.01e+03  1.96e-06        0     2.21      36.9      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 101,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03     5e-06        0        0         0      LensPV initStep
-    1     15.6     61.9 -1.01e+03     5e-06        0   0.0873    0.0873      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 100,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.29e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.29e-06        0 2.02e-100 2.02e-100      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 99,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.47e-06        0        0         0      LensPV initStep
-    1     16.6     62.3 -1.01e+03  2.47e-06        0     1.42      1.42       World Transportation
-    2     16.6     62.3 -1.01e+03  2.47e-06        0 1.13e-13      1.42      LensPV Transportation
-    3     17.9     62.8 -1.01e+03  2.47e-06        0     1.98       3.4 LensMotherPV Transportation
-    4     26.8       65   -1e+03  2.47e-06        0     9.53      12.9      LensPV Transportation
-    5     30.5     67.6   -1e+03  2.47e-06        0     4.55      17.5 LensMotherPV Transportation
-    6     30.5     67.6   -1e+03  2.47e-06        0 1.56e-13      17.5      LensPV Transportation
-    7     35.3     69.7 -1.01e+03  2.47e-06        0     7.16      24.6       World Transportation
-    8     35.3     69.7 -1.01e+03  2.47e-06        0        0      24.6      LensPV Transportation
-    9     37.9     70.8 -1.01e+03  2.47e-06        0     3.93      28.6 LensMotherPV Transportation
-   10     48.1     73.5   -1e+03  2.47e-06        0     11.4        40      LensPV Transportation
-   11       49     74.1   -1e+03  2.47e-06        0     1.13      41.1 LensMotherPV Transportation
-   12       49     74.1   -1e+03  2.47e-06        0 2.84e-14      41.1      LensPV Transportation
-   13     54.1     75.2 -1.01e+03  2.47e-06        0     8.88        50       World Transportation
-   14     54.1     75.2 -1.01e+03  2.47e-06        0        0        50      LensPV Transportation
-   15     57.3     75.8   -1e+03  2.47e-06        0     5.57      55.5 LensMotherPV Transportation
-   16     71.1     75.8     -990  2.47e-06        0     19.2      74.7       World Transportation
-   17      247     75.7     -820  2.47e-06        0      244       319   UVSCopePV Transportation
-   18      247     75.7     -820  2.47e-06        0        0       319       World Transportation
-   19     68.2     -249     -957  2.47e-06        0      395       714   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 98,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.49e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.49e-06        0 7.13e-101 7.13e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 97,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.99e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  4.99e-06        0   0.0278    0.0278      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 96,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.95e-06        0        0         0      LensPV initStep
-    1     14.9     62.1 -1.01e+03  3.95e-06        0     1.14      1.14      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 95,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.64e-06        0        0         0      LensPV initStep
-    1     16.9     62.2 -1.01e+03  2.64e-06        0     1.81      1.81       World Transportation
-    2     16.9     62.2 -1.01e+03  2.64e-06        0 1.13e-13      1.81      LensPV Transportation
-    3     18.3     62.6 -1.01e+03  2.64e-06        0     2.01      3.82 LensMotherPV Transportation
-    4     29.7     63.7   -1e+03  2.64e-06        0     11.7      15.5      LensPV Transportation
-    5     34.5     66.5   -1e+03  2.64e-06        0     5.53      21.1 LensMotherPV Transportation
-    6     34.5     66.5   -1e+03  2.64e-06        0 9.24e-14      21.1      LensPV Transportation
-    7     39.7     68.3 -1.01e+03  2.64e-06        0     7.25      28.3       World Transportation
-    8     39.7     68.3 -1.01e+03  2.64e-06        0        0      28.3      LensPV Transportation
-    9     42.4     69.3 -1.01e+03  2.64e-06        0      3.7        32 LensMotherPV Transportation
-   10     51.9     70.9   -1e+03  2.64e-06        0     9.89      41.9      LensPV Transportation
-   11     51.9     70.9   -1e+03  2.64e-06        0        0      41.9 LensMotherPV Transportation
-   12     59.3     16.8     -990  2.64e-06        0     56.2      98.1       World Transportation
-   13     94.4     -240     -927  2.64e-06        0      267       365   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 94,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.96e-06        0        0         0      LensPV initStep
-    1     15.5     62.1 -1.01e+03  3.96e-06        0    0.393     0.393       World Transportation
-    2     15.5     62.1 -1.01e+03  3.96e-06        0 1.15e-13     0.393      LensPV Transportation
-    3     14.8     63.4 -1.01e+03  3.96e-06        0     2.08      2.48 LensMotherPV Transportation
-    4     10.1     69.6   -1e+03  3.96e-06        0     7.98      10.5      LensPV Transportation
-    5       10       70   -1e+03  3.96e-06        0    0.435      10.9      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 93,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  1.93e-06        0        0         0      LensPV initStep
-    1     17.2     62.8 -1.01e+03  1.93e-06        0     2.48      2.48       World Transportation
-    2     17.2     62.8 -1.01e+03  1.93e-06        0 1.12e-13      2.48      LensPV Transportation
-    3     18.2     63.5 -1.01e+03  1.93e-06        0     1.69      4.18 LensMotherPV Transportation
-    4       24     66.1   -1e+03  1.93e-06        0     6.79        11      LensPV Transportation
-    5     27.3     69.2   -1e+03  1.93e-06        0     4.72      15.7 LensMotherPV Transportation
-    6     27.3     69.2   -1e+03  1.93e-06        0 3.55e-15      15.7      LensPV Transportation
-    7       29     70.1 -1.01e+03  1.93e-06        0     2.84      18.5      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 92,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.71e-06        0        0         0      LensPV initStep
-    1     15.5     62.2 -1.01e+03  3.71e-06        0    0.544     0.544       World Transportation
-    2     15.5     62.2 -1.01e+03  3.71e-06        0 1.14e-13     0.544      LensPV Transportation
-    3     14.7     63.5 -1.01e+03  3.71e-06        0     2.07      2.62 LensMotherPV Transportation
-    4     9.43     69.7   -1e+03  3.71e-06        0     8.41        11      LensPV Transportation
-    5     7.51     74.7   -1e+03  3.71e-06        0     5.46      16.5 LensMotherPV Transportation
-    6     7.51     74.7   -1e+03  3.71e-06        0        0      16.5      LensPV Transportation
-    7     4.98     78.8 -1.01e+03  3.71e-06        0     6.61      23.1       World Transportation
-    8     4.98     78.8 -1.01e+03  3.71e-06        0        0      23.1      LensPV Transportation
-    9     3.62     80.9 -1.01e+03  3.71e-06        0     3.54      26.6 LensMotherPV Transportation
-   10    -2.18     87.9   -1e+03  3.71e-06        0      9.8      36.4      LensPV Transportation
-   11    -3.03     89.7   -1e+03  3.71e-06        0     2.13      38.6 LensMotherPV Transportation
-   12    -3.03     89.7   -1e+03  3.71e-06        0 9.95e-14      38.6      LensPV Transportation
-   13    -6.19     93.1 -1.01e+03  3.71e-06        0     8.23      46.8       World Transportation
-   14     -129      223 -1.12e+03  3.71e-06        0      210       257   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 91,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.49e-06        0        0         0      LensPV initStep
-    1     15.7     61.4 -1.01e+03  3.49e-06        0    0.621     0.621       World Transportation
-    2     15.7     61.4 -1.01e+03  3.49e-06        0 1.15e-13     0.621      LensPV Transportation
-    3     15.8     58.5 -1.01e+03  3.49e-06        0     3.91      4.53 LensMotherPV Transportation
-    4     15.8     58.5 -1.01e+03  3.49e-06        0        0      4.53      LensPV Transportation
-    5     15.4     50.4 -1.01e+03  3.49e-06        0     8.34      12.9 LensMotherPV Transportation
-    6     15.6       49 -1.01e+03  3.49e-06        0     1.51      14.4      LensPV Transportation
-    7     15.6     48.8 -1.01e+03  3.49e-06        0    0.361      14.7       World Transportation
-    8     15.6     48.8 -1.01e+03  3.49e-06        0        0      14.7      LensPV Transportation
-    9     15.6     48.4 -1.01e+03  3.49e-06        0    0.524      15.3 LensMotherPV Transportation
-   10     15.6     48.4 -1.01e+03  3.49e-06        0 1.42e-14      15.3      LensPV Transportation
-   11     15.6     47.6 -1.01e+03  3.49e-06        0    0.915      16.2       World Transportation
-   12     15.6     47.6 -1.01e+03  3.49e-06        0        0      16.2      LensPV Transportation
-   13     15.5     45.5 -1.01e+03  3.49e-06        0     2.27      18.5 LensMotherPV Transportation
-   14     15.5     45.5 -1.01e+03  3.49e-06        0        0      18.5      LensPV Transportation
-   15     15.5     45.1 -1.01e+03  3.49e-06        0    0.337      18.8      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 90,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.32e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.32e-06        0 8.53e-101 8.53e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 89,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.96e-06        0        0         0      LensPV initStep
-    1     15.4     61.9 -1.01e+03  4.96e-06        0    0.331     0.331      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 88,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.83e-06        0        0         0      LensPV initStep
-    1     14.9     61.7 -1.01e+03  4.83e-06        0     1.02      1.02      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 87,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.03e-06        0        0         0      LensPV initStep
-    1     15.6       62 -1.01e+03  2.03e-06        0    0.189     0.189       World Transportation
-    2     15.6       62 -1.01e+03  2.03e-06        0 1.12e-13     0.189      LensPV Transportation
-    3     14.6     63.1 -1.01e+03  2.03e-06        0     2.18      2.37 LensMotherPV Transportation
-    4     5.89     70.1   -1e+03  2.03e-06        0     11.6      13.9      LensPV Transportation
-    5     4.54     72.6   -1e+03  2.03e-06        0     2.91      16.9 LensMotherPV Transportation
-    6     4.54     72.6   -1e+03  2.03e-06        0 2.13e-14      16.9      LensPV Transportation
-    7    0.681       77 -1.01e+03  2.03e-06        0     7.98      24.8       World Transportation
-    8    0.681       77 -1.01e+03  2.03e-06        0        0      24.8      LensPV Transportation
-    9    -1.45     79.5   -1e+03  2.03e-06        0     4.41      29.2 LensMotherPV Transportation
-   10    -10.7     87.2   -1e+03  2.03e-06        0     12.9      42.1      LensPV Transportation
-   11    -10.7     87.2   -1e+03  2.03e-06        0        0      42.1 LensMotherPV Transportation
-   12    -26.5     65.4     -990  2.03e-06        0     28.9        71       World Transportation
-   13     -196     -168     -880  2.03e-06        0      308       380   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 86,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   5.5e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03   5.5e-06        0 1.07e-101 1.07e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 85,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.91e-06        0        0         0      LensPV initStep
-    1     17.5     62.4 -1.01e+03  3.91e-06        0     2.57      2.57       World Transportation
-    2     17.5     62.4 -1.01e+03  3.91e-06        0 1.15e-13      2.57      LensPV Transportation
-    3     18.8     62.8 -1.01e+03  3.91e-06        0     1.93       4.5 LensMotherPV Transportation
-    4     30.2     63.5 -1.01e+03  3.91e-06        0     11.4      15.9      LensPV Transportation
-    5     32.2     64.6 -1.01e+03  3.91e-06        0     2.21      18.2      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 84,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.27e-06        0        0         0      LensPV initStep
-    1     16.5     62.3 -1.01e+03  3.27e-06        0     1.37      1.37       World Transportation
-    2     16.5     62.3 -1.01e+03  3.27e-06        0 1.14e-13      1.37      LensPV Transportation
-    3     17.8       63 -1.01e+03  3.27e-06        0     1.93      3.31 LensMotherPV Transportation
-    4     17.8       63 -1.01e+03  3.27e-06        0        0      3.31      LensPV Transportation
-    5     18.6     62.9 -1.01e+03  3.27e-06        0     1.56      4.86       World Transportation
-    6     18.6     62.9 -1.01e+03  3.27e-06        0 9.17e-14      4.86      LensPV Transportation
-    7     19.3     62.9 -1.01e+03  3.27e-06        0     1.46      6.32 LensMotherPV Transportation
-    8     38.5     56.2     -990  3.27e-06        0     26.2      32.6       World Transportation
-    9      257    -19.3     -801  3.27e-06        0      299       332   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 83,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.71e-06        0        0         0      LensPV initStep
-    1       16     62.6 -1.01e+03  3.71e-06        0     1.06      1.06       World Transportation
-    2       16     62.6 -1.01e+03  3.71e-06        0 1.14e-13      1.06      LensPV Transportation
-    3     16.5     63.8 -1.01e+03  3.71e-06        0     1.79      2.85 LensMotherPV Transportation
-    4     18.5     67.8   -1e+03  3.71e-06        0     4.88      7.73      LensPV Transportation
-    5     20.4     72.7   -1e+03  3.71e-06        0     5.43      13.2 LensMotherPV Transportation
-    6     20.4     72.7   -1e+03  3.71e-06        0        0      13.2      LensPV Transportation
-    7     21.7     75.3 -1.01e+03  3.71e-06        0     4.77      17.9      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 82,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.92e-06        0        0         0      LensPV initStep
-    1     15.6     61.9 -1.01e+03  4.92e-06        0    0.046     0.046      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 81,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.29e-06        0        0         0      LensPV initStep
-    1     15.2     62.4 -1.01e+03  4.29e-06        0    0.977     0.977       World Transportation
-    2     15.2     62.4 -1.01e+03  4.29e-06        0 1.15e-13     0.977      LensPV Transportation
-    3     14.3     63.6 -1.01e+03  4.29e-06        0     2.08      3.06 LensMotherPV Transportation
-    4     6.52       70 -1.01e+03  4.29e-06        0     10.1      13.2      LensPV Transportation
-    5     5.74     71.5   -1e+03  4.29e-06        0     1.71      14.9      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 80,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.35e-06        0        0         0      LensPV initStep
-    1     15.2     62.3 -1.01e+03  4.35e-06        0    0.854     0.854       World Transportation
-    2     15.2     62.3 -1.01e+03  4.35e-06        0 1.15e-13     0.854      LensPV Transportation
-    3     13.9     63.3 -1.01e+03  4.35e-06        0     2.23      3.08 LensMotherPV Transportation
-    4     13.9     63.3 -1.01e+03  4.35e-06        0 2.49e-14      3.08      LensPV Transportation
-    5     12.6     63.5 -1.01e+03  4.35e-06        0        2      5.08       World Transportation
-    6     12.6     63.5 -1.01e+03  4.35e-06        0 1.03e-13      5.08      LensPV Transportation
-    7     12.6     63.5 -1.01e+03  4.35e-06        0    0.005      5.09      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 79,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.28e-06        0        0         0      LensPV initStep
-    1     17.2       62 -1.01e+03  4.28e-06        0      2.1       2.1       World Transportation
-    2     17.2       62 -1.01e+03  4.28e-06        0 1.16e-13       2.1      LensPV Transportation
-    3     17.6       62 -1.01e+03  4.28e-06        0    0.486      2.59      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 78,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.79e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.79e-06        0 2.27e-100 2.27e-100      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 77,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03     2e-06        0        0         0      LensPV initStep
-    1     14.8     60.4 -1.01e+03     2e-06        0     2.41      2.41       World Transportation
-    2     14.8     60.4 -1.01e+03     2e-06        0 1.13e-13      2.41      LensPV Transportation
-    3     13.1     57.7   -1e+03     2e-06        0     4.42      6.84 LensMotherPV Transportation
-    4     13.1     57.7   -1e+03     2e-06        0 2.08e-14      6.84      LensPV Transportation
-    5     10.1     51.8 -1.01e+03     2e-06        0     6.87      13.7 LensMotherPV Transportation
-    6     8.65     49.9 -1.01e+03     2e-06        0     2.54      16.2      LensPV Transportation
-    7     8.43     49.5 -1.01e+03     2e-06        0     0.59      16.8       World Transportation
-    8     8.43     49.5 -1.01e+03     2e-06        0        0      16.8      LensPV Transportation
-    9      8.1       49 -1.01e+03     2e-06        0    0.849      17.7 LensMotherPV Transportation
-   10      8.1       49 -1.01e+03     2e-06        0 6.39e-14      17.7      LensPV Transportation
-   11     7.87     48.6 -1.01e+03     2e-06        0     0.55      18.2      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 76,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.12e-06        0        0         0      LensPV initStep
-    1     15.2     61.7 -1.01e+03  3.12e-06        0    0.771     0.771       World Transportation
-    2     15.2     61.7 -1.01e+03  3.12e-06        0 1.14e-13     0.771      LensPV Transportation
-    3     12.9     60.8 -1.01e+03  3.12e-06        0     3.26      4.03 LensMotherPV Transportation
-    4     12.9     60.8 -1.01e+03  3.12e-06        0        0      4.03      LensPV Transportation
-    5     8.68     57.7 -1.01e+03  3.12e-06        0     5.75      9.78       World Transportation
-    6     8.68     57.7 -1.01e+03  3.12e-06        0 2.01e-13      9.78      LensPV Transportation
-    7     8.15     57.3 -1.01e+03  3.12e-06        0    0.723      10.5      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 75,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.21e-06        0        0         0      LensPV initStep
-    1     14.3       62 -1.01e+03  3.21e-06        0     1.88      1.88       World Transportation
-    2     14.3       62 -1.01e+03  3.21e-06        0 1.14e-13      1.88      LensPV Transportation
-    3     12.3     62.2 -1.01e+03  3.21e-06        0     2.76      4.65 LensMotherPV Transportation
-    4     12.3     62.2 -1.01e+03  3.21e-06        0        0      4.65      LensPV Transportation
-    5     9.62     61.3 -1.01e+03  3.21e-06        0     3.42      8.07       World Transportation
-    6     9.62     61.3 -1.01e+03  3.21e-06        0 1.41e-13      8.07      LensPV Transportation
-    7      5.7       60 -1.01e+03  3.21e-06        0     4.98        13 LensMotherPV Transportation
-    8      5.7       60 -1.01e+03  3.21e-06        0        0        13      LensPV Transportation
-    9    -1.64     55.5 -1.01e+03  3.21e-06        0     9.05      22.1       World Transportation
-   10    -1.64     55.5 -1.01e+03  3.21e-06        0 2.56e-13      22.1      LensPV Transportation
-   11    -4.17     53.9 -1.01e+03  3.21e-06        0     3.11      25.2      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 74,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.78e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.78e-06        0 1.89e-101 1.89e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 73,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.21e-06        0        0         0      LensPV initStep
-    1     16.3     63.6 -1.01e+03  3.21e-06        0     2.53      2.53       World Transportation
-    2     16.3     63.6 -1.01e+03  3.21e-06        0 1.13e-13      2.53      LensPV Transportation
-    3     16.7     64.6 -1.01e+03  3.21e-06        0     1.45      3.98 LensMotherPV Transportation
-    4     18.1     67.9 -1.01e+03  3.21e-06        0     3.98      7.96      LensPV Transportation
-    5       20     73.5   -1e+03  3.21e-06        0     6.05        14 LensMotherPV Transportation
-    6       20     73.5   -1e+03  3.21e-06        0 7.11e-14        14      LensPV Transportation
-    7     21.1     76.2 -1.01e+03  3.21e-06        0     5.14      19.2       World Transportation
-    8       88      243 -1.1e+03  3.21e-06        0      203       222   UVSCopePV Transportation
-    9       88      243 -1.1e+03  3.21e-06        0        0       222       World Transportation
-   10     -258    -4.97 -1.36e+03  3.21e-06        0      496       718   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 72,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   2.2e-06        0        0         0      LensPV initStep
-    1     16.1     61.2 -1.01e+03   2.2e-06        0      1.1       1.1       World Transportation
-    2     16.1     61.2 -1.01e+03   2.2e-06        0 1.13e-13       1.1      LensPV Transportation
-    3     17.5     59.1 -1.01e+03   2.2e-06        0     3.46      4.56 LensMotherPV Transportation
-    4     17.5     59.1 -1.01e+03   2.2e-06        0        0      4.56      LensPV Transportation
-    5     18.2     57.1 -1.01e+03   2.2e-06        0     2.24       6.8      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 71,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   3.2e-06        0        0         0      LensPV initStep
-    1     15.7     61.7 -1.01e+03   3.2e-06        0    0.237     0.237      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 70,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.28e-06        0        0         0      LensPV initStep
-    1     16.8     61.6 -1.01e+03  4.28e-06        0     1.53      1.53       World Transportation
-    2     16.8     61.6 -1.01e+03  4.28e-06        0 1.16e-13      1.53      LensPV Transportation
-    3     18.6     61.2 -1.01e+03  4.28e-06        0     2.57       4.1 LensMotherPV Transportation
-    4     18.6     61.2 -1.01e+03  4.28e-06        0        0       4.1      LensPV Transportation
-    5     20.4     59.9 -1.01e+03  4.28e-06        0     2.82      6.92       World Transportation
-    6     20.4     59.9 -1.01e+03  4.28e-06        0 1.27e-13      6.92      LensPV Transportation
-    7     22.6     58.1 -1.01e+03  4.28e-06        0     3.57      10.5 LensMotherPV Transportation
-    8     22.6     58.1 -1.01e+03  4.28e-06        0 1.42e-14      10.5      LensPV Transportation
-    9     24.2     55.7 -1.01e+03  4.28e-06        0     3.17      13.7      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 69,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.29e-06        0        0         0      LensPV initStep
-    1     15.3     61.7 -1.01e+03  4.29e-06        0     0.49      0.49       World Transportation
-    2     15.3     61.7 -1.01e+03  4.29e-06        0 1.16e-13      0.49      LensPV Transportation
-    3     13.1     60.8 -1.01e+03  4.29e-06        0     3.31       3.8 LensMotherPV Transportation
-    4     13.1     60.8 -1.01e+03  4.29e-06        0        0       3.8      LensPV Transportation
-    5     8.56     57.4 -1.01e+03  4.29e-06        0      6.1       9.9       World Transportation
-    6     8.56     57.4 -1.01e+03  4.29e-06        0 2.13e-13       9.9      LensPV Transportation
-    7     8.44     57.3 -1.01e+03  4.29e-06        0    0.164      10.1      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 68,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.68e-06        0        0         0      LensPV initStep
-    1     14.8     61.8 -1.01e+03  4.68e-06        0     1.16      1.16      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 67,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.99e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  4.99e-06        0   0.0364    0.0364      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 66,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.93e-06        0        0         0      LensPV initStep
-    1     15.6     61.9 -1.01e+03  4.93e-06        0    0.139     0.139      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 65,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  6.06e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  6.06e-06        0 5.41e-101 5.41e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 64,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.84e-06        0        0         0      LensPV initStep
-    1     15.7     61.8 -1.01e+03  4.84e-06        0   0.0795    0.0795      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 63,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.27e-06        0        0         0      LensPV initStep
-    1     15.4     61.7 -1.01e+03  2.27e-06        0    0.388     0.388       World Transportation
-    2     15.4     61.7 -1.01e+03  2.27e-06        0 1.13e-13     0.388      LensPV Transportation
-    3     13.3     60.9 -1.01e+03  2.27e-06        0     3.18      3.57 LensMotherPV Transportation
-    4     13.3     60.9 -1.01e+03  2.27e-06        0        0      3.57      LensPV Transportation
-    5     9.96     58.2 -1.01e+03  2.27e-06        0     4.61      8.18      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 62,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.49e-06        0        0         0      LensPV initStep
-    1       16       62 -1.01e+03  3.49e-06        0    0.458     0.458       World Transportation
-    2       16       62 -1.01e+03  3.49e-06        0 1.14e-13     0.458      LensPV Transportation
-    3     17.3     62.8 -1.01e+03  3.49e-06        0     2.09      2.55 LensMotherPV Transportation
-    4     25.1     65.7   -1e+03  3.49e-06        0     8.63      11.2      LensPV Transportation
-    5     29.1       69   -1e+03  3.49e-06        0     5.27      16.5 LensMotherPV Transportation
-    6     29.1       69   -1e+03  3.49e-06        0        0      16.5      LensPV Transportation
-    7     33.3     71.4 -1.01e+03  3.49e-06        0     6.71      23.2       World Transportation
-    8     33.3     71.4 -1.01e+03  3.49e-06        0        0      23.2      LensPV Transportation
-    9     35.6     72.6 -1.01e+03  3.49e-06        0      3.6      26.8 LensMotherPV Transportation
-   10     44.3     75.9   -1e+03  3.49e-06        0       10      36.8      LensPV Transportation
-   11     45.8       77   -1e+03  3.49e-06        0     1.94      38.7 LensMotherPV Transportation
-   12     45.8       77   -1e+03  3.49e-06        0 1.28e-13      38.7      LensPV Transportation
-   13     47.1     77.4   -1e+03  3.49e-06        0     2.38      41.1      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 61,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.25e-06        0        0         0      LensPV initStep
-    1     14.3       62 -1.01e+03  4.25e-06        0     1.83      1.83       World Transportation
-    2     14.3       62 -1.01e+03  4.25e-06        0 1.15e-13      1.83      LensPV Transportation
-    3     12.2     62.1 -1.01e+03  4.25e-06        0     2.85      4.68 LensMotherPV Transportation
-    4     12.2     62.1 -1.01e+03  4.25e-06        0 7.11e-15      4.68      LensPV Transportation
-    5     9.36     61.1 -1.01e+03  4.25e-06        0     3.61      8.29       World Transportation
-    6     9.36     61.1 -1.01e+03  4.25e-06        0 1.46e-13      8.29      LensPV Transportation
-    7     5.06     59.6 -1.01e+03  4.25e-06        0     5.39      13.7 LensMotherPV Transportation
-    8     5.06     59.6 -1.01e+03  4.25e-06        0        0      13.7      LensPV Transportation
-    9    -3.22     54.5 -1.01e+03  4.25e-06        0     10.1      23.8       World Transportation
-   10    -3.22     54.5 -1.01e+03  4.25e-06        0 2.75e-13      23.8      LensPV Transportation
-   11    -4.65     53.7 -1.01e+03  4.25e-06        0     1.74      25.6      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 60,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.43e-06        0        0         0      LensPV initStep
-    1     16.1     63.7 -1.01e+03  4.43e-06        0     2.51      2.51       World Transportation
-    2     16.1     63.7 -1.01e+03  4.43e-06        0 1.15e-13      2.51      LensPV Transportation
-    3     16.3     64.7 -1.01e+03  4.43e-06        0     1.45      3.96 LensMotherPV Transportation
-    4     17.1     68.2 -1.01e+03  4.43e-06        0     3.81      7.78      LensPV Transportation
-    5     18.4     73.7   -1e+03  4.43e-06        0     5.83      13.6      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 59,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.72e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.72e-06        0 3.86e-101 3.86e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 58,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.03e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.03e-06        0 6.8e-101  6.8e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 57,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   4.2e-06        0        0         0      LensPV initStep
-    1     14.9     61.7 -1.01e+03   4.2e-06        0     1.07      1.07       World Transportation
-    2     14.9     61.7 -1.01e+03   4.2e-06        0 1.15e-13      1.07      LensPV Transportation
-    3     12.7     61.4 -1.01e+03   4.2e-06        0     3.08      4.15 LensMotherPV Transportation
-    4     12.7     61.4 -1.01e+03   4.2e-06        0        0      4.15      LensPV Transportation
-    5       10     60.1 -1.01e+03   4.2e-06        0     3.35       7.5      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 56,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.44e-06        0        0         0      LensPV initStep
-    1     14.7     63.1 -1.01e+03  2.44e-06        0      2.2       2.2       World Transportation
-    2     14.7     63.1 -1.01e+03  2.44e-06        0 1.12e-13       2.2      LensPV Transportation
-    3     13.9     64.2 -1.01e+03  2.44e-06        0     1.83      4.03 LensMotherPV Transportation
-    4      8.1     69.8   -1e+03  2.44e-06        0     8.53      12.6      LensPV Transportation
-    5     6.16     74.1   -1e+03  2.44e-06        0     4.78      17.3 LensMotherPV Transportation
-    6     6.16     74.1   -1e+03  2.44e-06        0 9.59e-14      17.3      LensPV Transportation
-    7     3.17     78.1 -1.01e+03  2.44e-06        0     6.91      24.3       World Transportation
-    8     3.17     78.1 -1.01e+03  2.44e-06        0        0      24.3      LensPV Transportation
-    9     1.49     80.3 -1.01e+03  2.44e-06        0     3.87      28.1 LensMotherPV Transportation
-   10    -6.05     87.7   -1e+03  2.44e-06        0     11.6      39.7      LensPV Transportation
-   11    -6.18     87.9   -1e+03  2.44e-06        0    0.278        40 LensMotherPV Transportation
-   12    -6.18     87.9   -1e+03  2.44e-06        0 8.53e-14        40      LensPV Transportation
-   13    -8.17     89.6   -1e+03  2.44e-06        0     4.63      44.6      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 55,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.55e-06        0        0         0      LensPV initStep
-    1     15.7     61.8 -1.01e+03  4.55e-06        0   0.0704    0.0704       World Transportation
-    2     15.7     61.8 -1.01e+03  4.55e-06        0 1.16e-13    0.0704      LensPV Transportation
-    3     17.6     61.3 -1.01e+03  4.55e-06        0     2.67      2.74 LensMotherPV Transportation
-    4     17.6     61.3 -1.01e+03  4.55e-06        0 2.13e-14      2.74      LensPV Transportation
-    5     19.2       60 -1.01e+03  4.55e-06        0      2.5      5.24      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 54,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   2.6e-06        0        0         0      LensPV initStep
-    1     15.6     63.5 -1.01e+03   2.6e-06        0     2.26      2.26       World Transportation
-    2     15.6     63.5 -1.01e+03   2.6e-06        0 1.13e-13      2.26      LensPV Transportation
-    3     15.5     64.6 -1.01e+03   2.6e-06        0     1.54      3.81 LensMotherPV Transportation
-    4     14.9     68.7 -1.01e+03   2.6e-06        0     4.54      8.35      LensPV Transportation
-    5     14.9       74   -1e+03   2.6e-06        0     5.48      13.8 LensMotherPV Transportation
-    6     14.9       74   -1e+03   2.6e-06        0 7.46e-14      13.8      LensPV Transportation
-    7     14.5     77.2 -1.01e+03   2.6e-06        0     5.47      19.3       World Transportation
-    8    -9.59      258 -1.1e+03   2.6e-06        0      205       224   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 53,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.87e-06        0        0         0      LensPV initStep
-    1     16.5     62.1 -1.01e+03  2.87e-06        0     1.26      1.26       World Transportation
-    2     16.5     62.1 -1.01e+03  2.87e-06        0 1.13e-13      1.26      LensPV Transportation
-    3       18     62.6 -1.01e+03  2.87e-06        0     2.07      3.33 LensMotherPV Transportation
-    4     29.4     63.8   -1e+03  2.87e-06        0     11.8      15.1      LensPV Transportation
-    5     34.3     66.7   -1e+03  2.87e-06        0     5.67      20.8 LensMotherPV Transportation
-    6     34.3     66.7   -1e+03  2.87e-06        0        0      20.8      LensPV Transportation
-    7     35.7     67.3   -1e+03  2.87e-06        0     1.97      22.7      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 52,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  6.08e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  6.08e-06        0 2.99e-101 2.99e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 51,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.12e-06        0        0         0      LensPV initStep
-    1     16.3     62.4 -1.01e+03  2.12e-06        0     1.15      1.15       World Transportation
-    2     16.3     62.4 -1.01e+03  2.12e-06        0 1.12e-13      1.15      LensPV Transportation
-    3     17.3     63.3 -1.01e+03  2.12e-06        0     1.87      3.02 LensMotherPV Transportation
-    4     22.4     66.7   -1e+03  2.12e-06        0     6.57      9.58      LensPV Transportation
-    5     25.1     69.8   -1e+03  2.12e-06        0     4.29      13.9 LensMotherPV Transportation
-    6     25.1     69.8   -1e+03  2.12e-06        0 6.75e-14      13.9      LensPV Transportation
-    7     28.4     72.2 -1.01e+03  2.12e-06        0     6.39      20.3       World Transportation
-    8      180      185 -1.06e+03  2.12e-06        0      196       216   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 50,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.93e-06        0        0         0      LensPV initStep
-    1     15.1     61.3 -1.01e+03  2.93e-06        0     1.09      1.09       World Transportation
-    2     15.1     61.3 -1.01e+03  2.93e-06        0 1.14e-13      1.09      LensPV Transportation
-    3     13.2     59.3 -1.01e+03  2.93e-06        0     3.83      4.92 LensMotherPV Transportation
-    4     13.2     59.3 -1.01e+03  2.93e-06        0        0      4.92      LensPV Transportation
-    5     11.7     57.2 -1.01e+03  2.93e-06        0     2.62      7.54      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 49,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.14e-06        0        0         0      LensPV initStep
-    1     15.7     62.1 -1.01e+03  2.14e-06        0    0.397     0.397       World Transportation
-    2     15.7     62.1 -1.01e+03  2.14e-06        0 1.12e-13     0.397      LensPV Transportation
-    3     15.6     63.5 -1.01e+03  2.14e-06        0     1.94      2.33 LensMotherPV Transportation
-    4     14.9     68.7   -1e+03  2.14e-06        0     5.75      8.08      LensPV Transportation
-    5       15     72.5   -1e+03  2.14e-06        0        4      12.1 LensMotherPV Transportation
-    6       15     72.5   -1e+03  2.14e-06        0        0      12.1      LensPV Transportation
-    7     14.5       76 -1.01e+03  2.14e-06        0     6.04      18.1       World Transportation
-    8    -8.84      258 -1.11e+03  2.14e-06        0      211       229   UVSCopePV Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 48,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.39e-06        0        0         0      LensPV initStep
-    1     15.4     61.9 -1.01e+03  4.39e-06        0    0.324     0.324       World Transportation
-    2     15.4     61.9 -1.01e+03  4.39e-06        0 1.16e-13     0.324      LensPV Transportation
-    3     13.6     62.4 -1.01e+03  4.39e-06        0     2.64      2.96 LensMotherPV Transportation
-    4     13.6     62.4 -1.01e+03  4.39e-06        0        0      2.96      LensPV Transportation
-    5     12.4     62.1 -1.01e+03  4.39e-06        0     1.52      4.48      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 47,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  6.13e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  6.13e-06        0 1.19e-101 1.19e-101      LensPV OpAbsorption
-
-*********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 46,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 16,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.49e-06        0        0         0      LensPV initStep
-    1     16.3     62.1 -1.01e+03  4.49e-06        0    0.909     0.909       World Transportation
-    2     16.3     62.1 -1.01e+03  4.49e-06        0 1.16e-13     0.909      LensPV Transportation
-    3     17.3     62.4 -1.01e+03  4.49e-06        0     1.44      2.35      LensPV OpAbsorption
+    0     -214    -92.4     -978  0.000992        0        0         0       World initStep
+    1     -214    -92.4     -978         0 0.000992   0.0527    0.0527       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 45,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 15,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.06e-06        0        0         0      LensPV initStep
-    1     15.7     62.7 -1.01e+03  3.06e-06        0     1.19      1.19       World Transportation
-    2     15.7     62.7 -1.01e+03  3.06e-06        0 1.13e-13      1.19      LensPV Transportation
-    3     15.6       64 -1.01e+03  3.06e-06        0     1.77      2.96 LensMotherPV Transportation
-    4     15.3     68.6   -1e+03  3.06e-06        0     5.04         8      LensPV Transportation
-    5     15.5     73.5   -1e+03  3.06e-06        0     5.03        13 LensMotherPV Transportation
-    6     15.5     73.5   -1e+03  3.06e-06        0 1.03e-13        13      LensPV Transportation
-    7     15.3     76.8 -1.01e+03  3.06e-06        0     5.65      18.7       World Transportation
-    8     3.03      258 -1.1e+03  3.06e-06        0      203       221   UVSCopePV Transportation
+    0     -214    -92.5     -946   0.00247        0        0         0       World initStep
+    1     -214    -92.5     -946         0  0.00247    0.213     0.213       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 44,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 14,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.04e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.04e-06        0 2.38e-101 2.38e-101      LensPV OpAbsorption
+    0     -214    -92.6     -921   0.00249        0        0         0       World initStep
+    1     -214    -92.5     -921         0  0.00249    0.215     0.215       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 43,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 13,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.09e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.09e-06        0 1.23e-100 1.23e-100      LensPV OpAbsorption
+    0     -214    -92.8     -879   0.00157        0        0         0       World initStep
+    1     -214    -92.8     -879         0  0.00157    0.104     0.104       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 42,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 12,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.36e-06        0        0         0      LensPV initStep
-    1     14.8     60.6 -1.01e+03  4.36e-06        0     2.13      2.13       World Transportation
-    2     14.8     60.6 -1.01e+03  4.36e-06        0 1.16e-13      2.13      LensPV Transportation
-    3     12.8     57.8   -1e+03  4.36e-06        0     4.52      6.64 LensMotherPV Transportation
-    4     12.8     57.8   -1e+03  4.36e-06        0 1.96e-14      6.64      LensPV Transportation
-    5     10.1       53 -1.01e+03  4.36e-06        0     5.67      12.3      LensPV OpAbsorption
+    0     -214    -93.5     -633    0.0206        0        0         0       World initStep
+    1     -212      -94     -633    0.0171  0.00237      1.6       1.6       World eIoni
+    2     -211    -94.5     -635     0.012  0.00515     2.81      4.42       World eIoni
+    3     -211    -93.9     -636   0.00761  0.00437     2.06      6.48       World eIoni
+    4     -211    -94.2     -636   0.00174  0.00588     1.38      7.85       World eIoni
+    5     -211    -94.2     -636         0  0.00174    0.121      7.98       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 41,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 25,   Parent ID = 12
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.74e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  4.74e-06        0   0.0257    0.0257      LensPV OpAbsorption
+    0     -212      -94     -633   0.00111        0        0         0       World initStep
+    1     -212      -94     -633         0  0.00111   0.0618    0.0618       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 40,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 11,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.31e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.31e-06        0 3.36e-101 3.36e-101      LensPV OpAbsorption
+    0     -214    -94.2     -414   0.00248        0        0         0       World initStep
+    1     -214    -94.1     -414         0  0.00248    0.214     0.214       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 39,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 10,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.75e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.75e-06        0 1.28e-100 1.28e-100      LensPV OpAbsorption
+    0     -214    -94.5     -324   0.00252        0        0         0       World initStep
+    1     -213    -94.5     -324         0  0.00252    0.219     0.219       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 38,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 9,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.05e-06        0        0         0      LensPV initStep
-    1     15.3     60.8 -1.01e+03  3.05e-06        0     1.56      1.56       World Transportation
-    2     15.3     60.8 -1.01e+03  3.05e-06        0 1.14e-13      1.56      LensPV Transportation
-    3     14.4     57.8   -1e+03  3.05e-06        0     4.33      5.89 LensMotherPV Transportation
-    4     14.4     57.8   -1e+03  3.05e-06        0        0      5.89      LensPV Transportation
-    5     12.9     52.6 -1.01e+03  3.05e-06        0     5.51      11.4      LensPV OpAbsorption
+    0     -214      -95     -188   0.00115        0        0         0       World initStep
+    1     -214      -95     -188         0  0.00115   0.0652    0.0652       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 37,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 8,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.44e-06        0        0         0      LensPV initStep
-    1     16.4     62.1 -1.01e+03  4.44e-06        0     1.05      1.05       World Transportation
-    2     16.4     62.1 -1.01e+03  4.44e-06        0 1.16e-13      1.05      LensPV Transportation
-    3     17.9     62.5 -1.01e+03  4.44e-06        0     2.15      3.19 LensMotherPV Transportation
-    4     17.9     62.5 -1.01e+03  4.44e-06        0        0      3.19      LensPV Transportation
-    5       19     62.2 -1.01e+03  4.44e-06        0     1.85      5.04       World Transportation
-    6       19     62.2 -1.01e+03  4.44e-06        0 9.98e-14      5.04      LensPV Transportation
-    7     20.1     61.9 -1.01e+03  4.44e-06        0     1.84      6.88 LensMotherPV Transportation
-    8     20.1     61.9 -1.01e+03  4.44e-06        0        0      6.88      LensPV Transportation
-    9     21.1     60.7 -1.01e+03  4.44e-06        0     2.11      8.99       World Transportation
-   10     21.1     60.7 -1.01e+03  4.44e-06        0 1.15e-13      8.99      LensPV Transportation
-   11     22.5     59.1 -1.01e+03  4.44e-06        0     2.85      11.8 LensMotherPV Transportation
-   12     22.5     59.1 -1.01e+03  4.44e-06        0        0      11.8      LensPV Transportation
-   13     24.2     55.1 -1.01e+03  4.44e-06        0     4.81      16.7       World Transportation
-   14     24.2     55.1 -1.01e+03  4.44e-06        0 1.93e-13      16.7      LensPV Transportation
-   15     26.7     49.4 -1.01e+03  4.44e-06        0     6.74      23.4      LensPV OpAbsorption
+    0     -214    -95.6       85   0.00141        0        0         0       World initStep
+    1     -214    -95.5       85         0  0.00141   0.0878    0.0878       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 36,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 7,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.23e-06        0        0         0      LensPV initStep
-    1     16.7     60.6 -1.01e+03  2.23e-06        0     2.19      2.19       World Transportation
-    2     16.7     60.6 -1.01e+03  2.23e-06        0 1.13e-13      2.19      LensPV Transportation
-    3     18.3     58.7 -1.01e+03  2.23e-06        0      3.5      5.69 LensMotherPV Transportation
-    4     18.3     58.7 -1.01e+03  2.23e-06        0        0      5.69      LensPV Transportation
-    5     20.6     53.6 -1.01e+03  2.23e-06        0     6.11      11.8       World Transportation
-    6     20.6     53.6 -1.01e+03  2.23e-06        0 1.97e-13      11.8      LensPV Transportation
-    7     22.8     48.9 -1.01e+03  2.23e-06        0     5.65      17.5      LensPV OpAbsorption
+    0     -214    -95.7      193   0.00169        0        0         0       World initStep
+    1     -214    -95.7      193         0  0.00169    0.116     0.116       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 35,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 6,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.42e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  4.42e-06        0   0.0572    0.0572       World Transportation
-    2     15.7     61.9 -1.01e+03  4.42e-06        0 1.15e-13    0.0572      LensPV Transportation
-    3     15.9     62.5 -1.01e+03  4.42e-06        0    0.924     0.981      LensPV OpAbsorption
+    0     -214    -96.1      495   0.00498        0        0         0       World initStep
+    1     -214    -96.4      495         0  0.00498    0.711     0.711       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 34,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 5,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.98e-06        0        0         0      LensPV initStep
-    1     15.9     61.7 -1.01e+03  2.98e-06        0    0.359     0.359       World Transportation
-    2     15.9     61.7 -1.01e+03  2.98e-06        0 1.14e-13     0.359      LensPV Transportation
-    3     17.6     60.4 -1.01e+03  2.98e-06        0     2.96      3.32 LensMotherPV Transportation
-    4     17.6     60.4 -1.01e+03  2.98e-06        0        0      3.32      LensPV Transportation
-    5     19.8     57.2 -1.01e+03  2.98e-06        0     4.41      7.73       World Transportation
-    6     19.8     57.2 -1.01e+03  2.98e-06        0  1.7e-13      7.73      LensPV Transportation
-    7     23.9       51   -1e+03  2.98e-06        0     8.34      16.1 LensMotherPV Transportation
-    8     23.9       51   -1e+03  2.98e-06        0        0      16.1      LensPV Transportation
-    9     26.5     45.6 -1.01e+03  2.98e-06        0     6.11      22.2 LensMotherPV Transportation
-   10     26.5     45.6 -1.01e+03  2.98e-06        0        0      22.2      LensPV Transportation
-   11     33.2     46.1 -1.01e+03  2.98e-06        0     6.77      28.9      LensPV OpAbsorption
+    0     -214    -96.1      565    0.0024        0        0         0       World initStep
+    1     -214    -96.2      565         0   0.0024    0.202     0.202       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 33,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 4,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.11e-06        0        0         0      LensPV initStep
-    1     15.2     61.1 -1.01e+03  3.11e-06        0     1.19      1.19       World Transportation
-    2     15.2     61.1 -1.01e+03  3.11e-06        0 1.14e-13      1.19      LensPV Transportation
-    3     13.6     58.7 -1.01e+03  3.11e-06        0     4.04      5.24 LensMotherPV Transportation
-    4     13.6     58.7 -1.01e+03  3.11e-06        0 1.25e-14      5.24      LensPV Transportation
-    5     9.86     51.8 -1.01e+03  3.11e-06        0     8.05      13.3 LensMotherPV Transportation
-    6     8.92     50.6 -1.01e+03  3.11e-06        0      1.6      14.9      LensPV Transportation
-    7     8.77     50.4 -1.01e+03  3.11e-06        0     0.36      15.3       World Transportation
-    8     8.77     50.4 -1.01e+03  3.11e-06        0        0      15.3      LensPV Transportation
-    9     8.56     50.1 -1.01e+03  3.11e-06        0    0.513      15.8 LensMotherPV Transportation
-   10     8.56     50.1 -1.01e+03  3.11e-06        0 1.42e-14      15.8      LensPV Transportation
-   11     8.18     49.5 -1.01e+03  3.11e-06        0    0.868      16.6       World Transportation
-   12     8.18     49.5 -1.01e+03  3.11e-06        0        0      16.6      LensPV Transportation
-   13     7.29     47.9 -1.01e+03  3.11e-06        0     2.01      18.6 LensMotherPV Transportation
-   14     7.29     47.9 -1.01e+03  3.11e-06        0 2.98e-13      18.6      LensPV Transportation
-   15     1.62     36.9 -1.01e+03  3.11e-06        0     12.4        31       World Transportation
-   16     1.62     36.9 -1.01e+03  3.11e-06        0        0        31      LensPV Transportation
-   17    0.725     35.1 -1.01e+03  3.11e-06        0     1.95        33 LensMotherPV Transportation
-   18     -116    -90.3     -990  3.11e-06        0      172       205       World Transportation
-   19     -192     -172     -978  3.11e-06        0      113       318   UVSCopePV Transportation
+    0     -214    -96.2      600      1.72        0        0         0       World initStep
+    1     -214    -97.3      599      1.71 0.000341     2.01      2.01       World eIoni
+    2     -211     -135      552       1.7  0.00752     60.2      62.3       World eIoni
+    3     -238     -279      335      1.66   0.0352      261       323       World eIoni
+    4     -240     -287      325      1.66  0.00191     13.6       337       World eIoni
+    5     -254     -404      143      1.63    0.028      218       554       World eIoni
+    6     -256     -411      132      1.63  0.00198       13       567       World eIoni
+    7     -257     -417      123      1.63  0.00168     10.9       578       World eIoni
+    8     -263     -473     25.5       1.6   0.0197      113       691       World eIoni
+    9     -264     -477     17.7       1.6 0.000814     8.71       700       World eIoni
+   10     -266     -480     10.4       1.6 0.000538     8.08       708       World eIoni
+   11     -268     -486   -0.807      1.59  0.00183     12.8       721       World eIoni
+   12     -271     -492      -15      1.58  0.00347       16       737       World eIoni
+   13     -274     -539     -117      1.57   0.0158      113       850       World eIoni
+   14     -287     -573     -213      1.55   0.0145      102       952       World eIoni
+   15     -288     -574     -240      1.54   0.0027     27.8       979       World eIoni
+   16     -291     -579     -279      1.53  0.00738     38.7  1.02e+03       World eIoni
+   17     -301     -597     -350      1.52  0.00978     74.4  1.09e+03       World eIoni
+   18     -322     -634     -439       1.5   0.0149     98.9  1.19e+03       World eIoni
+   19     -339     -659     -538      1.49   0.0148      104   1.3e+03       World eIoni
+   20     -344     -661     -563      1.48  0.00439     25.2  1.32e+03       World eIoni
+   21     -360     -668     -618      1.47  0.00773     57.8  1.38e+03       World eIoni
+   22     -364     -671     -637      1.46  0.00173     20.3   1.4e+03       World eIoni
+   23     -366     -674     -648      1.45  0.00135     10.9  1.41e+03       World eIoni
+   24     -403     -718     -781      1.43   0.0192      146  1.56e+03       World eIoni
+   25     -414     -726     -860      1.41  0.00898     80.1  1.64e+03       World eIoni
+   26     -477     -744 -1.1e+03      1.37   0.0389      253  1.89e+03       World eIoni
+   27     -484     -740 -1.15e+03      1.36  0.00862     43.2  1.93e+03       World eIoni
+   28     -487     -739 -1.16e+03      1.35  0.00275     16.5  1.95e+03       World eIoni
+   29     -493     -734 -1.19e+03      1.35  0.00365     28.4  1.98e+03       World eIoni
+   30     -493     -733 -1.2e+03      1.34 0.000887     6.62  1.98e+03       World eIoni
+   31     -496     -713 -1.36e+03      1.31   0.0287      168  2.15e+03       World eIoni
+   32     -490     -714 -1.39e+03       1.3  0.00365       25  2.18e+03       World eIoni
+   33     -473     -718 -1.43e+03      1.29  0.00619     44.2  2.22e+03       World eIoni
+   34     -469     -717 -1.43e+03      1.28  0.00125     7.78  2.23e+03       World eIoni
+   35     -424     -709 -1.54e+03      1.26   0.0167      116  2.35e+03       World eIoni
+   36     -403     -702 -1.6e+03      1.25  0.00849     62.8  2.41e+03       World eIoni
+   37     -396     -700 -1.63e+03      1.25  0.00407     27.6  2.44e+03       World eIoni
+   38     -390     -699 -1.66e+03      1.24  0.00859     30.8  2.47e+03       World eIoni
+   39     -379     -711 -1.77e+03      1.22   0.0157      114  2.58e+03       World eIoni
+   40     -378     -712 -1.78e+03      1.22  0.00227     16.1   2.6e+03       World eIoni
+   41     -352     -710 -1.92e+03      1.19   0.0184      134  2.73e+03       World eIoni
+   42     -350     -705 -1.98e+03      1.13   0.0092     62.3  2.79e+03       World eIoni
+   43     -352     -700   -2e+03      1.12  0.00212       23  2.82e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 32,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 66,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  6.13e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  6.13e-06        0 2.4e-100  2.4e-100      LensPV OpAbsorption
+    0     -350     -705 -1.98e+03    0.0582        0        0         0       World initStep
+    1     -349     -708 -1.98e+03    0.0547 0.000703     3.41      3.41       World eIoni
+    2     -349     -718 -1.98e+03    0.0457  0.00762     10.5      13.9       World eIoni
+    3     -354     -722 -1.98e+03    0.0393  0.00376      8.1        22       World eIoni
+    4     -357     -724 -1.98e+03    0.0359  0.00334     4.22      26.2       World eIoni
+    5     -358     -725 -1.98e+03    0.0329  0.00118     1.89      28.1       World eIoni
+    6     -359     -731 -1.98e+03    0.0276  0.00534      5.9        34       World eIoni
+    7     -361     -734 -1.98e+03    0.0225   0.0051     4.75      38.8       World eIoni
+    8     -361     -733 -1.98e+03    0.0182  0.00315     2.33      41.1       World eIoni
+    9     -360     -732 -1.98e+03    0.0154  0.00286     2.99      44.1       World eIoni
+   10     -360     -730 -1.99e+03    0.0111  0.00426     2.55      46.7       World eIoni
+   11     -359     -730 -1.98e+03   0.00636  0.00476     1.94      48.6       World eIoni
+   12     -358     -730 -1.98e+03  4.03e-05  0.00632     1.09      49.7       World eIoni
+   13     -358     -730 -1.98e+03         0 4.03e-05  0.00351      49.7       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 31,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 71,   Parent ID = 66
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.75e-06        0        0         0      LensPV initStep
-    1     17.6     61.9 -1.01e+03  3.75e-06        0     2.62      2.62       World Transportation
-    2     17.6     61.9 -1.01e+03  3.75e-06        0 1.15e-13      2.62      LensPV Transportation
-    3     19.2     61.9 -1.01e+03  3.75e-06        0     2.23      4.85 LensMotherPV Transportation
-    4     19.2     61.9 -1.01e+03  3.75e-06        0        0      4.85      LensPV Transportation
-    5       20     61.4 -1.01e+03  3.75e-06        0     1.21      6.06      LensPV OpAbsorption
+    0     -361     -733 -1.98e+03    0.0011        0        0         0       World initStep
+    1     -361     -733 -1.98e+03         0   0.0011   0.0611    0.0611       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 30,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 70,   Parent ID = 66
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.68e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.68e-06        0 3.09e-101 3.09e-101      LensPV OpAbsorption
+    0     -358     -725 -1.98e+03    0.0018        0        0         0       World initStep
+    1     -358     -725 -1.98e+03         0   0.0018    0.128     0.128       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 29,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 69,   Parent ID = 66
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.73e-06        0        0         0      LensPV initStep
-    1     15.4     62.1 -1.01e+03  4.73e-06        0    0.486     0.486      LensPV OpAbsorption
+    0     -354     -722 -1.98e+03   0.00265        0        0         0       World initStep
+    1     -354     -722 -1.98e+03         0  0.00265    0.239     0.239       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 28,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 68,   Parent ID = 66
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.04e-06        0        0         0      LensPV initStep
-    1     15.5     61.6 -1.01e+03  4.04e-06        0    0.486     0.486       World Transportation
-    2     15.5     61.6 -1.01e+03  4.04e-06        0 1.15e-13     0.486      LensPV Transportation
-    3     13.9     59.2 -1.01e+03  4.04e-06        0     3.87      4.35 LensMotherPV Transportation
-    4     13.9     59.2 -1.01e+03  4.04e-06        0        0      4.35      LensPV Transportation
-    5     9.87     51.8 -1.01e+03  4.04e-06        0     8.65        13 LensMotherPV Transportation
-    6     9.11     50.9 -1.01e+03  4.04e-06        0     1.26      14.3      LensPV Transportation
-    7        9     50.7 -1.01e+03  4.04e-06        0    0.282      14.5       World Transportation
-    8        9     50.7 -1.01e+03  4.04e-06        0        0      14.5      LensPV Transportation
-    9     8.84     50.5 -1.01e+03  4.04e-06        0      0.4      14.9 LensMotherPV Transportation
-   10     8.84     50.5 -1.01e+03  4.04e-06        0 1.42e-13      14.9      LensPV Transportation
-   11     8.53       50 -1.01e+03  4.04e-06        0    0.674      15.6       World Transportation
-   12     8.53       50 -1.01e+03  4.04e-06        0        0      15.6      LensPV Transportation
-   13     8.08     49.2 -1.01e+03  4.04e-06        0        1      16.6      LensPV OpAbsorption
+    0     -349     -718 -1.98e+03   0.00144        0        0         0       World initStep
+    1     -349     -718 -1.98e+03         0  0.00144   0.0907    0.0907       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 27,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 67,   Parent ID = 66
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.99e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.99e-06        0 6.06e-101 6.06e-101      LensPV OpAbsorption
+    0     -349     -708 -1.98e+03   0.00279        0        0         0       World initStep
+    1     -349     -708 -1.98e+03         0  0.00279    0.259     0.259       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 26,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 65,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.53e-06        0        0         0      LensPV initStep
-    1     15.5     63.5 -1.01e+03  2.53e-06        0     2.27      2.27       World Transportation
-    2     15.5     63.5 -1.01e+03  2.53e-06        0 1.13e-13      2.27      LensPV Transportation
-    3     15.4     64.6 -1.01e+03  2.53e-06        0     1.55      3.83 LensMotherPV Transportation
-    4     14.6     68.8   -1e+03  2.53e-06        0     4.65      8.48      LensPV Transportation
-    5     14.4       74   -1e+03  2.53e-06        0     5.43      13.9 LensMotherPV Transportation
-    6     14.4       74   -1e+03  2.53e-06        0 7.11e-14      13.9      LensPV Transportation
-    7     13.9     76.7 -1.01e+03  2.53e-06        0     4.57      18.5      LensPV OpAbsorption
+    0     -352     -710 -1.92e+03   0.00449        0        0         0       World initStep
+    1     -352     -711 -1.92e+03         0  0.00449    0.591     0.591       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 25,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 64,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.93e-06        0        0         0      LensPV initStep
-    1     15.3       62 -1.01e+03  4.93e-06        0    0.488     0.488      LensPV OpAbsorption
+    0     -378     -712 -1.78e+03    0.0017        0        0         0       World initStep
+    1     -378     -712 -1.78e+03         0   0.0017    0.117     0.117       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 24,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 63,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  2.04e-06        0        0         0      LensPV initStep
-    1     16.5     61.3 -1.01e+03  2.04e-06        0     1.32      1.32       World Transportation
-    2     16.5     61.3 -1.01e+03  2.04e-06        0 1.13e-13      1.32      LensPV Transportation
-    3     18.2     60.2 -1.01e+03  2.04e-06        0     2.95      4.27 LensMotherPV Transportation
-    4     18.2     60.2 -1.01e+03  2.04e-06        0        0      4.27      LensPV Transportation
-    5     20.4     57.2 -1.01e+03  2.04e-06        0     4.16      8.43       World Transportation
-    6     20.4     57.2 -1.01e+03  2.04e-06        0 1.59e-13      8.43      LensPV Transportation
-    7       24     52.1   -1e+03  2.04e-06        0     7.23      15.7 LensMotherPV Transportation
-    8       24     52.1   -1e+03  2.04e-06        0        0      15.7      LensPV Transportation
-    9     27.5       45 -1.01e+03  2.04e-06        0     8.06      23.7 LensMotherPV Transportation
-   10     27.5       45 -1.01e+03  2.04e-06        0        0      23.7      LensPV Transportation
-   11     36.8     45.2 -1.01e+03  2.04e-06        0      9.5      33.2       World Transportation
-   12     36.8     45.2 -1.01e+03  2.04e-06        0 3.86e-13      33.2      LensPV Transportation
-   13     45.1     45.4 -1.01e+03  2.04e-06        0     8.54      41.8 LensMotherPV Transportation
-   14     45.1     45.4 -1.01e+03  2.04e-06        0        0      41.8      LensPV Transportation
-   15     47.8       45 -1.01e+03  2.04e-06        0     3.23        45       World Transportation
-   16     47.8       45 -1.01e+03  2.04e-06        0 1.46e-13        45      LensPV Transportation
-   17     49.4     44.8 -1.01e+03  2.04e-06        0     1.87      46.9 LensMotherPV Transportation
-   18     49.4     44.8 -1.01e+03  2.04e-06        0 2.84e-14      46.9      LensPV Transportation
-   19     50.2     44.3 -1.01e+03  2.04e-06        0     1.36      48.2       World Transportation
-   20     50.2     44.3 -1.01e+03  2.04e-06        0 1.06e-13      48.2      LensPV Transportation
-   21     50.9     43.9 -1.01e+03  2.04e-06        0     1.17      49.4 LensMotherPV Transportation
-   22     62.4     32.4   -1e+03  2.04e-06        0     16.8      66.2      LensPV Transportation
-   23     62.4     32.4   -1e+03  2.04e-06        0        0      66.2 LensMotherPV Transportation
-   24     70.3    -13.7     -990  2.04e-06        0     48.5       115       World Transportation
-   25      108     -234     -930  2.04e-06        0      232       346   UVSCopePV Transportation
+    0     -379     -711 -1.77e+03   0.00183        0        0         0       World initStep
+    1     -379     -712 -1.77e+03         0  0.00183    0.132     0.132       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 23,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 62,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.98e-06        0        0         0      LensPV initStep
-    1     15.7       62 -1.01e+03  4.98e-06        0    0.191     0.191      LensPV OpAbsorption
+    0     -390     -699 -1.66e+03   0.00151        0        0         0       World initStep
+    1     -390     -699 -1.66e+03         0  0.00151   0.0976    0.0976       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 22,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 61,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.07e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.07e-06        0 2.97e-100 2.97e-100      LensPV OpAbsorption
+    0     -396     -700 -1.63e+03   0.00332        0        0         0       World initStep
+    1     -396     -700 -1.63e+03         0  0.00332    0.349     0.349       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 21,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 60,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  3.02e-06        0        0         0      LensPV initStep
-    1     16.6     61.1 -1.01e+03  3.02e-06        0     1.66      1.66       World Transportation
-    2     16.6     61.1 -1.01e+03  3.02e-06        0 1.14e-13      1.66      LensPV Transportation
-    3     18.4     59.7 -1.01e+03  3.02e-06        0     3.14       4.8 LensMotherPV Transportation
-    4     18.4     59.7 -1.01e+03  3.02e-06        0        0       4.8      LensPV Transportation
-    5     20.7     56.2 -1.01e+03  3.02e-06        0     4.71      9.51       World Transportation
-    6     20.7     56.2 -1.01e+03  3.02e-06        0 1.71e-13      9.51      LensPV Transportation
-    7       25     49.5   -1e+03  3.02e-06        0     8.97      18.5 LensMotherPV Transportation
-    8       25     49.5   -1e+03  3.02e-06        0        0      18.5      LensPV Transportation
-    9     26.8     45.4   -1e+03  3.02e-06        0     4.51        23 LensMotherPV Transportation
-   10     26.8     45.4   -1e+03  3.02e-06        0        0        23      LensPV Transportation
-   11     47.4     47.1 -1.01e+03  3.02e-06        0     20.9      43.9       World Transportation
-   12     47.4     47.1 -1.01e+03  3.02e-06        0 4.84e-13      43.9      LensPV Transportation
-   13     49.9     47.3 -1.01e+03  3.02e-06        0     2.61      46.5 LensMotherPV Transportation
-   14     49.9     47.3 -1.01e+03  3.02e-06        0        0      46.5      LensPV Transportation
-   15     50.6     47.3 -1.01e+03  3.02e-06        0    0.791      47.3       World Transportation
-   16     50.6     47.3 -1.01e+03  3.02e-06        0 1.47e-13      47.3      LensPV Transportation
-   17       51     47.2 -1.01e+03  3.02e-06        0    0.425      47.7 LensMotherPV Transportation
-   18       51     47.2 -1.01e+03  3.02e-06        0        0      47.7      LensPV Transportation
-   19     51.1     47.2 -1.01e+03  3.02e-06        0    0.299        48       World Transportation
-   20      252    -53.3 -1.05e+03  3.02e-06        0      229       277   UVSCopePV Transportation
+    0     -403     -702 -1.6e+03   0.00123        0        0         0       World initStep
+    1     -403     -702 -1.6e+03         0  0.00123    0.072     0.072       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 20,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 59,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03   3.4e-06        0        0         0      LensPV initStep
-    1     15.8     62.4 -1.01e+03   3.4e-06        0    0.814     0.814       World Transportation
-    2     15.8     62.4 -1.01e+03   3.4e-06        0 1.14e-13     0.814      LensPV Transportation
-    3     16.1     63.7 -1.01e+03   3.4e-06        0     1.83      2.65 LensMotherPV Transportation
-    4     16.9     68.2   -1e+03   3.4e-06        0     4.98      7.63      LensPV Transportation
-    5     17.9       73   -1e+03   3.4e-06        0     5.03      12.7 LensMotherPV Transportation
-    6     17.9       73   -1e+03   3.4e-06        0 1.21e-13      12.7      LensPV Transportation
-    7     18.5     76.2 -1.01e+03   3.4e-06        0     5.58      18.2       World Transportation
-    8     52.2      253 -1.1e+03   3.4e-06        0      202       221   UVSCopePV Transportation
+    0     -424     -709 -1.54e+03   0.00111        0        0         0       World initStep
+    1     -424     -709 -1.54e+03         0  0.00111   0.0618    0.0618       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 19,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 58,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.36e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.36e-06        0 4.76e-100 4.76e-100      LensPV OpAbsorption
+    0     -469     -717 -1.43e+03   0.00396        0        0         0       World initStep
+    1     -469     -717 -1.43e+03   0.00266        0   0.0205    0.0205       World eIoni
+    2     -469     -717 -1.43e+03         0  0.00266    0.239      0.26       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 18,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 72,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  4.33e-06        0        0         0      LensPV initStep
-    1     14.5     63.1 -1.01e+03  4.33e-06        0     2.33      2.33       World Transportation
-    2     14.5     63.1 -1.01e+03  4.33e-06        0 1.15e-13      2.33      LensPV Transportation
-    3     13.6     64.2 -1.01e+03  4.33e-06        0     1.92      4.25 LensMotherPV Transportation
-    4     5.12     70.1 -1.01e+03  4.33e-06        0     10.4      14.6      LensPV Transportation
-    5     1.81     75.9 -1.01e+03  4.33e-06        0     6.66      21.3      LensPV OpAbsorption
+    0     -469     -717 -1.43e+03    0.0013        0        0         0       World initStep
+    1     -469     -717 -1.43e+03         0   0.0013   0.0781    0.0781       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = opticalphoton,   Track ID = 17,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 57,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.7     61.9 -1.01e+03  5.51e-06        0        0         0      LensPV initStep
-    1     15.7     61.9 -1.01e+03  5.51e-06        0 3.27e-102 3.27e-102      LensPV OpAbsorption
+    0     -473     -718 -1.43e+03   0.00753        0        0         0       World initStep
+    1     -473     -718 -1.43e+03         0  0.00753     1.36      1.36       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = mu-,   Track ID = 1,   Parent ID = 0
+* G4Track Information:   Particle = e-,   Track ID = 56,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-   18     15.7     61.9 -1.01e+03       299        0        0  2.01e+03       World initStep
-   19     15.9     61.9 -1.13e+03       299   0.0178      124  2.13e+03       World muIoni
-   20     16.7     61.8 -1.37e+03       299   0.0391      242  2.37e+03       World muIoni
-   21     16.8     61.8 -1.41e+03       299  0.00761     40.7  2.41e+03       World muIoni
-   22     16.9     61.8 -1.49e+03       299   0.0129       77  2.49e+03       World muIoni
-   23     16.9     61.8 -1.52e+03       299  0.00178     23.6  2.52e+03 UVscopeBack Transportation
-   24     16.9     61.8 -1.52e+03       298    0.434        1  2.52e+03       World Transportation
-   25     17.1     61.5 -1.62e+03       298   0.0129      106  2.62e+03       World muIoni
-   26     17.3     61.3 -1.72e+03       298   0.0161     97.8  2.72e+03       World muIoni
-   27     17.4     61.1 -1.82e+03       298   0.0142      104  2.82e+03       World muIoni
-   28     17.5       61 -1.86e+03       298  0.00447     36.5  2.86e+03       World muIoni
-   29     17.8     60.7   -2e+03       298   0.0193      139     3e+03  OutOfWorld Transportation
+    0     -490     -714 -1.39e+03   0.00421        0        0         0       World initStep
+    1     -490     -715 -1.39e+03         0  0.00421    0.527     0.527       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 189,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 55,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     17.5       61 -1.86e+03   0.00231        0        0         0       World initStep
-    1     17.4       61 -1.86e+03         0  0.00231     0.19      0.19       World eIoni
+    0     -496     -713 -1.36e+03   0.00619        0        0         0       World initStep
+    1     -497     -713 -1.36e+03  0.000136  0.00605     1.04      1.04       World eIoni
+    2     -497     -713 -1.36e+03         0 0.000136  0.00654      1.05       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 188,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 54,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     17.4     61.1 -1.82e+03   0.00156        0        0         0       World initStep
-    1     17.4     61.1 -1.82e+03         0  0.00156    0.102     0.102       World eIoni
+    0     -493     -733 -1.2e+03   0.00292        0        0         0       World initStep
+    1     -493     -733 -1.2e+03         0  0.00292    0.281     0.281       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 187,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 53,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     17.3     61.3 -1.72e+03   0.00143        0        0         0       World initStep
-    1     17.2     61.3 -1.72e+03         0  0.00143     0.09      0.09       World eIoni
+    0     -493     -734 -1.19e+03   0.00274        0        0         0       World initStep
+    1     -493     -734 -1.19e+03         0  0.00274    0.252     0.252       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 186,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 52,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     17.1     61.5 -1.62e+03   0.00229        0        0         0       World initStep
-    1     17.1     61.5 -1.62e+03         0  0.00229    0.187     0.187       World eIoni
+    0     -487     -739 -1.16e+03   0.00165        0        0         0       World initStep
+    1     -487     -739 -1.16e+03         0  0.00165    0.112     0.112       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 185,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 51,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     16.9     61.8 -1.49e+03   0.00114        0        0         0       World initStep
-    1     16.9     61.8 -1.49e+03         0  0.00114   0.0643    0.0643       World eIoni
+    0     -484     -740 -1.15e+03    0.0056        0        0         0       World initStep
+    1     -484     -740 -1.15e+03         0   0.0056    0.873     0.873       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 184,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 50,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     16.8     61.8 -1.41e+03   0.00137        0        0         0       World initStep
-    1     16.8     61.8 -1.41e+03         0  0.00137   0.0846    0.0846       World eIoni
+    0     -477     -744 -1.1e+03   0.00183        0        0         0       World initStep
+    1     -477     -745 -1.1e+03         0  0.00183    0.132     0.132       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 183,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 49,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     16.7     61.8 -1.37e+03   0.00102        0        0         0       World initStep
-    1     16.6     61.8 -1.37e+03         0  0.00102   0.0548    0.0548       World eIoni
+    0     -414     -726     -860   0.00327        0        0         0       World initStep
+    1     -414     -726     -860         0  0.00327    0.341     0.341       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 182,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 48,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.9     61.9 -1.13e+03    0.0189        0        0         0       World initStep
-    1     14.8     59.8 -1.13e+03    0.0154  0.00347      3.1       3.1       World eIoni
-    2     14.1     58.3 -1.13e+03    0.0129  0.00256     2.56      5.65       World eIoni
-    3       14     57.6 -1.13e+03    0.0104  0.00116     0.87      6.52       World eIoni
-    4     14.5     57.3 -1.13e+03   0.00483  0.00358     1.24      7.76       World eIoni
-    5     14.7       57 -1.13e+03         0  0.00483    0.673      8.43       World eIoni
+    0     -403     -718     -781   0.00141        0        0         0       World initStep
+    1     -403     -718     -781         0  0.00141    0.088     0.088       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 191,   Parent ID = 182
+* G4Track Information:   Particle = e-,   Track ID = 47,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     14.5     57.3 -1.13e+03     0.002        0        0         0       World initStep
-    1     14.6     57.3 -1.13e+03         0    0.002    0.151     0.151       World eIoni
+    0     -366     -674     -648    0.0119        0        0         0       World initStep
+    1     -367     -673     -648   0.00621  0.00359     1.32      1.32       World eIoni
+    2     -367     -673     -648         0  0.00621     1.05      2.37       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 190,   Parent ID = 182
+* G4Track Information:   Particle = e-,   Track ID = 73,   Parent ID = 47
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       14     57.6 -1.13e+03    0.0013        0        0         0       World initStep
-    1       14     57.6 -1.13e+03         0   0.0013   0.0781    0.0781       World eIoni
+    0     -367     -673     -648   0.00206        0        0         0       World initStep
+    1     -367     -673     -648         0  0.00206    0.158     0.158       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 16,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 46,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.3     62.6     -797     0.227        0        0         0       World initStep
-    1     1.13     79.2     -808     0.192  0.00648     24.8      24.8       World eIoni
-    2    -62.2      154     -807      0.17   0.0223      101       125       World eIoni
-    3      -89      223     -823     0.151   0.0187     82.3       208       World eIoni
-    4    -91.9      236     -825     0.146  0.00357     13.1       221       World eIoni
-    5    -92.6      239     -825     0.144  0.00121     3.21       224       World eIoni
-    6    -92.6      239     -825     0.144 2.03e-06   0.0644       224       World eIoni
-    7    -93.1      241     -825     0.144 0.000353     1.72       226   UVSCopePV Transportation
-    8    -93.1      241     -825     0.143 0.000968   0.0027       226   UVSCopePV msc
-    9    -93.1      241     -825     0.142 0.000653  0.00507       226   UVSCopePV msc
-   10    -93.1      241     -825      0.12   0.0221  0.00507       226   UVSCopePV msc
-   11    -93.1      241     -825     0.117   0.0027  0.00507       226   UVSCopePV msc
-   12    -93.1      241     -825     0.113  0.00465  0.00507       226   UVSCopePV msc
-   13    -93.1      241     -825     0.109  0.00329  0.00507       226   UVSCopePV msc
-   14    -93.1      241     -825     0.107  0.00214   0.0055       226   UVSCopePV msc
-   15    -93.1      241     -825     0.105  0.00199  0.00592       226   UVSCopePV msc
-   16    -93.1      241     -825       0.1  0.00513   0.0051       226   UVSCopePV msc
-   17    -93.1      241     -825    0.0968  0.00321  0.00507       226   UVSCopePV msc
-   18    -93.1      241     -825    0.0925  0.00431  0.00507       226   UVSCopePV msc
-   19    -93.1      241     -825    0.0893  0.00324  0.00507       226   UVSCopePV msc
-   20    -93.1      241     -825    0.0879  0.00143  0.00507       226   UVSCopePV msc
-   21    -93.1      241     -825    0.0822  0.00569  0.00507       226   UVSCopePV msc
-   22    -93.1      241     -825     0.077  0.00522  0.00507       226   UVSCopePV msc
-   23    -93.1      241     -825    0.0768 0.000162 0.000246       226       World Transportation
-   24    -96.2      223     -816    0.0669   0.0099       22       248       World eIoni
-   25    -89.7      220     -800    0.0568   0.0101     17.6       265       World eIoni
-   26    -90.1      219     -797     0.055  0.00179      2.7       268       World eIoni
-   27    -93.6      213     -787    0.0483  0.00676     12.8       281       World eIoni
-   28    -93.6      208     -788    0.0433  0.00393     5.08       286       World eIoni
-   29    -90.8      201     -790    0.0351  0.00823     8.87       295       World eIoni
-   30    -90.6      196     -789    0.0278   0.0073     6.53       301       World eIoni
-   31    -89.7      193     -787    0.0234   0.0044     4.79       306       World eIoni
-   32    -88.4      191     -785    0.0132  0.00429     3.42       310       World eIoni
-   33    -88.2      190     -785   0.00799  0.00308     1.69       311       World eIoni
-   34    -87.9      189     -785   0.00369  0.00431     1.45       313       World eIoni
-   35    -87.8      189     -785         0  0.00369    0.419       313       World eIoni
+    0     -364     -671     -637    0.0097        0        0         0       World initStep
+    1     -364     -671     -638   0.00734  0.00104     0.59      0.59       World eIoni
+    2     -364     -671     -637    0.0016  0.00574     1.32      1.91       World eIoni
+    3     -364     -671     -637         0   0.0016    0.107      2.02       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 197,   Parent ID = 16
+* G4Track Information:   Particle = e-,   Track ID = 74,   Parent ID = 46
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -88.2      190     -785   0.00208        0        0         0       World initStep
-    1    -88.1      190     -785         0  0.00208    0.161     0.161       World eIoni
+    0     -364     -671     -638   0.00132        0        0         0       World initStep
+    1     -364     -671     -638         0  0.00132   0.0797    0.0797       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 196,   Parent ID = 16
+* G4Track Information:   Particle = e-,   Track ID = 45,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -88.4      191     -785   0.00593        0        0         0       World initStep
-    1    -88.8      191     -785         0  0.00593    0.969     0.969       World eIoni
+    0     -360     -668     -618   0.00168        0        0         0       World initStep
+    1     -360     -668     -618         0  0.00168    0.115     0.115       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 195,   Parent ID = 16
+* G4Track Information:   Particle = e-,   Track ID = 44,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -93.6      208     -788   0.00101        0        0         0       World initStep
-    1    -93.5      208     -788         0  0.00101   0.0537    0.0537       World eIoni
+    0     -344     -661     -563   0.00123        0        0         0       World initStep
+    1     -344     -661     -563         0  0.00123   0.0718    0.0718       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 194,   Parent ID = 16
+* G4Track Information:   Particle = e-,   Track ID = 43,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -92.6      239     -825   0.00109        0        0         0       World initStep
-    1    -92.6      239     -825         0  0.00109   0.0604    0.0604       World eIoni
+    0     -339     -659     -538   0.00335        0        0         0       World initStep
+    1     -339     -659     -538         0  0.00335    0.355     0.355       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 193,   Parent ID = 16
+* G4Track Information:   Particle = e-,   Track ID = 42,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -91.9      236     -825   0.00143        0        0         0       World initStep
-    1    -91.9      236     -825         0  0.00143   0.0901    0.0901       World eIoni
+    0     -322     -634     -439   0.00188        0        0         0       World initStep
+    1     -322     -634     -439         0  0.00188    0.137     0.137       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 192,   Parent ID = 16
+* G4Track Information:   Particle = e-,   Track ID = 41,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.13     79.2     -808    0.0284        0        0         0       World initStep
-    1     2.85     82.7     -807    0.0224  0.00598     4.92      4.92       World eIoni
-    2     3.55     82.8     -806    0.0159 0.000647    0.962      5.89       World eIoni
-    3     4.71     84.2     -806    0.0129  0.00303     2.63      8.51       World eIoni
-    4     4.75     84.7     -806   0.00984  0.00132    0.677      9.19       World eIoni
-    5     5.19     85.1     -807   0.00638  0.00346     1.75      10.9       World eIoni
-    6     5.21     85.4     -807  0.000856  0.00553     1.04        12       World eIoni
-    7     5.22     85.4     -807         0 0.000856   0.0429        12       World eIoni
+    0     -301     -597     -350   0.00138        0        0         0       World initStep
+    1     -301     -597     -350         0  0.00138   0.0855    0.0855       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 199,   Parent ID = 192
+* G4Track Information:   Particle = e-,   Track ID = 40,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.75     84.7     -806    0.0017        0        0         0       World initStep
-    1     4.73     84.8     -806         0   0.0017    0.117     0.117       World eIoni
+    0     -291     -579     -279   0.00158        0        0         0       World initStep
+    1     -291     -579     -279         0  0.00158    0.105     0.105       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 198,   Parent ID = 192
+* G4Track Information:   Particle = e-,   Track ID = 39,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.55     82.8     -806   0.00588        0        0         0       World initStep
-    1     3.68     82.6     -806   0.00358  0.00129    0.457     0.457       World eIoni
-    2     3.77     82.6     -806         0  0.00358    0.398     0.854       World eIoni
+    0     -288     -574     -240   0.00555        0        0         0       World initStep
+    1     -288     -573     -240         0  0.00555    0.861     0.861       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 200,   Parent ID = 198
+* G4Track Information:   Particle = e-,   Track ID = 38,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.68     82.6     -806   0.00101        0        0         0       World initStep
-    1     3.69     82.6     -806         0  0.00101   0.0541    0.0541       World eIoni
+    0     -287     -573     -213   0.00315        0        0         0       World initStep
+    1     -287     -573     -213         0  0.00315    0.319     0.319       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 15,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 37,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.3     62.8     -711   0.00249        0        0         0       World initStep
-    1     15.3     62.9     -711         0  0.00249    0.215     0.215       World eIoni
+    0     -274     -539     -117   0.00114        0        0         0       World initStep
+    1     -274     -539     -117         0  0.00114   0.0641    0.0641       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 14,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 36,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       15     63.9     -377   0.00964        0        0         0       World initStep
-    1     15.7     63.2     -377   0.00591  0.00373     1.72      1.72       World eIoni
-    2     16.1     63.3     -377         0  0.00591    0.963      2.68       World eIoni
+    0     -271     -492      -15   0.00629        0        0         0       World initStep
+    1     -271     -492    -15.2         0  0.00629     1.07      1.07       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 13,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 35,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       15       64     -341   0.00215        0        0         0       World initStep
-    1     14.9       64     -341         0  0.00215     0.17      0.17       World eIoni
+    0     -268     -486   -0.807   0.00184        0        0         0       World initStep
+    1     -268     -486   -0.833         0  0.00184    0.132     0.132       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 12,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 34,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       15     64.1     -321   0.00192        0        0         0       World initStep
-    1     14.9       64     -321         0  0.00192    0.142     0.142       World eIoni
+    0     -266     -480     10.4   0.00325        0        0         0       World initStep
+    1     -265     -480     10.4         0  0.00325    0.337     0.337       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 11,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 33,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     14.9     64.3     -237   0.00299        0        0         0       World initStep
-    1       15     64.3     -237         0  0.00299    0.292     0.292       World eIoni
+    0     -264     -477     17.7   0.00112        0        0         0       World initStep
+    1     -264     -477     17.7         0  0.00112   0.0629    0.0629       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 10,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 32,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     14.7     64.6     55.1   0.00143        0        0         0       World initStep
-    1     14.7     64.6     55.1         0  0.00143   0.0902    0.0902       World eIoni
+    0     -263     -473     25.5   0.00261        0        0         0       World initStep
+    1     -263     -473     25.5         0  0.00261    0.233     0.233       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 9,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 31,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     14.4     64.8      218   0.00222        0        0         0       World initStep
-    1     14.3     64.7      218         0  0.00222    0.179     0.179       World eIoni
+    0     -257     -417      123   0.00104        0        0         0       World initStep
+    1     -257     -417      123         0  0.00104   0.0563    0.0563       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 8,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 30,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     14.3     64.8      247   0.00117        0        0         0       World initStep
-    1     14.3     64.8      247         0  0.00117   0.0668    0.0668       World eIoni
+    0     -254     -404      143   0.00269        0        0         0       World initStep
+    1     -254     -404      143         0  0.00269    0.245     0.245       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 7,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 29,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     13.3     65.1      536   0.00112        0        0         0       World initStep
-    1     13.3     65.1      536         0  0.00112   0.0627    0.0627       World eIoni
+    0     -240     -287      325   0.00149        0        0         0       World initStep
+    1     -240     -287      325         0  0.00149   0.0954    0.0954       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 6,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 28,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     13.3     65.1      557   0.00127        0        0         0       World initStep
-    1     13.3     65.1      557         0  0.00127   0.0751    0.0751       World eIoni
+    0     -238     -279      335   0.00563        0        0         0       World initStep
+    1     -238     -279      336         0  0.00563    0.883     0.883       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 5,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 27,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     12.7     65.1      777   0.00483        0        0         0       World initStep
-    1     12.6     65.4      777         0  0.00483    0.671     0.671       World eIoni
+    0     -211     -135      552   0.00241        0        0         0       World initStep
+    1     -211     -135      552         0  0.00241    0.204     0.204       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 4,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 26,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     12.6     65.1      846   0.00226        0        0         0       World initStep
-    1     12.5     65.1      846         0  0.00226    0.184     0.184       World eIoni
+    0     -214    -97.3      599   0.00114        0        0         0       World initStep
+    1     -214    -97.3      599         0  0.00114   0.0646    0.0646       World eIoni
 
 *********************************************************************************************************
 * G4Track Information:   Particle = e-,   Track ID = 3,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     12.6     65.1      857   0.00249        0        0         0       World initStep
-    1     12.5     65.2      857         0  0.00249    0.215     0.215       World eIoni
+    0     -213      -96      897   0.00204        0        0         0       World initStep
+    1     -213      -96      897         0  0.00204    0.156     0.156       World eIoni
 
 *********************************************************************************************************
 * G4Track Information:   Particle = e-,   Track ID = 2,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     12.3     65.1      945   0.00144        0        0         0       World initStep
-    1     12.3     65.2      945         0  0.00144    0.091     0.091       World eIoni
+    0     -213      -96      953  0.000993        0        0         0       World initStep
+    1     -213      -96      953         0 0.000993   0.0527    0.0527       World eIoni
  Run terminated.
 Run Summary
   Number of events processed : 1
-  User=0.05s Real=0.07000000000000001s Sys=0.01s
+  User=0.01s Real=0.01s Sys=0s
 ### Run 0 (global) ended.
 Graphics systems deleted.
 Visualization Manager deleting...
@@ -2905,10 +1117,10 @@ RunManager is deleting RunManagerKernel.
 G4SDManager deleted.
 EventManager deleted.
 Units table cleared.
-Total navigation history collections cleaned: 8
+Total navigation history collections cleaned: 7
 ================== Deleting memory pools ===================
 Number of memory pools allocated: 11 of which, static: 0
-Dynamic pools deleted: 11 / Total memory freed: 0.099 Mb
+Dynamic pools deleted: 11 / Total memory freed: 0.033 Mb
 ============================================================
 G4Allocator objects are deleted.
 UImanager deleted.
diff --git a/examples/advanced/amsEcal/run1.out b/examples/advanced/amsEcal/run1.out
index 4a7b966aefb..73ac8c1dda3 100644
--- a/examples/advanced/amsEcal/run1.out
+++ b/examples/advanced/amsEcal/run1.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -177,7 +177,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 10000
-  User=23.29s Real=23.34s Sys=0s
+  User=18.05s Real=18.33s Sys=0s
 
 -------------------------------------------------------------
  ---> The calorimeter is 9 Modules
@@ -313,7 +313,7 @@ Units table cleared.
 Total navigation history collections cleaned: 7
 ================== Deleting memory pools ===================
 Number of memory pools allocated: 9 of which, static: 0
-Dynamic pools deleted: 9 / Total memory freed: 0.012 Mb
+Dynamic pools deleted: 9 / Total memory freed: 0.011 Mb
 ============================================================
 G4Allocator objects are deleted.
 UImanager deleted.
diff --git a/examples/advanced/brachytherapy/brachytherapy.out b/examples/advanced/brachytherapy/brachytherapy.out
index d34c891bbed..732708c52c2 100644
--- a/examples/advanced/brachytherapy/brachytherapy.out
+++ b/examples/advanced/brachytherapy/brachytherapy.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/advanced/gammaknife/gammaknife.out b/examples/advanced/gammaknife/gammaknife.out
index 75ec15bf370..3f2217d5052 100644
--- a/examples/advanced/gammaknife/gammaknife.out
+++ b/examples/advanced/gammaknife/gammaknife.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -497,8 +497,8 @@ Run 0 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0.01s
-	  User TOT = 0	  Real TOT = 0.01
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.01	  Real TOT = 0
  Summary of Run 0 :
 /run/geometryModified
 
@@ -567,8 +567,8 @@ Run 1 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0	  Real TOT = 0.01
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.02	  Real TOT = 0
  Summary of Run 1 :
 /run/geometryModified
 
@@ -637,8 +637,8 @@ Run 2 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0	  Real TOT = 0.02
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.02	  Real TOT = 0
  Summary of Run 2 :
 /run/geometryModified
 
@@ -707,8 +707,8 @@ Run 3 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.01	  Real TOT = 0.02
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.02	  Real TOT = 0
  Summary of Run 3 :
 /run/geometryModified
 
@@ -778,7 +778,7 @@ Run 4 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.02	  Real TOT = 0.02
+	  User TOT = 0.02	  Real TOT = 0
  Summary of Run 4 :
 /run/geometryModified
 
@@ -848,7 +848,7 @@ Run 5 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0.01s Sys=0s
-	  User TOT = 0.02	  Real TOT = 0.03
+	  User TOT = 0.02	  Real TOT = 0.01
  Summary of Run 5 :
 /run/geometryModified
 
@@ -917,8 +917,8 @@ Run 6 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0.01s
-	  User TOT = 0.03	  Real TOT = 0.04
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.03	  Real TOT = 0.02
  Summary of Run 6 :
 /run/geometryModified
 
@@ -988,7 +988,7 @@ Run 7 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.03	  Real TOT = 0.04
+	  User TOT = 0.03	  Real TOT = 0.02
  Summary of Run 7 :
 /run/geometryModified
 
@@ -1058,7 +1058,7 @@ Run 8 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.03	  Real TOT = 0.04
+	  User TOT = 0.03	  Real TOT = 0.02
  Summary of Run 8 :
 /run/geometryModified
 
@@ -1127,8 +1127,8 @@ Run 9 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.04	  Real TOT = 0.05
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.03	  Real TOT = 0.02
  Summary of Run 9 :
 /run/geometryModified
 
@@ -1198,7 +1198,7 @@ Run 10 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.04	  Real TOT = 0.06
+	  User TOT = 0.03	  Real TOT = 0.02
  Summary of Run 10 :
 /run/geometryModified
 
@@ -1267,8 +1267,8 @@ Run 11 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.05	  Real TOT = 0.06
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.03	  Real TOT = 0.03
  Summary of Run 11 :
 /run/geometryModified
 
@@ -1337,8 +1337,8 @@ Run 12 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.05	  Real TOT = 0.07
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.03	  Real TOT = 0.03
  Summary of Run 12 :
 /run/geometryModified
 
@@ -1407,8 +1407,8 @@ Run 13 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.06	  Real TOT = 0.07
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.04	  Real TOT = 0.04
  Summary of Run 13 :
 /run/geometryModified
 
@@ -1478,7 +1478,7 @@ Run 14 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.06	  Real TOT = 0.07
+	  User TOT = 0.04	  Real TOT = 0.04
  Summary of Run 14 :
 /run/geometryModified
 
@@ -1547,8 +1547,8 @@ Run 15 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.07	  Real TOT = 0.08
+  User=0s Real=0.01s Sys=0.01s
+	  User TOT = 0.04	  Real TOT = 0.05
  Summary of Run 15 :
 /run/geometryModified
 
@@ -1617,8 +1617,8 @@ Run 16 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.07	  Real TOT = 0.08
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.05	  Real TOT = 0.05
  Summary of Run 16 :
 /run/geometryModified
 
@@ -1687,8 +1687,8 @@ Run 17 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.07	  Real TOT = 0.08
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.05	  Real TOT = 0.06
  Summary of Run 17 :
 /run/geometryModified
 
@@ -1757,8 +1757,8 @@ Run 18 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.08	  Real TOT = 0.09
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.06	  Real TOT = 0.06
  Summary of Run 18 :
 /run/geometryModified
 
@@ -1828,7 +1828,7 @@ Run 19 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0.01s Sys=0s
-	  User TOT = 0.08	  Real TOT = 0.1
+	  User TOT = 0.06	  Real TOT = 0.07
  Summary of Run 19 :
 /run/geometryModified
 
@@ -1897,8 +1897,8 @@ Run 20 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.09	  Real TOT = 0.1
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.06	  Real TOT = 0.07
  Summary of Run 20 :
 /run/geometryModified
 
@@ -1968,7 +1968,7 @@ Run 21 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0.01s Sys=0s
-	  User TOT = 0.1	  Real TOT = 0.11
+	  User TOT = 0.06	  Real TOT = 0.08
  Summary of Run 21 :
 /run/geometryModified
 
@@ -2037,8 +2037,8 @@ Run 22 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.1	  Real TOT = 0.12
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.06	  Real TOT = 0.08
  Summary of Run 22 :
 /run/geometryModified
 
@@ -2107,8 +2107,8 @@ Run 23 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.11	  Real TOT = 0.12
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.07	  Real TOT = 0.08
  Summary of Run 23 :
 /run/geometryModified
 
@@ -2177,8 +2177,8 @@ Run 24 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0.01s
-	  User TOT = 0.11	  Real TOT = 0.12
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.07	  Real TOT = 0.08
  Summary of Run 24 :
 /run/geometryModified
 
@@ -2247,8 +2247,8 @@ Run 25 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.11	  Real TOT = 0.13
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.08	  Real TOT = 0.09
  Summary of Run 25 :
 /run/geometryModified
 
@@ -2318,7 +2318,7 @@ Run 26 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.11	  Real TOT = 0.13
+	  User TOT = 0.08	  Real TOT = 0.09
  Summary of Run 26 :
 /run/geometryModified
 
@@ -2387,8 +2387,8 @@ Run 27 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.12	  Real TOT = 0.14
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.08	  Real TOT = 0.1
  Summary of Run 27 :
 /run/geometryModified
 
@@ -2457,8 +2457,8 @@ Run 28 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.12	  Real TOT = 0.14
+  User=0s Real=0s Sys=0.01s
+	  User TOT = 0.08	  Real TOT = 0.1
  Summary of Run 28 :
 /run/geometryModified
 
@@ -2527,8 +2527,8 @@ Run 29 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.13	  Real TOT = 0.14
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.08	  Real TOT = 0.11
  Summary of Run 29 :
 /run/geometryModified
 
@@ -2597,8 +2597,8 @@ Run 30 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.13	  Real TOT = 0.15
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.09	  Real TOT = 0.11
  Summary of Run 30 :
 /run/geometryModified
 
@@ -2667,8 +2667,8 @@ Run 31 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.14	  Real TOT = 0.15
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.09	  Real TOT = 0.11
  Summary of Run 31 :
 /run/geometryModified
 
@@ -2737,8 +2737,8 @@ Run 32 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.15	  Real TOT = 0.15
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.09	  Real TOT = 0.11
  Summary of Run 32 :
 /run/geometryModified
 
@@ -2807,8 +2807,8 @@ Run 33 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.15	  Real TOT = 0.16
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.1	  Real TOT = 0.11
  Summary of Run 33 :
 /run/geometryModified
 
@@ -2877,8 +2877,8 @@ Run 34 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.15	  Real TOT = 0.17
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.1	  Real TOT = 0.11
  Summary of Run 34 :
 /run/geometryModified
 
@@ -2948,7 +2948,7 @@ Run 35 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.16	  Real TOT = 0.17
+	  User TOT = 0.1	  Real TOT = 0.11
  Summary of Run 35 :
 /run/geometryModified
 
@@ -3017,8 +3017,8 @@ Run 36 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.16	  Real TOT = 0.17
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.11	  Real TOT = 0.12
  Summary of Run 36 :
 /run/geometryModified
 
@@ -3087,8 +3087,8 @@ Run 37 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.17	  Real TOT = 0.18
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.11	  Real TOT = 0.12
  Summary of Run 37 :
 /run/geometryModified
 
@@ -3157,8 +3157,8 @@ Run 38 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.17	  Real TOT = 0.18
+  User=0s Real=0.01s Sys=0.01s
+	  User TOT = 0.11	  Real TOT = 0.13
  Summary of Run 38 :
 /run/geometryModified
 
@@ -3227,8 +3227,8 @@ Run 39 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.17	  Real TOT = 0.18
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.12	  Real TOT = 0.13
  Summary of Run 39 :
 /run/geometryModified
 
@@ -3298,7 +3298,7 @@ Run 40 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0.01s Sys=0s
-	  User TOT = 0.17	  Real TOT = 0.19
+	  User TOT = 0.12	  Real TOT = 0.14
  Summary of Run 40 :
 /run/geometryModified
 
@@ -3367,8 +3367,8 @@ Run 41 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.17	  Real TOT = 0.19
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.13	  Real TOT = 0.14
  Summary of Run 41 :
 /run/geometryModified
 
@@ -3437,8 +3437,8 @@ Run 42 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.18	  Real TOT = 0.19
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.13	  Real TOT = 0.15
  Summary of Run 42 :
 /run/geometryModified
 
@@ -3507,8 +3507,8 @@ Run 43 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.18	  Real TOT = 0.2
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.14	  Real TOT = 0.15
  Summary of Run 43 :
 /run/geometryModified
 
@@ -3577,8 +3577,8 @@ Run 44 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.19	  Real TOT = 0.2
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.14	  Real TOT = 0.16
  Summary of Run 44 :
 /run/geometryModified
 
@@ -3648,7 +3648,7 @@ Run 45 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.19	  Real TOT = 0.2
+	  User TOT = 0.14	  Real TOT = 0.16
  Summary of Run 45 :
 /run/geometryModified
 
@@ -3717,8 +3717,8 @@ Run 46 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.2	  Real TOT = 0.21
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.14	  Real TOT = 0.17
  Summary of Run 46 :
 /run/geometryModified
 
@@ -3787,8 +3787,8 @@ Run 47 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0.01s
-	  User TOT = 0.2	  Real TOT = 0.21
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.14	  Real TOT = 0.17
  Summary of Run 47 :
 /run/geometryModified
 
@@ -3857,8 +3857,8 @@ Run 48 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.21	  Real TOT = 0.22
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.14	  Real TOT = 0.18
  Summary of Run 48 :
 /run/geometryModified
 
@@ -3928,7 +3928,7 @@ Run 49 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.21	  Real TOT = 0.22
+	  User TOT = 0.14	  Real TOT = 0.18
  Summary of Run 49 :
 /run/geometryModified
 
@@ -3997,8 +3997,8 @@ Run 50 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.22	  Real TOT = 0.22
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.15	  Real TOT = 0.18
  Summary of Run 50 :
 /run/geometryModified
 
@@ -4068,7 +4068,7 @@ Run 51 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0.01s Sys=0s
-	  User TOT = 0.22	  Real TOT = 0.23
+	  User TOT = 0.15	  Real TOT = 0.19
  Summary of Run 51 :
 /run/geometryModified
 
@@ -4137,8 +4137,8 @@ Run 52 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.23	  Real TOT = 0.23
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.15	  Real TOT = 0.19
  Summary of Run 52 :
 /run/geometryModified
 
@@ -4207,8 +4207,8 @@ Run 53 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.23	  Real TOT = 0.23
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.16	  Real TOT = 0.2
  Summary of Run 53 :
 /run/geometryModified
 
@@ -4277,8 +4277,8 @@ Run 54 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.24	  Real TOT = 0.24
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.16	  Real TOT = 0.2
  Summary of Run 54 :
 /run/geometryModified
 
@@ -4347,8 +4347,8 @@ Run 55 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.24	  Real TOT = 0.24
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.16	  Real TOT = 0.21
  Summary of Run 55 :
 /run/geometryModified
 
@@ -4417,8 +4417,8 @@ Run 56 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.25	  Real TOT = 0.24
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.16	  Real TOT = 0.21
  Summary of Run 56 :
 /run/geometryModified
 
@@ -4487,8 +4487,8 @@ Run 57 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.25	  Real TOT = 0.25
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.16	  Real TOT = 0.22
  Summary of Run 57 :
 /run/geometryModified
 
@@ -4558,7 +4558,7 @@ Run 58 starts ...
 Run Summary
   Number of events processed : 10
   User=0.01s Real=0s Sys=0s
-	  User TOT = 0.26	  Real TOT = 0.25
+	  User TOT = 0.17	  Real TOT = 0.22
  Summary of Run 58 :
 /run/geometryModified
 
@@ -4627,8 +4627,8 @@ Run 59 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0.01s
-	  User TOT = 0.26	  Real TOT = 0.25
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.17	  Real TOT = 0.22
  Summary of Run 59 :
 /run/geometryModified
 
@@ -4697,8 +4697,8 @@ Run 60 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.27	  Real TOT = 0.26
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.18	  Real TOT = 0.22
  Summary of Run 60 :
 /run/geometryModified
 
@@ -4767,8 +4767,8 @@ Run 61 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.27	  Real TOT = 0.26
+  User=0s Real=0s Sys=0.01s
+	  User TOT = 0.18	  Real TOT = 0.22
  Summary of Run 61 :
 /run/geometryModified
 
@@ -4837,8 +4837,8 @@ Run 62 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.27	  Real TOT = 0.27
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.18	  Real TOT = 0.23
  Summary of Run 62 :
 /run/geometryModified
 
@@ -4907,8 +4907,8 @@ Run 63 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.27	  Real TOT = 0.27
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.19	  Real TOT = 0.23
  Summary of Run 63 :
 /run/geometryModified
 
@@ -4977,8 +4977,8 @@ Run 64 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.28	  Real TOT = 0.27
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.19	  Real TOT = 0.24
  Summary of Run 64 :
 /run/geometryModified
 
@@ -5047,8 +5047,8 @@ Run 65 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.28	  Real TOT = 0.28
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.2	  Real TOT = 0.24
  Summary of Run 65 :
 /run/geometryModified
 
@@ -5117,8 +5117,8 @@ Run 66 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.28	  Real TOT = 0.28
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.2	  Real TOT = 0.25
  Summary of Run 66 :
 /run/geometryModified
 
@@ -5187,8 +5187,8 @@ Run 67 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0.01s
-	  User TOT = 0.28	  Real TOT = 0.29
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.2	  Real TOT = 0.25
  Summary of Run 67 :
 /run/geometryModified
 
@@ -5257,8 +5257,8 @@ Run 68 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.28	  Real TOT = 0.3
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.2	  Real TOT = 0.25
  Summary of Run 68 :
 /run/geometryModified
 
@@ -5328,7 +5328,7 @@ Run 69 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.28	  Real TOT = 0.3
+	  User TOT = 0.2	  Real TOT = 0.25
  Summary of Run 69 :
 /run/geometryModified
 
@@ -5397,8 +5397,8 @@ Run 70 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.29	  Real TOT = 0.31
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.21	  Real TOT = 0.25
  Summary of Run 70 :
 /run/geometryModified
 
@@ -5467,8 +5467,8 @@ Run 71 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.29	  Real TOT = 0.31
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.21	  Real TOT = 0.26
  Summary of Run 71 :
 /run/geometryModified
 
@@ -5537,8 +5537,8 @@ Run 72 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.29	  Real TOT = 0.31
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.22	  Real TOT = 0.26
  Summary of Run 72 :
 /run/geometryModified
 
@@ -5608,7 +5608,7 @@ Run 73 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0.01s Sys=0s
-	  User TOT = 0.29	  Real TOT = 0.32
+	  User TOT = 0.22	  Real TOT = 0.27
  Summary of Run 73 :
 /run/geometryModified
 
@@ -5677,8 +5677,8 @@ Run 74 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.3	  Real TOT = 0.32
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.22	  Real TOT = 0.27
  Summary of Run 74 :
 /run/geometryModified
 
@@ -5747,8 +5747,8 @@ Run 75 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.3	  Real TOT = 0.32
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.23	  Real TOT = 0.28
  Summary of Run 75 :
 /run/geometryModified
 
@@ -5817,8 +5817,8 @@ Run 76 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.3	  Real TOT = 0.33
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.23	  Real TOT = 0.28
  Summary of Run 76 :
 /run/geometryModified
 
@@ -5888,7 +5888,7 @@ Run 77 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.3	  Real TOT = 0.33
+	  User TOT = 0.23	  Real TOT = 0.28
  Summary of Run 77 :
 /run/geometryModified
 
@@ -5957,8 +5957,8 @@ Run 78 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.3	  Real TOT = 0.34
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.24	  Real TOT = 0.29
  Summary of Run 78 :
 /run/geometryModified
 
@@ -6027,8 +6027,8 @@ Run 79 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.31	  Real TOT = 0.34
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.24	  Real TOT = 0.29
  Summary of Run 79 :
 /run/geometryModified
 
@@ -6097,8 +6097,8 @@ Run 80 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.31	  Real TOT = 0.34
+  User=0s Real=0.01s Sys=0.01s
+	  User TOT = 0.24	  Real TOT = 0.3
  Summary of Run 80 :
 /run/geometryModified
 
@@ -6167,8 +6167,8 @@ Run 81 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.31	  Real TOT = 0.35
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.25	  Real TOT = 0.3
  Summary of Run 81 :
 /run/geometryModified
 
@@ -6238,7 +6238,7 @@ Run 82 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0.01s Sys=0s
-	  User TOT = 0.31	  Real TOT = 0.36
+	  User TOT = 0.25	  Real TOT = 0.31
  Summary of Run 82 :
 /run/geometryModified
 
@@ -6307,8 +6307,8 @@ Run 83 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.32	  Real TOT = 0.36
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.25	  Real TOT = 0.31
  Summary of Run 83 :
 /run/geometryModified
 
@@ -6377,8 +6377,8 @@ Run 84 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0.01s
-	  User TOT = 0.32	  Real TOT = 0.37
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.26	  Real TOT = 0.31
  Summary of Run 84 :
 /run/geometryModified
 
@@ -6447,8 +6447,8 @@ Run 85 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.33	  Real TOT = 0.38
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.26	  Real TOT = 0.32
  Summary of Run 85 :
 /run/geometryModified
 
@@ -6517,8 +6517,8 @@ Run 86 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.33	  Real TOT = 0.38
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.27	  Real TOT = 0.32
  Summary of Run 86 :
 /run/geometryModified
 
@@ -6587,8 +6587,8 @@ Run 87 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.34	  Real TOT = 0.39
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.27	  Real TOT = 0.33
  Summary of Run 87 :
 /run/geometryModified
 
@@ -6658,7 +6658,7 @@ Run 88 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.34	  Real TOT = 0.39
+	  User TOT = 0.27	  Real TOT = 0.33
  Summary of Run 88 :
 /run/geometryModified
 
@@ -6727,8 +6727,8 @@ Run 89 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.34	  Real TOT = 0.39
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.28	  Real TOT = 0.34
  Summary of Run 89 :
 /run/geometryModified
 
@@ -6797,8 +6797,8 @@ Run 90 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.34	  Real TOT = 0.4
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.28	  Real TOT = 0.34
  Summary of Run 90 :
 /run/geometryModified
 
@@ -6867,8 +6867,8 @@ Run 91 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.35	  Real TOT = 0.4
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.29	  Real TOT = 0.35
  Summary of Run 91 :
 /run/geometryModified
 
@@ -6938,7 +6938,7 @@ Run 92 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.35	  Real TOT = 0.41
+	  User TOT = 0.29	  Real TOT = 0.35
  Summary of Run 92 :
 /run/geometryModified
 
@@ -7007,8 +7007,8 @@ Run 93 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.36	  Real TOT = 0.41
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.29	  Real TOT = 0.35
  Summary of Run 93 :
 /run/geometryModified
 
@@ -7077,8 +7077,8 @@ Run 94 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.36	  Real TOT = 0.41
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.29	  Real TOT = 0.36
  Summary of Run 94 :
 /run/geometryModified
 
@@ -7147,8 +7147,8 @@ Run 95 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.37	  Real TOT = 0.42
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.29	  Real TOT = 0.36
  Summary of Run 95 :
 /run/geometryModified
 
@@ -7217,8 +7217,8 @@ Run 96 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0.01s
-	  User TOT = 0.37	  Real TOT = 0.42
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.3	  Real TOT = 0.37
  Summary of Run 96 :
 /run/geometryModified
 
@@ -7288,7 +7288,7 @@ Run 97 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.38	  Real TOT = 0.42
+	  User TOT = 0.3	  Real TOT = 0.37
  Summary of Run 97 :
 /run/geometryModified
 
@@ -7357,8 +7357,8 @@ Run 98 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.38	  Real TOT = 0.42
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.31	  Real TOT = 0.38
  Summary of Run 98 :
 /run/geometryModified
 
@@ -7428,7 +7428,7 @@ Run 99 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.39	  Real TOT = 0.42
+	  User TOT = 0.31	  Real TOT = 0.38
  Summary of Run 99 :
 /run/geometryModified
 
@@ -7497,8 +7497,8 @@ Run 100 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.39	  Real TOT = 0.43
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.32	  Real TOT = 0.39
  Summary of Run 100 :
 /run/geometryModified
 
@@ -7568,7 +7568,7 @@ Run 101 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.39	  Real TOT = 0.43
+	  User TOT = 0.32	  Real TOT = 0.39
  Summary of Run 101 :
 /run/geometryModified
 
@@ -7637,8 +7637,8 @@ Run 102 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.39	  Real TOT = 0.44
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.33	  Real TOT = 0.39
  Summary of Run 102 :
 /run/geometryModified
 
@@ -7708,7 +7708,7 @@ Run 103 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.4	  Real TOT = 0.45
+	  User TOT = 0.33	  Real TOT = 0.39
  Summary of Run 103 :
 /run/geometryModified
 
@@ -7778,7 +7778,7 @@ Run 104 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.4	  Real TOT = 0.45
+	  User TOT = 0.33	  Real TOT = 0.39
  Summary of Run 104 :
 /run/geometryModified
 
@@ -7847,8 +7847,8 @@ Run 105 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.41	  Real TOT = 0.46
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.34	  Real TOT = 0.4
  Summary of Run 105 :
 /run/geometryModified
 
@@ -7918,7 +7918,7 @@ Run 106 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.41	  Real TOT = 0.46
+	  User TOT = 0.34	  Real TOT = 0.4
  Summary of Run 106 :
 /run/geometryModified
 
@@ -7987,8 +7987,8 @@ Run 107 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.41	  Real TOT = 0.47
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.35	  Real TOT = 0.41
  Summary of Run 107 :
 /run/geometryModified
 
@@ -8057,8 +8057,8 @@ Run 108 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.42	  Real TOT = 0.47
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.35	  Real TOT = 0.41
  Summary of Run 108 :
 /run/geometryModified
 
@@ -8127,8 +8127,8 @@ Run 109 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0.01s
-	  User TOT = 0.42	  Real TOT = 0.47
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.35	  Real TOT = 0.41
  Summary of Run 109 :
 /run/geometryModified
 
@@ -8197,8 +8197,8 @@ Run 110 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.43	  Real TOT = 0.48
+  User=0s Real=0s Sys=0.01s
+	  User TOT = 0.35	  Real TOT = 0.41
  Summary of Run 110 :
 /run/geometryModified
 
@@ -8268,7 +8268,7 @@ Run 111 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.43	  Real TOT = 0.48
+	  User TOT = 0.35	  Real TOT = 0.41
  Summary of Run 111 :
 /run/geometryModified
 
@@ -8337,8 +8337,8 @@ Run 112 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.43	  Real TOT = 0.48
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.35	  Real TOT = 0.42
  Summary of Run 112 :
 /run/geometryModified
 
@@ -8407,8 +8407,8 @@ Run 113 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.44	  Real TOT = 0.49
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.36	  Real TOT = 0.42
  Summary of Run 113 :
 /run/geometryModified
 
@@ -8477,8 +8477,8 @@ Run 114 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.44	  Real TOT = 0.49
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.36	  Real TOT = 0.43
  Summary of Run 114 :
 /run/geometryModified
 
@@ -8548,7 +8548,7 @@ Run 115 starts ...
 Run Summary
   Number of events processed : 10
   User=0.01s Real=0s Sys=0s
-	  User TOT = 0.45	  Real TOT = 0.49
+	  User TOT = 0.37	  Real TOT = 0.43
  Summary of Run 115 :
 /run/geometryModified
 
@@ -8617,8 +8617,8 @@ Run 116 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.45	  Real TOT = 0.5
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.37	  Real TOT = 0.43
  Summary of Run 116 :
 /run/geometryModified
 
@@ -8687,8 +8687,8 @@ Run 117 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.46	  Real TOT = 0.5
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.37	  Real TOT = 0.43
  Summary of Run 117 :
 /run/geometryModified
 
@@ -8757,8 +8757,8 @@ Run 118 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.46	  Real TOT = 0.51
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.37	  Real TOT = 0.43
  Summary of Run 118 :
 /run/geometryModified
 
@@ -8827,8 +8827,8 @@ Run 119 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.47	  Real TOT = 0.51
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.37	  Real TOT = 0.44
  Summary of Run 119 :
 /run/geometryModified
 
@@ -8897,8 +8897,8 @@ Run 120 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.47	  Real TOT = 0.51
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.38	  Real TOT = 0.44
  Summary of Run 120 :
 /run/geometryModified
 
@@ -8967,8 +8967,8 @@ Run 121 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.48	  Real TOT = 0.52
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.38	  Real TOT = 0.45
  Summary of Run 121 :
 /run/geometryModified
 
@@ -9038,7 +9038,7 @@ Run 122 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.48	  Real TOT = 0.52
+	  User TOT = 0.38	  Real TOT = 0.45
  Summary of Run 122 :
 /run/geometryModified
 
@@ -9107,8 +9107,8 @@ Run 123 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.49	  Real TOT = 0.53
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.38	  Real TOT = 0.45
  Summary of Run 123 :
 /run/geometryModified
 
@@ -9178,7 +9178,7 @@ Run 124 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.49	  Real TOT = 0.53
+	  User TOT = 0.38	  Real TOT = 0.45
  Summary of Run 124 :
 /run/geometryModified
 
@@ -9248,7 +9248,7 @@ Run 125 starts ...
 Run Summary
   Number of events processed : 10
   User=0.01s Real=0s Sys=0s
-	  User TOT = 0.5	  Real TOT = 0.53
+	  User TOT = 0.39	  Real TOT = 0.45
  Summary of Run 125 :
 /run/geometryModified
 
@@ -9318,7 +9318,7 @@ Run 126 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0.01s Sys=0s
-	  User TOT = 0.5	  Real TOT = 0.54
+	  User TOT = 0.39	  Real TOT = 0.46
  Summary of Run 126 :
 /run/geometryModified
 
@@ -9387,8 +9387,8 @@ Run 127 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.51	  Real TOT = 0.54
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.39	  Real TOT = 0.46
  Summary of Run 127 :
 /run/geometryModified
 
@@ -9457,8 +9457,8 @@ Run 128 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0.01s
-	  User TOT = 0.51	  Real TOT = 0.54
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.4	  Real TOT = 0.47
  Summary of Run 128 :
 /run/geometryModified
 
@@ -9527,8 +9527,8 @@ Run 129 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.51	  Real TOT = 0.55
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.4	  Real TOT = 0.47
  Summary of Run 129 :
 /run/geometryModified
 
@@ -9597,8 +9597,8 @@ Run 130 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.51	  Real TOT = 0.55
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.41	  Real TOT = 0.48
  Summary of Run 130 :
 /run/geometryModified
 
@@ -9668,7 +9668,7 @@ Run 131 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.51	  Real TOT = 0.56
+	  User TOT = 0.41	  Real TOT = 0.48
  Summary of Run 131 :
 /run/geometryModified
 
@@ -9738,7 +9738,7 @@ Run 132 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.51	  Real TOT = 0.56
+	  User TOT = 0.41	  Real TOT = 0.48
  Summary of Run 132 :
 /run/geometryModified
 
@@ -9808,7 +9808,7 @@ Run 133 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.51	  Real TOT = 0.56
+	  User TOT = 0.41	  Real TOT = 0.48
  Summary of Run 133 :
 /run/geometryModified
 
@@ -9877,8 +9877,8 @@ Run 134 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.52	  Real TOT = 0.57
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.41	  Real TOT = 0.48
  Summary of Run 134 :
 /run/geometryModified
 
@@ -9947,8 +9947,8 @@ Run 135 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.52	  Real TOT = 0.57
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.42	  Real TOT = 0.48
  Summary of Run 135 :
 /run/geometryModified
 
@@ -10017,8 +10017,8 @@ Run 136 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.53	  Real TOT = 0.57
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.42	  Real TOT = 0.48
  Summary of Run 136 :
 /run/geometryModified
 
@@ -10088,7 +10088,7 @@ Run 137 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0.01s Sys=0s
-	  User TOT = 0.53	  Real TOT = 0.58
+	  User TOT = 0.42	  Real TOT = 0.49
  Summary of Run 137 :
 /run/geometryModified
 
@@ -10157,8 +10157,8 @@ Run 138 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.54	  Real TOT = 0.58
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.42	  Real TOT = 0.49
  Summary of Run 138 :
 /run/geometryModified
 
@@ -10227,8 +10227,8 @@ Run 139 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.54	  Real TOT = 0.58
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.42	  Real TOT = 0.5
  Summary of Run 139 :
 /run/geometryModified
 
@@ -10298,7 +10298,7 @@ Run 140 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.54	  Real TOT = 0.58
+	  User TOT = 0.42	  Real TOT = 0.5
  Summary of Run 140 :
 /run/geometryModified
 
@@ -10367,8 +10367,8 @@ Run 141 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.54	  Real TOT = 0.58
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.43	  Real TOT = 0.51
  Summary of Run 141 :
 /run/geometryModified
 
@@ -10437,8 +10437,8 @@ Run 142 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0.01s
-	  User TOT = 0.54	  Real TOT = 0.59
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.43	  Real TOT = 0.51
  Summary of Run 142 :
 /run/geometryModified
 
@@ -10507,8 +10507,8 @@ Run 143 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.55	  Real TOT = 0.59
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.44	  Real TOT = 0.51
  Summary of Run 143 :
 /run/geometryModified
 
@@ -10578,7 +10578,7 @@ Run 144 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.55	  Real TOT = 0.59
+	  User TOT = 0.44	  Real TOT = 0.51
  Summary of Run 144 :
 /run/geometryModified
 
@@ -10647,8 +10647,8 @@ Run 145 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.56	  Real TOT = 0.6
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.44	  Real TOT = 0.51
  Summary of Run 145 :
 /run/geometryModified
 
@@ -10718,7 +10718,7 @@ Run 146 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.56	  Real TOT = 0.6
+	  User TOT = 0.44	  Real TOT = 0.51
  Summary of Run 146 :
 /run/geometryModified
 
@@ -10787,8 +10787,8 @@ Run 147 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.6
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.44	  Real TOT = 0.51
  Summary of Run 147 :
 /run/geometryModified
 
@@ -10857,8 +10857,8 @@ Run 148 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.6
+  User=0s Real=0.01s Sys=0.01s
+	  User TOT = 0.44	  Real TOT = 0.52
  Summary of Run 148 :
 /run/geometryModified
 
@@ -10928,7 +10928,7 @@ Run 149 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.6
+	  User TOT = 0.44	  Real TOT = 0.52
  Summary of Run 149 :
 /run/geometryModified
 
@@ -10997,8 +10997,8 @@ Run 150 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0.01s
-	  User TOT = 0.57	  Real TOT = 0.61
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.44	  Real TOT = 0.52
  Summary of Run 150 :
 /run/geometryModified
 
@@ -11067,8 +11067,8 @@ Run 151 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.61
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.44	  Real TOT = 0.53
  Summary of Run 151 :
 /run/geometryModified
 
@@ -11137,8 +11137,8 @@ Run 152 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.62
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.44	  Real TOT = 0.53
  Summary of Run 152 :
 /run/geometryModified
 
@@ -11207,8 +11207,8 @@ Run 153 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.62
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.44	  Real TOT = 0.54
  Summary of Run 153 :
 /run/geometryModified
 
@@ -11278,7 +11278,7 @@ Run 154 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.62
+	  User TOT = 0.44	  Real TOT = 0.54
  Summary of Run 154 :
 /run/geometryModified
 
@@ -11347,8 +11347,8 @@ Run 155 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.62
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.45	  Real TOT = 0.54
  Summary of Run 155 :
 /run/geometryModified
 
@@ -11417,8 +11417,8 @@ Run 156 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.63
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.45	  Real TOT = 0.54
  Summary of Run 156 :
 /run/geometryModified
 
@@ -11488,7 +11488,7 @@ Run 157 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.63
+	  User TOT = 0.45	  Real TOT = 0.54
  Summary of Run 157 :
 /run/geometryModified
 
@@ -11557,8 +11557,8 @@ Run 158 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.64
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.46	  Real TOT = 0.55
  Summary of Run 158 :
 /run/geometryModified
 
@@ -11628,7 +11628,7 @@ Run 159 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.64
+	  User TOT = 0.46	  Real TOT = 0.55
  Summary of Run 159 :
 /run/geometryModified
 
@@ -11697,8 +11697,8 @@ Run 160 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.64
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.47	  Real TOT = 0.55
  Summary of Run 160 :
 /run/geometryModified
 
@@ -11768,7 +11768,7 @@ Run 161 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.57	  Real TOT = 0.64
+	  User TOT = 0.47	  Real TOT = 0.55
  Summary of Run 161 :
 /run/geometryModified
 
@@ -11837,8 +11837,8 @@ Run 162 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.58	  Real TOT = 0.65
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.47	  Real TOT = 0.55
  Summary of Run 162 :
 /run/geometryModified
 
@@ -11907,8 +11907,8 @@ Run 163 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.58	  Real TOT = 0.65
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.48	  Real TOT = 0.56
  Summary of Run 163 :
 /run/geometryModified
 
@@ -11977,8 +11977,8 @@ Run 164 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.59	  Real TOT = 0.65
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.48	  Real TOT = 0.56
  Summary of Run 164 :
 /run/geometryModified
 
@@ -12047,8 +12047,8 @@ Run 165 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.59	  Real TOT = 0.66
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.48	  Real TOT = 0.56
  Summary of Run 165 :
 /run/geometryModified
 
@@ -12117,8 +12117,8 @@ Run 166 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0.01s
-	  User TOT = 0.6	  Real TOT = 0.66
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.49	  Real TOT = 0.56
  Summary of Run 166 :
 /run/geometryModified
 
@@ -12187,8 +12187,8 @@ Run 167 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.6	  Real TOT = 0.67
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.49	  Real TOT = 0.56
  Summary of Run 167 :
 /run/geometryModified
 
@@ -12258,7 +12258,7 @@ Run 168 starts ...
 Run Summary
   Number of events processed : 10
   User=0.01s Real=0s Sys=0s
-	  User TOT = 0.61	  Real TOT = 0.67
+	  User TOT = 0.5	  Real TOT = 0.56
  Summary of Run 168 :
 /run/geometryModified
 
@@ -12328,7 +12328,7 @@ Run 169 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.61	  Real TOT = 0.67
+	  User TOT = 0.5	  Real TOT = 0.56
  Summary of Run 169 :
 /run/geometryModified
 
@@ -12397,8 +12397,8 @@ Run 170 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.62	  Real TOT = 0.68
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.5	  Real TOT = 0.57
  Summary of Run 170 :
 /run/geometryModified
 
@@ -12467,8 +12467,8 @@ Run 171 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.62	  Real TOT = 0.68
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.51	  Real TOT = 0.57
  Summary of Run 171 :
 /run/geometryModified
 
@@ -12537,8 +12537,8 @@ Run 172 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.62	  Real TOT = 0.69
+  User=0s Real=0s Sys=0.01s
+	  User TOT = 0.51	  Real TOT = 0.57
  Summary of Run 172 :
 /run/geometryModified
 
@@ -12608,7 +12608,7 @@ Run 173 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.62	  Real TOT = 0.69
+	  User TOT = 0.51	  Real TOT = 0.57
  Summary of Run 173 :
 /run/geometryModified
 
@@ -12677,8 +12677,8 @@ Run 174 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.62	  Real TOT = 0.69
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.52	  Real TOT = 0.57
  Summary of Run 174 :
 /run/geometryModified
 
@@ -12747,8 +12747,8 @@ Run 175 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.63	  Real TOT = 0.7
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.52	  Real TOT = 0.58
  Summary of Run 175 :
 /run/geometryModified
 
@@ -12818,7 +12818,7 @@ Run 176 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.63	  Real TOT = 0.7
+	  User TOT = 0.53	  Real TOT = 0.58
  Summary of Run 176 :
 /run/geometryModified
 
@@ -12887,8 +12887,8 @@ Run 177 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.63	  Real TOT = 0.71
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.53	  Real TOT = 0.58
  Summary of Run 177 :
 /run/geometryModified
 
@@ -12957,8 +12957,8 @@ Run 178 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.64	  Real TOT = 0.72
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.53	  Real TOT = 0.58
  Summary of Run 178 :
 /run/geometryModified
 
@@ -13028,7 +13028,7 @@ Run 179 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.64	  Real TOT = 0.72
+	  User TOT = 0.54	  Real TOT = 0.58
  Summary of Run 179 :
 /run/geometryModified
 
@@ -13097,8 +13097,8 @@ Run 180 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.65	  Real TOT = 0.73
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.54	  Real TOT = 0.59
  Summary of Run 180 :
 /run/geometryModified
 
@@ -13168,7 +13168,7 @@ Run 181 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.65	  Real TOT = 0.73
+	  User TOT = 0.54	  Real TOT = 0.59
  Summary of Run 181 :
 /run/geometryModified
 
@@ -13237,8 +13237,8 @@ Run 182 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.66	  Real TOT = 0.73
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.54	  Real TOT = 0.59
  Summary of Run 182 :
 /run/geometryModified
 
@@ -13307,8 +13307,8 @@ Run 183 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.66	  Real TOT = 0.74
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.55	  Real TOT = 0.6
  Summary of Run 183 :
 /run/geometryModified
 
@@ -13378,7 +13378,7 @@ Run 184 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.66	  Real TOT = 0.74
+	  User TOT = 0.55	  Real TOT = 0.6
  Summary of Run 184 :
 /run/geometryModified
 
@@ -13447,8 +13447,8 @@ Run 185 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.66	  Real TOT = 0.74
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.56	  Real TOT = 0.61
  Summary of Run 185 :
 /run/geometryModified
 
@@ -13517,8 +13517,8 @@ Run 186 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.67	  Real TOT = 0.74
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.56	  Real TOT = 0.61
  Summary of Run 186 :
 /run/geometryModified
 
@@ -13588,7 +13588,7 @@ Run 187 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.67	  Real TOT = 0.74
+	  User TOT = 0.56	  Real TOT = 0.61
  Summary of Run 187 :
 /run/geometryModified
 
@@ -13657,8 +13657,8 @@ Run 188 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.68	  Real TOT = 0.75
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.57	  Real TOT = 0.61
  Summary of Run 188 :
 /run/geometryModified
 
@@ -13728,7 +13728,7 @@ Run 189 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.68	  Real TOT = 0.75
+	  User TOT = 0.57	  Real TOT = 0.61
  Summary of Run 189 :
 /run/geometryModified
 
@@ -13797,8 +13797,8 @@ Run 190 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.69	  Real TOT = 0.76
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.58	  Real TOT = 0.61
  Summary of Run 190 :
 /run/geometryModified
 
@@ -13868,7 +13868,7 @@ Run 191 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.69	  Real TOT = 0.76
+	  User TOT = 0.58	  Real TOT = 0.61
  Summary of Run 191 :
 /run/geometryModified
 
@@ -13937,8 +13937,8 @@ Run 192 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.69	  Real TOT = 0.76
+  User=0.01s Real=0.01s Sys=0s
+	  User TOT = 0.59	  Real TOT = 0.62
  Summary of Run 192 :
 /run/geometryModified
 
@@ -14007,8 +14007,8 @@ Run 193 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0.01s Sys=0s
-	  User TOT = 0.69	  Real TOT = 0.77
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.59	  Real TOT = 0.62
  Summary of Run 193 :
 /run/geometryModified
 
@@ -14077,8 +14077,8 @@ Run 194 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0s Sys=0s
-	  User TOT = 0.7	  Real TOT = 0.77
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.59	  Real TOT = 0.63
  Summary of Run 194 :
 /run/geometryModified
 
@@ -14148,7 +14148,7 @@ Run 195 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.7	  Real TOT = 0.77
+	  User TOT = 0.59	  Real TOT = 0.63
  Summary of Run 195 :
 /run/geometryModified
 
@@ -14217,8 +14217,8 @@ Run 196 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.71	  Real TOT = 0.78
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.59	  Real TOT = 0.63
  Summary of Run 196 :
 /run/geometryModified
 
@@ -14287,8 +14287,8 @@ Run 197 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.72	  Real TOT = 0.79
+  User=0s Real=0s Sys=0s
+	  User TOT = 0.59	  Real TOT = 0.63
  Summary of Run 197 :
 /run/geometryModified
 
@@ -14358,7 +14358,7 @@ Run 198 starts ...
 Run Summary
   Number of events processed : 10
   User=0s Real=0s Sys=0s
-	  User TOT = 0.72	  Real TOT = 0.79
+	  User TOT = 0.59	  Real TOT = 0.63
  Summary of Run 198 :
 /run/geometryModified
 
@@ -14427,8 +14427,8 @@ Run 199 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.01s Real=0.01s Sys=0s
-	  User TOT = 0.73	  Real TOT = 0.8
+  User=0s Real=0.01s Sys=0s
+	  User TOT = 0.59	  Real TOT = 0.64
  Summary of Run 199 :
 /run/geometryModified
 
@@ -14497,8 +14497,8 @@ Run 200 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0s Real=0s Sys=0s
-	  User TOT = 0.73	  Real TOT = 0.8
+  User=0.01s Real=0s Sys=0s
+	  User TOT = 0.6	  Real TOT = 0.64
  Summary of Run 200 :
 /score/dumpQuantityToFile boxMesh_1 eDep eDep_scorer.out
 Graphics systems deleted.
@@ -14506,6 +14506,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.043 Mb
+Dynamic pools deleted: 11 / Total memory freed: 0.041 Mb
 ============================================================
 RunManagerKernel is deleted. Good bye :)
diff --git a/examples/advanced/gammaray_telescope/gammaraytel.out b/examples/advanced/gammaray_telescope/gammaraytel.out
index 776d5a681b4..74819e7c503 100644
--- a/examples/advanced/gammaray_telescope/gammaraytel.out
+++ b/examples/advanced/gammaray_telescope/gammaraytel.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -923,1605 +923,1401 @@ Number of tracker hits in this event =  11
       0 136.977 896 0 0 -0.823811 -0.742527 -205.85 
 Number of digits in this event =  11
 Event: 1
-Number of tracker hits in this event =  34
-      1 125.965 899 4 1 -0.17956 -0.118742 -84.45 
-      1 113.221 899 4 0 -0.183605 -0.130229 -85.85 
-      1 132.891 898 3 1 -0.26664 -0.34646 -114.45 
-      1 131.208 898 3 0 -0.272185 -0.356316 -115.85 
-      1 121.042 898 2 1 -0.380627 -0.545975 -144.45 
-      1 304.73 897 2 0 -0.388982 -0.555482 -145.85 
-      1 122.962 897 1 1 -0.564457 -0.717231 -174.45 
-      1 193.361 896 1 0 -0.572237 -0.718721 -175.85 
-      1 121.677 896 0 1 -0.748425 -0.750653 -204.45 
-      1 132.114 896 0 0 -0.759876 -0.755979 -205.85 
-      1 7.64894 377 1 0 0.470602 -104.55 -176.226 
-      1 1.93089 43 11 1 -171.443 91.9181 125.15 
-      1 314.099 581 1 1 -63.7611 -58.6895 -174.575 
-      1 10.8834 580 1 1 -63.85 -58.8197 -174.574 
-      1 4.88476 989 0 0 31.3108 18.0384 -206.25 
-      1 203.345 990 0 0 31.3256 18.05 -206.226 
-      1 69.4509 1062 0 1 32.5254 18.4268 -204.85 
-      1 76.0832 1063 0 1 32.65 18.4551 -204.723 
-      1 60.2178 1064 0 1 32.85 18.5168 -204.529 
-      1 101.777 1065 0 1 33.05 18.4748 -204.519 
-      1 95.3087 1066 0 1 33.25 18.2895 -204.696 
-      1 86.975 1067 0 1 33.45 18.1611 -204.821 
-      1 57.0338 987 0 0 34.6614 17.4655 -205.85 
-      1 139.749 986 0 0 34.6885 17.45 -205.873 
-      1 56.3851 985 0 0 35.0233 17.25 -206.125 
-      1 21.9543 970 1 0 -32.3067 14.1943 -176.25 
-      1 374.98 971 1 0 -32.3192 14.25 -176.175 
-      1 101.152 972 1 0 -32.2246 14.45 -175.974 
-      1 64.1138 973 1 0 -32.3859 14.65 -175.978 
-      1 120.321 974 1 0 -32.4461 14.85 -175.965 
-      1 198.076 975 1 0 -32.6479 15.05 -176.004 
-      1 244.526 976 1 0 -32.8374 15.25 -175.944 
-      1 35.657 968 1 0 -7.8821 13.7709 -175.964 
-      1 127.39 860 1 1 -7.8529 13.725 -174.85 
-Number of digits in this event =  21
+Number of tracker hits in this event =  24
+      1 105.95 900 5 1 0.116381 -0.12011 -54.45 
+      1 218.934 899 5 0 0.117615 -0.121327 -55.85 
+      1 130.046 900 4 1 0.149087 -0.138499 -84.45 
+      1 134.58 899 4 0 0.151212 -0.141642 -85.85 
+      1 172.132 900 3 1 0.177279 -0.184821 -114.45 
+      1 155.725 899 3 0 0.174918 -0.190408 -115.85 
+      1 152.599 900 2 1 0.131145 -0.329658 -144.45 
+      1 29796.4 898 2 0 0.133532 -0.335775 -145.85 
+      1 6529.44 897 2 0 0.138622 -0.45 -146.154 
+      1 285.159 899 2 0 0.483221 -0.25 -145.866 
+      1 1521.97 909 2 1 1.94507 0.131801 -144.85 
+      1 4230.74 910 2 1 2.05 0.159217 -144.777 
+      1 1567.48 911 2 1 2.25 0.209096 -144.647 
+      1 0.0882046 839 1 1 -12.2496 6.50156 -174.45 
+      1 136.693 838 1 1 -12.25 6.50176 -174.451 
+      1 8.65484 933 1 0 -12.8659 6.84346 -175.85 
+      1 175.704 934 1 0 -12.8777 6.85 -175.877 
+      1 42.9445 773 0 1 -25.4098 13.761 -204.45 
+      1 114.404 772 0 1 -25.45 13.7833 -204.542 
+      1 225.594 970 0 0 -26.0186 14.0967 -205.85 
+      1 1.29491 276 4 1 -124.943 9.6403 -84.85 
+      1 112.638 582 7 1 -63.5549 -58.0968 5.4299 
+      1 142.528 83 4 1 -163.503 31.9051 -84.6944 
+      1 119.415 846 2 0 7.35257 -10.6817 -146.245 
+Number of digits in this event =  18
 Event: 2
 Number of tracker hits in this event =  10
-      2 146.263 899 5 1 -0.0665873 -0.0686901 -54.45 
-      2 123.087 899 5 0 -0.0651692 -0.0668624 -55.85 
-      2 178.366 899 3 1 -0.0983843 0.0763503 -114.45 
-      2 167.665 900 3 0 -0.103326 0.0815964 -115.85 
-      2 174.676 899 2 1 -0.209871 0.200479 -144.45 
-      2 133.772 900 2 0 -0.217637 0.204686 -145.85 
-      2 204.837 898 1 1 -0.386674 0.278831 -174.45 
-      2 277.105 901 1 0 -0.38795 0.280131 -175.85 
-      2 129.406 898 0 1 -0.40155 0.311391 -204.45 
-      2 353.791 901 0 0 -0.399803 0.304675 -205.85 
-Number of digits in this event =  13
+      2 95.3484 899 3 1 -0.189651 -0.0527025 -114.45 
+      2 137.889 898 2 1 -0.275417 0.266081 -144.45 
+      2 133.592 901 2 0 -0.282129 0.285481 -145.85 
+      2 276.854 898 1 1 -0.426248 0.670101 -174.45 
+      2 168.189 903 1 0 -0.437276 0.689676 -175.85 
+      2 113.356 896 0 1 -0.665867 1.07836 -204.45 
+      2 123.693 905 0 0 -0.679567 1.09583 -205.85 
+      2 120.446 899 1 1 -0.25 0.6166 -174.692 
+      2 147.623 898 1 0 -0.484057 -0.252338 -175.85 
+      2 19.6573 1406 3 1 101.456 -11.1701 -114.515 
+Number of digits in this event =  10
 Event: 3
-Number of tracker hits in this event =  12
-      3 451.898 900 5 1 0.0688181 0.146937 -54.45 
-      3 127.944 900 5 0 0.0738176 0.156729 -55.85 
-      3 131.457 900 4 1 0.186149 0.34043 -84.45 
-      3 123.86 901 4 0 0.1921 0.350478 -85.85 
-      3 221.707 901 3 1 0.288662 0.546612 -114.45 
-      3 183.352 902 3 0 0.298158 0.555709 -115.85 
-      3 111.821 902 2 1 0.468466 0.731846 -144.45 
-      3 180.677 903 2 0 0.482166 0.744183 -145.85 
-      3 171.752 903 1 1 0.753831 0.986996 -174.45 
-      3 130.635 904 1 0 0.76498 0.996349 -175.85 
-      3 146.846 904 0 1 0.969393 1.13945 -204.45 
-      3 127.78 905 0 0 0.976944 1.14504 -205.85 
-Number of digits in this event =  12
+Number of tracker hits in this event =  4
+      3 126.431 900 2 1 0.0509953 -0.127222 -144.45 
+      3 361.881 899 2 0 0.0512906 -0.125322 -145.85 
+      3 125.9 900 1 1 0.0515572 -0.0891019 -174.45 
+      3 104.312 899 1 0 0.050242 -0.0811041 -175.85 
+Number of digits in this event =  4
 Event: 4
-Number of tracker hits in this event =  22
-      4 134.4 899 5 1 -0.151216 0.140143 -54.45 
-      4 152.619 900 5 0 -0.158246 0.14676 -55.85 
-      4 199.425 898 4 1 -0.292975 0.280828 -84.45 
-      4 118.739 901 4 0 -0.301618 0.287897 -85.85 
-      4 137.539 897 3 1 -0.477796 0.424121 -114.45 
-      4 172.138 901 3 0 -0.484104 0.428515 -115.85 
-      4 161.761 897 2 1 -0.611187 0.537147 -144.45 
-      4 267.71 902 2 0 -0.618428 0.545244 -145.85 
-      4 134.167 896 1 1 -0.761738 0.731205 -174.45 
-      4 192.495 903 1 0 -0.767928 0.740563 -175.85 
-      4 137.33 895 0 1 -0.910194 0.97678 -204.45 
-      4 122.866 904 0 0 -0.913567 0.986961 -205.85 
-      4 386.906 592 3 0 -38.7879 -61.6039 -116.25 
-      4 340.309 591 3 0 -38.865 -61.65 -116.208 
-      4 198.72 593 3 0 -40.2854 -61.45 -116.077 
-      4 351.07 1118 4 0 -144.904 43.6972 -86.25 
-      4 17.5288 170 4 1 -146.112 44.1433 -84.85 
-      4 100.389 169 4 1 -146.15 44.1572 -84.8053 
-      4 141.299 168 4 1 -146.35 44.231 -84.5629 
-      4 181.887 1155 5 0 -168.904 51.1328 -56.25 
-      4 64.8286 50 5 1 -170.007 51.4505 -54.85 
-      4 75.7864 49 5 1 -170.15 51.4908 -54.6674 
-Number of digits in this event =  19
+Number of tracker hits in this event =  6
+      4 216.377 899 1 1 -0.183087 0.134054 -174.45 
+      4 144.35 900 1 0 -0.19098 0.139707 -175.85 
+      4 118.896 898 0 1 -0.327114 0.270877 -204.45 
+      4 123.201 901 0 0 -0.330871 0.277366 -205.85 
+      4 93.7671 901 1 0 -0.169566 0.25 -176.139 
+      4 132.946 126 1 0 -91.4209 -154.818 -176.25 
+Number of digits in this event =  5
 Event: 5
-Number of tracker hits in this event =  12
-      5 187.648 900 4 1 0.115152 -0.270242 -84.45 
-      5 122.042 898 4 0 0.121512 -0.278323 -85.85 
-      5 156.377 900 3 1 0.245324 -0.437567 -114.45 
-      5 108.945 898 3 0 0.248584 -0.447471 -115.85 
-      5 12.9492 897 3 0 0.24934 -0.45 -116.204 
-      5 127.327 901 2 1 0.300788 -0.650806 -144.45 
-      5 132.638 896 2 0 0.305533 -0.660948 -145.85 
-      5 136.245 901 1 1 0.423001 -0.871005 -174.45 
-      5 112.99 895 1 0 0.42822 -0.883224 -175.85 
-      5 125.455 902 0 1 0.536384 -1.13673 -204.45 
-      5 189.778 894 0 0 0.540648 -1.15148 -205.85 
-      5 1.25517 664 1 1 -47.05 -101.278 -174.75 
-Number of digits in this event =  11
-Event: 6
 Number of tracker hits in this event =  10
-      6 134.773 901 4 1 0.338159 0.181487 -84.45 
-      6 295.827 900 4 0 0.351364 0.192587 -85.85 
-      6 139.052 902 3 1 0.625414 0.417952 -114.45 
-      6 167.869 901 3 0 0.643749 0.427378 -115.85 
-      6 116.329 904 2 1 1.03194 0.614785 -144.45 
-      6 151.095 902 2 0 1.05528 0.632023 -145.85 
-      6 142.714 907 1 1 1.52407 0.972212 -174.45 
-      6 206.077 904 1 0 1.54367 0.989921 -175.85 
-      6 128.398 909 0 1 1.94964 1.33143 -204.45 
-      6 139.346 906 0 0 1.975 1.34686 -205.85 
-Number of digits in this event =  10
+      5 189.246 899 4 1 -0.135785 0.134048 -84.45 
+      5 117.707 900 4 0 -0.141313 0.143274 -85.85 
+      5 175.914 898 3 1 -0.278398 0.34166 -114.45 
+      5 118.06 901 3 0 -0.287906 0.350848 -115.85 
+      5 154.684 897 2 1 -0.476031 0.531201 -144.45 
+      5 138.045 902 2 0 -0.479601 0.538769 -145.85 
+      5 178.834 897 1 1 -0.54811 0.689066 -174.45 
+      5 121.068 903 1 0 -0.554522 0.700701 -175.85 
+      5 134.852 896 0 1 -0.671189 0.953867 -204.45 
+      5 193.543 904 0 0 -0.674648 0.964646 -205.85 
+Number of digits in this event =  9
+Event: 6
+Number of tracker hits in this event =  9
+      6 122.965 900 4 1 0.100203 0.119919 -84.45 
+      6 227.636 900 4 0 0.10991 0.12239 -85.85 
+      6 152.177 901 3 1 0.345793 0.181552 -114.45 
+      6 134.979 900 3 0 0.353583 0.184651 -115.85 
+      6 122.463 902 2 1 0.497983 0.233368 -144.45 
+      6 115.141 900 2 0 0.502104 0.235551 -145.85 
+      6 8566.08 902 1 1 0.569911 0.286854 -174.45 
+      6 2257.38 903 1 1 0.65 0.174575 -174.64 
+      6 3631.77 894 1 0 1.79718 -1.05634 -175.85 
+Number of digits in this event =  9
 Event: 7
-Number of tracker hits in this event =  4
-      7 137.589 899 3 1 -0.147089 -0.104784 -114.45 
-      7 483.149 899 3 0 -0.152716 -0.103681 -115.85 
-      7 142.484 898 2 1 -0.291677 -0.0887251 -144.45 
-      7 158.168 899 2 0 -0.301173 -0.0855929 -145.85 
-Number of digits in this event =  7
+Number of tracker hits in this event =  5
+      7 13.1564 901 2 0 0.05 0.288895 -146.208 
+      7 108.309 900 1 1 0.0866017 0.534273 -174.45 
+      7 144.351 902 1 0 0.0938477 0.552717 -175.85 
+      7 261.729 901 0 1 0.258955 0.926385 -204.45 
+      7 113.981 904 0 0 0.258587 0.947746 -205.85 
+Number of digits in this event =  3
 Event: 8
 Number of tracker hits in this event =  10
-      8 116.951 900 4 1 0.206983 0.223354 -84.45 
-      8 123.911 900 4 0 0.223077 0.229748 -85.85 
-      8 180.108 902 3 1 0.566803 0.400376 -114.45 
-      8 139.313 901 3 0 0.577895 0.411625 -115.85 
-      8 148.142 903 2 1 0.787001 0.613974 -144.45 
-      8 378.89 902 2 0 0.795306 0.629422 -145.85 
-      8 125.957 904 1 1 0.967133 0.963982 -174.45 
-      8 182.932 904 1 0 0.984143 0.974909 -175.85 
-      8 105.898 906 0 1 1.32002 1.19988 -204.45 
-      8 119.259 905 0 0 1.33805 1.21078 -205.85 
+      8 148.679 900 4 1 0.0769041 -0.0615211 -84.45 
+      8 185.867 899 4 0 0.0790444 -0.0601773 -85.85 
+      8 135.893 901 1 1 0.279282 -0.116477 -174.45 
+      8 149.838 899 1 0 0.278518 -0.124955 -175.85 
+      8 167.487 900 0 1 0.236779 -0.308027 -204.45 
+      8 146.351 898 0 0 0.237956 -0.315143 -205.85 
+      8 92.3809 899 2 0 0.295862 -0.05 -145.921 
+      8 143.404 898 2 0 0.21276 -0.25 -145.984 
+      8 16.9419 897 2 0 0.0763534 -0.45 -145.989 
+      8 51.1064 907 2 1 1.51044 -0.408304 -144.85 
 Number of digits in this event =  8
 Event: 9
-Number of tracker hits in this event =  6
-      9 130.541 900 2 1 0.157741 0.487714 -144.45 
-      9 178.848 902 2 0 0.163269 0.494571 -145.85 
-      9 144.935 901 1 1 0.264474 0.639472 -174.45 
-      9 131.164 902 1 0 0.275554 0.637469 -175.85 
-      9 129.334 902 0 1 0.492034 0.578168 -204.45 
-      9 129.683 902 0 0 0.500031 0.578288 -205.85 
-Number of digits in this event =  8
+Number of tracker hits in this event =  2
+      9 147.954 895 0 1 -0.899334 -0.0530919 -204.45 
+      9 123.179 899 0 0 -0.914804 -0.0578166 -205.85 
+Number of digits in this event =  5
 Event: 10
-Number of tracker hits in this event =  7
-     10 26.966 906 4 0 -1.30531 1.39053 -85.85 
-     10 168.92 907 4 0 -1.34266 1.45 -85.893 
-     10 55.8058 474 4 0 -89.7628 -85.1236 -86.25 
-     10 50.3702 120 4 0 -139.848 -156.078 -86.25 
-     10 101.735 119 4 0 -139.872 -156.15 -86.1799 
-     10 182.901 118 4 0 -139.964 -156.35 -86.1204 
-     10 78.8235 117 4 0 -140.122 -156.55 -86.067 
-Number of digits in this event =  3
+Number of tracker hits in this event =  59
+     10 118.696 899 5 1 -0.0931826 0.0668306 -54.45 
+     10 151.107 900 5 0 -0.101517 0.068862 -55.85 
+     10 14623.7 1252 5 0 -6.67768 70.4752 -56.25 
+     10 367.309 898 4 1 -0.40182 -0.05 -84.6061 
+     10 330.778 897 4 1 -0.45 -0.106002 -84.7576 
+     10 464.976 897 4 0 -0.799716 -0.508843 -85.85 
+     10 95.4404 896 4 0 -0.922329 -0.65 -86.2327 
+     10 343.019 849 3 1 -10.146 -11.2733 -114.45 
+     10 97.7792 848 3 1 -10.25 -11.3998 -114.767 
+     10 67.822 841 3 0 -10.6082 -11.8391 -115.85 
+     10 465.597 840 3 0 -10.6171 -11.85 -115.877 
+     10 489.963 799 2 1 -20.0617 -23.3926 -144.45 
+     10 195.487 780 2 0 -20.5428 -23.971 -145.85 
+     10 299.53 779 2 0 -20.6089 -24.05 -146.042 
+     10 365.044 748 1 1 -30.3481 -35.8674 -174.45 
+     10 142.061 747 1 1 -30.45 -35.9901 -174.749 
+     10 3.77964 718 1 0 -30.8242 -36.4482 -175.85 
+     10 600.522 717 1 0 -30.8256 -36.45 -175.854 
+     10 203.806 697 0 1 -40.6022 -48.2821 -204.45 
+     10 286.367 696 0 1 -40.65 -48.3455 -204.595 
+     10 434.55 655 0 0 -41.0616 -48.901 -205.85 
+     10 93.2545 654 0 0 -41.172 -49.05 -206.186 
+     10 45.4789 899 4 1 -0.100314 0.148811 -84.45 
+     10 59.4362 900 4 1 0.05 0.187842 -84.7289 
+     10 261.137 901 4 0 0.656276 0.341184 -85.85 
+     10 130.358 980 3 1 16.1121 4.25526 -114.45 
+     10 110.963 981 3 1 16.25 4.29136 -114.706 
+     10 237.899 922 3 0 16.8675 4.45254 -115.85 
+     10 143.597 1061 2 1 32.3315 8.42514 -144.45 
+     10 107.97 1062 2 1 32.45 8.45574 -144.675 
+     10 148.961 942 2 0 33.0707 8.61348 -145.85 
+     10 129.316 943 2 0 33.2145 8.65 -146.122 
+     10 1.62686 1140 1 1 48.249 12.4436 -174.45 
+     10 262.304 1141 1 1 48.25 12.4438 -174.452 
+     10 5.59213 1142 1 1 48.45 12.4939 -174.838 
+     10 136.568 962 1 0 48.9763 12.6247 -175.85 
+     10 104.393 963 1 0 49.0783 12.65 -176.046 
+     10 6.56087 1218 0 1 63.8438 16.3308 -204.45 
+     10 298.739 1219 0 1 63.85 16.3323 -204.462 
+     10 0.117218 1220 0 1 64.05 16.3815 -204.849 
+     10 264.099 982 0 0 64.5667 16.5109 -205.85 
+     10 232.514 895 4 0 -1.25981 -0.85 -85.9534 
+     10 88.1778 814 3 1 -17.1617 -16.0855 -114.45 
+     10 165.701 813 3 1 -17.25 -16.1688 -114.608 
+     10 23.0603 816 3 0 -17.9472 -16.8226 -115.85 
+     10 255.627 815 3 0 -17.9765 -16.85 -115.902 
+     10 18.1656 730 2 1 -34.0346 -31.9816 -144.45 
+     10 289.216 729 2 1 -34.05 -31.9961 -144.478 
+     10 3.23028 728 2 1 -34.25 -32.186 -144.838 
+     10 171.899 736 2 0 -34.8111 -32.7204 -145.85 
+     10 85.1414 735 2 0 -34.9471 -32.85 -146.095 
+     10 113.596 647 1 1 -50.5484 -47.8684 -174.45 
+     10 160.876 646 1 1 -50.65 -47.9649 -174.638 
+     10 66.3855 657 1 0 -51.3051 -48.5878 -175.85 
+     10 159.168 656 1 0 -51.3706 -48.65 -175.971 
+     10 56.5296 566 0 1 -66.7923 -63.2511 -204.45 
+     10 191.959 565 0 1 -66.85 -63.3062 -204.555 
+     10 71.1676 580 0 0 -67.5605 -63.9845 -205.85 
+     10 205.124 579 0 0 -67.6292 -64.05 -205.975 
+Number of digits in this event =  38
 Event: 11
-Number of tracker hits in this event =  6
-     11 227.296 899 3 1 -0.22986 -0.0816424 -114.45 
-     11 608.606 899 3 0 -0.227873 -0.0842564 -115.85 
-     11 125.232 899 2 1 -0.181526 -0.136429 -144.45 
-     11 152.599 899 2 0 -0.178902 -0.134742 -145.85 
-     11 105.066 899 1 1 -0.123139 -0.0995046 -174.45 
-     11 126.711 899 1 0 -0.118704 -0.102996 -175.85 
-Number of digits in this event =  6
+Number of tracker hits in this event =  10
+     11 157.85 900 5 1 0.238792 0.0684374 -54.45 
+     11 119.266 900 5 0 0.250351 0.0733833 -55.85 
+     11 258.435 902 4 1 0.500766 0.177542 -84.45 
+     11 148.208 900 4 0 0.512052 0.178291 -85.85 
+     11 128.819 903 3 1 0.735537 0.188999 -114.45 
+     11 127.651 900 3 0 0.747997 0.190907 -115.85 
+     11 116.134 904 2 1 0.978459 0.257127 -144.45 
+     11 126.092 900 2 0 1.00384 0.244294 -145.85 
+     11 199.597 910 0 1 2.17087 -0.0641821 -204.45 
+     11 129.483 899 0 0 2.2029 -0.0634652 -205.85 
+Number of digits in this event =  10
 Event: 12
 Number of tracker hits in this event =  11
-     12 104.232 899 4 1 -0.247824 0.154889 -84.45 
-     12 1.54417 898 4 1 -0.25 0.157011 -84.8455 
-     12 128.812 900 4 0 -0.255667 0.163024 -85.85 
-     12 122.061 898 3 1 -0.397453 0.326729 -114.45 
-     12 165.433 901 3 0 -0.404485 0.333835 -115.85 
-     12 332.423 897 2 1 -0.528233 0.469069 -144.45 
-     12 127.362 902 2 0 -0.532705 0.479258 -145.85 
-     12 117.129 897 1 1 -0.631056 0.690246 -174.45 
-     12 157.862 903 1 0 -0.633411 0.693324 -175.85 
-     12 132.698 897 0 1 -0.648903 0.753492 -204.45 
-     12 142.529 903 0 0 -0.647291 0.753233 -205.85 
-Number of digits in this event =  9
-Event: 13
-Number of tracker hits in this event =  18
-     13 152.015 900 4 1 0.120601 0.331436 -84.45 
-     13 155.468 901 4 0 0.127599 0.343582 -85.85 
-     13 185.497 901 3 1 0.254395 0.605769 -114.45 
-     13 153.187 902 3 0 0.258551 0.627086 -115.85 
-     13 286.594 901 2 1 0.339329 1.04471 -144.45 
-     13 119.242 905 2 0 0.346693 1.06597 -145.85 
-     13 139.35 902 1 1 0.498901 1.46688 -174.45 
-     13 114.833 907 1 0 0.509202 1.48353 -175.85 
-     13 121.947 903 0 1 0.71309 1.83132 -204.45 
-     13 193.368 909 0 0 0.729762 1.85677 -205.85 
-     13 13.7086 1707 1 1 161.55 56.4328 -174.847 
-     13 3.32669 1736 4 1 167.35 165.713 -84.5753 
-     13 4.34492 1745 4 1 169.15 163.481 -84.8218 
-     13 0.0620824 1084 13 0 -139.364 37.0333 183.75 
-     13 10.1559 574 1 0 113.468 -65.2262 -176.25 
-     13 76.4401 573 1 0 113.469 -65.25 -176.219 
-     13 40.5041 572 1 0 113.493 -65.45 -175.971 
-     13 182.075 1466 1 1 113.515 -66.4125 -174.85 
+     12 157.371 897 4 1 -0.502229 0.217852 -84.45 
+     12 133.876 900 4 0 -0.511446 0.226814 -85.85 
+     12 185.12 896 3 1 -0.706555 0.429208 -114.45 
+     12 266.257 901 3 0 -0.723109 0.439168 -115.85 
+     12 166.582 894 2 1 -1.06455 0.651006 -144.45 
+     12 123.087 903 2 0 -1.08403 0.660342 -145.85 
+     12 121.864 892 1 1 -1.48876 0.837564 -174.45 
+     12 117.855 903 1 0 -1.50875 0.847461 -175.85 
+     12 244.716 904 1 0 -1.51394 0.85 -176.208 
+     12 558.61 890 0 1 -1.94206 1.04536 -204.45 
+     12 132.664 905 0 0 -1.95958 1.05748 -205.85 
 Number of digits in this event =  12
+Event: 13
+Number of tracker hits in this event =  7
+     13 139.819 900 3 0 -0.0511964 0.166205 -115.85 
+     13 214.973 898 2 1 -0.264134 0.287014 -144.45 
+     13 128.268 901 2 0 -0.268935 0.289769 -145.85 
+     13 136.031 898 1 1 -0.357619 0.307093 -174.45 
+     13 133.53 901 1 0 -0.362311 0.301764 -175.85 
+     13 102.339 897 0 1 -0.482975 0.197482 -204.45 
+     13 124.747 900 0 0 -0.490789 0.196977 -205.85 
+Number of digits in this event =  8
 Event: 14
-Number of tracker hits in this event =  12
-     14 126.245 899 5 1 -0.0960385 0.0539887 -54.45 
-     14 140.015 900 5 0 -0.102839 0.0580618 -55.85 
-     14 182.667 899 4 1 -0.243769 0.137103 -84.45 
-     14 142.635 900 4 0 -0.249124 0.142109 -85.85 
-     14 167.256 898 3 1 -0.354275 0.238123 -114.45 
-     14 175.081 900 3 0 -0.360741 0.244235 -115.85 
-     14 117.174 897 2 1 -0.511795 0.366947 -144.45 
-     14 151.179 901 2 0 -0.514495 0.370409 -145.85 
-     14 122.875 897 1 1 -0.537392 0.430606 -174.45 
-     14 148.216 901 1 0 -0.539514 0.430849 -175.85 
-     14 121.207 897 0 1 -0.595154 0.433701 -204.45 
-     14 141.933 901 0 0 -0.599129 0.431368 -205.85 
-Number of digits in this event =  12
+Number of tracker hits in this event =  8
+     14 128.956 900 3 1 0.171493 0.204081 -114.45 
+     14 126.819 900 3 0 0.17631 0.21077 -115.85 
+     14 113.394 901 2 1 0.295567 0.331903 -144.45 
+     14 132.127 901 2 0 0.303709 0.332474 -145.85 
+     14 185.725 902 1 1 0.459389 0.364948 -174.45 
+     14 472.472 901 1 0 0.467472 0.361984 -175.85 
+     14 142.37 902 0 1 0.628225 0.283205 -204.45 
+     14 124.351 901 0 0 0.634234 0.284263 -205.85 
+Number of digits in this event =  8
 Event: 15
-Number of tracker hits in this event =  17
-     15 118.336 899 4 1 -0.102725 0.0569779 -84.45 
-     15 138.788 900 4 0 -0.10909 0.058597 -85.85 
-     15 123.714 898 3 1 -0.256871 0.0897636 -114.45 
-     15 140.426 900 3 0 -0.266605 0.0959911 -115.85 
-     15 139.6 897 2 1 -0.465601 0.219911 -144.45 
-     15 252.907 900 2 0 -0.474481 0.224109 -145.85 
-     15 135.268 896 1 1 -0.650007 0.331571 -174.45 
-     15 134.324 901 1 0 -0.6606 0.338131 -175.85 
-     15 520.382 895 0 1 -0.876987 0.480147 -204.45 
-     15 147.53 902 0 0 -0.888512 0.485711 -205.85 
-     15 248.707 901 2 0 -0.514357 0.25 -146.047 
-     15 15.4223 892 2 1 -1.49484 -1.45555 -144.85 
-     15 66.3157 896 2 0 -1.60701 -0.743288 -145.85 
-     15 211.928 855 0 1 -8.87231 -81.5423 -204.543 
-     15 12.4147 856 0 1 -8.85 -81.5564 -204.457 
-     15 225.501 854 0 1 -9.05 -81.4158 -204.51 
-     15 413.455 559 1 1 -68.1571 -110.533 -174.729 
-Number of digits in this event =  15
-Event: 16
-Number of tracker hits in this event =  10
-     16 124.468 900 3 1 0.0705835 0.118846 -114.45 
-     16 280.73 900 3 0 0.0681979 0.116193 -115.85 
-     16 205.407 899 0 1 -0.0923933 -0.208329 -204.45 
-     16 112.652 899 0 0 -0.105208 -0.216089 -205.85 
-     16 5.21332 899 4 1 -0.05 0.110866 -84.8272 
-     16 211.148 900 4 0 -0.447594 0.176754 -85.85 
-     16 14.5931 463 4 0 -65.2966 -87.398 -86.25 
-     16 48.3351 462 4 0 -65.3185 -87.45 -86.2306 
-     16 19.8111 461 4 0 -65.3658 -87.65 -86.23 
-     16 103.915 464 6 0 -86.0115 -87.1117 -26.25 
+Number of tracker hits in this event =  6
+     15 120.826 897 2 1 -0.524345 -0.0583382 -144.45 
+     15 188.935 899 2 0 -0.525169 -0.062678 -145.85 
+     15 233.083 897 1 1 -0.542542 -0.173165 -174.45 
+     15 120.665 899 1 0 -0.543321 -0.180967 -175.85 
+     15 119.428 897 0 1 -0.544606 -0.314134 -204.45 
+     15 137.479 898 0 0 -0.548277 -0.32025 -205.85 
 Number of digits in this event =  6
+Event: 16
+Number of tracker hits in this event =  9
+     16 117.876 900 5 1 0.118862 -0.101797 -54.45 
+     16 219.588 899 5 0 0.121143 -0.107946 -55.85 
+     16 134.836 900 4 1 0.163257 -0.236613 -84.45 
+     16 120.985 899 4 0 0.163823 -0.238017 -85.85 
+     16 130.713 900 3 1 0.157004 -0.259135 -114.45 
+     16 130.655 898 3 0 0.151247 -0.26309 -115.85 
+     16 18.2764 897 1 0 -0.05 -0.5208 -176.156 
+     16 164.356 898 0 1 -0.268167 -0.684524 -204.45 
+     16 112.569 896 0 0 -0.274323 -0.692046 -205.85 
+Number of digits in this event =  7
 Event: 17
-Number of tracker hits in this event =  10
-     17 641.813 900 4 1 0.0938978 0.233342 -84.45 
-     17 237.273 900 4 0 0.0963695 0.240771 -85.85 
-     17 161.063 900 3 1 0.133586 0.394911 -114.45 
-     17 125.38 901 3 0 0.134302 0.403332 -115.85 
-     17 142.114 900 2 1 0.140355 0.583826 -144.45 
-     17 116.097 902 2 0 0.142843 0.59122 -145.85 
-     17 145.992 900 1 1 0.207245 0.758488 -174.45 
-     17 122.788 903 1 0 0.21307 0.765502 -175.85 
-     17 147.221 901 0 1 0.354961 0.907968 -204.45 
-     17 123.267 904 0 0 0.366929 0.913099 -205.85 
-Number of digits in this event =  12
+Number of tracker hits in this event =  18
+     17 6.32158 903 2 1 0.832782 -0.05 -144.681 
+     17 107.172 904 2 1 0.85 -0.0559251 -144.677 
+     17 97.7097 905 2 1 1.05 -0.124284 -144.634 
+     17 125.948 906 2 1 1.25 -0.193494 -144.589 
+     17 134.644 907 2 1 1.45 -0.262276 -144.543 
+     17 104.122 908 2 1 1.65 -0.33253 -144.498 
+     17 6.49625 909 2 1 1.85 -0.403812 -144.452 
+     17 130.063 842 1 1 -11.5414 0.133564 -174.45 
+     17 121.275 841 1 1 -11.65 0.138213 -174.723 
+     17 309.297 900 1 0 -12.0982 0.156979 -175.85 
+     17 26.4543 783 0 1 -23.4251 0.673288 -204.45 
+     17 145.622 782 0 1 -23.45 0.674794 -204.513 
+     17 300.853 903 0 0 -23.9798 0.707813 -205.85 
+     17 185.873 900 2 0 0.990547 0.0904651 -145.85 
+     17 207.99 951 1 1 10.262 1.98433 -174.45 
+     17 322.37 910 1 0 10.7111 2.07131 -175.85 
+     17 284.689 999 0 1 19.8798 3.89335 -204.45 
+     17 167.954 919 0 0 20.3386 3.98436 -205.85 
+Number of digits in this event =  14
 Event: 18
-Number of tracker hits in this event =  10
-     18 117.959 900 4 1 0.0905044 -0.243678 -84.45 
-     18 157.696 899 4 0 0.0948993 -0.247861 -85.85 
-     18 180.824 900 3 1 0.1852 -0.336474 -114.45 
-     18 148.499 898 3 0 0.200427 -0.334849 -115.85 
-     18 308.462 902 2 1 0.529711 -0.295664 -144.45 
-     18 169.753 898 2 0 0.545646 -0.298036 -145.85 
-     18 237.639 904 1 1 0.869105 -0.34961 -174.45 
-     18 133.005 898 1 0 0.884442 -0.350382 -175.85 
-     18 140.642 905 0 1 1.21764 -0.379153 -204.45 
-     18 151.811 898 0 0 1.24409 -0.380807 -205.85 
-Number of digits in this event =  10
+Number of tracker hits in this event =  8
+     18 108.804 900 3 1 0.198096 0.183779 -114.45 
+     18 126.104 900 3 0 0.204332 0.187558 -115.85 
+     18 191.543 901 2 1 0.325357 0.265598 -144.45 
+     18 149.2 901 2 0 0.32756 0.269981 -145.85 
+     18 212.838 901 1 1 0.355354 0.385898 -174.45 
+     18 142.305 901 1 0 0.351942 0.393653 -175.85 
+     18 113.178 901 0 1 0.286842 0.536586 -204.45 
+     18 149.361 902 0 0 0.279112 0.544658 -205.85 
+Number of digits in this event =  7
 Event: 19
-Number of tracker hits in this event =  10
-     19 162.804 900 4 1 0.0624205 0.216861 -84.45 
-     19 282.962 900 4 0 0.0688975 0.225564 -85.85 
-     19 117.839 900 3 1 0.203749 0.399953 -114.45 
-     19 154.789 901 3 0 0.212884 0.404247 -115.85 
-     19 146.783 901 2 1 0.416445 0.509601 -144.45 
-     19 313.995 902 2 0 0.430127 0.508842 -145.85 
-     19 146.585 903 1 1 0.714093 0.476902 -174.45 
-     19 130.731 902 1 0 0.737133 0.471774 -175.85 
-     19 125.377 905 0 1 1.20713 0.379453 -204.45 
-     19 177.001 901 0 0 1.23223 0.379451 -205.85 
-Number of digits in this event =  11
+Number of tracker hits in this event =  17
+     19 190.605 900 4 1 0.140094 -0.0883041 -84.45 
+     19 138.121 899 4 0 0.153561 -0.0937337 -85.85 
+     19 76.7679 901 3 1 0.446967 -0.216462 -114.45 
+     19 152.56 902 3 1 0.45 -0.217274 -114.735 
+     19 125.348 899 3 0 0.461153 -0.221069 -115.85 
+     19 140.83 903 2 1 0.747133 -0.311554 -144.45 
+     19 111.553 898 2 0 0.769172 -0.31339 -145.85 
+     19 143.791 906 1 1 1.25292 -0.352982 -174.45 
+     19 139.832 898 1 0 1.27792 -0.350799 -175.85 
+     19 152.081 908 0 1 1.7927 -0.294672 -204.45 
+     19 165.69 898 0 0 1.81568 -0.296435 -205.85 
+     19 118.354 685 4 0 27.2013 -42.9277 -86.25 
+     19 457.577 684 4 0 27.3014 -43.05 -86.179 
+     19 47.0247 686 4 0 28.5532 -42.85 -85.8995 
+     19 42.5637 1050 4 1 30.087 -41.4178 -84.85 
+     19 339.025 698 4 0 30.6078 -40.3011 -85.85 
+     19 90.1251 699 4 0 30.6719 -40.25 -85.8988 
+Number of digits in this event =  12
 Event: 20
-Number of tracker hits in this event =  21
-     20 147.675 900 5 1 0.120976 0.378127 -54.45 
-     20 156.224 901 5 0 0.12993 0.389168 -55.85 
-     20 131.412 901 4 1 0.323828 0.624434 -84.45 
-     20 143.298 902 4 0 0.325629 0.635464 -85.85 
-     20 170.442 901 3 1 0.369738 0.844034 -114.45 
-     20 120.084 904 3 0 0.370083 0.850631 -115.85 
-     20 146.244 901 2 1 0.388712 0.983263 -144.45 
-     20 133.925 904 2 0 0.391539 0.988756 -145.85 
-     20 451.462 901 1 1 0.436907 1.10398 -174.45 
-     20 122.289 905 1 0 0.441501 1.10305 -175.85 
-     20 260.626 902 0 1 0.54224 1.09205 -204.45 
-     20 193.779 905 0 0 0.55126 1.09119 -205.85 
-     20 60.7102 900 1 1 0.25 1.85594 -174.614 
-     20 11.746 899 1 1 -0.05 1.9588 -174.824 
-     20 120.157 912 1 0 -1.25736 2.4591 -175.85 
-     20 493.354 911 1 0 -1.55133 2.45 -175.976 
-     20 194.514 910 1 0 -1.85629 2.25 -176.018 
-     20 51.9742 909 1 0 -2.039 2.05 -176.049 
-     20 1.62736 880 1 1 -3.89756 2.38149 -174.85 
-     20 0.511731 855 1 0 -14.5207 -8.85615 -175.85 
-     20 11.751 814 1 1 -17.1496 -12.3905 -174.85 
-Number of digits in this event =  16
+Number of tracker hits in this event =  10
+     20 236.215 898 4 1 -0.332253 0.106836 -84.45 
+     20 157.497 900 4 0 -0.342104 0.114012 -85.85 
+     20 126.214 897 3 1 -0.555359 0.245422 -114.45 
+     20 116.925 901 3 0 -0.564594 0.25219 -115.85 
+     20 157.64 896 2 1 -0.750411 0.380388 -144.45 
+     20 142.375 901 2 0 -0.765646 0.387492 -145.85 
+     20 153.855 894 1 1 -1.06492 0.541722 -174.45 
+     20 186.827 902 1 0 -1.08005 0.54377 -175.85 
+     20 133.449 893 0 1 -1.38052 0.604082 -204.45 
+     20 132.249 902 0 0 -1.39286 0.609277 -205.85 
+Number of digits in this event =  10
 Event: 21
-Number of tracker hits in this event =  13
-     21 173.028 900 5 1 0.121665 0.207062 -54.45 
-     21 107.566 900 5 0 0.122903 0.212994 -55.85 
-     21 139.873 900 4 1 0.158964 0.31587 -84.45 
-     21 125.827 901 4 0 0.16217 0.321115 -85.85 
-     21 184.588 900 3 1 0.226741 0.420538 -114.45 
-     21 131.869 901 3 0 0.236513 0.431458 -115.85 
-     21 172.172 901 2 1 0.435957 0.660136 -144.45 
-     21 136.033 903 2 0 0.444842 0.669154 -145.85 
-     21 118.162 902 1 1 0.611913 0.853872 -174.45 
-     21 185.905 904 1 0 0.624723 0.866864 -175.85 
-     21 177.855 904 0 1 0.885233 1.13569 -204.45 
-     21 213.498 905 0 0 0.897068 1.15052 -205.85 
-     21 49.458 1032 11 0 102.721 26.65 123.911 
-Number of digits in this event =  13
-Event: 22
 Number of tracker hits in this event =  12
-     22 177.088 900 5 1 0.168462 0.0556375 -54.45 
-     22 125.873 900 5 0 0.17497 0.0616334 -55.85 
-     22 118.851 901 4 1 0.312706 0.17916 -84.45 
-     22 117.286 900 4 0 0.301352 0.178135 -85.85 
-     22 191.044 900 3 1 0.0630845 0.153335 -114.45 
-     22 287.302 898 2 1 -0.297736 0.209819 -144.45 
-     22 134.107 900 2 0 -0.313689 0.21313 -145.85 
-     22 111.909 897 1 1 -0.647166 0.266812 -174.45 
-     22 33.5247 896 1 1 -0.65 0.268578 -174.754 
-     22 181.041 901 1 0 -0.660839 0.2746 -175.85 
-     22 192.079 895 0 1 -0.932946 0.401256 -204.45 
-     22 152.934 901 0 0 -0.944813 0.406121 -205.85 
-Number of digits in this event =  9
+     21 129.351 900 5 1 0.115319 0.251441 -54.45 
+     21 108.6 901 5 0 0.124199 0.261479 -55.85 
+     21 137.671 901 4 1 0.313474 0.472097 -84.45 
+     21 137.018 902 4 0 0.321131 0.478069 -85.85 
+     21 130.491 902 3 1 0.486027 0.590108 -114.45 
+     21 113.339 902 3 0 0.487904 0.601305 -115.85 
+     21 365.308 902 2 1 0.561482 0.831524 -144.45 
+     21 158.122 903 2 0 0.569422 0.845742 -145.85 
+     21 123.989 903 1 1 0.723256 1.11284 -174.45 
+     21 162.097 905 1 0 0.735821 1.12357 -175.85 
+     21 116.281 904 0 1 1.00175 1.34332 -204.45 
+     21 103.503 906 0 0 1.01074 1.34685 -205.85 
+Number of digits in this event =  12
+Event: 22
+Number of tracker hits in this event =  11
+     22 146.503 900 4 1 0.0589357 -0.243072 -84.45 
+     22 61.7437 899 4 0 0.069753 -0.249038 -85.85 
+     22 53.1305 898 4 0 0.071568 -0.25 -86.0833 
+     22 167.153 900 3 1 0.235052 -0.400421 -114.45 
+     22 142.308 898 3 0 0.246884 -0.408346 -115.85 
+     22 144.437 902 2 1 0.525767 -0.577745 -144.45 
+     22 147.138 897 2 0 0.541808 -0.581556 -145.85 
+     22 121.827 904 1 1 0.862375 -0.645836 -174.45 
+     22 141.386 896 1 0 0.876955 -0.650474 -175.85 
+     22 125.118 905 0 1 1.17595 -0.734602 -204.45 
+     22 166.722 896 0 0 1.18815 -0.737832 -205.85 
+Number of digits in this event =  10
 Event: 23
-Number of tracker hits in this event =  8
-     23 116.963 899 3 1 -0.0984458 -0.277051 -114.45 
-     23 175.058 898 3 0 -0.102588 -0.285659 -115.85 
-     23 181.955 899 2 1 -0.200343 -0.471513 -144.45 
-     23 133.648 897 2 0 -0.205602 -0.486496 -145.85 
-     23 159.5 898 1 1 -0.323107 -0.802308 -174.45 
-     23 155.589 896 1 0 -0.32907 -0.818855 -175.85 
-     23 142.129 898 0 1 -0.42729 -1.13488 -204.45 
-     23 134.03 894 0 0 -0.422206 -1.14687 -205.85 
-Number of digits in this event =  8
+Number of tracker hits in this event =  7
+     23 202.252 900 3 1 0.175071 0.0635212 -114.45 
+     23 181.073 900 3 0 0.178982 0.0635665 -115.85 
+     23 498.945 901 2 1 0.268662 0.0676923 -144.45 
+     23 125.167 900 2 0 0.2712 0.0648602 -145.85 
+     23 462.987 901 0 1 0.286106 0.0881041 -204.45 
+     23 131.586 900 0 0 0.286002 0.0883743 -205.85 
+     23 5.3989 901 3 0 -0.05 0.422415 -116.233 
+Number of digits in this event =  7
 Event: 24
-Number of tracker hits in this event =  12
-     24 17.3744 899 4 1 -0.0799232 0.05 -84.7911 
-     24 236.032 900 4 0 -0.0854309 0.0538436 -85.85 
-     24 114.244 898 3 1 -0.252746 0.160974 -114.45 
-     24 183.25 900 3 0 -0.25787 0.164486 -115.85 
-     24 111.024 898 2 1 -0.34956 0.237442 -144.45 
-     24 197.114 900 2 0 -0.360606 0.245169 -145.85 
-     24 157.909 897 1 1 -0.573404 0.405935 -174.45 
-     24 149.233 901 1 0 -0.589019 0.409321 -175.85 
-     24 119.784 895 0 1 -0.909184 0.46565 -204.45 
-     24 123.352 902 0 0 -0.923407 0.469089 -205.85 
-     24 1.13007 763 0 1 -27.25 112.726 -204.811 
-     24 99.8879 612 3 0 -171.564 -57.6186 -116.094 
-Number of digits in this event =  10
+Number of tracker hits in this event =  14
+     24 168.932 899 4 1 -0.108158 -0.2116 -84.45 
+     24 158.143 899 4 0 -0.106292 -0.219058 -85.85 
+     24 126.715 899 3 1 -0.0662161 -0.394736 -114.45 
+     24 248.895 898 3 0 -0.0645984 -0.406876 -115.85 
+     24 142.386 900 1 1 0.086181 -0.821792 -174.45 
+     24 135.533 896 1 0 0.0832288 -0.831772 -175.85 
+     24 62.2806 899 1 1 -0.0610702 -0.829739 -174.45 
+     24 73.1858 898 1 1 -0.25 -0.884005 -174.604 
+     24 32.233 897 1 1 -0.45 -0.965483 -174.782 
+     24 369.771 892 1 0 -1.64342 -1.46294 -175.85 
+     24 221.22 893 1 0 -2.55926 -1.45 -176.139 
+     24 0.6328 894 1 0 -3.01174 -1.25 -175.853 
+     24 87.4387 880 1 1 -3.86506 -0.722547 -174.85 
+     24 34.4158 879 1 1 -4.05 -0.673288 -174.55 
+Number of digits in this event =  9
 Event: 25
-Number of tracker hits in this event =  6
-     25 500.049 901 2 1 0.324079 -0.144702 -144.45 
-     25 171.833 899 2 0 0.331273 -0.14838 -145.85 
-     25 345.606 902 1 1 0.474592 -0.220283 -174.45 
-     25 121.523 899 1 0 0.4725 -0.227672 -175.85 
-     25 135.912 901 0 1 0.418907 -0.382133 -204.45 
-     25 134.407 898 0 0 0.410149 -0.390383 -205.85 
-Number of digits in this event =  7
+Number of tracker hits in this event =  10
+     25 116.67 899 4 1 -0.0588861 -0.231686 -84.45 
+     25 136.071 899 4 0 -0.0534064 -0.236457 -85.85 
+     25 188.236 900 3 1 0.0525831 -0.312743 -114.45 
+     25 130.205 898 3 0 0.0646891 -0.314385 -115.85 
+     25 102.825 901 2 1 0.309093 -0.350536 -144.45 
+     25 157.706 898 2 0 0.321652 -0.347497 -145.85 
+     25 136.118 902 1 1 0.577359 -0.298716 -174.45 
+     25 140.412 898 1 0 0.585519 -0.295756 -175.85 
+     25 145.873 903 0 1 0.771014 -0.211848 -204.45 
+     25 158.373 899 0 0 0.788502 -0.208185 -205.85 
+Number of digits in this event =  10
 Event: 26
-Number of tracker hits in this event =  8
-     26 229.684 898 3 1 -0.299345 -0.0756675 -114.45 
-     26 203.255 899 3 0 -0.303021 -0.077407 -115.85 
-     26 190.125 898 2 1 -0.387681 -0.116721 -144.45 
-     26 140.108 899 2 0 -0.392801 -0.119815 -145.85 
-     26 183.238 897 1 1 -0.477879 -0.185048 -174.45 
-     26 406.829 899 1 0 -0.480453 -0.186132 -175.85 
-     26 133.38 897 0 1 -0.528066 -0.21165 -204.45 
-     26 165.382 899 0 0 -0.526126 -0.21676 -205.85 
+Number of tracker hits in this event =  11
+     26 104.124 899 5 1 -0.0857856 -0.0549544 -54.45 
+     26 190.558 899 5 0 -0.0839927 -0.0572071 -55.85 
+     26 180.632 899 4 1 -0.0742176 -0.104571 -84.45 
+     26 151.195 899 4 0 -0.0722986 -0.107066 -85.85 
+     26 119.062 899 2 1 -0.184036 -0.39683 -144.45 
+     26 136.623 898 2 0 -0.191334 -0.406765 -145.85 
+     26 132.088 898 1 1 -0.366732 -0.638676 -174.45 
+     26 9.81296 897 1 0 -0.380599 -0.649711 -175.85 
+     26 130.955 896 1 0 -0.380971 -0.65 -175.887 
+     26 155.735 896 0 1 -0.657753 -0.866672 -204.45 
+     26 132.72 895 0 0 -0.672796 -0.876394 -205.85 
 Number of digits in this event =  9
 Event: 27
-Number of tracker hits in this event =  8
-     27 148.384 899 3 1 -0.1969 -0.125284 -114.45 
-     27 106.589 899 3 0 -0.203862 -0.131613 -115.85 
-     27 186.352 898 2 1 -0.330698 -0.253464 -144.45 
-     27 209.032 898 2 0 -0.334282 -0.257697 -145.85 
-     27 137.915 898 1 1 -0.358153 -0.327257 -174.45 
-     27 150.446 898 1 0 -0.357113 -0.329444 -175.85 
-     27 154.946 898 0 1 -0.323197 -0.383286 -204.45 
-     27 128.659 898 0 0 -0.320154 -0.38231 -205.85 
-Number of digits in this event =  8
+Number of tracker hits in this event =  18
+     27 133.352 899 5 1 -0.0563958 0.147375 -54.45 
+     27 131.605 900 5 0 -0.0623437 0.155919 -55.85 
+     27 108.198 899 4 1 -0.199548 0.327924 -84.45 
+     27 112.788 901 4 0 -0.226512 0.346643 -85.85 
+     27 218.716 896 3 1 -0.794916 0.725861 -114.45 
+     27 150.676 903 3 0 -0.827237 0.746338 -115.85 
+     27 167.651 892 2 1 -1.48568 1.15146 -144.45 
+     27 183.329 905 2 0 -1.51167 1.16852 -145.85 
+     27 163.884 890 1 1 -2.03532 1.54524 -174.45 
+     27 126.12 907 1 0 -2.06456 1.5612 -175.85 
+     27 119.506 886 0 1 -2.6789 1.87779 -204.45 
+     27 145.153 909 0 0 -2.71112 1.89456 -205.85 
+     27 9.71077 899 5 0 1.08918 -0.05 -55.873 
+     27 57.739 913 5 1 2.69152 -0.0684824 -54.85 
+     27 65.9137 914 5 1 2.85 -0.0534578 -54.7468 
+     27 16.9179 915 5 1 3.05 -0.0627584 -54.7191 
+     27 57.9194 916 5 1 3.28526 -0.05 -54.7954 
+     27 316.519 917 5 1 3.45 -0.075023 -54.8027 
+Number of digits in this event =  11
 Event: 28
-Number of tracker hits in this event =  9
-     28 139.972 901 3 1 0.321997 0.104506 -114.45 
-     28 168.651 900 3 0 0.329213 0.110011 -115.85 
-     28 152.452 902 2 1 0.473232 0.221611 -144.45 
-     28 136 900 2 0 0.478364 0.230432 -145.85 
-     28 169.544 902 1 1 0.508074 0.442965 -174.45 
-     28 54.7762 901 1 0 0.511086 0.449217 -175.85 
-     28 208.914 902 1 0 0.511502 0.45 -176.023 
-     28 130.237 902 0 1 0.581111 0.567817 -204.45 
-     28 130.431 902 0 0 0.588126 0.58098 -205.85 
-Number of digits in this event =  9
-Event: 29
-Number of tracker hits in this event =  8
-     29 113.794 899 4 1 -0.112114 -0.34754 -84.45 
-     29 181.692 898 4 0 -0.113133 -0.362443 -85.85 
-     29 117.463 899 3 1 -0.130227 -0.655923 -114.45 
-     29 147.864 896 3 0 -0.131728 -0.666447 -115.85 
-     29 164.425 899 2 1 -0.143762 -0.88703 -144.45 
-     29 210.88 895 2 0 -0.144773 -0.898415 -145.85 
-     29 104.83 899 1 1 -0.1539 -1.11905 -174.45 
-     29 115.039 894 1 0 -0.145917 -1.12767 -175.85 
+Number of tracker hits in this event =  7
+     28 193.788 899 4 1 -0.101873 0.057611 -84.45 
+     28 209.953 900 4 0 -0.101521 0.0531612 -85.85 
+     28 45.6476 899 0 0 0.127752 -0.05 -206.133 
+     28 87.5472 1041 0 0 -15.0294 28.3056 -206.25 
+     28 17.0992 1042 0 0 -15.0647 28.45 -206.238 
+     28 245.671 1390 0 0 -23.5842 98.2527 -206.25 
+     28 242.065 1391 0 0 -23.9383 98.35 -205.987 
 Number of digits in this event =  5
+Event: 29
+Number of tracker hits in this event =  10
+     29 135.511 899 5 1 -0.0540232 -0.106925 -54.45 
+     29 135.607 899 5 0 -0.0576991 -0.113512 -55.85 
+     29 144.245 899 4 1 -0.118888 -0.253344 -84.45 
+     29 116.871 898 4 0 -0.117018 -0.263434 -85.85 
+     29 157.637 899 3 1 -0.0871043 -0.477145 -114.45 
+     29 111.475 897 3 0 -0.0840453 -0.486197 -115.85 
+     29 113.408 899 1 1 -0.123846 -0.916724 -174.45 
+     29 221.821 895 1 0 -0.129422 -0.928056 -175.85 
+     29 195.297 898 0 1 -0.264262 -1.14235 -204.45 
+     29 176.319 894 0 0 -0.265167 -1.15377 -205.85 
+Number of digits in this event =  8
 Event: 30
-Number of tracker hits in this event =  6
-     30 201.571 900 4 1 0.162504 -0.0590942 -84.45 
-     30 124.56 899 4 0 0.16687 -0.0596315 -85.85 
-     30 307.888 900 1 1 0.113283 0.290921 -174.45 
-     30 118.865 901 1 0 0.104749 0.307046 -175.85 
-     30 155.516 899 0 1 -0.0682186 0.641553 -204.45 
-     30 126.057 903 0 0 -0.0772384 0.657746 -205.85 
-Number of digits in this event =  6
+Number of tracker hits in this event =  13
+     30 122.903 899 5 1 -0.0593881 -0.086511 -54.45 
+     30 120.137 899 5 0 -0.070192 -0.0941416 -55.85 
+     30 132.586 898 4 1 -0.330794 -0.246342 -84.45 
+     30 143.929 898 4 0 -0.338148 -0.251957 -85.85 
+     30 145.628 897 3 1 -0.488833 -0.362629 -114.45 
+     30 147.093 898 3 0 -0.501334 -0.367607 -115.85 
+     30 131.955 896 2 1 -0.779893 -0.466117 -144.45 
+     30 142.989 897 2 0 -0.788333 -0.473407 -145.85 
+     30 121.81 895 1 1 -0.956189 -0.634857 -174.45 
+     30 74.9743 897 1 0 -0.969486 -0.647816 -175.85 
+     30 71.0762 896 1 0 -0.971718 -0.65 -176.082 
+     30 128.258 894 0 1 -1.23803 -0.931614 -204.45 
+     30 121.085 895 0 0 -1.25104 -0.951269 -205.85 
+Number of digits in this event =  12
 Event: 31
-Number of tracker hits in this event =  12
-     31 125.79 899 4 1 -0.0548922 -0.18012 -84.45 
-     31 116.805 899 4 0 -0.0623177 -0.183269 -85.85 
-     31 137.946 899 3 1 -0.201026 -0.258361 -114.45 
-     31 227.134 898 3 0 -0.209131 -0.264625 -115.85 
-     31 164.818 898 2 1 -0.365431 -0.403058 -144.45 
-     31 124.381 898 2 0 -0.375698 -0.410916 -145.85 
-     31 154.763 897 1 1 -0.558893 -0.569203 -174.45 
-     31 130.272 897 1 0 -0.564171 -0.576933 -175.85 
-     31 116.337 896 0 1 -0.672499 -0.72765 -204.45 
-     31 145.073 896 0 0 -0.680713 -0.732974 -205.85 
-     31 25.7033 877 0 0 -41.9258 -4.64829 -206.25 
-     31 13.8261 888 5 1 -2.29503 -120.971 -54.85 
+Number of tracker hits in this event =  11
+     31 145.097 899 5 0 0.05 -0.0982375 -55.8626 
+     31 150.792 900 4 1 0.214966 -0.204094 -84.45 
+     31 372.511 899 4 0 0.227673 -0.211962 -85.85 
+     31 143.053 902 3 1 0.515567 -0.343623 -114.45 
+     31 125.917 898 3 0 0.528369 -0.342021 -115.85 
+     31 139.892 903 2 1 0.783395 -0.315695 -144.45 
+     31 127.133 898 2 0 0.793051 -0.315201 -145.85 
+     31 109.477 904 1 1 0.99058 -0.300005 -174.45 
+     31 123.293 898 1 0 1.00585 -0.30531 -175.85 
+     31 120.016 906 0 1 1.30518 -0.421034 -204.45 
+     31 148.894 898 0 0 1.31952 -0.421785 -205.85 
 Number of digits in this event =  11
 Event: 32
-Number of tracker hits in this event =  12
-     32 150.156 900 5 1 0.0804612 0.069282 -54.45 
-     32 110.73 900 5 0 0.0843217 0.0768658 -55.85 
-     32 156.65 900 4 1 0.156456 0.218014 -84.45 
-     32 267.725 900 4 0 0.159549 0.224568 -85.85 
-     32 216.939 900 3 1 0.220941 0.382826 -114.45 
-     32 124.953 901 3 0 0.220597 0.395459 -115.85 
-     32 125.612 900 2 1 0.208374 0.676639 -144.45 
-     32 139.622 903 2 0 0.20842 0.691793 -145.85 
-     32 141.796 900 1 1 0.204787 0.989424 -174.45 
-     32 173.812 904 1 0 0.200314 1.00897 -175.85 
-     32 140.496 900 0 1 0.11024 1.4091 -204.45 
-     32 147.58 906 0 0 0.106158 1.42608 -205.85 
-Number of digits in this event =  12
+Number of tracker hits in this event =  3
+     32 299.426 901 4 1 0.361674 -0.0507074 -84.45 
+     32 137.876 902 0 1 0.593735 -0.0532026 -204.45 
+     32 99.6543 899 0 0 0.592772 -0.0571704 -205.85 
+Number of digits in this event =  3
 Event: 33
-Number of tracker hits in this event =  16
-     33 124.035 899 5 1 -0.0623655 -0.0929731 -54.45 
-     33 147.092 899 5 0 -0.0700878 -0.0984166 -55.85 
-     33 152.618 898 4 1 -0.251009 -0.189814 -84.45 
-     33 207.826 899 4 0 -0.262224 -0.192204 -85.85 
-     33 125.896 897 3 1 -0.520033 -0.25003 -114.45 
-     33 143.071 898 3 0 -0.537449 -0.256071 -115.85 
-     33 124.74 895 2 1 -0.89733 -0.376528 -144.45 
-     33 121.267 898 2 0 -0.908591 -0.380982 -145.85 
-     33 149.194 894 1 1 -1.12054 -0.464768 -174.45 
-     33 145.449 897 1 0 -1.12974 -0.47824 -175.85 
-     33 135.393 893 0 1 -1.33167 -0.764836 -204.45 
-     33 133.741 896 0 0 -1.35144 -0.761856 -205.85 
-     33 329.717 898 4 0 -0.13428 -0.25 -86.0145 
-     33 23.3652 810 7 0 -166.731 -17.9864 3.75 
-     33 55.4202 592 0 1 -61.45 -71.5455 -204.75 
-     33 27.0656 97 1 1 -160.613 34.6943 -174.85 
-Number of digits in this event =  16
+Number of tracker hits in this event =  14
+     33 186.687 899 3 1 -0.204842 0.0830248 -114.45 
+     33 197.592 900 3 0 -0.205446 0.0810268 -115.85 
+     33 28.1901 899 2 1 -0.218262 0.0503297 -144.45 
+     33 142.555 898 1 1 -0.291329 -0.0734681 -174.45 
+     33 121.115 899 1 0 -0.293358 -0.0835143 -175.85 
+     33 117.128 898 0 1 -0.314143 -0.244353 -204.45 
+     33 125.015 899 0 0 -0.311713 -0.246663 -205.85 
+     33 131.813 856 3 1 -8.78973 -2.88231 -114.45 
+     33 96.6046 857 3 1 -8.65 -3.24246 -114.469 
+     33 101.927 858 3 1 -8.45 -3.35846 -114.604 
+     33 49.4363 859 3 1 -8.25 -3.17484 -114.78 
+     33 0.735489 889 3 0 -8.28892 -2.05504 -115.85 
+     33 157.183 890 3 0 -8.28918 -2.05 -115.855 
+     33 314.253 851 3 0 3.30192 -9.78671 -116.25 
+Number of digits in this event =  9
 Event: 34
-Number of tracker hits in this event =  11
-     34 148.381 900 4 1 0.232974 0.0818048 -84.45 
-     34 113.225 900 4 0 0.238146 0.0912306 -85.85 
-     34 140.662 901 3 1 0.329151 0.289515 -114.45 
-     34 106.684 901 3 0 0.338985 0.291838 -115.85 
-     34 140.821 902 2 1 0.547525 0.32076 -144.45 
-     34 108.035 901 2 0 0.554648 0.322083 -145.85 
-     34 145.993 903 1 1 0.69393 0.346604 -174.45 
-     34 135.488 901 1 0 0.69808 0.352301 -175.85 
-     34 124.58 903 0 1 0.779658 0.501775 -204.45 
-     34 126.286 902 0 0 0.780937 0.501223 -205.85 
-     34 13.8119 108 3 0 150.154 -158.55 -116.232 
-Number of digits in this event =  10
+Number of tracker hits in this event =  5
+     34 124.83 895 1 1 -0.962369 0.13068 -174.45 
+     34 128.617 900 1 0 -0.973962 0.136587 -175.85 
+     34 125.32 894 0 1 -1.20017 0.29752 -204.45 
+     34 170.018 901 0 0 -1.2058 0.31064 -205.85 
+     34 36.046 1583 5 0 -50.3605 136.8 -56.0792 
+Number of digits in this event =  6
 Event: 35
 Number of tracker hits in this event =  12
-     35 144.88 900 5 1 0.0857551 -0.0655039 -54.45 
-     35 176.303 899 5 0 0.0897176 -0.0714192 -55.85 
-     35 111.943 900 4 1 0.156121 -0.201606 -84.45 
-     35 122 899 4 0 0.156714 -0.208932 -85.85 
-     35 199.372 900 3 1 0.173097 -0.343659 -114.45 
-     35 202.384 898 3 0 0.170627 -0.353542 -115.85 
-     35 160.286 900 2 1 0.124558 -0.556054 -144.45 
-     35 172.983 897 2 0 0.12304 -0.560568 -145.85 
-     35 128.245 900 1 1 0.0699698 -0.656672 -174.45 
-     35 118.906 896 1 0 0.0745513 -0.662894 -175.85 
-     35 144.053 900 0 1 0.160831 -0.79953 -204.45 
-     35 113.412 896 0 0 0.162817 -0.810549 -205.85 
-Number of digits in this event =  10
+     35 176.415 899 4 1 -0.180497 0.236832 -84.45 
+     35 189.645 900 4 0 -0.187365 0.241255 -85.85 
+     35 132.15 898 3 1 -0.34349 0.318983 -114.45 
+     35 117.267 901 3 0 -0.355268 0.319611 -115.85 
+     35 117.446 897 2 1 -0.586906 0.323363 -144.45 
+     35 222.07 901 2 0 -0.599693 0.323478 -145.85 
+     35 206.698 895 1 1 -0.865241 0.316312 -174.45 
+     35 141.837 901 1 0 -0.880741 0.314239 -175.85 
+     35 118.971 894 0 1 -1.19561 0.262441 -204.45 
+     35 147.51 901 0 0 -1.20524 0.263284 -205.85 
+     35 655.555 898 4 1 -0.25 0.19868 -84.5609 
+     35 51.6176 897 4 1 -0.45 -0.568283 -84.7806 
+Number of digits in this event =  9
 Event: 36
-Number of tracker hits in this event =  18
-     36 145.312 900 5 1 0.0706879 0.0868188 -54.45 
-     36 140.601 900 5 0 0.0776608 0.0932391 -55.85 
-     36 135.767 900 4 1 0.196325 0.20675 -84.45 
-     36 160.211 900 4 0 0.199444 0.211998 -85.85 
-     36 140.788 901 3 1 0.26363 0.297277 -114.45 
-     36 136.947 901 3 0 0.263411 0.297295 -115.85 
-     36 115.91 901 2 1 0.255041 0.283558 -144.45 
-     36 134.747 901 2 0 0.2567 0.280818 -145.85 
-     36 133.872 901 1 1 0.29219 0.211118 -174.45 
-     36 128.764 900 1 0 0.299382 0.214751 -175.85 
-     36 136.52 901 0 1 0.440184 0.285695 -204.45 
-     36 214.559 901 0 0 0.441439 0.285805 -205.85 
-     36 11.854 783 0 0 18.1328 -23.4117 -206.25 
-     36 63.954 782 0 0 18.1543 -23.45 -206.232 
-     36 113.875 781 0 0 18.2426 -23.65 -206.153 
-     36 30.2161 780 0 0 18.3696 -23.85 -205.901 
-     36 227.123 994 0 1 18.903 -24.02 -204.85 
-     36 55.5629 993 0 1 18.85 -23.9485 -204.479 
-Number of digits in this event =  13
+Number of tracker hits in this event =  6
+     36 95.382 899 2 1 -0.150421 -0.0804201 -144.45 
+     36 126.046 899 2 0 -0.154509 -0.0866206 -145.85 
+     36 165.941 899 1 1 -0.239005 -0.195331 -174.45 
+     36 168.175 899 1 0 -0.240233 -0.199568 -175.85 
+     36 151.749 898 0 1 -0.265096 -0.294516 -204.45 
+     36 124.114 898 0 0 -0.267397 -0.298378 -205.85 
+Number of digits in this event =  6
 Event: 37
-Number of tracker hits in this event =  10
-     37 144.156 900 4 1 0.0832544 0.179604 -84.45 
-     37 135.037 900 4 0 0.0884216 0.183144 -85.85 
-     37 144.424 900 3 1 0.189452 0.269925 -114.45 
-     37 125.768 901 3 0 0.196164 0.275098 -115.85 
-     37 144.58 901 2 1 0.342813 0.368643 -144.45 
-     37 133.615 901 2 0 0.351562 0.372374 -145.85 
-     37 160.362 902 1 1 0.547651 0.473712 -174.45 
-     37 152.216 902 1 0 0.554496 0.485332 -175.85 
-     37 123.541 903 0 1 0.675026 0.725015 -204.45 
-     37 148.171 903 0 0 0.682412 0.746242 -205.85 
-Number of digits in this event =  11
+Number of tracker hits in this event =  7
+     37 158.469 903 1 1 0.737256 -0.0743536 -174.45 
+     37 165.114 899 1 0 0.738131 -0.0796896 -175.85 
+     37 205.649 903 0 1 0.755353 -0.188467 -204.45 
+     37 150.819 899 0 0 0.756666 -0.19527 -205.85 
+     37 4.81582 1566 7 0 2.48872 133.503 3.75 
+     37 12.5843 810 9 1 -17.85 -15.9184 65.5254 
+     37 7.37241 806 6 1 -18.7913 56.4082 -24.85 
+Number of digits in this event =  7
 Event: 38
-Number of tracker hits in this event =  4
-     38 165.754 900 1 1 0.112024 -0.811989 -174.45 
-     38 139.429 896 1 0 0.114373 -0.819413 -175.85 
-     38 142.428 900 0 1 0.189136 -0.974597 -204.45 
-     38 136.216 895 0 0 0.192291 -0.985654 -205.85 
-Number of digits in this event =  5
+Number of tracker hits in this event =  14
+     38 126.836 900 4 1 0.0784528 -0.119267 -84.45 
+     38 129.486 899 4 0 0.0816599 -0.119116 -85.85 
+     38 196.95 900 3 1 0.117003 -0.101473 -114.45 
+     38 120.756 899 3 0 0.119822 -0.113829 -115.85 
+     38 153.638 900 2 1 0.194343 -0.352516 -144.45 
+     38 172.293 898 2 0 0.197284 -0.367059 -145.85 
+     38 129.964 900 1 1 0.242375 -0.693889 -174.45 
+     38 145.257 896 1 0 0.244482 -0.704825 -175.85 
+     38 133.954 901 0 1 0.293988 -0.925731 -204.45 
+     38 247.75 895 0 0 0.290924 -0.936762 -205.85 
+     38 218.913 896 0 0 0.0500866 -0.85 -206.141 
+     38 26.4402 896 0 1 -0.836852 -0.387967 -204.85 
+     38 263.554 895 0 1 -0.85 -0.368631 -204.771 
+     38 209.204 894 0 1 -1.05 -0.287299 -204.505 
+Number of digits in this event =  14
 Event: 39
 Number of tracker hits in this event =  10
-     39 125.055 900 4 1 0.118129 0.29885 -84.45 
-     39 232.776 901 4 0 0.117098 0.307211 -85.85 
-     39 118.112 900 3 1 0.0887378 0.458545 -114.45 
-     39 138.055 902 3 0 0.0880045 0.469491 -115.85 
-     39 150.692 900 2 1 0.0830677 0.669609 -144.45 
-     39 133.575 903 2 0 0.0774062 0.678506 -145.85 
-     39 140.282 899 0 1 -0.182506 1.03276 -204.45 
-     39 175.124 904 0 0 -0.184108 1.03907 -205.85 
-     39 199.365 900 4 0 -0.05 0.166249 -86.0335 
-     39 256.266 899 4 0 -0.399255 -0.05 -86.0117 
-Number of digits in this event =  10
+     39 112.924 899 4 1 -0.0829295 0.176581 -84.45 
+     39 148.516 900 4 0 -0.0834837 0.184642 -85.85 
+     39 131.938 899 3 1 -0.0898609 0.347398 -114.45 
+     39 130.379 901 3 0 -0.0824764 0.350583 -115.85 
+     39 163.252 900 2 1 0.0881823 0.418437 -144.45 
+     39 182.31 901 2 0 0.0981736 0.421208 -145.85 
+     39 159.231 901 1 1 0.303994 0.468343 -174.45 
+     39 159.838 902 1 0 0.319137 0.472218 -175.85 
+     39 119.572 902 0 1 0.639265 0.566445 -204.45 
+     39 118.223 902 0 0 0.652078 0.571815 -205.85 
+Number of digits in this event =  8
 Event: 40
-Number of tracker hits in this event =  26
-     40 137.614 899 4 1 -0.213242 -0.134045 -84.45 
-     40 121.768 899 4 0 -0.225418 -0.13804 -85.85 
-     40 157.487 897 3 1 -0.475731 -0.218332 -114.45 
-     40 164.862 899 3 0 -0.490673 -0.218989 -115.85 
-     40 242.03 896 2 1 -0.832033 -0.181906 -144.45 
-     40 144.178 899 2 0 -0.8522 -0.179795 -145.85 
-     40 124.786 894 1 1 -1.23984 -0.129867 -174.45 
-     40 120.53 899 1 0 -1.26177 -0.132084 -175.85 
-     40 154.36 891 0 1 -1.70909 -0.170302 -204.45 
-     40 140.617 899 0 0 -1.73488 -0.169733 -205.85 
-     40 87.7836 900 2 0 -0.475112 0.175688 -145.85 
-     40 56.1848 901 2 0 -0.402141 0.25 -146.092 
-     40 114.749 1100 2 0 50.2071 40.0526 -146.25 
-     40 79.6998 1101 2 0 50.5472 40.25 -146.087 
-     40 262.312 1102 2 0 50.6956 40.45 -146.032 
-     40 68.1328 1103 2 0 50.8695 40.65 -146.005 
-     40 83.1817 1104 2 0 50.9939 40.85 -145.989 
-     40 86.8627 1105 2 0 51.1678 41.05 -145.932 
-     40 67.6157 1106 2 0 51.3608 41.25 -145.926 
-     40 68.9638 1107 2 0 51.428 41.45 -145.932 
-     40 76.5653 1108 2 0 51.4419 41.65 -145.952 
-     40 54.3807 1109 2 0 51.5383 41.85 -145.992 
-     40 51.1556 1158 2 1 51.8176 42.1134 -144.85 
-     40 95.2716 1159 2 1 51.85 42.1143 -144.78 
-     40 174.935 1160 2 1 52.05 42.2127 -144.637 
-     40 152.708 1161 2 1 52.25 42.4182 -144.518 
-Number of digits in this event =  14
+Number of tracker hits in this event =  8
+     40 172.447 900 3 1 0.203162 0.168872 -114.45 
+     40 107.438 900 3 0 0.209094 0.170159 -115.85 
+     40 140.483 901 2 1 0.34294 0.214147 -144.45 
+     40 258.857 900 2 0 0.338978 0.221399 -145.85 
+     40 165.261 901 1 1 0.261267 0.37529 -174.45 
+     40 458.614 901 1 0 0.257251 0.384605 -175.85 
+     40 142.48 900 0 1 0.172168 0.57588 -204.45 
+     40 132.959 902 0 0 0.163298 0.582677 -205.85 
+Number of digits in this event =  8
 Event: 41
 Number of tracker hits in this event =  12
-     41 130.919 899 5 1 -0.136251 -0.129624 -54.45 
-     41 135.676 899 5 0 -0.144373 -0.136846 -55.85 
-     41 132.679 898 4 1 -0.288612 -0.286156 -84.45 
-     41 133.268 898 4 0 -0.293076 -0.292638 -85.85 
-     41 132.731 898 3 1 -0.382625 -0.434357 -114.45 
-     41 201.087 898 3 0 -0.377892 -0.446275 -115.85 
-     41 143.417 898 2 1 -0.298105 -0.695482 -144.45 
-     41 186.798 896 2 0 -0.298133 -0.716553 -145.85 
-     41 141.714 898 1 1 -0.299027 -1.14694 -174.45 
-     41 161.407 894 1 0 -0.295383 -1.16695 -175.85 
-     41 143.558 899 0 1 -0.240843 -1.56292 -204.45 
-     41 150.151 892 0 0 -0.23994 -1.57914 -205.85 
-Number of digits in this event =  13
+     41 20.8884 900 3 1 0.0507623 -0.0501785 -114.45 
+     41 121.955 901 1 1 0.255304 0.129774 -174.45 
+     41 170.064 900 1 0 0.264544 0.137951 -175.85 
+     41 177.053 902 0 1 0.456958 0.301729 -204.45 
+     41 124.695 901 0 0 0.466742 0.304168 -205.85 
+     41 88.7016 900 1 1 0.25 0.122126 -174.496 
+     41 436.505 903 1 0 -1.07019 0.748962 -175.85 
+     41 75.1547 904 1 0 -1.12015 0.85 -175.983 
+     41 42.1632 902 1 0 -1.38358 0.65 -175.902 
+     41 218.189 894 1 1 -1.07644 -0.335081 -174.85 
+     41 237.228 899 3 1 -0.05 -0.165109 -114.568 
+     41 62.7164 898 3 1 -0.25 -0.333387 -114.655 
+Number of digits in this event =  8
 Event: 42
-Number of tracker hits in this event =  84
-     42 126.551 900 5 1 0.0923362 -0.107318 -54.45 
-     42 113.661 899 5 0 0.0881825 -0.113662 -55.85 
-     42 186.724 900 3 1 0.14726 -1.70663 -114.45 
-     42 129.841 891 3 0 0.158514 -1.78175 -115.85 
-     42 223.478 901 2 1 0.393561 -3.31588 -144.45 
-     42 114.743 883 2 0 0.407598 -3.38735 -145.85 
-     42 121.993 903 1 1 0.682265 -4.88025 -174.45 
-     42 284.11 875 1 0 0.694457 -4.95347 -175.85 
-     42 133.476 904 0 1 0.954871 -6.44486 -204.45 
-     42 160.289 867 0 0 0.965319 -6.51696 -205.85 
-     42 347.248 882 2 0 0.636032 -3.50546 -145.85 
-     42 164.185 859 0 0 5.31927 -8.18571 -206.25 
-     42 107.025 927 0 1 5.51279 -8.31484 -204.85 
-     42 23.1307 789 1 0 7.00126 -22.2113 -176.25 
-     42 138.498 788 1 0 7.00504 -22.25 -176.172 
-     42 113.591 935 1 1 7.08712 -22.8765 -174.85 
-     42 129.999 794 2 0 10.1743 -21.1447 -146.25 
-     42 122.117 952 2 1 10.5068 -21.0713 -144.85 
-     42 131.829 886 0 0 13.4409 -2.72942 -206.25 
-     42 17.6744 887 0 0 13.6006 -2.65 -205.889 
-     42 151.215 970 0 1 14.0646 -2.43095 -204.85 
-     42 131.575 907 1 0 27.6752 1.50839 -176.25 
-     42 138.036 1041 1 1 28.3516 1.69272 -174.85 
-     42 105.233 1042 1 1 28.45 1.71899 -174.647 
-     42 384.39 921 2 0 40.4968 4.35383 -146.25 
-     42 98.4638 1105 2 1 41.1067 4.48111 -144.85 
-     42 24.5624 1106 2 1 41.25 4.51048 -144.525 
-     42 143.305 927 3 0 52.3535 5.50575 -116.25 
-     42 123.805 1164 3 1 52.8767 5.5565 -114.85 
-     42 134.389 939 4 0 67.4082 7.85158 -86.25 
-     42 79.4063 1240 4 1 68.1245 7.99678 -84.85 
-     42 43.3131 1241 4 1 68.25 8.02443 -84.6047 
-     42 70.6147 963 5 0 82.2154 12.8132 -56.25 
-     42 66.9012 964 5 0 82.3218 12.85 -56.0339 
-     42 84.3042 1314 5 1 82.9318 13.0581 -54.85 
-     42 101.91 1315 5 1 83.05 13.098 -54.6207 
-     42 133.881 968 6 0 95.3763 13.65 -26.25 
-     42 86.6341 1379 6 1 96.0113 13.6711 -24.85 
-     42 31.0259 1380 6 1 96.15 13.6752 -24.5492 
-     42 124.571 967 7 0 106.2 13.5345 3.75 
-     42 54.2543 1432 7 1 106.7 13.5563 5.15 
-     42 92.3526 1433 7 1 106.75 13.5594 5.28958 
-     42 2.10869 1037 8 0 114.684 27.6464 33.75 
-     42 128.728 1038 8 0 114.686 27.65 33.7571 
-     42 264.186 1474 8 1 115.068 28.3835 35.15 
-     42 64.4877 1048 8 0 114.561 29.7335 34.15 
-     42 111.639 1049 8 0 114.505 29.85 34.0253 
-     42 32.1488 1050 8 0 114.408 30.05 33.8251 
-     42 71.0323 1395 7 1 99.3403 58.841 5.55 
-     42 60.4473 1394 7 1 99.15 58.7816 5.43956 
-     42 69.41 1393 7 1 98.95 58.7299 5.31098 
-     42 8.35009 1392 7 1 98.75 58.6727 5.1724 
-     42 53.1823 1191 7 0 97.5909 58.2946 4.15 
-     42 120.133 1190 7 0 97.4539 58.25 4.02903 
-     42 140.539 1173 6 1 54.8404 40.3917 -24.45 
-     42 186.677 1098 6 0 54.3246 39.8084 -25.85 
-     42 87.6418 1077 5 1 35.4625 24.3182 -54.45 
-     42 71.0934 1076 5 1 35.45 24.5116 -54.685 
-     42 11.5565 1025 5 0 35.5183 25.2334 -55.85 
-     42 104.437 1026 5 0 35.5208 25.25 -55.8771 
-     42 21.7584 1027 5 0 35.5387 25.45 -56.1672 
-     42 115.867 1124 4 1 44.9932 150.417 -84.45 
-     42 104.649 1651 4 0 44.6969 150.506 -85.85 
-     42 42.7045 1749 4 0 44.3772 170.086 -86.25 
-     42 65.9177 1750 4 0 44.4106 170.15 -86.1069 
-     42 223.211 1123 4 1 44.7373 171.072 -84.85 
-     42 375.782 1782 5 0 126.241 176.678 -56.25 
-     42 427.183 1783 5 0 126.67 176.75 -56.132 
-     42 48.8281 1542 5 1 128.65 175.977 -54.85 
-     42 95.0634 1543 5 1 128.75 175.919 -54.7772 
-     42 336.703 1544 5 1 128.95 175.776 -54.5185 
-     42 13.9241 1780 5 0 128.045 176.329 -55.85 
-     42 85.0453 1781 5 0 128.008 176.35 -55.892 
-     42 177.155 1725 11 1 165.178 -91.1922 125.55 
-     42 239.734 447 11 0 166.113 -90.7282 124.15 
-     42 130.987 949 10 0 107.352 10.027 93.75 
-     42 334.676 950 10 0 107.215 10.05 93.9447 
-     42 164.682 1208 10 0 101.671 61.8021 93.75 
-     42 83.5133 1209 10 0 101.635 61.85 93.8651 
-     42 81.7274 996 7 0 105.546 19.3602 4.08621 
-     42 6.05717 997 7 0 105.605 19.45 4.13868 
-     42 108.278 1437 7 1 107.678 22.5972 5.15 
-     42 62.6177 1010 7 0 107.646 22.187 4.15 
-     42 280.614 1009 7 0 107.681 22.05 4.0436 
-Number of digits in this event =  41
+Number of tracker hits in this event =  7
+     42 107.37 899 3 0 0.0831158 -0.052992 -115.85 
+     42 113.757 900 2 1 0.179357 -0.169692 -144.45 
+     42 155.439 899 2 0 0.177456 -0.174657 -145.85 
+     42 114.292 900 1 1 0.158311 -0.298592 -174.45 
+     42 137.833 898 1 0 0.159516 -0.30675 -175.85 
+     42 211.829 900 0 1 0.195228 -0.486038 -204.45 
+     42 122.153 897 0 0 0.19681 -0.49641 -205.85 
+Number of digits in this event =  5
 Event: 43
-Number of tracker hits in this event =  24
-     43 137.487 900 5 0 0.14312 0.0501024 -55.85 
-     43 160.054 900 4 1 0.198585 0.117534 -84.45 
-     43 113.057 900 4 0 0.209631 0.119847 -85.85 
-     43 111.969 901 3 1 0.434852 0.167216 -114.45 
-     43 121.499 900 3 0 0.444153 0.171568 -115.85 
-     43 126.498 903 2 1 0.657832 0.244382 -144.45 
-     43 129.252 900 2 0 0.670119 0.246143 -145.85 
-     43 134.576 904 1 1 0.922134 0.272674 -174.45 
-     43 119.073 901 1 0 0.937999 0.265656 -175.85 
-     43 85.2799 905 0 1 1.2459 0.119647 -204.45 
-     43 75.0659 906 0 1 1.25 0.120955 -204.635 
-     43 248.683 900 0 0 1.27684 0.12955 -205.85 
-     43 6.14269 1339 1 0 -172.279 87.85 -176.234 
-     43 8.09487 1220 4 0 6.99387 64.05 -86.2046 
-     43 7.21524 745 11 1 -31.045 -82.4037 125.55 
-     43 0.113211 1548 5 0 119.714 129.949 -56.0734 
-     43 77.0752 1549 5 0 119.714 129.95 -56.0732 
-     43 44.859 1550 5 0 119.761 130.15 -55.9704 
-     43 63.092 1497 5 1 119.65 130.784 -54.85 
-     43 176.031 1496 5 1 119.55 130.847 -54.7119 
-     43 305.454 1495 5 1 119.35 130.862 -54.6173 
-     43 33.9312 1558 5 0 117.238 131.832 -55.85 
-     43 59.2979 1485 5 1 117.152 130.355 -54.85 
-     43 28.0566 1484 5 1 117.15 130.351 -54.8447 
-Number of digits in this event =  13
+Number of tracker hits in this event =  9
+     43 158.83 900 2 1 0.0801775 -0.806814 -144.45 
+     43 193.767 896 2 0 0.0864365 -0.827917 -145.85 
+     43 150.704 900 1 1 0.213555 -1.25401 -174.45 
+     43 164.168 893 1 0 0.209286 -1.27927 -175.85 
+     43 146.795 900 0 1 0.12705 -1.79573 -204.45 
+     43 141.878 891 0 0 0.124538 -1.81668 -205.85 
+     43 7.01155 25 2 0 47.2762 -174.95 -145.931 
+     43 13.1617 26 2 0 47.0041 -174.95 -145.908 
+     43 13.7418 1779 0 1 176.15 101.058 -204.825 
+Number of digits in this event =  9
 Event: 44
-Number of tracker hits in this event =  13
-     44 95.9651 900 5 1 0.0519693 -0.05 -54.5249 
-     44 131.814 899 5 0 0.0586206 -0.0533969 -55.85 
-     44 147.933 900 4 1 0.191519 -0.122658 -84.45 
-     44 132.574 899 4 0 0.196001 -0.133576 -85.85 
-     44 170.356 901 3 1 0.304236 -0.369934 -114.45 
-     44 141.564 898 3 0 0.29992 -0.37716 -115.85 
-     44 164.322 900 2 1 0.203551 -0.535784 -144.45 
-     44 405.597 897 2 0 0.201749 -0.542205 -145.85 
-     44 109.075 900 1 1 0.191199 -0.690701 -174.45 
-     44 119.099 896 1 0 0.187435 -0.693537 -175.85 
-     44 110.874 900 0 1 0.0949308 -0.75803 -204.45 
-     44 144.426 896 0 0 0.0901223 -0.760433 -205.85 
-     44 697.905 899 5 1 -0.05 -0.117486 -54.5695 
-Number of digits in this event =  10
-Event: 45
 Number of tracker hits in this event =  10
-     45 115.704 899 4 1 -0.105736 0.138296 -84.45 
-     45 137.289 900 4 0 -0.109636 0.140983 -85.85 
-     45 141.652 899 3 1 -0.178808 0.186507 -114.45 
-     45 196.873 900 3 0 -0.190351 0.187057 -115.85 
-     45 199.03 898 2 1 -0.439562 0.211123 -144.45 
-     45 122.522 900 2 0 -0.454379 0.214749 -145.85 
-     45 190.508 896 1 1 -0.731249 0.296002 -174.45 
-     45 194.125 901 1 0 -0.739863 0.301567 -175.85 
-     45 144.678 895 0 1 -0.921188 0.435913 -204.45 
-     45 119.338 901 0 0 -0.930506 0.445884 -205.85 
+     44 135.963 900 3 1 0.127662 0.0556525 -114.45 
+     44 400.094 900 3 0 0.148321 0.0554831 -115.85 
+     44 84.372 902 2 1 0.570125 0.0516306 -144.45 
+     44 137.589 904 1 1 0.982963 -0.138979 -174.45 
+     44 126.855 899 1 0 1.00441 -0.143913 -175.85 
+     44 360.396 906 0 1 1.44484 -0.25126 -204.45 
+     44 28.3888 907 0 1 1.45 -0.252146 -204.747 
+     44 142.315 898 0 0 1.46791 -0.254959 -205.85 
+     44 192.034 895 3 1 -0.861034 0.607096 -114.85 
+     44 187.721 894 3 1 -1.05 0.531505 -114.549 
 Number of digits in this event =  9
+Event: 45
+Number of tracker hits in this event =  10
+     45 132.489 898 4 1 -0.269369 0.1246 -84.45 
+     45 125.947 900 4 0 -0.286773 0.128355 -85.85 
+     45 147.294 896 3 1 -0.652562 0.215276 -114.45 
+     45 142.989 900 3 0 -0.669753 0.214707 -115.85 
+     45 123.453 895 2 1 -1.00586 0.205001 -144.45 
+     45 131.305 900 2 0 -1.02765 0.208057 -145.85 
+     45 141.124 892 1 1 -1.4628 0.263653 -174.45 
+     45 197.711 901 1 0 -1.47586 0.25496 -175.85 
+     45 142.794 891 0 1 -1.72625 0.0736744 -204.45 
+     45 149.105 900 0 0 -1.73547 0.0660567 -205.85 
+Number of digits in this event =  11
 Event: 46
-Number of tracker hits in this event =  8
-     46 134.281 900 3 1 0.109504 0.129898 -114.45 
-     46 222.289 900 3 0 0.112151 0.13614 -115.85 
-     46 113.086 900 2 1 0.176234 0.273431 -144.45 
-     46 143.717 901 2 0 0.170675 0.281346 -145.85 
-     46 187.054 900 1 1 0.0599086 0.43277 -174.45 
-     46 180.307 901 1 0 0.0545415 0.442147 -175.85 
-     46 119.009 899 0 1 -0.0553003 0.624004 -204.45 
-     46 191.688 902 0 0 -0.0587102 0.635553 -205.85 
-Number of digits in this event =  9
+Number of tracker hits in this event =  24
+     46 142.29 900 5 1 0.192329 -0.167015 -54.45 
+     46 147.346 899 5 0 0.203494 -0.179536 -55.85 
+     46 140.055 901 4 1 0.41275 -0.436451 -84.45 
+     46 120.777 898 4 0 0.420173 -0.442668 -85.85 
+     46 127.612 902 3 1 0.56929 -0.565655 -114.45 
+     46 141.565 897 3 0 0.576585 -0.586085 -115.85 
+     46 136.864 903 2 1 0.733383 -1.01937 -144.45 
+     46 127.805 895 2 0 0.740128 -1.03875 -145.85 
+     46 213.224 904 1 1 0.855465 -1.43542 -174.45 
+     46 122.619 892 1 0 0.859797 -1.4519 -175.85 
+     46 115.792 904 0 1 0.903632 -1.81014 -204.45 
+     46 133.836 891 0 0 0.905994 -1.82805 -205.85 
+     46 43.15 423 6 0 -24.1135 -95.3814 -26.25 
+     46 28.3559 872 4 0 15.2952 -5.51766 -86.25 
+     46 12.9325 645 9 0 6.45277 -50.85 64.0363 
+     46 11.57 896 3 0 0.544169 -0.65 -116.232 
+     46 127.101 570 1 1 -65.9444 -136.29 -174.65 
+     46 33.8016 569 1 1 -66.05 -136.385 -174.769 
+     46 167.01 217 1 0 -67.2022 -136.597 -175.85 
+     46 239.325 216 1 0 -67.3585 -136.75 -175.944 
+     46 23.1571 1426 0 0 -12.7138 105.513 -206.25 
+     46 120.373 1427 0 0 -12.6646 105.55 -206.196 
+     46 114.357 923 9 1 4.66846 -49.7432 65.4629 
+     46 110.212 358 5 1 -108.393 -1.23379 -54.5557 
+Number of digits in this event =  18
 Event: 47
-Number of tracker hits in this event =  13
-     47 140.628 899 5 1 -0.0626424 0.182446 -54.45 
-     47 125.383 900 5 0 -0.0642967 0.188841 -55.85 
-     47 138.928 899 4 1 -0.0920891 0.297048 -84.45 
-     47 219.687 901 4 0 -0.0924183 0.303471 -85.85 
-     47 133.603 899 3 1 -0.102341 0.443487 -114.45 
-     47 147.95 902 3 0 -0.105575 0.454529 -115.85 
-     47 165.146 899 2 1 -0.161912 0.672114 -144.45 
-     47 120.005 903 2 0 -0.163528 0.682011 -145.85 
-     47 160.026 899 1 1 -0.202648 0.895869 -174.45 
-     47 137.041 904 1 0 -0.197941 0.9026 -175.85 
-     47 212.567 899 0 1 -0.0869103 1.06738 -204.45 
-     47 143.728 905 0 0 -0.0790893 1.07562 -205.85 
-     47 29.2395 1189 9 1 58.0382 156.85 65.4275 
-Number of digits in this event =  13
+Number of tracker hits in this event =  15
+     47 114.939 900 5 1 0.0867039 -0.0562801 -54.45 
+     47 533.592 899 5 0 0.0952181 -0.0613665 -55.85 
+     47 183.212 901 4 1 0.270006 -0.17576 -84.45 
+     47 149.885 899 4 0 0.273585 -0.188745 -85.85 
+     47 135.751 901 3 1 0.340721 -0.446488 -114.45 
+     47 122.077 897 3 0 0.344124 -0.4583 -115.85 
+     47 137.391 901 2 1 0.40514 -0.720103 -144.45 
+     47 134.295 896 2 0 0.40766 -0.738291 -145.85 
+     47 112.794 902 1 1 0.472789 -1.10791 -174.45 
+     47 119.173 894 1 0 0.474633 -1.1212 -175.85 
+     47 197.694 902 0 1 0.485813 -1.38688 -204.45 
+     47 139.564 893 0 0 0.491693 -1.39951 -205.85 
+     47 30.7345 901 0 1 0.45 -1.42023 -204.827 
+     47 44.8437 874 0 0 -3.36747 -5.21694 -205.85 
+     47 343.057 873 0 0 -3.39575 -5.25 -205.856 
+Number of digits in this event =  11
 Event: 48
-Number of tracker hits in this event =  10
-     48 119.799 899 4 1 -0.219154 -0.140554 -84.45 
-     48 122.694 899 4 0 -0.22383 -0.14357 -85.85 
-     48 107.065 898 3 1 -0.293057 -0.198724 -114.45 
-     48 132.363 899 3 0 -0.295651 -0.203565 -115.85 
-     48 116.733 898 2 1 -0.318584 -0.304221 -144.45 
-     48 137.497 898 2 0 -0.3143 -0.304679 -145.85 
-     48 111.631 899 1 1 -0.217169 -0.285224 -174.45 
-     48 174.633 898 1 0 -0.217989 -0.29284 -175.85 
-     48 138.351 899 0 1 -0.202729 -0.457017 -204.45 
-     48 117.248 897 0 0 -0.202262 -0.475479 -205.85 
-Number of digits in this event =  6
+Number of tracker hits in this event =  12
+     48 229.188 899 5 1 -0.0617721 -0.136816 -54.45 
+     48 352.762 899 5 0 -0.0629428 -0.148212 -55.85 
+     48 135.012 899 4 1 -0.0745738 -0.374704 -84.45 
+     48 245.336 898 4 0 -0.0756797 -0.38877 -85.85 
+     48 126.35 899 3 1 -0.0896992 -0.675853 -114.45 
+     48 258.955 896 3 0 -0.0885837 -0.689905 -115.85 
+     48 128.82 899 2 1 -0.0642103 -0.96997 -144.45 
+     48 202.612 895 2 0 -0.0655272 -0.976621 -145.85 
+     48 160.164 899 1 1 -0.125592 -1.09726 -174.45 
+     48 155.013 894 1 0 -0.130117 -1.09853 -175.85 
+     48 152.566 899 0 1 -0.20605 -1.11799 -204.45 
+     48 219.778 894 0 0 -0.211679 -1.116 -205.85 
+Number of digits in this event =  14
 Event: 49
-Number of tracker hits in this event =  13
-     49 115.373 900 4 0 0.563476 0.0542235 -85.85 
-     49 193.152 904 3 1 0.972498 0.157468 -114.45 
-     49 110.002 900 3 0 0.99148 0.164899 -115.85 
-     49 205.517 906 2 1 1.39689 0.330799 -144.45 
-     49 126.822 901 2 0 1.41753 0.336171 -145.85 
-     49 173.156 908 1 1 1.82927 0.441005 -174.45 
-     49 148.331 901 1 0 1.85324 0.441509 -175.85 
-     49 140.017 911 0 1 2.33651 0.463924 -204.45 
-     49 174.067 902 0 0 2.35751 0.46483 -205.85 
-     49 96.3214 903 3 1 0.85 0.240141 -114.624 
-     49 66.2594 902 3 1 0.65 0.199272 -114.746 
-     49 182.847 901 3 1 0.45 0.205311 -114.8 
-     49 257.983 900 3 1 0.25 0.0922154 -114.755 
-Number of digits in this event =  10
+Number of tracker hits in this event =  8
+     49 110.055 900 5 1 0.0660765 0.0572277 -54.45 
+     49 121.789 900 5 0 0.0762126 0.0560711 -55.85 
+     49 179.886 903 2 1 0.813735 -0.0664945 -144.45 
+     49 127.232 899 2 0 0.825257 -0.0671989 -145.85 
+     49 118.247 904 1 1 1.04669 -0.0710409 -174.45 
+     49 178.825 899 1 0 1.05537 -0.0716019 -175.85 
+     49 140.01 905 0 1 1.23106 -0.0903079 -204.45 
+     49 200.345 899 0 0 1.24266 -0.0949064 -205.85 
+Number of digits in this event =  7
 Event: 50
-Number of tracker hits in this event =  10
-     50 204.929 900 4 1 0.0543767 -0.131961 -84.45 
-     50 154.057 899 4 0 0.0550535 -0.140858 -85.85 
-     50 148.678 900 3 1 0.0609536 -0.338277 -114.45 
-     50 111.936 898 3 0 0.062467 -0.356347 -115.85 
-     50 132.957 900 2 1 0.0859697 -0.728195 -144.45 
-     50 179.149 896 2 0 0.0909329 -0.746103 -145.85 
-     50 124.645 900 1 1 0.22472 -1.11313 -174.45 
-     50 130.655 894 1 0 0.236131 -1.13237 -175.85 
-     50 127.009 902 0 1 0.475044 -1.52417 -204.45 
-     50 132.529 892 0 0 0.484375 -1.54059 -205.85 
-Number of digits in this event =  10
+Number of tracker hits in this event =  21
+     50 140.117 900 5 1 0.106234 0.089299 -54.45 
+     50 159.103 900 5 0 0.109818 0.0950164 -55.85 
+     50 116.854 900 4 1 0.176658 0.207688 -84.45 
+     50 130.039 900 4 0 0.182102 0.212627 -85.85 
+     50 115.809 901 3 1 0.268658 0.308148 -114.45 
+     50 153.009 901 3 0 0.272591 0.31444 -115.85 
+     50 119.797 901 2 1 0.339286 0.432945 -144.45 
+     50 156.803 901 2 0 0.330882 0.442444 -145.85 
+     50 193.37 900 1 1 0.166599 0.611433 -174.45 
+     50 169.582 902 1 0 0.156746 0.623029 -175.85 
+     50 142.314 904 0 0 -0.0510237 0.891676 -205.85 
+     50 1.63701 407 14 1 -98.7235 -164.097 215.15 
+     50 1.13759 109 5 0 101.568 -158.202 -56.25 
+     50 13.1168 749 14 0 153.128 -30.05 213.809 
+     50 55.2339 666 0 0 25.6089 -46.682 -206.25 
+     50 89.9482 667 0 0 25.6007 -46.65 -206.226 
+     50 26.6025 322 2 0 6.7489 -115.695 -146.25 
+     50 168.372 321 2 0 6.77277 -115.75 -146.164 
+     50 52.4608 935 2 1 7.24375 -116.2 -144.85 
+     50 156.893 936 2 1 7.25 -116.204 -144.835 
+     50 1.49428 427 3 0 35.0907 -94.55 -116.111 
+Number of digits in this event =  14
 Event: 51
-Number of tracker hits in this event =  10
-     51 122.712 898 4 1 -0.336494 -0.101378 -84.45 
-     51 155.892 899 4 0 -0.346198 -0.108448 -85.85 
-     51 111.89 897 3 1 -0.542147 -0.243353 -114.45 
-     51 128.393 898 3 0 -0.555519 -0.251358 -115.85 
-     51 131.758 896 2 1 -0.82344 -0.39641 -144.45 
-     51 132.882 898 2 0 -0.839496 -0.41496 -145.85 
-     51 170.86 894 1 1 -1.18196 -0.796652 -174.45 
-     51 136.967 896 1 0 -1.20051 -0.809251 -175.85 
-     51 127.647 892 0 1 -1.5492 -1.0486 -204.45 
-     51 117.63 894 0 0 -1.56896 -1.0581 -205.85 
-Number of digits in this event =  9
+Number of tracker hits in this event =  4
+     51 134.443 900 1 1 0.1009 0.18337 -174.45 
+     51 135.402 900 1 0 0.109832 0.184481 -175.85 
+     51 136.247 901 0 1 0.295955 0.192809 -204.45 
+     51 116.884 900 0 0 0.306117 0.193262 -205.85 
+Number of digits in this event =  4
 Event: 52
-Number of tracker hits in this event =  9
-     52 153.633 899 2 1 -0.0943912 0.287197 -144.45 
-     52 121.73 901 2 0 -0.0940678 0.290605 -145.85 
-     52 148.395 899 1 1 -0.088831 0.365877 -174.45 
-     52 120.195 901 1 0 -0.0918506 0.36779 -175.85 
-     52 173.698 899 0 1 -0.142046 0.413656 -204.45 
-     52 115.145 901 0 0 -0.140779 0.412237 -205.85 
-     52 86.2756 947 2 0 -21.0529 9.55145 -146.25 
-     52 108.581 948 2 0 -21.1025 9.65 -146.209 
-     52 107.96 1252 2 0 39.6864 70.6167 -146.25 
-Number of digits in this event =  6
+Number of tracker hits in this event =  13
+     52 210.633 900 5 1 0.086072 -0.0606803 -54.45 
+     52 133.974 899 5 0 0.0944431 -0.0594479 -55.85 
+     52 128.892 901 4 1 0.261458 -0.0539836 -84.45 
+     52 150.972 899 4 0 0.270965 -0.0555643 -85.85 
+     52 128.151 901 3 1 0.443943 -0.0962829 -114.45 
+     52 122.107 899 3 0 0.453821 -0.10152 -115.85 
+     52 239.748 902 2 1 0.629995 -0.190426 -144.45 
+     52 142.318 899 2 0 0.642112 -0.194336 -145.85 
+     52 145.167 903 1 1 0.846986 -0.242019 -174.45 
+     52 150.034 899 1 0 0.855857 -0.242467 -175.85 
+     52 137.741 904 0 1 1.01444 -0.238359 -204.45 
+     52 268.9 899 0 0 1.01957 -0.235197 -205.85 
+     52 25.5193 1673 4 0 168.384 154.786 -86.189 
+Number of digits in this event =  15
 Event: 53
 Number of tracker hits in this event =  9
-     53 157.352 899 4 1 -0.0943537 -0.172325 -84.45 
-     53 122.722 899 4 0 -0.099596 -0.174149 -85.85 
-     53 114.372 899 3 1 -0.197707 -0.197387 -114.45 
-     53 168.338 899 3 0 -0.208695 -0.195163 -115.85 
-     53 131.295 898 2 1 -0.445596 -0.144825 -144.45 
-     53 226.59 899 2 0 -0.454711 -0.139437 -145.85 
-     53 123.221 897 1 1 -0.625985 -0.0533377 -174.45 
-     53 103.379 895 0 1 -0.890234 0.0625418 -204.45 
-     53 134.476 900 0 0 -0.892109 0.0660785 -205.85 
+     53 20.9647 899 4 0 0.267954 -0.05 -86.1989 
+     53 153.677 901 3 1 0.413185 -0.0814321 -114.45 
+     53 172.951 899 3 0 0.421062 -0.085458 -115.85 
+     53 117.475 902 2 1 0.577177 -0.182711 -144.45 
+     53 151.746 899 2 0 0.58432 -0.181561 -145.85 
+     53 150.548 903 1 1 0.732605 -0.140377 -174.45 
+     53 176.159 899 1 0 0.738766 -0.137222 -175.85 
+     53 291.049 904 0 1 0.852848 -0.0641735 -204.45 
+     53 130.935 899 0 0 0.853115 -0.0627697 -205.85 
 Number of digits in this event =  8
 Event: 54
 Number of tracker hits in this event =  12
-     54 111.742 899 5 1 -0.0758373 0.0600237 -54.45 
-     54 126.221 900 5 0 -0.0778573 0.0648068 -55.85 
-     54 113.791 899 4 1 -0.104367 0.172739 -84.45 
-     54 201.411 900 4 0 -0.105458 0.180806 -85.85 
-     54 141.354 899 3 1 -0.149548 0.313247 -114.45 
-     54 176.362 901 3 0 -0.151041 0.317919 -115.85 
-     54 162.043 899 2 1 -0.193034 0.428437 -144.45 
-     54 144.668 901 2 0 -0.193184 0.434251 -145.85 
-     54 138.962 899 1 1 -0.217253 0.555645 -174.45 
-     54 169.499 902 1 0 -0.222452 0.56382 -175.85 
-     54 171.653 898 0 1 -0.335717 0.728508 -204.45 
-     54 125.264 903 0 0 -0.347741 0.73313 -205.85 
-Number of digits in this event =  11
+     54 140.618 899 4 1 -0.228826 0.172947 -84.45 
+     54 115.875 900 4 0 -0.240922 0.184391 -85.85 
+     54 129.031 897 3 1 -0.475294 0.408879 -114.45 
+     54 121.919 901 3 0 -0.480678 0.412646 -115.85 
+     54 332.414 897 2 1 -0.585673 0.470193 -144.45 
+     54 420.83 902 2 0 -0.591928 0.474686 -145.85 
+     54 185.372 896 1 1 -0.729747 0.593298 -174.45 
+     54 166.43 902 1 0 -0.734459 0.601992 -175.85 
+     54 138.393 896 0 1 -0.8379 0.78259 -204.45 
+     54 143.628 903 0 0 -0.836434 0.789436 -205.85 
+     54 49.8604 897 1 1 -0.65 0.475929 -174.7 
+     54 99.9181 899 1 0 -0.318603 -0.05 -175.925 
+Number of digits in this event =  10
 Event: 55
-Number of tracker hits in this event =  15
-     55 132.064 900 5 1 0.127968 -0.0904933 -54.45 
-     55 196.535 899 5 0 0.140726 -0.0960349 -55.85 
-     55 130.899 901 4 1 0.404804 -0.224456 -84.45 
-     55 155.954 899 4 0 0.417589 -0.238654 -85.85 
-     55 197.634 903 3 1 0.670726 -0.533763 -114.45 
-     55 129.456 897 3 0 0.676334 -0.548457 -115.85 
-     55 124.522 903 2 1 0.782288 -0.8199 -144.45 
-     55 119.477 896 2 0 0.788287 -0.831936 -145.85 
-     55 192.063 904 1 1 0.909868 -1.09532 -174.45 
-     55 410.249 894 1 0 0.921766 -1.10719 -175.85 
-     55 284.98 905 0 1 1.17578 -1.37225 -204.45 
-     55 137.431 893 0 0 1.18439 -1.39378 -205.85 
-     55 48.9704 896 0 0 0.440247 -0.811661 -205.85 
-     55 106.807 895 0 0 0.395931 -0.85 -205.934 
-     55 71.222 899 0 1 -0.0731468 -1.17607 -204.85 
-Number of digits in this event =  12
+Number of tracker hits in this event =  8
+     55 158.591 897 3 1 -0.549187 -0.0530543 -114.45 
+     55 139.463 899 3 0 -0.562637 -0.0523339 -115.85 
+     55 159.073 895 2 1 -0.863798 -0.053886 -144.45 
+     55 139.571 899 2 0 -0.878523 -0.0539387 -145.85 
+     55 133.468 894 1 1 -1.17201 -0.077659 -174.45 
+     55 159.003 899 1 0 -1.19243 -0.0838439 -175.85 
+     55 190.161 892 0 1 -1.59672 -0.173838 -204.45 
+     55 118.41 899 0 0 -1.61243 -0.173321 -205.85 
+Number of digits in this event =  8
 Event: 56
 Number of tracker hits in this event =  10
-     56 240.876 899 4 1 -0.165609 0.0647108 -84.45 
-     56 147.73 900 4 0 -0.172192 0.073069 -85.85 
-     56 223.383 898 3 1 -0.289466 0.243492 -114.45 
-     56 122.719 901 3 0 -0.30031 0.256582 -115.85 
-     56 144.883 897 2 1 -0.505947 0.524082 -144.45 
-     56 164.03 902 2 0 -0.508193 0.539594 -145.85 
-     56 137.207 897 1 1 -0.54984 0.869383 -174.45 
-     56 163 904 1 0 -0.546803 0.88432 -175.85 
-     56 146.244 897 0 1 -0.485598 1.16562 -204.45 
-     56 173.306 905 0 0 -0.482685 1.1744 -205.85 
-Number of digits in this event =  11
+     56 145.374 900 5 1 0.0596213 -0.205807 -54.45 
+     56 211.32 899 5 0 0.062551 -0.211297 -55.85 
+     56 144.502 900 4 1 0.134255 -0.317741 -84.45 
+     56 248.872 898 4 0 0.136274 -0.322145 -85.85 
+     56 167.287 900 3 1 0.176371 -0.409003 -114.45 
+     56 119.314 898 3 0 0.178244 -0.417101 -115.85 
+     56 336.846 900 2 1 0.194343 -0.587726 -144.45 
+     56 154.997 897 2 0 0.189861 -0.602128 -145.85 
+     56 168.635 900 1 1 0.0866024 -0.906621 -174.45 
+     56 209.232 895 1 0 0.0819542 -0.919678 -175.85 
+Number of digits in this event =  13
 Event: 57
-Number of tracker hits in this event =  17
-     57 114.11 899 3 1 -0.190848 0.0753964 -114.45 
-     57 159.136 900 3 0 -0.198379 0.0708368 -115.85 
-     57 317.396 898 2 1 -0.336507 -0.0569027 -144.45 
-     57 172.13 899 2 0 -0.342257 -0.0678583 -145.85 
-     57 173.494 897 1 1 -0.462058 -0.293064 -174.45 
-     57 138.995 898 1 0 -0.469165 -0.310312 -175.85 
-     57 155.07 897 0 1 -0.60555 -0.652087 -204.45 
-     57 119.299 896 0 0 -0.610787 -0.66887 -205.85 
-     57 156.123 897 2 0 -1.14679 -0.539006 -145.85 
-     57 15.808 706 1 1 -38.663 3.90888 -174.45 
-     57 212.688 707 1 1 -38.65 3.93535 -174.494 
-     57 12.2933 708 1 1 -38.45 4.21892 -174.826 
-     57 39.3193 938 1 0 -31.0795 7.77533 -175.85 
-     57 115.575 939 1 0 -31.0066 7.85 -175.857 
-     57 20.1262 940 1 0 -30.7817 8.05 -175.892 
-     57 142.182 750 1 1 -29.9839 5.35036 -174.85 
-     57 337.218 751 1 1 -29.85 5.17169 -174.625 
-Number of digits in this event =  14
+Number of tracker hits in this event =  12
+     57 140.366 900 5 1 0.083835 -0.110185 -54.45 
+     57 147.622 899 5 0 0.0936933 -0.115805 -55.85 
+     57 126.881 901 4 1 0.280535 -0.218034 -84.45 
+     57 118.566 899 4 0 0.286648 -0.225023 -85.85 
+     57 137.157 901 3 1 0.42932 -0.384284 -114.45 
+     57 129.773 898 3 0 0.430216 -0.389458 -115.85 
+     57 213.941 901 2 1 0.440826 -0.494707 -144.45 
+     57 118.217 897 2 0 0.442375 -0.500862 -145.85 
+     57 121.325 902 1 1 0.455237 -0.640742 -174.45 
+     57 113.002 896 1 0 0.449277 -0.650518 -175.85 
+     57 118.784 901 0 1 0.319658 -0.842701 -204.45 
+     57 179.245 895 0 0 0.312082 -0.85323 -205.85 
+Number of digits in this event =  9
 Event: 58
-Number of tracker hits in this event =  6
-     58 200.428 896 2 1 -0.757974 0.074898 -144.45 
-     58 154.143 900 2 0 -0.765321 0.0820502 -145.85 
-     58 152.458 895 1 1 -0.912242 0.240271 -174.45 
-     58 127.236 900 1 0 -0.913582 0.247096 -175.85 
-     58 136.374 895 0 1 -0.95164 0.367842 -204.45 
-     58 105.332 901 0 0 -0.954541 0.372308 -205.85 
-Number of digits in this event =  6
+Number of tracker hits in this event =  20
+     58 137.466 896 3 1 -0.677733 -0.173585 -114.45 
+     58 154.476 899 3 0 -0.695313 -0.180022 -115.85 
+     58 138.231 895 2 1 -1.04424 -0.319768 -144.45 
+     58 142.704 898 2 0 -1.06199 -0.324395 -145.85 
+     58 142.233 893 1 1 -1.4197 -0.416671 -174.45 
+     58 284.537 898 1 0 -1.44817 -0.421706 -175.85 
+     58 115.725 890 0 1 -2.0262 -0.521274 -204.45 
+     58 136.144 897 0 0 -2.05399 -0.520216 -205.85 
+     58 11.7832 717 0 0 -42.4814 -36.45 -206.124 
+     58 18.9592 888 0 1 -2.42037 22.6362 -204.85 
+     58 13.424 1461 4 1 112.35 -38.5661 -84.6083 
+     58 6.70798 1031 9 0 -46.1846 26.4466 63.75 
+     58 106.608 906 2 1 1.38388 -1.40678 -144.45 
+     58 92.4201 894 2 0 1.37376 -1.11697 -145.85 
+     58 30.5188 895 2 0 1.35573 -1.05 -146.136 
+     58 146.181 1543 2 0 144.915 128.869 -146.25 
+     58 93.9041 1544 2 0 144.989 128.95 -146.247 
+     58 27.4542 1631 2 1 146.452 127.936 -144.85 
+     58 84.7982 1632 2 1 146.55 127.876 -144.795 
+     58 220.67 1633 2 1 146.75 127.865 -144.591 
+Number of digits in this event =  12
 Event: 59
-Number of tracker hits in this event =  8
-     59 136.436 900 3 1 0.181963 0.634118 -114.45 
-     59 185.866 902 3 0 0.182629 0.64524 -115.85 
-     59 145.807 900 2 1 0.218954 0.885657 -144.45 
-     59 121.383 904 2 0 0.219761 0.901724 -145.85 
-     59 124.048 900 1 1 0.242808 1.21176 -174.45 
-     59 142.811 905 1 0 0.239958 1.2248 -175.85 
-     59 114.771 900 0 1 0.184347 1.50654 -204.45 
-     59 151.788 907 0 0 0.183654 1.51741 -205.85 
-Number of digits in this event =  8
-Event: 60
 Number of tracker hits in this event =  10
-     60 124.8 900 5 1 0.150042 0.0831819 -54.45 
-     60 185.687 900 5 0 0.154897 0.0877501 -55.85 
-     60 137.926 901 4 1 0.253379 0.183404 -84.45 
-     60 258.273 900 4 0 0.255436 0.179213 -85.85 
-     60 134.544 901 3 1 0.28122 0.0841873 -114.45 
-     60 116.341 900 3 0 0.27715 0.0797693 -115.85 
-     60 127.957 900 1 1 0.16651 -0.204586 -174.45 
-     60 137.257 899 1 0 0.162689 -0.218729 -175.85 
-     60 107.453 900 0 1 0.0970535 -0.526441 -204.45 
-     60 159.518 897 0 0 0.095769 -0.543553 -205.85 
-Number of digits in this event =  9
+     59 156.417 899 4 1 -0.21863 -0.0642509 -84.45 
+     59 152.766 899 4 0 -0.222641 -0.0715071 -85.85 
+     59 130.981 898 3 1 -0.301229 -0.245586 -114.45 
+     59 185.585 898 3 0 -0.306242 -0.252657 -115.85 
+     59 135.328 898 2 1 -0.397898 -0.380854 -144.45 
+     59 124.192 898 2 0 -0.406683 -0.387635 -145.85 
+     59 128.258 897 1 1 -0.585612 -0.516276 -174.45 
+     59 122.589 897 1 0 -0.595486 -0.525948 -175.85 
+     59 129.932 896 0 1 -0.8037 -0.717281 -204.45 
+     59 107.929 896 0 0 -0.809532 -0.72496 -205.85 
+Number of digits in this event =  10
+Event: 60
+Number of tracker hits in this event =  6
+     60 134.642 897 3 1 -0.579674 0.0660065 -114.45 
+     60 129.633 900 3 0 -0.594605 0.0683724 -115.85 
+     60 124.544 895 2 1 -0.896529 0.109735 -144.45 
+     60 142.885 900 2 0 -0.911804 0.104037 -145.85 
+     60 153.806 892 0 1 -1.52573 -0.0630574 -204.45 
+     60 138.382 899 0 0 -1.54141 -0.0540979 -205.85 
+Number of digits in this event =  7
 Event: 61
-Number of tracker hits in this event =  8
-     61 150.047 899 3 1 -0.159751 0.138891 -114.45 
-     61 210.551 900 3 0 -0.171896 0.14356 -115.85 
-     61 177.243 898 2 1 -0.407164 0.228405 -144.45 
-     61 156.215 900 2 0 -0.419471 0.226274 -145.85 
-     61 124.897 896 1 1 -0.657166 0.16885 -174.45 
-     61 120.044 900 1 0 -0.66564 0.169606 -175.85 
-     61 166.501 896 0 1 -0.843302 0.176072 -204.45 
-     61 153.394 900 0 0 -0.852321 0.171702 -205.85 
-Number of digits in this event =  9
+Number of tracker hits in this event =  14
+     61 113.781 900 4 1 0.0654188 0.319699 -84.45 
+     61 177.202 901 4 0 0.0699482 0.33612 -85.85 
+     61 160.609 900 3 1 0.16212 0.669458 -114.45 
+     61 110.913 903 3 0 0.168 0.681915 -115.85 
+     61 114.658 901 2 1 0.290702 0.931661 -144.45 
+     61 151.585 904 2 0 0.296417 0.940739 -145.85 
+     61 182.842 901 1 1 0.42408 1.15136 -174.45 
+     61 126.179 905 1 0 0.432939 1.15892 -175.85 
+     61 124.126 902 0 1 0.601095 1.3163 -204.45 
+     61 156.06 906 0 0 0.609197 1.3219 -205.85 
+     61 167.203 132 4 1 -153.624 3.12494 -84.4671 
+     61 132.223 1428 0 0 -48.2718 105.868 -206.25 
+     61 119.262 1429 0 0 -48.2988 105.95 -206.188 
+     61 65.3448 491 1 1 -81.6732 137.949 -174.602 
+Number of digits in this event =  12
 Event: 62
 Number of tracker hits in this event =  12
-     62 131.413 900 5 1 0.106336 0.130269 -54.45 
-     62 146.82 900 5 0 0.110452 0.131013 -55.85 
-     62 110.983 900 4 1 0.192272 0.149784 -84.45 
-     62 115.954 900 4 0 0.196246 0.14769 -85.85 
-     62 389.209 901 3 1 0.281764 0.118528 -114.45 
-     62 116.051 900 3 0 0.284362 0.113838 -115.85 
-     62 132.949 901 1 1 0.401632 -0.104258 -174.45 
-     62 126.166 899 1 0 0.401077 -0.117432 -175.85 
-     62 127.965 901 0 1 0.407048 -0.385784 -204.45 
-     62 139.223 898 0 0 0.411614 -0.398793 -205.85 
-     62 9.84687 1227 6 1 65.45 -66.6826 -24.8087 
-     62 197.369 891 0 0 42.5881 -1.73688 -205.96 
-Number of digits in this event =  10
+     62 122.399 900 5 1 0.0946779 0.0891124 -54.45 
+     62 114.227 900 5 0 0.0979029 0.0945459 -55.85 
+     62 151.384 900 4 1 0.154226 0.197899 -84.45 
+     62 125.406 900 4 0 0.157741 0.198597 -85.85 
+     62 206.651 900 3 1 0.211578 0.186203 -114.45 
+     62 155.989 900 3 0 0.217567 0.192103 -115.85 
+     62 133.303 901 2 1 0.348753 0.297995 -144.45 
+     62 303.816 901 2 0 0.353658 0.307156 -145.85 
+     62 131.299 902 1 1 0.467379 0.521951 -174.45 
+     62 124.888 902 1 0 0.471683 0.538105 -175.85 
+     62 161.669 902 0 1 0.557521 0.863223 -204.45 
+     62 120.716 904 0 0 0.561094 0.873831 -205.85 
+Number of digits in this event =  12
 Event: 63
-Number of tracker hits in this event =  4
-     63 167.113 899 1 1 -0.0823104 0.756192 -174.45 
-     63 205.544 903 1 0 -0.0858893 0.774396 -175.85 
-     63 154.555 899 0 1 -0.171928 1.18926 -204.45 
-     63 132.886 905 0 0 -0.179746 1.21419 -205.85 
-Number of digits in this event =  7
+Number of tracker hits in this event =  3
+     63 145.848 900 2 1 0.0912812 0.0750614 -144.45 
+     63 128.311 900 2 0 0.0889777 0.07352 -145.85 
+     63 128.441 900 1 1 0.0531921 0.0549035 -174.45 
+Number of digits in this event =  4
 Event: 64
-Number of tracker hits in this event =  9
-     64 131.571 900 4 0 0.0529165 0.191527 -85.85 
-     64 127.772 900 3 1 0.177545 0.182233 -114.45 
-     64 138.824 900 3 0 0.182815 0.1813 -115.85 
-     64 218.514 901 2 1 0.303065 0.157533 -144.45 
-     64 134.669 900 2 0 0.306505 0.160382 -145.85 
-     64 141.977 901 1 1 0.387556 0.212479 -174.45 
-     64 388.582 900 1 0 0.393779 0.211747 -175.85 
-     64 123.474 902 0 1 0.518826 0.1731 -204.45 
-     64 107.003 900 0 0 0.524213 0.173714 -205.85 
-Number of digits in this event =  9
+Number of tracker hits in this event =  11
+     64 128.765 900 3 1 0.12696 0.101227 -114.45 
+     64 121.077 900 3 0 0.132798 0.11256 -115.85 
+     64 121.378 901 2 1 0.267144 0.328692 -144.45 
+     64 146.661 901 2 0 0.276888 0.346041 -145.85 
+     64 134.103 902 1 1 0.470933 0.698947 -174.45 
+     64 173.455 903 1 0 0.478427 0.711996 -175.85 
+     64 161.877 902 0 1 0.633196 0.965317 -204.45 
+     64 154.866 904 0 0 0.637845 0.979092 -205.85 
+     64 3.7485 221 6 1 -135.827 -86.8158 -24.85 
+     64 4.34474 212 12 1 -137.57 -30.7435 155.339 
+     64 12.7623 551 11 0 -34.2022 -69.73 124.069 
+Number of digits in this event =  12
 Event: 65
-Number of tracker hits in this event =  15
-     65 148.825 900 5 1 0.0629975 -0.110753 -54.45 
-     65 334.393 899 5 0 0.0672706 -0.113604 -55.85 
-     65 204.646 900 4 1 0.15752 -0.163956 -84.45 
-     65 131.914 899 4 0 0.163981 -0.162833 -85.85 
-     65 143.856 901 3 1 0.303016 -0.151534 -114.45 
-     65 131.758 899 3 0 0.307882 -0.149975 -115.85 
-     65 112.611 901 2 1 0.406934 -0.108843 -144.45 
-     65 171.823 899 2 0 0.416134 -0.110987 -145.85 
-     65 173.884 902 1 1 0.598542 -0.140863 -174.45 
-     65 134.391 899 1 0 0.601037 -0.139698 -175.85 
-     65 150.931 902 0 1 0.644124 -0.129371 -204.45 
-     65 173.971 899 0 0 0.640656 -0.133001 -205.85 
-     65 91.9608 1211 0 0 -1.19526 62.276 -206.25 
-     65 246.03 1212 0 0 -1.20363 62.45 -206.111 
-     65 141.28 1213 0 0 -1.18029 62.65 -206.128 
-Number of digits in this event =  14
+Number of tracker hits in this event =  11
+     65 39.1136 900 5 0 0.05 0.0872768 -56.1384 
+     65 127.571 900 4 1 0.141328 0.141914 -84.45 
+     65 138.945 900 4 0 0.145161 0.14687 -85.85 
+     65 466.087 900 3 1 0.234046 0.232413 -114.45 
+     65 164.973 900 3 0 0.236784 0.235065 -115.85 
+     65 239.527 901 2 1 0.302791 0.313202 -144.45 
+     65 134.658 901 2 0 0.301898 0.319496 -145.85 
+     65 127.52 900 1 1 0.189256 0.374466 -174.45 
+     65 144.815 901 1 0 0.188862 0.379671 -175.85 
+     65 387.94 900 0 1 0.166863 0.489247 -204.45 
+     65 105.48 902 0 0 0.159275 0.493515 -205.85 
+Number of digits in this event =  12
 Event: 66
-Number of tracker hits in this event =  14
-     66 133.679 899 5 1 -0.110185 0.155443 -54.45 
-     66 196.81 900 5 0 -0.123436 0.158363 -55.85 
-     66 123.966 898 4 1 -0.387767 0.228189 -84.45 
-     66 122.552 900 4 0 -0.409785 0.232113 -85.85 
-     66 197.284 895 3 1 -0.870627 0.328143 -114.45 
-     66 113.89 901 3 0 -0.895824 0.335221 -115.85 
-     66 160.599 893 2 1 -1.41087 0.480029 -144.45 
-     66 155.214 902 2 0 -1.43385 0.490366 -145.85 
-     66 110.865 890 1 1 -1.89207 0.711454 -174.45 
-     66 248.711 903 1 0 -1.90625 0.72266 -175.85 
-     66 139.675 889 0 1 -2.18156 0.935082 -204.45 
-     66 206.038 904 0 0 -2.19574 0.942709 -205.85 
-     66 6.34151 1439 12 0 -168.009 107.95 153.89 
-     66 14.9133 737 1 0 -10.3609 -32.45 -176.037 
-Number of digits in this event =  13
-Event: 67
 Number of tracker hits in this event =  12
-     67 212.903 899 5 0 0.0564515 -0.0504297 -55.85 
-     67 138.78 900 4 1 0.158789 -0.148506 -84.45 
-     67 134.189 899 4 0 0.168935 -0.156264 -85.85 
-     67 117.836 901 3 1 0.367685 -0.324382 -114.45 
-     67 191.583 898 3 0 0.372472 -0.327779 -115.85 
-     67 139.151 902 2 1 0.462954 -0.397517 -144.45 
-     67 147.535 898 2 0 0.46918 -0.399051 -145.85 
-     67 130.769 902 1 1 0.589232 -0.438617 -174.45 
-     67 116.724 898 1 0 0.596043 -0.441777 -175.85 
-     67 115.894 903 0 1 0.745245 -0.493934 -204.45 
-     67 137.265 897 0 0 0.750018 -0.492153 -205.85 
-     67 29.1811 906 0 1 1.31707 54.0778 -204.642 
-Number of digits in this event =  9
+     66 103.808 899 5 1 -0.114326 -0.05994 -54.45 
+     66 180.966 899 5 0 -0.117554 -0.0643062 -55.85 
+     66 142.145 899 4 1 -0.17193 -0.163065 -84.45 
+     66 156.153 899 4 0 -0.171863 -0.177245 -85.85 
+     66 107.852 899 3 1 -0.159007 -0.478968 -114.45 
+     66 123.033 897 3 0 -0.15513 -0.494672 -115.85 
+     66 281.994 899 2 1 -0.0620631 -0.795025 -144.45 
+     66 136.068 896 2 0 -0.0534461 -0.814001 -145.85 
+     66 128.172 900 1 1 0.13308 -1.20372 -174.45 
+     66 134.429 894 1 0 0.143748 -1.22143 -175.85 
+     66 110.002 901 0 1 0.364369 -1.57763 -204.45 
+     66 128.885 892 0 0 0.375627 -1.59192 -205.85 
+Number of digits in this event =  10
+Event: 67
+Number of tracker hits in this event =  6
+     67 132.398 900 3 1 0.206413 0.0966518 -114.45 
+     67 155.643 900 3 0 0.205266 0.0971808 -115.85 
+     67 228.501 900 2 1 0.224829 0.0607511 -144.45 
+     67 135.899 900 2 0 0.228718 0.0600397 -145.85 
+     67 132.129 901 0 1 0.432636 0.0865167 -204.45 
+     67 140.27 900 0 0 0.438604 0.0918653 -205.85 
+Number of digits in this event =  7
 Event: 68
-Number of tracker hits in this event =  13
-     68 157.784 899 5 1 -0.097411 0.111532 -54.45 
-     68 120.497 900 5 0 -0.103402 0.122178 -55.85 
-     68 148.957 899 4 1 -0.200754 0.334111 -84.45 
-     68 133.793 901 4 0 -0.207051 0.347041 -85.85 
-     68 128.704 898 3 1 -0.349891 0.613133 -114.45 
-     68 131.01 902 3 0 -0.356362 0.634298 -115.85 
-     68 142.933 897 2 1 -0.47979 1.07919 -144.45 
-     68 161.263 905 2 0 -0.492255 1.09637 -145.85 
-     68 445.483 896 1 1 -0.750649 1.43325 -174.45 
-     68 75.1874 906 1 0 -0.771868 1.44766 -175.85 
-     68 56.2792 907 1 0 -0.775303 1.45 -176.073 
-     68 162.905 894 0 1 -1.21687 1.75511 -204.45 
-     68 132.212 908 0 0 -1.23396 1.77148 -205.85 
-Number of digits in this event =  12
+Number of tracker hits in this event =  10
+     68 107.663 898 4 0 -0.0503847 -0.448931 -85.85 
+     68 33.5918 897 4 0 -0.0505742 -0.45 -86.1368 
+     68 165.453 899 3 1 -0.0722413 -0.550836 -114.45 
+     68 150.657 897 3 0 -0.0791167 -0.553251 -115.85 
+     68 115.539 899 2 1 -0.215395 -0.620228 -144.45 
+     68 140.729 897 2 0 -0.22313 -0.614226 -145.85 
+     68 219.875 898 1 1 -0.366445 -0.50606 -174.45 
+     68 127.487 897 1 0 -0.371178 -0.503493 -175.85 
+     68 141.43 897 0 1 -0.455787 -0.445414 -204.45 
+     68 130.137 898 0 0 -0.461876 -0.441366 -205.85 
+Number of digits in this event =  8
 Event: 69
 Number of tracker hits in this event =  12
-     69 110.324 900 4 1 0.134306 -0.211468 -84.45 
-     69 119.87 899 4 0 0.141025 -0.219933 -85.85 
-     69 127.647 901 3 1 0.270248 -0.397734 -114.45 
-     69 130.483 898 3 0 0.276992 -0.409673 -115.85 
-     69 133.769 901 2 1 0.419767 -0.6928 -144.45 
-     69 164.392 896 2 0 0.453972 -0.729967 -145.85 
-     69 161.275 905 1 1 1.14703 -1.47852 -174.45 
-     69 123.231 892 1 0 1.18093 -1.51565 -175.85 
-     69 129.889 909 0 1 1.87362 -2.28724 -204.45 
-     69 146.656 888 0 0 1.90305 -2.32608 -205.85 
-     69 18.5356 968 3 0 100.967 13.6774 -116.25 
-     69 63.141 984 11 0 -33.1217 16.8678 123.75 
-Number of digits in this event =  12
-Event: 70
-Number of tracker hits in this event =  12
-     70 149.539 899 5 1 -0.138765 -0.0556676 -54.45 
-     70 152.971 899 5 0 -0.142345 -0.0612553 -55.85 
-     70 157.625 899 4 1 -0.22124 -0.180021 -84.45 
-     70 225.956 899 4 0 -0.227275 -0.188299 -85.85 
-     70 153.465 898 3 1 -0.344724 -0.345139 -114.45 
-     70 112.039 898 3 0 -0.35373 -0.346975 -115.85 
-     70 148.14 897 2 1 -0.530718 -0.390821 -144.45 
-     70 116.481 898 2 0 -0.539825 -0.393592 -145.85 
-     70 134.098 896 1 1 -0.747862 -0.427485 -174.45 
-     70 145.716 898 1 0 -0.75609 -0.429404 -175.85 
-     70 166.72 895 0 1 -0.919152 -0.4571 -204.45 
-     70 215.131 897 0 0 -0.923766 -0.459662 -205.85 
+     69 60.9071 899 5 1 -0.05 0.131631 -54.6645 
+     69 120.403 900 5 0 -0.0539706 0.132089 -55.85 
+     69 143.348 899 4 1 -0.158883 0.147422 -84.45 
+     69 135.333 900 4 0 -0.166909 0.150869 -85.85 
+     69 171.156 898 3 1 -0.335413 0.203527 -114.45 
+     69 134.921 900 3 0 -0.341657 0.20529 -115.85 
+     69 129.553 897 2 1 -0.472213 0.24059 -144.45 
+     69 217.032 900 2 0 -0.471791 0.241762 -145.85 
+     69 120.69 897 1 1 -0.458381 0.293874 -174.45 
+     69 114.814 901 1 0 -0.454887 0.292251 -175.85 
+     69 121.688 898 0 1 -0.388678 0.271539 -204.45 
+     69 116.817 901 0 0 -0.380661 0.27214 -205.85 
 Number of digits in this event =  11
-Event: 71
-Number of tracker hits in this event =  12
-     71 139.875 900 4 1 0.057215 0.265093 -84.45 
-     71 495.73 901 4 0 0.0642144 0.269763 -85.85 
-     71 163.685 900 3 1 0.22982 0.356404 -114.45 
-     71 134.577 901 3 0 0.24108 0.363345 -115.85 
-     71 146.347 902 2 1 0.455709 0.523277 -144.45 
-     71 126.617 902 2 0 0.464671 0.531743 -145.85 
-     71 42.7758 902 1 1 0.648262 0.695075 -174.45 
-     71 85.6021 903 1 1 0.65 0.695283 -174.58 
-     71 148.832 903 1 0 0.666889 0.69787 -175.85 
-     71 127.177 905 0 1 1.05367 0.739034 -204.45 
-     71 133.001 903 0 0 1.07871 0.741755 -205.85 
-     71 41.8843 425 0 1 -94.95 111.235 -204.783 
-Number of digits in this event =  13
-Event: 72
-Number of tracker hits in this event =  6
-     72 139.484 899 2 1 -0.085273 0.343437 -144.45 
-     72 200.129 901 2 0 -0.0755107 0.337521 -145.85 
-     72 171.435 900 1 1 0.132543 0.213811 -174.45 
-     72 126.914 900 1 0 0.143451 0.209881 -175.85 
-     72 157.843 901 0 1 0.357441 0.100051 -204.45 
-     72 153.212 900 0 0 0.364622 0.0963865 -205.85 
-Number of digits in this event =  7
-Event: 73
-Number of tracker hits in this event =  12
-     73 119.175 900 5 1 0.05 -0.135663 -54.4908 
-     73 234.428 899 5 0 0.0562409 -0.140059 -55.85 
-     73 113.333 900 4 1 0.186149 -0.248854 -84.45 
-     73 125.673 898 4 0 0.192985 -0.251245 -85.85 
-     73 145.697 901 3 1 0.345286 -0.306873 -114.45 
-     73 360.596 898 3 0 0.35375 -0.309514 -115.85 
-     73 122.95 902 2 1 0.545963 -0.391113 -144.45 
-     73 140.132 898 2 0 0.549587 -0.400516 -145.85 
-     73 128.492 902 1 1 0.612834 -0.606535 -174.45 
-     73 200.454 897 1 0 0.61739 -0.622322 -175.85 
-     73 118.767 903 0 1 0.706528 -0.970734 -204.45 
-     73 150.304 895 0 0 0.707454 -0.989436 -205.85 
-Number of digits in this event =  10
-Event: 74
+Event: 70
 Number of tracker hits in this event =  8
-     74 142.656 900 3 1 0.105353 0.414188 -114.45 
-     74 123.093 901 3 0 0.112109 0.425519 -115.85 
-     74 494.23 900 2 1 0.247058 0.668087 -144.45 
-     74 126.916 903 2 0 0.253158 0.67807 -145.85 
-     74 148.992 901 1 1 0.373812 0.874013 -174.45 
-     74 125.62 904 1 0 0.375791 0.885826 -175.85 
-     74 293.792 901 0 1 0.429124 1.14498 -204.45 
-     74 101.843 905 0 0 0.430924 1.16392 -205.85 
+     70 151.709 900 4 0 0.0512283 0.10173 -85.85 
+     70 145.307 900 3 1 0.166124 0.285524 -114.45 
+     70 139.567 901 3 0 0.16715 0.302359 -115.85 
+     70 140.741 900 2 1 0.170172 0.631797 -144.45 
+     70 118.943 902 2 0 0.174958 0.644973 -145.85 
+     70 142.963 901 1 1 0.253785 0.954394 -174.45 
+     70 138.679 904 1 0 0.244912 0.973115 -175.85 
+     70 130.596 900 0 1 0.0529043 1.33639 -204.45 
 Number of digits in this event =  8
-Event: 75
+Event: 71
 Number of tracker hits in this event =  8
-     75 151.467 902 3 1 0.59292 0.0928735 -114.45 
-     75 152.808 900 3 0 0.603631 0.0969351 -115.85 
-     75 139.482 903 2 1 0.81757 0.188357 -144.45 
-     75 150.532 900 2 0 0.821458 0.20005 -145.85 
-     75 129.923 904 1 1 0.881906 0.446483 -174.45 
-     75 126.577 902 1 0 0.882981 0.457709 -175.85 
-     75 180.524 904 0 1 0.892648 0.695489 -204.45 
-     75 141.695 903 0 0 0.889576 0.700755 -205.85 
-Number of digits in this event =  9
-Event: 76
-Number of tracker hits in this event =  7
-     76 174.171 900 1 1 0.0728865 -0.376332 -174.45 
-     76 178.55 898 1 0 0.0695083 -0.382403 -175.85 
-     76 26.9294 466 3 1 -86.65 27.1941 -114.707 
-     76 4.21003 882 13 1 -3.50573 -111.15 185.15 
-     76 55.2983 1373 10 0 -151.173 94.9052 93.75 
-     76 301.382 1374 10 0 -151.301 94.95 93.861 
-     76 15.4131 1375 10 0 -151.567 95.15 94.1337 
+     71 115.519 900 3 1 0.0570446 -0.245102 -114.45 
+     71 131.473 899 3 0 0.0624805 -0.248223 -115.85 
+     71 141.762 900 2 1 0.161979 -0.309334 -144.45 
+     71 143.96 898 2 0 0.164593 -0.307803 -145.85 
+     71 113.646 900 1 1 0.224359 -0.285477 -174.45 
+     71 125.549 898 1 0 0.227278 -0.285747 -175.85 
+     71 263.178 901 0 1 0.290462 -0.281468 -204.45 
+     71 119.62 898 0 0 0.291921 -0.276842 -205.85 
 Number of digits in this event =  6
-Event: 77
-Number of tracker hits in this event =  17
-     77 145.725 900 4 1 0.0835446 0.0840733 -84.45 
-     77 132.628 900 4 0 0.0893574 0.0830841 -85.85 
-     77 121.46 900 3 1 0.225385 0.0549057 -114.45 
-     77 124.758 900 3 0 0.231602 0.0564923 -115.85 
-     77 191.352 901 2 1 0.360815 0.0929119 -144.45 
-     77 182.452 900 2 0 0.391924 0.106663 -145.85 
-     77 204.129 904 1 1 1.00946 0.400322 -174.45 
-     77 134.403 901 1 0 1.03887 0.413764 -175.85 
-     77 16.0671 907 0 1 1.6488 0.692362 -204.45 
-     77 132.462 908 0 1 1.65 0.692872 -204.503 
-     77 161.192 903 0 0 1.68027 0.705355 -205.85 
-     77 218.517 901 0 0 2.67599 0.434914 -205.85 
-     77 22.1348 902 0 0 3.2207 0.45 -206.191 
-     77 35.3269 763 0 0 21.1739 -27.395 -206.25 
-     77 201.48 762 0 0 21.2012 -27.45 -206.212 
-     77 11.0728 1014 0 1 23.0198 -26.806 -204.85 
-     77 274.623 1015 0 1 23.05 -26.7885 -204.835 
+Event: 72
+Number of tracker hits in this event =  18
+     72 157.884 900 4 1 0.180427 0.0880044 -84.45 
+     72 152.309 900 4 0 0.186271 0.0910752 -85.85 
+     72 124.858 901 3 1 0.32365 0.138158 -114.45 
+     72 117.523 900 3 0 0.333421 0.143483 -115.85 
+     72 131.279 902 2 1 0.522912 0.264845 -144.45 
+     72 28514.4 901 2 0 0.531108 0.273692 -145.85 
+     72 1884 907 2 1 1.53917 1.02757 -144.85 
+     72 4935.13 908 2 1 1.65 1.11271 -144.716 
+     72 1325.18 909 2 1 1.85 1.24084 -144.478 
+     72 736.509 900 2 0 0.488985 0.25 -146.136 
+     72 4867.34 823 1 1 -15.2748 -9.86149 -174.45 
+     72 4646.64 848 1 0 -15.9383 -10.2745 -175.85 
+     72 130.22 881 1 1 -3.67676 10.1015 -174.45 
+     72 62.1996 952 1 0 -3.89847 10.5791 -175.85 
+     72 58.7516 953 1 0 -3.93128 10.65 -176.058 
+     72 107.272 858 0 1 -8.27357 20.3301 -204.45 
+     72 48.6856 1003 0 0 -8.4979 20.8106 -205.85 
+     72 98.5003 1004 0 0 -8.51643 20.85 -205.965 
 Number of digits in this event =  14
-Event: 78
+Event: 73
+Number of tracker hits in this event =  28
+     73 163.895 900 5 1 0.105964 0.165818 -54.45 
+     73 144.671 900 5 0 0.113702 0.175748 -55.85 
+     73 163.683 901 4 1 0.2888 0.38026 -84.45 
+     73 124.859 901 4 0 0.298745 0.388447 -85.85 
+     73 123.806 902 3 1 0.514407 0.574033 -114.45 
+     73 195.287 902 3 0 0.518995 0.588587 -115.85 
+     73 143.464 902 2 1 0.624792 0.894834 -144.45 
+     73 6793.16 904 2 0 0.631208 0.913546 -145.85 
+     73 1028.83 831 1 1 -13.657 29.5781 -174.45 
+     73 13.3225 830 1 1 -13.85 29.9793 -174.841 
+     73 229.359 1054 1 0 -14.3391 30.9733 -175.85 
+     73 460.493 1055 1 0 -14.3768 31.05 -175.928 
+     73 295.623 1056 1 0 -14.4755 31.25 -176.131 
+     73 536.208 758 0 1 -28.3736 58.8557 -204.45 
+     73 708.485 757 0 1 -28.45 58.9971 -204.588 
+     73 392.341 1201 0 0 -29.1224 60.2901 -205.85 
+     73 904.056 1202 0 0 -29.2052 60.45 -206.006 
+     73 110.058 1203 0 0 -29.308 60.65 -206.199 
+     73 3.72483 982 1 1 16.6426 -4.58986 -174.45 
+     73 169.134 983 1 1 16.65 -4.59275 -174.463 
+     73 16.8903 984 1 1 16.85 -4.67069 -174.814 
+     73 155.237 875 1 0 17.4391 -4.90043 -175.85 
+     73 116.473 1068 0 1 33.6542 -11.2594 -204.45 
+     73 22.7682 1069 0 1 33.85 -11.3463 -204.806 
+     73 66.2832 842 0 0 34.4252 -11.5977 -205.85 
+     73 49.611 841 0 0 34.5447 -11.65 -206.067 
+     73 32.6513 1068 8 1 33.85 -90.6212 35.3526 
+     73 14.2133 673 6 1 -45.25 -113.1 -24.6264 
+Number of digits in this event =  22
+Event: 74
+Number of tracker hits in this event =  5
+     74 178.251 899 2 1 -0.148171 -0.124027 -144.45 
+     74 129.234 899 2 0 -0.158817 -0.123358 -145.85 
+     74 111.674 898 1 1 -0.363078 -0.0955246 -174.45 
+     74 140.741 899 1 0 -0.377957 -0.0926766 -175.85 
+     74 1528.45 755 0 1 -28.8675 -164.532 -204.609 
+Number of digits in this event =  7
+Event: 75
+Number of tracker hits in this event =  15
+     75 119.95 899 5 1 -0.0652227 0.0689996 -54.45 
+     75 171.583 900 5 0 -0.0740541 0.0752499 -55.85 
+     75 130.671 898 4 1 -0.268006 0.20049 -84.45 
+     75 161.928 900 4 0 -0.275243 0.203445 -85.85 
+     75 153.595 898 3 1 -0.425831 0.275875 -114.45 
+     75 121.147 901 3 0 -0.433117 0.281867 -115.85 
+     75 127.976 897 2 1 -0.594558 0.389069 -144.45 
+     75 141.626 901 2 0 -0.597946 0.392448 -145.85 
+     75 186.218 896 1 1 -0.664462 0.464772 -174.45 
+     75 128.159 902 1 0 -0.664588 0.468071 -175.85 
+     75 165.004 896 0 1 -0.671206 0.530577 -204.45 
+     75 120.531 902 0 0 -0.672253 0.539485 -205.85 
+     75 104.851 897 3 1 -0.45 0.300558 -114.584 
+     75 46.8427 904 3 0 -0.536389 0.967853 -115.85 
+     75 106.73 905 3 0 -0.53882 1.05 -115.984 
+Number of digits in this event =  13
+Event: 76
 Number of tracker hits in this event =  12
-     78 149.024 900 5 1 0.158305 0.13004 -54.45 
-     78 109.871 900 5 0 0.169253 0.141028 -55.85 
-     78 141.077 901 4 1 0.403508 0.380534 -84.45 
-     78 138.966 901 4 0 0.417727 0.402046 -85.85 
-     78 133.923 903 3 1 0.704177 0.834666 -114.45 
-     78 380.519 904 3 0 0.719365 0.851712 -115.85 
-     78 144.433 904 2 1 1.03749 1.23664 -144.45 
-     78 146.085 906 2 0 1.05034 1.25646 -145.85 
-     78 155.562 906 1 1 1.31138 1.6864 -174.45 
-     78 134.436 908 1 0 1.33065 1.70508 -175.85 
-     78 145.418 908 0 1 1.72858 2.07654 -204.45 
-     78 120.56 910 0 0 1.74607 2.09866 -205.85 
+     76 122.496 899 5 1 -0.0966244 0.0698711 -54.45 
+     76 136.417 900 5 0 -0.102721 0.073964 -55.85 
+     76 209.241 899 4 1 -0.213251 0.132912 -84.45 
+     76 180.825 900 4 0 -0.219425 0.138834 -85.85 
+     76 160.046 898 3 1 -0.351855 0.268001 -114.45 
+     76 210.573 901 3 0 -0.358229 0.280241 -115.85 
+     76 115.772 897 2 1 -0.509303 0.52764 -144.45 
+     76 115.376 902 2 0 -0.516196 0.537569 -145.85 
+     76 127.984 897 1 1 -0.647736 0.74952 -174.45 
+     76 119.172 903 1 0 -0.654685 0.760869 -175.85 
+     76 127.424 896 0 1 -0.763583 0.955127 -204.45 
+     76 141.001 904 0 0 -0.769341 0.958321 -205.85 
 Number of digits in this event =  12
+Event: 77
+Number of tracker hits in this event =  6
+     77 138.416 899 3 1 -0.220952 -0.0590453 -114.45 
+     77 124.801 899 3 0 -0.218313 -0.0577409 -115.85 
+     77 108.777 898 1 1 -0.341334 0.270043 -174.45 
+     77 127.445 901 1 0 -0.350474 0.278973 -175.85 
+     77 150.818 897 0 1 -0.546973 0.446691 -204.45 
+     77 138.658 902 0 0 -0.560059 0.457895 -205.85 
+Number of digits in this event =  6
+Event: 78
+Number of tracker hits in this event =  8
+     78 148.341 900 3 1 0.193024 -0.25768 -114.45 
+     78 160.79 898 3 0 0.195059 -0.267882 -115.85 
+     78 165.686 901 2 1 0.253912 -0.478269 -144.45 
+     78 124.153 897 2 0 0.261757 -0.489244 -145.85 
+     78 123.294 901 1 1 0.341995 -0.667438 -174.45 
+     78 122.602 896 1 0 0.344306 -0.674951 -175.85 
+     78 180.489 901 0 1 0.38348 -0.803014 -204.45 
+     78 277.892 896 0 0 0.378453 -0.811248 -205.85 
+Number of digits in this event =  9
 Event: 79
+Number of tracker hits in this event =  12
+     79 152.29 900 5 1 0.208674 -0.094225 -54.45 
+     79 112.289 899 5 0 0.21773 -0.100302 -55.85 
+     79 136.367 901 4 1 0.401839 -0.224244 -84.45 
+     79 162.411 899 4 0 0.406697 -0.228494 -85.85 
+     79 178.668 902 3 1 0.508742 -0.340529 -114.45 
+     79 119.369 898 3 0 0.511461 -0.344454 -115.85 
+     79 145.283 902 2 1 0.564901 -0.420797 -144.45 
+     79 140.725 898 2 0 0.570804 -0.426792 -145.85 
+     79 152.828 903 1 1 0.692639 -0.563673 -174.45 
+     79 169.175 897 1 0 0.696344 -0.566116 -175.85 
+     79 452.779 903 0 1 0.759019 -0.640509 -204.45 
+     79 293.428 897 0 0 0.761756 -0.645183 -205.85 
+Number of digits in this event =  11
+Event: 80
 Number of tracker hits in this event =  10
-     79 119.118 900 5 1 0.0650379 0.192265 -54.45 
-     79 121.986 900 5 0 0.0640826 0.204089 -55.85 
-     79 24.4899 900 4 1 0.050224 0.439948 -84.45 
-     79 188.47 903 3 0 -0.051186 0.723052 -115.85 
-     79 144.287 899 2 1 -0.098011 0.94392 -144.45 
-     79 122.999 904 2 0 -0.100657 0.955221 -145.85 
-     79 128.276 899 1 1 -0.167605 1.19246 -174.45 
-     79 155.289 905 1 0 -0.168188 1.2064 -175.85 
-     79 164.977 899 0 1 -0.189816 1.50274 -204.45 
-     79 128.485 907 0 0 -0.193452 1.51415 -205.85 
+     80 180.12 900 4 1 0.0812348 -0.212978 -84.45 
+     80 137.955 899 4 0 0.0901791 -0.221232 -85.85 
+     80 134.591 901 3 1 0.291907 -0.373096 -114.45 
+     80 114.386 898 3 0 0.29738 -0.374684 -115.85 
+     80 128.248 901 2 1 0.385962 -0.413032 -144.45 
+     80 165.5 898 2 0 0.392011 -0.409852 -145.85 
+     80 156.676 902 1 1 0.503041 -0.347249 -174.45 
+     80 138.63 898 1 0 0.510775 -0.341395 -175.85 
+     80 109.937 903 0 1 0.651967 -0.242107 -204.45 
+     80 135.554 899 0 0 0.652222 -0.235508 -205.85 
 Number of digits in this event =  9
-Event: 80
-Number of tracker hits in this event =  54
-     80 141.793 900 4 1 0.242518 0.0729797 -84.45 
-     80 189.129 900 4 0 0.25179 0.083309 -85.85 
-     80 134.054 902 3 1 0.450066 0.296402 -114.45 
-     80 124.408 901 3 0 0.457254 0.302603 -115.85 
-     80 402.467 902 2 1 0.525135 0.522071 -144.45 
-     80 542.18 901 2 1 0.45 0.654861 -144.629 
-     80 377.653 907 2 0 -0.0730082 1.55551 -145.85 
-     80 624.49 908 2 0 -0.128248 1.65 -145.978 
-     80 0.0963566 909 2 0 -0.245114 1.85 -146.25 
-     80 963.6 837 1 1 -12.5472 22.9531 -174.45 
-     80 87.9938 836 1 1 -12.65 23.2102 -174.813 
-     80 461.41 1019 1 0 -12.9524 23.9504 -175.85 
-     80 669.814 1020 1 0 -12.9931 24.05 -175.99 
-     80 999.97 796 0 1 -20.6921 43.5961 -204.45 
-     80 245.369 1121 0 0 -21.1228 44.4082 -205.85 
-     80 1010.33 1122 0 0 -21.145 44.45 -205.923 
-     80 858.095 903 2 1 0.71004 0.962953 -144.45 
-     80 1233.64 904 2 1 0.85 1.53225 -144.615 
-     80 237.817 928 2 0 1.85144 5.78726 -145.85 
-     80 419.444 929 2 0 1.86609 5.85 -145.868 
-     80 781.822 930 2 0 1.91309 6.05 -145.926 
-     80 287.35 931 2 0 1.95896 6.25 -145.985 
-     80 214.221 932 2 0 2.00475 6.45 -146.043 
-     80 188.724 933 2 0 2.05036 6.65 -146.101 
-     80 310.654 934 2 0 2.09598 6.85 -146.158 
-     80 121.518 935 2 0 2.14118 7.05 -146.215 
-     80 656.096 1022 1 1 24.5771 107.606 -174.45 
-     80 1290.42 1023 1 1 24.65 108.103 -174.584 
-     80 187.227 1463 1 0 25.373 112.819 -175.85 
-     80 383.927 1464 1 0 25.3932 112.95 -175.885 
-     80 257.094 1465 1 0 25.4247 113.15 -175.939 
-     80 304.836 1466 1 0 25.456 113.35 -175.992 
-     80 283.139 1467 1 0 25.4869 113.55 -176.045 
-     80 339.895 1468 1 0 25.5179 113.75 -176.098 
-     80 299.104 1469 1 0 25.549 113.95 -176.15 
-     80 272.688 1470 1 0 25.5804 114.15 -176.202 
-     80 295.618 905 2 1 1.05 1.35645 -144.602 
-     80 329.935 906 2 1 1.25 1.77407 -144.738 
-     80 80.1024 925 2 0 2.86405 5.13844 -145.85 
-     80 124.349 926 2 0 2.91755 5.25 -145.887 
-     80 120.176 927 2 0 3.0134 5.45 -145.953 
-     80 37.7426 1120 1 1 44.2252 91.5528 -174.45 
-     80 421.981 1121 1 1 44.25 91.6121 -174.469 
-     80 313.695 1122 1 1 44.45 92.0904 -174.623 
-     80 151.525 1123 1 1 44.65 92.5724 -174.778 
-     80 42.8805 1378 1 0 46.0276 95.8969 -175.85 
-     80 148.473 1379 1 0 46.0496 95.95 -175.867 
-     80 119.959 1380 1 0 46.1326 96.15 -175.932 
-     80 152.949 1381 1 0 46.2157 96.35 -175.996 
-     80 301.5 1382 1 0 46.2984 96.55 -176.06 
-     80 485.242 1383 1 0 46.3812 96.75 -176.124 
-     80 202.454 1384 1 0 46.464 96.95 -176.189 
-     80 121.036 784 5 1 -23.1985 -14.8521 -54.6462 
-     80 225.955 1453 4 1 110.834 9.70327 -84.7681 
-Number of digits in this event =  51
 Event: 81
 Number of tracker hits in this event =  10
-     81 132.752 899 4 1 -0.22902 0.172728 -84.45 
-     81 144.837 900 4 0 -0.245873 0.180155 -85.85 
-     81 161.919 897 3 1 -0.593664 0.35469 -114.45 
-     81 196.772 901 3 0 -0.602835 0.364263 -115.85 
-     81 99.7098 896 2 1 -0.791644 0.556024 -144.45 
-     81 144.825 902 2 0 -0.809343 0.564385 -145.85 
-     81 292.935 894 1 1 -1.18099 0.7314 -174.45 
-     81 113.336 903 1 0 -1.19594 0.739722 -175.85 
-     81 157.62 892 0 1 -1.50176 0.905776 -204.45 
-     81 149.355 904 0 0 -1.5134 0.909586 -205.85 
-Number of digits in this event =  9
+     81 122.908 900 4 1 0.242138 0.0990816 -84.45 
+     81 120.009 900 4 0 0.252431 0.117603 -85.85 
+     81 217.192 901 3 1 0.43408 0.489129 -114.45 
+     81 136.377 902 3 0 0.440783 0.513033 -115.85 
+     81 128.979 902 2 1 0.530981 1.043 -144.45 
+     81 113.617 905 2 0 0.532361 1.07244 -145.85 
+     81 158.845 902 1 1 0.555497 1.6646 -174.45 
+     81 208.863 908 1 0 0.559488 1.69653 -175.85 
+     81 140.378 902 0 1 0.635049 2.35031 -204.45 
+     81 122.044 911 0 0 0.637278 2.38214 -205.85 
+Number of digits in this event =  10
 Event: 82
-Number of tracker hits in this event =  4
-     82 366.079 900 3 1 0.108177 0.0894886 -114.45 
-     82 164.116 900 3 0 0.118445 0.090858 -115.85 
-     82 134.628 901 2 1 0.340812 0.102205 -144.45 
-     82 159.365 900 2 0 0.345255 0.10044 -145.85 
-Number of digits in this event =  5
+Number of tracker hits in this event =  13
+     82 122.581 900 5 1 0.0663727 0.0906319 -54.45 
+     82 114.059 900 5 0 0.0746726 0.0957014 -55.85 
+     82 189.037 900 4 1 0.228095 0.206292 -84.45 
+     82 140.9 900 4 0 0.23444 0.213519 -85.85 
+     82 143.593 901 3 1 0.383796 0.343393 -114.45 
+     82 117.229 901 3 0 0.397337 0.35194 -115.85 
+     82 232.386 903 2 1 0.693173 0.522105 -144.45 
+     82 117.174 902 2 0 0.707235 0.529274 -145.85 
+     82 120.651 904 1 1 0.987004 0.663734 -174.45 
+     82 141.825 903 1 0 0.997069 0.673336 -175.85 
+     82 122.828 905 0 1 1.20345 0.874107 -204.45 
+     82 215.115 904 0 0 1.21326 0.888574 -205.85 
+     82 7.04953 940 1 0 15.6502 8.05 -176.201 
+Number of digits in this event =  11
 Event: 83
-Number of tracker hits in this event =  12
-     83 195.35 900 5 1 0.121166 0.088739 -54.45 
-     83 183.437 900 5 0 0.128229 0.0913395 -55.85 
-     83 145.42 901 4 1 0.263288 0.128933 -84.45 
-     83 177.896 900 4 0 0.270813 0.139238 -85.85 
-     83 166.833 901 3 1 0.431614 0.341286 -114.45 
-     83 131.469 901 3 0 0.44504 0.3572 -115.85 
-     83 120.594 903 2 1 0.718864 0.661845 -144.45 
-     83 135.386 903 2 0 0.727928 0.678332 -145.85 
-     83 190.001 904 1 1 0.901321 1.01941 -174.45 
-     83 125.835 904 1 0 0.911731 1.03276 -175.85 
-     83 191.789 905 0 1 1.10463 1.29965 -204.45 
-     83 258.678 906 0 0 1.1064 1.30658 -205.85 
-Number of digits in this event =  13
+Number of tracker hits in this event =  6
+     83 179.82 900 2 1 0.0573963 0.0898658 -144.45 
+     83 124.015 900 2 0 0.0609794 0.0922546 -145.85 
+     83 128.395 900 1 1 0.179367 0.186093 -174.45 
+     83 121.072 900 1 0 0.182901 0.189108 -175.85 
+     83 217.479 901 0 1 0.250169 0.246125 -204.45 
+     83 125.321 900 0 0 0.25232 0.246297 -205.85 
+Number of digits in this event =  7
 Event: 84
-Number of tracker hits in this event =  38
-     84 125.292 901 4 0 -0.0536438 0.341562 -85.85 
-     84 98.2576 899 3 1 -0.236457 0.456362 -114.45 
-     84 396.241 902 3 0 -0.247555 0.461286 -115.85 
-     84 147.469 897 2 1 -0.488276 0.575209 -144.45 
-     84 130.284 902 2 0 -0.520351 0.572732 -145.85 
-     84 126.656 894 1 1 -1.17907 0.50966 -174.45 
-     84 121.624 902 1 0 -1.20712 0.4964 -175.85 
-     84 138.79 891 0 1 -1.77311 0.193439 -204.45 
-     84 142.712 900 0 0 -1.81122 0.171126 -205.85 
-     84 185.652 912 0 0 31.1316 2.48918 -206.25 
-     84 27.3791 1060 0 1 32.1966 2.40748 -204.85 
-     84 123.536 1061 0 1 32.25 2.40342 -204.78 
-     84 32.8155 1062 0 1 32.45 2.38886 -204.519 
-     84 267.715 900 1 0 52.2104 0.244336 -176.25 
-     84 43.0735 1165 1 1 53.1857 0.143578 -174.85 
-     84 163.5 1166 1 1 53.25 0.137089 -174.758 
-     84 5.55958 1167 1 1 53.45 0.115199 -174.472 
-     84 179.66 892 2 0 73.8781 -1.60918 -146.25 
-     84 81.6683 1274 2 1 74.9066 -1.70407 -144.85 
-     84 101.367 1275 2 1 75.05 -1.71776 -144.656 
-     84 205.772 881 3 0 96.2607 -3.76752 -116.25 
-     84 28.2971 1385 3 1 97.2981 -3.87112 -114.85 
-     84 113.504 1386 3 1 97.35 -3.87637 -114.78 
-     84 25.4977 1387 3 1 97.55 -3.89583 -114.51 
-     84 224.307 857 4 0 117.056 -8.55951 -86.25 
-     84 81.8364 1489 4 1 118.031 -8.79564 -84.85 
-     84 97.8511 1490 4 1 118.15 -8.8245 -84.6799 
-     84 199.584 839 5 0 136.328 -12.1011 -56.25 
-     84 98.3882 1585 5 1 137.222 -12.2654 -54.85 
-     84 97.7809 1586 5 1 137.35 -12.2891 -54.65 
-     84 202.981 820 6 0 154.354 -15.9001 -26.25 
-     84 120.835 1675 6 1 155.193 -16.0755 -24.85 
-     84 97.5154 1676 6 1 155.35 -16.1081 -24.5887 
-     84 276.034 804 7 0 170.662 -19.0816 3.75 
-     84 122.526 1756 7 1 171.411 -19.2246 5.15 
-     84 149.851 1757 7 1 171.55 -19.2511 5.41132 
-     84 18.8073 634 3 1 -53.1098 -177.611 -114.85 
-     84 13.5139 580 1 0 159.594 -63.9097 -175.85 
-Number of digits in this event =  24
+Number of tracker hits in this event =  11
+     84 186.743 900 5 0 0.0509334 0.0842551 -55.85 
+     84 109.528 900 4 1 0.132786 0.27657 -84.45 
+     84 130.143 901 4 0 0.13337 0.284515 -85.85 
+     84 171.302 900 3 1 0.144415 0.440971 -114.45 
+     84 156.49 902 3 0 0.146905 0.455108 -115.85 
+     84 111.254 900 2 1 0.184008 0.767849 -144.45 
+     84 127.551 903 2 0 0.191104 0.78845 -145.85 
+     84 125.044 901 1 1 0.342335 1.17566 -174.45 
+     84 128.273 905 1 0 0.351435 1.18564 -175.85 
+     84 120.048 902 0 1 0.538144 1.38874 -204.45 
+     84 141.026 906 0 0 0.546055 1.39653 -205.85 
+Number of digits in this event =  10
 Event: 85
-Number of tracker hits in this event =  12
-     85 351.527 899 5 1 -0.0536887 -0.0847016 -54.45 
-     85 149.011 899 5 0 -0.0585603 -0.0876915 -55.85 
-     85 116.766 899 4 1 -0.176916 -0.146892 -84.45 
-     85 136.542 899 4 0 -0.184309 -0.150889 -85.85 
-     85 150.496 898 3 1 -0.352375 -0.232157 -114.45 
-     85 134.871 899 3 0 -0.357598 -0.2347 -115.85 
-     85 155.644 897 2 1 -0.468423 -0.293733 -144.45 
-     85 337.043 898 2 0 -0.469669 -0.289439 -145.85 
-     85 179.95 897 1 1 -0.490691 -0.218756 -174.45 
-     85 188.169 899 1 0 -0.500699 -0.21665 -175.85 
-     85 135.34 896 0 1 -0.687362 -0.176516 -204.45 
-     85 140.99 899 0 0 -0.696229 -0.166641 -205.85 
-Number of digits in this event =  14
+Number of tracker hits in this event =  16
+     85 152.647 899 4 1 -0.131822 -0.117823 -84.45 
+     85 154.58 899 4 0 -0.141797 -0.121927 -85.85 
+     85 139.008 898 3 1 -0.35538 -0.189959 -114.45 
+     85 156.58 899 3 0 -0.372605 -0.195475 -115.85 
+     85 149.614 896 2 1 -0.7526 -0.329984 -144.45 
+     85 113.309 898 2 0 -0.767346 -0.334182 -145.85 
+     85 139.469 894 1 1 -1.06129 -0.435295 -174.45 
+     85 132.007 898 1 0 -1.06962 -0.439772 -175.85 
+     85 123.15 894 0 1 -1.22453 -0.492219 -204.45 
+     85 135.163 897 0 0 -1.23062 -0.503887 -205.85 
+     85 119.854 899 5 0 -0.403755 -0.0622596 -55.85 
+     85 87.2172 1057 5 0 60.8798 31.4998 -56.25 
+     85 85.8457 1058 5 0 61.0186 31.65 -56.0924 
+     85 103.878 1059 5 0 61.1216 31.85 -56.0256 
+     85 84.9408 1060 5 0 61.103 32.05 -55.9825 
+     85 316.078 1204 5 1 61.0487 32.4774 -54.85 
+Number of digits in this event =  11
 Event: 86
 Number of tracker hits in this event =  8
-     86 162.297 900 3 1 0.212573 -0.110056 -114.45 
-     86 156.167 899 3 0 0.214565 -0.11851 -115.85 
-     86 122.568 901 2 1 0.261036 -0.281745 -144.45 
-     86 170.888 898 2 0 0.268457 -0.286495 -145.85 
-     86 224.696 901 1 1 0.414691 -0.407031 -174.45 
-     86 227.534 898 1 0 0.421658 -0.41236 -175.85 
-     86 130 902 0 1 0.562073 -0.517908 -204.45 
-     86 119.937 897 0 0 0.570397 -0.52078 -205.85 
-Number of digits in this event =  8
+     86 136.187 899 2 1 -0.17482 -0.0776717 -144.45 
+     86 203.923 899 2 0 -0.182381 -0.0675765 -145.85 
+     86 223.728 898 1 1 -0.347362 0.109704 -174.45 
+     86 135.837 900 1 0 -0.36254 0.120372 -175.85 
+     86 162.1 896 0 1 -0.671185 0.32824 -204.45 
+     86 115.724 901 0 0 -0.68993 0.339716 -205.85 
+     86 0.565274 841 12 0 49.0139 -11.85 153.796 
+     86 1.0059 1249 3 1 69.85 77.6035 -114.577 
+Number of digits in this event =  7
 Event: 87
-Number of tracker hits in this event =  4
-     87 131.915 900 2 1 0.101852 0.431408 -144.45 
-     87 131.453 901 2 0 0.102894 0.435487 -145.85 
-     87 127.246 900 1 1 0.139939 0.510441 -174.45 
-     87 135.296 902 1 0 0.13409 0.510979 -175.85 
-Number of digits in this event =  6
+Number of tracker hits in this event =  10
+     87 172.162 899 4 1 -0.167234 0.289682 -84.45 
+     87 168.011 901 4 0 -0.175625 0.306985 -85.85 
+     87 122.473 898 3 1 -0.345571 0.654301 -114.45 
+     87 149.009 903 3 0 -0.352885 0.668817 -115.85 
+     87 107.831 897 2 1 -0.502861 0.944674 -144.45 
+     87 139.888 904 2 0 -0.506181 0.955894 -145.85 
+     87 124.674 897 1 1 -0.553264 1.19534 -174.45 
+     87 188.57 905 1 0 -0.549894 1.2134 -175.85 
+     87 174.928 897 0 1 -0.496465 1.58233 -204.45 
+     87 159.552 907 0 0 -0.49589 1.6045 -205.85 
+Number of digits in this event =  10
 Event: 88
-Number of tracker hits in this event =  11
-     88 117.598 900 4 1 0.132115 -0.123532 -84.45 
-     88 212.407 899 4 0 0.138 -0.131203 -85.85 
-     88 142.689 901 3 1 0.262077 -0.30833 -114.45 
-     88 108.851 898 3 0 0.266586 -0.310292 -115.85 
-     88 172.63 901 2 1 0.37171 -0.348071 -144.45 
-     88 131.747 898 2 0 0.374513 -0.347496 -145.85 
-     88 122.416 901 1 1 0.405123 -0.339993 -174.45 
-     88 213.882 898 1 0 0.403246 -0.335627 -175.85 
-     88 109.257 901 0 1 0.347601 -0.253712 -204.45 
-     88 124.208 898 0 0 0.344343 -0.250798 -205.85 
-     88 15.0487 899 0 0 0.343465 -0.25 -206.215 
-Number of digits in this event =  8
+Number of tracker hits in this event =  14
+     88 145.763 901 5 1 0.374517 -0.690764 -54.45 
+     88 211.828 896 5 0 0.393371 -0.723431 -55.85 
+     88 174.681 903 4 1 0.775975 -1.37083 -84.45 
+     88 119.762 893 4 0 0.792893 -1.4029 -85.85 
+     88 158.05 905 3 1 1.13069 -2.05418 -114.45 
+     88 147.715 889 3 0 1.1482 -2.08742 -115.85 
+     88 125.214 907 2 1 1.49215 -2.75793 -144.45 
+     88 152.491 886 2 0 1.5111 -2.79534 -145.85 
+     88 117.472 909 1 1 1.90656 -3.5639 -174.45 
+     88 140.223 882 1 0 1.92046 -3.60308 -175.85 
+     88 129.738 910 0 1 2.21231 -4.37773 -204.45 
+     88 137.806 878 0 0 2.22067 -4.41955 -205.85 
+     88 12.9228 1295 13 0 -81.6484 79.25 183.949 
+     88 9.38964 616 0 0 -26.2358 -56.85 -206.23 
+Number of digits in this event =  13
 Event: 89
-Number of tracker hits in this event =  15
-     89 118.85 899 3 1 -0.0644417 -0.195667 -114.45 
-     89 280.687 899 3 0 -0.0656492 -0.204899 -115.85 
-     89 134.05 899 2 1 -0.0734687 -0.371148 -144.45 
-     89 118.738 898 2 0 -0.0765239 -0.38067 -145.85 
-     89 255.13 899 1 1 -0.177268 -0.584933 -174.45 
-     89 121.035 897 1 0 -0.183909 -0.598006 -175.85 
-     89 113.927 898 0 1 -0.277698 -0.86157 -204.45 
-     89 167.929 895 0 0 -0.283723 -0.872623 -205.85 
-     89 88.5888 1069 2 0 13.7887 34.0122 -146.115 
-     89 164.241 172 2 0 96.0492 -145.601 -146.111 
-     89 73.0743 171 2 0 95.1949 -145.831 -146.011 
-     89 73.0433 1395 2 1 99.248 -145.21 -144.85 
-     89 90.4028 1396 2 1 99.35 -145.161 -144.823 
-     89 5.22638 169 2 0 96.8177 -146.296 -145.85 
-     89 41.5571 1378 2 1 95.8081 -145.786 -144.85 
-Number of digits in this event =  7
-Event: 90
-Number of tracker hits in this event =  6
-     90 148.841 900 4 1 0.0893763 -0.0565001 -84.45 
-     90 135.545 899 4 0 0.0851757 -0.0629902 -85.85 
-     90 121.799 898 2 0 -0.0538704 -0.286621 -145.85 
-     90 154.604 899 1 1 -0.241924 -0.247751 -174.45 
-     90 160.582 899 1 0 -0.251823 -0.23856 -175.85 
-     90 7.75289 12 9 0 99.8518 -177.55 64.0538 
-Number of digits in this event =  8
-Event: 91
 Number of tracker hits in this event =  12
-     91 215.319 899 5 1 -0.136347 -0.127977 -54.45 
-     91 153.748 899 5 0 -0.153663 -0.137955 -55.85 
-     91 118.742 897 4 1 -0.515999 -0.32244 -84.45 
-     91 172.444 898 4 0 -0.531688 -0.332789 -85.85 
-     91 140.105 895 3 1 -0.850064 -0.526396 -114.45 
-     91 123.178 897 3 0 -0.86549 -0.531214 -115.85 
-     91 123.083 894 2 1 -1.18292 -0.644567 -144.45 
-     91 127.769 896 2 0 -1.19829 -0.652553 -145.85 
-     91 121.642 892 1 1 -1.51552 -0.826807 -174.45 
-     91 131.032 896 1 0 -1.52279 -0.837178 -175.85 
-     91 139.278 891 0 1 -1.66294 -1.05228 -204.45 
-     91 361.608 894 0 0 -1.66874 -1.06942 -205.85 
+     89 133.24 900 5 1 0.0704179 0.0938835 -54.45 
+     89 140.988 900 5 0 0.0703115 0.0961321 -55.85 
+     89 129.884 900 4 1 0.0809001 0.140393 -84.45 
+     89 285.418 900 4 0 0.0828476 0.143166 -85.85 
+     89 121.238 900 3 1 0.1159 0.215966 -114.45 
+     89 127.503 900 3 0 0.116034 0.2145 -115.85 
+     89 103.967 900 2 1 0.135799 0.180208 -144.45 
+     89 144.775 900 2 0 0.137893 0.181819 -145.85 
+     89 198.542 900 1 1 0.196096 0.199669 -174.45 
+     89 125.63 900 1 0 0.196781 0.202629 -175.85 
+     89 117.762 900 0 1 0.207718 0.255403 -204.45 
+     89 129.353 901 0 0 0.20315 0.253529 -205.85 
 Number of digits in this event =  12
+Event: 90
+Number of tracker hits in this event =  8
+     90 123.11 900 3 1 0.101913 -0.411776 -114.45 
+     90 113.305 898 3 0 0.114431 -0.4257 -115.85 
+     90 115.308 901 2 1 0.369527 -0.712267 -144.45 
+     90 132.311 896 2 0 0.381659 -0.727511 -145.85 
+     90 117.274 902 1 1 0.643859 -1.03735 -174.45 
+     90 156.499 894 1 0 0.662293 -1.05634 -175.85 
+     90 114.19 904 0 1 1.00058 -1.42815 -204.45 
+     90 149.389 892 0 0 1.02363 -1.45124 -205.85 
+Number of digits in this event =  5
+Event: 91
+Number of tracker hits in this event =  8
+     91 127.668 899 5 1 -0.05912 -0.861025 -54.45 
+     91 109.055 895 5 0 -0.0585978 -0.900848 -55.85 
+     91 133.066 900 2 1 0.0777289 -3.38484 -144.45 
+     91 160.687 883 2 0 0.0824198 -3.42778 -145.85 
+     91 129.283 900 1 1 0.153478 -4.31708 -174.45 
+     91 128.378 878 1 0 0.155482 -4.36129 -175.85 
+     91 124.105 900 0 1 0.186735 -5.26255 -204.45 
+     91 155.228 873 0 0 0.192653 -5.31271 -205.85 
+Number of digits in this event =  8
 Event: 92
-Number of tracker hits in this event =  60
-     92 146.091 900 5 1 0.103374 0.313113 -54.45 
-     92 95.1639 901 5 0 0.1091 0.331318 -55.85 
-     92 151.015 900 4 1 0.20646 0.707505 -84.45 
-     92 131.579 903 4 0 0.210871 0.726181 -85.85 
-     92 251.215 901 3 1 0.308405 1.12084 -114.45 
-     92 143.174 905 3 0 0.30999 1.13646 -115.85 
-     92 134.922 901 2 1 0.361912 1.46301 -144.45 
-     92 113.038 907 2 0 0.35984 1.47418 -145.85 
-     92 118.59 901 1 1 0.270451 1.67535 -174.45 
-     92 350.63 908 1 0 0.267461 1.68549 -175.85 
-     92 152.442 900 0 1 0.190081 1.90237 -204.45 
-     92 128.618 909 0 0 0.179772 1.91106 -205.85 
-     92 11.262 127 2 0 4.39565 -154.713 -146.25 
-     92 65.554 126 2 0 4.41116 -154.75 -146.235 
-     92 72.457 125 2 0 4.49931 -154.95 -146.122 
-     92 137.835 124 2 0 4.58457 -155.15 -146.029 
-     92 53.0705 123 2 0 4.60496 -155.35 -145.964 
-     92 89.0197 122 2 0 4.64643 -155.55 -145.913 
-     92 48.7971 121 2 0 4.69608 -155.75 -145.907 
-     92 85.6966 120 2 0 4.72992 -155.95 -145.916 
-     92 63.1215 119 2 0 4.7748 -156.15 -145.916 
-     92 54.1198 118 2 0 4.82586 -156.35 -145.92 
-     92 73.3704 117 2 0 4.81791 -156.55 -145.899 
-     92 64.5317 116 2 0 4.86274 -156.75 -145.887 
-     92 36.034 115 2 0 4.8985 -156.95 -145.874 
-     92 199.702 925 2 1 5.12797 -164.053 -144.85 
-     92 399.566 924 2 1 5.05 -164.718 -144.7 
-     92 3.9859 69 2 0 5.5103 -166.34 -145.85 
-     92 172.99 68 2 0 5.51879 -166.35 -145.866 
-     92 20.7019 67 2 0 5.70183 -166.55 -146.201 
-     92 66.2632 376 2 0 -35.649 -104.822 -146.25 
-     92 54.3001 375 2 0 -35.7364 -104.95 -146.044 
-     92 56.8935 719 2 1 -36.1924 -105.649 -144.85 
-     92 256.431 718 2 1 -36.25 -105.739 -144.698 
-     92 130.162 377 3 0 -30.0717 -104.626 -116.25 
-     92 184.303 751 3 1 -29.8499 -104.494 -114.85 
-     92 110.143 392 4 0 -33.0286 -101.584 -86.25 
-     92 20.7857 393 4 0 -33.0671 -101.55 -85.9132 
-     92 143.569 734 4 1 -33.1838 -101.439 -84.85 
-     92 143.42 297 5 0 -29.6284 -120.553 -56.25 
-     92 110.506 296 5 0 -29.5912 -120.75 -55.9638 
-     92 143.985 753 5 1 -29.4281 -121.453 -54.85 
-     92 133.037 273 6 0 -39.8222 -125.454 -26.25 
-     92 44.4901 698 6 1 -40.391 -125.56 -24.85 
-     92 92.5348 697 6 1 -40.45 -125.568 -24.7093 
-     92 107.797 203 7 0 -39.8138 -139.396 3.75 
-     92 28.2919 202 7 0 -39.8039 -139.55 4.06353 
-     92 128.176 700 7 1 -39.8767 -140.059 5.15 
-     92 13.2885 398 8 0 -63.0413 -100.395 33.75 
-     92 124.799 399 8 0 -63.0672 -100.35 33.7814 
-     92 205.952 400 8 0 -63.1737 -100.15 33.9343 
-     92 91.821 401 8 0 -63.271 -99.95 34.0993 
-     92 47.7484 581 8 1 -63.7922 -98.818 35.15 
-     92 133.626 580 8 1 -63.85 -98.6948 35.2646 
-     92 60.9411 578 8 1 -64.294 -98.2924 35.55 
-     92 87.0974 577 8 1 -64.45 -98.3429 35.3454 
-     92 0.0849774 576 8 1 -64.65 -98.4507 35.1503 
-     92 14.5135 404 8 0 -65.5246 -99.3159 34.15 
-     92 77.3354 403 8 0 -65.5591 -99.35 34.1105 
-     92 40.0289 402 8 0 -65.6904 -99.55 34.0452 
-Number of digits in this event =  26
+Number of tracker hits in this event =  12
+     92 61.91 900 4 1 0.05 0.139467 -84.7526 
+     92 162.708 900 4 0 0.0538138 0.138564 -85.85 
+     92 140.27 900 3 1 0.142312 0.132625 -114.45 
+     92 130.623 900 3 0 0.146089 0.136298 -115.85 
+     92 116.978 900 2 1 0.236733 0.212188 -144.45 
+     92 118.304 900 2 0 0.237055 0.210751 -145.85 
+     92 140.806 900 1 1 0.211081 0.204839 -174.45 
+     92 150.314 900 1 0 0.209628 0.197895 -175.85 
+     92 123.492 900 0 1 0.225403 0.107607 -204.45 
+     92 111.17 900 0 0 0.227491 0.102739 -205.85 
+     92 32.2249 126 5 1 -154.877 -37.4679 -54.85 
+     92 222.163 1081 2 1 36.2931 62.6839 -144.804 
+Number of digits in this event =  11
 Event: 93
-Number of tracker hits in this event =  6
-     93 118.14 900 2 1 0.134036 0.724811 -144.45 
-     93 132.766 903 2 0 0.139156 0.735026 -145.85 
-     93 139.794 900 1 1 0.232846 0.942537 -174.45 
-     93 125.198 904 1 0 0.241201 0.955923 -175.85 
-     93 114.9 901 0 1 0.427768 1.19965 -204.45 
-     93 111.898 905 0 0 0.440251 1.21624 -205.85 
-Number of digits in this event =  6
+Number of tracker hits in this event =  16
+     93 176.415 899 5 1 -0.070643 0.370041 -54.45 
+     93 124.602 901 5 0 -0.0772483 0.384579 -55.85 
+     93 121.484 899 4 1 -0.224198 0.675557 -84.45 
+     93 162.207 903 4 0 -0.231211 0.692833 -85.85 
+     93 119.043 898 3 1 -0.356971 1.04141 -114.45 
+     93 145.811 905 3 0 -0.36671 1.05716 -115.85 
+     93 118.865 897 2 1 -0.575575 1.37289 -144.45 
+     93 261.464 906 2 0 -0.553578 1.40917 -145.85 
+     93 172.906 899 1 1 -0.109804 2.11909 -174.45 
+     93 119.977 910 1 0 -0.0873238 2.15437 -175.85 
+     93 127.144 901 0 1 0.349763 2.87676 -204.45 
+     93 179.657 914 0 0 0.369597 2.91648 -205.85 
+     93 2.42277 409 1 0 84.1577 -98.35 -176.119 
+     93 29.0474 215 4 1 -136.95 48.8023 -84.6906 
+     93 23.8163 485 4 1 -82.9703 -109.596 -84.85 
+     93 50.1726 945 0 1 9.08454 -9.36305 -204.703 
+Number of digits in this event =  13
 Event: 94
-Number of tracker hits in this event =  5
-     94 157.445 900 4 1 0.197303 0.086222 -84.45 
-     94 146.74 900 4 0 0.203381 0.087091 -85.85 
-     94 164.455 901 3 1 0.309285 0.0914138 -114.45 
-     94 133.955 900 3 0 0.319203 0.088737 -115.85 
-     94 2.2778 1326 0 0 81.0613 85.3688 -206.25 
-Number of digits in this event =  7
+Number of tracker hits in this event =  4
+     94 119.555 902 1 1 0.552742 -0.161096 -174.45 
+     94 124.953 899 1 0 0.556707 -0.168006 -175.85 
+     94 167.816 902 0 1 0.617451 -0.321692 -204.45 
+     94 162.545 898 0 0 0.608856 -0.324536 -205.85 
+Number of digits in this event =  4
 Event: 95
-Number of tracker hits in this event =  6
-     95 110.883 901 2 1 0.293409 -0.0918536 -144.45 
-     95 128.133 899 2 0 0.303608 -0.100053 -145.85 
-     95 132.732 902 1 1 0.488969 -0.270413 -174.45 
-     95 123.935 898 1 0 0.499398 -0.271905 -175.85 
-     95 142.735 903 0 1 0.730123 -0.292614 -204.45 
-     95 270.222 898 0 0 0.743366 -0.290189 -205.85 
-Number of digits in this event =  6
-Event: 96
-Number of tracker hits in this event =  16
-     96 124.675 899 5 1 -0.174558 -0.0773241 -54.45 
-     96 164.982 899 5 0 -0.182345 -0.0848987 -55.85 
-     96 129.258 898 4 1 -0.343244 -0.251169 -84.45 
-     96 137.529 898 4 0 -0.35325 -0.258235 -85.85 
-     96 332.528 897 3 1 -0.558278 -0.402581 -114.45 
-     96 163.936 898 3 0 -0.561038 -0.419275 -115.85 
-     96 116.12 897 2 1 -0.64302 -0.761168 -144.45 
-     96 126.521 896 2 0 -0.649397 -0.776783 -145.85 
-     96 119.651 896 1 1 -0.801872 -1.09143 -174.45 
-     96 120.17 894 1 0 -0.807385 -1.1031 -175.85 
-     96 113.441 895 0 1 -0.907365 -1.33146 -204.45 
-     96 152.55 893 0 0 -0.918033 -1.3453 -205.85 
-     96 78.4905 1051 0 0 11.7826 30.3011 -206.25 
-     96 138.918 1052 0 0 11.7883 30.45 -206.161 
-     96 257.744 1053 0 0 11.6454 30.65 -206.085 
-     96 18.372 1054 0 0 11.5831 30.85 -206.088 
+Number of tracker hits in this event =  18
+     95 135.199 899 3 1 -0.0703443 0.0507042 -114.45 
+     95 219.234 900 3 0 -0.076876 0.0578306 -115.85 
+     95 167.355 899 2 1 -0.223811 0.212983 -144.45 
+     95 123.76 900 2 0 -0.224807 0.229162 -145.85 
+     95 143.971 899 1 1 -0.248714 0.572951 -174.45 
+     95 141.732 902 1 0 -0.247723 0.592547 -175.85 
+     95 141.53 899 0 1 -0.179694 0.987894 -204.45 
+     95 124.656 904 0 0 -0.175604 1.01007 -205.85 
+     95 10.602 900 3 1 0.05 -0.151644 -114.811 
+     95 56.7028 901 3 0 0.306746 0.25 -116.071 
+     95 70.8477 902 3 0 0.305199 0.45 -116.042 
+     95 235.036 903 3 0 0.280638 0.65 -115.93 
+     95 27.3766 741 3 0 13.4919 -31.7911 -116.25 
+     95 34.7886 740 3 0 13.504 -31.85 -116.217 
+     95 33.4153 675 3 0 14.8234 -44.9224 -116.25 
+     95 194.787 676 3 0 14.8053 -44.85 -116.167 
+     95 54.7552 974 3 1 14.9254 -44.669 -114.85 
+     95 324.961 975 3 1 15.05 -44.7055 -114.734 
 Number of digits in this event =  12
+Event: 96
+Number of tracker hits in this event =  8
+     96 119.854 899 4 1 -0.230648 -0.0842373 -84.45 
+     96 121.272 899 4 0 -0.240467 -0.0801433 -85.85 
+     96 184.457 897 2 1 -0.56817 0.209902 -144.45 
+     96 116.16 900 2 0 -0.577463 0.217854 -145.85 
+     96 122.726 896 1 1 -0.774423 0.367036 -174.45 
+     96 166.636 901 1 0 -0.782246 0.374883 -175.85 
+     96 127.976 895 0 1 -0.936886 0.53936 -204.45 
+     96 105.99 902 0 0 -0.943371 0.547851 -205.85 
+Number of digits in this event =  6
 Event: 97
-Number of tracker hits in this event =  12
-     97 119.279 899 4 1 -0.206708 0.0578276 -84.45 
-     97 168.711 900 4 0 -0.211635 0.0599603 -85.85 
-     97 175.594 898 3 1 -0.30397 0.0960039 -114.45 
-     97 125.456 900 3 0 -0.30862 0.098318 -115.85 
-     97 302.836 898 2 1 -0.390849 0.162882 -144.45 
-     97 116.251 900 2 0 -0.393102 0.165882 -145.85 
-     97 132.716 898 1 1 -0.435907 0.208333 -174.45 
-     97 254.717 900 1 0 -0.440936 0.211876 -175.85 
-     97 112.436 897 0 1 -0.558349 0.30373 -204.45 
-     97 166.95 901 0 0 -0.568163 0.312271 -205.85 
-     97 266.231 845 1 0 -55.2712 -10.9082 -176.25 
-     97 17.0061 1061 1 0 -85.4064 32.3996 -176.25 
-Number of digits in this event =  10
+Number of tracker hits in this event =  10
+     97 334.689 900 4 1 0.0844999 -0.255671 -84.45 
+     97 129.524 898 4 0 0.0883291 -0.266405 -85.85 
+     97 119.93 900 3 1 0.172185 -0.485051 -114.45 
+     97 271.573 897 3 0 0.173963 -0.493183 -115.85 
+     97 111.351 900 2 1 0.185687 -0.652674 -144.45 
+     97 158.799 896 2 0 0.187331 -0.65933 -145.85 
+     97 150.525 900 1 1 0.221253 -0.793236 -174.45 
+     97 391.412 896 1 0 0.221611 -0.796928 -175.85 
+     97 103.273 900 0 1 0.242779 -0.876595 -204.45 
+     97 161.763 895 0 0 0.254341 -0.879992 -205.85 
+Number of digits in this event =  8
 Event: 98
-Number of tracker hits in this event =  11
-     98 145.105 898 4 1 -0.27443 -0.310952 -84.45 
-     98 121.275 898 4 0 -0.281531 -0.32348 -85.85 
-     98 142.098 898 3 1 -0.419193 -0.566479 -114.45 
-     98 119.392 897 3 0 -0.428241 -0.58047 -115.85 
-     98 138.082 897 2 1 -0.595214 -0.86186 -144.45 
-     98 124.794 895 2 0 -0.605084 -0.878477 -145.85 
-     98 136.152 896 1 1 -0.825535 -1.22255 -174.45 
-     98 312.485 894 1 0 -0.837624 -1.24237 -175.85 
-     98 147.802 894 0 1 -1.09397 -1.63435 -204.45 
-     98 109.693 891 0 0 -1.11228 -1.6539 -205.85 
-     98 5.50827 817 4 1 -16.6005 -40.6449 -84.85 
-Number of digits in this event =  10
+Number of tracker hits in this event =  4
+     98 122.929 900 5 1 0.0741577 0.0557519 -54.45 
+     98 126.502 900 5 0 0.0754628 0.0545675 -55.85 
+     98 187.716 898 0 1 -0.251453 0.0773891 -204.45 
+     98 135.091 900 0 0 -0.257238 0.0861144 -205.85 
+Number of digits in this event =  6
 Event: 99
-Number of tracker hits in this event =  18
-     99 127.943 900 4 1 0.113559 -0.0775272 -84.45 
-     99 148.71 899 4 0 0.12317 -0.0785624 -85.85 
-     99 115.455 901 3 1 0.319254 -0.0796114 -114.45 
-     99 146.32 899 3 0 0.335596 -0.0812705 -115.85 
-     99 50.8657 902 2 1 0.647684 -0.113901 -144.45 
-     99 72.9967 903 2 1 0.65 -0.114128 -144.654 
-     99 126.521 899 2 0 0.663504 -0.11561 -145.85 
-     99 126.192 904 1 1 1.00297 -0.149953 -174.45 
-     99 161.714 899 1 0 1.01775 -0.14651 -175.85 
-     99 109.713 906 0 1 1.30521 -0.0734664 -204.45 
-     99 189.024 899 0 0 1.32391 -0.0743334 -205.85 
-     99 149.884 897 6 0 -0.468607 -0.479599 -25.85 
-     99 1.67139 896 6 0 -0.562361 -0.65 -26.2413 
-     99 34.3088 642 6 0 -30.5961 -51.5395 -26.25 
-     99 71.7313 641 6 0 -30.6747 -51.65 -26.1904 
-     99 118.645 640 6 0 -30.7307 -51.85 -26.1048 
-     99 237.391 744 6 1 -31.1017 -51.5099 -24.85 
-     99 113.355 743 6 1 -31.25 -51.4335 -24.6423 
-Number of digits in this event =  10
+Number of tracker hits in this event =  8
+     99 128.306 899 3 1 -0.149737 -0.138651 -114.45 
+     99 126.067 899 3 0 -0.154494 -0.141888 -115.85 
+     99 107.614 898 2 1 -0.251611 -0.203238 -144.45 
+     99 176.026 899 2 0 -0.257374 -0.203527 -145.85 
+     99 200.736 898 1 1 -0.394011 -0.18071 -174.45 
+     99 131.262 899 1 0 -0.400789 -0.175385 -175.85 
+     99 100.361 897 0 1 -0.552448 -0.068463 -204.45 
+     99 123.75 899 0 0 -0.557377 -0.0630661 -205.85 
+Number of digits in this event =  7
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=0.65s Real=0.66s Sys=0.01s
+  User=0.52s Real=0.53s Sys=0.01s
 End of Run 0
 /gun/particle gamma
 /gun/energy 1 GeV
@@ -2591,1294 +2387,1105 @@ Cannot set FirstId as its value was already used.
  done
 Event: 0
 Number of tracker hits in this event =  0
-Number of digits in this event =  3
+Number of digits in this event =  1
 Event: 1
-Number of tracker hits in this event =  22
-      1 235.111 899 3 1 -0.227658 -0.179865 -114.45 
-      1 131.066 899 3 0 -0.242661 -0.199942 -115.85 
-      1 42.7856 898 2 1 -0.447844 -0.561453 -144.45 
-      1 110.473 897 2 1 -0.45 -0.563888 -144.584 
-      1 175.938 897 2 0 -0.473621 -0.587668 -145.85 
-      1 135.627 895 1 1 -1.03128 -1.18163 -174.45 
-      1 118.853 894 1 0 -1.0424 -1.22066 -175.85 
-      1 121.827 893 0 1 -1.39138 -2.05255 -204.45 
-      1 89.664 889 0 0 -1.38262 -2.06572 -205.85 
-      1 625.525 894 1 1 -1.05 -1.24696 -174.629 
-      1 202.739 893 1 1 -1.25 -1.53843 -174.843 
-      1 119.512 892 1 1 -1.45 -1.77592 -174.828 
-      1 104.802 887 1 0 -1.23301 -2.51556 -175.85 
-      1 233.219 888 1 0 -1.05188 -2.45 -175.917 
-      1 138.496 889 1 0 -0.861244 -2.25 -175.937 
-      1 97.3424 898 3 1 -0.25 -0.17439 -114.452 
-      1 149.034 901 2 1 0.270497 0.142739 -144.45 
-      1 192.935 900 2 0 0.278287 0.145701 -145.85 
-      1 136.374 901 1 1 0.398493 0.243794 -174.45 
-      1 135.908 901 1 0 0.395058 0.252928 -175.85 
-      1 116.539 901 0 1 0.261278 0.425653 -204.45 
-      1 116.234 901 0 0 0.251494 0.429966 -205.85 
-Number of digits in this event =  14
+Number of tracker hits in this event =  6
+      1 4.463 1002 2 0 -30.1325 20.4835 -145.867 
+      1 143.19 745 2 1 -31.0204 20.6951 -144.85 
+      1 233.403 744 2 1 -31.05 20.7022 -144.816 
+      1 1.76796 1009 2 0 -30.959 22.0456 -145.85 
+      1 173.884 1010 2 0 -30.9582 22.05 -145.855 
+      1 201.595 1011 2 0 -31.0185 22.25 -146.122 
+Number of digits in this event =  5
 Event: 2
-Number of tracker hits in this event =  2
-      2 117.952 902 0 1 0.576854 -1.12623 -204.45 
-      2 137.029 894 0 0 0.691495 -1.16861 -205.85 
-Number of digits in this event =  3
+Number of tracker hits in this event =  3
+      2 48.0448 807 2 0 64.7092 -18.4913 -146.188 
+      2 53.6326 201 7 0 -89.6673 -139.768 3.86726 
+      2 143.595 202 7 0 -89.6832 -139.75 3.93058 
+Number of digits in this event =  2
 Event: 3
-Number of tracker hits in this event =  32
-      3 142.343 901 5 1 0.276772 0.733512 -54.45 
-      3 256.859 904 5 0 0.320828 0.942221 -55.85 
-      3 118.808 907 4 1 1.47769 5.02005 -84.45 
-      3 28.333 925 4 0 1.52583 5.24303 -85.85 
-      3 98.9408 926 4 0 1.52732 5.25 -85.8938 
-      3 1.36214 912 3 1 2.45051 10.0954 -114.45 
-      3 112.668 911 3 1 2.45 10.098 -114.46 
-      3 148.947 952 3 0 2.37607 10.467 -115.85 
-      3 162.198 905 2 1 1.1462 18.0899 -144.45 
-      3 21.9144 992 2 0 0.96114 18.6303 -145.85 
-      3 133.353 993 2 0 0.954685 18.65 -145.9 
-      3 159.564 888 1 1 -2.28505 30.4713 -174.45 
-      3 162.008 1054 1 0 -2.43168 30.9922 -175.85 
-      3 54.1344 1055 1 0 -2.45026 31.05 -176.005 
-      3 16.2097 876 0 1 -4.66941 42.0052 -204.45 
-      3 141.272 877 0 1 -4.65 42.0356 -204.495 
-      3 12.1734 1114 0 0 -4.42919 43.0236 -205.85 
-      3 84.9438 1115 0 0 -4.42597 43.05 -205.886 
-      3 36.1843 1116 0 0 -4.38679 43.25 -206.172 
-      3 146.468 905 5 0 0.348893 1.05 -56.0036 
-      3 209.004 906 5 0 0.460624 1.25 -56.0237 
-      3 194.168 900 5 1 0.104473 0.0516605 -54.45 
-      3 122.384 900 5 0 0.117768 0.0586155 -55.85 
-      3 119.457 901 4 1 0.350196 0.243542 -84.45 
-      3 109.041 901 4 0 0.352149 0.252632 -85.85 
-      3 127.23 901 3 1 0.417412 0.383965 -114.45 
-      3 288.518 901 3 0 0.404222 0.394641 -115.85 
-      3 132.842 900 2 1 0.0681442 0.60778 -144.45 
-      3 106.079 902 2 0 0.0607565 0.62283 -145.85 
-      3 121.321 899 0 1 -0.165013 1.33714 -204.45 
-      3 152.865 906 0 0 -0.17255 1.36571 -205.85 
-      3 31.6124 1191 0 0 -44.6729 58.3513 -205.921 
-Number of digits in this event =  19
+Number of tracker hits in this event =  0
+Number of digits in this event =  2
 Event: 4
-Number of tracker hits in this event =  34
-      4 61.3248 733 0 0 14.642 -33.3667 -206.25 
-      4 126.056 732 0 0 14.6835 -33.45 -206.186 
-      4 92.9483 731 0 0 14.7835 -33.65 -206.033 
-      4 16.0389 730 0 0 14.8841 -33.85 -205.879 
-      4 129.064 977 0 1 15.5517 -35.1653 -204.85 
-      4 156.53 978 0 1 15.65 -35.359 -204.698 
-      4 54.1711 553 1 0 35.0243 -69.3447 -176.25 
-      4 107.899 552 1 0 35.0845 -69.45 -176.162 
-      4 84.2384 551 1 0 35.1966 -69.65 -175.991 
-      4 119.887 1079 1 1 35.9335 -70.9824 -174.85 
-      4 168.639 1080 1 1 36.05 -71.1934 -174.669 
-      4 10.6516 396 2 0 54.159 -100.923 -146.25 
-      4 119.564 395 2 0 54.1754 -100.95 -146.224 
-      4 128.218 394 2 0 54.2976 -101.15 -146.032 
-      4 22.6711 1174 2 1 55.0252 -102.367 -144.85 
-      4 196.856 1175 2 1 55.05 -102.408 -144.81 
-      4 40.9418 1176 2 1 55.25 -102.741 -144.485 
-      4 131.619 259 3 0 71.7522 -128.194 -116.25 
-      4 207.813 258 3 0 71.8535 -128.35 -116.077 
-      4 26.3892 257 3 0 71.9854 -128.55 -115.853 
-      4 147.485 1262 3 1 72.5727 -129.44 -114.85 
-      4 199.897 1263 3 1 72.65 -129.558 -114.718 
-      4 17.3402 126 4 0 90.0033 -154.922 -86.25 
-      4 31.5999 125 4 0 90.0225 -154.95 -86.2185 
-      4 75.3654 124 4 0 90.1597 -155.15 -85.9927 
-      4 97.2244 1353 4 1 90.8596 -156.153 -84.85 
-      4 150.292 1354 4 1 90.95 -156.283 -84.7025 
-      4 42.2079 1260 3 1 72.1914 -130.644 -114.85 
-      4 77.499 1261 3 1 72.25 -130.826 -114.777 
-      4 115.487 1264 3 1 72.85 -130.952 -114.537 
-      4 263.087 249 3 0 73.7049 -130.313 -115.85 
-      4 78.51 248 3 0 73.8994 -130.35 -116.16 
-      4 80.036 1371 1 0 -36.2596 94.3891 -175.926 
-      4 49.2403 142 6 0 -53.6133 -151.674 -26.0491 
-Number of digits in this event =  15
-Event: 5
-Number of tracker hits in this event =  1
-      5 37.2005 1694 4 1 159.142 112.414 -84.6911 
+Number of tracker hits in this event =  0
 Number of digits in this event =  1
+Event: 5
+Number of tracker hits in this event =  8
+      5 103.956 903 1 1 0.674913 0.995086 -174.45 
+      5 134.01 904 1 0 0.745698 0.981343 -175.85 
+      5 142.928 909 0 1 2.01182 0.526534 -204.45 
+      5 109.054 902 0 0 1.95862 0.556793 -205.85 
+      5 122.561 899 1 1 -0.10928 -0.051048 -174.45 
+      5 185.095 899 1 0 -0.115434 -0.0603327 -175.85 
+      5 114.401 899 0 1 -0.210719 -0.275454 -204.45 
+      5 130.548 898 0 0 -0.21262 -0.297145 -205.85 
+Number of digits in this event =  6
 Event: 6
-Number of tracker hits in this event =  64
-      6 279.728 899 3 0 -0.37215 -0.184934 -115.85 
-      6 150.019 845 2 1 -10.9368 -6.39476 -144.45 
-      6 74.4196 844 2 1 -11.05 -6.64519 -144.698 
-      6 26.9442 858 2 0 -11.4631 -8.38678 -145.85 
-      6 346.394 857 2 0 -11.4778 -8.45 -145.891 
-      6 71.036 856 2 0 -11.5213 -8.65 -146.027 
-      6 105.841 855 2 0 -11.5462 -8.85 -146.131 
-      6 48.2481 799 1 1 -20.208 -52.7077 -174.45 
-      6 79.0986 798 1 1 -20.25 -52.692 -174.55 
-      6 106.666 636 1 0 -20.391 -52.7199 -175.85 
-      6 52.8269 764 0 1 -27.2324 -50.0616 -204.45 
-      6 154.334 763 0 1 -27.25 -50.1484 -204.496 
-      6 124.303 640 0 0 -25.9252 -51.9424 -205.85 
-      6 58.419 639 0 0 -25.6317 -52.05 -205.937 
-      6 124.252 777 0 1 -24.6317 -52.5644 -204.85 
-      6 337.293 778 0 1 -24.45 -52.8344 -204.698 
-      6 151.153 900 2 1 0.187137 0.26005 -144.45 
-      6 123.153 901 2 0 0.154521 0.26711 -145.85 
-      6 201.164 896 1 1 -0.706945 0.416909 -174.45 
-      6 140.695 902 1 0 -0.698041 0.467457 -175.85 
-      6 126.482 894 0 1 -1.23543 2.649 -204.45 
-      6 116.033 913 0 0 -1.17061 2.67008 -205.85 
-      6 77.142 774 0 1 -25.127 21.7882 -204.775 
-      6 102.723 773 0 1 -25.25 21.9103 -204.556 
-      6 65.2091 772 0 1 -25.45 21.9279 -204.517 
-      6 67.8921 771 0 1 -25.65 21.8918 -204.506 
-      6 442.405 770 0 1 -25.85 21.9092 -204.542 
-      6 26.5124 1246 5 0 -120.71 69.3588 -56.25 
-      6 187.597 1247 5 0 -120.698 69.45 -56.2498 
-      6 67.4345 1248 5 0 -120.672 69.65 -56.1294 
-      6 39.8937 298 5 1 -120.384 69.4899 -54.85 
-      6 45.0659 299 5 1 -120.35 69.4459 -54.7943 
-      6 205.054 1257 5 0 -118.281 71.6141 -55.85 
-      6 187.18 883 2 1 -3.33632 -1.67125 -144.45 
-      6 154.65 892 2 0 -3.441 -1.64677 -145.85 
-      6 535.593 871 1 1 -5.80071 -1.33701 -174.45 
-      6 193.069 893 1 0 -5.87764 -1.33958 -175.85 
-      6 115.235 862 0 1 -7.53241 -1.02357 -204.45 
-      6 193.889 895 0 0 -7.71076 -0.889816 -205.85 
-      6 2.27725 896 0 0 -22.3234 -0.844867 -206.25 
-      6 51.5031 894 0 0 -22.3845 -1.05 -206.021 
-      6 184.539 786 0 1 -22.7454 -2.21344 -204.85 
-      6 28.4618 785 0 1 -22.85 -2.56719 -204.504 
-      6 179.975 931 1 0 -42.7044 6.26324 -176.25 
-      6 113.617 682 1 1 -43.4885 6.99306 -174.85 
-      6 192.61 681 1 1 -43.65 7.19185 -174.538 
-      6 4.12035 930 1 0 -43.5772 6.06627 -175.85 
-      6 112.47 929 1 0 -43.5757 6.05 -175.862 
-      6 145.839 928 1 0 -43.6981 5.85 -175.942 
-      6 140.286 927 1 0 -43.748 5.65 -176.003 
-      6 13.2365 828 1 1 -14.2793 32.7342 -174.697 
-      6 294.692 829 1 1 -14.25 32.7525 -174.695 
-      6 85.7897 528 4 1 -74.2536 -1.89954 -84.6728 
-      6 360.004 1476 5 0 -105.924 115.446 -56.25 
-      6 70.7518 1477 5 0 -105.952 115.55 -56.2254 
-      6 72.8715 1478 5 0 -105.884 115.75 -56.1422 
-      6 116.77 1479 5 0 -105.817 115.95 -56.087 
-      6 106.743 1480 5 0 -105.79 116.15 -56.0102 
-      6 64.1354 1481 5 0 -105.777 116.35 -55.9364 
-      6 52.3825 1482 5 0 -105.762 116.55 -55.8963 
-      6 28.1127 1483 5 0 -105.764 116.75 -55.8601 
-      6 520.026 353 5 1 -109.386 162.21 -54.85 
-      6 140.117 352 5 1 -109.55 163.206 -54.7831 
-      6 105.962 354 5 1 -109.35 164.218 -54.6536 
-Number of digits in this event =  30
+Number of tracker hits in this event =  0
+Number of digits in this event =  2
 Event: 7
-Number of tracker hits in this event =  12
-      7 279.806 898 1 1 -0.348207 -0.199649 -174.45 
-      7 129.664 899 1 0 -0.343763 -0.196236 -175.85 
-      7 221.553 899 0 1 -0.198447 -0.132301 -204.45 
-      7 121.861 899 0 0 -0.192974 -0.124855 -205.85 
-      7 56.6953 1035 12 0 36.9429 27.1499 154.074 
-      7 123.391 900 2 1 0.219945 0.948648 -144.45 
-      7 122.947 904 2 0 0.200528 0.896089 -145.85 
-      7 26.52 899 1 1 -0.245262 -0.424229 -174.45 
-      7 144.596 898 1 0 -0.316037 -0.432393 -175.85 
-      7 118.407 891 0 1 -1.66047 -0.780026 -204.45 
-      7 117.874 896 0 0 -1.7347 -0.703313 -205.85 
-      7 36.4342 935 1 1 7.06381 -26.7139 -174.495 
-Number of digits in this event =  8
+Number of tracker hits in this event =  36
+      7 1.0482 898 3 0 0.05 -0.375231 -116.245 
+      7 113.076 901 2 1 0.27513 -0.476407 -144.45 
+      7 121.527 897 2 0 0.296717 -0.471034 -145.85 
+      7 135.438 903 1 1 0.80277 -0.383841 -174.45 
+      7 105.3 898 1 0 0.810831 -0.378478 -175.85 
+      7 335.366 904 0 1 0.967096 -0.2731 -204.45 
+      7 150.028 898 0 0 0.969069 -0.266595 -205.85 
+      7 103.88 899 3 1 -0.140142 0.275567 -114.45 
+      7 130.742 901 3 0 -0.134492 0.308285 -115.85 
+      7 135.009 899 1 1 -0.0730283 2.17386 -174.45 
+      7 135.409 905 0 1 1.05 3.42121 -204.522 
+      7 120.446 917 0 0 1.11087 3.51706 -205.85 
+      7 250.062 900 0 1 0.05 3.10528 -204.453 
+      7 163.953 899 0 1 -0.05 3.89683 -204.596 
+      7 65.9302 898 0 1 -0.25 4.40481 -204.706 
+      7 200.31 935 0 0 -0.05 7.17331 -205.88 
+      7 504.739 936 0 0 -0.0651658 7.25 -205.912 
+      7 63.8405 937 0 0 -0.101211 7.45 -206.029 
+      7 16.4627 617 1 0 19.1339 -56.5864 -176.25 
+      7 52.6917 616 1 0 19.1545 -56.65 -176.22 
+      7 65.6355 615 1 0 19.2332 -56.85 -176.119 
+      7 128.935 614 1 0 19.1964 -57.05 -176.084 
+      7 69.3782 613 1 0 19.184 -57.25 -176.068 
+      7 55.3218 612 1 0 19.1914 -57.45 -176.056 
+      7 78.6085 611 1 0 19.1854 -57.65 -176.006 
+      7 92.9671 610 1 0 19.1905 -57.85 -176.023 
+      7 69.5117 609 1 0 19.1789 -58.05 -176.041 
+      7 49.3984 608 1 0 19.2343 -58.25 -176.147 
+      7 68.6814 607 1 0 19.2404 -58.45 -176.178 
+      7 31.0522 606 1 0 19.3622 -58.65 -176.195 
+      7 19.7902 564 1 0 32.2576 -67.1034 -176.25 
+      7 127.993 565 1 0 32.2462 -67.05 -176.179 
+      7 49.3946 566 1 0 32.3991 -66.85 -175.915 
+      7 445.208 1063 1 1 32.7277 -66.248 -174.85 
+      7 43.0175 1062 1 1 32.65 -65.9239 -174.471 
+      7 159.018 569 1 0 31.8255 -66.0623 -175.85 
+Number of digits in this event =  17
 Event: 8
-Number of tracker hits in this event =  1
-      8 73.6596 907 0 1 1.48895 81.0929 -204.532 
-Number of digits in this event =  2
+Number of tracker hits in this event =  21
+      8 124.908 900 4 1 0.113194 -0.352353 -84.45 
+      8 130.001 898 4 0 0.108591 -0.38992 -85.85 
+      8 129.512 900 3 1 0.220305 -1.24754 -114.45 
+      8 197.536 893 3 0 0.224679 -1.26772 -115.85 
+      8 104.35 901 2 1 0.357122 -1.68207 -144.45 
+      8 115.996 891 2 0 0.353658 -1.69101 -145.85 
+      8 107.707 901 1 1 0.282856 -1.81482 -174.45 
+      8 136.451 891 1 0 0.29668 -1.83753 -175.85 
+      8 130.057 902 0 1 0.617116 -2.26328 -204.45 
+      8 118.758 889 0 0 0.665979 -2.23021 -205.85 
+      8 87.0438 903 3 1 0.842097 0.0860707 -114.45 
+      8 27.4835 904 3 1 0.85 0.0862823 -114.732 
+      8 165.439 900 3 0 0.86894 0.0833312 -115.85 
+      8 127.61 905 2 1 1.07598 0.172866 -144.45 
+      8 4.60014 901 2 0 1.44891 0.445821 -145.85 
+      8 343.388 902 2 0 1.45471 0.45 -145.872 
+      8 124.266 943 1 1 8.73005 5.88544 -174.45 
+      8 1.29687 944 1 1 8.85 5.96576 -174.845 
+      8 106.441 930 1 0 9.14908 6.16327 -175.85 
+      8 135.958 989 0 1 17.8788 11.5618 -204.45 
+      8 124.127 959 0 0 18.2903 11.8736 -205.85 
+Number of digits in this event =  14
 Event: 9
-Number of tracker hits in this event =  6
-      9 29.7011 919 0 0 -32.3939 4.01258 -206.25 
-      9 144.485 920 0 0 -32.435 4.05 -206.186 
-      9 95.377 921 0 0 -32.5778 4.25 -205.999 
-      9 68.4534 922 0 0 -32.6098 4.45 -205.975 
-      9 311.116 730 0 1 -33.8776 5.40782 -204.85 
-      9 88.4208 729 0 1 -34.05 5.54862 -204.714 
-Number of digits in this event =  3
-Event: 10
-Number of tracker hits in this event =  1
-     10 90.1671 586 13 0 -15.2696 -62.8418 183.927 
+Number of tracker hits in this event =  0
 Number of digits in this event =  1
-Event: 11
-Number of tracker hits in this event =  51
-     11 98.515 898 3 1 -0.295673 -0.287117 -114.45 
-     11 110.015 898 3 0 -0.301794 -0.279342 -115.85 
-     11 210.961 898 2 1 -0.399264 -0.139461 -144.45 
-     11 128.885 899 2 0 -0.409843 -0.140914 -145.85 
-     11 140.402 897 1 1 -0.621224 -0.192652 -174.45 
-     11 130.914 899 1 0 -0.617053 -0.199799 -175.85 
-     11 364.104 898 0 1 -0.414761 -0.416755 -204.45 
-     11 528.471 898 0 0 -0.40536 -0.44009 -205.85 
-     11 93.3811 897 0 1 -0.471901 -0.362979 -204.45 
-     11 207.949 896 0 1 -0.65 -0.359123 -204.698 
-     11 21.9937 900 5 1 0.217855 0.05 -54.7162 
-     11 33.2736 901 5 1 0.25 0.0556378 -54.7938 
-     11 218.744 900 5 0 0.65403 0.0677155 -55.85 
-     11 72.8533 1268 5 0 -27.7208 73.7127 -56.25 
-     11 63.3528 1269 5 0 -27.7715 73.85 -56.1647 
-     11 41.9673 1270 5 0 -27.8174 74.05 -56.1827 
-     11 42.7564 901 0 1 0.42324 0.52158 -204.45 
-     11 99.6867 902 0 1 0.45 0.529326 -204.561 
-     11 121.067 904 0 0 0.677744 0.914881 -205.85 
-     11 0.286059 905 0 0 0.74035 1.05 -206.249 
-     11 248.755 904 4 1 0.887253 -0.867686 -84.45 
-     11 112.712 895 4 0 0.927511 -0.879351 -85.85 
-     11 126.631 908 3 1 1.68137 -1.03944 -114.45 
-     11 203.043 895 3 0 1.59114 -1.03591 -115.85 
-     11 115.679 896 2 1 -0.70007 -1.17198 -144.45 
-     11 111.47 894 2 0 -0.765678 -1.13051 -145.85 
-     11 116.804 890 1 1 -1.85771 -0.406656 -174.45 
-     11 233.973 896 1 0 -2.02096 -0.725235 -175.85 
-     11 119.74 873 0 1 -5.28522 -7.06632 -204.45 
-     11 116.293 862 0 0 -5.45964 -7.51257 -205.85 
-     11 3.50848 905 4 1 1.05 -0.734369 -84.8334 
-     11 138.262 898 4 0 1.23603 -0.410324 -85.85 
-     11 127.127 992 4 0 4.94224 18.5781 -86.25 
-     11 124.247 923 4 1 4.77788 18.8492 -84.85 
-     11 166.111 616 6 1 -56.6775 -168.167 -24.4878 
-     11 26.1763 617 6 1 -56.65 -168.092 -24.4959 
-     11 110.277 887 5 1 -2.57589 -0.279322 -54.45 
-     11 2.89563 886 5 1 -2.65 -0.287092 -54.8411 
-     11 153.705 898 5 0 -2.84797 -0.311169 -55.85 
-     11 112.314 854 4 1 -9.14725 -0.884864 -84.45 
-     11 146.907 896 4 0 -9.48433 -0.829721 -85.85 
-     11 58.8794 817 3 1 -16.6093 0.634527 -114.45 
-     11 70.4647 816 3 1 -16.65 0.632798 -114.605 
-     11 144.869 902 3 0 -16.9634 0.635423 -115.85 
-     11 49.7909 778 2 1 -24.3952 0.0839476 -144.45 
-     11 77.1422 777 2 1 -24.45 0.0818049 -144.611 
-     11 119.911 900 2 0 -24.8624 0.0576133 -145.85 
-     11 160.371 730 1 1 -33.8852 -0.795775 -174.45 
-     11 21.2298 695 0 1 -41.0284 -1.03481 -204.45 
-     11 90.9961 694 0 1 -41.05 -1.03951 -204.512 
-     11 124.077 894 0 0 -41.559 -1.14784 -205.85 
-Number of digits in this event =  24
-Event: 12
+Event: 10
 Number of tracker hits in this event =  0
 Number of digits in this event =  2
-Event: 13
-Number of tracker hits in this event =  9
-     13 123.837 900 1 1 0.226683 -0.605268 -174.45 
-     13 223.829 897 1 0 0.23087 -0.61125 -175.85 
-     13 127.064 901 0 1 0.355381 -0.72011 -204.45 
-     13 139.448 896 0 0 0.355812 -0.708699 -205.85 
-     13 43.3263 902 4 1 0.577855 0.149689 -84.45 
-     13 89.2814 903 4 1 0.65 0.13062 -84.5473 
-     13 39.4793 904 4 1 0.85 0.0780631 -84.7746 
-     13 472.79 899 4 0 1.57127 -0.153476 -85.85 
-     13 6.47518 898 4 0 1.82847 -0.25 -86.2389 
-Number of digits in this event =  7
-Event: 14
+Event: 11
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
+Event: 12
+Number of tracker hits in this event =  5
+     12 457.562 902 0 1 0.625907 -0.11256 -204.45 
+     12 186.376 899 0 0 0.64526 -0.0998782 -205.85 
+     12 110.832 898 0 1 -0.330126 0.173102 -204.45 
+     12 113.274 900 0 0 -0.356425 0.18593 -205.85 
+     12 26.6291 274 2 1 -125.35 -108.88 -144.496 
+Number of digits in this event =  4
+Event: 13
+Number of tracker hits in this event =  1
+     13 247.346 74 10 1 -165.16 -107.693 95.3269 
+Number of digits in this event =  4
+Event: 14
+Number of tracker hits in this event =  62
+     14 128.179 900 4 0 0.377659 0.0511336 -85.85 
+     14 108.995 938 3 1 7.73078 0.236051 -114.45 
+     14 0.0653254 939 3 1 7.85 0.258647 -114.849 
+     14 288.021 901 3 0 8.1666 0.325474 -115.85 
+     14 175.914 989 2 1 17.99 2.12629 -144.45 
+     14 77.9283 916 2 0 18.0792 3.26099 -145.85 
+     14 94.7452 917 2 0 18.1102 3.45 -146.084 
+     14 245.246 1023 1 1 24.6833 32.4742 -174.45 
+     14 44.5536 1072 1 0 24.9858 34.4987 -175.85 
+     14 55.131 1073 1 0 25.0057 34.65 -175.955 
+     14 90.4982 1074 1 0 25.0402 34.85 -176.092 
+     14 24.5667 1075 1 0 25.0762 35.05 -176.224 
+     14 99.3602 984 0 1 16.9143 77.9601 -204.45 
+     14 67.0502 983 0 1 16.85 78.209 -204.719 
+     14 92.7698 1296 0 0 16.407 79.2879 -205.85 
+     14 113.637 1297 0 0 16.3427 79.45 -206.016 
+     14 16.8091 1298 0 0 16.2681 79.65 -206.212 
+     14 78.4897 1341 0 0 14.8063 88.3579 -206.25 
+     14 60.8526 1340 0 0 14.871 88.25 -205.983 
+     14 98.349 975 0 1 15.1298 87.6477 -204.85 
+     14 47.1287 913 2 0 17.3666 2.7284 -145.94 
+     14 105.311 899 2 1 -0.225746 -0.161612 -144.45 
+     14 196.407 899 2 0 -0.243874 -0.160053 -145.85 
+     14 191.686 897 1 1 -0.625102 -0.246298 -174.45 
+     14 363.761 898 1 0 -0.641889 -0.257811 -175.85 
+     14 107.562 895 0 1 -0.9792 -0.500303 -204.45 
+     14 198.825 897 0 0 -0.985841 -0.504229 -205.85 
+     14 234.968 945 0 1 9.07962 61.2059 -204.45 
+     14 285.278 899 1 1 -0.140376 -0.191487 -174.45 
+     14 92.5902 898 1 1 -0.25 -0.232585 -174.727 
+     14 54.3362 829 0 1 -14.1782 -5.75006 -204.45 
+     14 100.603 828 0 1 -14.25 -5.80948 -204.526 
+     14 24.1795 827 0 1 -14.45 -5.97813 -204.778 
+     14 2.0234 867 0 0 -15.3216 -6.64339 -205.85 
+     14 151.234 866 0 0 -15.3304 -6.65 -205.861 
+     14 23.6177 865 0 0 -15.5937 -6.85 -206.172 
+     14 93.7412 1163 2 0 2.12085 52.7461 -146.25 
+     14 178.031 1162 2 0 1.99897 52.65 -146.166 
+     14 31.4135 934 0 1 6.93106 -2.34513 -204.45 
+     14 63.5008 935 0 1 7.05 -2.32567 -204.483 
+     14 49.3059 936 0 1 7.25 -2.28788 -204.547 
+     14 104.349 937 0 1 7.45 -2.23994 -204.618 
+     14 101.744 938 0 1 7.65 -2.20399 -204.679 
+     14 77.961 939 0 1 7.85 -2.20427 -204.729 
+     14 161.51 940 0 1 8.05 -2.21547 -204.773 
+     14 96.9744 941 0 1 8.25 -2.24225 -204.826 
+     14 239.003 885 0 0 12.2424 -2.99858 -205.85 
+     14 198.534 884 0 0 12.5118 -3.05 -205.92 
+     14 286.383 883 0 0 13.1088 -3.25 -206.018 
+     14 64.7557 882 0 0 13.68 -3.45 -206.214 
+     14 80.8006 942 0 1 8.45 -2.04424 -204.747 
+     14 61.6457 943 0 1 8.65 -1.98135 -204.775 
+     14 55.715 944 0 1 8.85 -1.93927 -204.724 
+     14 82.13 946 0 1 9.25 -1.82147 -204.748 
+     14 63.3628 947 0 1 9.45 -1.70911 -204.727 
+     14 124.629 948 0 1 9.65 -1.72479 -204.603 
+     14 66.2281 949 0 1 9.85 -1.824 -204.53 
+     14 60.9157 950 0 1 10.05 -1.90545 -204.486 
+     14 113.447 951 0 1 10.25 -1.98758 -204.505 
+     14 142.771 952 0 1 10.45 -2.2771 -204.596 
+     14 275.828 886 0 0 10.9195 -2.68681 -205.85 
+     14 86.8437 887 0 0 6.96212 -2.52582 -205.85 
+Number of digits in this event =  20
 Event: 15
-Number of tracker hits in this event =  8
-     15 102.172 900 1 0 -0.260879 0.05 -175.904 
-     15 168.222 895 0 1 -0.866947 0.501455 -204.45 
-     15 132.516 902 0 0 -0.861845 0.539419 -205.85 
-     15 89.8757 896 0 1 -0.85 0.495738 -204.503 
-     15 40.9826 897 0 1 -0.65 0.443481 -204.769 
-     15 141.294 901 0 0 0.0764759 0.377442 -205.85 
-     15 112.75 899 0 1 -0.136973 0.0946304 -204.45 
-     15 201.511 900 0 0 -0.139952 0.104403 -205.85 
-Number of digits in this event =  6
+Number of tracker hits in this event =  0
+Number of digits in this event =  2
 Event: 16
-Number of tracker hits in this event =  3
-     16 84.4377 1604 3 1 141.077 -22.6275 -114.837 
-     16 26.2965 791 3 0 141.69 -21.6899 -115.85 
-     16 35.9455 1618 3 1 143.889 -24.2051 -114.85 
+Number of tracker hits in this event =  0
 Number of digits in this event =  1
 Event: 17
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
 Event: 18
-Number of tracker hits in this event =  1
-     18 30.6397 1310 1 1 82.1209 -50.2382 -174.488 
-Number of digits in this event =  2
+Number of tracker hits in this event =  0
+Number of digits in this event =  3
 Event: 19
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
 Event: 20
 Number of tracker hits in this event =  0
-Number of digits in this event =  1
+Number of digits in this event =  3
 Event: 21
-Number of tracker hits in this event =  0
-Number of digits in this event =  1
+Number of tracker hits in this event =  1
+     21 50.3354 1023 2 0 -2.45527 24.8358 -145.856 
+Number of digits in this event =  2
 Event: 22
-Number of tracker hits in this event =  3
-     22 101.465 552 0 0 33.2829 -69.5549 -206.25 
-     22 156.647 553 0 0 33.4143 -69.45 -206.018 
-     22 350.775 1083 0 1 36.7093 -68.2063 -204.85 
-Number of digits in this event =  4
+Number of tracker hits in this event =  41
+     22 176.361 904 5 1 0.915203 0.394971 -54.45 
+     22 166.008 901 5 0 0.991211 0.427651 -55.85 
+     22 293.677 912 4 1 2.53308 1.08502 -84.45 
+     22 119.575 905 4 0 2.60738 1.07217 -85.85 
+     22 61.1276 919 3 1 4.04611 0.933579 -114.45 
+     22 123.234 920 3 1 4.05 0.932437 -114.561 
+     22 107.8 904 3 0 4.09523 0.922814 -115.85 
+     22 64.2002 924 2 1 5.04285 0.713914 -144.45 
+     22 39.4505 925 2 1 5.05 0.714596 -144.71 
+     22 170.901 903 2 0 5.07828 0.712612 -145.85 
+     22 151.268 928 1 1 5.68931 0.681158 -174.45 
+     22 124.002 903 1 0 5.72481 0.67455 -175.85 
+     22 143.628 931 0 1 6.2774 0.628509 -204.45 
+     22 602.751 902 0 0 6.30655 0.617788 -205.85 
+     22 167.297 911 4 1 2.45 1.16043 -84.5916 
+     22 145.803 909 4 0 2.32455 1.92295 -85.85 
+     22 217.254 910 4 0 2.19614 2.05 -86.0946 
+     22 347.354 903 5 1 0.85 0.490043 -54.7538 
+     22 36.1404 902 5 1 0.65 0.785643 -54.7193 
+     22 345.957 912 5 0 2.56165 2.51802 -55.85 
+     22 189.194 938 0 1 7.68088 0.607647 -204.547 
+     22 90.4076 901 0 0 7.67203 0.45 -205.943 
+     22 157.376 898 5 1 -0.35149 -0.192409 -54.45 
+     22 173.312 899 5 0 -0.361279 -0.194764 -55.85 
+     22 102.142 897 4 1 -0.543467 -0.176693 -84.45 
+     22 107.873 899 4 0 -0.542261 -0.174173 -85.85 
+     22 133.671 897 3 1 -0.530365 -0.0583265 -114.45 
+     22 108.841 898 2 1 -0.361505 0.403669 -144.45 
+     22 138.751 901 2 0 -0.351436 0.427104 -145.85 
+     22 340.884 899 1 1 -0.145299 0.903345 -174.45 
+     22 165.442 904 1 0 -0.138159 0.920927 -175.85 
+     22 151.09 899 1 0 -0.151464 -0.148563 -175.85 
+     22 8.61055 898 0 1 -0.448608 -0.666424 -204.45 
+     22 104.608 897 0 1 -0.45 -0.667931 -204.472 
+     22 260.66 896 0 0 -0.536303 -0.742478 -205.85 
+     22 162.914 898 1 0 -0.270439 -0.291894 -175.85 
+     22 89.0691 883 0 1 -3.29675 17.3002 -204.45 
+     22 306.424 884 0 1 -3.25 17.0383 -204.556 
+     22 3.93431 976 0 0 -3.15885 15.2597 -205.85 
+     22 70.0483 975 0 0 -3.15817 15.25 -205.861 
+     22 83.6788 974 0 0 -3.10148 15.05 -206.02 
+Number of digits in this event =  28
 Event: 23
-Number of tracker hits in this event =  0
-Number of digits in this event =  1
-Event: 24
-Number of tracker hits in this event =  3
-     24 2.14912 917 3 1 3.45208 61.1603 -114.45 
-     24 283.264 916 3 1 3.45 61.1606 -114.451 
-     24 606.22 915 3 1 3.25 61.2448 -114.624 
+Number of tracker hits in this event =  8
+     23 67.1203 591 8 0 -67.7292 -61.7868 33.8958 
+     23 131.879 560 8 1 -67.8506 -62.3257 35.15 
+     23 114.497 891 0 1 -1.79323 0.366303 -204.45 
+     23 165.805 902 0 0 -1.73795 0.589262 -205.85 
+     23 19.697 903 0 0 -1.72075 0.65 -206.182 
+     23 86.2753 898 0 1 -0.259631 -0.311471 -204.45 
+     23 46.8647 899 0 1 -0.25 -0.30272 -204.455 
+     23 244.635 897 0 1 -0.45 -0.111218 -204.498 
 Number of digits in this event =  4
+Event: 24
+Number of tracker hits in this event =  1
+     24 43.7189 869 0 1 -6.14378 -16.0535 -204.627 
+Number of digits in this event =  1
 Event: 25
-Number of tracker hits in this event =  4
-     25 1.1875 644 1 0 169.657 -51.0536 -176.25 
-     25 73.041 645 1 0 169.658 -51.05 -176.248 
-     25 142.16 646 1 0 169.687 -50.85 -176.126 
-     25 16.3519 647 1 0 169.881 -50.65 -176.232 
-Number of digits in this event =  3
+Number of tracker hits in this event =  0
+Number of digits in this event =  1
 Event: 26
-Number of tracker hits in this event =  4
-     26 75.3366 1584 5 0 -50.7128 137.018 -56.192 
-     26 138.528 1583 5 0 -50.8087 136.95 -56.0387 
-     26 235.786 647 5 1 -50.5883 136.201 -54.85 
-     26 78.2255 1579 5 0 -49.3347 136.077 -55.85 
-Number of digits in this event =  4
+Number of tracker hits in this event =  21
+     26 10.6283 899 5 1 -0.05 -0.0539405 -54.8237 
+     26 99.6218 899 5 0 -0.223999 -0.203639 -55.85 
+     26 20.518 898 5 0 -0.27786 -0.25 -56.1676 
+     26 124.297 877 4 1 -4.53315 -3.44068 -84.45 
+     26 120.936 882 4 0 -4.44287 -3.46691 -85.85 
+     26 115.183 890 3 1 -2.01699 -3.99106 -114.45 
+     26 114.262 880 3 0 -1.79235 -4.04143 -115.85 
+     26 51.6584 879 3 0 -1.75289 -4.05 -116.094 
+     26 142.939 912 2 1 2.59287 -4.85855 -144.45 
+     26 17.1409 913 2 1 2.65 -4.8351 -144.777 
+     26 114.994 876 2 0 2.79377 -4.77809 -145.85 
+     26 126.111 933 1 1 6.71701 -4.32154 -174.45 
+     26 235.937 878 1 0 6.98407 -4.30099 -175.85 
+     26 155.677 956 0 1 11.2754 -3.46589 -204.45 
+     26 126.938 883 0 0 11.2707 -3.33391 -205.85 
+     26 113.288 900 2 0 0.15121 0.0523347 -145.85 
+     26 126.967 900 1 1 0.171639 0.953255 -174.45 
+     26 104.244 904 1 0 0.180188 0.996586 -175.85 
+     26 100.467 901 0 1 0.343288 1.89604 -204.45 
+     26 115.478 909 0 0 0.365116 1.93769 -205.85 
+     26 148.568 86 5 1 -162.831 -173.513 -54.7092 
+Number of digits in this event =  11
 Event: 27
-Number of tracker hits in this event =  0
+Number of tracker hits in this event =  1
+     27 26.5223 378 1 0 -98.0646 -104.436 -176.25 
 Number of digits in this event =  3
 Event: 28
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
 Event: 29
-Number of tracker hits in this event =  42
-     29 597.809 899 3 1 -0.0551375 0.110423 -114.45 
-     29 675.995 900 3 0 -0.0561991 0.116831 -115.85 
-     29 194.868 903 1 1 0.68467 0.171793 -174.45 
-     29 99.0998 900 1 0 0.702789 0.151936 -175.85 
-     29 125.094 905 0 1 1.11649 -0.210056 -204.45 
-     29 116.827 898 0 0 1.15279 -0.288747 -205.85 
-     29 119.501 901 2 0 0.0557444 0.293688 -145.85 
-     29 150.607 904 1 1 1.03008 1.18872 -174.45 
-     29 110.025 906 1 0 1.06057 1.36753 -175.85 
-     29 114.135 910 0 1 2.21082 5.11421 -204.45 
-     29 44.8314 926 0 0 2.25089 5.42172 -205.85 
-     29 88.8195 927 0 0 2.25443 5.45 -205.976 
-     29 111.742 896 2 1 -0.677542 0.394847 -144.45 
-     29 279.668 902 2 0 -0.730189 0.450661 -145.85 
-     29 112.405 890 1 1 -1.95654 1.59427 -174.45 
-     29 121.344 907 1 0 -1.94395 1.60938 -175.85 
-     29 96.0171 892 0 1 -1.57231 1.49534 -204.45 
-     29 155.931 908 0 0 -1.61032 1.70987 -205.85 
-     29 56.4388 901 2 1 0.444601 0.469242 -144.45 
-     29 178.535 902 2 1 0.45 0.472401 -144.676 
-     29 161.901 916 1 1 3.3933 0.849612 -174.45 
-     29 160.092 904 1 0 3.51464 0.853815 -175.85 
-     29 124.813 929 0 1 5.97198 0.764821 -204.45 
-     29 129.994 905 0 0 6.00406 1.13573 -205.85 
-     29 170.952 114 8 0 76.5381 -157.317 33.75 
-     29 160.107 113 8 0 76.5554 -157.35 33.7905 
-     29 48.2253 900 1 1 0.05 -0.193668 -174.688 
-     29 120.391 898 1 0 0.190667 -0.292265 -175.85 
-     29 121.573 919 0 1 4.02344 -3.2809 -204.45 
-     29 108.481 885 0 0 4.05177 -3.02194 -205.85 
-     29 104.368 907 2 0 0.652404 1.49951 -145.85 
-     29 341.155 908 1 1 1.68733 3.20081 -174.45 
-     29 154.617 916 1 0 1.6799 3.32798 -175.85 
-     29 119.264 906 0 1 1.40148 5.9444 -204.45 
-     29 141.121 929 0 0 1.38098 6.01195 -205.85 
-     29 35.9551 830 3 0 -35.8619 -14.0146 -116.25 
-     29 50.71 829 3 0 -35.9334 -14.05 -116.225 
-     29 5.66578 591 3 0 -62.5678 -61.848 -116.167 
-     29 110.012 590 3 0 -62.5757 -61.85 -116.163 
-     29 94.7169 1362 0 1 92.6758 46.6721 -204.523 
-     29 67.5569 1363 0 1 92.75 46.6413 -204.519 
-     29 240.561 820 0 1 -16.0327 -12.2916 -204.725 
-Number of digits in this event =  23
+Number of tracker hits in this event =  0
+Number of digits in this event =  1
 Event: 30
-Number of tracker hits in this event =  32
-     30 4.34659 900 3 1 0.0503113 -0.066073 -114.45 
-     30 101.756 895 2 1 -0.889975 0.322052 -144.45 
-     30 115.74 901 2 0 -0.87369 0.393798 -145.85 
-     30 10.6255 897 1 1 -0.645086 1.81042 -174.45 
-     30 453.703 896 1 1 -0.65 1.81161 -174.506 
-     30 137.429 908 1 0 -0.770206 1.83782 -175.85 
-     30 154.422 886 0 1 -2.77222 2.66147 -204.45 
-     30 105.961 913 0 0 -2.85781 2.73114 -205.85 
-     30 115.861 889 1 1 -2.17558 0.690641 -174.45 
-     30 108.291 903 1 0 -2.14216 0.705626 -175.85 
-     30 275.381 890 0 1 -1.90954 1.1448 -204.45 
-     30 82.4835 905 0 0 -1.97837 1.23217 -205.85 
-     30 42.5342 906 0 0 -1.99455 1.25 -206.144 
-     30 254.07 888 1 1 -2.25 0.678189 -174.459 
-     30 150.73 902 1 0 -2.90009 0.587893 -175.85 
-     30 97.8634 823 0 1 -15.3479 -0.549543 -204.45 
-     30 54.9177 822 0 1 -15.45 -0.640901 -204.665 
-     30 101.871 894 0 0 -15.9053 -1.1189 -205.85 
-     30 25.6893 893 0 0 -16.0281 -1.25 -206.176 
-     30 101.173 898 2 1 -0.342614 0.0744439 -144.45 
-     30 115.831 900 2 0 -0.348001 0.0705362 -145.85 
-     30 111.761 897 0 1 -0.635323 0.0590208 -204.45 
-     30 219.468 900 0 0 -0.642463 0.0577444 -205.85 
-     30 116.822 115 4 0 -25.7555 -157.041 -86.25 
-     30 152.637 899 0 1 -0.133429 -0.594782 -204.45 
-     30 174.547 897 0 0 -0.109281 -0.615613 -205.85 
-     30 251.221 514 2 0 27.9707 -77.0722 -146.22 
-     30 29.154 898 1 1 -0.443323 -0.05 -174.748 
-     30 117.206 899 1 0 -0.232083 -0.183242 -175.85 
-     30 119.018 930 0 1 6.10186 -3.32498 -204.45 
-     30 13.5442 931 0 1 6.25 -3.39395 -204.808 
-     30 128.207 882 0 0 6.69155 -3.56241 -205.85 
-Number of digits in this event =  15
+Number of tracker hits in this event =  0
+Number of digits in this event =  3
 Event: 31
-Number of tracker hits in this event =  1
-     31 164.315 528 0 0 59.6235 -74.3729 -206.12 
-Number of digits in this event =  2
+Number of tracker hits in this event =  2
+     31 102.056 900 0 1 0.15351 0.397539 -204.45 
+     31 229.915 901 0 0 0.14453 0.414359 -205.85 
+Number of digits in this event =  3
 Event: 32
-Number of tracker hits in this event =  22
-     32 32.4133 1520 10 0 -110.582 124.291 93.75 
-     32 106.064 1521 10 0 -110.599 124.35 93.8382 
-     32 2.71356 1522 10 0 -110.658 124.55 94.142 
-     32 112.937 346 10 1 -110.885 125.288 95.15 
-     32 35.6563 345 10 1 -110.95 125.501 95.4402 
-     32 320.262 1602 11 0 -165.968 140.64 123.75 
-     32 142.822 1603 11 0 -166.374 140.75 123.957 
-     32 79.9955 56 11 1 -168.752 141.278 125.15 
-     32 64.2222 55 11 1 -168.95 141.321 125.246 
-     32 65.4325 54 11 1 -169.15 141.363 125.305 
-     32 72.4137 53 11 1 -169.35 141.396 125.361 
-     32 56.1308 52 11 1 -169.55 141.41 125.413 
-     32 58.647 51 11 1 -169.75 141.459 125.443 
-     32 70.2945 50 11 1 -169.95 141.496 125.461 
-     32 59.1327 49 11 1 -170.15 141.551 125.468 
-     32 70.5732 48 11 1 -170.35 141.61 125.494 
-     32 51.876 47 11 1 -170.55 141.669 125.507 
-     32 75.5808 46 11 1 -170.75 141.704 125.525 
-     32 58.9226 45 11 1 -170.95 141.746 125.536 
-     32 21.167 44 11 1 -171.333 141.702 125.55 
-     32 113.334 43 11 1 -171.35 141.666 125.497 
-     32 3.4696 1601 11 0 -172.082 140.55 123.765 
-Number of digits in this event =  4
+Number of tracker hits in this event =  40
+     32 427.259 898 4 1 -0.447101 -0.0523758 -84.45 
+     32 272.197 899 4 0 -0.442119 -0.061063 -85.85 
+     32 149.011 898 3 1 -0.310452 -0.322992 -114.45 
+     32 100.217 898 3 0 -0.302928 -0.34492 -115.85 
+     32 559.176 899 2 1 -0.0963507 -0.928618 -144.45 
+     32 123.49 895 2 0 -0.124923 -0.972438 -145.85 
+     32 109.964 897 1 1 -0.494964 -1.77885 -174.45 
+     32 144.426 891 1 0 -0.541097 -1.82116 -175.85 
+     32 127.776 892 0 1 -1.50322 -2.75278 -204.45 
+     32 121.207 886 0 0 -1.55326 -2.80531 -205.85 
+     32 156.808 897 3 1 -0.528962 -0.139565 -114.45 
+     32 154.797 899 3 0 -0.496928 -0.0961291 -115.85 
+     32 116.734 900 2 1 0.211837 0.924329 -144.45 
+     32 136.543 905 2 0 0.2545 1.07968 -145.85 
+     32 425.481 903 1 1 0.741715 4.27433 -174.45 
+     32 116.613 922 1 0 0.803761 4.50632 -175.85 
+     32 133.259 908 0 1 1.77714 9.27091 -204.45 
+     32 108.497 947 0 0 1.84039 9.49933 -205.85 
+     32 187.055 904 2 0 0.226822 1.03171 -146.023 
+     32 124.565 896 3 1 -0.764447 0.911134 -114.45 
+     32 32.1178 904 3 0 -0.781192 0.851651 -115.85 
+     32 131.818 903 3 0 -0.781564 0.85 -115.89 
+     32 136.956 894 2 1 -1.18428 -0.173455 -144.45 
+     32 118.983 899 2 0 -1.20555 -0.17833 -145.85 
+     32 28.8569 892 1 1 -1.64531 0.369913 -174.45 
+     32 87.1166 891 1 1 -1.65 0.361783 -174.516 
+     32 117.585 900 1 0 -1.77047 0.196044 -175.85 
+     32 116.002 877 0 1 -4.57585 -4.04047 -204.45 
+     32 121.361 880 0 0 -4.63282 -3.91428 -205.85 
+     32 108.34 901 4 1 0.287313 0.0955057 -84.45 
+     32 197.016 900 4 0 0.304511 0.112482 -85.85 
+     32 204.651 902 3 1 0.61922 0.449385 -114.45 
+     32 118.828 902 3 0 0.647724 0.499572 -115.85 
+     32 163.009 905 2 1 1.23647 1.52568 -144.45 
+     32 143.466 907 2 0 1.26287 1.57127 -145.85 
+     32 151.068 909 1 1 1.85509 2.57582 -174.45 
+     32 130.47 912 1 0 1.87725 2.62647 -175.85 
+     32 125.099 910 0 1 2.15549 3.77003 -204.45 
+     32 80.3374 918 0 0 2.14295 3.836 -205.85 
+     32 27.9418 919 0 0 2.14048 3.85 -206.145 
+Number of digits in this event =  26
 Event: 33
-Number of tracker hits in this event =  2
-     33 214.401 708 1 0 -15.5257 -38.3233 -176.25 
-     33 32.0417 709 1 0 -15.6731 -38.25 -176.152 
-Number of digits in this event =  2
+Number of tracker hits in this event =  5
+     33 82.2766 623 12 0 -56.3664 -55.3333 154.062 
+     33 106.006 620 12 1 -56.0219 -56.1626 155.15 
+     33 20.106 619 12 0 -57.3624 -56.2008 154.15 
+     33 83.0224 590 12 1 -61.9852 -58.1888 155.15 
+     33 22.1062 600 12 0 -61.0139 -59.8518 154.15 
+Number of digits in this event =  1
 Event: 34
-Number of tracker hits in this event =  3
-     34 81.5377 75 3 1 -164.98 -95.1759 -114.498 
-     34 317.001 419 8 0 -164.13 -96.1608 33.8775 
-     34 123.789 658 5 1 -48.3344 -82.9504 -54.5761 
-Number of digits in this event =  3
+Number of tracker hits in this event =  12
+     34 110.362 902 1 1 0.616766 -0.119329 -174.45 
+     34 200.686 899 1 0 0.642782 -0.128756 -175.85 
+     34 121.407 905 0 1 1.17564 -0.373906 -204.45 
+     34 157.264 898 0 0 1.19425 -0.388057 -205.85 
+     34 38.1362 889 0 0 11.9688 -2.16038 -206.25 
+     34 83.6877 890 0 0 11.9585 -2.05 -206.17 
+     34 72.8357 891 0 0 11.9748 -1.85 -206.049 
+     34 150.134 961 0 1 12.2793 -0.965472 -204.85 
+     34 31.413 780 1 0 -4.43528 -23.9946 -176.25 
+     34 87.4449 779 1 0 -4.47517 -24.05 -176.184 
+     34 86.2671 778 1 0 -4.48833 -24.25 -176.011 
+     34 49.4092 777 1 0 -4.54281 -24.45 -175.902 
+Number of digits in this event =  6
 Event: 35
+Number of tracker hits in this event =  2
+     35 114.718 408 4 1 -98.424 -49.0809 -84.4834 
+     35 25.9626 658 4 0 -97.4851 -48.293 -86.134 
+Number of digits in this event =  2
+Event: 36
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
-Event: 36
-Number of tracker hits in this event =  9
-     36 13.0909 54 8 1 -169.155 -18.0899 35.2117 
-     36 89.3168 55 8 1 -169.15 -18.0848 35.2212 
-     36 118.561 56 8 1 -168.946 -28.7843 35.55 
-     36 92.6255 1276 4 0 89.5336 75.2662 -86.0978 
-     36 91.0241 1277 4 0 89.7725 75.45 -86.0179 
-     36 7.91154 1278 4 0 90.034 75.65 -86.0029 
-     36 119.285 1279 4 0 90.15 75.9692 -85.8956 
-     36 322.99 1354 4 1 91.0205 75.2511 -84.85 
-     36 86.4717 1353 4 1 90.95 75.259 -84.5059 
-Number of digits in this event =  2
 Event: 37
 Number of tracker hits in this event =  0
 Number of digits in this event =  2
 Event: 38
+Number of tracker hits in this event =  10
+     38 125.594 902 1 1 0.581325 0.763403 -174.45 
+     38 146.592 903 1 0 0.479622 0.700505 -175.85 
+     38 119.388 889 0 1 -2.10317 -0.96712 -204.45 
+     38 128.148 894 0 0 -2.12925 -1.06756 -205.85 
+     38 113.871 900 1 0 0.0576206 0.0604995 -175.85 
+     38 114.116 899 0 0 0.37897 -0.096635 -205.85 
+     38 281.706 928 4 0 -8.21602 5.68692 -86.1288 
+     38 20.1304 927 4 0 -8.24512 5.65 -86.0844 
+     38 39.0801 983 3 0 -94.1356 16.652 -116.25 
+     38 122.495 982 3 0 -94.1721 16.65 -116.191 
+Number of digits in this event =  6
+Event: 39
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
-Event: 39
-Number of tracker hits in this event =  10
-     39 118.455 899 1 1 -0.0962879 0.34101 -174.45 
-     39 107.114 901 1 0 -0.0673756 0.373803 -175.85 
-     39 112.703 902 0 1 0.587027 0.974548 -204.45 
-     39 50.4039 904 0 0 0.648932 1.04143 -205.85 
-     39 65.2683 905 0 0 0.657029 1.05 -206.031 
-     39 116.878 899 2 1 -0.205924 -0.0667165 -144.45 
-     39 119.924 899 2 0 -0.187624 -0.0571326 -145.85 
-     39 185.953 901 1 1 0.263066 0.121441 -174.45 
-     39 106.072 912 0 1 2.47744 -1.35016 -204.45 
-     39 135.051 893 0 0 2.56229 -1.42543 -205.85 
-Number of digits in this event =  3
 Event: 40
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
 Event: 41
-Number of tracker hits in this event =  26
-     41 252.745 898 1 1 -0.364579 -0.106943 -174.45 
-     41 140.314 899 1 0 -0.375781 -0.110121 -175.85 
-     41 120.92 897 0 1 -0.60075 -0.154376 -204.45 
-     41 183.509 899 0 0 -0.616196 -0.1618 -205.85 
-     41 122.641 898 0 0 -0.43608 -0.25 -206.172 
-     41 212.347 897 0 0 -0.472815 -0.45 -206.143 
-     41 108.505 898 1 0 -0.440031 -0.343572 -175.85 
-     41 34.6267 877 0 1 -4.61056 -3.69405 -204.45 
-     41 78.5539 876 0 1 -4.65 -3.71566 -204.576 
-     41 158.039 880 0 0 -4.94055 -3.91212 -205.85 
-     41 158.135 900 2 0 -0.14495 0.05 -146.178 
-     41 245.863 899 2 0 -0.441165 -0.05 -146.107 
-     41 87.921 899 4 0 0.0777582 -0.05 -86.0846 
-     41 226.33 901 3 1 0.349364 0.074504 -114.45 
-     41 114.181 900 3 0 0.45284 0.162309 -115.85 
-     41 200.533 915 2 1 3.05213 2.32277 -144.45 
-     41 8.3407 914 2 1 3.05 2.39636 -144.821 
-     41 56.8514 912 2 0 3.02717 2.61169 -145.85 
-     41 67.4909 913 2 0 3.02313 2.65 -146.033 
-     41 124.496 908 1 1 1.72611 8.81985 -174.45 
-     41 17.7235 945 1 0 1.71976 9.23611 -175.85 
-     41 106.525 946 1 0 1.71942 9.25 -175.897 
-     41 125.02 908 0 1 1.83872 17.0399 -204.45 
-     41 40.292 909 0 1 1.85 17.1485 -204.686 
-     41 131.124 988 0 0 1.92514 17.661 -205.85 
-     41 1.38867 170 4 1 -146.141 -51.0965 -84.85 
-Number of digits in this event =  17
+Number of tracker hits in this event =  0
+Number of digits in this event =  1
 Event: 42
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
 Event: 43
+Number of tracker hits in this event =  3
+     43 120.431 891 0 0 9.26352 -1.67536 -206.25 
+     43 352.05 890 0 0 9.42147 -1.85 -206.174 
+     43 65.2478 1588 3 0 -159.361 137.75 -116.003 
+Number of digits in this event =  3
+Event: 44
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
-Event: 44
-Number of tracker hits in this event =  2
-     44 78.2321 64 8 1 -167.167 36.4292 35.2746 
-     44 225.915 65 8 1 -167.15 36.5462 35.3935 
-Number of digits in this event =  3
 Event: 45
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
 Event: 46
-Number of tracker hits in this event =  25
-     46 73.6638 916 3 0 2.69908 3.36614 -116.25 
-     46 47.768 917 3 0 2.68066 3.45 -115.989 
-     46 64.6537 907 3 1 1.55168 4.18354 -114.85 
-     46 76.8062 906 3 1 1.45 4.24286 -114.759 
-     46 71.5349 905 3 1 1.25 4.26194 -114.67 
-     46 52.6328 904 3 1 1.05 4.2591 -114.485 
-     46 71.2963 903 3 1 0.838401 4.33019 -114.45 
-     46 32.109 902 3 1 0.65 4.42249 -114.472 
-     46 114.406 899 1 1 -0.112346 -0.174089 -174.45 
-     46 105.301 899 1 0 -0.117234 -0.180915 -175.85 
-     46 141.371 899 0 1 -0.23811 -0.345162 -204.45 
-     46 174.228 898 0 0 -0.249823 -0.355666 -205.85 
-     46 141.11 840 1 0 37.9629 -11.9432 -176.079 
-     46 106.078 839 1 0 38.3005 -12.05 -176.238 
-     46 67.7304 838 1 0 38.5365 -12.25 -176.237 
-     46 52.5814 837 1 0 38.6527 -12.45 -176.237 
-     46 73.5489 836 1 0 38.6655 -12.65 -176.233 
-     46 50.39 835 1 0 38.643 -12.85 -176.129 
-     46 53.1077 834 1 0 38.6089 -13.05 -176.026 
-     46 44.0448 833 1 0 38.5984 -13.25 -176.036 
-     46 61.4023 832 1 0 38.5955 -13.45 -176.002 
-     46 83.4723 831 1 0 38.5577 -13.65 -175.978 
-     46 145.779 830 1 0 38.533 -13.85 -175.944 
-     46 66.5279 1089 1 1 37.9226 -14.0095 -174.85 
-     46 354.269 1088 1 1 37.85 -13.9823 -174.652 
-Number of digits in this event =  6
+Number of tracker hits in this event =  0
+Number of digits in this event =  1
 Event: 47
-Number of tracker hits in this event =  2
-     47 104.608 674 10 0 53.3806 -45.1717 93.75 
-     47 263.511 673 10 0 53.3216 -45.25 93.9167 
-Number of digits in this event =  2
+Number of tracker hits in this event =  14
+     47 126.198 898 3 1 -0.28737 -0.239882 -114.45 
+     47 146.342 898 3 0 -0.300406 -0.268096 -115.85 
+     47 144.23 897 2 1 -0.603405 -0.809653 -144.45 
+     47 122.723 896 2 0 -0.635586 -0.817899 -145.85 
+     47 121.061 893 1 1 -1.31805 -1.07112 -174.45 
+     47 115.411 894 1 0 -1.36811 -1.0944 -175.85 
+     47 108.291 888 0 1 -2.40024 -1.57199 -204.45 
+     47 120.986 892 0 0 -2.46801 -1.59521 -205.85 
+     47 121.577 900 2 1 0.113453 -0.449625 -144.45 
+     47 107.858 897 2 0 0.13562 -0.462356 -145.85 
+     47 139.137 902 1 1 0.568146 -0.686573 -174.45 
+     47 113.779 896 1 0 0.579653 -0.714583 -175.85 
+     47 218.27 903 0 1 0.828769 -1.26138 -204.45 
+     47 117.697 893 0 0 0.852944 -1.30361 -205.85 
+Number of digits in this event =  10
 Event: 48
-Number of tracker hits in this event =  0
+Number of tracker hits in this event =  1
+     48 28.0544 1537 6 1 127.598 87.5013 -24.5581 
 Number of digits in this event =  1
 Event: 49
-Number of tracker hits in this event =  14
-     49 3.95655 572 1 0 -72.7993 -65.6368 -176.25 
-     49 75.6255 571 1 0 -72.8019 -65.65 -176.237 
-     49 96.3389 570 1 0 -72.8507 -65.85 -176.052 
-     49 12.7171 569 1 0 -72.81 -66.05 -175.874 
-     49 365.785 535 1 1 -72.93 -67.2721 -174.85 
-     49 4.08315 565 1 0 -73.3904 -66.8616 -175.85 
-     49 284.749 566 1 0 -73.4021 -66.85 -175.874 
-     49 44.1683 526 1 1 -74.8165 -66.0365 -174.85 
-     49 114.967 525 1 1 -74.85 -66.0148 -174.816 
-     49 44.6529 524 1 1 -75.05 -65.9198 -174.567 
-     49 63.0701 668 3 1 -46.2681 -119.749 -114.494 
-     49 166.937 757 0 1 -28.5271 5.7583 -204.776 
-     49 249.357 756 0 1 -28.65 5.84964 -204.546 
-     49 33.3433 1174 2 0 -22.1334 55.0427 -145.951 
-Number of digits in this event =  6
+Number of tracker hits in this event =  0
+Number of digits in this event =  2
 Event: 50
-Number of tracker hits in this event =  48
-     50 128.195 901 4 1 0.386349 -0.161162 -84.45 
-     50 134.429 899 4 0 0.410403 -0.163943 -85.85 
-     50 178.845 904 3 1 1.02326 -0.148301 -114.45 
-     50 219.663 899 3 0 1.05101 -0.128694 -115.85 
-     50 166.061 908 2 1 1.65356 0.306817 -144.45 
-     50 129.44 901 2 0 1.69724 0.32525 -145.85 
-     50 325.551 912 1 1 2.5254 0.678411 -174.45 
-     50 176.735 903 1 0 2.57359 0.689151 -175.85 
-     50 99.1185 917 0 1 3.56313 0.940171 -204.45 
-     50 111.873 904 0 0 3.59642 0.960941 -205.85 
-     50 41.9223 628 6 0 -56.0176 -54.3991 -26.0688 
-     50 104.526 627 6 0 -56.0676 -54.45 -25.9668 
-     50 69.4287 626 6 0 -56.303 -54.65 -25.8952 
-     50 69.94 625 6 0 -56.3249 -54.85 -25.8872 
-     50 257.768 615 6 1 -56.995 -54.9245 -24.85 
-     50 5.6678 614 6 1 -57.05 -54.8989 -24.742 
-     50 110.24 901 5 1 0.267506 -0.158112 -54.45 
-     50 126.571 899 5 0 0.267637 -0.162644 -55.85 
-     50 115.934 900 4 1 0.21086 -0.302727 -84.45 
-     50 112.145 898 4 0 0.21143 -0.288225 -85.85 
-     50 135.011 899 1 1 -0.248303 -0.0919759 -174.45 
-     50 153.509 899 1 0 -0.234516 -0.109672 -175.85 
-     50 111.643 900 0 1 0.055498 -0.419571 -204.45 
-     50 117.627 898 0 0 0.0693278 -0.430492 -205.85 
-     50 30.1173 339 8 0 68.7178 -112.218 33.75 
-     50 312.813 899 3 1 -0.0695848 -0.223379 -114.45 
-     50 139.38 901 3 0 -0.566874 0.326036 -115.85 
-     50 21.6778 902 3 0 -0.691224 0.45 -116.18 
-     50 5.73878 819 2 1 -16.2309 7.28317 -144.45 
-     50 115.078 818 2 1 -16.25 7.26953 -144.468 
-     50 82.8639 817 2 1 -16.45 7.13379 -144.658 
-     50 9.13685 816 2 1 -16.65 6.98324 -144.824 
-     50 72.0024 930 2 0 -17.9779 6.16257 -145.85 
-     50 137.075 929 2 0 -18.1593 6.05 -145.99 
-     50 21.9067 928 2 0 -18.3986 5.85 -146.213 
-     50 124.6 672 1 1 -45.6165 -20.4665 -174.45 
-     50 38.8074 800 1 0 -44.913 -19.8962 -175.85 
-     50 104.164 801 1 0 -44.8605 -19.85 -175.937 
-     50 163.967 894 2 1 -1.09542 -0.17173 -144.45 
-     50 126.919 898 2 0 -1.39036 -0.279325 -145.85 
-     50 398.804 850 1 1 -9.87186 -1.80896 -174.45 
-     50 49.2155 849 1 1 -10.05 -1.80939 -174.742 
-     50 140.584 891 1 0 -10.7425 -1.80588 -175.85 
-     50 97.5772 749 0 1 -30.087 -0.315625 -204.45 
-     50 54.2833 748 0 1 -30.25 -0.392003 -204.692 
-     50 92.4139 897 0 0 -31.0676 -0.622846 -205.85 
-     50 120.677 896 0 0 -31.166 -0.65 -205.99 
-     50 123.007 571 8 0 -81.0315 -65.8209 33.9906 
-Number of digits in this event =  24
-Event: 51
-Number of tracker hits in this event =  2
-     51 171.52 1226 13 0 102.661 65.3429 183.75 
-     51 428.567 1412 13 1 102.608 65.4044 185.15 
-Number of digits in this event =  4
+Number of tracker hits in this event =  3
+     50 251.762 900 0 1 0.107379 0.203933 -204.45 
+     50 119.998 900 0 0 0.112953 0.206313 -205.85 
+     50 102.729 899 0 0 0.0775534 -0.184137 -205.85 
+Number of digits in this event =  2
+Event: 51
+Number of tracker hits in this event =  0
+Number of digits in this event =  1
 Event: 52
-Number of tracker hits in this event =  13
-     52 116.939 900 0 1 0.224955 -0.282916 -204.45 
-     52 124.966 898 0 0 0.209922 -0.296896 -205.85 
-     52 79.3397 411 3 1 -97.7606 87.0467 -114.603 
-     52 52.1589 412 3 1 -97.75 87.0543 -114.583 
-     52 51.539 1186 1 0 -18.8255 57.3993 -176.25 
-     52 76.5409 1185 1 0 -18.9045 57.25 -176.146 
-     52 103.989 1184 1 0 -18.95 57.05 -175.99 
-     52 6.86071 803 1 1 -19.4427 55.8637 -174.85 
-     52 127.131 802 1 1 -19.45 55.8469 -174.833 
-     52 160.547 801 1 1 -19.65 55.641 -174.656 
-     52 44.4875 800 1 1 -19.85 55.5123 -174.736 
-     52 84.5748 1168 1 0 -20.2535 53.7973 -175.85 
-     52 92.8813 1167 1 0 -20.2121 53.65 -176.039 
-Number of digits in this event =  5
+Number of tracker hits in this event =  78
+     52 116.163 899 4 1 -0.124868 -0.0951723 -84.45 
+     52 168.878 899 4 0 -0.130425 -0.0856976 -85.85 
+     52 119.182 899 3 1 -0.212968 0.137869 -114.45 
+     52 120.899 900 3 0 -0.216855 0.158418 -115.85 
+     52 387.786 899 2 1 -0.246289 0.596648 -144.45 
+     52 260.935 902 2 0 -0.235589 0.620933 -145.85 
+     52 226.217 901 0 1 0.342259 1.71636 -204.45 
+     52 148.804 907 0 0 0.467732 1.61658 -205.85 
+     52 155.685 908 0 0 0.249908 1.8034 -205.85 
+     52 721.282 896 1 1 -0.782507 0.775093 -174.45 
+     52 100.27 907 1 0 -0.942893 1.4912 -175.85 
+     52 34.6755 908 1 0 -0.975966 1.65 -176.133 
+     52 113.687 877 0 1 -4.45093 16.4636 -204.45 
+     52 379.848 983 0 0 -4.73195 16.7492 -205.85 
+     52 308.101 903 1 0 -0.761034 0.802468 -175.85 
+     52 101.854 895 0 1 -0.97163 2.56057 -204.45 
+     52 105.869 911 0 0 -0.817488 2.39331 -205.85 
+     52 179.852 902 1 0 -0.378885 0.519379 -175.85 
+     52 35.8669 901 1 0 -0.273889 0.45 -176.145 
+     52 181.023 878 1 0 29.378 -4.43001 -176.25 
+     52 17.1407 1053 1 1 30.7995 -4.27741 -174.85 
+     52 166.298 1054 1 1 30.85 -4.27253 -174.803 
+     52 63.1348 1055 1 1 31.05 -4.25031 -174.649 
+     52 24.866 1056 1 1 31.25 -4.25355 -174.517 
+     52 24.5724 1058 1 1 31.7826 -4.06804 -174.45 
+     52 73.9924 1059 1 1 31.85 -4.10245 -174.499 
+     52 83.9841 1060 1 1 32.05 -4.18448 -174.668 
+     52 80.8459 1061 1 1 32.25 -4.32891 -174.808 
+     52 28.0787 869 1 0 33.5061 -6.22283 -175.85 
+     52 67.7045 868 1 0 33.5234 -6.25 -175.865 
+     52 61.0871 867 1 0 33.6882 -6.45 -175.998 
+     52 125.228 866 1 0 33.8125 -6.65 -175.936 
+     52 73.6238 1080 1 1 36.0783 -8.54876 -174.85 
+     52 99.5181 1081 1 1 36.25 -8.69108 -174.769 
+     52 141.777 777 1 0 43.2294 -24.5302 -175.85 
+     52 57.6809 776 1 0 43.2821 -24.65 -175.858 
+     52 13.6705 775 1 0 43.3879 -24.85 -175.856 
+     52 50.9688 1138 1 1 47.7348 -29.4265 -174.85 
+     52 12.9157 1139 1 1 47.85 -29.5328 -174.85 
+     52 84.2527 700 1 0 79.0725 -39.9284 -175.85 
+     52 92.4318 699 1 0 79.3399 -40.05 -175.852 
+     52 88.2903 698 1 0 79.5752 -40.25 -175.9 
+     52 91.8629 697 1 0 79.7813 -40.45 -175.939 
+     52 63.9789 696 1 0 80.0118 -40.65 -175.927 
+     52 8.43222 1307 1 1 81.6235 -41.9907 -174.85 
+     52 80.4885 1308 1 1 81.65 -42.0124 -174.832 
+     52 199.862 1309 1 1 81.85 -42.2017 -174.76 
+     52 93.8185 1310 1 1 82.05 -42.6861 -174.66 
+     52 167.921 1311 1 1 82.25 -42.8125 -174.563 
+     52 42.1946 1628 3 1 145.87 -33.368 -114.802 
+     52 139.476 895 5 1 -0.897066 -0.698148 -54.45 
+     52 191.952 896 5 0 -0.90047 -0.771124 -55.85 
+     52 103.602 894 4 1 -1.06354 -2.2234 -84.45 
+     52 99.2113 888 4 0 -1.1234 -2.30618 -85.85 
+     52 106.637 887 3 1 -2.46925 -4.56599 -114.45 
+     52 46.6564 877 3 0 -2.53187 -4.64094 -115.85 
+     52 81.9762 876 3 0 -2.53962 -4.65 -116.02 
+     52 122.722 881 2 1 -3.7208 -6.1267 -144.45 
+     52 137.966 868 2 0 -3.67196 -6.28727 -145.85 
+     52 115.007 887 1 1 -2.47826 -9.33482 -174.45 
+     52 8.64923 853 1 0 -2.4916 -9.44778 -175.85 
+     52 150.117 852 1 0 -2.49181 -9.45 -175.879 
+     52 112.081 884 0 1 -3.10787 -11.558 -204.45 
+     52 185.121 842 0 0 -3.14446 -11.5063 -205.85 
+     52 131.55 926 2 1 5.28896 3.58918 -144.45 
+     52 407.532 917 2 0 5.22462 3.56533 -145.85 
+     52 133.079 917 1 1 3.55695 1.25451 -174.45 
+     52 81.0301 904 1 0 3.51429 0.877588 -175.85 
+     52 60.3265 914 0 1 2.99183 -9.79517 -204.45 
+     52 80.4091 915 0 1 3.05 -9.89 -204.608 
+     52 83.7379 846 0 0 3.61368 -10.7116 -205.85 
+     52 73.724 845 0 0 3.71068 -10.85 -206.054 
+     52 150.473 925 2 1 5.23875 3.61027 -144.45 
+     52 126.414 933 1 1 6.66143 2.37461 -174.45 
+     52 128.519 910 1 0 6.81582 2.17177 -175.85 
+     52 128.672 943 0 1 8.75894 -1.91443 -204.45 
+     52 7.60592 889 0 0 8.82205 -2.24448 -205.85 
+     52 191.459 888 0 0 8.82307 -2.25 -205.873 
+Number of digits in this event =  33
 Event: 53
-Number of tracker hits in this event =  0
+Number of tracker hits in this event =  1
+     53 52.163 785 4 1 -22.9415 -19.937 -84.4636 
 Number of digits in this event =  2
 Event: 54
-Number of tracker hits in this event =  0
-Number of digits in this event =  1
+Number of tracker hits in this event =  14
+     54 51.0678 1535 1 0 -52.7698 127.193 -176.25 
+     54 57.2198 1536 1 0 -52.8604 127.35 -176.136 
+     54 71.0553 1537 1 0 -52.9238 127.55 -176.085 
+     54 55.9756 1538 1 0 -52.9884 127.75 -176.07 
+     54 46.3092 1539 1 0 -53 127.95 -176.057 
+     54 54.8589 1540 1 0 -53.0206 128.15 -176.042 
+     54 104.863 1541 1 0 -53.038 128.35 -176.028 
+     54 77.5993 1542 1 0 -53.0489 128.55 -175.955 
+     54 24.6323 1543 1 0 -53.0043 128.75 -175.88 
+     54 48.4274 640 1 1 -51.9737 130.019 -174.85 
+     54 87.714 641 1 1 -51.85 130.163 -174.728 
+     54 164.341 642 1 1 -51.65 130.375 -174.588 
+     54 3.89393 643 1 1 -51.45 130.456 -174.462 
+     54 1.63843 853 2 1 -9.42699 161.747 -144.66 
+Number of digits in this event =  2
 Event: 55
-Number of tracker hits in this event =  40
-     55 119.137 900 4 1 0.0816551 0.0868028 -84.45 
-     55 97.3406 900 4 0 0.0828554 0.0938967 -85.85 
-     55 118.182 900 3 1 0.0546195 0.224246 -114.45 
-     55 267.681 900 3 0 0.0579487 0.235582 -115.85 
-     55 116.971 900 2 1 0.0804421 0.436301 -144.45 
-     55 351.429 901 2 0 0.126762 0.415585 -145.85 
-     55 112.093 909 0 1 1.90165 -0.354307 -204.45 
-     55 148.002 898 0 0 1.92552 -0.372128 -205.85 
-     55 55.9407 905 1 1 1.09659 -0.05 -174.544 
-     55 59.1813 904 1 1 1.05 -0.152002 -174.71 
-     55 75.7411 892 1 0 0.491647 -1.48137 -175.85 
-     55 211.659 891 1 0 0.418697 -1.65 -175.993 
-     55 72.8472 890 1 0 0.25954 -1.85 -176.15 
-     55 4.58094 889 1 0 0.130334 -2.05 -176.242 
-     55 49.6558 508 1 0 -26.4792 -78.3099 -176.25 
-     55 81.6934 507 1 0 -26.5296 -78.45 -176.115 
-     55 74.4574 506 1 0 -26.6146 -78.65 -175.992 
-     55 33.7458 505 1 0 -26.6 -78.85 -175.879 
-     55 193.248 766 1 1 -26.8032 -80.1034 -174.85 
-     55 94.7817 765 1 1 -26.85 -80.2816 -174.718 
-     55 14.7239 767 1 1 -26.65 -80.6607 -174.803 
-     55 21.7815 490 1 0 -26.3791 -81.9997 -175.85 
-     55 110.949 489 1 0 -26.3636 -82.05 -175.902 
-     55 81.3111 488 1 0 -26.3188 -82.25 -176.049 
-     55 20.775 391 8 0 34.7709 -101.922 33.9314 
-     55 54.6828 390 8 0 34.768 -101.95 33.9862 
-     55 173.597 1074 8 1 35.0054 -102.58 35.15 
-     55 56.7053 1224 5 0 165.289 64.9866 -55.9609 
-     55 2.52342 1225 5 0 165.285 65.05 -55.8553 
-     55 153.777 1723 5 1 164.893 65.3365 -54.85 
-     55 146.191 901 4 1 0.36517 -0.296366 -84.45 
-     55 251.507 898 4 0 0.386623 -0.322055 -85.85 
-     55 130.996 904 3 1 0.859779 -0.958895 -114.45 
-     55 143.071 895 3 0 0.907475 -0.989795 -115.85 
-     55 97.1639 909 2 1 1.92209 -1.49535 -144.45 
-     55 125.203 892 2 0 1.96361 -1.50126 -145.85 
-     55 161.952 913 1 1 2.78305 -1.66416 -174.45 
-     55 99.0173 918 0 1 3.76011 -2.279 -204.45 
-     55 105.002 888 0 0 3.78964 -2.33864 -205.85 
-     55 63.8774 899 4 0 0.320677 -0.25 -86.0899 
-Number of digits in this event =  15
-Event: 56
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
+Event: 56
+Number of tracker hits in this event =  8
+     56 1.19127 764 0 0 112.507 -27.1358 -206.085 
+     56 24.5386 1481 5 1 116.444 95.7564 -54.6393 
+     56 157.71 1482 5 1 116.671 95.6727 -54.5016 
+     56 97.1867 1392 5 0 118.308 98.5804 -56.0478 
+     56 90.6526 1487 5 1 117.652 99.9463 -54.85 
+     56 87.1566 1486 5 1 117.55 100.048 -54.8138 
+     56 1.44373 1415 5 0 116.652 103.191 -55.85 
+     56 79.3341 1681 5 0 87.7982 156.355 -55.85 
+Number of digits in this event =  3
 Event: 57
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
 Event: 58
-Number of tracker hits in this event =  0
-Number of digits in this event =  1
+Number of tracker hits in this event =  3
+     58 3.83206 1686 2 1 157.507 -93.5636 -144.848 
+     58 211.309 420 2 0 159.998 -96.0124 -145.85 
+     58 97.2101 788 0 1 -22.4139 34.5661 -204.596 
+Number of digits in this event =  2
 Event: 59
 Number of tracker hits in this event =  0
-Number of digits in this event =  2
+Number of digits in this event =  1
 Event: 60
 Number of tracker hits in this event =  26
-     60 130.73 902 3 1 0.556018 0.400495 -114.45 
-     60 108.81 901 3 0 0.566465 0.419884 -115.85 
-     60 109.481 903 2 1 0.666481 0.694103 -144.45 
-     60 125.795 903 2 0 0.672097 0.71943 -145.85 
-     60 107.28 903 1 1 0.784488 1.05398 -174.45 
-     60 300.936 905 1 0 0.800874 1.05729 -175.85 
-     60 307.434 904 0 1 1.02614 1.08224 -204.45 
-     60 106.169 905 0 0 1.06448 1.10256 -205.85 
-     60 227.764 906 1 1 1.43131 1.3785 -174.45 
-     60 125.711 907 1 0 1.41278 1.45028 -175.85 
-     60 102.612 916 0 0 1.0503 3.34978 -205.85 
-     60 133.25 906 1 0 1.45638 1.39852 -175.85 
-     60 302.023 909 0 1 2.03284 1.7748 -204.45 
-     60 131.426 908 0 0 2.04788 1.7542 -205.85 
-     60 94.4233 908 0 1 1.85 1.86761 -204.589 
-     60 12.2339 907 0 1 1.65 1.97944 -204.808 
-     60 154.199 911 0 0 0.823646 2.25982 -205.85 
-     60 106.922 898 3 1 -0.337687 -0.330704 -114.45 
-     60 128.209 898 3 0 -0.334151 -0.365711 -115.85 
-     60 118.061 899 2 1 -0.233398 -1.05429 -144.45 
-     60 114.411 894 2 0 -0.239169 -1.07571 -145.85 
-     60 140.104 898 1 1 -0.398729 -1.48765 -174.45 
-     60 102.523 892 1 0 -0.395656 -1.50323 -175.85 
-     60 146.991 898 0 1 -0.298239 -1.84716 -204.45 
-     60 158.84 890 0 0 -0.273827 -1.87875 -205.85 
-     60 78.007 1216 0 0 -158.525 63.27 -206.006 
-Number of digits in this event =  15
+     60 121.705 901 3 1 0.378215 0.12344 -114.45 
+     60 236.389 900 3 0 0.411331 0.126178 -115.85 
+     60 134.962 904 2 1 1.00994 0.121389 -144.45 
+     60 122.154 900 2 0 1.01932 0.132897 -145.85 
+     60 160.508 905 1 1 1.19444 0.332849 -174.45 
+     60 128.46 901 1 0 1.20214 0.318793 -175.85 
+     60 126.904 906 0 1 1.31692 0.0536171 -204.45 
+     60 55.3706 900 0 0 1.32265 0.0503941 -205.85 
+     60 37.4983 910 1 0 0.936583 2.15374 -175.85 
+     60 129.149 911 1 0 0.981762 2.25 -175.906 
+     60 58.6202 896 1 1 -0.758243 2.59318 -174.85 
+     60 47.3949 895 1 1 -0.85 2.67011 -174.806 
+     60 167.322 893 1 1 -1.25718 1.52141 -174.85 
+     60 155.136 1382 11 0 54.1231 96.6045 123.8 
+     60 310.377 1171 11 1 54.2531 96.265 125.15 
+     60 123.252 897 3 1 -0.458011 -0.074157 -114.45 
+     60 127.136 899 3 0 -0.476612 -0.0829518 -115.85 
+     60 143.457 896 2 1 -0.841423 -0.185669 -144.45 
+     60 128.201 899 2 0 -0.856284 -0.194204 -145.85 
+     60 127.452 894 1 1 -1.19358 -0.372047 -174.45 
+     60 216.561 898 1 0 -1.18212 -0.369486 -175.85 
+     60 312.289 895 0 1 -0.905585 -0.53046 -204.45 
+     60 146.53 897 0 0 -0.860085 -0.51743 -205.85 
+     60 52.4721 896 0 1 -0.85 -0.539185 -204.665 
+     60 122.321 896 0 0 -0.598872 -0.65 -205.875 
+     60 123.751 899 0 0 -1.26083 -0.243736 -205.85 
+Number of digits in this event =  23
 Event: 61
-Number of tracker hits in this event =  36
-     61 15.4643 899 6 0 0.106947 -0.05 -26.1777 
-     61 142.91 896 5 1 -0.715538 -3.34418 -54.45 
-     61 154.597 883 5 0 -0.703914 -3.32521 -55.85 
-     61 115.083 894 4 1 -1.12767 -2.69598 -84.45 
-     61 94.1547 887 4 0 -1.19106 -2.57365 -85.85 
-     61 102.683 886 3 1 -2.78717 0.197263 -114.45 
-     61 306.53 901 3 0 -2.67065 0.325194 -115.85 
-     61 14.4729 895 2 1 -0.854437 2.95781 -144.45 
-     61 188.236 896 2 1 -0.85 2.958 -144.5 
-     61 162.164 914 2 0 -0.732533 2.95225 -145.85 
-     61 139.428 908 1 1 1.77106 3.75103 -174.45 
-     61 84.0269 918 1 0 1.6433 3.67726 -175.85 
-     61 24.2899 917 1 0 1.6157 3.65 -176.155 
-     61 14.2284 900 0 1 0.0649502 -1.33079 -204.45 
-     61 4.14488 899 0 1 -0.05 -1.43416 -204.837 
-     61 154.839 891 0 0 -0.404029 -1.72203 -205.85 
-     61 112.271 901 5 1 0.266236 0.0593769 -54.45 
-     61 101.937 900 5 0 0.296483 0.0676573 -55.85 
-     61 166.688 904 4 1 0.882746 0.23043 -84.45 
-     61 118.067 900 4 0 0.906885 0.238488 -85.85 
-     61 115.279 906 3 1 1.42371 0.385857 -114.45 
-     61 109.655 908 2 1 1.77359 0.663494 -144.45 
-     61 271.082 902 2 0 1.83928 0.617841 -145.85 
-     61 97.8132 915 1 1 3.2008 -0.311614 -174.45 
-     61 111.321 898 1 0 3.26629 -0.355311 -175.85 
-     61 169.814 922 0 1 4.59233 -1.25027 -204.45 
-     61 109.539 894 0 0 4.70723 -1.24768 -205.85 
-     61 138.165 1716 1 1 163.358 -131.391 -174.45 
-     61 42.6507 1715 1 1 163.35 -131.409 -174.455 
-     61 255.269 910 1 1 2.11646 0.985412 -174.45 
-     61 105.664 904 1 0 2.05658 0.986125 -175.85 
-     61 154.564 903 0 1 0.76466 0.847839 -204.45 
-     61 402.854 904 0 0 0.665599 0.858851 -205.85 
-     61 144.926 905 1 0 2.20752 1.07041 -175.85 
-     61 145.519 918 0 1 3.65225 2.67218 -204.45 
-     61 158.984 913 0 0 3.73221 2.75732 -205.85 
-Number of digits in this event =  18
+Number of tracker hits in this event =  7
+     61 159.078 1571 5 1 134.421 -49.7487 -54.6554 
+     61 98.8492 1572 5 1 134.55 -49.8317 -54.5682 
+     61 117.816 901 0 1 0.302954 0.0653339 -204.45 
+     61 131.843 900 0 0 0.307932 0.0617709 -205.85 
+     61 2.34652 977 4 0 109.535 15.6485 -85.9254 
+     61 78.9217 978 4 0 109.537 15.65 -85.9239 
+     61 127.544 1449 4 1 109.985 16.9163 -84.85 
+Number of digits in this event =  5
 Event: 62
-Number of tracker hits in this event =  0
-Number of digits in this event =  1
+Number of tracker hits in this event =  10
+     62 264.416 696 1 1 -40.8288 82.863 -174.45 
+     62 201.658 695 1 1 -40.85 82.8771 -174.503 
+     62 30.2317 694 1 1 -41.05 82.9899 -174.632 
+     62 57.718 1316 1 0 -40.4827 83.3881 -175.85 
+     62 131.037 1317 1 0 -40.4485 83.45 -175.965 
+     62 28.9711 1318 1 0 -40.3558 83.65 -176.209 
+     62 171.547 1309 1 0 -40.9177 81.9591 -175.85 
+     62 161.883 1308 1 0 -41.0055 81.85 -176.034 
+     62 101.5 719 0 0 -0.174688 -36.2154 -205.918 
+     62 39.5181 718 0 0 -0.169844 -36.25 -205.915 
+Number of digits in this event =  7
 Event: 63
+Number of tracker hits in this event =  21
+     63 104.72 900 3 1 0.150787 0.228461 -114.45 
+     63 132.338 900 3 0 0.162593 0.242816 -115.85 
+     63 216.049 901 2 1 0.41201 0.407165 -144.45 
+     63 119.355 901 2 0 0.416081 0.402452 -145.85 
+     63 255.074 901 1 1 0.445058 0.359878 -174.45 
+     63 135.68 901 1 0 0.440476 0.356193 -175.85 
+     63 116.333 901 0 1 0.303721 0.441327 -204.45 
+     63 146.032 901 0 0 0.304445 0.43499 -205.85 
+     63 114.714 899 2 0 0.377789 -0.199397 -145.85 
+     63 187.789 899 1 0 0.399856 -0.159804 -175.85 
+     63 118.043 899 0 1 -0.201369 -0.339426 -204.45 
+     63 123.753 898 0 0 -0.224704 -0.348951 -205.85 
+     63 157.488 393 7 0 5.68714 -101.549 3.75 
+     63 1.12752 392 7 0 5.73383 -101.55 4.14573 
+     63 12.3118 940 7 1 8.21106 -102.919 5.15 
+     63 71.3507 941 7 1 8.25 -102.941 5.16576 
+     63 7.42266 379 7 0 10.7275 -104.337 4.15 
+     63 66.723 378 7 0 10.7504 -104.35 4.13997 
+     63 59.4546 377 7 0 10.8593 -104.55 4.06847 
+     63 160.371 376 7 0 10.8984 -104.75 3.95667 
+     63 2.19314 1719 1 0 -30.1797 164.055 -176.072 
+Number of digits in this event =  11
+Event: 64
 Number of tracker hits in this event =  1
-     63 39.2533 436 3 1 -92.7754 -26.7715 -114.603 
+     64 24.3674 333 1 0 -148.765 -113.543 -176.152 
 Number of digits in this event =  1
-Event: 64
-Number of tracker hits in this event =  11
-     64 115.547 899 2 1 -0.224272 1.5643 -144.45 
-     64 131.524 907 2 0 -0.22399 1.57103 -145.85 
-     64 120.063 900 1 1 0.05 1.61392 -174.472 
-     64 100.155 906 1 0 0.158075 1.31737 -175.85 
-     64 34.676 905 1 0 0.182311 1.25 -176.158 
-     64 127.945 914 0 1 2.93922 -5.06138 -204.45 
-     64 133.182 873 0 0 3.28915 -5.35717 -205.85 
-     64 157.671 901 1 1 0.298459 -0.20327 -174.45 
-     64 465.874 899 1 0 0.303853 -0.231323 -175.85 
-     64 115.096 901 0 1 0.403874 -0.808801 -204.45 
-     64 138.821 896 0 0 0.408186 -0.835301 -205.85 
-Number of digits in this event =  9
 Event: 65
-Number of tracker hits in this event =  14
-     65 125.403 900 3 0 -0.0639404 0.115595 -115.85 
-     65 104.879 894 2 1 -1.20709 2.17529 -144.45 
-     65 6.84034 893 2 1 -1.25 2.22219 -144.823 
-     65 134.318 911 2 0 -1.35806 2.35029 -145.85 
-     65 102.395 878 1 1 -4.34826 5.84565 -174.45 
-     65 288.705 929 1 0 -4.50484 5.95215 -175.85 
-     65 117.872 862 0 1 -7.46398 8.19008 -204.45 
-     65 168.934 941 0 0 -7.69539 8.4036 -205.85 
-     65 33.604 942 0 0 -7.74757 8.45 -206.167 
-     65 173.343 899 0 0 0.454615 -0.0579284 -205.85 
-     65 17.159 1005 0 0 -47.8797 21.2093 -205.938 
-     65 92.0288 1006 0 0 -47.9068 21.25 -205.9 
-     65 229.159 1007 0 0 -47.9161 21.45 -205.893 
-     65 33.5155 1603 8 1 140.875 -25.7134 35.443 
-Number of digits in this event =  8
+Number of tracker hits in this event =  0
+Number of digits in this event =  2
 Event: 66
-Number of tracker hits in this event =  4
-     66 84.6932 908 0 0 -18.1113 1.74036 -205.985 
-     66 141.183 807 0 1 -18.6299 1.44749 -204.85 
-     66 130.456 806 0 1 -18.65 1.47023 -204.718 
-     66 91.9417 1656 10 0 -133.476 151.4 93.9954 
-Number of digits in this event =  3
+Number of tracker hits in this event =  8
+     66 97.9879 927 4 0 156.157 5.52106 -86.25 
+     66 45.0953 926 4 0 156.269 5.45 -85.9615 
+     66 164.156 1684 4 1 157.089 4.96974 -84.85 
+     66 294.477 1685 4 1 157.15 4.93478 -84.7669 
+     66 15.7488 1686 4 1 157.35 4.74104 -84.4887 
+     66 5.96974 1683 4 1 156.95 4.72353 -84.8402 
+     66 126.287 922 4 0 155.519 4.57228 -85.85 
+     66 157.351 1679 4 1 156.015 4.88129 -84.85 
+Number of digits in this event =  6
 Event: 67
-Number of tracker hits in this event =  19
-     67 328.026 1164 6 0 -42.4874 52.8796 -26.25 
-     67 71.944 684 6 1 -43.1814 52.911 -24.85 
-     67 353.684 683 6 1 -43.25 52.9226 -24.7337 
-     67 91.8048 1257 7 0 -32.9181 71.4979 3.75 
-     67 70.261 1258 7 0 -32.8207 71.65 3.95653 
-     67 56.371 739 7 1 -32.1299 72.2042 5.15 
-     67 85.1078 740 7 1 -32.05 72.2661 5.28989 
-     67 49.8747 741 7 1 -31.85 72.2573 5.45714 
-     67 110.669 742 7 1 -31.65 72.3048 5.47047 
-     67 125.131 743 7 1 -31.45 72.3676 5.442 
-     67 77.1249 744 7 1 -31.25 72.4826 5.37199 
-     67 32.7352 745 7 1 -31.05 72.5169 5.18034 
-     67 174.784 1266 7 0 -28.6994 73.2679 4.15 
-     67 64.46 1267 7 0 -28.2894 73.45 3.93424 
-     67 92.6094 1307 7 0 -42.1649 81.6239 3.75 
-     67 175.341 1308 7 0 -42.3726 81.65 3.83159 
-     67 264.457 1309 7 0 -42.6928 81.85 3.94535 
-     67 205.77 682 6 1 -43.45 52.5544 -24.5012 
-     67 199.313 1163 6 0 -46.6223 52.8487 -25.85 
-Number of digits in this event =  10
+Number of tracker hits in this event =  28
+     67 381.684 899 4 1 -0.0582894 -0.0681123 -84.45 
+     67 447.41 899 4 0 -0.0600705 -0.0664565 -85.85 
+     67 102.29 899 2 1 -0.166791 0.633174 -144.45 
+     67 237.243 903 2 0 -0.170984 0.663478 -145.85 
+     67 126.141 899 1 1 -0.202516 1.27894 -174.45 
+     67 131.783 906 1 0 -0.213523 1.3084 -175.85 
+     67 138.813 898 0 1 -0.429522 1.92006 -204.45 
+     67 114.791 909 0 0 -0.443199 1.94976 -205.85 
+     67 126.947 902 4 0 -0.167997 0.550405 -85.85 
+     67 125.325 901 3 1 0.424727 0.741087 -114.45 
+     67 116.772 903 3 0 0.455808 0.740938 -115.85 
+     67 119.789 905 2 1 1.12437 0.791063 -144.45 
+     67 120.776 911 1 1 2.39347 -0.410743 -174.45 
+     67 109.672 897 1 0 2.44422 -0.489447 -175.85 
+     67 132.624 916 0 1 3.36421 -2.20931 -204.45 
+     67 126.69 888 0 0 3.34414 -2.34463 -205.85 
+     67 134.108 587 0 1 -62.5913 47.8323 -204.45 
+     67 57.9004 586 0 1 -62.65 47.9507 -204.708 
+     67 113.432 1143 0 0 -63.2102 48.7081 -205.85 
+     67 69.3311 1144 0 0 -63.3693 48.85 -206.084 
+     67 266.161 909 1 1 1.9374 0.548218 -174.45 
+     67 120.708 902 1 0 2.01045 0.451454 -175.85 
+     67 103.118 901 1 0 2.0122 0.45 -175.871 
+     67 173.212 903 0 1 0.699573 -3.85147 -204.45 
+     67 65.7493 902 0 1 0.65 -3.79062 -204.624 
+     67 164.124 882 0 0 0.361638 -3.53577 -205.85 
+     67 6.53075 906 0 0 0.558544 1.25705 -205.85 
+     67 121.245 905 0 0 0.554871 1.25 -205.875 
+Number of digits in this event =  19
 Event: 68
-Number of tracker hits in this event =  0
-Number of digits in this event =  2
+Number of tracker hits in this event =  17
+     68 141.049 901 3 1 0.329173 -0.162046 -114.45 
+     68 135.734 899 3 0 0.351862 -0.170522 -115.85 
+     68 117.296 903 2 1 0.759901 -0.34112 -144.45 
+     68 121.916 898 2 0 0.789778 -0.355376 -145.85 
+     68 142.09 906 1 1 1.39187 -0.66194 -174.45 
+     68 132.482 896 1 0 1.40201 -0.680953 -175.85 
+     68 163.615 908 0 1 1.68453 -1.14192 -204.45 
+     68 140.719 894 0 0 1.70644 -1.15911 -205.85 
+     68 122.953 898 3 1 -0.291157 -0.219588 -114.45 
+     68 116.077 898 3 0 -0.311634 -0.252645 -115.85 
+     68 175.328 896 2 1 -0.759709 -0.95265 -144.45 
+     68 126.745 895 2 0 -0.786186 -0.996553 -145.85 
+     68 118.066 892 1 1 -1.48248 -1.89012 -174.45 
+     68 114.666 890 1 0 -1.54217 -1.93103 -175.85 
+     68 232.802 886 0 1 -2.81156 -2.75256 -204.45 
+     68 149.514 886 0 0 -2.84453 -2.79927 -205.85 
+     68 250.536 281 0 0 -42.532 -123.872 -206.207 
+Number of digits in this event =  14
 Event: 69
-Number of tracker hits in this event =  12
-     69 134.385 899 3 1 -0.150422 0.0587872 -114.45 
-     69 156.187 900 3 0 -0.162527 0.0694839 -115.85 
-     69 111.923 898 2 1 -0.36655 0.220558 -144.45 
-     69 202.924 900 2 0 -0.378329 0.219456 -145.85 
-     69 166.031 897 1 1 -0.604215 0.161597 -174.45 
-     69 117.919 900 1 0 -0.625475 0.154638 -175.85 
-     69 15.9595 1278 1 0 20.1408 75.8386 -175.992 
-     69 103.411 1279 1 0 20.1365 75.85 -175.988 
-     69 120.077 37 0 1 -172.674 -51.9412 -204.45 
-     69 89.4887 644 0 0 -173.067 -51.2157 -205.85 
-     69 69.4429 645 0 0 -173.061 -51.05 -206.117 
-     69 6.67921 646 0 0 -173.088 -50.85 -206.231 
-Number of digits in this event =  7
+Number of tracker hits in this event =  6
+     69 146.57 899 1 1 -0.179771 0.0989697 -174.45 
+     69 149.092 900 1 0 -0.17052 0.110954 -175.85 
+     69 289.741 899 0 1 -0.113814 0.332315 -204.45 
+     69 122.33 901 0 0 -0.101969 0.330085 -205.85 
+     69 110.69 899 0 0 -0.0824299 -0.0627439 -205.85 
+     69 32.0666 1272 6 1 74.5128 -143.302 -24.5635 
+Number of digits in this event =  5
 Event: 70
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
 Event: 71
-Number of tracker hits in this event =  0
-Number of digits in this event =  1
+Number of tracker hits in this event =  10
+     71 145.356 903 0 1 0.695608 -0.214171 -204.45 
+     71 255.007 899 0 0 0.743134 -0.224637 -205.85 
+     71 90.2121 899 1 1 -0.0702951 0.05 -174.583 
+     71 129.543 902 1 0 -0.670592 0.503484 -175.85 
+     71 110.826 823 0 1 -15.3302 9.27447 -204.45 
+     71 23.8513 824 0 1 -15.25 9.4708 -204.78 
+     71 91.8561 950 0 0 -14.9789 10.066 -205.85 
+     71 316.224 951 0 0 -14.9095 10.25 -206.191 
+     71 1.57592 1104 0 0 -27.4913 41.0298 -205.932 
+     71 167.226 900 0 1 0.0547209 -0.112818 -204.45 
+Number of digits in this event =  6
 Event: 72
 Number of tracker hits in this event =  0
-Number of digits in this event =  2
+Number of digits in this event =  1
 Event: 73
-Number of tracker hits in this event =  8
-     73 0.182091 807 8 0 -165.941 -18.5838 34.0208 
-     73 140.382 149 8 1 -150.277 7.24153 35.55 
-     73 106.081 919 11 0 104.615 3.97999 123.75 
-     73 182.88 920 11 0 104.702 4.05 123.833 
-     73 16.591 1410 5 0 97.9082 102.2 -56.0184 
-     73 139.861 523 0 0 24.1124 -75.3583 -206.25 
-     73 109.546 522 0 0 24.0218 -75.45 -206.169 
-     73 179.72 186 5 0 160.442 -142.867 -55.9512 
-Number of digits in this event =  5
+Number of tracker hits in this event =  91
+     73 119.592 903 4 1 0.821547 0.151731 -84.45 
+     73 218.805 900 4 0 0.827384 0.177786 -85.85 
+     73 115.675 904 3 1 0.868484 0.755395 -114.45 
+     73 186.468 903 3 0 0.883786 0.764543 -115.85 
+     73 126.201 905 2 1 1.21266 0.857576 -144.45 
+     73 157.086 904 2 0 1.23955 0.872166 -145.85 
+     73 177.779 908 1 1 1.82027 1.1769 -174.45 
+     73 136.392 905 1 0 1.84418 1.17247 -175.85 
+     73 116.61 911 0 1 2.27164 1.07863 -204.45 
+     73 127.971 905 0 0 2.27575 1.06717 -205.85 
+     73 224.018 896 5 1 -0.687524 -0.104411 -54.45 
+     73 263.071 899 5 0 -0.745913 -0.123241 -55.85 
+     73 113.521 890 4 1 -1.85381 -0.168713 -84.45 
+     73 158.014 899 4 0 -1.95184 -0.18667 -85.85 
+     73 139.706 881 3 1 -3.77448 -0.757976 -114.45 
+     73 121.92 896 3 0 -3.90264 -0.7673 -115.85 
+     73 133.625 869 2 1 -6.18974 -2.1134 -144.45 
+     73 101.627 889 2 0 -6.24863 -2.20185 -145.85 
+     73 101.46 863 1 1 -7.28743 -3.97272 -174.45 
+     73 113.404 879 1 0 -7.33041 -4.06251 -175.85 
+     73 128.667 856 0 1 -8.79241 -5.78392 -204.45 
+     73 166.901 870 0 0 -8.78978 -5.93087 -205.85 
+     73 10.2999 871 0 0 -8.86641 -5.85 -206.21 
+     73 42.0589 868 2 1 -6.38116 -2.15855 -144.45 
+     73 109.938 867 2 1 -6.45 -2.13981 -144.556 
+     73 22.7669 866 2 1 -6.65 -2.12186 -144.805 
+     73 330.4 884 2 0 -10.8799 -3.17369 -145.85 
+     73 156.193 851 2 0 -103.024 -9.69234 -146.25 
+     73 661.897 850 2 0 -102.706 -9.85 -146.007 
+     73 151.812 900 5 1 0.07506 -0.202924 -54.45 
+     73 121.597 898 5 0 -0.265227 -0.294657 -55.85 
+     73 148.128 859 4 1 -8.13691 -1.48013 -84.45 
+     73 139.07 889 4 0 -8.42278 -2.07426 -85.85 
+     73 0.281359 888 4 0 -8.51055 -2.25 -86.2494 
+     73 135.622 830 3 1 -13.9531 -16.0856 -114.45 
+     73 25.0984 816 3 0 -14.1495 -16.8061 -115.85 
+     73 115.273 815 3 0 -14.16 -16.85 -115.935 
+     73 166.906 819 2 1 -16.2156 -31.3453 -144.45 
+     73 23.2777 739 2 0 -16.0049 -32.196 -145.85 
+     73 104.236 738 2 0 -15.9916 -32.25 -145.936 
+     73 3.87781 852 1 1 -9.45286 -49.5847 -174.45 
+     73 130.701 853 1 1 -9.45 -49.5841 -174.457 
+     73 282.695 652 1 0 -8.85692 -49.4902 -175.85 
+     73 130.41 917 0 1 3.52361 -46.3502 -204.45 
+     73 76.6604 918 0 1 3.65 -46.3145 -204.646 
+     73 264.287 670 0 0 4.41735 -45.9661 -205.85 
+     73 4.83248 671 0 0 4.666 -45.85 -206.238 
+     73 101.793 899 4 1 -0.126373 -0.723202 -84.45 
+     73 104.22 896 4 0 -0.138734 -0.719759 -85.85 
+     73 119.733 898 3 1 -0.413481 -0.469808 -114.45 
+     73 113.103 897 3 0 -0.392313 -0.486287 -115.85 
+     73 105.573 901 1 1 0.424648 -1.00911 -174.45 
+     73 113.216 894 1 0 0.454529 -1.08039 -175.85 
+     73 127.096 905 0 1 1.15246 -2.61142 -204.45 
+     73 138.664 886 0 0 1.16691 -2.65813 -205.85 
+     73 145.952 902 1 1 0.499634 -0.855732 -174.45 
+     73 141.04 903 1 1 0.65 -0.414724 -174.634 
+     73 61.2146 909 1 0 1.21165 1.8593 -175.85 
+     73 58.3833 910 1 0 1.25646 2.05 -175.959 
+     73 59.2413 911 1 0 1.29059 2.25 -176.047 
+     73 60.1962 912 1 0 1.32798 2.45 -176.096 
+     73 55.1148 913 1 0 1.33257 2.65 -176.131 
+     73 53.3081 914 1 0 1.33141 2.85 -176.127 
+     73 53.0159 915 1 0 1.33937 3.05 -176.101 
+     73 58.0894 916 1 0 1.36652 3.25 -176.039 
+     73 66.7371 917 1 0 1.35969 3.45 -175.954 
+     73 62.7807 918 1 0 1.33096 3.65 -175.939 
+     73 54.6394 919 1 0 1.27897 3.85 -175.928 
+     73 70.517 920 1 0 1.20343 4.05 -175.905 
+     73 151.41 921 1 0 1.10574 4.25 -175.914 
+     73 58.6596 922 1 0 1.00587 4.45 -175.908 
+     73 107.427 923 1 0 0.894318 4.65 -175.92 
+     73 84.3507 924 1 0 0.809407 4.85 -175.973 
+     73 64.8483 925 1 0 0.730612 5.05 -176.077 
+     73 47.9021 926 1 0 0.676118 5.25 -176.182 
+     73 10.3807 1764 1 0 93.2765 173.119 -176.25 
+     73 76.1157 1765 1 0 93.3034 173.15 -176.243 
+     73 101.56 1766 1 0 93.4462 173.35 -176.206 
+     73 41.5535 1767 1 0 93.6243 173.55 -175.948 
+     73 213.647 1369 1 1 94.0029 175.155 -174.85 
+     73 450.212 1368 1 1 93.95 175.652 -174.493 
+     73 14.7465 1367 1 1 93.75 175.753 -174.79 
+     73 126.425 1777 1 0 93.685 175.748 -175.85 
+     73 92.2632 1778 1 0 93.54 175.75 -176.192 
+     73 172.761 1779 1 0 93.3301 175.95 -176.213 
+     73 90.8207 1780 1 0 93.0775 176.15 -176.136 
+     73 184.63 1781 1 0 93.1882 176.35 -176.11 
+     73 56.9528 1363 1 1 92.9249 175.889 -174.85 
+     73 35.4981 1364 1 1 92.95 175.823 -174.818 
+     73 24.5196 1783 1 0 92.492 176.932 -175.85 
+     73 77.2873 1784 1 0 92.4803 176.95 -175.866 
+Number of digits in this event =  41
 Event: 74
 Number of tracker hits in this event =  0
-Number of digits in this event =  2
+Number of digits in this event =  1
 Event: 75
-Number of tracker hits in this event =  27
-     75 92.8883 900 4 0 0.0512725 0.158263 -85.85 
-     75 138.582 900 3 1 0.202194 0.292754 -114.45 
-     75 113.93 901 3 0 0.217441 0.294765 -115.85 
-     75 122.193 902 2 1 0.520322 0.331233 -144.45 
-     75 439.463 901 2 0 0.539453 0.341084 -145.85 
-     75 133.438 904 1 1 0.961706 0.517055 -174.45 
-     75 194.367 902 1 0 0.979286 0.514115 -175.85 
-     75 293.457 906 0 1 1.32853 0.426515 -204.45 
-     75 115.001 901 0 0 1.3514 0.425738 -205.85 
-     75 179.704 912 0 0 1.14591 2.52816 -205.85 
-     75 179.277 911 0 0 1.25252 2.45 -206.046 
-     75 104.325 899 0 1 -0.0934633 1.71454 -204.85 
-     75 128.662 910 0 0 -0.465427 2.25 -205.897 
-     75 103.888 899 4 0 0.298753 -0.05 -85.8943 
-     75 135.835 906 3 1 1.35776 -0.462158 -114.45 
-     75 181.947 897 3 0 1.42306 -0.507113 -115.85 
-     75 120.964 913 2 1 2.69601 -1.57288 -144.45 
-     75 111.257 891 2 0 2.76493 -1.74876 -145.85 
-     75 132.377 919 1 1 4.02622 -4.55261 -174.45 
-     75 131.074 876 1 0 4.05487 -4.75929 -175.85 
-     75 130.576 923 0 1 4.69781 -8.81634 -204.45 
-     75 182.964 855 0 0 4.62846 -8.96314 -205.85 
-     75 390.388 911 0 1 2.27413 -2.42876 -204.45 
-     75 47.8773 891 0 0 2.31623 -1.73475 -205.85 
-     75 78.9839 892 0 0 2.32185 -1.65 -206.011 
-     75 95.3511 887 0 0 2.27335 -2.60459 -205.85 
-     75 6.9991 886 0 0 2.2721 -2.65 -206.211 
-Number of digits in this event =  18
+Number of tracker hits in this event =  3
+     75 258.373 899 0 1 -0.187637 -0.0943526 -204.45 
+     75 125.049 899 0 0 -0.19784 -0.10257 -205.85 
+     75 123.838 900 0 0 -0.154334 0.124507 -205.85 
+Number of digits in this event =  4
 Event: 76
+Number of tracker hits in this event =  4
+     76 3.98092 898 0 0 21.4236 -0.33642 -205.858 
+     76 90.791 1008 0 1 21.8143 0.262972 -204.85 
+     76 140.654 1009 0 1 21.85 0.392209 -204.762 
+     76 102.763 592 1 0 85.8768 -61.5101 -176.087 
+Number of digits in this event =  2
+Event: 77
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
-Event: 77
-Number of tracker hits in this event =  37
-     77 111.536 900 3 1 0.225619 -0.27812 -114.45 
-     77 118.384 898 3 0 0.211155 -0.291244 -115.85 
-     77 121.126 899 2 1 -0.108237 -0.549036 -144.45 
-     77 122.705 897 2 0 -0.134622 -0.572696 -145.85 
-     77 138.27 897 1 1 -0.635536 -1.0318 -174.45 
-     77 413.321 894 1 0 -0.658804 -1.05015 -175.85 
-     77 154.632 894 0 1 -1.14598 -1.45946 -204.45 
-     77 109.553 892 0 0 -1.17604 -1.46326 -205.85 
-     77 158.943 897 4 1 -0.505304 0.530496 -84.45 
-     77 124.86 902 4 0 -0.533466 0.545469 -85.85 
-     77 239.978 891 3 1 -1.77857 0.803008 -114.45 
-     77 182.1 903 3 0 -1.90038 0.766902 -115.85 
-     77 68.8804 874 2 1 -5.24708 -0.193084 -144.45 
-     77 44.2006 875 2 1 -5.05 -0.0974448 -144.571 
-     77 32.0625 876 2 1 -4.7324 0.05 -144.778 
-     77 10.3431 877 2 1 -4.65 0.0865756 -144.83 
-     77 78.7032 903 2 0 -2.98902 0.7702 -145.85 
-     77 178.12 904 2 0 -2.7951 0.85 -145.969 
-     77 74.5271 1109 1 1 41.8528 20.6775 -174.45 
-     77 72.8476 1110 1 1 42.05 20.7746 -174.627 
-     77 16.7826 1111 1 1 42.25 20.8755 -174.809 
-     77 381.21 1007 1 0 43.4593 21.4892 -175.85 
-     77 69.7365 1008 1 0 43.7756 21.65 -176.123 
-     77 66.3011 1290 0 1 78.0762 39.5864 -204.45 
-     77 64.6864 1291 0 1 78.25 39.7041 -204.568 
-     77 74.8821 1292 0 1 78.45 39.8345 -204.707 
-     77 131.523 1104 0 0 79.9647 40.8706 -205.85 
-     77 119.276 1105 0 0 80.2277 41.05 -206.048 
-     77 18.5343 852 1 0 66.4292 -9.58312 -176.25 
-     77 111.866 937 1 0 97.6159 7.57068 -176.25 
-     77 285.855 890 0 1 -2.02569 2.39524 -204.45 
-     77 33.5997 891 0 1 -1.85 2.87476 -204.814 
-     77 48.6142 922 0 0 -0.32277 4.53808 -205.85 
-     77 156.506 923 0 0 -0.221666 4.65 -205.92 
-     77 26.444 924 0 0 -0.307433 4.85 -206.166 
-     77 162.913 1000 1 0 -14.3801 20.0545 -176.177 
-     77 85.549 1215 9 0 -12.9534 63.0636 63.8291 
-Number of digits in this event =  16
 Event: 78
-Number of tracker hits in this event =  7
-     78 131.946 906 0 1 1.34856 0.283924 -204.45 
-     78 117.98 900 0 0 1.35494 0.224224 -205.85 
-     78 1.85011 326 11 0 153.834 -114.943 124.148 
-     78 9.08654 1670 11 1 154.34 -114.801 125.15 
-     78 139.994 1671 11 1 154.35 -114.798 125.163 
-     78 108.408 1365 1 1 93.2636 -84.2964 -174.45 
-     78 83.5358 1364 1 1 93.15 -84.2086 -174.495 
-Number of digits in this event =  4
+Number of tracker hits in this event =  0
+Number of digits in this event =  1
 Event: 79
-Number of tracker hits in this event =  6
-     79 139.74 899 1 1 -0.155015 -0.582529 -174.45 
-     79 180.064 897 1 0 -0.139607 -0.550399 -175.85 
-     79 4.10628 899 0 1 -0.20756 -0.0502406 -204.45 
-     79 104.139 900 1 0 -0.136294 0.0516513 -175.85 
-     79 111.285 900 0 1 0.0585826 0.215402 -204.45 
-     79 109.907 900 0 0 0.0786298 0.219908 -205.85 
-Number of digits in this event =  4
+Number of tracker hits in this event =  8
+     79 152.791 899 0 0 -0.05 -0.0821924 -206.065 
+     79 49.9084 1151 2 0 -39.8989 50.2797 -145.965 
+     79 21.045 1153 2 0 -39.3579 50.796 -146.079 
+     79 149.771 752 2 1 -29.4716 53.8062 -144.772 
+     79 169.269 1176 2 0 -104.64 55.2764 -146.227 
+     79 142.899 899 0 1 -0.05 0.0871784 -204.591 
+     79 86.7799 904 0 0 -0.471778 0.923323 -205.85 
+     79 63.5204 905 0 0 -0.543447 1.05 -206.034 
+Number of digits in this event =  5
 Event: 80
-Number of tracker hits in this event =  2
-     80 151.434 809 2 1 -18.154 -4.49218 -144.613 
-     80 103.343 808 2 1 -18.25 -4.53854 -144.491 
-Number of digits in this event =  2
-Event: 81
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
+Event: 81
+Number of tracker hits in this event =  0
+Number of digits in this event =  2
 Event: 82
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
 Event: 83
-Number of tracker hits in this event =  1
-     83 58.3884 1037 0 0 -23.5956 27.4917 -206.196 
-Number of digits in this event =  1
+Number of tracker hits in this event =  0
+Number of digits in this event =  2
 Event: 84
 Number of tracker hits in this event =  0
-Number of digits in this event =  1
+Number of digits in this event =  2
 Event: 85
-Number of tracker hits in this event =  29
-     85 252.063 902 4 1 0.517671 0.220505 -84.45 
-     85 99.9354 900 4 0 0.534208 0.232347 -85.85 
-     85 114.15 904 3 1 0.889391 0.425371 -114.45 
-     85 140.479 901 3 0 0.91277 0.436864 -115.85 
-     85 144.509 906 2 1 1.40537 0.709108 -144.45 
-     85 150.4 903 2 0 1.43948 0.725121 -145.85 
-     85 118.552 910 1 1 2.14751 1.08473 -174.45 
-     85 444.42 905 1 0 2.18366 1.10092 -175.85 
-     85 116.228 914 0 1 3.0252 1.37177 -204.45 
-     85 198.587 906 0 0 3.05276 1.3977 -205.85 
-     85 7.78763 889 3 0 -153.139 -2.21318 -115.863 
-     85 825.412 132 3 1 -153.719 -1.54462 -114.85 
-     85 220.802 131 3 1 -153.75 -1.509 -114.796 
-     85 107.156 489 13 1 -82.0807 -160.103 185.243 
-     85 110.632 899 5 1 -0.0933361 0.20765 -54.45 
-     85 195.431 900 5 0 -0.0656687 0.205729 -55.85 
-     85 391.515 899 3 0 1.24293 -0.055033 -115.85 
-     85 245.459 915 2 1 3.16332 -1.00019 -144.45 
-     85 122.678 894 2 0 3.24454 -1.07834 -145.85 
-     85 104.099 923 1 1 4.78893 -2.43142 -174.45 
-     85 310.069 887 1 0 4.82427 -2.5223 -175.85 
-     85 130.612 927 0 1 5.48615 -4.44101 -204.45 
-     85 112.264 877 0 0 5.48389 -4.4893 -205.85 
-     85 105.803 907 0 1 1.50963 -3.75903 -204.45 
-     85 3.05014 884 0 0 1.44402 -3.05565 -205.85 
-     85 171.946 885 0 0 1.44324 -3.05 -205.861 
-     85 23.1634 957 0 1 11.6158 -7.11611 -204.45 
-     85 106.76 958 0 1 11.65 -7.10869 -204.516 
-     85 143.912 865 0 0 12.2801 -6.93928 -205.85 
-Number of digits in this event =  18
+Number of tracker hits in this event =  0
+Number of digits in this event =  2
 Event: 86
-Number of tracker hits in this event =  39
-     86 113.26 900 6 1 0.0639534 -0.05 -24.4512 
-     86 46.1515 901 6 1 0.25 -0.185372 -24.7376 
-     86 56.4667 896 6 0 1.04206 -0.75093 -25.85 
-     86 72.7724 895 6 0 1.17886 -0.85 -26.0407 
-     86 16.56 996 5 1 19.4362 -17.0786 -54.45 
-     86 173.234 997 5 1 19.45 -17.0749 -54.5092 
-     86 216.12 818 5 0 20.0976 -16.4289 -55.85 
-     86 43.0135 819 5 0 20.26 -16.25 -56.1364 
-     86 146.366 1122 4 1 44.4981 3.96063 -84.45 
-     86 97.9097 920 4 0 45.0521 4.17732 -85.85 
-     86 184.659 1190 3 1 58.0868 6.20265 -114.45 
-     86 56.5647 920 3 0 59.5504 4.17404 -115.85 
-     86 88.5028 919 3 0 59.6547 4.05 -115.925 
-     86 61.6319 918 3 0 59.811 3.85 -116.043 
-     86 67.021 917 3 0 59.9387 3.65 -116.07 
-     86 95.6679 916 3 0 60.0933 3.45 -116.088 
-     86 120.494 915 3 0 60.3402 3.25 -116.116 
-     86 135.649 914 3 0 60.7425 3.05 -116.193 
-     86 86.8709 899 5 1 -0.0595776 -0.0951548 -54.45 
-     86 96.3175 899 5 0 -0.0528271 -0.0989631 -55.85 
-     86 142.939 900 4 1 0.102015 -0.166915 -84.45 
-     86 109.769 899 4 0 0.100027 -0.171559 -85.85 
-     86 102.251 899 2 1 -0.0514982 -0.512502 -144.45 
-     86 122.876 897 2 0 -0.0691239 -0.518321 -145.85 
-     86 125.142 898 1 1 -0.428912 -0.539529 -174.45 
-     86 115.695 897 1 0 -0.441493 -0.524622 -175.85 
-     86 116.584 896 0 1 -0.672905 -0.134143 -204.45 
-     86 221.897 899 0 0 -0.669157 -0.12256 -205.85 
-     86 311.779 902 1 1 0.546783 -0.329533 -174.45 
-     86 154.523 898 1 0 0.552939 -0.283309 -175.85 
-     86 188.841 902 0 1 0.53015 1.15856 -204.45 
-     86 117.31 906 0 0 0.306485 1.3195 -205.85 
-     86 188.507 1134 3 1 46.9876 -19.0814 -114.676 
-     86 158.949 899 1 0 0.56862 -0.241041 -175.85 
-     86 40.0409 903 0 1 0.684779 1.82716 -204.45 
-     86 113.78 908 0 0 0.425517 1.69194 -205.85 
-     86 5.22832 907 0 0 0.352718 1.65 -206.232 
-     86 69.8101 903 1 1 0.65 -0.355915 -174.623 
-     86 69.7327 904 1 1 0.85 -0.397664 -174.605 
-Number of digits in this event =  17
+Number of tracker hits in this event =  40
+     86 130.852 898 0 1 -0.300856 0.232521 -204.45 
+     86 116.846 900 0 0 -0.321877 0.242141 -205.85 
+     86 106.992 902 2 1 0.476908 -1.05351 -144.45 
+     86 128.338 894 2 0 0.436173 -1.09186 -145.85 
+     86 131.661 899 1 1 -0.202755 -1.85268 -174.45 
+     86 119.469 890 1 0 -0.185466 -1.87724 -175.85 
+     86 188.234 900 0 1 0.144697 -2.3464 -204.45 
+     86 134.359 888 0 0 0.174701 -2.38498 -205.85 
+     86 106.642 1382 3 0 -24.3607 96.6514 -116.25 
+     86 250.787 1381 3 0 -24.5251 96.55 -116.21 
+     86 98.0508 903 1 1 0.822778 -1.49239 -174.45 
+     86 167.289 904 1 1 0.85 -1.48389 -174.502 
+     86 2.2795 905 1 1 1.05 -1.44549 -174.843 
+     86 275.991 892 1 0 1.54441 -1.55015 -175.85 
+     86 19.2844 676 1 0 24.7309 -44.7913 -176.25 
+     86 76.848 675 1 0 24.7443 -44.85 -176.207 
+     86 75.4061 674 1 0 24.7642 -45.05 -176.063 
+     86 54.279 673 1 0 24.7648 -45.25 -176.018 
+     86 50.7576 672 1 0 24.7235 -45.45 -175.985 
+     86 80.2428 671 1 0 24.5946 -45.65 -175.98 
+     86 57.2585 670 1 0 24.5263 -45.85 -175.904 
+     86 60.8632 669 1 0 24.5116 -46.05 -175.908 
+     86 68.8709 668 1 0 24.4282 -46.25 -175.935 
+     86 69.4772 667 1 0 24.3303 -46.45 -175.991 
+     86 50.1953 666 1 0 24.3309 -46.65 -176.054 
+     86 169.039 665 1 0 24.2982 -46.85 -176.062 
+     86 469.097 664 1 0 24.1554 -47.05 -176.025 
+     86 322.669 663 1 0 23.9013 -47.25 -176.074 
+     86 111.647 662 1 0 23.6759 -47.45 -176.088 
+     86 31.308 1010 1 1 22.1083 -47.8744 -174.85 
+     86 119.827 974 0 1 14.9872 -3.40914 -204.45 
+     86 108.063 878 0 0 14.5361 -4.28221 -205.85 
+     86 81.7278 877 0 0 14.432 -4.45 -206.11 
+     86 47.0759 842 0 0 -4.0847 -11.5548 -206.25 
+     86 76.575 841 0 0 -4.18264 -11.65 -206.093 
+     86 40.8669 875 0 1 -4.97903 -12.4824 -204.85 
+     86 91.371 874 0 1 -5.05 -12.559 -204.737 
+     86 22.5905 873 0 1 -5.25 -12.6915 -204.511 
+     86 38.7007 742 1 0 -12.465 -31.6377 -175.859 
+     86 55.4763 741 1 0 -12.4305 -31.65 -175.859 
+Number of digits in this event =  13
 Event: 87
-Number of tracker hits in this event =  5
-     87 381.209 900 0 1 0.176484 0.565769 -204.45 
-     87 285.351 902 0 0 0.238076 0.588073 -205.85 
-     87 28.2929 901 0 0 0.284127 0.45 -206.17 
-     87 5.33856 899 0 1 -0.05 -0.175739 -204.82 
-     87 116.996 899 0 0 -0.0912131 -0.207769 -205.85 
-Number of digits in this event =  3
+Number of tracker hits in this event =  2
+     87 32.9954 1313 2 1 82.6748 66.7911 -144.739 
+     87 41.3001 1118 0 0 6.01438 43.8275 -205.933 
+Number of digits in this event =  2
 Event: 88
-Number of tracker hits in this event =  0
-Number of digits in this event =  1
+Number of tracker hits in this event =  1
+     88 120.94 899 0 0 -0.057919 -0.0591351 -205.85 
+Number of digits in this event =  2
 Event: 89
-Number of tracker hits in this event =  0
+Number of tracker hits in this event =  1
+     89 57.5297 1177 2 0 -140.451 55.5929 -146.03 
 Number of digits in this event =  1
 Event: 90
 Number of tracker hits in this event =  0
 Number of digits in this event =  1
 Event: 91
-Number of tracker hits in this event =  5
-     91 27.1857 803 2 0 60.8408 -19.4298 -145.927 
-     91 2.50263 1206 2 1 61.4426 -19.5781 -144.85 
-     91 103.502 1207 2 1 61.45 -19.5799 -144.837 
-     91 19.038 1208 2 1 61.65 -19.6006 -144.482 
-     91 161.023 929 6 0 -81.5072 6.00212 -26.0048 
-Number of digits in this event =  2
+Number of tracker hits in this event =  2
+     91 83.5756 625 1 1 -54.9603 -80.4013 -174.461 
+     91 9.92034 881 5 0 -38.8878 -3.8142 -56.1714 
+Number of digits in this event =  1
 Event: 92
-Number of tracker hits in this event =  8
-     92 129.683 899 1 1 -0.118679 0.127609 -174.45 
-     92 19.4759 900 1 0 -0.174979 0.052692 -175.85 
-     92 109.275 892 0 1 -1.52172 -1.77328 -204.45 
-     92 87.7051 891 0 0 -1.60825 -1.83731 -205.85 
-     92 35.0424 890 0 0 -1.62586 -1.85 -206.129 
-     92 51.7474 901 0 1 0.447353 -0.090629 -204.45 
-     92 74.4994 902 0 1 0.45 -0.0905956 -204.612 
-     92 124.531 899 0 0 0.470515 -0.0901927 -205.85 
-Number of digits in this event =  3
+Number of tracker hits in this event =  10
+     92 87.0326 899 2 0 0.475381 -0.05 -145.976 
+     92 97.6868 902 1 1 0.601743 -1.70105 -174.45 
+     92 110.787 891 1 0 0.58794 -1.81052 -175.85 
+     92 100.846 902 0 1 0.505388 -3.80648 -204.45 
+     92 105.365 880 0 0 0.531856 -3.93781 -205.85 
+     92 29.4809 1065 0 1 33.1669 33.1846 -204.482 
+     92 446.326 900 2 1 0.0635906 0.120803 -144.45 
+     92 103.451 900 2 0 0.0620241 0.123222 -145.85 
+     92 122.855 900 0 1 0.185338 -0.0752283 -204.45 
+     92 129.147 899 0 0 0.208439 -0.0818495 -205.85 
+Number of digits in this event =  4
 Event: 93
-Number of tracker hits in this event =  74
-     93 112.582 899 4 1 -0.140073 0.0992646 -84.45 
-     93 108.478 900 4 0 -0.188458 0.105649 -85.85 
-     93 116.754 894 3 1 -1.22018 0.211295 -114.45 
-     93 400.481 900 3 0 -1.26959 0.218238 -115.85 
-     93 367.005 888 2 1 -2.31962 0.335464 -144.45 
-     93 282.518 901 2 0 -2.38777 0.360415 -145.85 
-     93 112.783 881 1 1 -3.70912 0.933981 -174.45 
-     93 114.242 904 1 0 -3.77848 0.963456 -175.85 
-     93 380.635 874 0 1 -5.20942 1.37722 -204.45 
-     93 252.812 906 0 0 -5.31083 1.4005 -205.85 
-     93 63.6836 889 2 1 -2.2194 0.435219 -144.45 
-     93 73.2275 890 2 1 -2.05 0.296947 -144.557 
-     93 97.0639 891 2 1 -1.85 0.226104 -144.672 
-     93 11.7883 892 2 1 -1.65 0.0678772 -144.825 
-     93 110.201 900 2 0 0.775379 0.245764 -145.85 
-     93 20.7352 927 2 1 5.58713 3.18452 -144.85 
-     93 85.2324 928 2 1 5.65 3.2239 -144.836 
-     93 104.582 929 2 1 5.85 3.38903 -144.749 
-     93 23.1148 930 2 1 6.05 3.69806 -144.832 
-     93 78.9888 928 2 0 10.1096 5.75158 -145.85 
-     93 90.3888 929 2 0 10.265 5.85 -145.97 
-     93 129.842 930 2 0 10.3781 6.05 -146.077 
-     93 141.978 931 2 0 10.7418 6.25 -146.137 
-     93 248.212 932 2 0 10.8286 6.45 -146.045 
-     93 55.2742 933 2 0 10.5937 6.65 -145.979 
-     93 84.4571 962 2 1 12.515 6.59452 -144.85 
-     93 3.81315 904 2 0 22.8087 1.01321 -145.85 
-     93 57.5517 1026 2 1 25.2565 0.572845 -144.85 
-     93 86.852 902 2 0 -1.87621 0.595846 -145.96 
-     93 139.776 948 1 1 9.66814 -1.96546 -174.45 
-     93 107.413 892 1 0 10.461 -1.53701 -175.85 
-     93 60.5054 893 1 0 10.6433 -1.45 -176.143 
-     93 105.094 1058 0 1 31.7413 4.77484 -204.45 
-     93 39.6406 924 0 0 31.69 5.03052 -205.85 
-     93 101.417 925 0 0 31.6816 5.05 -205.955 
-     93 45.8194 904 0 0 -5.04915 0.894257 -205.85 
-     93 66.6557 903 0 0 -5.04295 0.85 -206.004 
-     93 97.5262 802 0 0 -51.7811 -19.5455 -206.25 
-     93 233.35 801 0 0 -52.0999 -19.65 -206.134 
-     93 70.9799 800 0 0 -52.5984 -19.85 -205.98 
-     93 193.822 627 0 1 -54.4825 -19.9456 -204.85 
-     93 248.13 626 0 1 -54.65 -19.9505 -204.75 
-     93 39.8302 625 0 1 -54.85 -20.2623 -204.511 
-     93 16.0605 628 0 1 -54.45 -20.3165 -204.815 
-     93 115.161 803 0 0 -54.1435 -19.4472 -205.85 
-     93 301.522 804 0 0 -54.1419 -19.25 -205.914 
-     93 7.85435 805 0 0 -54.1383 -19.05 -205.856 
-     93 121.759 887 2 1 -2.45 0.708986 -144.577 
-     93 38.6162 907 2 0 -2.57072 1.57768 -145.85 
-     93 115.659 908 2 0 -2.57967 1.65 -145.956 
-     93 1.68308 909 2 0 -2.59942 1.85 -146.247 
-     93 23.7934 887 1 1 -2.56331 19.3701 -174.45 
-     93 113.04 888 1 1 -2.45 19.3987 -174.453 
-     93 81.6286 889 1 1 -2.25 19.4268 -174.485 
-     93 116.18 890 1 1 -2.05 19.4382 -174.534 
-     93 63.3062 891 1 1 -1.85 19.4375 -174.627 
-     93 52.0273 892 1 1 -1.65 19.4455 -174.715 
-     93 3.78511 893 1 1 -1.45 19.4598 -174.843 
-     93 185.393 996 1 0 -0.109328 19.3588 -175.85 
-     93 52.1427 845 1 0 43.9476 -10.9348 -176.25 
-     93 59.0651 844 1 0 43.9285 -11.05 -176.072 
-     93 407.524 1118 1 1 43.8412 -12.2158 -174.85 
-     93 91.6248 1119 1 1 43.85 -12.622 -174.452 
-     93 118.121 900 4 1 0.0788894 -0.0674174 -84.45 
-     93 105.584 899 4 0 0.125591 -0.0683015 -85.85 
-     93 207.111 905 3 1 1.08068 -0.0744557 -114.45 
-     93 127.337 899 3 0 1.13344 -0.0821015 -115.85 
-     93 112.355 911 2 1 2.3069 -0.217844 -144.45 
-     93 125.567 899 2 0 2.36686 -0.229075 -145.85 
-     93 93.6022 917 1 1 3.61453 -0.381645 -174.45 
-     93 110.295 898 1 0 3.69797 -0.365877 -175.85 
-     93 103.852 927 0 1 5.49156 -0.05 -204.669 
-     93 343.365 899 0 0 5.18915 -0.12349 -205.85 
-     93 132.553 1129 1 0 123.103 45.9932 -175.942 
-Number of digits in this event =  23
+Number of tracker hits in this event =  0
+Number of digits in this event =  1
 Event: 94
-Number of tracker hits in this event =  17
-     94 259.907 907 2 1 1.49287 0.0593186 -144.45 
-     94 3.30806 909 1 1 2.04872 -0.401716 -174.45 
-     94 105.863 910 1 1 2.05 -0.401781 -174.462 
-     94 140.54 898 1 0 2.20725 -0.407315 -175.85 
-     94 105.303 928 0 1 5.76308 -0.131168 -204.45 
-     94 111.959 899 0 0 5.86881 -0.135944 -205.85 
-     94 122.939 900 2 1 0.165069 -0.297969 -144.45 
-     94 106.68 898 2 0 0.178639 -0.31274 -145.85 
-     94 181.506 901 1 1 0.444528 -0.576339 -174.45 
-     94 30.4308 902 1 1 0.45 -0.579159 -174.757 
-     94 127.818 897 1 0 0.468394 -0.588166 -175.85 
-     94 116.706 904 0 1 0.951487 -0.828842 -204.45 
-     94 115.736 896 0 0 0.970504 -0.84164 -205.85 
-     94 357.372 173 6 0 -160.183 -145.47 -26.25 
-     94 164.292 237 8 1 -132.637 -117.897 35.2332 
-     94 105.688 238 8 1 -132.55 -117.989 35.4968 
-     94 232.989 1165 0 1 53.2249 16.276 -204.45 
-Number of digits in this event =  10
+Number of tracker hits in this event =  9
+     94 137.014 899 2 1 -0.106831 -0.133365 -144.45 
+     94 116.098 899 2 0 -0.0878921 -0.128013 -145.85 
+     94 288.984 906 0 1 1.2975 -0.0978079 -204.45 
+     94 298.762 899 0 0 1.34357 -0.111592 -205.85 
+     94 424.914 900 1 0 -0.0581409 0.122523 -175.85 
+     94 105.941 897 0 1 -0.471751 -0.0779203 -204.45 
+     94 3.15341 842 3 0 -39.102 -11.645 -116.25 
+     94 54.2434 841 3 0 -39.1079 -11.65 -116.245 
+     94 95.5025 1131 1 1 46.268 62.7236 -174.506 
+Number of digits in this event =  6
 Event: 95
-Number of tracker hits in this event =  2
-     95 49.4049 902 1 1 0.609373 -51.2816 -174.595 
-     95 43.5192 903 1 1 0.65 -51.2572 -174.532 
-Number of digits in this event =  2
+Number of tracker hits in this event =  16
+     95 130.574 900 2 1 0.159711 0.152577 -144.45 
+     95 149.962 900 2 0 0.173553 0.16799 -145.85 
+     95 134.976 902 1 1 0.504487 0.488271 -174.45 
+     95 129.362 902 1 0 0.513567 0.508527 -175.85 
+     95 101.046 903 0 1 0.701489 0.925501 -204.45 
+     95 141.768 904 0 0 0.711371 0.951356 -205.85 
+     95 26.8211 1584 6 0 55.7235 137.07 -25.9268 
+     95 114.805 899 3 0 -0.106399 -0.185152 -115.85 
+     95 123.177 889 2 1 -2.09353 -3.92288 -144.45 
+     95 133.676 879 2 0 -2.12319 -4.0694 -145.85 
+     95 78.0788 885 1 1 -3.02377 -7.44238 -174.45 
+     95 35.5382 884 1 1 -3.05 -7.47695 -174.707 
+     95 26.4648 862 1 0 -3.19899 -7.63803 -175.85 
+     95 92.6332 861 1 0 -3.21036 -7.65 -175.934 
+     95 170.474 863 0 1 -7.28733 -11.8553 -204.45 
+     95 125.734 839 0 0 -7.50984 -12.1551 -205.85 
+Number of digits in this event =  10
 Event: 96
-Number of tracker hits in this event =  0
-Number of digits in this event =  1
+Number of tracker hits in this event =  1
+     96 55.9297 1203 8 0 149.526 60.6929 34.0211 
+Number of digits in this event =  2
 Event: 97
-Number of tracker hits in this event =  17
-     97 23.4732 902 3 1 0.645639 -0.0960833 -114.45 
-     97 84.4773 903 3 1 0.65 -0.0958202 -114.546 
-     97 186.649 899 3 0 0.71435 -0.0966252 -115.85 
-     97 127.018 911 2 1 2.32988 -0.204148 -144.45 
-     97 208.713 899 2 0 2.41541 -0.214779 -145.85 
-     97 12.9326 920 1 1 4.24799 -0.496012 -174.45 
-     97 173.038 921 1 1 4.25 -0.496626 -174.499 
-     97 117.621 897 1 0 4.30049 -0.51311 -175.85 
-     97 109.977 927 0 1 5.47174 -0.722933 -204.45 
-     97 112.317 896 0 0 5.52084 -0.74546 -205.85 
-     97 102.577 325 0 0 14.3754 -114.981 -205.953 
-     97 132.827 899 2 1 -0.0591113 0.382153 -144.45 
-     97 115.407 901 2 0 -0.0636356 0.394891 -145.85 
-     97 138.619 899 1 1 -0.146672 0.677748 -174.45 
-     97 124.685 903 1 0 -0.13791 0.681509 -175.85 
-     97 102.531 900 0 1 0.0578334 0.728945 -204.45 
-     97 124.476 903 0 0 0.0720646 0.740915 -205.85 
-Number of digits in this event =  9
+Number of tracker hits in this event =  39
+     97 189.482 898 3 1 -0.325188 0.874819 -114.45 
+     97 140.555 903 3 0 -0.346945 0.696441 -115.85 
+     97 10.0661 902 3 0 -0.35433 0.65 -116.213 
+     97 114.548 890 2 1 -1.86733 -1.81786 -144.45 
+     97 23.2578 893 2 0 -1.8423 -1.28905 -145.85 
+     97 107.536 894 2 0 -1.84139 -1.25 -145.952 
+     97 199.127 900 1 1 0.154032 12.772 -174.45 
+     97 150.994 901 1 1 0.25 12.8773 -174.794 
+     97 139.601 966 1 0 0.601203 13.2913 -175.85 
+     97 120.521 937 0 1 7.45893 23.7032 -204.45 
+     97 71.6201 938 0 1 7.65 23.8466 -204.686 
+     97 126.507 1023 0 0 8.61372 24.6565 -205.85 
+     97 89.9888 1024 0 0 8.85509 24.85 -206.106 
+     97 124.597 899 2 1 -0.0903015 -0.339426 -144.45 
+     97 137.777 898 2 0 -0.0980596 -0.346066 -145.85 
+     97 202.181 898 1 1 -0.265812 -0.5442 -174.45 
+     97 139.727 897 1 0 -0.271119 -0.548182 -175.85 
+     97 113.801 898 0 1 -0.390423 -0.610239 -204.45 
+     97 128.207 897 0 0 -0.391745 -0.601199 -205.85 
+     97 55.3755 970 0 0 28.5853 14.0825 -206.087 
+     97 38.4642 890 1 1 -1.90885 -9.44063 -174.45 
+     97 195.833 891 1 1 -1.85 -9.30761 -174.473 
+     97 92.0636 892 1 1 -1.65 -8.87931 -174.621 
+     97 92.1667 893 1 1 -1.45 -8.71354 -174.706 
+     97 150.361 894 1 1 -1.25 -8.60186 -174.717 
+     97 94.0131 895 1 1 -1.05 -8.44373 -174.709 
+     97 85.7521 896 1 1 -0.85 -8.19434 -174.668 
+     97 199.588 897 1 1 -0.65 -7.97907 -174.594 
+     97 25.0772 899 1 1 -0.25 -7.5532 -174.456 
+     97 18.8563 902 1 1 0.45 -7.89778 -174.803 
+     97 18.0132 852 1 0 2.74546 -9.62407 -175.85 
+     97 80.8005 851 1 0 2.77941 -9.65 -175.865 
+     97 165.968 850 1 0 2.9141 -9.85 -175.929 
+     97 167.759 849 1 0 2.97235 -10.05 -175.88 
+     97 211.006 848 1 0 3.16771 -10.25 -175.92 
+     97 78.6626 847 1 0 3.76224 -10.45 -176.032 
+     97 91.3929 846 1 0 3.75533 -10.65 -176.064 
+     97 275.849 845 1 0 3.75705 -10.85 -175.961 
+     97 31.7041 608 8 0 -157.66 -58.3258 33.8778 
+Number of digits in this event =  21
 Event: 98
-Number of tracker hits in this event =  0
+Number of tracker hits in this event =  1
+     98 4.72802 1647 4 1 149.657 -59.8344 -84.4928 
 Number of digits in this event =  1
 Event: 99
-Number of tracker hits in this event =  25
-     99 124.441 898 1 1 -0.35177 0.327081 -174.45 
-     99 178.593 901 1 0 -0.36556 0.342639 -175.85 
-     99 106.178 896 0 1 -0.664513 0.662857 -204.45 
-     99 185.79 903 0 0 -0.687793 0.657541 -205.85 
-     99 258.503 827 2 0 -147.361 -14.4569 -146.25 
-     99 79.8303 826 2 0 -147.913 -14.65 -146.003 
-     99 159.444 159 2 1 -148.228 -15.3142 -144.85 
-     99 137.563 160 2 1 -148.15 -15.1829 -144.678 
-     99 71.2305 621 0 0 -95.8239 -55.8002 -206.17 
-     99 256.241 622 0 0 -95.7968 -55.65 -206.242 
-     99 141.258 987 4 0 12.5554 17.4552 -86.25 
-     99 46.6047 899 2 1 -0.135753 0.05 -144.672 
-     99 113.708 900 2 0 -0.119111 0.0704562 -145.85 
-     99 179.716 900 1 1 0.214527 0.559474 -174.45 
-     99 152.379 902 1 0 0.238373 0.56711 -175.85 
-     99 132.664 904 0 1 0.905324 0.579984 -204.45 
-     99 128.735 902 0 0 0.938602 0.55018 -205.85 
-     99 120.301 899 3 0 0.381506 -0.11804 -115.85 
-     99 108.173 947 2 1 9.59389 -1.15318 -144.45 
-     99 268.333 895 2 0 9.30925 -1.03606 -145.85 
-     99 5.42747 904 1 1 1.03767 1.46764 -174.45 
-     99 121.97 905 1 1 1.05 1.47322 -174.47 
-     99 16.1477 906 1 1 1.25 1.55652 -174.791 
-     99 11.8388 908 1 0 1.87357 1.84001 -175.85 
-     99 139.592 909 1 0 1.89532 1.85 -175.887 
-Number of digits in this event =  17
+Number of tracker hits in this event =  24
+     99 255.262 899 3 1 -0.169344 -0.0636326 -114.45 
+     99 96.2432 899 3 0 -0.174281 -0.0576478 -115.85 
+     99 124.518 898 2 1 -0.423865 0.142792 -144.45 
+     99 122.192 900 2 0 -0.443386 0.152629 -145.85 
+     99 99.709 896 1 1 -0.839301 0.359766 -174.45 
+     99 117.516 901 1 0 -0.849736 0.305383 -175.85 
+     99 21.2961 895 0 1 -1.04984 -0.827245 -204.45 
+     99 108.093 894 0 1 -1.05 -0.828805 -204.52 
+     99 120.545 895 0 0 -1.0512 -0.85405 -205.85 
+     99 180.201 897 0 1 -0.589545 -0.144811 -204.45 
+     99 187.97 903 0 0 -0.200647 0.666973 -205.85 
+     99 20.7053 904 0 0 -0.111289 0.85 -206.187 
+     99 208.839 899 0 0 -0.605752 -0.176747 -205.85 
+     99 98.3787 902 3 1 0.454219 -0.778971 -114.45 
+     99 213.197 895 3 0 0.471609 -0.861846 -115.85 
+     99 105.105 904 2 1 0.93077 -2.54598 -144.45 
+     99 139.891 887 2 0 0.939157 -2.61349 -145.85 
+     99 125.958 905 1 1 1.1545 -4.10828 -174.45 
+     99 94.6133 879 1 0 1.22649 -4.22341 -175.85 
+     99 19.6544 878 1 0 1.24311 -4.25 -176.175 
+     99 15.8773 912 0 1 2.64795 -6.53654 -204.45 
+     99 108.398 913 0 1 2.65 -6.54063 -204.485 
+     99 117.853 866 0 0 2.73093 -6.69881 -205.85 
+     99 248.655 411 0 1 -97.7553 83.6291 -204.743 
+Number of digits in this event =  13
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=4.09s Real=4.11s Sys=0.01s
+  User=3.26s Real=3.28s Sys=0s
 End of Run 1
 /gun/particle e-
 /gun/energy 1 GeV
@@ -3947,2844 +3554,2930 @@ Cannot set FirstId as its value was already used.
 
  done
 Event: 0
-Number of tracker hits in this event =  10
-      0 122.818 901 4 1 0.433171 -0.122054 -84.45 
-      0 518.237 899 4 0 0.434473 -0.134937 -85.85 
-      0 160.951 901 3 1 0.44624 -0.418653 -114.45 
-      0 143.196 898 3 0 0.431428 -0.432116 -115.85 
-      0 151.294 900 2 1 0.100611 -0.707947 -144.45 
-      0 119.773 896 2 0 0.0867265 -0.705 -145.85 
-      0 126.946 899 1 1 -0.130917 -0.614046 -174.45 
-      0 134.234 897 1 0 -0.129351 -0.611449 -175.85 
-      0 500.313 899 0 1 -0.101247 -0.581839 -204.45 
-      0 122.341 897 0 0 -0.121662 -0.562073 -205.85 
-Number of digits in this event =  10
+Number of tracker hits in this event =  54
+      0 124.454 901 4 1 0.442675 -0.0943312 -84.45 
+      0 301.936 899 4 0 0.454345 -0.0945886 -85.85 
+      0 200.477 903 3 1 0.677391 -0.101971 -114.45 
+      0 125.254 899 3 0 0.689478 -0.106006 -115.85 
+      0 161.653 904 2 1 0.910446 -0.17583 -144.45 
+      0 126.235 899 2 0 0.918174 -0.172765 -145.85 
+      0 535.51 905 1 1 1.05572 -0.0830246 -174.45 
+      0 278.323 899 1 0 1.05529 -0.081917 -175.85 
+      0 123.098 904 0 1 1.02975 -0.106038 -204.45 
+      0 264.66 899 0 0 1.0266 -0.105789 -205.85 
+      0 137.219 904 3 1 0.85 0.148791 -114.751 
+      0 136.375 901 3 0 1.60264 0.346779 -115.85 
+      0 156.642 902 3 0 1.62034 0.45 -115.945 
+      0 197.329 900 1 0 1.17929 0.080506 -175.85 
+      0 56.1794 911 0 1 2.34569 2.02918 -204.45 
+      0 58.5484 910 0 1 2.25 2.04645 -204.669 
+      0 62.9427 910 0 0 1.34938 2.21887 -205.85 
+      0 105.652 911 0 0 1.18229 2.25 -206.063 
+      0 141.771 898 0 0 -48.2363 -0.383631 -206.25 
+      0 98.7934 897 0 0 -48.6351 -0.45 -206.019 
+      0 85.5875 648 0 1 -50.3914 -0.635763 -204.85 
+      0 70.2676 647 0 1 -50.45 -0.641928 -204.81 
+      0 212.457 646 0 1 -50.65 -0.661167 -204.699 
+      0 42.1109 645 0 1 -50.85 -0.537701 -204.509 
+      0 22.7398 644 0 1 -51.1723 -0.344407 -204.45 
+      0 70.4213 643 0 1 -51.25 -0.329676 -204.47 
+      0 63.1795 642 0 1 -51.45 -0.278119 -204.48 
+      0 54.1322 641 0 1 -51.65 -0.279106 -204.499 
+      0 68.3879 640 0 1 -51.85 -0.259513 -204.504 
+      0 56.4988 639 0 1 -52.05 -0.234508 -204.531 
+      0 197.692 638 0 1 -52.25 -0.178382 -204.555 
+      0 28.1097 637 0 1 -52.45 -0.0945943 -204.573 
+      0 34.0784 636 0 1 -52.7165 0.05 -204.6 
+      0 61.4655 635 0 1 -52.85 0.0898363 -204.618 
+      0 220.038 634 0 1 -53.05 0.180197 -204.625 
+      0 169.118 633 0 1 -53.25 0.275409 -204.627 
+      0 237.164 632 0 1 -53.45 0.404802 -204.646 
+      0 38.0119 917 0 0 -53.2308 3.54417 -205.85 
+      0 74.1539 918 0 0 -53.2317 3.65 -205.893 
+      0 80.5366 919 0 0 -53.2732 3.85 -205.972 
+      0 134.94 920 0 0 -53.1581 4.05 -206.19 
+      0 101.076 921 0 0 -53.1885 4.25 -206.2 
+      0 112.475 922 0 0 -53.0406 4.45 -206.115 
+      0 77.9176 923 0 0 -52.794 4.65 -206.179 
+      0 24.8345 924 0 0 -52.7209 4.85 -206.217 
+      0 218.781 1123 0 0 -43.075 44.7449 -206.25 
+      0 100.755 909 0 1 1.9233 -0.138803 -204.45 
+      0 126.633 901 3 1 0.434271 0.128068 -114.493 
+      0 190.895 902 3 1 0.45 0.195887 -114.659 
+      0 16.1041 286 6 0 -28.8564 -122.782 -25.8928 
+      0 215.214 758 6 1 -28.2588 -124.274 -24.85 
+      0 47.242 759 6 1 -28.25 -124.298 -24.8241 
+      0 216.824 939 2 0 -112.961 8.01737 -146.25 
+      0 49.8892 940 2 0 -113.017 8.05 -146.184 
+Number of digits in this event =  28
 Event: 1
-Number of tracker hits in this event =  10
-      1 152.786 899 4 1 -0.113394 0.0550191 -84.45 
-      1 141.824 900 4 0 -0.114064 0.0571516 -85.85 
-      1 123.855 899 3 1 -0.0884518 0.125454 -114.45 
-      1 112.382 900 3 0 -0.0796098 0.125798 -115.85 
-      1 110.809 900 2 1 0.135045 0.112689 -144.45 
-      1 104.845 900 2 0 0.149931 0.12754 -145.85 
-      1 141.994 901 1 1 0.44195 0.422954 -174.45 
-      1 103.169 901 1 0 0.437886 0.437755 -175.85 
-      1 107.579 901 0 1 0.379621 0.674713 -204.45 
-      1 118.814 903 0 0 0.364687 0.680386 -205.85 
-Number of digits in this event =  5
+Number of tracker hits in this event =  30
+      1 117.951 891 5 1 -1.72165 -1.72079 -54.45 
+      1 7.3677 892 5 0 -1.90118 -1.45621 -55.85 
+      1 115.06 893 5 0 -1.90534 -1.45 -55.8849 
+      1 122.861 872 4 1 -5.5434 3.17913 -84.45 
+      1 117.427 916 4 0 -5.84713 3.35663 -85.85 
+      1 133.711 843 3 1 -11.2556 7.07498 -114.45 
+      1 111.77 936 3 0 -11.609 7.27125 -115.85 
+      1 146.421 804 2 1 -19.1052 11.2381 -144.45 
+      1 28.3306 803 2 1 -19.25 10.8652 -144.774 
+      1 98.4406 947 2 0 -19.5302 9.5788 -145.85 
+      1 65.8782 946 2 0 -19.5585 9.45 -145.959 
+      1 74.8297 945 2 0 -19.6257 9.25 -146.101 
+      1 11.7677 944 2 0 -19.7091 9.05 -146.228 
+      1 5.46425 706 1 1 -38.6557 -33.4161 -174.45 
+      1 103.695 707 1 1 -38.65 -33.4165 -174.467 
+      1 155.146 731 1 0 -38.4685 -33.6536 -175.85 
+      1 156.382 704 0 1 -39.165 -43.8575 -204.45 
+      1 28.5449 676 0 0 -38.9286 -44.7842 -205.85 
+      1 365.275 675 0 0 -38.9165 -44.85 -205.945 
+      1 0.180036 674 0 0 -38.8328 -45.05 -206.249 
+      1 102.398 586 0 0 -27.7793 -62.6794 -206.25 
+      1 25.1758 585 0 0 -27.6613 -62.85 -205.935 
+      1 27.1008 764 0 1 -27.0949 -63.1996 -204.85 
+      1 123.232 765 0 1 -27.05 -63.2277 -204.765 
+      1 15.9176 766 0 1 -26.85 -63.3425 -204.505 
+      1 21.3248 361 1 0 -6.1065 -107.879 -176.25 
+      1 126.812 360 1 0 -6.07368 -107.95 -176.205 
+      1 75.5325 359 1 0 -5.99487 -108.15 -176.14 
+      1 76.4074 358 1 0 -5.84043 -108.35 -176.082 
+      1 55.4792 357 1 0 -5.6854 -108.55 -176.14 
+Number of digits in this event =  10
 Event: 2
-Number of tracker hits in this event =  22
-      2 228.32 900 5 1 0.11844 0.31327 -54.45 
-      2 114.324 901 5 0 0.122007 0.320735 -55.85 
-      2 144.017 900 4 1 0.215313 0.51032 -84.45 
-      2 123.381 902 4 0 0.226703 0.520407 -85.85 
-      2 72.2403 901 3 1 0.448156 0.723721 -114.45 
-      2 34.9719 902 3 1 0.45 0.726006 -114.69 
-      2 135.57 903 3 0 0.459266 0.738789 -115.85 
-      2 123.664 903 2 1 0.659427 1.04892 -144.45 
-      2 151.743 905 2 0 0.686642 1.06523 -145.85 
-      2 112.7 905 1 1 1.21789 1.38294 -174.45 
-      2 148.461 906 1 0 1.23671 1.40812 -175.85 
-      2 125.597 907 0 1 1.59843 1.9272 -204.45 
-      2 124.745 909 0 0 1.6189 1.95543 -205.85 
-      2 21.5359 93 6 1 -161.52 -46.1842 -24.8129 
-      2 264.428 92 6 1 -161.55 -46.1876 -24.7713 
-      2 6.48688 1163 1 1 52.8416 -11.3906 -174.618 
-      2 155.275 1164 1 1 52.85 -11.3934 -174.599 
-      2 135.151 1165 1 1 53.05 -11.4739 -174.484 
-      2 10.5366 1503 0 0 7.09991 120.773 -206.248 
-      2 47.4602 1766 0 0 40.0917 173.409 -206.25 
-      2 2.3008 1508 0 0 55.2576 121.832 -206.25 
-      2 0.51503 1662 0 0 3.89803 152.714 -206.25 
-Number of digits in this event =  14
+Number of tracker hits in this event =  27
+      2 138.915 900 5 1 0.122955 -0.201771 -54.45 
+      2 142.639 899 5 0 0.135993 -0.205596 -55.85 
+      2 138.405 901 4 1 0.404159 -0.282138 -84.45 
+      2 152.961 898 4 0 0.42705 -0.265402 -85.85 
+      2 244.359 905 3 1 1.0757 0.263042 -114.45 
+      2 95.3129 901 3 0 1.10042 0.351156 -115.85 
+      2 106.407 907 2 1 1.47737 2.17138 -144.45 
+      2 128.489 911 2 0 1.46176 2.28963 -145.85 
+      2 116.303 903 1 1 0.803278 4.88667 -174.45 
+      2 120.978 924 1 0 0.770954 4.97796 -175.85 
+      2 115.788 897 2 0 1.22176 -0.608166 -146.089 
+      2 106.972 907 1 1 1.54533 -0.744767 -174.45 
+      2 210.694 896 1 0 1.57388 -0.751769 -175.85 
+      2 308.051 910 0 1 2.05023 -0.989603 -204.45 
+      2 149.898 895 0 0 2.06931 -0.995927 -205.85 
+      2 405.607 906 1 1 1.41736 -0.318752 -174.45 
+      2 117.178 897 1 0 1.40742 -0.496545 -175.85 
+      2 106.95 906 0 1 1.27943 -4.39271 -204.45 
+      2 10.1098 877 0 0 1.29135 -4.64271 -205.85 
+      2 110.735 876 0 0 1.29171 -4.65 -205.891 
+      2 127.746 898 1 0 1.41981 -0.274388 -175.85 
+      2 169.241 907 0 1 1.57655 0.455437 -204.45 
+      2 112.619 902 0 0 1.59293 0.48306 -205.85 
+      2 34.6613 1166 2 0 133.037 53.289 -146.148 
+      2 115.262 1165 2 0 133.064 53.25 -146.142 
+      2 227.327 908 1 1 1.68605 -0.713215 -174.45 
+      2 114.194 899 0 0 2.11955 -0.201886 -205.85 
+Number of digits in this event =  16
 Event: 3
-Number of tracker hits in this event =  10
-      3 117.506 900 5 1 0.122707 -0.0840868 -54.45 
-      3 381.091 899 5 0 0.11665 -0.0871602 -55.85 
-      3 93.1479 899 3 1 -0.112162 -0.382789 -114.45 
-      3 129.512 898 3 0 -0.113277 -0.390357 -115.85 
-      3 270.78 899 2 1 -0.156102 -0.575528 -144.45 
-      3 146.544 897 2 0 -0.150557 -0.604149 -145.85 
-      3 112.304 902 0 1 0.496608 -1.75127 -204.45 
-      3 130.266 891 0 0 0.522528 -1.78759 -205.85 
-      3 231.932 899 0 1 -0.229389 -1.00136 -204.45 
-      3 263.37 895 0 0 -0.231918 -1.01537 -205.85 
+Number of tracker hits in this event =  14
+      3 211.793 900 5 1 0.196285 -0.170202 -54.45 
+      3 118.959 899 5 0 0.20953 -0.174179 -55.85 
+      3 118.083 901 4 1 0.445946 -0.274875 -84.45 
+      3 135.446 898 4 0 0.443591 -0.281689 -85.85 
+      3 147.329 901 3 1 0.380329 -0.419449 -114.45 
+      3 111.014 898 3 0 0.373302 -0.432861 -115.85 
+      3 298.858 901 2 1 0.268125 -0.668094 -144.45 
+      3 97.3178 896 2 0 0.255686 -0.689054 -145.85 
+      3 1.55373 899 1 1 -0.05 -1.12409 -174.844 
+      3 115.188 894 1 0 -0.0634458 -1.14104 -175.85 
+      3 140.419 898 0 1 -0.421297 -1.56599 -204.45 
+      3 133.461 892 0 0 -0.435329 -1.58758 -205.85 
+      3 14.3454 903 2 1 0.752415 -0.46952 -144.834 
+      3 130.224 900 2 0 0.670058 0.0520198 -145.85 
 Number of digits in this event =  8
 Event: 4
-Number of tracker hits in this event =  9
-      4 139.209 899 4 1 -0.0846611 -0.207612 -84.45 
-      4 116.001 899 4 0 -0.0800332 -0.213093 -85.85 
-      4 148.352 901 2 1 0.363523 -0.337947 -144.45 
-      4 128.084 898 2 0 0.378949 -0.336531 -145.85 
-      4 108.645 903 1 1 0.672534 -0.339038 -174.45 
-      4 142.107 898 1 0 0.709272 -0.33937 -175.85 
-      4 174.779 907 0 1 1.47933 -0.352292 -204.45 
-      4 142.707 898 0 0 1.50485 -0.361837 -205.85 
-      4 35.6611 277 2 1 -124.626 96.0835 -144.679 
-Number of digits in this event =  7
-Event: 5
-Number of tracker hits in this event =  25
-      5 26.7883 899 5 1 -0.115895 0.05 -54.8068 
-      5 112.613 900 5 0 -0.120793 0.058688 -55.85 
-      5 104.296 898 4 1 -0.272526 0.356687 -84.45 
-      5 177.05 901 4 0 -0.285296 0.374958 -85.85 
-      5 141.404 897 3 1 -0.556309 0.745538 -114.45 
-      5 89.8036 903 3 0 -0.554634 0.773693 -115.85 
-      5 101.149 897 2 1 -0.514955 1.37081 -144.45 
-      5 98.1205 906 2 0 -0.519375 1.39569 -145.85 
-      5 331.086 897 1 1 -0.598857 1.88248 -174.45 
-      5 145.168 909 1 0 -0.60754 1.91844 -175.85 
-      5 116.644 896 0 1 -0.776714 2.61177 -204.45 
-      5 86.3308 912 0 0 -0.782623 2.64348 -205.85 
-      5 26.7346 913 0 0 -0.784003 2.65 -206.14 
-      5 9.50059 1025 0 0 -1.6955 25.1548 -206.019 
-      5 271.175 899 2 1 -0.05 -0.122418 -144.622 
-      5 328.636 899 2 0 -0.0735702 -0.185994 -145.85 
-      5 101.303 891 1 0 -0.522198 -1.77256 -175.85 
-      5 127.781 898 0 1 -0.43199 -4.86434 -204.45 
-      5 92.9823 875 0 0 -0.461881 -4.96081 -205.85 
-      5 152.252 872 1 1 -5.45646 -0.340673 -174.45 
-      5 50.4127 899 1 0 -5.69234 -0.0847239 -175.85 
-      5 28.4411 844 0 1 -11.2251 5.26772 -204.45 
-      5 104.154 843 0 1 -11.25 5.28266 -204.547 
-      5 107.193 927 0 0 -11.5753 5.50025 -205.85 
-      5 237.904 900 2 1 0.05 0.223914 -144.768 
+Number of tracker hits in this event =  13
+      4 151.836 898 2 1 -0.351219 0.259575 -144.45 
+      4 129.863 901 2 0 -0.355917 0.265915 -145.85 
+      4 156.218 898 1 1 -0.439726 0.384364 -174.45 
+      4 109.33 901 1 0 -0.403154 0.349334 -175.85 
+      4 148.585 901 0 1 0.314706 -0.343907 -204.45 
+      4 385.401 898 0 0 0.36163 -0.394442 -205.85 
+      4 103.399 897 0 0 1.51829 -0.45 -206.132 
+      4 75.5271 896 0 0 1.61289 -0.65 -206.115 
+      4 99.2981 895 0 0 1.7198 -0.85 -206.055 
+      4 245.8 906 0 1 1.39256 -1.12893 -204.85 
+      4 313.291 907 0 1 1.45 -1.26865 -204.637 
+      4 166.505 908 0 1 1.65 -1.32198 -204.6 
+      4 33.2402 284 3 1 -123.15 68.6319 -114.815 
 Number of digits in this event =  10
+Event: 5
+Number of tracker hits in this event =  37
+      5 158.415 900 5 1 0.0643392 0.0536114 -54.45 
+      5 121.282 900 5 0 0.073519 0.0564585 -55.85 
+      5 164.391 900 4 1 0.238874 0.118013 -84.45 
+      5 135.889 900 4 0 0.250904 0.115622 -85.85 
+      5 395.21 902 3 1 0.483094 0.0795586 -114.45 
+      5 637.712 900 3 0 0.518507 0.0705751 -115.85 
+      5 229.306 906 2 1 1.3146 -0.0698903 -144.45 
+      5 228.675 899 2 0 1.37749 -0.101016 -145.85 
+      5 109.734 912 1 1 2.47049 -1.01419 -174.45 
+      5 237.224 894 1 0 2.48708 -1.0559 -175.85 
+      5 19.4295 912 0 1 2.64631 -2.00149 -204.45 
+      5 89.606 913 0 1 2.65 -2.00306 -204.521 
+      5 131.19 890 0 0 2.71385 -2.03126 -205.85 
+      5 110.359 898 2 0 1.46321 -0.309051 -145.85 
+      5 246.623 909 1 1 2.04251 -0.748972 -174.45 
+      5 205.961 896 1 0 2.05158 -0.804614 -175.85 
+      5 115.659 911 0 1 2.40215 -1.79919 -204.45 
+      5 112.099 891 0 0 2.4371 -1.81603 -205.85 
+      5 170.247 910 1 1 2.05 -0.940035 -174.761 
+      5 177.843 889 1 0 2.25331 -2.11185 -175.85 
+      5 248.524 901 3 1 0.353053 0.183636 -114.45 
+      5 266.53 905 1 1 1.07408 -0.296575 -174.45 
+      5 17.0569 917 0 1 3.48627 4.6577 -204.45 
+      5 232.725 916 0 1 3.45 4.69194 -204.523 
+      5 113.067 926 0 0 2.84804 5.25135 -205.85 
+      5 151.606 896 2 1 -0.680161 1.78335 -144.45 
+      5 142.988 909 2 0 -0.75441 1.96429 -145.85 
+      5 140.761 888 1 1 -2.29302 5.41556 -174.45 
+      5 105.931 927 1 0 -2.40911 5.55021 -175.85 
+      5 113.988 876 0 1 -4.76251 8.27088 -204.45 
+      5 163.311 942 0 0 -4.8693 8.47183 -205.85 
+      5 104.173 903 2 1 0.674372 -0.135035 -144.45 
+      5 103.69 899 1 0 2.17916 -0.0665735 -175.85 
+      5 110.285 920 0 1 4.21001 0.343177 -204.45 
+      5 116.813 901 0 0 4.31192 0.334486 -205.85 
+      5 49.4987 760 1 1 -27.8962 -42.8808 -174.671 
+      5 98.4442 761 1 1 -27.85 -42.9028 -174.655 
+Number of digits in this event =  23
 Event: 6
-Number of tracker hits in this event =  19
-      6 113.923 899 4 1 -0.185907 -0.0842535 -84.45 
-      6 126.694 899 4 0 -0.199013 -0.0904542 -85.85 
-      6 107.307 897 3 1 -0.452438 -0.209234 -114.45 
-      6 89.1957 899 3 0 -0.470594 -0.206121 -115.85 
-      6 99.808 896 2 1 -0.826209 -0.170091 -144.45 
-      6 120.887 899 2 0 -0.839019 -0.166369 -145.85 
-      6 233.323 894 1 1 -1.09047 -0.0990989 -174.45 
-      6 124.094 899 1 0 -1.11471 -0.0991858 -175.85 
-      6 301.352 892 0 1 -1.62174 -0.0790859 -204.45 
-      6 160.267 899 0 0 -1.64923 -0.0757835 -205.85 
-      6 59.2762 895 1 1 -1.05 -0.280269 -174.766 
-      6 92.0414 900 1 0 0.383991 0.123648 -175.85 
-      6 78.6837 901 1 0 0.560059 0.25 -176.035 
-      6 59.2353 902 1 0 0.699387 0.45 -176.126 
-      6 52.9877 903 1 0 0.840718 0.65 -176.175 
-      6 116.898 904 1 0 0.878759 0.85 -176.147 
-      6 102.567 905 1 0 0.875268 1.05 -176.082 
-      6 13.2031 906 1 0 0.823374 1.25 -175.898 
-      6 226.653 903 1 1 0.704281 1.74292 -174.85 
-Number of digits in this event =  8
+Number of tracker hits in this event =  36
+      6 125.872 900 5 1 0.0555752 0.127648 -54.45 
+      6 370.949 898 4 1 -0.27747 0.120396 -84.45 
+      6 116.764 900 4 0 -0.296491 0.11522 -85.85 
+      6 212.614 893 2 1 -1.36056 0.240973 -144.45 
+      6 126.255 901 2 0 -1.36385 0.268145 -145.85 
+      6 118.955 893 1 1 -1.38578 0.800528 -174.45 
+      6 116.286 903 1 0 -1.39262 0.826417 -175.85 
+      6 121.135 892 0 1 -1.47481 1.37237 -204.45 
+      6 135.269 906 0 0 -1.4721 1.40662 -205.85 
+      6 241.107 901 2 1 0.34584 0.946338 -144.45 
+      6 104.869 905 2 0 0.270087 1.07412 -145.85 
+      6 6.08894 895 1 1 -0.853862 2.65465 -174.45 
+      6 114.588 896 1 1 -0.85 2.66008 -174.466 
+      6 269.725 915 1 0 -0.44653 3.17912 -175.85 
+      6 81.5859 916 1 0 -0.391058 3.25 -176.03 
+      6 60.3725 956 0 1 11.4206 16.7404 -204.45 
+      6 77.8711 957 0 1 11.45 16.7719 -204.616 
+      6 162.861 984 0 0 11.8574 16.8659 -205.85 
+      6 95.5043 904 0 1 0.911282 44.3684 -204.704 
+      6 103.238 903 0 1 0.85 44.4082 -204.68 
+      6 7.57279 902 2 0 0.0543374 0.639428 -145.85 
+      6 118.322 861 1 1 -7.79891 -4.3342 -174.45 
+      6 204.118 860 1 1 -7.85 -4.28475 -174.452 
+      6 85.68 859 1 1 -8.05 -4.11677 -174.511 
+      6 67.6681 858 1 1 -8.25 -4.08007 -174.531 
+      6 80.5768 857 1 1 -8.45 -4.03195 -174.638 
+      6 69.1394 856 1 1 -8.65 -4.03905 -174.705 
+      6 14.3815 882 1 0 -9.81896 -3.46983 -175.85 
+      6 89.6933 883 1 0 -9.85306 -3.45 -175.883 
+      6 158.111 884 1 0 -10.0047 -3.25 -176.025 
+      6 109.785 885 1 0 -10.4199 -3.05 -176.046 
+      6 75.2634 886 1 0 -10.6095 -2.85 -176.067 
+      6 9.89495 868 1 0 -7.71586 -6.41794 -175.85 
+      6 160.191 867 1 0 -7.71032 -6.45 -175.873 
+      6 164.903 1559 5 0 91.2835 132.061 -55.996 
+      6 133.536 1327 3 0 -87.5889 85.5299 -115.986 
+Number of digits in this event =  15
 Event: 7
-Number of tracker hits in this event =  12
-      7 118.687 900 5 1 0.205263 -0.0612809 -54.45 
-      7 111.383 899 5 0 0.220039 -0.0551905 -55.85 
-      7 115.079 902 4 1 0.513119 0.0897239 -84.45 
-      7 158.008 900 4 0 0.522851 0.0920412 -85.85 
-      7 124.659 903 3 1 0.696072 0.192749 -114.45 
-      7 122.614 900 3 0 0.705848 0.197275 -115.85 
-      7 142.385 904 2 1 0.920623 0.311407 -144.45 
-      7 104.167 901 2 0 0.933017 0.317383 -145.85 
-      7 146.524 905 1 1 1.1728 0.424524 -174.45 
-      7 88.6768 901 1 0 1.17926 0.430064 -175.85 
-      7 236.785 906 0 1 1.32157 0.572812 -204.45 
-      7 116.385 902 0 0 1.33968 0.590678 -205.85 
-Number of digits in this event =  7
+Number of tracker hits in this event =  44
+      7 120.021 899 5 1 -0.0520371 -0.112275 -54.45 
+      7 141.519 899 5 0 -0.0533673 -0.117457 -55.85 
+      7 139.843 899 4 1 -0.0617286 -0.197239 -84.45 
+      7 119.263 899 4 0 -0.0644244 -0.192852 -85.85 
+      7 190.09 899 3 1 -0.138639 -0.0826104 -114.45 
+      7 200.35 899 3 0 -0.123263 -0.0615036 -115.85 
+      7 151.618 900 2 1 0.205717 0.398023 -144.45 
+      7 117.296 902 2 0 0.110357 0.513119 -145.85 
+      7 106.698 886 1 1 -2.70478 2.73277 -174.45 
+      7 199.304 913 1 0 -2.75513 2.74801 -175.85 
+      7 97.8332 880 0 1 -3.89242 2.70027 -204.45 
+      7 181.262 913 0 0 -3.82314 2.77339 -205.85 
+      7 435.025 901 2 1 0.25 0.357942 -144.476 
+      7 69.7501 902 2 1 0.45 0.337349 -144.693 
+      7 183.119 901 2 0 1.54101 0.35198 -145.85 
+      7 4.58994 1048 1 1 29.67 1.59326 -174.45 
+      7 68.0469 1047 1 1 29.65 1.60449 -174.467 
+      7 82.3675 1046 1 1 29.45 1.69788 -174.627 
+      7 23.4967 1045 1 1 29.25 1.79937 -174.797 
+      7 65.7629 912 1 0 28.2958 2.52611 -175.85 
+      7 62.7652 1049 1 0 -19.4439 29.9298 -176.25 
+      7 95.58 1050 1 0 -19.3957 30.05 -176.032 
+      7 366.488 806 1 1 -18.7808 31.8079 -174.85 
+      7 120.976 807 1 1 -18.65 32.193 -174.609 
+      7 79.8838 898 3 0 -0.643658 -0.25 -116.047 
+      7 22.7041 647 3 0 -13.4055 -50.5818 -116.25 
+      7 65.8501 646 3 0 -13.4016 -50.65 -116.209 
+      7 58.9276 645 3 0 -13.3708 -50.85 -116.108 
+      7 66.1534 644 3 0 -13.3586 -51.05 -115.989 
+      7 3.32838 643 3 0 -13.3028 -51.25 -115.858 
+      7 216.559 835 3 1 -12.9651 -52.6355 -114.85 
+      7 48.6063 836 3 1 -12.85 -53.1078 -114.507 
+      7 67.6509 834 3 1 -13.05 -53.5008 -114.473 
+      7 78.362 833 3 1 -13.25 -53.6589 -114.502 
+      7 70.2999 832 3 1 -13.45 -53.7655 -114.628 
+      7 34.3322 831 3 1 -13.65 -53.7841 -114.77 
+      7 158.743 631 3 0 -15.0016 -53.7981 -115.85 
+      7 45.0837 1441 4 0 -51.1065 108.473 -86.25 
+      7 93.3499 1442 4 0 -51.1145 108.55 -86.1619 
+      7 25.639 1443 4 0 -51.1517 108.75 -85.924 
+      7 151.931 643 4 1 -51.3442 109.476 -84.85 
+      7 77.9799 642 4 1 -51.494 110.003 -84.45 
+      7 196.159 898 0 1 -0.303675 -0.161017 -204.45 
+      7 265.452 899 0 0 -0.301776 -0.170573 -205.85 
+Number of digits in this event =  18
 Event: 8
-Number of tracker hits in this event =  7
-      8 130.117 900 3 1 0.109158 0.18038 -114.45 
-      8 264.847 900 3 0 0.11677 0.173811 -115.85 
-      8 303.882 899 1 0 0.22624 -0.0543862 -175.85 
-      8 104.21 902 0 1 0.643292 -0.282039 -204.45 
-      8 114.254 898 0 0 0.662022 -0.286913 -205.85 
-      8 121.538 880 4 1 -3.92091 -109.3 -84.7449 
-      8 7.94165 852 2 1 -9.61535 -77.7644 -144.475 
-Number of digits in this event =  6
-Event: 9
-Number of tracker hits in this event =  25
-      9 104.141 899 4 1 -0.0939301 -0.624332 -84.45 
-      9 150.044 897 4 0 -0.0950668 -0.643216 -85.85 
-      9 117.495 899 3 1 -0.0902427 -1.04057 -114.45 
-      9 138.383 894 3 0 -0.0793119 -1.05933 -115.85 
-      9 118.263 900 2 1 0.17949 -1.45057 -144.45 
-      9 219.316 892 2 0 0.185687 -1.46894 -145.85 
-      9 146.622 901 1 1 0.302983 -1.80056 -174.45 
-      9 135.501 891 1 0 0.31056 -1.81867 -175.85 
-      9 130.02 901 0 1 0.441191 -2.21608 -204.45 
-      9 265.679 889 0 0 0.442419 -2.23432 -205.85 
-      9 175.588 899 2 1 -0.0637757 -1.47304 -144.565 
-      9 179.688 893 2 0 -0.151648 -1.44333 -145.85 
-      9 143.074 890 1 1 -1.87777 -0.178406 -174.45 
-      9 112.098 900 1 0 -2.01318 0.0731817 -175.85 
-      9 109.899 877 0 1 -4.52681 5.16996 -204.45 
-      9 3.4712 926 0 0 -4.81391 5.44569 -205.85 
-      9 105.505 927 0 0 -4.81825 5.45 -205.872 
-      9 217.323 900 0 1 0.063866 -2.08019 -204.45 
-      9 159.058 890 0 0 0.105567 -1.98388 -205.85 
-      9 12.0655 891 2 0 0.165453 -1.65 -146.203 
-      9 152.026 922 1 1 4.56265 -5.31703 -174.45 
-      9 77.8695 872 1 0 4.72105 -5.5963 -175.85 
-      9 39.2993 871 1 0 4.75283 -5.65 -176.126 
-      9 132.078 940 0 1 8.07002 -10.4383 -204.45 
-      9 161.261 846 0 0 8.73586 -10.7178 -205.85 
+Number of tracker hits in this event =  41
+      8 119.778 899 4 1 -0.16623 0.0673824 -84.45 
+      8 153.092 900 4 0 -0.171421 0.0699921 -85.85 
+      8 218.485 898 3 1 -0.250148 0.110754 -114.45 
+      8 105.626 900 3 0 -0.256163 0.127641 -115.85 
+      8 233.303 898 2 1 -0.390308 0.43935 -144.45 
+      8 112.517 902 2 0 -0.400935 0.457795 -145.85 
+      8 171.264 897 1 1 -0.616792 0.852663 -174.45 
+      8 102.464 904 1 0 -0.629639 0.875256 -175.85 
+      8 173.276 895 0 1 -0.868844 1.36721 -204.45 
+      8 383.529 906 0 0 -0.869452 1.38521 -205.85 
+      8 111.746 898 3 0 -0.429467 -0.351305 -115.85 
+      8 94.9663 892 2 1 -1.56526 -1.45583 -144.45 
+      8 98.239 892 2 0 -1.67685 -1.49327 -145.85 
+      8 117.142 879 1 1 -4.09558 -2.32922 -174.45 
+      8 139.321 888 1 0 -4.19802 -2.33845 -175.85 
+      8 111.259 868 0 1 -6.28426 -2.56226 -204.45 
+      8 132.121 887 0 0 -6.42652 -2.58766 -205.85 
+      8 108.844 893 3 1 -1.37185 0.669909 -114.45 
+      8 125.696 901 3 0 -1.52434 0.429442 -115.85 
+      8 85.7256 873 2 1 -5.34217 -5.48307 -144.45 
+      8 21.91 872 2 1 -5.45 -5.38449 -144.78 
+      8 128.229 875 2 0 -5.76534 -5.04974 -145.85 
+      8 56.8106 832 1 1 -13.6095 5.03721 -174.45 
+      8 75.2275 831 1 1 -13.65 5.11478 -174.616 
+      8 135.473 928 1 0 -13.9022 5.68895 -175.85 
+      8 14.2368 929 1 0 -13.9726 5.85 -176.202 
+      8 38.6484 811 0 1 -17.7224 19.2853 -204.45 
+      8 106.133 812 0 1 -17.65 19.3198 -204.551 
+      8 17.4145 813 0 1 -17.45 19.408 -204.81 
+      8 83.4095 998 0 0 -16.6996 19.7746 -205.85 
+      8 92.4996 999 0 0 -16.5453 19.85 -206.064 
+      8 41.8557 897 2 1 -0.512525 0.22588 -144.45 
+      8 87.7244 897 2 0 0.121206 -0.527052 -145.85 
+      8 59.1866 896 2 0 0.213993 -0.65 -146.054 
+      8 113.274 950 1 1 10.1705 -10.733 -174.45 
+      8 80.5268 949 1 1 10.05 -10.7703 -174.734 
+      8 132.489 845 1 0 9.60737 -10.872 -175.85 
+      8 86.9506 830 1 0 9.52446 -13.969 -176.25 
+      8 22.1441 829 1 0 9.56816 -14.05 -175.947 
+      8 256.834 948 1 1 9.65115 -14.2009 -174.85 
+      8 130.72 826 1 0 11.0707 -14.8324 -175.85 
 Number of digits in this event =  16
+Event: 9
+Number of tracker hits in this event =  54
+      9 100.05 900 4 1 0.132092 0.309038 -84.45 
+      9 344.904 901 4 0 0.132628 0.331659 -85.85 
+      9 400.239 900 3 1 0.100746 0.855776 -114.45 
+      9 174.814 904 3 0 0.0977597 0.885146 -115.85 
+      9 146.233 900 1 1 0.116545 2.09263 -174.45 
+      9 120.854 910 1 0 0.111939 2.11889 -175.85 
+      9 129.303 1259 12 0 -106.491 71.918 153.75 
+      9 556.368 365 12 1 -106.996 72.271 155.15 
+      9 15.1178 1338 13 0 -123.39 87.8355 183.75 
+      9 135.207 1339 13 0 -123.405 87.85 183.776 
+      9 2.05973 1340 13 0 -123.615 88.05 184.142 
+      9 284.807 279 13 1 -124.165 88.6016 185.15 
+      9 16.8766 278 13 1 -124.35 88.7874 185.489 
+      9 36.4192 1405 14 0 -151.477 101.31 213.75 
+      9 247.567 1406 14 0 -151.565 101.35 213.841 
+      9 14.0153 137 14 1 -152.725 102.008 215.15 
+      9 130.502 136 14 1 -152.75 102.022 215.178 
+      9 89.5074 135 14 1 -152.95 102.135 215.4 
+      9 225.883 899 4 1 -0.121164 0.290654 -84.45 
+      9 83.631 897 2 1 -0.580144 1.44389 -144.45 
+      9 114.193 907 2 0 -0.598498 1.53343 -145.85 
+      9 123.968 896 1 1 -0.69878 3.27697 -174.45 
+      9 70.0262 916 1 0 -0.703644 3.42219 -175.85 
+      9 41.3763 917 1 0 -0.705556 3.45 -176.133 
+      9 103.293 898 0 1 -0.34675 5.96771 -204.45 
+      9 152.369 930 0 0 -0.30124 6.05676 -205.85 
+      9 48.3582 899 3 1 -0.069545 -0.160947 -114.45 
+      9 246.078 899 3 0 0.450912 -0.176963 -115.85 
+      9 132.023 957 2 1 11.4596 -0.115364 -144.45 
+      9 22.0551 958 2 1 11.65 -0.122997 -144.775 
+      9 125.292 899 2 0 12.2747 -0.155018 -145.85 
+      9 161.144 1042 1 1 28.4847 -0.937388 -174.45 
+      9 42.8471 895 1 0 28.8845 -0.857924 -175.85 
+      9 125.733 896 1 0 28.9169 -0.85 -175.965 
+      9 28.3359 1078 0 1 35.8284 2.60056 -204.45 
+      9 90.3457 1079 0 1 35.85 2.61163 -204.524 
+      9 118.826 913 0 0 36.2846 2.78471 -205.85 
+      9 163.714 774 0 1 -25.1727 -35.798 -204.45 
+      9 44.3303 773 0 1 -25.25 -35.7919 -204.465 
+      9 219.933 1204 12 0 -100.323 60.9149 153.75 
+      9 41.9673 398 12 1 -100.53 60.7631 155.15 
+      9 324.899 397 12 1 -100.55 60.7497 155.297 
+      9 84.0614 396 12 1 -100.75 60.7173 155.407 
+      9 99.8143 395 12 1 -100.95 60.4573 155.239 
+      9 44.4907 394 12 1 -101.15 60.2068 155.166 
+      9 317.486 1195 12 0 -103.926 59.2164 154.15 
+      9 171.539 1194 12 0 -104.907 59.05 153.95 
+      9 81.8721 1193 12 0 -105.335 58.85 153.995 
+      9 127.411 1192 12 0 -105.515 58.65 154.039 
+      9 71.6881 368 12 1 -106.422 58.3564 155.15 
+      9 88.5439 367 12 1 -106.55 58.4368 155.33 
+      9 115.528 366 12 1 -106.75 58.5431 155.482 
+      9 226.511 1385 9 1 97.2512 56.1554 65.1732 
+      9 96.8987 945 0 1 9.0786 -13.0108 -204.743 
+Number of digits in this event =  30
 Event: 10
-Number of tracker hits in this event =  56
-     10 107.048 899 5 1 -0.0619455 0.0950396 -54.45 
-     10 183.534 900 5 0 -0.0676234 0.110606 -55.85 
-     10 267.625 899 4 1 -0.161534 0.438399 -84.45 
-     10 121.399 902 4 0 -0.16774 0.456772 -85.85 
-     10 161.792 898 3 1 -0.296967 0.844561 -114.45 
-     10 120.407 904 3 0 -0.293763 0.862623 -115.85 
-     10 125.412 899 2 1 -0.2293 1.21255 -144.45 
-     10 203.26 905 2 0 -0.228304 1.22771 -145.85 
-     10 129.235 899 1 1 -0.222796 1.57223 -174.45 
-     10 137.253 907 1 0 -0.21947 1.5866 -175.85 
-     10 112.611 899 0 1 -0.0869161 1.87938 -204.45 
-     10 124.497 909 0 0 -0.0843974 1.90905 -205.85 
-     10 57.538 792 5 0 -31.8686 -21.5029 -56.25 
-     10 294.704 791 5 0 -31.7195 -21.65 -56.1286 
-     10 272.387 790 5 0 -31.5928 -21.85 -56.0696 
-     10 25.5421 789 5 0 -31.5534 -22.05 -55.9441 
-     10 146.504 901 4 0 -0.166674 0.296267 -85.85 
-     10 139.646 887 3 1 -2.51338 3.6179 -114.45 
-     10 155.517 919 3 0 -2.91552 3.96623 -115.85 
-     10 15.6839 920 3 0 -3.01082 4.05 -116.183 
-     10 68.7602 847 2 1 -10.6181 11.8945 -144.45 
-     10 35.8105 846 2 1 -10.65 11.9298 -144.703 
-     10 110.784 960 2 0 -10.8091 12.1046 -145.85 
-     10 127.958 830 1 1 -13.9965 16.6214 -174.45 
-     10 8.13081 985 1 0 -13.702 17.2363 -175.85 
-     10 172.988 986 1 0 -13.6955 17.25 -175.881 
-     10 175.001 858 0 1 -8.3316 29.5971 -204.45 
-     10 15.3834 1050 0 0 -8.13893 30.2298 -205.85 
-     10 109.613 1051 0 0 -8.13291 30.25 -205.895 
-     10 151.548 899 4 0 -0.133077 -0.107285 -85.85 
-     10 19.4313 892 3 1 -1.48557 -10.6076 -114.45 
-     10 120.491 893 3 1 -1.45 -10.6271 -114.54 
-     10 11.563 845 3 0 -0.762954 -11.0342 -115.85 
-     10 133.243 844 3 0 -0.740295 -11.05 -115.894 
-     10 6.08394 961 2 1 12.4366 -19.2111 -144.45 
-     10 102.723 962 2 1 12.45 -19.2219 -144.467 
-     10 53.6872 963 2 1 12.65 -19.3892 -144.73 
-     10 72.4432 800 2 0 14.0156 -19.983 -145.85 
-     10 111.52 799 2 0 14.1767 -20.05 -145.98 
-     10 81.7292 798 2 0 14.5368 -20.25 -146.116 
-     10 602.256 715 2 0 52.5349 -36.9211 -146.25 
-     10 15.6964 714 2 0 52.1702 -37.05 -145.869 
-     10 26.9221 1152 2 1 50.5421 -37.4799 -144.85 
-     10 62.1625 1151 2 1 50.45 -37.5193 -144.806 
-     10 73.8421 1150 2 1 50.25 -37.5416 -144.699 
-     10 172.971 1149 2 1 50.05 -37.4601 -144.639 
-     10 226.575 1148 2 1 49.85 -37.2059 -144.594 
-     10 209.744 1147 2 1 49.65 -36.8478 -144.766 
-     10 224.833 874 2 1 -5.15603 7.25311 -144.45 
-     10 111.089 936 2 0 -5.17608 7.29943 -145.85 
-     10 112.283 862 1 1 -7.59835 10.8515 -174.45 
-     10 173.279 954 1 0 -7.10749 10.9931 -175.85 
-     10 126.437 942 0 1 8.52763 14.862 -204.45 
-     10 78.7991 977 0 0 8.86987 15.5332 -205.85 
-     10 58.2697 978 0 0 8.93285 15.65 -206.083 
-     10 216.593 963 4 1 12.7994 12.3315 -84.4995 
-Number of digits in this event =  31
+Number of tracker hits in this event =  43
+     10 184.064 899 5 1 -0.0815285 -0.0973778 -54.45 
+     10 89.1707 899 5 0 -0.0938519 -0.0877408 -55.85 
+     10 118.698 898 4 1 -0.305401 0.144511 -84.45 
+     10 132.023 900 4 0 -0.329452 0.143157 -85.85 
+     10 170.188 895 2 1 -1.03472 -0.407815 -144.45 
+     10 72.2537 894 2 1 -1.05 -0.411056 -144.622 
+     10 147.082 898 2 0 -1.16902 -0.433899 -145.85 
+     10 103.501 881 1 1 -3.77519 -1.14177 -174.45 
+     10 123.59 894 1 0 -3.82148 -1.20107 -175.85 
+     10 220.773 876 0 1 -4.8366 -2.31693 -204.45 
+     10 263.729 875 0 1 -4.85 -2.3389 -204.794 
+     10 240.005 888 0 0 -4.87658 -2.40758 -205.85 
+     10 139.514 889 0 0 -5.65613 -2.2122 -205.85 
+     10 1.96789 900 0 0 -2.23636 0.05 -206.247 
+     10 214.256 898 3 1 -0.271813 0.368344 -114.45 
+     10 30.6783 899 3 1 -0.25 0.392274 -114.754 
+     10 109.838 902 3 0 -0.181965 0.477095 -115.85 
+     10 121.444 909 2 1 1.92101 2.57116 -144.45 
+     10 134.816 910 2 0 2.06791 2.24774 -145.85 
+     10 125.487 926 1 1 5.33427 -4.64694 -174.45 
+     10 147.191 874 1 0 5.43614 -5.07991 -175.85 
+     10 127.335 937 0 1 7.60643 -14.4942 -204.45 
+     10 21.843 938 0 1 7.65 -14.5957 -204.798 
+     10 195.47 825 0 0 7.8234 -14.9172 -205.85 
+     10 37.6901 847 0 0 9.13033 -10.51 -206.026 
+     10 206.826 899 0 1 -0.0507578 -0.17308 -204.45 
+     10 130.136 898 0 0 -0.151736 -0.292509 -205.85 
+     10 83.2477 735 3 1 -32.855 39.1675 -114.527 
+     10 26.099 736 3 1 -32.85 39.1481 -114.507 
+     10 5.55546 298 2 0 -115.676 -120.528 -146.25 
+     10 163.212 297 2 0 -115.673 -120.55 -146.243 
+     10 5.76344 296 2 0 -115.654 -120.75 -146.239 
+     10 32.7308 179 2 0 -126.463 -144.154 -146.25 
+     10 202.944 180 2 0 -126.453 -144.15 -146.184 
+     10 103.932 1607 5 1 141.612 122.538 -54.6617 
+     10 133.648 901 3 0 -0.305682 0.358946 -115.85 
+     10 91.1519 900 2 0 -0.841435 0.222119 -145.85 
+     10 125.562 902 1 1 0.532181 1.04346 -174.45 
+     10 138.722 905 1 0 0.554006 1.11039 -175.85 
+     10 187.209 904 0 1 0.889566 2.53935 -204.45 
+     10 131.591 912 0 0 0.959071 2.62395 -205.85 
+     10 101.219 829 1 1 -14.0675 17.1005 -174.625 
+     10 137.796 830 1 1 -14.05 17.0402 -174.499 
+Number of digits in this event =  28
 Event: 11
-Number of tracker hits in this event =  12
-     11 116.673 899 4 1 -0.0666765 0.140535 -84.45 
-     11 143.657 900 4 0 -0.0726952 0.141202 -85.85 
-     11 133.784 899 3 1 -0.19069 0.142867 -114.45 
-     11 158.007 900 3 0 -0.189532 0.132436 -115.85 
-     11 126.22 899 2 1 -0.19978 -0.0534706 -144.45 
-     11 166.615 899 2 0 -0.195958 -0.0514712 -145.85 
-     11 208.217 900 0 0 0.0743248 0.0544942 -205.85 
-     11 107.211 781 2 1 -23.7626 -113.186 -144.615 
-     11 69.7004 782 2 1 -23.65 -113.347 -144.468 
-     11 137.851 783 2 1 -23.45 -113.141 -144.481 
-     11 10.6624 337 2 0 -23.431 -112.566 -145.85 
-     11 101.464 338 2 0 -23.4311 -112.55 -145.898 
-Number of digits in this event =  9
+Number of tracker hits in this event =  19
+     11 287.049 900 5 1 0.10102 0.0853366 -54.45 
+     11 154.955 900 5 0 0.105559 0.0984752 -55.85 
+     11 130.768 900 4 1 0.203816 0.407644 -84.45 
+     11 102.595 901 4 0 0.192908 0.422132 -85.85 
+     11 118.789 898 2 1 -0.377365 1.13222 -144.45 
+     11 107.256 905 2 0 -0.393725 1.14303 -145.85 
+     11 124.15 896 1 1 -0.700376 1.35336 -174.45 
+     11 299.276 906 1 0 -0.708006 1.36334 -175.85 
+     11 121.574 896 0 1 -0.842293 1.59271 -204.45 
+     11 102.791 907 0 0 -0.851844 1.59901 -205.85 
+     11 144.402 897 2 1 -0.46084 0.963554 -144.45 
+     11 53.085 910 2 0 -1.32108 2.12805 -145.85 
+     11 133.187 911 2 0 -1.42697 2.25 -146 
+     11 7.32051 913 2 0 -18.1244 2.66623 -146.25 
+     11 107.331 912 2 0 -18.1274 2.65 -146.219 
+     11 13.9281 812 2 1 -17.4738 3.25685 -144.85 
+     11 328.98 813 2 1 -17.45 3.28124 -144.811 
+     11 87.3706 814 2 1 -17.25 3.42846 -144.627 
+     11 413.747 815 2 1 -17.05 3.51824 -144.596 
+Number of digits in this event =  12
 Event: 12
-Number of tracker hits in this event =  65
-     12 135.308 901 5 1 0.263026 -0.0945179 -54.45 
-     12 126.421 899 5 0 0.278677 -0.105017 -55.85 
-     12 356.553 902 4 1 0.579901 -0.35634 -84.45 
-     12 251.845 898 4 0 0.597897 -0.382349 -85.85 
-     12 262.71 904 3 1 0.943565 -0.920092 -114.45 
-     12 128.343 895 3 0 0.96061 -0.946001 -115.85 
-     12 134.937 906 2 1 1.33219 -1.45052 -144.45 
-     12 196.105 892 2 0 1.35139 -1.47047 -145.85 
-     12 123.756 908 1 1 1.78001 -1.80302 -174.45 
-     12 104.296 891 1 0 1.78993 -1.83358 -175.85 
-     12 135.731 909 0 1 2.01881 -2.41977 -204.45 
-     12 102.86 888 0 0 1.99639 -2.4323 -205.85 
-     12 200.018 880 1 1 -3.88442 -8.22481 -174.45 
-     12 76.3743 850 1 0 -4.27575 -9.89617 -175.85 
-     12 71.9353 849 1 0 -4.32203 -10.05 -175.991 
-     12 42.9699 848 1 0 -4.36899 -10.25 -176.158 
-     12 3.64321 844 0 1 -11.241 -42.8457 -204.45 
-     12 81.8362 843 0 1 -11.25 -42.8497 -204.463 
-     12 42.6038 842 0 1 -11.45 -42.9437 -204.76 
-     12 277.652 682 0 0 -11.9977 -43.4541 -205.85 
-     12 133.437 899 4 0 0.937365 -0.143635 -85.85 
-     12 66.0795 944 3 1 8.93954 -0.406175 -114.45 
-     12 101.7 943 3 1 8.85 -0.313111 -114.66 
-     12 23.8896 900 3 0 7.54084 0.212355 -115.85 
-     12 192.445 901 3 0 7.44143 0.25 -115.935 
-     12 40.592 987 3 0 3.8372 17.619 -116.25 
-     12 96.6743 988 3 0 3.91939 17.65 -116.101 
-     12 37.0625 925 3 1 5.15694 17.9854 -114.85 
-     12 73.7629 926 3 1 5.25 18.019 -114.755 
-     12 73.7676 927 3 1 5.45 18.1403 -114.573 
-     12 197.979 900 4 1 0.212885 -0.05 -84.4783 
-     12 90.5101 894 4 0 -0.548458 -1.06204 -85.85 
-     12 88.1855 893 4 0 -0.687868 -1.25 -86.0968 
-     12 108.645 893 3 0 0.708435 -1.36083 -115.85 
-     12 130.132 872 2 1 -5.59441 -2.79478 -144.45 
-     12 10.7085 889 2 0 -5.58414 -2.07229 -145.85 
-     12 107.558 890 2 0 -5.58636 -2.05 -145.893 
-     12 0.183499 870 1 1 -5.85019 21.4143 -174.45 
-     12 328.195 871 1 1 -5.85 21.416 -174.45 
-     12 34.8274 1021 1 0 -6.72553 24.3332 -175.85 
-     12 53.6846 1022 1 0 -6.78551 24.45 -175.915 
-     12 72.5472 1023 1 0 -6.87298 24.65 -176.004 
-     12 59.7811 1024 1 0 -6.95189 24.85 -176.103 
-     12 85.9807 1025 1 0 -6.98935 25.05 -176.188 
-     12 58.57 1026 1 0 -7.03333 25.25 -176.235 
-     12 64.3705 1027 1 0 -7.08646 25.45 -176.223 
-     12 62.2348 1028 1 0 -7.16326 25.65 -176.211 
-     12 46.9612 1029 1 0 -7.23162 25.85 -176.193 
-     12 71.5445 1030 1 0 -7.26314 26.05 -176.128 
-     12 88.8912 1031 1 0 -7.24971 26.25 -176.063 
-     12 5.40538 1032 1 0 -7.1975 26.45 -175.872 
-     12 394.445 865 1 1 -6.93901 27.1017 -174.85 
-     12 111.836 866 1 1 -6.85 27.3245 -174.499 
-     12 87.9686 864 1 1 -7.05 27.3114 -174.789 
-     12 9.77595 822 1 0 -24.0054 -15.6353 -176.25 
-     12 423.711 821 1 0 -24.0109 -15.65 -176.222 
-     12 292.151 820 1 0 -23.6366 -15.85 -175.976 
-     12 125.58 806 0 1 -18.7081 -1.01653 -204.45 
-     12 138.134 895 0 0 -19.0061 -0.931492 -205.85 
-     12 279.819 512 4 0 113.168 -77.4776 -86.25 
-     12 66.4901 513 4 0 112.983 -77.45 -86.0208 
-     12 99.3707 511 4 0 112.935 -77.65 -85.878 
-     12 211.263 1302 3 0 68.6767 80.6213 -116.086 
-     12 81.8958 1303 3 0 68.6989 80.65 -116.031 
-     12 120.712 914 1 1 2.92694 34.94 -174.612 
-Number of digits in this event =  26
+Number of tracker hits in this event =  38
+     12 116.47 900 5 1 0.0696791 0.200438 -54.45 
+     12 111.156 900 5 0 0.0700923 0.217254 -55.85 
+     12 140.859 900 4 1 0.072339 0.574348 -84.45 
+     12 108.492 902 4 0 0.082027 0.589359 -85.85 
+     12 168.786 901 3 1 0.25067 0.848162 -114.45 
+     12 113.428 903 3 0 0.24877 0.846078 -115.85 
+     12 130.301 900 2 1 0.237301 0.818523 -144.45 
+     12 185.523 903 2 0 0.237146 0.81047 -145.85 
+     12 173.961 901 1 1 0.290373 0.629456 -174.45 
+     12 113.937 902 1 0 0.301698 0.628171 -175.85 
+     12 205.115 902 0 1 0.531275 0.589336 -204.45 
+     12 99.6871 902 0 0 0.53189 0.591533 -205.85 
+     12 353.971 900 3 1 0.105951 0.610452 -114.45 
+     12 40.8884 901 3 0 0.172756 0.284887 -115.85 
+     12 95.6983 900 3 0 0.178127 0.25 -115.992 
+     12 9.99171 868 2 0 0.250904 -6.43596 -145.85 
+     12 132.91 867 2 0 0.257311 -6.45 -145.881 
+     12 104.41 933 1 1 6.76415 -19.1615 -174.45 
+     12 71.4373 934 1 1 6.85 -19.1541 -174.625 
+     12 122.024 804 1 0 7.43606 -19.0766 -175.85 
+     12 4.77269 805 1 0 7.62009 -19.05 -176.242 
+     12 55.8773 1005 0 1 21.1918 -16.5619 -204.45 
+     12 83.3555 1006 0 1 21.25 -16.5576 -204.597 
+     12 157.793 816 0 0 21.8219 -16.7541 -205.85 
+     12 80.3008 907 3 0 -0.0869184 1.49246 -115.85 
+     12 47.6105 908 3 0 -0.135722 1.65 -116.114 
+     12 63.5445 831 2 1 -13.785 16.8209 -144.45 
+     12 104.681 832 2 1 -13.65 16.6812 -144.598 
+     12 4.17175 833 2 1 -13.45 16.4718 -144.839 
+     12 505.897 979 2 0 -12.6873 15.9833 -145.85 
+     12 258.584 978 2 0 -11.7021 15.85 -146.239 
+     12 800.655 977 2 0 -11.0719 15.65 -146.16 
+     12 139.602 976 2 0 -9.52571 15.45 -146.139 
+     12 261.913 975 2 0 -9.42344 15.25 -145.915 
+     12 128.285 857 2 1 -8.62319 13.9117 -144.85 
+     12 88.2171 858 2 1 -8.45 13.6265 -144.612 
+     12 100.133 1433 0 0 -123.586 106.855 -205.877 
+     12 140.995 815 0 0 -4.65173 -16.9342 -205.894 
+Number of digits in this event =  20
 Event: 13
-Number of tracker hits in this event =  20
-     13 89.9445 899 3 1 -0.161061 1.11238 -114.45 
-     13 136.679 905 3 0 -0.165065 1.13036 -115.85 
-     13 120.155 899 2 1 -0.237449 1.45979 -144.45 
-     13 117.392 907 2 0 -0.270819 1.49976 -145.85 
-     13 114.822 895 1 1 -1.01394 2.27264 -174.45 
-     13 107.49 911 1 0 -1.03445 2.31498 -175.85 
-     13 107.798 892 0 1 -1.48945 3.1797 -204.45 
-     13 200.922 915 0 0 -1.51126 3.21529 -205.85 
-     13 172.252 901 1 1 0.266461 1.84852 -174.45 
-     13 87.7176 909 1 0 0.311784 2.01682 -175.85 
-     13 242.936 910 1 0 0.322258 2.05 -176.117 
-     13 103.345 901 0 1 0.274493 4.74418 -204.45 
-     13 140.912 924 0 0 0.43752 4.927 -205.85 
-     13 83.5971 900 1 1 0.25 1.87538 -174.58 
-     13 133.194 895 0 1 -1.034 6.14831 -204.45 
-     13 128.72 933 0 0 -0.784426 6.65019 -205.85 
-     13 291.158 906 0 1 1.30506 2.71626 -204.45 
-     13 115.558 911 0 0 1.56136 2.4217 -205.85 
-     13 111.069 913 0 0 1.28143 2.77185 -205.85 
-     13 164.369 21 3 1 -175.835 39.6557 -114.737 
-Number of digits in this event =  11
+Number of tracker hits in this event =  28
+     13 132.972 899 5 1 -0.104109 0.182172 -54.45 
+     13 111.073 900 5 0 -0.119561 0.197971 -55.85 
+     13 122.243 897 4 1 -0.468031 0.51463 -84.45 
+     13 176.661 902 4 0 -0.498841 0.515124 -85.85 
+     13 113.844 893 3 1 -1.3063 0.57708 -114.45 
+     13 118.548 902 3 0 -1.35431 0.568614 -115.85 
+     13 104.832 887 2 1 -2.49243 0.323646 -144.45 
+     13 105 901 2 0 -2.54114 0.335778 -145.85 
+     13 92.633 882 1 1 -3.61372 0.47201 -174.45 
+     13 296.458 902 1 0 -3.66491 0.482089 -175.85 
+     13 196.201 876 0 1 -4.74957 0.656702 -204.45 
+     13 121.017 903 0 0 -4.81832 0.722652 -205.85 
+     13 107.459 899 0 1 -0.05 0.639422 -204.729 
+     13 14.6626 911 0 0 -0.204194 2.42596 -205.85 
+     13 266.982 912 0 0 -0.204066 2.45 -205.865 
+     13 87.9526 913 0 0 -0.310774 2.65 -206.036 
+     13 112.405 1209 4 0 -47.3912 61.8523 -86.25 
+     13 25.6994 1210 4 0 -47.3426 62.05 -85.9135 
+     13 184.575 663 4 1 -47.3204 63.0591 -84.85 
+     13 264.266 662 4 1 -47.45 63.4989 -84.4772 
+     13 88.4407 661 4 1 -47.65 64.1044 -84.4824 
+     13 71.077 660 4 1 -47.85 64.3262 -84.5947 
+     13 54.8926 659 4 1 -48.05 64.3689 -84.723 
+     13 2.26321 1220 4 0 -49.7995 64.052 -85.85 
+     13 181.572 1219 4 0 -49.8092 64.05 -85.8561 
+     13 157.083 1285 4 0 -80.2001 77.2027 -86.25 
+     13 172.86 1286 4 0 -80.3646 77.25 -86.1363 
+     13 300.236 1221 4 0 -109.891 64.3635 -86.25 
+Number of digits in this event =  15
 Event: 14
-Number of tracker hits in this event =  12
-     14 146.919 900 5 1 0.0664605 0.110413 -54.45 
-     14 122.829 900 5 0 0.0693684 0.111287 -55.85 
-     14 135.475 899 3 1 -0.204765 0.247608 -114.45 
-     14 129.253 901 3 0 -0.209103 0.250044 -115.85 
-     14 174.887 898 2 1 -0.279753 0.294452 -144.45 
-     14 130.28 901 2 0 -0.272232 0.285162 -145.85 
-     14 24.7314 899 1 1 -0.0694114 0.0506242 -174.45 
-     14 403.581 901 0 1 0.321534 -0.212073 -204.45 
-     14 180.304 899 0 0 0.343215 -0.223807 -205.85 
-     14 18.4757 902 0 1 0.45 0.125055 -204.773 
-     14 143.841 900 0 0 0.599019 0.185517 -205.85 
-     14 61.5769 197 2 0 -161.453 -140.62 -146.066 
-Number of digits in this event =  12
+Number of tracker hits in this event =  19
+     14 123.692 898 4 1 -0.425852 -0.818559 -84.45 
+     14 60.4713 896 4 0 -0.434243 -0.846809 -85.85 
+     14 159.674 895 4 0 -0.435059 -0.85 -86.0249 
+     14 136.123 896 3 1 -0.722965 -1.07081 -114.45 
+     14 21.6073 894 3 0 -0.702996 -1.05122 -115.85 
+     14 99.9441 895 3 0 -0.701762 -1.05 -115.933 
+     14 111.584 899 2 1 -0.111887 -0.735665 -144.45 
+     14 178.236 909 1 1 1.92198 -0.969417 -174.45 
+     14 112.841 895 1 0 2.21629 -1.02262 -175.85 
+     14 146.774 930 0 1 6.09197 -3.63059 -204.45 
+     14 125.815 883 0 0 6.21742 -3.38699 -205.85 
+     14 231.09 919 0 1 3.90809 -0.336016 -204.45 
+     14 118.236 898 0 0 4.05103 -0.342819 -205.85 
+     14 8.2302 890 1 1 -1.87294 -1.68309 -174.45 
+     14 177.955 891 1 1 -1.85 -1.68134 -174.458 
+     14 93.9077 892 1 1 -1.65 -1.73342 -174.607 
+     14 123.302 893 1 1 -1.45 -1.82552 -174.643 
+     14 164.051 898 1 0 -1.51146 -0.337474 -175.85 
+     14 117.264 899 0 0 3.93262 -0.214991 -205.85 
+Number of digits in this event =  11
 Event: 15
-Number of tracker hits in this event =  65
-     15 250.47 898 5 1 -0.283305 -0.479948 -54.45 
-     15 289.106 897 5 0 -0.298655 -0.499831 -55.85 
-     15 122.482 897 4 1 -0.620728 -0.940358 -84.45 
-     15 257.799 895 4 0 -0.632687 -0.947117 -85.85 
-     15 149.12 896 3 1 -0.820724 -1.10287 -114.45 
-     15 190.892 894 3 0 -0.833566 -1.11311 -115.85 
-     15 130.614 894 2 1 -1.07643 -1.3329 -144.45 
-     15 168.365 893 2 0 -1.07772 -1.33213 -145.85 
-     15 102.959 894 1 1 -1.13032 -1.27409 -174.45 
-     15 112.164 893 1 0 -1.13952 -1.27177 -175.85 
-     15 126.562 894 0 1 -1.2383 -0.912056 -204.45 
-     15 175.016 895 0 0 -1.25622 -0.886912 -205.85 
-     15 225.365 892 1 1 -1.57977 -2.07031 -174.45 
-     15 120.718 889 1 0 -1.32029 -2.21133 -175.85 
-     15 72.4303 888 1 0 -1.24558 -2.25 -176.234 
-     15 266.943 916 0 1 3.42729 -4.70182 -204.45 
-     15 76.0687 917 0 1 3.45 -4.6847 -204.63 
-     15 116.44 877 0 0 3.63288 -4.52316 -205.85 
-     15 234.807 899 5 1 -0.165957 -0.529928 -54.45 
-     15 1.48737 893 5 0 -1.04602 -1.44583 -55.85 
-     15 122.848 892 5 0 -1.05045 -1.45 -55.8565 
-     15 22.2122 891 5 0 -1.24506 -1.65 -56.1869 
-     15 75.0856 850 4 1 -9.94331 -18.0243 -84.45 
-     15 72.4159 849 4 1 -10.05 -17.9485 -84.6447 
-     15 50.8199 820 4 0 -10.7149 -16.0253 -85.85 
-     15 75.6513 821 4 0 -10.7596 -15.85 -85.9439 
-     15 78.589 822 4 0 -10.8415 -15.65 -86.0955 
-     15 195.889 894 4 0 -27.6137 -1.05 -86.1043 
-     15 153.267 763 4 1 -27.3819 -1.0386 -84.85 
-     15 210.525 899 4 1 -0.226813 -0.95158 -84.45 
-     15 335.471 898 3 1 -0.258735 -1.10718 -114.45 
-     15 128.423 895 3 0 -0.270502 -1.04678 -115.85 
-     15 217.676 897 2 1 -0.539354 0.151588 -144.45 
-     15 118.71 900 2 0 -0.550043 0.175069 -145.85 
-     15 123.664 895 1 1 -0.866702 0.763319 -174.45 
-     15 107.408 903 1 0 -0.893432 0.773481 -175.85 
-     15 113.067 891 0 1 -1.67073 1.15547 -204.45 
-     15 134.987 905 0 0 -1.71793 1.13313 -205.85 
-     15 314.86 892 0 1 -1.53936 1.17728 -204.45 
-     15 147.59 904 0 0 -1.52186 1.02946 -205.85 
-     15 45.073 933 1 0 1.91653 6.81661 -176.25 
-     15 54.5009 934 1 0 1.93954 6.85 -176.08 
-     15 150.291 910 1 1 2.14659 7.02077 -174.85 
-     15 108.113 932 2 0 7.91361 6.51791 -146.25 
-     15 114.93 940 2 1 8.15056 6.50853 -144.85 
-     15 48.4156 1241 3 0 -59.8045 68.433 -116.25 
-     15 76.7493 1242 3 0 -59.8232 68.45 -116.242 
-     15 117.512 1243 3 0 -60.0347 68.65 -116.155 
-     15 72.131 1244 3 0 -60.3091 68.85 -116.03 
-     15 68.2221 1245 3 0 -60.5334 69.05 -115.915 
-     15 50.8161 589 3 1 -62.1259 70.313 -114.85 
-     15 105.302 588 3 1 -62.25 70.412 -114.766 
-     15 95.2534 587 3 1 -62.45 70.5775 -114.61 
-     15 14.2167 1344 4 0 -41.077 89.0206 -86.25 
-     15 130.418 1345 4 0 -41.0417 89.05 -86.2043 
-     15 9.96897 1346 4 0 -40.7944 89.25 -85.8808 
-     15 29.9483 699 4 1 -40.1111 89.8596 -84.85 
-     15 112.606 700 4 1 -40.05 89.914 -84.758 
-     15 125.378 899 0 1 -0.05 -6.42549 -204.47 
-     15 11.8333 898 0 1 -0.25 -6.51701 -204.804 
-     15 73.4173 866 0 0 -0.844646 -6.79504 -205.85 
-     15 60.1105 865 0 0 -0.961812 -6.85 -206.056 
-     15 276.832 900 1 0 43.9713 0.05 -176.222 
-     15 3.37766 572 1 0 -36.6516 -65.606 -176.092 
-     15 9.93626 772 0 1 -25.6354 -51.6207 -204.773 
-Number of digits in this event =  31
+Number of tracker hits in this event =  13
+     15 107.062 899 5 1 -0.125835 -0.0639704 -54.45 
+     15 145.76 899 5 0 -0.12803 -0.078776 -55.85 
+     15 104.21 899 4 1 -0.13048 -0.397361 -84.45 
+     15 133.663 898 4 0 -0.112846 -0.4171 -85.85 
+     15 123.911 901 3 1 0.294784 -0.867216 -114.45 
+     15 129.698 895 3 0 0.320688 -0.906635 -115.85 
+     15 113.311 904 2 1 0.855789 -1.71482 -144.45 
+     15 296.858 891 2 0 0.87682 -1.75652 -145.85 
+     15 89.5504 906 1 1 1.28776 -2.61843 -174.45 
+     15 132.695 886 1 0 1.30538 -2.65284 -175.85 
+     15 182.805 907 0 1 1.61811 -3.37631 -204.45 
+     15 212.598 883 0 0 1.63812 -3.42228 -205.85 
+     15 77.7222 593 1 0 9.89767 -61.2997 -176.104 
+Number of digits in this event =  9
 Event: 16
-Number of tracker hits in this event =  27
-     16 207.805 902 3 1 0.514803 0.707768 -114.45 
-     16 117.49 903 3 0 0.499188 0.701418 -115.85 
-     16 127.436 900 2 1 0.171646 0.647831 -144.45 
-     16 153.102 903 2 0 0.139191 0.669446 -145.85 
-     16 141.113 896 1 1 -0.729809 1.23557 -174.45 
-     16 110.402 905 1 0 -0.828578 1.23292 -175.85 
-     16 147.943 886 0 1 -2.79622 1.19821 -204.45 
-     16 145.222 905 0 0 -2.95325 1.2074 -205.85 
-     16 2.25482 902 2 0 0.183886 0.65 -146.244 
-     16 91.0525 899 4 1 -0.05 0.365516 -84.5595 
-     16 138.557 904 4 0 -0.345741 0.860908 -85.85 
-     16 24.2546 877 3 1 -4.64346 9.12894 -114.45 
-     16 125.311 876 3 1 -4.65 9.16711 -114.534 
-     16 40.7054 948 3 0 -4.87498 9.77985 -115.85 
-     16 76.1567 949 3 0 -4.89946 9.85 -115.994 
-     16 177.41 922 3 0 16.1328 4.61876 -116.25 
-     16 21.0854 921 3 0 16.41 4.45 -115.907 
-     16 46.9419 991 3 1 18.3321 4.41864 -114.85 
-     16 62.9018 992 3 1 18.45 4.41712 -114.786 
-     16 79.5777 993 3 1 18.65 4.37184 -114.654 
-     16 85.9341 994 3 1 18.85 4.18261 -114.544 
-     16 171.077 899 0 1 -0.05 0.682449 -204.673 
-     16 1.25337 903 0 0 -0.560989 0.848841 -205.85 
-     16 135.465 904 0 0 -0.564739 0.85 -205.858 
-     16 55.4792 898 0 1 -0.25 0.531706 -204.754 
-     16 109.098 899 0 0 -1.49387 -0.087853 -205.85 
-     16 87.0596 898 0 0 -1.81824 -0.25 -206.141 
-Number of digits in this event =  12
+Number of tracker hits in this event =  16
+     16 158.323 899 5 1 -0.136771 0.226919 -54.45 
+     16 151.46 900 5 0 -0.152718 0.217215 -55.85 
+     16 100.829 892 3 1 -1.488 0.332731 -114.45 
+     16 127.072 901 3 0 -1.55036 0.334789 -115.85 
+     16 193.192 885 2 1 -2.88698 0.295093 -144.45 
+     16 146.877 901 2 0 -2.87258 0.301799 -145.85 
+     16 125.686 886 1 1 -2.66498 0.443131 -174.45 
+     16 370.358 902 1 0 -2.71829 0.478595 -175.85 
+     16 118.421 881 0 1 -3.73724 1.26369 -204.45 
+     16 120.657 906 0 0 -3.78417 1.31224 -205.85 
+     16 62.8001 892 6 0 0.05 -1.54673 -25.9086 
+     16 66.8919 891 6 0 0.165851 -1.65 -25.9432 
+     16 343.086 907 6 1 1.48363 -1.97728 -24.85 
+     16 189.815 892 0 1 -1.46062 -0.481227 -204.45 
+     16 19.9083 893 0 1 -1.45 -0.470976 -204.763 
+     16 248.176 898 0 0 -1.43266 -0.407712 -205.85 
+Number of digits in this event =  13
 Event: 17
-Number of tracker hits in this event =  21
-     17 116.862 899 4 1 -0.218646 -0.301619 -84.45 
-     17 120.595 898 4 0 -0.217958 -0.317425 -85.85 
-     17 105.633 899 3 1 -0.203363 -0.669455 -114.45 
-     17 121.426 896 3 0 -0.188215 -0.687438 -115.85 
-     17 115.941 900 2 1 0.0544257 -0.989743 -144.45 
-     17 181.843 895 2 0 0.0805931 -1.00839 -145.85 
-     17 193.365 902 1 1 0.577677 -1.44896 -174.45 
-     17 139.028 892 1 0 0.600236 -1.46133 -175.85 
-     17 14.3519 904 0 1 1.04907 -1.68834 -204.45 
-     17 92.8537 905 0 1 1.05 -1.68844 -204.5 
-     17 98.3838 891 0 0 1.07617 -1.69205 -205.85 
-     17 85.5304 900 6 1 0.0927362 0.05 -24.6499 
-     17 33.1799 901 6 1 0.25 0.142316 -24.7777 
-     17 18.4548 902 6 0 0.963197 0.637565 -25.85 
-     17 333.136 903 6 0 0.996298 0.65 -25.8984 
-     17 69.0219 903 1 1 0.65 -1.50071 -174.454 
-     17 188.229 904 1 1 0.85 -1.4302 -174.464 
-     17 115.205 902 1 0 2.01309 0.547774 -175.85 
-     17 30.1156 903 1 0 2.11913 0.65 -175.863 
-     17 256.069 914 1 1 2.89183 0.78413 -174.85 
-     17 128.086 1617 0 1 143.56 13.4089 -204.76 
-Number of digits in this event =  10
-Event: 18
-Number of tracker hits in this event =  19
-     18 135.784 899 5 1 -0.0850984 0.123803 -54.45 
-     18 114.996 900 5 0 -0.0927098 0.106245 -55.85 
-     18 158.667 899 4 1 -0.239315 -0.252128 -84.45 
-     18 118.435 898 4 0 -0.241608 -0.266127 -85.85 
-     18 123.571 898 3 1 -0.319913 -0.547599 -114.45 
-     18 134.196 897 3 0 -0.319877 -0.555606 -115.85 
-     18 113.57 898 2 1 -0.320897 -0.72196 -144.45 
-     18 129.526 896 2 0 -0.313811 -0.723296 -145.85 
-     18 102.066 899 1 1 -0.150627 -0.745731 -174.45 
-     18 129.576 896 1 0 -0.145638 -0.745508 -175.85 
-     18 111.817 899 0 1 -0.0538152 -0.754348 -204.45 
-     18 94.736 900 6 1 0.05 0.0990643 -24.4656 
-     18 73.8041 896 6 0 0.698756 -0.787217 -25.85 
-     18 119.572 895 6 0 0.858951 -0.85 -26.0217 
-     18 5.04851 894 6 0 1.16461 -1.05 -26.2355 
-     18 50.9647 900 0 1 0.05 -0.746338 -204.741 
-     18 39.7787 899 0 0 1.67468 -0.098724 -205.85 
-     18 164.727 900 0 0 1.88862 0.05 -205.98 
-     18 237.442 912 0 1 2.51474 -0.538603 -204.85 
+Number of tracker hits in this event =  11
+     17 198.593 897 4 1 -0.47641 0.315296 -84.45 
+     17 332.292 901 4 0 -0.4648 0.278047 -85.85 
+     17 155.653 898 3 1 -0.32245 -0.508794 -114.45 
+     17 103.273 897 3 0 -0.307658 -0.559271 -115.85 
+     17 128.923 900 2 1 0.230805 -1.37167 -144.45 
+     17 98.3693 893 2 0 0.208978 -1.38371 -145.85 
+     17 116.562 898 1 1 -0.353408 -1.63408 -174.45 
+     17 121.555 892 1 0 -0.410865 -1.62262 -175.85 
+     17 138.872 891 0 1 -1.68689 -1.33034 -204.45 
+     17 118.953 893 0 0 -1.8419 -1.38621 -205.85 
+     17 192.978 909 0 0 -1.87197 2.0254 -206.009 
 Number of digits in this event =  9
+Event: 18
+Number of tracker hits in this event =  12
+     18 122.65 900 3 1 0.22954 -0.114522 -114.45 
+     18 114.562 899 3 0 0.236257 -0.107662 -115.85 
+     18 104.422 902 1 1 0.584031 -0.17411 -174.45 
+     18 90.2971 899 1 0 0.593682 -0.171162 -175.85 
+     18 131.998 903 0 1 0.805422 -0.0993923 -204.45 
+     18 156.932 899 0 0 0.819946 -0.0992103 -205.85 
+     18 85.8998 900 2 1 0.130606 0.196108 -144.45 
+     18 597.101 899 2 1 -0.05 -0.533218 -144.609 
+     18 44.3971 898 2 1 -0.25 -1.10691 -144.519 
+     18 89.4988 893 2 0 -0.573913 -1.29998 -145.85 
+     18 287.718 892 2 0 -0.684531 -1.45 -146.012 
+     18 55.8245 698 2 0 44.8912 -40.2958 -146.25 
+Number of digits in this event =  6
 Event: 19
-Number of tracker hits in this event =  16
-     19 165.827 899 6 0 -0.0647773 -0.140873 -25.85 
-     19 281.294 893 5 1 -1.40187 -2.76446 -54.45 
-     19 108.931 885 5 0 -1.43902 -2.85831 -55.85 
-     19 463.585 889 4 1 -2.07117 -5.77069 -84.45 
-     19 68.976 890 4 1 -2.05 -5.77832 -84.6325 
-     19 112.96 871 4 0 -1.92019 -5.83438 -85.85 
-     19 17.7229 870 4 0 -1.88592 -5.85 -86.1698 
-     19 146.463 904 3 1 0.896817 -7.12918 -114.45 
-     19 120.757 864 3 0 0.994571 -7.0859 -115.85 
-     19 102.562 915 2 1 3.06365 -5.96655 -144.45 
-     19 233.612 870 2 0 3.08944 -5.91661 -145.85 
-     19 103.193 921 1 1 4.32851 -4.55753 -174.45 
-     19 105.414 877 1 0 4.43284 -4.52914 -175.85 
-     19 134.868 934 0 1 6.89913 -4.03417 -204.45 
-     19 134.695 880 0 0 7.07074 -3.91019 -205.85 
-     19 26.9005 421 2 0 -43.9253 -95.8355 -146.25 
-Number of digits in this event =  10
+Number of tracker hits in this event =  42
+     19 435.07 899 3 1 -0.102078 -0.14284 -114.45 
+     19 353.143 899 3 0 -0.135291 -0.104251 -115.85 
+     19 108.877 896 2 1 -0.784685 0.567455 -144.45 
+     19 92.5658 902 2 0 -0.84214 0.512707 -145.85 
+     19 376.263 891 1 1 -1.68901 -0.757109 -174.45 
+     19 324.614 895 1 0 -1.70878 -0.996883 -175.85 
+     19 27.8307 894 1 0 -1.71322 -1.05 -176.155 
+     19 166.187 890 0 1 -1.85035 -5.73282 -204.45 
+     19 313.004 870 0 0 -1.90079 -5.93366 -205.85 
+     19 5.14197 896 5 0 -0.05 -0.714533 -56.2355 
+     19 102.447 767 5 0 -27.7257 -26.5536 -56.25 
+     19 36.5719 766 5 0 -27.818 -26.65 -55.941 
+     19 103.224 764 5 1 -27.0674 -28.0918 -54.85 
+     19 94.6548 765 5 1 -27.05 -28.126 -54.8255 
+     19 126.383 928 2 1 5.65376 -22.4431 -144.699 
+     19 110.529 900 2 1 0.230172 -0.77373 -144.45 
+     19 158.44 896 2 0 0.224308 -0.788213 -145.85 
+     19 206.859 901 1 1 0.448796 -0.918336 -174.45 
+     19 103.112 902 1 1 0.45 -0.919042 -174.533 
+     19 140.973 904 0 1 0.951018 -1.37626 -204.45 
+     19 180.93 893 0 0 0.967892 -1.40222 -205.85 
+     19 55.3867 895 2 0 0.141846 -0.85 -146.146 
+     19 365.581 900 1 1 0.25 0.277564 -174.752 
+     19 128.977 901 1 0 0.301701 0.449209 -175.85 
+     19 133.294 902 1 0 0.302054 0.45 -175.855 
+     19 121.09 160 1 0 -153.788 -148.066 -176.25 
+     19 79.9631 159 1 0 -153.97 -148.15 -176.205 
+     19 83.6047 158 1 0 -154.173 -148.35 -176.149 
+     19 66.6325 157 1 0 -154.338 -148.55 -176.175 
+     19 125.005 899 2 1 -0.215075 -0.0960276 -144.45 
+     19 200.615 899 2 0 -0.227334 -0.0734341 -145.85 
+     19 156.302 898 1 1 -0.445143 0.389075 -174.45 
+     19 128.78 898 0 1 -0.399293 1.09938 -204.45 
+     19 119.692 905 0 0 -0.408043 1.14512 -205.85 
+     19 71.8646 896 1 0 0.395892 -0.85 -175.977 
+     19 116.555 911 0 1 2.30892 6.75813 -204.45 
+     19 408.874 937 0 0 2.71562 7.45466 -205.85 
+     19 12.5604 938 0 0 2.82369 7.65 -206.216 
+     19 184.344 892 1 0 -0.05 -1.52559 -175.857 
+     19 40.7845 876 0 1 -4.80087 -3.65644 -204.45 
+     19 79.2086 875 0 1 -4.85 -3.66814 -204.608 
+     19 143.558 881 0 0 -5.22739 -3.72029 -205.85 
+Number of digits in this event =  24
 Event: 20
-Number of tracker hits in this event =  11
-     20 109.954 900 5 1 0.0868673 0.0735794 -54.45 
-     20 114.16 899 4 1 -0.190172 -0.792371 -84.45 
-     20 108.736 896 4 0 -0.196422 -0.829251 -85.85 
-     20 193.712 898 3 1 -0.375097 -1.60581 -114.45 
-     20 142.727 892 3 0 -0.375507 -1.63863 -115.85 
-     20 118.579 898 2 1 -0.349281 -2.28264 -144.45 
-     20 114.334 888 2 0 -0.338457 -2.3124 -145.85 
-     20 181.446 899 1 1 -0.0702175 -2.92057 -174.45 
-     20 122.905 885 1 0 -0.0637579 -2.95743 -175.85 
-     20 152.529 900 0 1 0.0655669 -3.66443 -204.45 
-     20 546.205 881 0 0 0.0705517 -3.70298 -205.85 
-Number of digits in this event =  7
+Number of tracker hits in this event =  21
+     20 120.013 900 5 1 0.220652 -0.135805 -54.45 
+     20 463.942 899 5 0 0.226638 -0.15095 -55.85 
+     20 105.623 901 4 1 0.38137 -0.447599 -84.45 
+     20 124.11 897 4 0 0.398155 -0.462144 -85.85 
+     20 102.25 903 3 1 0.751039 -0.764729 -114.45 
+     20 120.432 896 3 0 0.749634 -0.793899 -115.85 
+     20 267.959 903 2 1 0.72315 -1.39192 -144.45 
+     20 112.905 893 2 0 0.721727 -1.43529 -145.85 
+     20 172.195 903 1 1 0.679607 -2.41034 -174.45 
+     20 514.683 887 1 0 0.674366 -2.47361 -175.85 
+     20 111.326 902 0 1 0.519756 -3.77874 -204.45 
+     20 122.927 880 0 0 0.538156 -3.85651 -205.85 
+     20 109.235 896 2 0 0.942788 -0.816748 -145.85 
+     20 115.726 926 1 1 5.39919 8.89104 -174.45 
+     20 55.7321 943 1 0 4.85218 8.67831 -175.85 
+     20 81.6943 942 1 0 4.7756 8.65 -176.039 
+     20 84.2899 866 0 1 -6.72433 5.52187 -204.45 
+     20 50.6883 865 0 1 -6.85 5.56216 -204.686 
+     20 134.209 928 0 0 -7.48992 5.77437 -205.85 
+     20 206.262 780 9 1 -23.9474 34.5019 65.503 
+     20 71.2988 888 1 0 127.879 -2.4041 -176.158 
+Number of digits in this event =  13
 Event: 21
-Number of tracker hits in this event =  13
-     21 120.937 899 5 1 -0.202305 -0.121028 -54.45 
-     21 214.395 899 5 0 -0.204785 -0.130794 -55.85 
-     21 134.599 898 4 1 -0.278991 -0.335041 -84.45 
-     21 126.515 898 4 0 -0.289706 -0.336488 -85.85 
-     21 122.72 897 3 1 -0.51857 -0.366112 -114.45 
-     21 144.198 898 3 0 -0.530479 -0.370698 -115.85 
-     21 227.338 895 2 1 -0.870059 -0.485713 -144.45 
-     21 226.645 897 2 0 -0.8891 -0.47979 -145.85 
-     21 102.368 893 1 1 -1.29542 -0.318519 -174.45 
-     21 134.569 898 1 0 -1.32368 -0.309754 -175.85 
-     21 123.81 891 0 1 -1.80184 -0.176581 -204.45 
-     21 126.544 899 0 0 -1.79795 -0.193531 -205.85 
-     21 132.301 767 10 0 -28.1939 -26.5399 93.75 
-Number of digits in this event =  14
+Number of tracker hits in this event =  59
+     21 150.523 900 4 1 0.129762 -0.494373 -84.45 
+     21 110.788 897 4 0 0.136344 -0.545568 -85.85 
+     21 124.076 901 3 1 0.25281 -1.60474 -114.45 
+     21 106.594 891 3 0 0.286571 -1.6655 -115.85 
+     21 117.202 904 2 1 0.866353 -2.90659 -144.45 
+     21 163.75 885 2 0 0.874471 -2.98564 -145.85 
+     21 114.754 904 1 1 0.865991 -4.77863 -174.45 
+     21 123.245 875 1 0 0.901972 -4.86183 -175.85 
+     21 90.4908 907 0 1 1.62049 -6.73886 -204.45 
+     21 30.9963 908 0 1 1.65 -6.79058 -204.736 
+     21 379.379 865 0 0 1.76313 -6.98951 -205.85 
+     21 20.6832 864 0 0 1.79754 -7.05 -206.189 
+     21 48.4712 889 4 1 -2.08516 7.14536 -84.45 
+     21 88.0103 890 4 1 -2.05 7.24528 -84.6066 
+     21 75.3138 939 4 0 -1.82784 7.92575 -85.85 
+     21 61.3004 940 4 0 -1.7911 8.05 -86.0804 
+     21 105.163 906 3 1 1.38003 21.0223 -114.45 
+     21 105.622 905 3 1 1.25 21.2381 -114.672 
+     21 75.6819 1012 3 0 0.381139 22.4826 -115.85 
+     21 89.0575 1013 3 0 0.264596 22.65 -116.009 
+     21 53.4942 1014 3 0 0.140489 22.85 -116.151 
+     21 46.6357 621 2 1 -55.6897 96.5099 -144.45 
+     21 134.093 622 2 1 -55.65 96.4597 -144.523 
+     21 11.9714 1378 2 0 -55.0405 95.7765 -145.85 
+     21 165.755 1377 2 0 -55.0121 95.75 -145.909 
+     21 250.823 1343 2 0 -82.6679 88.6528 -146.25 
+     21 50.7171 471 2 1 -85.671 89.7729 -144.85 
+     21 73.7255 470 2 1 -85.85 89.8397 -144.779 
+     21 83.7249 469 2 1 -86.0774 90.15 -144.636 
+     21 90.1015 468 2 1 -86.25 90.3156 -144.569 
+     21 83.4125 467 2 1 -86.45 90.5684 -144.596 
+     21 50.9158 466 2 1 -86.65 90.7859 -144.696 
+     21 48.1272 1356 2 0 -87.2414 91.4894 -145.85 
+     21 94.1427 1357 2 0 -87.2882 91.55 -145.944 
+     21 315.703 814 1 1 -17.2092 66.3371 -174.45 
+     21 64.1936 768 0 1 -26.4172 73.5271 -204.45 
+     21 69.9418 767 0 1 -26.45 73.5567 -204.487 
+     21 12.2874 1267 0 0 -26.8124 73.581 -205.85 
+     21 340.599 901 1 1 0.427213 -1.01747 -174.45 
+     21 142.023 893 1 0 0.204251 -1.26161 -175.85 
+     21 65.792 895 0 1 -0.971287 -7.00036 -204.45 
+     21 72.0746 896 0 1 -0.85 -6.95746 -204.543 
+     21 70.2046 897 0 1 -0.65 -6.90762 -204.715 
+     21 23.9347 898 0 1 -0.45 -6.91719 -204.802 
+     21 107.96 895 1 0 0.434471 -1.03337 -175.85 
+     21 121.638 900 0 1 0.232574 -1.02577 -204.45 
+     21 128.851 895 0 0 0.216368 -1.02427 -205.85 
+     21 134.319 1207 3 0 79.5966 61.5072 -116.25 
+     21 110.456 1208 3 0 79.7232 61.65 -116.088 
+     21 93.0519 1209 3 0 79.5195 61.85 -116.082 
+     21 35.9979 1210 3 0 79.5033 62.05 -116.168 
+     21 179.846 1490 3 0 54.854 118.302 -116.25 
+     21 41.9909 1491 3 0 54.8617 118.35 -116.228 
+     21 153.277 1489 3 0 54.964 118.15 -115.936 
+     21 227.179 1767 11 0 -68.2677 173.575 123.809 
+     21 65.4137 1100 1 1 40.2108 -90.6832 -174.74 
+     21 146.067 1101 1 1 40.25 -90.7226 -174.639 
+     21 83.1091 443 1 0 40.023 -91.3742 -175.85 
+     21 59.7103 442 1 0 39.9844 -91.55 -176.091 
+Number of digits in this event =  20
 Event: 22
-Number of tracker hits in this event =  14
-     22 134.435 900 5 1 0.137499 0.117222 -54.45 
-     22 235.426 900 5 0 0.146582 0.130606 -55.85 
-     22 111.535 901 4 1 0.330827 0.366468 -84.45 
-     22 114.415 901 4 0 0.332471 0.378757 -85.85 
-     22 123.247 901 3 1 0.369877 0.627023 -114.45 
-     22 114.233 902 3 0 0.366192 0.634668 -115.85 
-     22 116.814 900 2 1 0.188886 0.804133 -144.45 
-     22 116.503 903 2 0 0.183784 0.810235 -145.85 
-     22 104.655 900 1 1 0.0694602 0.888186 -174.45 
-     22 305.141 904 1 0 0.0751223 0.912623 -175.85 
-     22 114.203 900 0 1 0.162879 1.39802 -204.45 
-     22 145.023 906 0 0 0.162037 1.44175 -205.85 
-     22 42.84 907 0 0 0.162012 1.45 -206.11 
-     22 52.1127 1674 2 0 -68.6264 155.041 -145.884 
-Number of digits in this event =  6
+Number of tracker hits in this event =  16
+     22 147.8 900 5 1 0.11767 0.051882 -54.45 
+     22 128.423 900 5 0 0.129066 0.0521347 -55.85 
+     22 145.413 901 4 1 0.354279 0.0720791 -84.45 
+     22 181.701 900 4 0 0.351728 0.0710785 -85.85 
+     22 1.19003 901 3 1 0.301739 0.05 -114.846 
+     22 190.957 900 3 0 0.27542 0.0989947 -115.85 
+     22 124.081 897 2 1 -0.470556 1.7797 -144.45 
+     22 3.46443 898 2 1 -0.45 1.75259 -144.834 
+     22 86.8694 908 2 0 -0.416766 1.67497 -145.85 
+     22 23.6675 907 2 0 -0.406074 1.65 -146.177 
+     22 126.168 900 1 1 0.217605 -0.348928 -174.45 
+     22 38.4511 897 1 0 0.125744 -0.621917 -175.85 
+     22 103.485 896 1 0 0.116074 -0.65 -175.995 
+     22 155.898 892 0 1 -1.62026 -6.79245 -204.45 
+     22 120.244 864 0 0 -1.57477 -7.17853 -205.85 
+     22 47.5038 863 0 0 -1.55913 -7.25 -206.113 
+Number of digits in this event =  10
 Event: 23
-Number of tracker hits in this event =  52
-     23 111.48 900 4 1 0.152762 0.0928753 -84.45 
-     23 116.138 900 4 0 0.155018 0.110965 -85.85 
-     23 98.8831 900 3 1 0.215581 0.488297 -114.45 
-     23 120.277 902 3 0 0.215341 0.505343 -115.85 
-     23 89.0213 900 2 1 0.209308 0.843156 -144.45 
-     23 93.8197 904 2 0 0.209309 0.872534 -145.85 
-     23 507.47 900 1 1 0.187333 1.47296 -174.45 
-     23 210.156 907 1 0 0.178027 1.50132 -175.85 
-     23 31.8856 872 0 1 -5.46184 115.796 -204.691 
-     23 180.123 873 0 1 -5.45 115.811 -204.665 
-     23 47.5984 911 1 0 0.375974 2.33554 -175.85 
-     23 74.7247 912 1 0 0.404774 2.45 -176.041 
-     23 200.524 925 0 1 5.05597 21.2314 -204.45 
-     23 192.616 926 0 1 5.25 21.868 -204.571 
-     23 220.2 927 0 1 5.45 22.4831 -204.645 
-     23 228.824 928 0 1 5.65 23.1389 -204.626 
-     23 362.71 929 0 1 5.85 23.7775 -204.641 
-     23 116.004 930 0 1 6.05 24.8383 -204.82 
-     23 5.09504 1043 0 0 6.45482 28.8326 -205.85 
-     23 87.1277 1044 0 0 6.45656 28.85 -205.854 
-     23 75.1138 1045 0 0 6.4756 29.05 -205.909 
-     23 88.1292 1046 0 0 6.48572 29.25 -205.961 
-     23 185.742 1047 0 0 6.48917 29.45 -206.016 
-     23 418.453 1048 0 0 6.47613 29.65 -206.062 
-     23 50.3298 1049 0 0 6.45762 29.85 -206.124 
-     23 59.7046 1050 0 0 6.43745 30.05 -206.187 
-     23 102.689 1380 0 0 41.9172 96.1502 -206.25 
-     23 469.637 1381 0 0 42.2036 96.35 -206.135 
-     23 222.038 1382 0 0 42.5556 96.55 -206.002 
-     23 12.373 1129 0 1 46.0051 97.673 -204.85 
-     23 282.072 1130 0 1 46.05 97.688 -204.835 
-     23 325.341 1337 1 0 53.6879 87.6479 -176.25 
-     23 173.486 1171 1 1 54.2748 87.1272 -174.85 
-     23 23.7619 1172 1 1 54.45 87.007 -174.504 
-     23 59.0798 1128 2 0 27.7273 45.8023 -146.25 
-     23 86.085 1127 2 0 27.6268 45.65 -146.146 
-     23 103.86 1126 2 0 27.4508 45.45 -145.979 
-     23 206.896 1032 2 1 26.6073 44.776 -144.85 
-     23 128.57 1031 2 1 26.45 44.6585 -144.653 
-     23 49.7578 1033 2 1 26.65 44.4716 -144.611 
-     23 92.9903 1034 2 1 26.85 44.4474 -144.574 
-     23 83.7465 1035 2 1 27.05 44.3264 -144.682 
-     23 110.746 1121 2 0 28.023 44.3671 -145.85 
-     23 266.17 1045 2 1 29.1275 44.5477 -144.85 
-     23 86.6375 1046 2 1 29.25 44.8277 -144.743 
-     23 197.785 1047 2 1 29.45 44.9197 -144.754 
-     23 25.9117 901 0 0 0.470203 0.3053 -206.179 
-     23 115.351 907 0 1 1.53031 1.05081 -204.45 
-     23 113.222 905 0 0 1.6314 1.11431 -205.85 
-     23 76.5825 1403 1 1 100.867 -76.0024 -174.484 
-     23 128.872 326 7 1 -114.803 -71.0924 5.27728 
-     23 72.6787 325 7 1 -114.95 -71.1309 5.29283 
-Number of digits in this event =  23
+Number of tracker hits in this event =  15
+     23 147.915 901 5 1 0.43529 0.103381 -54.45 
+     23 102.127 900 5 0 0.45736 0.111592 -55.85 
+     23 167.186 904 4 1 1.01174 0.339309 -84.45 
+     23 157.643 901 4 0 1.0387 0.348143 -85.85 
+     23 169.962 907 3 1 1.51238 0.492842 -114.45 
+     23 221.055 902 3 0 1.54036 0.509176 -115.85 
+     23 187.597 910 2 1 2.16977 0.86593 -144.45 
+     23 109.175 904 2 0 2.19562 0.896175 -145.85 
+     23 102.693 913 1 1 2.6903 1.46591 -174.45 
+     23 126.815 907 1 0 2.73739 1.53414 -175.85 
+     23 187.388 918 0 1 3.74964 3.05453 -204.45 
+     23 100.055 915 0 0 3.89573 3.10429 -205.85 
+     23 14.1904 388 3 0 -103.173 -102.371 -116.25 
+     23 84.6505 389 3 0 -103.211 -102.35 -116.234 
+     23 252.964 390 3 0 -103.304 -102.15 -116.192 
+Number of digits in this event =  10
 Event: 24
-Number of tracker hits in this event =  12
-     24 116.64 899 5 1 -0.1754 0.0695465 -54.45 
-     24 128.04 900 5 0 -0.180285 0.0734742 -55.85 
-     24 100.703 898 4 1 -0.286539 0.122068 -84.45 
-     24 126.996 900 4 0 -0.288521 0.124534 -85.85 
-     24 127.348 898 3 1 -0.317596 0.167661 -114.45 
-     24 131.085 900 3 0 -0.317078 0.173565 -115.85 
-     24 114.696 898 2 1 -0.316371 0.282362 -144.45 
-     24 108.269 901 2 0 -0.311664 0.278305 -145.85 
-     24 133.309 899 1 1 -0.185021 0.197066 -174.45 
-     24 133.915 900 1 0 -0.176814 0.189376 -175.85 
-     24 277.978 897 5 0 1.42644 -0.501956 -55.85 
-     24 55.064 900 2 0 -0.132088 0.179748 -145.918 
-Number of digits in this event =  9
+Number of tracker hits in this event =  10
+     24 126.733 899 4 1 -0.10372 0.0704326 -84.45 
+     24 104.914 900 4 0 -0.11412 0.0670696 -85.85 
+     24 143.544 896 2 1 -0.765835 0.0938153 -144.45 
+     24 165.662 900 2 0 -0.787724 0.0972519 -145.85 
+     24 124.15 894 1 1 -1.21216 0.178888 -174.45 
+     24 119.939 900 1 0 -1.24634 0.18536 -175.85 
+     24 120.708 890 0 1 -1.92218 0.28376 -204.45 
+     24 154.3 901 0 0 -1.94966 0.294115 -205.85 
+     24 66.0006 421 4 1 -95.788 -134.285 -84.6574 
+     24 365.762 1500 3 0 29.7802 120.205 -116.25 
+Number of digits in this event =  8
 Event: 25
-Number of tracker hits in this event =  9
-     25 124.705 900 4 1 0.17481 -0.0515003 -84.45 
-     25 79.9821 904 2 1 1.04182 -0.131769 -144.45 
-     25 23.8223 905 2 1 1.05 -0.134655 -144.762 
-     25 107.68 899 2 0 1.0685 -0.138217 -145.85 
-     25 157.33 905 1 1 1.15066 -0.263448 -174.45 
-     25 106.172 898 1 0 1.0276 -0.293272 -175.85 
-     25 51.053 892 0 1 -1.62312 -1.12744 -204.45 
-     25 103.566 891 0 1 -1.65 -1.13532 -204.649 
-     25 107.062 894 0 0 -1.82028 -1.1883 -205.85 
-Number of digits in this event =  3
+Number of tracker hits in this event =  29
+     25 354.459 902 4 1 0.60442 -0.0581618 -84.45 
+     25 102.779 899 4 0 0.622619 -0.0709471 -85.85 
+     25 110.37 904 3 1 1.00331 -0.322918 -114.45 
+     25 155.649 898 3 0 1.02261 -0.333417 -115.85 
+     25 141.006 907 2 1 1.46664 -0.534079 -144.45 
+     25 199.429 897 2 0 1.4944 -0.547799 -145.85 
+     25 130.098 910 1 1 2.09472 -0.815483 -174.45 
+     25 208.883 896 1 0 2.12725 -0.828358 -175.85 
+     25 112.853 913 0 1 2.81506 -1.11431 -204.45 
+     25 122.985 894 0 0 2.84495 -1.12784 -205.85 
+     25 159.37 899 6 0 -0.270124 -0.0584558 -25.85 
+     25 167.906 938 6 0 -25.872 7.65998 -26.25 
+     25 94.912 764 6 1 -27.0502 7.73501 -24.85 
+     25 111.388 763 6 1 -27.25 7.73616 -24.6506 
+     25 43.0272 946 6 0 -27.1555 9.36007 -25.85 
+     25 64.7079 947 6 0 -27.1439 9.45 -25.9136 
+     25 6.79523 948 6 0 -27.1309 9.65 -25.8811 
+     25 133.635 765 6 1 -27.0186 11.7142 -24.85 
+     25 7.12214 966 6 0 -27.3235 13.4295 -25.85 
+     25 80.5702 967 6 0 -27.328 13.45 -25.8662 
+     25 92.6385 968 6 0 -27.3996 13.65 -25.9583 
+     25 65.0634 969 6 0 -27.566 13.85 -26.0628 
+     25 71.2888 970 6 0 -27.6188 14.05 -26.1277 
+     25 42.6797 971 6 0 -27.6996 14.25 -26.1985 
+     25 77.7023 1275 6 0 -90.5254 75.1358 -26.25 
+     25 67.3213 1276 6 0 -90.7009 75.25 -26.1802 
+     25 85.076 901 4 1 0.431033 -0.05 -84.5722 
+     25 11.3517 1661 0 0 -17.0254 152.35 -206.084 
+     25 204.301 1662 0 0 -17.013 152.55 -206.016 
+Number of digits in this event =  13
 Event: 26
-Number of tracker hits in this event =  6
-     26 127.357 900 3 1 0.0542493 0.375144 -114.45 
-     26 39.1394 901 3 0 0.0504687 0.371367 -115.85 
-     26 133.337 900 0 1 0.102477 -0.217761 -204.45 
-     26 118.893 899 0 0 0.101903 -0.231817 -205.85 
-     26 70.1127 226 8 0 -6.02337 -134.864 33.75 
-     26 399.707 227 8 0 -6.13421 -134.75 33.9128 
-Number of digits in this event =  5
+Number of tracker hits in this event =  54
+     26 370.042 899 5 1 -0.0733724 -0.58774 -54.45 
+     26 110.495 897 5 0 -0.0767418 -0.626912 -55.85 
+     26 103.155 899 4 1 -0.135196 -1.36882 -84.45 
+     26 253.375 893 4 0 -0.142148 -1.40097 -85.85 
+     26 154.326 898 3 1 -0.340313 -2.11276 -114.45 
+     26 273.775 889 3 0 -0.348295 -2.14419 -115.85 
+     26 128.451 897 2 1 -0.500178 -2.89532 -144.45 
+     26 242.188 885 2 0 -0.490486 -2.95059 -145.85 
+     26 119.657 895 1 1 -0.861514 -3.58858 -174.45 
+     26 143.126 881 1 0 -0.876168 -3.66223 -175.85 
+     26 120.109 894 0 1 -1.20183 -5.35094 -204.45 
+     26 194.458 872 0 0 -1.2073 -5.46053 -205.85 
+     26 170.789 909 1 1 1.93811 -6.6864 -174.45 
+     26 184.193 865 1 0 2.06163 -6.98276 -175.85 
+     26 199.952 864 1 0 2.09521 -7.05 -176.17 
+     26 130.742 926 0 1 5.34374 -12.6598 -204.45 
+     26 219.792 835 0 0 5.49475 -12.9796 -205.85 
+     26 18.1619 834 0 0 5.52692 -13.05 -206.164 
+     26 198.817 870 2 0 18.4669 -6.04963 -146.25 
+     26 74.7718 869 2 0 18.4661 -6.05 -146.248 
+     26 339.988 871 2 0 17.9847 -5.85 -145.914 
+     26 38.7438 781 2 0 9.42186 -23.8088 -146.25 
+     26 10.2573 499 2 0 -29.0673 -80.0676 -146.25 
+     26 360.908 900 5 1 0.05 -0.352184 -54.581 
+     26 32.5939 901 5 1 0.25 -0.32067 -54.767 
+     26 90.3902 900 5 0 2.45035 0.05 -56.1583 
+     26 184.596 899 3 1 -0.143086 -2.09845 -114.45 
+     26 198.562 892 3 0 0.338233 -1.51941 -115.85 
+     26 190.865 893 3 0 0.392091 -1.45 -116.014 
+     26 139.517 898 5 0 0.172536 -0.409828 -55.85 
+     26 126.833 905 4 1 1.07318 -1.37957 -84.45 
+     26 142.403 909 3 1 1.95989 -2.04978 -114.45 
+     26 149.255 908 2 1 1.7321 -2.40359 -144.45 
+     26 161.111 888 2 0 1.67684 -2.36267 -145.85 
+     26 134.081 903 1 1 0.771648 -1.52876 -174.45 
+     26 105.209 892 1 0 0.739989 -1.51091 -175.85 
+     26 10.1379 900 3 1 0.05 -2.13559 -114.818 
+     26 153.952 894 3 0 1.0197 -1.25 -116.065 
+     26 57.3994 895 3 0 1.42055 -1.05 -115.993 
+     26 18.4159 911 3 1 2.40525 -0.582659 -114.85 
+     26 88.1044 912 3 1 2.45 -0.558734 -114.794 
+     26 135.994 908 3 1 1.81692 -2.24299 -114.45 
+     26 49.1517 891 3 0 1.53614 -1.73959 -115.85 
+     26 24.255 964 3 0 -21.801 13.014 -116.25 
+     26 255.3 965 3 0 -21.8328 13.05 -116.201 
+     26 98.8835 966 3 0 -21.9368 13.25 -116.013 
+     26 104.251 793 3 1 -21.3671 12.8861 -114.85 
+     26 161.089 899 5 0 0.110981 -0.0726486 -55.85 
+     26 111.282 899 2 1 -0.242496 0.0799034 -144.45 
+     26 149.657 900 2 0 -0.252932 0.0887629 -145.85 
+     26 106.259 898 1 1 -0.419912 0.312567 -174.45 
+     26 107.335 901 1 0 -0.429678 0.332323 -175.85 
+     26 106.138 897 0 1 -0.56414 0.806585 -204.45 
+     26 147.172 903 0 0 -0.554905 0.826656 -205.85 
+Number of digits in this event =  34
 Event: 27
-Number of tracker hits in this event =  28
-     27 109.095 899 5 1 -0.209653 -0.26894 -54.45 
-     27 124.586 898 5 0 -0.232878 -0.280256 -55.85 
-     27 319.47 896 4 1 -0.743917 -0.498195 -84.45 
-     27 126.638 897 4 0 -0.768922 -0.516059 -85.85 
-     27 373.663 893 3 1 -1.27482 -0.859806 -114.45 
-     27 118.217 895 3 0 -1.29987 -0.876374 -115.85 
-     27 111.738 891 2 1 -1.82213 -1.17929 -144.45 
-     27 109.629 894 2 0 -1.85187 -1.18561 -145.85 
-     27 152.751 887 1 1 -2.47515 -1.30419 -174.45 
-     27 121.975 893 1 0 -2.52024 -1.31387 -175.85 
-     27 114.672 882 0 1 -3.52037 -1.46771 -204.45 
-     27 116.357 892 0 0 -3.58263 -1.48012 -205.85 
-     27 84.2051 895 4 1 -0.85 -0.595169 -84.5883 
-     27 19.4911 894 4 1 -1.05 -0.65115 -84.7876 
-     27 169.837 894 4 0 -1.70299 -1.08672 -85.85 
-     27 38.3224 711 4 0 -128.127 -37.7785 -86.25 
-     27 82.5191 710 4 0 -128.248 -37.85 -86.2128 
-     27 180.18 709 4 0 -128.502 -38.05 -86.1131 
-     27 269.683 708 4 0 -128.989 -38.25 -86.1425 
-     27 25.7869 707 4 0 -129.889 -38.45 -86.1987 
-     27 174.986 896 4 0 -0.712746 -0.724569 -85.85 
-     27 115.303 881 3 0 -1.77848 -3.83726 -115.85 
-     27 62.7158 882 3 0 -1.86261 -3.65 -116.076 
-     27 76.8428 847 2 1 -10.4669 18.1533 -144.45 
-     27 79.4917 846 2 1 -10.65 18.29 -144.66 
-     27 113.073 994 2 0 -11.6232 18.9272 -145.85 
-     27 66.1765 995 2 0 -11.8099 19.05 -146.088 
-     27 301.613 892 3 1 -1.45 -5.02135 -114.647 
-Number of digits in this event =  13
+Number of tracker hits in this event =  51
+     27 126.421 901 5 1 0.366912 -0.0756775 -54.45 
+     27 100.682 899 5 0 0.391637 -0.0704632 -55.85 
+     27 127.518 920 0 1 4.07165 0.968353 -204.45 
+     27 100.46 904 0 0 4.13216 1.01581 -205.85 
+     27 3.92798 904 4 1 0.881877 -0.0526941 -84.45 
+     27 110.265 900 4 0 0.789096 0.141717 -85.85 
+     27 110.484 902 3 1 0.499901 4.61546 -114.45 
+     27 171.173 924 3 0 0.778297 4.87407 -115.85 
+     27 83.6794 937 2 1 7.53001 10.4502 -144.45 
+     27 66.006 938 2 1 7.65 10.5107 -144.656 
+     27 145.085 953 2 0 8.29718 10.7472 -145.85 
+     27 118.159 1017 1 1 23.4537 17.5857 -174.45 
+     27 34.6864 989 1 0 24.0892 18.0232 -175.85 
+     27 118.744 990 1 0 24.1294 18.05 -175.937 
+     27 0.16574 1079 0 1 36.0485 26.6302 -204.45 
+     27 102.041 1080 0 1 36.05 26.6311 -204.452 
+     27 37.2121 1081 0 1 36.25 26.7597 -204.749 
+     27 86.9148 1036 0 0 36.9026 27.3082 -205.85 
+     27 42.873 1037 0 0 37.0699 27.45 -206.134 
+     27 57.8745 911 2 1 2.42333 0.05 -144.626 
+     27 331.517 900 2 0 2.50027 0.111587 -145.85 
+     27 422.955 919 1 1 4.00487 1.55599 -174.45 
+     27 108.671 907 1 0 3.98269 1.48744 -175.85 
+     27 554.241 916 0 1 3.2523 -1.32502 -204.45 
+     27 431.163 893 0 0 3.33622 -1.41533 -205.85 
+     27 430.874 910 1 0 3.82811 2.15796 -175.85 
+     27 89.9977 911 1 0 3.80091 2.25 -176.042 
+     27 127.733 895 0 1 -1.0147 14.8157 -204.45 
+     27 307.246 973 0 0 -1.1154 14.774 -205.85 
+     27 135.923 903 4 1 0.837915 -0.0669543 -84.45 
+     27 23.9305 897 4 0 0.87543 -0.620124 -85.85 
+     27 102.804 896 4 0 0.879547 -0.65 -85.9281 
+     27 134.666 901 3 1 0.430357 -16.9314 -114.45 
+     27 42.0681 810 3 0 0.227286 -17.9641 -115.85 
+     27 121.358 809 3 0 0.204203 -18.05 -115.964 
+     27 2.3564 808 3 0 0.13707 -18.25 -116.243 
+     27 178.579 856 2 1 -8.82494 -40.2449 -144.45 
+     27 10.9574 709 2 0 -8.54891 -38.0907 -145.85 
+     27 74.0029 710 2 0 -8.5427 -38.05 -145.874 
+     27 160.898 711 2 0 -8.50541 -37.85 -145.989 
+     27 91.4747 712 2 0 -8.45523 -37.65 -146.12 
+     27 1.36716 713 2 0 -8.41092 -37.45 -146.246 
+     27 6.89264 923 1 1 4.65539 9.57008 -174.45 
+     27 205.508 922 1 1 4.65 9.56091 -174.479 
+     27 120.688 945 1 0 4.31403 9.2466 -175.85 
+     27 114.725 913 1 1 2.8189 0.441904 -174.45 
+     27 134.845 901 1 0 2.83531 0.448427 -175.85 
+     27 253.95 915 0 1 3.15801 0.547675 -204.45 
+     27 107.447 902 0 0 3.19761 0.563341 -205.85 
+     27 7.75108 1194 5 0 -106.408 58.919 -55.9896 
+     27 299.766 1216 0 1 63.2547 37.3712 -204.559 
+Number of digits in this event =  23
 Event: 28
-Number of tracker hits in this event =  29
-     28 158.621 902 3 1 0.555083 -0.202202 -114.45 
-     28 121.652 899 3 0 0.561571 -0.208065 -115.85 
-     28 192.91 903 2 1 0.691655 -0.341115 -144.45 
-     28 135.041 898 2 0 0.698881 -0.348308 -145.85 
-     28 77.225 903 1 1 0.84833 -0.473701 -174.45 
-     28 56.2802 904 1 1 0.85 -0.474147 -174.701 
-     28 122.019 897 1 0 0.857892 -0.476142 -175.85 
-     28 147.409 905 0 1 1.08989 -0.547918 -204.45 
-     28 99.1125 897 0 0 1.09968 -0.549675 -205.85 
-     28 172.05 895 3 0 -0.05 -0.874064 -115.903 
-     28 29.1111 894 3 0 -0.193373 -1.05 -116.151 
-     28 235.662 901 4 1 0.395678 0.05 -84.4733 
-     28 74.6183 907 4 0 0.811449 1.4922 -85.85 
-     28 57.7579 908 4 0 0.867523 1.65 -85.9802 
-     28 78.8912 909 4 0 0.942483 1.85 -86.1082 
-     28 13.0561 910 4 0 0.99295 2.05 -86.228 
-     28 55.7228 1089 4 0 14.0635 37.8732 -86.25 
-     28 60.5434 1088 4 0 14.0619 37.85 -86.0585 
-     28 39.775 967 4 1 13.5101 36.9068 -84.85 
-     28 117.59 966 4 1 13.45 36.8091 -84.7376 
-     28 129.974 965 4 1 13.25 36.6081 -84.5633 
-     28 23.9274 964 4 1 13.05 36.4577 -84.4945 
-     28 125.961 902 1 1 0.596858 -0.810524 -174.45 
-     28 131.31 895 1 0 0.745609 -0.909479 -175.85 
-     28 16.9107 896 1 0 0.826246 -0.85 -176.226 
-     28 205.808 904 2 1 0.870695 0.116292 -144.45 
-     28 115.442 905 2 1 1.05 0.69867 -144.706 
-     28 133.222 907 2 0 0.393507 1.49012 -145.85 
-     28 466.918 908 2 0 0.262073 1.65 -146.044 
-Number of digits in this event =  15
+Number of tracker hits in this event =  21
+     28 158.075 898 5 1 -0.321157 3.00747 -54.45 
+     28 120.833 915 5 0 -0.45633 3.06568 -55.85 
+     28 78.7326 887 4 1 -2.57639 3.78935 -84.45 
+     28 31.9576 886 4 1 -2.65 3.76276 -84.7275 
+     28 127.176 917 4 0 -2.97229 3.60023 -85.85 
+     28 29.0156 847 3 1 -10.6004 -1.66414 -114.45 
+     28 85.0187 846 3 1 -10.65 -1.66938 -114.563 
+     28 157.417 890 3 0 -11.3556 -1.86687 -115.85 
+     28 85.1416 739 2 1 -32.1277 -13.901 -144.45 
+     28 120.585 740 2 1 -32.05 -13.7984 -144.637 
+     28 120.215 832 2 0 -32.263 -13.6404 -145.85 
+     28 48.8151 719 2 0 -47.355 -36.1577 -146.25 
+     28 75.5424 718 2 0 -47.3642 -36.25 -146.129 
+     28 53.7533 717 2 0 -47.3776 -36.45 -146.035 
+     28 70.1855 716 2 0 -47.3004 -36.65 -145.966 
+     28 52.4873 715 2 0 -47.2701 -36.85 -145.965 
+     28 67.6534 714 2 0 -47.2364 -37.05 -145.951 
+     28 224.454 713 2 0 -47.2973 -37.25 -145.906 
+     28 164.757 712 2 0 -47.6088 -37.45 -145.919 
+     28 292.414 711 2 0 -47.988 -37.65 -145.959 
+     28 231.303 710 2 0 -48.4924 -37.85 -146.217 
+Number of digits in this event =  12
 Event: 29
-Number of tracker hits in this event =  11
-     29 97.3778 899 4 1 -0.0831879 0.559216 -84.45 
-     29 122.108 902 4 0 -0.0939994 0.588915 -85.85 
-     29 103.186 898 3 1 -0.331015 1.19334 -114.45 
-     29 117.9 905 3 0 -0.34405 1.20296 -115.85 
-     29 120.734 897 2 1 -0.627362 1.40855 -144.45 
-     29 160.488 906 2 0 -0.648363 1.418 -145.85 
-     29 117.9 894 1 1 -1.0727 1.67229 -174.45 
-     29 125.799 908 1 0 -1.09594 1.68605 -175.85 
-     29 343.128 892 0 1 -1.54622 1.99408 -204.45 
-     29 98.4238 909 0 0 -1.57475 2.02051 -205.85 
-     29 6.04624 846 0 1 -10.6838 -3.68298 -204.787 
-Number of digits in this event =  7
+Number of tracker hits in this event =  64
+     29 233.648 900 5 1 0.111256 0.0764857 -54.45 
+     29 478.955 900 5 0 0.116624 0.0664952 -55.85 
+     29 132.28 901 4 1 0.284842 -0.146504 -84.45 
+     29 199.634 899 4 0 0.286759 -0.150325 -85.85 
+     29 111.7 901 3 1 0.298767 -0.293155 -114.45 
+     29 224.177 898 3 0 0.30406 -0.306404 -115.85 
+     29 105.588 902 2 1 0.466995 -0.641851 -144.45 
+     29 146.311 897 2 0 0.481509 -0.625746 -145.85 
+     29 180.971 903 1 1 0.783286 -0.335897 -174.45 
+     29 98.7628 898 1 0 0.762533 -0.318111 -175.85 
+     29 106.527 901 0 1 0.406779 0.0860243 -204.45 
+     29 129.341 900 0 0 0.353739 0.105289 -205.85 
+     29 73.0441 897 1 0 0.10452 -0.455575 -175.85 
+     29 28.1187 28 1 0 31.4019 -174.458 -176.25 
+     29 243.732 27 1 0 31.4327 -174.55 -176.24 
+     29 42.861 26 1 0 31.4406 -174.75 -176.197 
+     29 61.6085 899 5 0 -0.699647 -0.082318 -55.85 
+     29 4.12879 900 6 0 -0.05 0.235602 -26.2153 
+     29 32.5906 901 6 0 -0.0556184 0.25 -26.2154 
+     29 46.1937 899 3 0 0.530179 -0.130702 -116.038 
+     29 668.728 898 5 0 -0.105706 -0.333194 -55.85 
+     29 9.53759 882 4 1 -3.61162 -6.78492 -84.45 
+     29 80.1361 881 4 1 -3.65 -6.76973 -84.4745 
+     29 107.135 880 4 1 -3.85 -6.69 -84.5965 
+     29 47.8551 879 4 1 -4.05 -6.64142 -84.7451 
+     29 13.7423 870 4 0 -5.11217 -5.87427 -85.85 
+     29 130.116 871 4 0 -5.14537 -5.85 -85.8857 
+     29 35.4641 872 4 0 -5.41654 -5.65 -86.1897 
+     29 45.9432 1182 4 0 -14.7319 56.5211 -86.25 
+     29 95.7434 1183 4 0 -14.6942 56.65 -86.1629 
+     29 73.0841 1184 4 0 -14.6491 56.85 -86.0107 
+     29 20.0439 1185 4 0 -14.5772 57.05 -85.8798 
+     29 119.754 830 4 1 -13.9915 58.5597 -84.85 
+     29 81.8294 831 4 1 -13.85 58.9228 -84.6009 
+     29 101.539 484 5 0 90.5497 -83.1145 -56.25 
+     29 76.8449 485 5 0 90.6963 -83.05 -56.1466 
+     29 115.552 486 5 0 90.7659 -82.85 -56.1101 
+     29 350.157 487 5 0 90.66 -82.65 -56.2138 
+     29 107.3 900 4 1 0.216456 0.0914791 -84.45 
+     29 166.324 900 4 0 0.206114 0.0839422 -85.85 
+     29 106.205 898 3 1 -0.265474 -0.22472 -114.45 
+     29 106.99 899 2 1 -0.240771 -0.835524 -144.45 
+     29 166.216 895 2 0 -0.227604 -0.90195 -145.85 
+     29 169.078 900 1 1 0.154127 -2.41931 -174.45 
+     29 115.218 887 1 0 0.190759 -2.51558 -175.85 
+     29 122.929 905 0 1 1.05802 -4.44159 -204.45 
+     29 208.018 878 0 0 1.35105 -4.39176 -205.85 
+     29 87.63 899 5 1 -0.05 -0.0519621 -54.5825 
+     29 0.193888 898 5 1 -0.25 -0.114161 -54.8461 
+     29 314.136 897 5 0 -1.72411 -0.45 -56.0215 
+     29 211.094 896 5 0 -2.13085 -0.65 -56.1871 
+     29 92.4126 895 5 0 -2.41395 -0.85 -56.1775 
+     29 42.0177 894 5 0 -2.70599 -1.05 -56.115 
+     29 59.7068 897 1 1 -0.601033 -1.35318 -174.45 
+     29 141.736 898 1 1 -0.45 -1.44684 -174.568 
+     29 17.0003 881 1 0 0.180618 -3.80554 -175.85 
+     29 72.8679 880 1 0 0.189931 -3.85 -175.871 
+     29 97.86 879 1 0 0.251795 -4.05 -175.999 
+     29 1.52248 878 1 0 0.371234 -4.25 -176.247 
+     29 290.455 777 1 0 78.437 -24.4696 -176.25 
+     29 1.17939 1300 1 1 80.2474 -25.9059 -174.85 
+     29 401.566 1301 1 1 80.25 -25.9094 -174.847 
+     29 269.196 1302 1 1 80.45 -26.1321 -174.55 
+     29 19.7442 1303 1 1 80.65 -26.3782 -174.594 
+Number of digits in this event =  26
 Event: 30
-Number of tracker hits in this event =  15
-     30 197.09 897 3 1 -0.621895 -0.145524 -114.45 
-     30 128.367 899 3 0 -0.629277 -0.153326 -115.85 
-     30 123.033 896 2 1 -0.776561 -0.317789 -144.45 
-     30 138.361 898 2 0 -0.778835 -0.318782 -145.85 
-     30 391.987 895 1 1 -0.853023 -0.352803 -174.45 
-     30 244.483 898 1 0 -0.847588 -0.347902 -175.85 
-     30 114.698 896 0 1 -0.695197 -0.240063 -204.45 
-     30 231.045 899 0 0 -0.675674 -0.217843 -205.85 
-     30 126.634 897 1 0 -1.38785 -0.52707 -175.85 
-     30 70.8721 901 1 0 -0.995935 0.312362 -175.85 
-     30 27.8623 902 1 0 -1.031 0.45 -176.158 
-     30 133.794 895 0 1 -0.887013 -0.05 -204.834 
-     30 166.906 900 0 0 -0.971396 0.162047 -205.85 
-     30 16.6794 901 0 0 -0.964863 0.25 -206.172 
-     30 202.271 1323 5 0 133.311 84.8407 -56.25 
-Number of digits in this event =  12
+Number of tracker hits in this event =  26
+     30 128.546 900 5 1 0.0798487 0.151025 -54.45 
+     30 137.987 900 5 0 0.0816811 0.148276 -55.85 
+     30 177.7 900 4 1 0.132615 0.0669389 -84.45 
+     30 395.769 900 4 0 0.137215 0.06056 -85.85 
+     30 111.811 901 3 1 0.261611 -0.0648164 -114.45 
+     30 161.729 899 3 0 0.257427 -0.0687673 -115.85 
+     30 123.082 900 2 1 0.159956 -0.152649 -144.45 
+     30 116.695 899 2 0 0.167039 -0.148408 -145.85 
+     30 114.371 901 1 1 0.283142 -0.0580648 -174.45 
+     30 108.901 899 1 0 0.28423 -0.0535234 -175.85 
+     30 189.418 901 0 1 0.320203 0.0975653 -204.45 
+     30 386.461 900 0 0 0.331623 0.105312 -205.85 
+     30 100.602 899 2 1 -0.0866313 -0.368729 -144.45 
+     30 193.141 898 2 1 -0.25 -0.557661 -144.649 
+     30 83.3832 891 2 0 -0.783931 -1.66167 -145.85 
+     30 89.6904 890 2 0 -0.864282 -1.85 -146.062 
+     30 10.9521 889 2 0 -0.890362 -2.05 -146.235 
+     30 249.831 1633 4 0 158.835 146.851 -86.25 
+     30 104.813 1700 4 1 160.224 146.73 -84.85 
+     30 76.0913 1701 4 1 160.35 146.71 -84.688 
+     30 64.5904 1702 4 1 160.575 146.758 -84.45 
+     30 346.495 1703 4 1 160.75 146.645 -84.5624 
+     30 196.681 1628 4 0 160.539 145.814 -85.85 
+     30 56.2627 1627 4 0 160.535 145.75 -85.9518 
+     30 121.765 1638 4 0 167.594 147.818 -86.25 
+     30 134.096 216 4 1 -136.807 -18.2545 -84.7978 
+Number of digits in this event =  15
 Event: 31
-Number of tracker hits in this event =  14
-     31 176.808 899 5 0 0.0524235 -0.111809 -55.85 
-     31 115.554 901 4 1 0.276073 -0.0788088 -84.45 
-     31 121.552 899 4 0 0.288914 -0.0737037 -85.85 
-     31 133.369 900 3 0 0.577798 0.0558834 -115.85 
-     31 109.311 903 2 1 0.777715 0.272228 -144.45 
-     31 121.475 901 2 0 0.788839 0.28642 -145.85 
-     31 163.102 904 1 1 1.04021 0.57211 -174.45 
-     31 146.672 902 1 0 1.06669 0.587761 -175.85 
-     31 135.243 907 0 1 1.60604 0.927023 -204.45 
-     31 104.774 904 0 0 1.63116 0.942511 -205.85 
-     31 17.3343 702 1 0 -3.57764 -39.4578 -176.032 
-     31 79.7799 703 1 0 -3.57143 -39.45 -176.017 
-     31 25.6173 541 4 1 -71.849 79.3532 -84.5539 
-     31 114.187 540 4 1 -71.85 79.3588 -84.5079 
-Number of digits in this event =  9
+Number of tracker hits in this event =  32
+     31 95.2052 899 5 1 -0.242599 0.174286 -54.45 
+     31 118.91 900 5 0 -0.262161 0.184296 -55.85 
+     31 39.7031 897 4 1 -0.647377 0.424204 -84.45 
+     31 95.326 896 4 1 -0.65 0.424942 -84.5636 
+     31 106.558 901 4 0 -0.678002 0.432225 -85.85 
+     31 32.8447 894 3 1 -1.24838 0.678388 -114.45 
+     31 77.8632 893 3 1 -1.25 0.677923 -114.581 
+     31 121.181 903 3 0 -1.26615 0.672635 -115.85 
+     31 106.124 891 2 1 -1.66219 0.564163 -144.45 
+     31 117.229 902 2 0 -1.66231 0.575978 -145.85 
+     31 103.421 891 1 1 -1.72016 0.728354 -174.45 
+     31 122.834 903 1 0 -1.73889 0.755102 -175.85 
+     31 200.01 889 0 1 -2.15458 1.29202 -204.45 
+     31 129.426 906 0 0 -2.16915 1.31379 -205.85 
+     31 227.774 898 0 1 -0.28108 -0.209146 -204.45 
+     31 10.6665 899 0 1 -0.25 -0.220035 -204.825 
+     31 200.287 898 0 0 -0.190171 -0.254014 -205.85 
+     31 95.7094 886 0 1 -2.82145 11.6848 -204.45 
+     31 171.518 900 0 0 -0.715808 0.149511 -205.85 
+     31 143.499 928 0 0 -15.4618 5.76859 -206.25 
+     31 71.8823 819 0 1 -16.2078 5.50974 -204.85 
+     31 83.1603 818 0 1 -16.25 5.48731 -204.779 
+     31 261.838 976 1 0 2.72115 15.2602 -176.25 
+     31 55.0166 977 1 0 2.88813 15.45 -176.011 
+     31 19.4125 918 1 1 3.7973 16.0587 -174.85 
+     31 157.989 919 1 1 3.85 16.0917 -174.785 
+     31 136.463 920 1 1 4.05 16.4779 -174.524 
+     31 75.3312 921 1 1 4.25 16.8218 -174.484 
+     31 182.278 922 1 1 4.45 17.0145 -174.563 
+     31 58.3898 990 1 0 4.2788 18.1483 -175.85 
+     31 254.036 991 1 0 4.2042 18.25 -175.956 
+     31 255.582 713 1 0 -30.1724 -37.2841 -176.25 
+Number of digits in this event =  16
 Event: 32
-Number of tracker hits in this event =  16
-     32 119.436 901 5 1 0.273194 -0.197383 -54.45 
-     32 118.327 899 5 0 0.298228 -0.210058 -55.85 
-     32 77.9179 903 4 1 0.845141 -0.499671 -84.45 
-     32 38.0331 904 4 1 0.85 -0.502826 -84.7135 
-     32 115.056 897 4 0 0.870997 -0.518056 -85.85 
-     32 184.581 906 3 1 1.40882 -0.815436 -114.45 
-     32 140.439 896 3 0 1.43777 -0.830291 -115.85 
-     32 131.083 909 2 1 2.00665 -1.15197 -144.45 
-     32 147.853 894 2 0 2.03161 -1.16769 -145.85 
-     32 112.843 912 1 1 2.46476 -1.57542 -174.45 
-     32 137.626 892 1 0 2.4361 -1.57642 -175.85 
-     32 158.391 908 0 1 1.66813 -1.64102 -204.45 
-     32 67.0527 892 0 0 1.61391 -1.64877 -205.85 
-     32 58.1452 891 0 0 1.60561 -1.65 -206.061 
-     32 230.106 509 3 1 -78.0782 68.0622 -114.69 
-     32 3.53065 508 3 1 -78.25 68.0393 -114.751 
-Number of digits in this event =  8
+Number of tracker hits in this event =  32
+     32 376.714 899 5 1 -0.123199 0.422619 -54.45 
+     32 119.328 901 5 0 -0.114794 0.44467 -55.85 
+     32 16.1708 902 5 0 -0.112355 0.45 -56.2044 
+     32 258.311 900 4 1 0.139396 0.906668 -84.45 
+     32 154.882 904 4 0 0.167074 0.98023 -85.85 
+     32 107.795 902 3 1 0.63013 2.36197 -114.45 
+     32 167.661 911 3 0 0.565589 2.3675 -115.85 
+     32 123.67 896 2 1 -0.684136 2.26892 -144.45 
+     32 122.4 911 2 0 -0.735046 2.26223 -145.85 
+     32 146.863 891 1 1 -1.67653 2.09907 -174.45 
+     32 136.612 910 1 0 -1.6393 2.0902 -175.85 
+     32 113.239 894 0 1 -1.13904 1.95185 -204.45 
+     32 119.293 909 0 0 -1.08627 1.97101 -205.85 
+     32 319.679 900 5 0 -0.0512694 0.0989483 -55.85 
+     32 257.71 900 4 0 0.0713066 0.0957559 -85.85 
+     32 116.998 900 3 1 0.0561507 0.113423 -114.45 
+     32 109.758 897 2 1 -0.595755 0.10146 -144.45 
+     32 125.678 900 2 0 -0.6197 0.0820845 -145.85 
+     32 121.524 895 1 1 -0.943986 -0.311097 -174.45 
+     32 85.9605 898 1 0 -0.974421 -0.317023 -175.85 
+     32 123.482 892 0 1 -1.61901 -0.372547 -204.45 
+     32 270.069 898 0 0 -1.6105 -0.381393 -205.85 
+     32 114.799 899 4 1 -0.173584 0.159218 -84.45 
+     32 112.496 908 3 1 1.76995 -1.10385 -114.45 
+     32 131.515 894 3 0 1.87861 -1.17129 -115.85 
+     32 162.29 919 2 1 3.91417 -2.33597 -144.45 
+     32 166.092 888 2 0 3.93119 -2.41307 -145.85 
+     32 52.9609 921 1 1 4.29461 -4.25565 -174.45 
+     32 58.5237 920 1 1 4.25 -4.25252 -174.65 
+     32 122.564 879 1 0 3.96645 -4.21355 -175.85 
+     32 114.771 888 0 1 -2.2669 -2.66643 -204.45 
+     32 114.861 889 0 0 -2.73492 -2.2188 -205.85 
+Number of digits in this event =  20
 Event: 33
-Number of tracker hits in this event =  55
-     33 61.7837 897 4 1 -0.520644 -0.0511526 -84.45 
-     33 326.504 896 3 1 -0.694388 0.120502 -114.45 
-     33 119.131 900 3 0 -0.69676 0.134145 -115.85 
-     33 107.472 896 2 1 -0.684217 0.429447 -144.45 
-     33 118.995 901 2 0 -0.671905 0.445818 -145.85 
-     33 14.9931 902 2 0 -0.668732 0.45 -146.202 
-     33 134.115 898 1 1 -0.349661 0.796201 -174.45 
-     33 161.332 903 1 0 -0.333911 0.806262 -175.85 
-     33 133.215 899 0 1 -0.0603195 1.04352 -204.45 
-     33 129.553 905 0 0 -0.0837319 1.07193 -205.85 
-     33 20.2103 896 3 0 -1.00781 -0.817662 -115.85 
-     33 163.218 895 3 0 -1.0217 -0.85 -115.917 
-     33 69.9629 868 2 1 -6.39421 -14.3562 -144.45 
-     33 96.0507 867 2 1 -6.45 -14.4323 -144.701 
-     33 76.517 826 2 0 -6.91853 -14.7818 -145.85 
-     33 49.239 825 2 0 -7.0101 -14.85 -146.074 
-     33 62.4067 808 1 1 -18.4274 -27.3161 -174.45 
-     33 173.652 809 1 1 -18.25 -27.1606 -174.545 
-     33 17.1339 810 1 1 -18.05 -26.7383 -174.829 
-     33 71.5627 780 1 0 -16.2925 -24.0246 -175.85 
-     33 77.8968 781 1 0 -16.1793 -23.85 -175.916 
-     33 60.5754 782 1 0 -16.0668 -23.65 -175.999 
-     33 100.536 783 1 0 -15.9636 -23.45 -176.053 
-     33 61.7242 784 1 0 -15.8728 -23.25 -176.136 
-     33 5.27679 785 1 0 -15.7912 -23.05 -176.242 
-     33 41.9224 911 0 1 2.36578 16.8683 -204.45 
-     33 55.5534 910 0 1 2.25 16.8795 -204.539 
-     33 69.3116 909 0 1 2.05 16.8248 -204.558 
-     33 69.6904 908 0 1 1.85 16.76 -204.704 
-     33 103.641 907 0 1 1.65 16.7214 -204.752 
-     33 72.4951 906 0 1 1.45 16.8713 -204.686 
-     33 59.5503 905 0 1 1.25 16.9212 -204.571 
-     33 337.243 904 0 1 1.05 16.8621 -204.508 
-     33 190.637 903 0 1 0.85 16.8989 -204.56 
-     33 237.033 902 0 1 0.65 16.8819 -204.597 
-     33 65.9469 899 3 1 -0.139846 0.0657294 -114.45 
-     33 64.6932 898 3 1 -0.25 0.0706843 -114.642 
-     33 43.0333 901 3 0 -0.797224 0.409664 -115.85 
-     33 88.8427 902 3 0 -0.84565 0.45 -115.969 
-     33 10.5881 1306 2 0 -35.2714 81.4355 -146.25 
-     33 60.9244 1307 2 0 -35.2552 81.45 -146.239 
-     33 56.924 727 0 0 116.954 -34.4675 -206.104 
-     33 84.0446 728 0 0 116.973 -34.45 -206.131 
-     33 32.9616 830 0 1 -13.9879 23.3125 -204.45 
-     33 275.158 829 0 1 -14.05 23.2801 -204.504 
-     33 58.3506 828 0 1 -14.25 23.0156 -204.586 
-     33 43.6939 824 2 0 -6.69872 -15.2059 -146.091 
-     33 44.1672 685 2 0 -36.8238 -43.0249 -146.25 
-     33 159.246 684 2 0 -36.9 -43.05 -146.183 
-     33 0.260392 706 2 1 -38.844 -43.392 -144.85 
-     33 60.8765 705 2 1 -38.85 -43.3928 -144.846 
-     33 92.0134 704 2 1 -39.05 -43.4192 -144.722 
-     33 91.6668 703 2 1 -39.25 -43.5335 -144.599 
-     33 304.622 659 3 0 -14.1323 -48.2384 -116.25 
-     33 169.777 658 3 0 -13.9095 -48.25 -116.025 
-Number of digits in this event =  17
+Number of tracker hits in this event =  10
+     33 115.615 899 4 1 -0.163045 -0.155338 -84.45 
+     33 103.604 899 4 0 -0.180093 -0.164578 -85.85 
+     33 116.785 897 3 1 -0.501522 -0.367101 -114.45 
+     33 106.998 898 3 0 -0.514257 -0.36855 -115.85 
+     33 108.682 896 2 1 -0.764659 -0.417785 -144.45 
+     33 130.353 898 2 0 -0.774232 -0.429484 -145.85 
+     33 169.74 895 1 1 -0.987001 -0.633084 -174.45 
+     33 124.037 897 1 0 -0.993678 -0.642403 -175.85 
+     33 131.859 894 0 1 -1.14251 -0.822354 -204.45 
+     33 108.054 896 0 0 -1.14688 -0.821232 -205.85 
+Number of digits in this event =  6
 Event: 34
-Number of tracker hits in this event =  43
-     34 113.23 899 5 1 -0.113833 -0.0900906 -54.45 
-     34 598.714 899 5 0 -0.126334 -0.099854 -55.85 
-     34 191.567 898 4 1 -0.405363 -0.249713 -84.45 
-     34 116.652 898 4 0 -0.413442 -0.26057 -85.85 
-     34 121.952 897 3 1 -0.620388 -0.469724 -114.45 
-     34 260.192 897 3 0 -0.635435 -0.476824 -115.85 
-     34 117.796 895 2 1 -0.943704 -0.665846 -144.45 
-     34 290.357 896 2 0 -0.964855 -0.663183 -145.85 
-     34 115.238 893 1 1 -1.3772 -0.598816 -174.45 
-     34 100.218 897 1 0 -1.42005 -0.594837 -175.85 
-     34 109.322 889 0 1 -2.23494 -0.500899 -204.45 
-     34 1.21478 888 0 1 -2.25 -0.500037 -204.843 
-     34 171.579 897 0 0 -2.28893 -0.497435 -205.85 
-     34 273.293 897 0 1 -0.502607 -0.18172 -204.45 
-     34 60.4549 898 0 1 -0.45 -0.467303 -204.532 
-     34 310.464 896 0 1 -0.65 -1.1117 -204.478 
-     34 273.263 900 5 1 0.0671092 -0.0986989 -54.45 
-     34 247.535 912 4 1 2.58739 0.126351 -84.45 
-     34 153.251 900 4 0 2.62054 0.109321 -85.85 
-     34 105.374 915 3 1 3.21231 -0.440449 -114.45 
-     34 101.069 909 2 1 1.88789 -1.22492 -144.45 
-     34 111.309 894 2 0 1.90756 -1.10835 -145.85 
-     34 85.2521 911 1 1 2.26941 1.55292 -174.45 
-     34 44.4493 910 1 1 2.25 1.59089 -174.767 
-     34 131.941 908 1 0 2.17841 1.72701 -175.85 
-     34 16.7022 905 0 1 1.0607 5.71249 -204.45 
-     34 107.938 904 0 1 1.05 5.72051 -204.494 
-     34 108.726 929 0 0 0.71331 5.98345 -205.85 
-     34 16.0926 930 0 0 0.627388 6.05 -206.193 
-     34 75.9362 238 13 0 -29.5108 -132.503 184.045 
-     34 26.872 237 13 0 -29.3908 -132.55 184.138 
-     34 290.966 759 13 1 -28.1318 -133.8 185.15 
-     34 103.481 946 0 1 9.39809 2.05331 -204.45 
-     34 1.15362 947 0 1 9.45 2.1832 -204.843 
-     34 275.495 912 0 0 9.63809 2.49817 -205.85 
-     34 111.184 892 3 1 -1.53005 -0.05 -114.549 
-     34 190.798 899 3 0 -1.56019 -0.079333 -115.85 
-     34 111.863 889 2 1 -2.13831 -0.744513 -144.45 
-     34 130.588 882 1 1 -3.61887 -0.731579 -174.45 
-     34 146.742 896 1 0 -3.63854 -0.744132 -175.85 
-     34 141.487 878 0 1 -4.26734 -0.965766 -204.45 
-     34 168.002 895 0 0 -4.3347 -0.941711 -205.85 
-     34 34.6352 1678 6 1 155.793 120.181 -24.5473 
-Number of digits in this event =  21
+Number of tracker hits in this event =  20
+     34 258.6 899 4 1 -0.161238 0.122573 -84.45 
+     34 143.584 900 4 0 -0.16208 0.135064 -85.85 
+     34 99.3476 899 3 1 -0.149327 0.407361 -114.45 
+     34 116.463 901 3 0 -0.153501 0.421321 -115.85 
+     34 135.056 899 2 1 -0.245192 0.7097 -144.45 
+     34 131.501 903 2 0 -0.246976 0.719072 -145.85 
+     34 143.372 898 1 1 -0.254005 0.945959 -174.45 
+     34 103.015 904 1 0 -0.262966 0.958407 -175.85 
+     34 127.956 898 0 1 -0.447396 1.22373 -204.45 
+     34 155.708 905 0 0 -0.454381 1.23874 -205.85 
+     34 290.489 898 2 1 -0.25 -0.121192 -144.467 
+     34 31.0388 897 2 1 -0.45 -0.133201 -144.774 
+     34 47.9933 898 2 0 -1.04943 -0.298226 -145.85 
+     34 202.353 899 2 0 -0.991822 -0.25 -145.904 
+     34 27.8036 900 2 0 -0.890401 0.05 -145.876 
+     34 120.812 877 1 1 -4.51762 3.04377 -174.45 
+     34 124.378 917 1 0 -4.47866 3.51713 -175.85 
+     34 10.6474 918 1 0 -4.46581 3.65 -176.229 
+     34 121.628 879 0 1 -4.20861 13.6203 -204.45 
+     34 153.911 967 0 0 -4.23619 13.542 -205.85 
+Number of digits in this event =  15
 Event: 35
-Number of tracker hits in this event =  30
-     35 92.7276 899 5 1 -0.0866169 0.412074 -54.45 
-     35 144.769 901 5 0 -0.0959344 0.431232 -55.85 
-     35 327.663 898 4 1 -0.302196 0.851811 -84.45 
-     35 131.83 904 4 0 -0.309986 0.869018 -85.85 
-     35 137.144 897 3 1 -0.454785 1.21377 -114.45 
-     35 112.7 905 3 0 -0.457635 1.22754 -115.85 
-     35 115.417 897 2 1 -0.531539 1.53578 -144.45 
-     35 117.262 907 2 0 -0.505129 1.52294 -145.85 
-     35 372.851 899 0 1 -0.0664032 1.68604 -204.45 
-     35 115.495 908 0 0 -0.0558248 1.719 -205.85 
-     35 43.4924 899 4 1 -0.174517 0.761327 -84.45 
-     35 153.03 901 4 0 -0.476808 0.403716 -85.85 
-     35 114.044 828 3 1 -14.276 -0.7882 -114.45 
-     35 114.721 827 3 1 -14.45 -0.993263 -114.64 
-     35 236.896 826 3 1 -14.65 -1.12467 -114.686 
-     35 63.6114 825 3 1 -14.85 -1.25609 -114.774 
-     35 49.0141 824 3 1 -15.05 -1.41778 -114.805 
-     35 58.0909 881 3 0 -16.9491 -3.68743 -115.85 
-     35 152.93 880 3 0 -17.067 -3.85 -115.937 
-     35 166.441 866 3 0 -49.0174 -6.72461 -116.25 
-     35 225.925 766 3 0 -19.15 -26.7714 -116.25 
-     35 68.1897 1361 3 0 -32.5588 92.518 -116.25 
-     35 17.5746 910 1 0 -0.485182 2.17744 -176.207 
-     35 139.506 901 0 1 0.287492 2.53246 -204.45 
-     35 118.81 913 0 0 0.593831 2.68607 -205.85 
-     35 117.358 891 0 1 -1.72135 3.45842 -204.45 
-     35 11.6484 916 0 0 -2.11084 3.25592 -205.85 
-     35 284.251 915 0 0 -2.12343 3.25 -205.893 
-     35 65.7899 598 0 0 -59.6421 -60.2722 -206.25 
-     35 98.7922 599 0 0 -59.6852 -60.25 -206.226 
-Number of digits in this event =  13
+Number of tracker hits in this event =  15
+     35 123.722 900 3 1 0.110308 -0.140115 -114.45 
+     35 149.711 899 3 0 0.123836 -0.140837 -115.85 
+     35 108.797 902 2 1 0.452286 -0.126884 -144.45 
+     35 93.5353 899 2 0 0.474412 -0.102242 -145.85 
+     35 114.326 904 1 1 1.03789 0.368686 -174.45 
+     35 144.063 901 1 0 1.02232 0.381931 -175.85 
+     35 119.078 903 0 1 0.70372 0.742252 -204.45 
+     35 135.277 903 0 0 0.677049 0.769374 -205.85 
+     35 122.006 899 5 1 -0.05 -0.142595 -54.5726 
+     35 56.5942 894 5 0 -0.590746 -1.13198 -55.85 
+     35 370.786 893 5 0 -0.645755 -1.25 -56.0023 
+     35 108.483 883 5 1 -3.29825 -0.685534 -54.85 
+     35 62.031 882 5 1 -3.45 -0.627846 -54.7693 
+     35 71.9134 881 5 1 -3.65 -0.623719 -54.679 
+     35 63.5791 880 5 1 -3.85 -0.667078 -54.5485 
+Number of digits in this event =  7
 Event: 36
-Number of tracker hits in this event =  25
-     36 116.245 900 5 1 0.10035 -0.152286 -54.45 
-     36 120.438 899 5 0 0.108228 -0.160342 -55.85 
-     36 218.538 901 4 1 0.302872 -0.313196 -84.45 
-     36 174.191 898 4 0 0.30857 -0.306174 -85.85 
-     36 218.641 902 3 1 0.455457 -0.161869 -114.45 
-     36 214.683 899 3 0 0.468042 -0.161221 -115.85 
-     36 136.779 903 2 1 0.652729 -0.303462 -144.45 
-     36 122.654 898 2 0 0.651543 -0.323687 -145.85 
-     36 229.334 902 1 1 0.604304 -0.698016 -174.45 
-     36 158.443 896 1 0 0.593767 -0.710672 -175.85 
-     36 124.375 901 0 1 0.359639 -0.967149 -204.45 
-     36 117.845 895 0 0 0.312265 -0.981841 -205.85 
-     36 127.249 903 1 1 0.65 -0.860392 -174.686 
-     36 93.1556 888 1 0 1.36078 -2.38187 -175.85 
-     36 45.7736 887 1 0 1.48417 -2.45 -176.138 
-     36 75.8647 919 1 0 23.1632 3.86411 -176.25 
-     36 53.7892 920 1 0 23.2015 4.05 -176.166 
-     36 307.87 1086 1 0 76.1134 37.3978 -176.25 
-     36 91.9373 950 2 1 10.0731 9.00809 -144.45 
-     36 96.7286 951 2 1 10.25 8.92194 -144.616 
-     36 31.4367 952 2 1 10.45 8.82304 -144.778 
-     36 103.774 939 2 0 12.0016 7.91867 -145.85 
-     36 213.53 938 2 0 12.1172 7.85 -145.929 
-     36 8.28489 804 0 0 -40.5277 -19.1446 -206.25 
-     36 156.204 525 6 0 3.35332 -74.9502 -26.2035 
-Number of digits in this event =  17
+Number of tracker hits in this event =  7
+     36 141.957 902 3 0 -0.0538837 0.480639 -115.85 
+     36 255.473 899 2 1 -0.222864 0.584791 -144.45 
+     36 157.104 902 2 0 -0.234218 0.596997 -145.85 
+     36 126.565 897 1 1 -0.464525 0.862447 -174.45 
+     36 110.288 904 1 0 -0.478936 0.873638 -175.85 
+     36 421.412 896 0 1 -0.765277 1.08151 -204.45 
+     36 103.363 905 0 0 -0.776219 1.09386 -205.85 
+Number of digits in this event =  6
 Event: 37
-Number of tracker hits in this event =  5
-     37 106.079 900 2 1 0.100474 -0.0536352 -144.45 
-     37 107.193 899 2 0 0.0933749 -0.061519 -145.85 
-     37 113.539 898 0 1 -0.266497 -0.195064 -204.45 
-     37 136.116 899 0 0 -0.271625 -0.180493 -205.85 
-     37 142.978 272 2 0 175.511 -125.731 -145.996 
+Number of tracker hits in this event =  8
+     37 135.851 899 1 1 -0.126662 -0.05582 -174.45 
+     37 114.335 899 1 0 -0.138524 -0.0546167 -175.85 
+     37 10.2416 899 2 0 0.05 -0.225973 -146.076 
+     37 59.0672 898 2 0 0.0557473 -0.25 -146.075 
+     37 96.3247 897 2 0 0.0661529 -0.45 -146.107 
+     37 164.949 896 2 0 -0.155026 -0.65 -146.182 
+     37 33.6768 1421 5 1 104.363 132.135 -54.784 
+     37 51.7986 1420 5 1 104.35 132.14 -54.7775 
 Number of digits in this event =  4
 Event: 38
-Number of tracker hits in this event =  21
-     38 53.7432 900 5 0 0.05 0.231236 -56.0759 
-     38 121.64 901 4 1 0.443157 0.467438 -84.45 
-     38 162.164 902 4 0 0.44311 0.47966 -85.85 
-     38 118.689 901 3 1 0.406593 0.697272 -114.45 
-     38 94.7511 903 3 0 0.386674 0.704189 -115.85 
-     38 132.599 899 2 1 -0.0707284 0.825201 -144.45 
-     38 114.431 903 2 0 -0.106905 0.82484 -145.85 
-     38 324.369 895 1 1 -0.95813 0.771836 -174.45 
-     38 126.064 903 1 0 -0.923429 0.722226 -175.85 
-     38 148.26 899 0 1 -0.230633 -0.375855 -204.45 
-     38 106.462 897 0 0 -0.176178 -0.473321 -205.85 
-     38 309.859 900 2 1 0.132305 -0.162267 -144.45 
-     38 204.433 899 2 0 0.204443 -0.201178 -145.85 
-     38 144.805 909 1 1 1.98138 -1.16417 -174.45 
-     38 124.862 894 1 0 2.24758 -1.09566 -175.85 
-     38 72.8723 942 0 1 8.46169 -0.142519 -204.45 
-     38 161.959 901 0 0 8.6617 0.308859 -205.85 
-     38 323.081 900 1 1 0.130686 0.275048 -174.45 
-     38 110.437 901 1 0 0.1363 0.293402 -175.85 
-     38 113.752 901 0 1 0.278581 0.693804 -204.45 
-     38 114.76 903 0 0 0.297505 0.710571 -205.85 
-Number of digits in this event =  14
+Number of tracker hits in this event =  12
+     38 116.915 899 5 1 -0.175784 0.071457 -54.45 
+     38 109.472 900 5 0 -0.189833 0.0767612 -55.85 
+     38 109.513 898 4 1 -0.437005 0.189168 -84.45 
+     38 128.21 900 4 0 -0.448186 0.202441 -85.85 
+     38 100.244 896 3 1 -0.673275 0.469954 -114.45 
+     38 160.736 902 3 0 -0.690236 0.480558 -115.85 
+     38 119.307 895 2 1 -1.0333 0.687512 -144.45 
+     38 181.916 903 2 0 -1.03739 0.702863 -145.85 
+     38 124.976 894 1 1 -1.10093 1.03803 -174.45 
+     38 113.235 904 1 0 -1.11283 1.04627 -175.85 
+     38 142.123 893 0 1 -1.42597 1.1962 -204.45 
+     38 136.846 905 0 0 -1.44663 1.20189 -205.85 
+Number of digits in this event =  7
 Event: 39
-Number of tracker hits in this event =  14
-     39 33.5589 900 5 1 0.05 0.217193 -54.7441 
-     39 125.723 900 5 0 0.0541716 0.219336 -55.85 
-     39 111.665 900 4 1 0.136332 0.257584 -84.45 
-     39 115.78 901 4 0 0.130425 0.258673 -85.85 
-     39 111.521 900 2 1 0.0783028 0.33825 -144.45 
-     39 134.779 901 2 0 0.0808135 0.340844 -145.85 
-     39 100.561 900 1 1 0.132603 0.421095 -174.45 
-     39 123.626 901 1 0 0.135197 0.421986 -175.85 
-     39 124.917 900 0 1 0.197965 0.430248 -204.45 
-     39 117.265 901 0 0 0.203494 0.426701 -205.85 
-     39 224.759 898 0 1 -0.271396 0.598791 -204.45 
-     39 51.9578 900 0 0 -0.247766 0.12795 -205.85 
-     39 116.903 898 0 0 -0.229149 -0.284458 -205.85 
-     39 41.1241 897 0 0 -0.218281 -0.45 -206.191 
-Number of digits in this event =  6
-Event: 40
 Number of tracker hits in this event =  22
-     40 123.584 900 5 1 0.0717925 0.17036 -54.45 
-     40 112.923 900 5 0 0.0689583 0.184242 -55.85 
-     40 151.929 900 3 1 0.0853326 0.844974 -114.45 
-     40 306.193 904 3 0 0.084357 0.855327 -115.85 
-     40 662.588 900 2 1 0.0797487 0.993145 -144.45 
-     40 122.377 904 2 0 0.0749422 1.0062 -145.85 
-     40 128.004 899 0 1 -0.237995 1.6076 -204.45 
-     40 160.913 907 0 0 -0.245675 1.62645 -205.85 
-     40 37.8484 903 2 0 -0.05 0.732623 -146.097 
-     40 516.826 878 1 1 -4.30062 -0.593007 -174.45 
-     40 138.585 895 1 0 -4.50861 -0.916468 -175.85 
-     40 186.281 859 0 1 -8.24229 -7.23044 -204.45 
-     40 137.662 862 0 0 -8.25338 -7.48992 -205.85 
-     40 47.2605 901 2 1 0.25 0.733682 -144.666 
-     40 338.769 902 2 0 0.591426 0.572795 -145.85 
-     40 67.8734 955 1 1 11.1304 -4.55073 -174.45 
-     40 53.9277 956 1 1 11.25 -4.6117 -174.679 
-     40 161.989 875 1 0 11.8772 -4.92783 -175.85 
-     40 276.332 1036 0 1 27.3219 -12.9782 -204.45 
-     40 0.632322 1037 0 1 27.45 -13.1025 -204.847 
-     40 17.2377 833 0 0 27.7517 -13.4322 -205.85 
-     40 100.269 832 0 0 27.768 -13.45 -205.904 
-Number of digits in this event =  16
+     39 228.778 899 4 1 -0.141859 0.087261 -84.45 
+     39 127.427 900 4 0 -0.142758 0.0929521 -85.85 
+     39 129.502 899 3 1 -0.154997 0.235586 -114.45 
+     39 128.474 900 3 0 -0.155088 0.244072 -115.85 
+     39 193.632 899 2 1 -0.152991 0.373188 -144.45 
+     39 126.682 901 2 0 -0.154814 0.383084 -145.85 
+     39 130.429 899 1 1 -0.223663 0.583307 -174.45 
+     39 222.45 902 1 0 -0.222107 0.590416 -175.85 
+     39 128.525 899 0 1 -0.214268 0.729315 -204.45 
+     39 124.6 903 0 0 -0.219366 0.745403 -205.85 
+     39 114.286 899 0 0 0.080686 -0.146212 -205.85 
+     39 99.3259 900 0 0 0.179813 0.203621 -205.85 
+     39 24.2045 901 0 0 0.229598 0.25 -206.153 
+     39 45.6792 1184 2 0 -35.1402 56.881 -145.923 
+     39 54.5181 90 3 0 -20.5055 -162.023 -116.25 
+     39 44.9115 91 3 0 -20.4196 -161.95 -116.195 
+     39 307.468 471 3 0 14.9243 -85.8041 -116.25 
+     39 148.61 1417 13 0 108.943 103.568 183.993 
+     39 117.146 526 5 1 -74.7582 101.8 -54.5493 
+     39 53.7589 651 1 1 -49.7629 53.5469 -174.562 
+     39 60.2123 628 1 0 -102.366 -54.2906 -176.026 
+     39 221.848 629 1 0 -102.428 -54.25 -176.01 
+Number of digits in this event =  15
+Event: 40
+Number of tracker hits in this event =  6
+     40 124.426 911 2 1 2.29128 0.086302 -144.45 
+     40 557.989 900 2 0 2.32618 0.0831562 -145.85 
+     40 106.556 918 0 1 3.81076 -0.0763115 -204.45 
+     40 119.011 899 0 0 3.85184 -0.0810697 -205.85 
+     40 25.7325 759 0 1 -28.0591 47.8965 -204.7 
+     40 236.197 760 0 1 -28.05 47.8687 -204.66 
+Number of digits in this event =  5
 Event: 41
 Number of tracker hits in this event =  15
-     41 225.013 901 4 1 0.320749 -0.076749 -84.45 
-     41 120.29 899 4 0 0.328546 -0.083995 -85.85 
-     41 244.726 902 3 1 0.494356 -0.241911 -114.45 
-     41 124.308 899 3 0 0.505771 -0.241386 -115.85 
-     41 128.411 903 2 1 0.771301 -0.245542 -144.45 
-     41 108.923 899 2 0 0.788592 -0.247926 -145.85 
-     41 136.804 905 1 1 1.13913 -0.327345 -174.45 
-     41 122.208 898 1 0 1.16649 -0.323416 -175.85 
-     41 111.372 908 0 1 1.70987 -0.259019 -204.45 
-     41 166.101 899 0 0 1.73846 -0.244716 -205.85 
-     41 116.636 896 3 0 0.711539 -0.705682 -115.85 
-     41 41.6177 791 3 0 -4.31229 -21.8498 -116.25 
-     41 78.1561 790 3 0 -4.31234 -21.85 -116.249 
-     41 6.76688 876 3 1 -4.84026 -21.4828 -114.85 
-     41 242.457 875 3 1 -4.85 -21.4755 -114.829 
-Number of digits in this event =  10
+     41 96.8268 903 2 1 0.699228 -0.119278 -144.45 
+     41 117.186 899 2 0 0.70288 -0.109183 -145.85 
+     41 252.19 904 0 1 0.994761 -0.16639 -204.45 
+     41 116.658 899 0 0 0.990282 -0.17782 -205.85 
+     41 99.9471 897 0 0 0.916324 -0.634731 -205.85 
+     41 152.676 857 1 1 -8.62009 -59.9872 -174.711 
+     41 233.545 903 0 1 0.7318 -0.101025 -204.45 
+     41 299.605 736 2 0 62.0997 -32.6795 -146.25 
+     41 49.6172 1229 2 1 65.8981 -33.9477 -144.85 
+     41 53.831 1230 2 1 66.05 -34.0061 -144.776 
+     41 67.1801 1231 2 1 66.25 -33.9575 -144.728 
+     41 87.7744 1232 2 1 66.45 -33.9239 -144.72 
+     41 77.6546 1233 2 1 66.65 -33.7885 -144.739 
+     41 514.766 731 2 0 66.2928 -33.7123 -145.85 
+     41 39.9717 730 2 0 65.8967 -33.85 -146.111 
+Number of digits in this event =  6
 Event: 42
-Number of tracker hits in this event =  23
-     42 112.987 898 4 1 -0.416183 0.146347 -84.45 
-     42 113.872 900 4 0 -0.436656 0.148907 -85.85 
-     42 185.014 895 3 1 -0.871247 0.197745 -114.45 
-     42 206.76 900 3 0 -0.888168 0.204655 -115.85 
-     42 141.105 894 2 1 -1.21818 0.353251 -144.45 
-     42 151.478 901 2 0 -1.23662 0.355417 -145.85 
-     42 199.934 892 1 1 -1.58826 0.436734 -174.45 
-     42 177.699 901 1 0 -1.60424 0.444239 -175.85 
-     42 144.008 890 0 1 -1.93818 0.607358 -204.45 
-     42 227.82 902 0 0 -1.94601 0.62178 -205.85 
-     42 257.799 897 1 1 -0.546058 0.05 -174.483 
-     42 178.153 900 1 0 -0.66141 0.22234 -175.85 
-     42 28.68 882 0 1 -3.57403 4.86479 -204.45 
-     42 76.5182 881 0 1 -3.65 4.86022 -204.536 
-     42 45.1791 880 0 1 -3.85 4.85199 -204.775 
-     42 169.666 923 0 0 -4.80275 4.84829 -205.85 
-     42 257.465 899 5 0 -0.05 -0.146806 -56.1714 
-     42 121.144 915 0 1 3.10958 -0.498484 -204.45 
-     42 25.3909 896 0 0 3.42322 -0.82379 -205.85 
-     42 90.4519 895 0 0 3.44799 -0.85 -205.951 
-     42 157.673 629 1 1 -54.1882 -130.236 -174.45 
-     42 131.075 246 1 0 -53.8036 -130.899 -175.85 
-     42 285.308 245 1 0 -53.7887 -130.95 -175.955 
-Number of digits in this event =  18
+Number of tracker hits in this event =  12
+     42 112.219 900 5 1 0.0592878 -0.0594895 -54.45 
+     42 109.478 899 5 0 0.0647789 -0.0636772 -55.85 
+     42 112.084 900 4 1 0.189848 -0.184781 -84.45 
+     42 131.226 899 4 0 0.198033 -0.190094 -85.85 
+     42 146.472 901 3 1 0.319462 -0.29358 -114.45 
+     42 105.971 898 3 0 0.33726 -0.290679 -115.85 
+     42 177.229 903 2 1 0.725158 -0.229372 -144.45 
+     42 143.299 899 2 0 0.749797 -0.21782 -145.85 
+     42 110.364 906 1 1 1.26683 0.0823423 -174.45 
+     42 135.395 900 1 0 1.29012 0.102513 -175.85 
+     42 120.208 908 0 1 1.76237 0.512236 -204.45 
+     42 119.93 902 0 0 1.78821 0.527471 -205.85 
+Number of digits in this event =  7
 Event: 43
-Number of tracker hits in this event =  31
-     43 164.033 900 4 1 0.22017 -0.720674 -84.45 
-     43 112.661 896 4 0 0.247886 -0.742555 -85.85 
-     43 114.65 904 3 1 0.864415 -1.34168 -114.45 
-     43 316.317 893 3 0 0.870649 -1.35842 -115.85 
-     43 115.008 904 2 1 0.890952 -1.35795 -144.45 
-     43 121.421 893 2 0 0.951415 -1.3029 -145.85 
-     43 109.754 911 1 1 2.35323 -0.17238 -174.45 
-     43 38.2809 899 1 0 2.57942 -0.244442 -175.85 
-     43 85.7456 898 1 0 2.59607 -0.25 -175.964 
-     43 16.1051 943 0 1 8.8123 -1.11824 -204.45 
-     43 100.139 944 0 1 8.85 -1.10188 -204.49 
-     43 64.0636 945 0 1 9.05 -1.02029 -204.704 
-     43 176.728 898 0 0 10.0018 -0.437425 -205.85 
-     43 14.8076 899 0 0 10.3061 -0.25 -206.213 
-     43 27.4401 810 2 0 -31.897 -18.0152 -146.25 
-     43 149.191 809 2 0 -31.9309 -18.05 -146.186 
-     43 4.95034 726 2 1 -34.8306 -17.2608 -144.85 
-     43 62.1803 725 2 1 -34.85 -17.2536 -144.843 
-     43 76.1864 724 2 1 -35.05 -17.1765 -144.779 
-     43 73.6146 723 2 1 -35.25 -17.091 -144.734 
-     43 67.7732 722 2 1 -35.45 -16.9345 -144.7 
-     43 22.7571 721 2 1 -35.65 -16.9489 -144.817 
-     43 65.8109 806 2 0 -37.9864 -18.7193 -145.85 
-     43 203.626 805 2 0 -38.1575 -18.85 -145.925 
-     43 76.0464 804 2 0 -38.7318 -19.05 -145.921 
-     43 39.8956 693 2 1 -41.3415 -19.8977 -144.85 
-     43 160.068 692 2 1 -41.45 -19.9346 -144.803 
-     43 203.397 691 2 1 -41.65 -19.9418 -144.581 
-     43 107.063 690 2 1 -41.85 -20.0793 -144.49 
-     43 106.448 794 2 0 -40.9173 -21.1936 -145.85 
-     43 131.525 793 2 0 -40.8477 -21.25 -145.913 
-Number of digits in this event =  11
+Number of tracker hits in this event =  13
+     43 206.487 899 5 1 -0.0992844 0.104578 -54.45 
+     43 110.587 900 5 0 -0.108702 0.110726 -55.85 
+     43 129.979 898 4 1 -0.334562 0.261921 -84.45 
+     43 126.325 901 4 0 -0.356498 0.270478 -85.85 
+     43 208.991 896 3 1 -0.795582 0.424056 -114.45 
+     43 105.215 901 3 0 -0.836391 0.42037 -115.85 
+     43 123.963 891 2 1 -1.70605 0.306822 -144.45 
+     43 199.907 901 2 0 -1.7497 0.309038 -145.85 
+     43 116.065 887 1 1 -2.62604 0.325857 -174.45 
+     43 224.412 901 1 0 -2.67459 0.33511 -175.85 
+     43 116.269 881 0 1 -3.69352 0.516586 -204.45 
+     43 107.065 902 0 0 -3.73917 0.523839 -205.85 
+     43 27.0787 917 5 1 3.56766 3.11011 -54.5944 
+Number of digits in this event =  8
 Event: 44
-Number of tracker hits in this event =  12
-     44 129.491 899 4 1 -0.0517057 0.14993 -84.45 
-     44 115.392 900 4 0 -0.0546396 0.153807 -85.85 
-     44 143.15 899 3 1 -0.110536 0.240231 -114.45 
-     44 115.712 900 3 0 -0.103025 0.245201 -115.85 
-     44 180.458 900 2 1 0.0967717 0.331362 -144.45 
-     44 127.447 901 2 0 0.101472 0.341985 -145.85 
-     44 113.104 900 1 1 0.201395 0.574835 -174.45 
-     44 113.162 902 1 0 0.208148 0.595229 -175.85 
-     44 123.261 901 0 1 0.318801 1.06809 -204.45 
-     44 102.027 905 0 0 0.328444 1.09019 -205.85 
-     44 108.145 901 3 0 0.387945 0.404113 -115.85 
-     44 39.1942 902 3 0 0.495713 0.45 -116.135 
-Number of digits in this event =  6
+Number of tracker hits in this event =  53
+     44 138.347 900 4 1 0.184219 0.231207 -84.45 
+     44 176.605 900 4 0 0.185623 0.220855 -85.85 
+     44 138.376 900 3 1 0.109924 0.0777533 -114.45 
+     44 116.394 900 3 0 0.0941815 0.0708165 -115.85 
+     44 108.632 898 2 1 -0.309004 -0.136185 -144.45 
+     44 157.497 899 2 0 -0.313692 -0.150755 -145.85 
+     44 105.686 898 1 1 -0.405308 -0.42848 -174.45 
+     44 152.583 898 1 0 -0.41074 -0.442364 -175.85 
+     44 102.924 897 0 1 -0.565176 -0.721022 -204.45 
+     44 115.534 896 0 0 -0.554636 -0.719537 -205.85 
+     44 79.6062 892 4 1 -1.63294 -1.55161 -84.45 
+     44 99.863 891 4 1 -1.65 -1.56034 -84.5603 
+     44 145.427 891 4 0 -1.87532 -1.65282 -85.85 
+     44 137.049 867 3 1 -6.60173 -3.80949 -114.45 
+     44 61.6227 866 3 1 -6.65 -3.85467 -114.799 
+     44 89.1018 880 3 0 -6.83459 -4.0118 -115.85 
+     44 43.2355 879 3 0 -6.8796 -4.05 -116.106 
+     44 1.34675 841 2 1 -11.8481 -7.33051 -144.45 
+     44 109.222 840 2 1 -11.85 -7.32989 -144.453 
+     44 29.8415 839 2 1 -12.05 -7.26488 -144.774 
+     44 41.7257 864 2 0 -12.6947 -7.06396 -145.85 
+     44 118.282 865 2 0 -12.7397 -7.05 -145.925 
+     44 87.6423 750 1 1 -29.8893 -1.99107 -174.45 
+     44 83.0985 749 1 1 -30.05 -1.9959 -174.678 
+     44 135.47 890 1 0 -30.9289 -2.01777 -175.85 
+     44 0.489738 619 0 1 -56.2469 -2.59861 -204.45 
+     44 103.04 618 0 1 -56.25 -2.59921 -204.453 
+     44 82.8401 617 0 1 -56.45 -2.63663 -204.656 
+     44 99.3104 886 0 0 -57.6408 -2.80624 -205.85 
+     44 46.0568 885 0 0 -57.9232 -2.85 -206.129 
+     44 94.9674 751 1 1 -29.8191 -2.05722 -174.45 
+     44 34.4851 752 1 1 -29.65 -2.15411 -174.762 
+     44 159.378 887 1 0 -28.6512 -2.5261 -175.85 
+     44 13.6907 886 1 0 -28.3142 -2.65 -176.212 
+     44 26.6847 915 0 1 3.21394 -13.7681 -204.45 
+     44 125.689 916 0 1 3.25 -13.7886 -204.541 
+     44 69.2535 829 0 0 4.1917 -14.1973 -205.85 
+     44 72.8252 828 0 0 4.327 -14.25 -206.026 
+     44 171.719 833 0 0 3.56837 -13.4326 -205.85 
+     44 21.0725 881 3 0 -6.49803 -3.66064 -115.85 
+     44 111.223 882 3 0 -6.49022 -3.65 -115.915 
+     44 111.177 900 5 0 0.0582885 0.147473 -55.85 
+     44 180.125 899 4 0 0.161601 -0.196112 -85.85 
+     44 105.317 915 3 1 3.22538 -1.21453 -114.45 
+     44 136.079 895 3 0 3.31149 -1.00197 -115.85 
+     44 156.417 923 2 1 4.8182 3.49454 -144.45 
+     44 51.2686 917 2 0 4.9173 3.63359 -145.85 
+     44 55.6503 918 2 0 4.93091 3.65 -146.027 
+     44 142.089 933 1 1 6.78054 6.31655 -174.45 
+     44 2.8265 934 1 1 6.85 6.33016 -174.837 
+     44 129.837 931 1 0 7.03222 6.34696 -175.85 
+     44 125.636 960 0 1 12.1536 7.24739 -204.45 
+     44 112.154 937 0 0 12.2883 7.51514 -205.85 
+Number of digits in this event =  20
 Event: 45
-Number of tracker hits in this event =  28
-     45 102.799 898 4 1 -0.2954 0.0649642 -84.45 
-     45 103.586 900 4 0 -0.309303 0.100759 -85.85 
-     45 83.7065 897 3 1 -0.459692 1.00868 -114.45 
-     45 103.63 898 3 1 -0.45 1.01177 -114.719 
-     45 124.13 904 3 0 -0.410688 1.03218 -115.85 
-     45 189.686 903 2 1 0.704665 1.60933 -144.45 
-     45 116.44 908 2 0 0.905942 1.67119 -145.85 
-     45 108.755 929 1 1 5.95153 3.71407 -174.45 
-     45 164.945 918 1 0 6.25274 3.71493 -175.85 
-     45 56.6438 962 0 1 12.5927 3.88026 -204.45 
-     45 54.3982 963 0 1 12.65 3.90179 -204.643 
-     45 51.1773 919 0 0 12.9795 4.03676 -205.85 
-     45 74.4742 920 0 0 13.0117 4.05 -205.969 
-     45 282.019 890 0 1 -2.04266 -0.236948 -204.45 
-     45 281.575 899 0 0 -2.06713 -0.243272 -205.85 
-     45 65.8596 899 3 1 -0.16251 -0.05 -114.51 
-     45 84.783 900 3 1 0.05 -0.318871 -114.715 
-     45 70.7735 890 3 0 1.0381 -1.89551 -115.85 
-     45 140.209 889 3 0 1.13186 -2.05 -115.963 
-     45 53.6711 888 3 0 1.23667 -2.25 -116.133 
-     45 23.3803 971 2 1 14.3761 -40.8864 -144.45 
-     45 145.007 972 2 1 14.45 -40.9369 -144.495 
-     45 108.082 973 2 1 14.65 -41.076 -144.597 
-     45 94.667 974 2 1 14.85 -41.3058 -144.674 
-     45 130.688 975 2 1 15.05 -41.3852 -144.658 
-     45 81.153 976 2 1 15.25 -41.6652 -144.761 
-     45 221.594 683 2 0 20.4097 -43.3881 -145.85 
-     45 9.7911 682 2 0 20.4315 -43.45 -145.969 
-Number of digits in this event =  10
+Number of tracker hits in this event =  11
+     45 99.8112 900 5 1 0.0616366 -0.146659 -54.45 
+     45 201.323 899 5 0 0.0568804 -0.14341 -55.85 
+     45 56.6033 899 4 1 -0.05 -0.0997646 -84.6817 
+     45 172.65 899 4 0 -0.0567659 -0.0998219 -85.85 
+     45 143.971 899 3 1 -0.235182 -0.10398 -114.45 
+     45 165.179 899 3 0 -0.238449 -0.106477 -115.85 
+     45 120.183 898 2 1 -0.336881 -0.144533 -144.45 
+     45 191.785 899 2 0 -0.344334 -0.136652 -145.85 
+     45 8.33716 900 1 0 -0.471872 0.05 -176.202 
+     45 124.242 897 0 1 -0.526233 0.218605 -204.45 
+     45 185.14 900 0 0 -0.530459 0.23409 -205.85 
+Number of digits in this event =  9
 Event: 46
-Number of tracker hits in this event =  13
-     46 132.411 900 5 1 0.0736718 -0.0932571 -54.45 
-     46 123.316 899 5 0 0.0779022 -0.0991562 -55.85 
-     46 439.546 900 4 1 0.148115 -0.215213 -84.45 
-     46 169.786 899 4 0 0.151994 -0.220791 -85.85 
-     46 103.757 900 3 1 0.232465 -0.34208 -114.45 
-     46 96.5286 898 3 0 0.238257 -0.345707 -115.85 
-     46 86.5358 901 2 1 0.334557 -0.359968 -144.45 
-     46 168.933 898 2 0 0.358239 -0.363992 -145.85 
-     46 117.876 903 1 1 0.780823 -0.455472 -174.45 
-     46 125.505 897 1 0 0.810586 -0.461733 -175.85 
-     46 109.776 906 0 1 1.43553 -0.55474 -204.45 
-     46 95.9444 897 0 0 1.46102 -0.575069 -205.85 
-     46 52.9134 901 4 1 0.25 -0.659938 -84.4767 
-Number of digits in this event =  7
+Number of tracker hits in this event =  66
+     46 129.979 900 4 1 0.0776849 -0.197459 -84.45 
+     46 379.435 899 4 0 0.0717604 -0.166067 -85.85 
+     46 119.127 899 2 1 -0.181202 1.5222 -144.45 
+     46 128.989 907 2 0 -0.19363 1.55572 -145.85 
+     46 106.322 898 1 1 -0.429698 2.34239 -174.45 
+     46 108.537 911 1 0 -0.456099 2.36832 -175.85 
+     46 113.127 895 0 1 -1.02124 2.85073 -204.45 
+     46 118.621 914 0 0 -1.05382 2.86515 -205.85 
+     46 1.5227 899 6 1 -0.0704445 0.05 -24.8446 
+     46 125.428 902 6 0 -0.329727 0.488203 -25.85 
+     46 130.932 1005 6 0 -56.8299 21.1401 -26.25 
+     46 59.9412 613 6 1 -57.3814 21.1652 -24.85 
+     46 66.6542 612 6 1 -57.45 21.1639 -24.7037 
+     46 114.709 905 4 1 1.05785 -1.47293 -84.45 
+     46 111.322 892 4 0 1.15381 -1.53372 -85.85 
+     46 130.296 915 3 1 3.07098 -2.65926 -114.45 
+     46 24.2632 886 3 0 3.20619 -2.83712 -115.85 
+     46 95.2908 885 3 0 3.21557 -2.85 -115.949 
+     46 221.272 929 2 1 5.93531 -6.19575 -144.45 
+     46 138.807 869 2 0 6.06297 -6.22247 -145.85 
+     46 164.991 943 1 1 8.80858 -6.3716 -174.45 
+     46 140.443 867 1 0 8.86776 -6.52543 -175.85 
+     46 156.482 956 0 1 11.4084 -8.83568 -204.45 
+     46 6.05288 957 0 1 11.45 -8.86692 -204.832 
+     46 149.09 855 0 0 11.5829 -8.97415 -205.85 
+     46 100.156 833 10 1 -13.3839 158.377 95.2453 
+     46 124.168 928 2 1 5.85 -6.46018 -144.588 
+     46 76.1165 860 2 0 5.56684 -7.86308 -145.85 
+     46 92.4679 859 2 0 5.52902 -8.05 -146.026 
+     46 9.23263 858 2 0 5.53051 -8.25 -146.228 
+     46 103.393 938 1 1 7.72481 -41.1027 -174.45 
+     46 39.2381 696 1 0 7.6936 -40.6882 -175.85 
+     46 64.9015 697 1 0 7.69079 -40.65 -175.996 
+     46 58.8134 923 0 1 4.75861 -25.3402 -204.45 
+     46 129.009 922 0 1 4.65 -25.148 -204.455 
+     46 145.241 921 0 1 4.45 -24.8016 -204.464 
+     46 290.347 920 0 1 4.25 -24.2981 -204.481 
+     46 245.116 919 0 1 4.05 -23.984 -204.508 
+     46 1379.32 918 0 1 3.85 -23.5748 -204.519 
+     46 81.7908 804 0 0 4.62968 -19.1658 -205.85 
+     46 77.0558 805 0 0 4.72032 -19.05 -206.022 
+     46 582.299 899 4 1 -0.0799625 -0.275347 -84.45 
+     46 531.391 898 4 0 -0.101084 -0.25955 -85.85 
+     46 142.666 897 3 1 -0.512659 0.20782 -114.45 
+     46 127.349 901 3 0 -0.524685 0.256835 -115.85 
+     46 131.5 896 2 1 -0.757772 1.20547 -144.45 
+     46 149.07 906 2 0 -0.745396 1.27966 -145.85 
+     46 96.7014 897 1 1 -0.531388 2.83757 -174.45 
+     46 127.754 914 1 0 -0.534632 2.91181 -175.85 
+     46 119.727 897 0 1 -0.577578 4.37702 -204.45 
+     46 121.379 921 0 0 -0.549992 4.43297 -205.85 
+     46 127.138 892 3 1 -1.61297 1.44179 -114.45 
+     46 79.4391 911 3 0 -1.7773 2.34321 -115.85 
+     46 212.889 912 3 0 -1.80368 2.45 -116.02 
+     46 267.485 864 2 1 -7.12313 18.8889 -144.45 
+     46 18.139 994 2 0 -7.21224 19.0438 -145.85 
+     46 111.473 995 2 0 -7.21732 19.05 -145.917 
+     46 29.9277 857 1 1 -8.58699 23.1843 -174.45 
+     46 91.7495 856 1 1 -8.65 23.1682 -174.554 
+     46 5.4795 855 1 1 -8.85 23.1062 -174.835 
+     46 99.2731 1014 1 0 -9.56673 22.903 -175.85 
+     46 92.7153 1013 1 0 -9.75414 22.85 -176.116 
+     46 89.9714 737 0 1 -32.5234 16.3047 -204.45 
+     46 56.6031 736 0 1 -32.65 16.2543 -204.697 
+     46 124.997 979 0 0 -33.2333 16.0257 -205.85 
+     46 35.9643 792 0 1 -21.6219 1.76548 -204.516 
+Number of digits in this event =  33
 Event: 47
-Number of tracker hits in this event =  47
-     47 120.117 898 3 1 -0.345912 0.0957801 -114.45 
-     47 147.17 900 3 0 -0.36284 0.0957141 -115.85 
-     47 124.964 896 2 1 -0.687895 0.0773639 -144.45 
-     47 125.765 900 2 0 -0.706379 0.0740189 -145.85 
-     47 62.9581 899 1 0 -0.981907 -0.05 -176.04 
-     47 63.8658 953 3 1 10.7921 7.23364 -114.45 
-     47 69.8869 954 3 1 10.85 7.27587 -114.623 
-     47 141.698 938 3 0 11.4426 7.68991 -115.85 
-     47 39.0232 1077 2 1 35.5319 21.7092 -144.45 
-     47 94.7716 1076 2 1 35.45 21.8195 -144.531 
-     47 85.6777 1075 2 1 35.25 22.0266 -144.629 
-     47 73.4758 1074 2 1 35.05 22.1522 -144.718 
-     47 20.1987 1073 2 1 34.85 22.2525 -144.811 
-     47 43.1041 1015 2 0 33.4491 23.1708 -145.85 
-     47 131.466 1016 2 0 33.3293 23.25 -145.939 
-     47 34.5366 1017 2 0 32.9585 23.45 -146.159 
-     47 3.1508 961 1 1 12.2518 28.8021 -174.45 
-     47 152.512 960 1 1 12.25 28.801 -174.453 
-     47 256.369 1033 1 0 13.0462 26.6883 -175.85 
-     47 92.502 1032 1 0 13.0663 26.65 -175.87 
-     47 75.1657 1031 1 0 13.1054 26.45 -175.983 
-     47 71.411 1030 1 0 13.1432 26.25 -176.119 
-     47 102.752 1029 1 0 13.2155 26.05 -176.185 
-     47 85.8933 1028 1 0 13.4419 25.85 -176.203 
-     47 122.553 1027 1 0 13.5716 25.65 -176.102 
-     47 64.7734 1026 1 0 13.6178 25.45 -175.943 
-     47 36.8913 970 1 1 14.2204 24.9553 -174.85 
-     47 105.108 971 1 1 14.25 24.9351 -174.804 
-     47 96.4825 972 1 1 14.45 24.8425 -174.805 
-     47 62.9568 900 0 1 0.219726 -0.40233 -204.45 
-     47 51.0425 901 0 1 0.25 -0.392677 -204.456 
-     47 73.7324 902 0 1 0.45 -0.325896 -204.497 
-     47 67.1053 903 0 1 0.65 -0.237809 -204.499 
-     47 42.2439 904 0 1 0.85 -0.135363 -204.485 
-     47 18.0971 907 0 1 1.56329 0.386093 -204.45 
-     47 55.6519 908 0 1 1.65 0.363125 -204.497 
-     47 53.8696 909 0 1 1.85 0.431109 -204.518 
-     47 83.4747 910 0 1 2.05 0.484088 -204.609 
-     47 64.6573 911 0 1 2.25 0.509724 -204.658 
-     47 416.231 912 0 1 2.45 0.610743 -204.705 
-     47 8.42543 919 0 0 2.33591 4.02269 -205.85 
-     47 89.69 920 0 0 2.33461 4.05 -205.861 
-     47 794.269 921 0 0 2.42324 4.25 -206.067 
-     47 130.813 922 0 0 2.63458 4.45 -206.112 
-     47 133.431 896 0 0 -0.380939 -0.767511 -205.85 
-     47 134.245 925 0 0 4.11239 5.12143 -206.192 
-     47 58.936 809 0 0 -32.5735 -18.1792 -205.915 
-Number of digits in this event =  15
+Number of tracker hits in this event =  62
+     47 319.029 899 5 0 0.0661024 -0.246961 -55.85 
+     47 76.4958 898 5 0 0.0710375 -0.25 -56.0071 
+     47 110.489 905 4 1 1.09077 -0.699161 -84.45 
+     47 111.16 896 4 0 1.14157 -0.733695 -85.85 
+     47 25.0051 910 3 1 2.24518 -1.64116 -114.45 
+     47 130.681 911 3 1 2.25 -1.64277 -114.497 
+     47 135.245 891 3 0 2.39186 -1.68841 -115.85 
+     47 129.517 927 2 1 5.52468 -2.58918 -144.45 
+     47 162.482 887 2 0 5.68325 -2.64433 -145.85 
+     47 98.7669 886 2 0 5.69966 -2.65 -145.995 
+     47 109.307 945 1 1 9.05539 -3.64954 -174.45 
+     47 167.335 881 1 0 9.16957 -3.78136 -175.85 
+     47 131.47 957 0 1 11.6057 -6.35282 -204.45 
+     47 114.266 867 0 0 11.6426 -6.45584 -205.85 
+     47 227.764 898 2 1 -0.418569 -0.723702 -144.45 
+     47 266.966 896 2 0 -0.356526 -0.728307 -145.85 
+     47 99.3793 904 1 1 0.930854 -0.7417 -174.45 
+     47 271.419 896 1 0 1.01673 -0.749601 -175.85 
+     47 150.703 913 0 1 2.79837 -0.880733 -204.45 
+     47 10.1322 895 0 0 2.88797 -0.850724 -205.85 
+     47 247.951 896 0 0 2.89012 -0.85 -205.882 
+     47 273.984 900 5 1 0.097436 -0.0751653 -54.45 
+     47 112.568 903 4 1 0.712733 -0.250136 -84.45 
+     47 245.665 899 4 0 0.792473 -0.242478 -85.85 
+     47 267.012 912 3 1 2.49945 -0.15016 -114.45 
+     47 102.788 899 3 0 2.61021 -0.138052 -115.85 
+     47 277.302 924 2 1 4.87528 0.200696 -144.45 
+     47 99.786 900 2 0 4.96215 0.194872 -145.85 
+     47 198.58 933 1 1 6.7885 0.199734 -174.45 
+     47 122.89 900 1 0 6.92021 0.169075 -175.85 
+     47 123.044 947 0 1 9.4974 -0.578872 -204.45 
+     47 193.403 900 3 0 2.30503 0.0558108 -115.85 
+     47 371.985 893 2 1 -1.41629 4.86063 -144.45 
+     47 131.643 924 2 0 -1.60488 4.89004 -145.85 
+     47 5.08009 863 1 1 -7.44405 3.04299 -174.45 
+     47 154.291 862 1 1 -7.45 3.03846 -174.47 
+     47 122.185 913 1 0 -7.91262 2.80496 -175.85 
+     47 39.8529 792 0 1 -21.6193 1.28628 -204.45 
+     47 74.1241 791 0 1 -21.65 1.2569 -204.605 
+     47 136.076 904 0 0 -21.9638 0.995242 -205.85 
+     47 130.674 925 2 0 -1.21287 5.13257 -145.85 
+     47 125.107 900 4 1 0.117899 -0.0907053 -84.45 
+     47 96.2833 901 3 1 0.325308 -1.34104 -114.45 
+     47 110.951 893 3 0 0.322837 -1.39477 -115.85 
+     47 132.913 901 2 1 0.330155 -2.54547 -144.45 
+     47 1.95617 888 2 0 0.407444 -2.45 -146.233 
+     47 124.443 908 1 1 1.81 -0.960291 -174.45 
+     47 126.985 915 0 1 3.23347 2.31311 -204.45 
+     47 144.075 912 0 0 3.15907 2.56478 -205.85 
+     47 48.5823 895 1 0 1.94921 -0.85 -175.966 
+     47 135.594 911 1 1 2.30878 -1.0046 -174.85 
+     47 199.07 912 1 1 2.45 -0.901211 -174.704 
+     47 184.859 913 1 1 2.65 -0.8282 -174.675 
+     47 12.0145 818 0 1 -16.4258 -11.2971 -204.463 
+     47 297.628 1490 9 0 -78.8134 118.241 63.75 
+     47 76.0451 1491 9 0 -78.6891 118.35 63.9955 
+     47 182.729 1271 0 1 74.3279 46.3001 -204.832 
+     47 54.6355 896 1 1 -0.838396 -1.12399 -174.45 
+     47 61.0914 895 1 1 -0.85 -1.12734 -174.658 
+     47 120.926 894 1 0 -0.914543 -1.13964 -175.85 
+     47 130.787 886 0 1 -2.71629 -1.13666 -204.45 
+     47 127.439 894 0 0 -2.89812 -1.15747 -205.85 
+Number of digits in this event =  40
 Event: 48
-Number of tracker hits in this event =  53
-     48 131.159 901 5 1 0.275886 -0.122342 -54.45 
-     48 153.852 899 5 0 0.277577 -0.139736 -55.85 
-     48 124.379 902 4 1 0.617991 -0.790043 -84.45 
-     48 328.368 896 4 0 0.622216 -0.810465 -85.85 
-     48 120.603 904 3 1 0.893211 -1.01245 -114.45 
-     48 103.109 895 3 0 0.979954 -1.01208 -115.85 
-     48 126.512 913 2 1 2.67683 -0.906507 -144.45 
-     48 73.0662 895 2 0 2.77684 -0.860082 -145.85 
-     48 26.2378 896 2 0 2.79739 -0.85 -146.143 
-     48 79.5087 924 1 1 5.04391 0.315863 -174.45 
-     48 209.913 925 1 1 5.05 0.319006 -174.577 
-     48 482.396 901 1 0 5.11151 0.333272 -175.85 
-     48 96.5094 932 0 1 6.58264 0.368748 -204.45 
-     48 118.563 901 0 0 6.60125 0.325684 -205.85 
-     48 11.2981 904 1 0 5.90434 1.02989 -175.85 
-     48 119.753 905 1 0 5.92863 1.05 -175.88 
-     48 130.3 905 2 1 1.24973 -0.471879 -144.45 
-     48 140.907 906 2 1 1.25 -0.471797 -144.452 
-     48 102.421 898 2 0 1.49637 -0.434583 -145.85 
-     48 110.325 932 1 1 6.60793 2.39846 -174.45 
-     48 124.242 912 1 0 6.51282 2.58933 -175.85 
-     48 153.661 918 0 1 3.71102 10.0993 -204.45 
-     48 126.674 950 0 0 3.53374 10.196 -205.85 
-     48 234.305 901 4 1 0.441221 -0.158899 -84.45 
-     48 421.487 899 4 0 0.410972 -0.132329 -85.85 
-     48 153.618 901 3 1 0.28692 0.615369 -114.45 
-     48 109.578 902 3 0 0.486031 0.638877 -115.85 
-     48 142.143 924 2 1 4.97677 0.946704 -144.45 
-     48 134.974 904 2 0 5.13894 0.990271 -145.85 
-     48 45.8895 942 1 1 8.51091 1.39261 -174.45 
-     48 119.095 941 1 1 8.45 1.45575 -174.57 
-     48 96.7501 910 1 0 7.79386 2.11898 -175.85 
-     48 57.2795 911 1 0 7.66371 2.25 -176.104 
-     48 201.298 861 0 1 -7.65515 17.3633 -204.45 
-     48 15.8395 860 0 1 -7.85 17.6363 -204.797 
-     48 108.217 992 0 0 -8.42196 18.4624 -205.85 
-     48 69.8123 993 0 0 -8.55388 18.65 -206.091 
-     48 112.072 897 2 0 1.15806 -0.517577 -145.85 
-     48 108.791 900 1 1 0.124546 -2.9934 -174.45 
-     48 121.989 884 1 0 0.338105 -3.10128 -175.85 
-     48 303.54 931 0 1 6.26664 -3.22169 -204.45 
-     48 108.743 884 0 0 6.64429 -3.20474 -205.85 
-     48 137.228 893 3 1 -1.27245 -2.1739 -114.45 
-     48 138.351 888 3 0 -1.40412 -2.37234 -115.85 
-     48 354.828 880 2 1 -4.02802 -6.32657 -144.45 
-     48 33.7713 879 2 1 -4.05 -6.36809 -144.725 
-     48 141.304 867 2 0 -4.14566 -6.54041 -145.85 
-     48 134.645 867 1 1 -6.47666 -10.9065 -174.45 
-     48 159.75 844 1 0 -6.63987 -11.1305 -175.85 
-     48 103.911 850 0 1 -9.86449 -15.6189 -204.45 
-     48 26.2388 821 0 0 -10.0648 -15.8403 -205.85 
-     48 90.6039 820 0 0 -10.0735 -15.85 -205.911 
-     48 492.706 889 3 0 -1.04335 -2.10545 -115.85 
-Number of digits in this event =  30
+Number of tracker hits in this event =  16
+     48 98.6289 899 5 1 -0.21786 -0.0871257 -54.45 
+     48 135.978 899 5 0 -0.224561 -0.095763 -55.85 
+     48 108.125 898 4 1 -0.378408 -0.289211 -84.45 
+     48 191.39 898 4 0 -0.390579 -0.296445 -85.85 
+     48 127.403 896 3 1 -0.657868 -0.421759 -114.45 
+     48 1.39252 897 3 1 -0.65 -0.420247 -114.838 
+     48 117.6 898 3 0 -0.644832 -0.400423 -115.85 
+     48 123.263 894 2 1 -1.17234 0.0789082 -144.45 
+     48 156.495 911 1 1 2.39876 -1.2525 -174.45 
+     48 212.875 894 1 0 2.48357 -1.2263 -175.85 
+     48 128.729 922 0 1 4.54505 -0.406705 -204.45 
+     48 82.3397 898 0 0 4.52884 -0.443719 -205.85 
+     48 61.8655 897 0 0 4.52646 -0.45 -206.086 
+     48 43.5058 897 4 0 -0.39847 -0.45 -86.1894 
+     48 101.338 127 2 0 -52.3433 -154.68 -146.25 
+     48 266.618 128 2 0 -52.5248 -154.55 -146.112 
+Number of digits in this event =  10
 Event: 49
-Number of tracker hits in this event =  42
-     49 261.017 900 5 1 0.140067 0.0725057 -54.45 
-     49 105.123 900 5 0 0.157076 0.0700057 -55.85 
-     49 159.147 904 3 1 0.881874 -0.13216 -114.45 
-     49 152.18 899 3 0 0.895539 -0.13692 -115.85 
-     49 139.06 905 2 1 1.18552 -0.244325 -144.45 
-     49 118.88 898 2 0 1.22212 -0.264008 -145.85 
-     49 250.216 909 1 1 1.96895 -0.641966 -174.45 
-     49 252.323 896 1 0 1.99399 -0.663626 -175.85 
-     49 125.89 912 0 1 2.60932 -1.07078 -204.45 
-     49 128.971 894 0 0 2.61289 -1.11586 -205.85 
-     49 146.888 910 1 1 2.0716 -0.725198 -174.45 
-     49 90.5552 892 1 0 1.7512 -1.52218 -175.85 
-     49 62.8236 891 1 0 1.70223 -1.65 -176.076 
-     49 133.692 874 0 1 -5.12786 -17.8955 -204.45 
-     49 16.0524 807 0 0 -5.57699 -18.6236 -205.85 
-     49 120.569 806 0 0 -5.59398 -18.65 -205.9 
-     49 114.615 729 0 0 -12.7966 -34.1763 -206.25 
-     49 126.094 837 0 1 -12.5908 -34.308 -204.85 
-     49 72.6238 822 1 0 25.9549 -15.5442 -176.25 
-     49 843.125 823 1 0 26.1469 -15.45 -176.111 
-     49 30.4347 1059 1 1 31.9599 -15.7421 -174.85 
-     49 63.6714 1060 1 1 32.05 -15.7506 -174.822 
-     49 62.6517 1061 1 1 32.25 -15.7494 -174.739 
-     49 50.5033 1062 1 1 32.45 -15.7838 -174.687 
-     49 64.7575 1063 1 1 32.65 -15.7998 -174.641 
-     49 76.5528 1064 1 1 32.85 -15.8104 -174.594 
-     49 55.2118 1065 1 1 33.05 -15.7978 -174.558 
-     49 66.5636 1066 1 1 33.25 -15.7907 -174.516 
-     49 30.7577 1067 1 1 33.45 -15.7753 -174.468 
-     49 64.4502 902 5 0 0.307886 0.54892 -55.85 
-     49 52.7136 903 5 0 0.345748 0.65 -56.0805 
-     49 247.389 900 1 1 0.089336 0.232214 -174.45 
-     49 119.05 900 1 0 0.321269 0.226897 -175.85 
-     49 131.561 926 0 1 5.35686 -0.345597 -204.45 
-     49 7.01406 927 0 1 5.45 -0.337799 -204.832 
-     49 115.022 898 0 0 5.65783 -0.277809 -205.85 
-     49 102.395 901 1 0 0.0580671 0.277594 -175.85 
-     49 82.4176 898 0 1 -0.264929 1.17562 -204.45 
-     49 34.3896 899 0 1 -0.25 1.1818 -204.742 
-     49 144.803 905 0 0 -0.190466 1.21576 -205.85 
-     49 140.941 911 0 1 2.29334 -1.72787 -204.45 
-     49 113.678 891 0 0 2.28346 -1.71135 -205.85 
-Number of digits in this event =  19
+Number of tracker hits in this event =  53
+     49 114.038 900 5 1 0.150197 0.289446 -54.45 
+     49 207.922 901 5 0 0.166918 0.308088 -55.85 
+     49 125.355 902 4 1 0.482836 0.672448 -84.45 
+     49 115.549 903 4 0 0.502847 0.682483 -85.85 
+     49 115.199 904 3 1 0.907239 0.926417 -114.45 
+     49 353.257 904 3 0 0.927515 0.942996 -115.85 
+     49 438.495 906 2 1 1.32259 1.2404 -144.45 
+     49 128.759 906 2 0 1.33841 1.27661 -145.85 
+     49 132.974 907 1 1 1.63469 2.11093 -174.45 
+     49 157.556 910 1 0 1.66138 2.15476 -175.85 
+     49 117.385 910 0 1 2.24405 3.03961 -204.45 
+     49 273.188 911 0 1 2.25 3.04644 -204.791 
+     49 123.997 915 0 0 2.26478 3.06853 -205.85 
+     49 8.65567 910 2 0 1.34649 2.22362 -145.85 
+     49 130.399 911 2 0 1.3487 2.25 -145.89 
+     49 236.362 910 0 0 2.28523 2.22711 -205.85 
+     49 130.896 905 2 1 1.24246 0.916482 -144.45 
+     49 113.483 907 2 0 0.928773 1.4533 -145.85 
+     49 102.366 869 1 1 -6.13525 13.5868 -174.45 
+     49 26.6122 868 1 1 -6.25 13.7517 -174.76 
+     49 89.0475 971 1 0 -6.58992 14.3264 -175.85 
+     49 43.8298 972 1 0 -6.66286 14.45 -176.084 
+     49 171.417 821 0 1 -15.7763 28.3103 -204.45 
+     49 87.3078 820 0 1 -15.85 28.475 -204.622 
+     49 68.4035 1048 0 0 -16.1251 29.707 -205.85 
+     49 103.333 1049 0 0 -16.15 29.85 -205.99 
+     49 29.9342 1050 0 0 -16.1887 30.05 -206.179 
+     49 136.573 1107 0 0 -26.7293 41.6146 -206.25 
+     49 83.5409 763 0 1 -27.3212 41.1876 -204.85 
+     49 26.9136 762 0 1 -27.45 41.0888 -204.594 
+     49 168.263 761 0 1 -27.7187 41.1617 -204.45 
+     49 8.0184 760 0 1 -27.85 41.6667 -204.825 
+     49 85.9719 1113 0 0 -28.4866 42.6787 -205.85 
+     49 285.059 1114 0 0 -28.5946 42.85 -206.023 
+     49 150.166 1190 0 0 -50.3344 58.081 -206.25 
+     49 103.163 647 0 1 -50.5138 58.2795 -204.85 
+     49 318.286 648 0 1 -50.45 58.3483 -204.542 
+     49 110.752 649 0 1 -50.25 58.4974 -204.46 
+     49 8.88131 1186 0 0 -48.7515 57.2555 -205.85 
+     49 512.895 1185 0 0 -48.7438 57.25 -205.855 
+     49 98.0583 905 2 0 1.47719 1.18789 -145.85 
+     49 118.571 910 1 1 2.13871 1.53112 -174.45 
+     49 131.924 907 1 0 2.20868 1.5842 -175.85 
+     49 174.227 918 0 1 3.73576 2.5542 -204.45 
+     49 106.232 912 0 0 3.71569 2.58682 -205.85 
+     49 11.5649 975 6 1 15.1775 -145.948 -24.6448 
+     49 282.151 383 3 0 -38.7822 -103.499 -116.25 
+     49 62.8257 552 3 0 -130.569 -69.5602 -116.25 
+     49 118.584 551 3 0 -130.66 -69.65 -116.118 
+     49 20.9596 242 3 1 -131.719 -69.9144 -114.85 
+     49 81.2568 241 3 1 -131.75 -69.9195 -114.815 
+     49 72.6026 240 3 1 -131.95 -69.9698 -114.605 
+     49 41.7573 1022 1 0 -36.6822 24.6394 -175.915 
+Number of digits in this event =  25
 Event: 50
-Number of tracker hits in this event =  15
-     50 158.503 901 5 1 0.312823 0.0897121 -54.45 
-     50 123.175 900 5 0 0.327469 0.0947248 -55.85 
-     50 103.315 903 4 1 0.663787 0.161153 -84.45 
-     50 145.903 900 4 0 0.680932 0.175263 -85.85 
-     50 119.684 905 3 1 1.07669 0.422398 -114.45 
-     50 108.148 902 3 0 1.1023 0.450711 -115.85 
-     50 148.488 910 2 1 2.11801 0.755713 -144.45 
-     50 194.502 903 2 0 2.26231 0.799845 -145.85 
-     50 120.352 925 1 1 5.14121 2.00945 -174.45 
-     50 110.087 910 1 0 5.25269 2.17301 -175.85 
-     50 153.352 935 0 1 7.14713 5.4617 -204.45 
-     50 13.5278 927 0 0 7.25888 5.64372 -205.85 
-     50 85.9983 928 0 0 7.26288 5.65 -205.899 
-     50 141.095 1074 1 1 35.0044 174.732 -174.837 
-     50 167.397 1075 1 1 35.05 174.808 -174.776 
-Number of digits in this event =  10
-Event: 51
-Number of tracker hits in this event =  31
-     51 119.523 900 4 1 0.242023 0.292337 -84.45 
-     51 131.177 901 4 0 0.249974 0.299126 -85.85 
-     51 168.118 901 3 1 0.390235 0.436809 -114.45 
-     51 121.531 901 3 0 0.395778 0.446632 -115.85 
-     51 108.288 902 2 1 0.53861 0.657491 -144.45 
-     51 135.12 903 2 0 0.524189 0.668899 -145.85 
-     51 118.216 900 1 1 0.152604 0.865172 -174.45 
-     51 370.446 904 1 0 0.147924 0.857468 -175.85 
-     51 125.555 900 0 1 0.113106 0.714258 -204.45 
-     51 108.848 903 0 0 0.0829684 0.711654 -205.85 
-     51 0.394955 894 1 1 -1.24892 0.193332 -174.45 
-     51 107.655 893 1 1 -1.25 0.193646 -174.451 
-     51 68.6387 892 1 1 -1.45 0.251459 -174.641 
-     51 3.66084 903 1 0 -2.7299 0.845753 -175.85 
-     51 104.06 1081 1 0 -16.9016 36.3061 -176.25 
-     51 214.315 1082 1 0 -16.6631 36.45 -176.039 
-     51 5.70335 824 1 1 -15.0623 37.3228 -174.85 
-     51 56.9761 825 1 1 -15.05 37.3293 -174.841 
-     51 49.2573 826 1 1 -14.85 37.4461 -174.692 
-     51 62.9648 827 1 1 -14.65 37.5179 -174.618 
-     51 61.9191 828 1 1 -14.45 37.6137 -174.583 
-     51 51.2053 829 1 1 -14.25 37.7015 -174.538 
-     51 74.322 830 1 1 -14.05 37.7967 -174.521 
-     51 48.8836 831 1 1 -13.85 37.8802 -174.476 
-     51 267.212 1051 2 0 -12.0817 30.3689 -146.25 
-     51 47.8411 1050 2 0 -12.1341 30.25 -145.973 
-     51 33.0942 844 2 1 -11.1266 28.2313 -144.85 
-     51 139.251 845 2 1 -11.05 28.1544 -144.803 
-     51 118.767 846 2 1 -10.85 27.8598 -144.686 
-     51 219.99 1035 2 0 -10.002 27.0998 -145.85 
-     51 154.917 1034 2 0 -9.8957 27.05 -145.996 
+Number of tracker hits in this event =  28
+     50 115.835 899 5 1 -0.0761293 -0.0983163 -54.45 
+     50 183.483 899 5 0 -0.0823031 -0.0958311 -55.85 
+     50 151.211 898 3 1 -0.321122 0.766674 -114.45 
+     50 117.1 903 3 0 -0.301728 0.829487 -115.85 
+     50 24.0812 911 2 0 -0.05 2.3449 -146.169 
+     50 196.82 894 1 1 -1.15875 3.71412 -174.45 
+     50 134.861 918 1 0 -1.21518 3.80074 -175.85 
+     50 120.509 889 0 1 -2.23468 5.61826 -204.45 
+     50 130.545 928 0 0 -2.24919 5.70894 -205.85 
+     50 414.703 872 2 0 -31.4764 -5.49678 -146.25 
+     50 2.58308 686 2 1 -42.6851 43.8542 -144.75 
+     50 28.2963 726 2 1 -34.7478 47.2029 -144.557 
+     50 227.515 898 2 1 -0.33926 0.264291 -144.45 
+     50 7.09794 897 2 1 -0.45 0.404182 -144.836 
+     50 34.7694 903 2 0 -0.664181 0.840596 -145.85 
+     50 108.651 904 2 0 -0.668795 0.85 -145.872 
+     50 24.8811 851 1 1 -9.82988 13.0742 -174.45 
+     50 107.577 850 1 1 -9.85 13.1066 -174.508 
+     50 49.8268 968 1 0 -10.2709 13.8165 -175.85 
+     50 106.633 969 1 0 -10.29 13.85 -175.914 
+     50 258.504 803 0 1 -19.3168 27.7773 -204.45 
+     50 11.7242 802 0 1 -19.45 28.0533 -204.803 
+     50 93.0593 1044 0 0 -20.14 28.9252 -205.85 
+     50 210.13 1045 0 0 -20.2393 29.05 -206 
+     50 9.05039 1046 0 0 -20.3809 29.25 -206.228 
+     50 229.031 967 1 0 -10.5824 13.65 -176.015 
+     50 48.7118 1008 3 0 -45.0576 21.7204 -116.012 
+     50 81.1756 1538 14 1 127.78 71.8531 215.306 
 Number of digits in this event =  12
+Event: 51
+Number of tracker hits in this event =  30
+     51 489.078 901 4 1 0.439949 0.0543383 -84.45 
+     51 111.863 900 4 0 0.463938 0.0563552 -85.85 
+     51 122.787 904 3 1 1.00292 0.143548 -114.45 
+     51 111.872 900 3 0 1.01261 0.177032 -115.85 
+     51 117.558 905 2 1 1.24254 0.915922 -144.45 
+     51 131.304 905 2 0 1.26717 1.11603 -145.85 
+     51 148.784 910 1 1 2.09808 4.9356 -174.45 
+     51 166.654 925 1 0 2.11608 5.14573 -175.85 
+     51 100.294 910 0 1 2.18905 9.2039 -204.45 
+     51 143.571 946 0 0 2.13029 9.38149 -205.85 
+     51 271.188 907 0 1 1.49316 0.122731 -204.45 
+     51 296.113 900 0 0 1.49623 0.126972 -205.85 
+     51 246.354 904 2 1 0.938401 -0.0804952 -144.45 
+     51 150.531 898 2 0 1.19784 -0.275998 -145.85 
+     51 72.0237 932 1 1 6.55926 -4.10072 -174.45 
+     51 69.342 933 1 1 6.65 -4.21721 -174.657 
+     51 85.9413 875 1 0 7.31552 -4.91918 -175.85 
+     51 138.369 874 1 0 7.4427 -5.05 -176.073 
+     51 40.0088 1018 0 1 23.799 -19.8395 -204.45 
+     51 112.149 1019 0 1 23.85 -19.8894 -204.547 
+     51 113.1 797 0 0 24.5101 -20.5195 -205.85 
+     51 49.6513 796 0 0 24.6461 -20.65 -206.127 
+     51 119.443 899 2 0 0.963171 -0.0694142 -145.85 
+     51 117.847 907 1 1 1.59158 -0.0737316 -174.45 
+     51 151.799 899 1 0 1.60108 -0.096484 -175.85 
+     51 121.919 908 0 1 1.82547 -0.802452 -204.45 
+     51 171.692 896 0 0 1.82043 -0.839264 -205.85 
+     51 94.8766 863 0 0 6.65782 -7.3497 -206.123 
+     51 205.475 623 0 0 101.45 -55.4431 -206.129 
+     51 247.109 624 0 0 101.768 -55.25 -205.955 
+Number of digits in this event =  19
 Event: 52
-Number of tracker hits in this event =  18
-     52 115.308 899 4 1 -0.131325 0.208576 -84.45 
-     52 120.599 900 4 0 -0.12858 0.207857 -85.85 
-     52 122.143 899 3 1 -0.087594 0.193252 -114.45 
-     52 187.472 900 3 0 -0.126579 0.221035 -115.85 
-     52 130.431 895 2 1 -0.885046 0.559784 -144.45 
-     52 138.978 902 2 0 -0.918324 0.606719 -145.85 
-     52 98.1023 891 1 1 -1.68273 1.59264 -174.45 
-     52 124.327 907 1 0 -1.79693 1.62189 -175.85 
-     52 144.429 880 0 1 -3.95533 2.30503 -204.45 
-     52 191.767 911 0 0 -4.04056 2.27418 -205.85 
-     52 196.388 898 6 0 -0.557397 -0.265536 -25.85 
-     52 42.5011 792 6 0 -5.24471 -21.4536 -26.25 
-     52 298.098 793 6 0 -5.2057 -21.45 -26.1337 
-     52 117.498 826 6 1 -14.6641 -25.048 -24.85 
-     52 191.815 775 6 0 -16.1228 -25.0431 -25.85 
-     52 191.65 222 2 0 14.9545 -135.595 -145.935 
-     52 21.1517 1384 3 0 56.9807 96.95 -116.159 
-     52 29.4652 1339 3 1 87.85 102.106 -114.531 
-Number of digits in this event =  15
+Number of tracker hits in this event =  9
+     52 97.1509 899 4 0 0.11701 -0.0503549 -85.85 
+     52 106.33 900 3 1 0.215539 -0.0766745 -114.45 
+     52 117.778 899 3 0 0.225392 -0.0848338 -115.85 
+     52 136.765 901 2 1 0.42423 -0.238389 -144.45 
+     52 136.392 898 2 0 0.432912 -0.250403 -145.85 
+     52 128.475 902 1 1 0.592653 -0.518914 -174.45 
+     52 104.816 897 1 0 0.60689 -0.53572 -175.85 
+     52 147.918 904 0 1 0.89898 -0.837353 -204.45 
+     52 104.004 895 0 0 0.904438 -0.858476 -205.85 
+Number of digits in this event =  5
 Event: 53
-Number of tracker hits in this event =  22
-     53 126.925 897 3 1 -0.597935 0.0994146 -114.45 
-     53 154.366 900 3 0 -0.59319 0.0988755 -115.85 
-     53 139.486 897 2 1 -0.501479 0.0659364 -144.45 
-     53 220.188 900 2 0 -0.497428 0.0618865 -145.85 
-     53 105.06 897 0 1 -0.476963 -0.108865 -204.45 
-     53 118.983 899 0 0 -0.473721 -0.11577 -205.85 
-     53 177.956 903 5 0 -0.294087 0.692204 -55.85 
-     53 220.844 892 5 1 -1.56235 0.512887 -54.85 
-     53 196.471 891 5 1 -1.65 0.508873 -54.7632 
-     53 42.8133 810 9 0 -155.021 -17.9209 63.75 
-     53 87.0214 811 9 0 -154.953 -17.85 63.8754 
-     53 3.07777 138 9 1 -152.366 -17.1942 65.15 
-     53 62.0318 139 9 1 -152.35 -17.1903 65.1568 
-     53 100.378 140 9 1 -152.15 -17.1371 65.2469 
-     53 57.1831 141 9 1 -151.95 -16.9001 65.2479 
-     53 89.9907 142 9 1 -151.75 -16.8598 65.232 
-     53 332.88 143 9 1 -151.55 -16.8666 65.2161 
-     53 198.394 144 9 1 -151.35 -16.8026 65.2579 
-     53 166.604 145 9 1 -151.15 -16.7019 65.4613 
-     53 39.3377 146 9 1 -150.95 -16.6058 65.5471 
-     53 324.971 820 9 0 -152.053 -16.0017 64.15 
-     53 154.021 821 9 0 -151.934 -15.85 63.9123 
-Number of digits in this event =  15
+Number of tracker hits in this event =  15
+     53 122.597 900 5 1 0.0564208 -0.100862 -54.45 
+     53 156.439 899 5 0 0.0592632 -0.102774 -55.85 
+     53 119.181 900 4 1 0.0766051 -0.0750494 -84.45 
+     53 151.854 899 4 0 0.0889889 -0.0758529 -85.85 
+     53 41.953 900 1 1 0.090839 0.0505746 -174.45 
+     53 128.689 899 0 1 -0.0720227 -0.068958 -204.45 
+     53 124.277 899 0 0 -0.0703447 -0.0729568 -205.85 
+     53 125.92 914 7 0 6.06623 2.89443 3.75 
+     53 159.338 932 7 1 6.47732 2.97454 5.15 
+     53 54.5315 1077 8 0 21.8696 35.4985 33.75 
+     53 90.7839 1078 8 0 21.941 35.65 33.8806 
+     53 19.1061 1079 8 0 21.995 35.85 34.097 
+     53 161.743 1010 8 1 22.0515 37.1676 35.15 
+     53 332.523 1011 8 1 22.3565 37.9706 35.55 
+     53 101.327 1091 8 0 22.0419 38.3668 34.15 
+Number of digits in this event =  11
 Event: 54
-Number of tracker hits in this event =  36
-     54 123.214 900 5 1 0.0875861 0.0664538 -54.45 
-     54 136.254 899 4 1 -0.0566094 -0.499026 -84.45 
-     54 104.717 897 4 0 -0.0695797 -0.521412 -85.85 
-     54 121.577 898 3 1 -0.337017 -1.00325 -114.45 
-     54 97.3971 895 3 0 -0.346077 -1.02781 -115.85 
-     54 133.944 897 2 1 -0.554094 -1.51264 -144.45 
-     54 113.384 892 2 0 -0.570654 -1.5388 -145.85 
-     54 142.367 895 1 1 -0.917825 -2.0968 -174.45 
-     54 106.881 889 1 0 -0.902999 -2.11268 -175.85 
-     54 123.532 897 0 1 -0.618657 -2.41307 -204.45 
-     54 137.355 888 0 0 -0.591539 -2.42485 -205.85 
-     54 101.302 900 5 0 0.0811814 0.05 -55.9854 
-     54 100.168 901 5 0 0.0542546 0.25 -56.1626 
-     54 139.269 823 5 0 44.8284 -15.3518 -56.25 
-     54 12.5857 444 5 0 -20.6289 -91.3117 -56.25 
-     54 36.6813 1487 9 0 -88.7092 117.652 63.75 
-     54 62.6214 1488 9 0 -88.7683 117.75 63.7974 
-     54 59.1568 1489 9 0 -88.8883 117.95 63.8657 
-     54 55.9319 1490 9 0 -88.984 118.15 63.903 
-     54 71.8248 1491 9 0 -89.0745 118.35 63.9392 
-     54 102.5 1492 9 0 -89.0965 118.55 64.0004 
-     54 52.4348 1493 9 0 -89.0785 118.75 64.0899 
-     54 247.965 456 9 1 -88.688 120.664 65.15 
-     54 108.687 455 9 1 -88.85 121.526 65.4321 
-     54 116.67 454 9 1 -89.05 121.854 65.3102 
-     54 50.3822 453 9 1 -89.25 122.217 65.1711 
-     54 52.4202 1528 9 0 -90.4557 125.816 64.15 
-     54 78.745 1529 9 0 -90.5008 125.95 64.1122 
-     54 51.9223 1530 9 0 -90.539 126.15 64.0386 
-     54 98.8013 1531 9 0 -90.5371 126.35 63.9466 
-     54 68.1006 1532 9 0 -90.453 126.55 63.936 
-     54 47.7371 1533 9 0 -90.2585 126.75 63.9054 
-     54 84.9742 1534 9 0 -90.05 126.97 63.8518 
-     54 77.3135 1535 9 0 -89.7912 127.15 63.8119 
-     54 32.2322 1508 9 0 -92.2654 121.755 64.15 
-     54 364.555 1507 9 0 -92.3113 121.75 64.1393 
-Number of digits in this event =  12
+Number of tracker hits in this event =  22
+     54 99.5458 899 4 1 -0.194511 0.143327 -84.45 
+     54 114.148 900 4 0 -0.194066 0.156853 -85.85 
+     54 134.929 899 3 1 -0.129288 0.418703 -114.45 
+     54 135.982 901 3 0 -0.124794 0.434681 -115.85 
+     54 55.2105 899 2 1 -0.05 0.755984 -144.691 
+     54 115.256 903 2 0 -0.0519844 0.769201 -145.85 
+     54 125.711 899 1 1 -0.0793569 1.10897 -174.45 
+     54 120.32 905 1 0 -0.0713807 1.12265 -175.85 
+     54 165.511 900 0 1 0.116515 1.43047 -204.45 
+     54 308.118 906 0 0 0.1226 1.43562 -205.85 
+     54 69.5972 907 0 0 0.125277 1.45 -205.927 
+     54 71.098 908 0 0 0.216542 1.65 -206.076 
+     54 74.8789 909 0 0 0.308338 1.85 -206.13 
+     54 63.941 910 1 0 -4.58659 2.10334 -176.25 
+     54 125.333 909 1 0 -4.62137 2.05 -176.128 
+     54 222.826 908 1 0 -4.67599 1.85 -175.861 
+     54 149.558 876 1 1 -4.69058 1.11894 -174.85 
+     54 63.179 875 1 1 -4.85 1.06594 -174.698 
+     54 136.969 907 1 0 -4.32108 1.55517 -175.85 
+     54 0.881128 423 1 0 -38.8765 -95.5476 -175.898 
+     54 20.5525 422 1 0 -38.878 -95.55 -175.895 
+     54 248.814 701 1 1 -39.7203 -95.8308 -174.85 
+Number of digits in this event =  13
 Event: 55
-Number of tracker hits in this event =  37
-     55 138.768 898 3 1 -0.299974 0.0940022 -114.45 
-     55 110.476 900 3 0 -0.325916 0.102986 -115.85 
-     55 115.249 895 2 1 -0.851061 0.258978 -144.45 
-     55 241.234 901 2 0 -0.888273 0.261954 -145.85 
-     55 447.146 892 1 1 -1.60131 0.299259 -174.45 
-     55 214.406 901 1 0 -1.62807 0.28998 -175.85 
-     55 115.83 889 0 1 -2.18908 0.0575996 -204.45 
-     55 29.4006 899 6 1 -0.05 -0.129018 -24.7711 
-     55 20.8406 897 6 0 -0.726447 -0.627338 -25.85 
-     55 470.524 896 6 0 -0.758258 -0.65 -25.8989 
-     55 207.252 1192 6 0 3.5435 58.6372 -26.25 
-     55 126.787 1193 6 0 3.53754 58.65 -26.1857 
-     55 329.337 898 2 0 0.187411 -0.299574 -145.85 
-     55 124.088 923 1 1 4.79791 -3.89676 -174.45 
-     55 362.863 922 1 1 4.65 -3.59154 -174.638 
-     55 0.11932 893 1 0 4.48223 -1.25071 -175.85 
-     55 86.8342 894 1 0 4.48224 -1.25 -175.85 
-     55 119.303 895 1 0 4.48561 -1.05 -175.963 
-     55 65.7613 896 1 0 4.48754 -0.85 -176.024 
-     55 90.0971 897 1 0 4.46362 -0.65 -176.084 
-     55 67.4207 898 1 0 4.46452 -0.45 -176.162 
-     55 117.497 899 1 0 4.45807 -0.25 -176.22 
-     55 283.181 895 1 1 -0.987814 0.712439 -174.45 
-     55 162.92 903 1 0 -0.870705 0.759478 -175.85 
-     55 127.226 905 0 1 1.2144 1.81701 -204.45 
-     55 11.2258 904 0 1 1.05 1.76511 -204.811 
-     55 123.822 907 0 0 0.649967 1.58764 -205.85 
-     55 31.5843 903 0 1 0.765447 -14.8756 -204.45 
-     55 136.606 902 0 1 0.65 -14.9083 -204.512 
-     55 66.2567 901 0 1 0.45 -14.9182 -204.653 
-     55 21.4351 900 0 1 0.25 -14.9279 -204.8 
-     55 184.653 826 0 0 -1.15728 -14.8291 -205.85 
-     55 30.1678 732 0 0 5.37197 -33.561 -206.25 
-     55 22.7908 731 0 0 5.38494 -33.65 -206.223 
-     55 142.278 1744 2 0 -68.5649 168.972 -146.139 
-     55 191.684 598 0 0 54.8964 -60.2742 -206.074 
-     55 73.4585 597 0 0 55.1743 -60.45 -205.956 
-Number of digits in this event =  20
+Number of tracker hits in this event =  12
+     55 115.957 899 5 1 -0.0624905 -0.0623992 -54.45 
+     55 184.348 899 5 0 -0.0541926 -0.0701948 -55.85 
+     55 168.576 900 4 1 0.0968906 -0.228122 -84.45 
+     55 178.252 899 4 0 0.100959 -0.243635 -85.85 
+     55 117.514 900 3 1 0.149019 -0.601587 -114.45 
+     55 110.482 897 3 0 0.13164 -0.621439 -115.85 
+     55 121.654 899 2 1 -0.234003 -1.02256 -144.45 
+     55 116.217 895 2 0 -0.261974 -1.03974 -145.85 
+     55 146.514 896 1 1 -0.83962 -1.402 -174.45 
+     55 141.431 893 1 0 -0.86992 -1.41676 -175.85 
+     55 134.473 892 0 1 -1.47641 -1.73206 -204.45 
+     55 113.607 891 0 0 -1.49795 -1.73281 -205.85 
+Number of digits in this event =  9
 Event: 56
-Number of tracker hits in this event =  23
-     56 225.899 899 3 1 -0.107391 -0.18856 -114.45 
-     56 134.646 899 3 0 -0.104787 -0.202266 -115.85 
-     56 179.084 899 2 1 -0.08271 -0.439308 -144.45 
-     56 212.025 897 2 0 -0.0794726 -0.454987 -145.85 
-     56 134.788 899 0 1 -0.0878637 -1.08329 -204.45 
-     56 159.936 894 0 0 -0.0916367 -1.09927 -205.85 
-     56 168.268 898 2 0 0.173931 -0.340365 -145.85 
-     56 41.1433 919 1 1 4.0112 -2.12815 -174.45 
-     56 116.805 920 1 1 4.05 -2.14816 -174.608 
-     56 199.603 888 1 0 4.37617 -2.278 -175.85 
-     56 111.037 965 0 1 13.13 -6.10509 -204.45 
-     56 31.6642 966 0 1 13.25 -6.15092 -204.719 
-     56 297.402 868 0 0 13.757 -6.331 -205.85 
-     56 340.122 903 1 1 0.791356 -1.23365 -174.488 
-     56 120.016 904 1 1 0.85 -1.01696 -174.766 
-     56 87.8844 902 1 1 0.65 -0.815872 -174.639 
-     56 96.2934 900 2 1 0.05 -0.242899 -144.61 
-     56 103.697 985 1 1 17.0516 -6.26567 -174.45 
-     56 115.556 866 1 0 17.6334 -6.70522 -175.85 
-     56 127.891 1053 0 1 30.722 -16.7058 -204.45 
-     56 114.857 818 0 0 30.8736 -16.4457 -205.85 
-     56 42.9859 1112 1 0 -76.902 42.5984 -175.89 
-     56 158.265 516 1 1 -76.7434 43.565 -174.85 
-Number of digits in this event =  15
+Number of tracker hits in this event =  10
+     56 104.213 899 4 1 -0.117169 -0.183522 -84.45 
+     56 134.683 899 4 0 -0.124527 -0.200651 -85.85 
+     56 107.546 898 3 1 -0.260134 -0.5419 -114.45 
+     56 112.058 897 3 0 -0.264678 -0.559159 -115.85 
+     56 123.603 898 2 1 -0.305389 -0.894575 -144.45 
+     56 121.459 895 2 0 -0.308769 -0.908422 -145.85 
+     56 115.293 898 1 1 -0.375591 -1.20208 -174.45 
+     56 119.953 894 1 0 -0.37704 -1.21926 -175.85 
+     56 529.801 898 0 1 -0.354645 -1.62413 -204.45 
+     56 99.7701 892 0 0 -0.360409 -1.63628 -205.85 
+Number of digits in this event =  7
 Event: 57
-Number of tracker hits in this event =  39
-     57 125.611 899 5 1 -0.0682719 -0.0503612 -54.45 
-     57 142.475 899 5 0 -0.0642569 -0.0565514 -55.85 
-     57 166.815 899 3 1 -0.0937347 -0.186085 -114.45 
-     57 216.667 899 3 0 -0.0987621 -0.192807 -115.85 
-     57 420.721 899 2 1 -0.210825 -0.34322 -144.45 
-     57 228.638 898 2 0 -0.225116 -0.402579 -145.85 
-     57 118.956 897 1 1 -0.57538 -1.6482 -174.45 
-     57 536.683 891 1 0 -0.58737 -1.6998 -175.85 
-     57 132.644 896 0 1 -0.759806 -2.88403 -204.45 
-     57 101.399 885 0 0 -0.788589 -2.93063 -205.85 
-     57 104.767 898 1 1 -0.271859 -0.45407 -174.45 
-     57 108.417 898 1 0 -0.49578 -0.302799 -175.85 
-     57 34.138 865 0 1 -6.89328 2.47824 -204.45 
-     57 142.932 866 0 1 -6.85 2.58082 -204.522 
-     57 12.0883 920 0 0 -6.33597 4.22671 -205.85 
-     57 61.6204 921 0 0 -6.33013 4.25 -205.867 
-     57 63.3565 922 0 0 -6.27477 4.45 -205.994 
-     57 107.061 923 0 0 -6.22275 4.65 -206.031 
-     57 59.7609 924 0 0 -6.10893 4.85 -205.972 
-     57 294.131 867 0 1 -6.47288 5.88889 -204.85 
-     57 91.0133 868 0 1 -6.45 6.69775 -204.51 
-     57 124.481 869 0 1 -6.25 6.81989 -204.615 
-     57 72.0229 870 0 1 -6.05 7.01811 -204.711 
-     57 335.617 871 0 1 -5.85 7.14187 -204.739 
-     57 54.263 872 0 1 -5.65 7.76802 -204.818 
-     57 59.4086 938 0 0 -4.327 7.68536 -205.85 
-     57 125.989 937 0 0 -4.31846 7.65 -205.873 
-     57 129.026 874 1 1 -5.1338 -0.983917 -174.45 
-     57 4.40701 873 1 1 -5.25 -0.878533 -174.837 
-     57 117.944 896 1 0 -5.60106 -0.815258 -175.85 
-     57 124.64 821 0 1 -15.8466 1.55377 -204.45 
-     57 128.876 909 0 0 -15.7647 1.87948 -205.85 
-     57 88.0915 1296 1 0 -68.4428 79.287 -176.123 
-     57 214.48 1297 1 0 -68.4239 79.45 -175.992 
-     57 57.8202 302 1 1 -119.667 -129.111 -174.612 
-     57 60.0075 301 1 1 -119.75 -129.239 -174.486 
-     57 125.372 300 1 1 -119.95 -129.417 -174.509 
-     57 1.86615 256 1 0 -119.025 -128.754 -175.85 
-     57 285.769 257 1 0 -119.02 -128.75 -175.855 
-Number of digits in this event =  22
+Number of tracker hits in this event =  19
+     57 145.857 900 6 0 0.0745187 0.0518957 -25.85 
+     57 132.507 907 5 1 1.51422 0.902208 -54.45 
+     57 163.027 904 5 0 1.56569 0.995998 -55.85 
+     57 204.504 910 4 1 2.17424 2.92779 -84.45 
+     57 74.8986 914 4 0 2.17825 3.03251 -85.85 
+     57 46.7061 915 4 0 2.1782 3.05 -86.082 
+     57 97.0691 912 3 1 2.45499 5.37817 -114.45 
+     57 104.246 927 3 0 2.58088 5.49501 -115.85 
+     57 121.286 926 2 1 5.38397 7.94418 -144.45 
+     57 89.5354 940 2 0 5.24339 8.19209 -145.85 
+     57 38.5139 941 2 0 5.21054 8.25 -146.171 
+     57 129.049 910 1 1 2.20151 13.3103 -174.45 
+     57 235.368 968 1 0 1.96859 13.6806 -175.85 
+     57 100.413 884 0 1 -3.19569 21.2469 -204.45 
+     57 52.7382 883 0 1 -3.25 21.3289 -204.659 
+     57 124.323 1008 0 0 -3.54186 21.8097 -205.85 
+     57 114.781 1009 0 0 -3.56641 21.85 -205.95 
+     57 21.4215 362 5 1 -107.666 -87.7439 -54.4773 
+     57 142.466 861 2 0 -2.81509 -7.78523 -146.01 
+Number of digits in this event =  11
 Event: 58
-Number of tracker hits in this event =  24
-     58 115.28 898 4 1 -0.433659 0.116476 -84.45 
-     58 202.291 900 4 0 -0.441072 0.115434 -85.85 
-     58 257.362 897 3 1 -0.581386 0.0844664 -114.45 
-     58 217.492 900 3 0 -0.584376 0.0780201 -115.85 
-     58 448.919 896 2 1 -0.661494 -0.0724386 -144.45 
-     58 137.73 899 2 0 -0.664347 -0.133074 -145.85 
-     58 73.4938 895 1 1 -1.04689 -1.19896 -174.45 
-     58 28.923 894 1 1 -1.05 -1.2065 -174.734 
-     58 192.292 894 1 0 -1.06061 -1.23456 -175.85 
-     58 139.959 893 0 1 -1.348 -1.93045 -204.45 
-     58 129.921 890 0 0 -1.35686 -1.96901 -205.85 
-     58 24.1961 898 3 1 -0.317937 -0.05 -114.658 
-     58 73.6826 899 3 1 -0.25 -0.103329 -114.712 
-     58 6.50195 893 3 0 1.60135 -1.4301 -115.85 
-     58 72.7336 892 3 0 1.62909 -1.45 -115.868 
-     58 101.427 891 3 0 1.799 -1.65 -116.052 
-     58 44.8024 466 3 0 44.0769 -86.7707 -116.25 
-     58 137.74 465 3 0 43.9702 -86.85 -116.138 
-     58 35.0802 1109 3 1 41.9551 -86.9659 -114.85 
-     58 78.5062 1108 3 1 41.85 -86.9745 -114.812 
-     58 422.548 1107 3 1 41.65 -86.9482 -114.748 
-     58 257.631 894 0 1 -1.07366 -0.669626 -204.45 
-     58 291.048 896 0 0 -1.11833 -0.704515 -205.85 
-     58 67.4613 896 3 1 -0.65 0.150725 -114.686 
-Number of digits in this event =  14
+Number of tracker hits in this event =  28
+     58 111.906 900 5 1 0.0573686 -0.107551 -54.45 
+     58 293.801 899 5 0 0.0651033 -0.11918 -55.85 
+     58 131.515 900 4 1 0.232743 -0.37303 -84.45 
+     58 127.207 898 4 0 0.238639 -0.373554 -85.85 
+     58 122.364 901 3 1 0.358977 -0.390587 -114.45 
+     58 101.846 898 3 0 0.358754 -0.393565 -115.85 
+     58 125.507 901 2 1 0.26698 -0.498081 -144.45 
+     58 399.206 897 2 0 0.269103 -0.492797 -145.85 
+     58 270.523 901 1 1 0.299864 -0.384118 -174.45 
+     58 131.023 898 1 0 0.30558 -0.38071 -175.85 
+     58 225.239 901 0 1 0.43409 -0.339685 -204.45 
+     58 140.388 898 0 0 0.44316 -0.337882 -205.85 
+     58 177.103 33 12 0 102.025 -173.489 153.75 
+     58 7.1513 32 12 0 102.021 -173.55 153.862 
+     58 118.667 900 1 1 0.237933 -0.354563 -174.45 
+     58 104.464 899 1 0 0.231851 -0.150795 -175.85 
+     58 104.546 891 0 1 -1.68616 3.75684 -204.45 
+     58 135.958 917 0 0 -1.62663 3.49832 -205.85 
+     58 188.131 1007 0 0 -28.3855 21.4633 -206.25 
+     58 91.666 754 0 1 -29.1754 21.605 -204.85 
+     58 61.542 753 0 1 -29.25 21.6181 -204.664 
+     58 118.249 897 1 0 0.350559 -0.477219 -175.85 
+     58 41.8422 842 0 1 -11.501 -5.07989 -204.45 
+     58 93.3079 843 0 1 -11.45 -5.15056 -204.582 
+     58 13.413 870 0 0 -11.2698 -6.02515 -205.85 
+     58 99.9707 869 0 0 -11.2661 -6.05 -205.886 
+     58 27.5323 868 0 0 -11.2221 -6.25 -206.196 
+     58 102.186 1211 5 0 129.286 62.4261 -56.0316 
+Number of digits in this event =  15
 Event: 59
-Number of tracker hits in this event =  63
-     59 107.661 898 2 1 -0.329451 -0.224875 -144.45 
-     59 427.341 899 2 0 -0.334034 -0.244944 -145.85 
-     59 14.158 898 2 0 -0.335448 -0.25 -146.212 
-     59 115.142 898 1 1 -0.375566 -0.648302 -174.45 
-     59 100.443 896 1 0 -0.395156 -0.659887 -175.85 
-     59 130.621 896 0 1 -0.775622 -0.970972 -204.45 
-     59 118.312 895 0 0 -0.807385 -1.00582 -205.85 
-     59 133.74 894 2 1 -1.16295 -0.783326 -144.45 
-     59 127.249 895 2 0 -1.36505 -0.859874 -145.85 
-     59 146.123 873 1 1 -5.398 -2.59168 -174.45 
-     59 104.599 887 1 0 -5.46337 -2.55087 -175.85 
-     59 151.562 866 0 1 -6.72866 -0.833526 -204.45 
-     59 9.19969 900 0 0 -6.86145 0.242743 -205.85 
-     59 98.241 901 0 0 -6.8623 0.25 -205.859 
-     59 50.1009 902 0 0 -6.88616 0.45 -206.116 
-     59 62.3923 383 10 0 114.838 -103.426 93.75 
-     59 43.881 382 10 0 114.896 -103.55 93.9626 
-     59 32.9928 1474 10 1 115.142 -104.031 95.15 
-     59 321.88 1475 10 1 115.15 -104.05 95.1951 
-     59 3.81019 1476 10 1 115.35 -104.183 95.527 
-     59 22.3893 344 10 0 116.22 -111.154 94.15 
-     59 130.692 1481 10 1 116.408 -112.384 95.15 
-     59 71.8619 1482 10 1 116.55 -112.508 95.2733 
-     59 248.589 1483 10 1 116.75 -112.415 95.3065 
-     59 134.793 938 2 0 -14.6603 7.74035 -146.25 
-     59 25.5915 823 2 1 -15.4065 7.99983 -144.85 
-     59 116.95 822 2 1 -15.45 8.01219 -144.77 
-     59 50.4207 1069 3 0 -18.0806 33.9276 -116.25 
-     59 97.4081 1070 3 0 -18.0911 34.05 -116.118 
-     59 137.778 808 3 1 -18.271 34.5847 -114.85 
-     59 126.366 901 5 1 0.277503 0.154787 -54.45 
-     59 99.2785 900 5 0 0.359268 0.103653 -55.85 
-     59 127.211 910 4 1 2.148 -0.923007 -84.45 
-     59 143.52 895 4 0 2.30156 -1.00817 -85.85 
-     59 113.766 927 3 1 5.57528 -2.6449 -114.45 
-     59 133.048 886 3 0 5.73645 -2.76733 -115.85 
-     59 163.374 945 2 1 9.16881 -5.34264 -144.45 
-     59 104.066 872 2 0 9.27618 -5.45323 -145.85 
-     59 111.887 957 1 1 11.5188 -7.76831 -174.45 
-     59 122.437 860 1 0 11.645 -7.88261 -175.85 
-     59 102.889 969 0 1 13.994 -9.91378 -204.45 
-     59 117.5 849 0 0 14.1206 -10.051 -205.85 
-     59 262.684 912 2 0 -118.668 2.52338 -146.25 
-     59 177.193 913 2 0 -118.897 2.65 -146.13 
-     59 124.948 914 1 1 2.99852 3.75659 -174.45 
-     59 30.8482 920 1 0 2.93291 4.21818 -175.85 
-     59 193.306 921 1 0 2.92757 4.25 -175.946 
-     59 103.588 901 0 1 0.429199 13.5419 -204.45 
-     59 21.4456 966 0 0 0.0670003 13.3254 -205.85 
-     59 118.84 899 5 1 -0.102141 -0.19565 -54.45 
-     59 10.7609 899 5 0 -0.103129 -0.248313 -55.85 
-     59 99.3017 898 5 0 -0.103167 -0.25 -55.8941 
-     59 209.541 899 4 1 -0.114897 -1.39834 -84.45 
-     59 118.695 892 4 0 -0.126846 -1.45173 -85.85 
-     59 586.741 898 3 1 -0.318835 -2.43555 -114.45 
-     59 108.099 887 3 0 -0.262001 -2.48393 -115.85 
-     59 265.638 905 2 1 1.17341 -3.46299 -144.45 
-     59 125.01 882 2 0 1.2762 -3.54657 -145.85 
-     59 196.939 917 1 1 3.49951 -5.27471 -174.45 
-     59 152.484 873 1 0 3.62394 -5.36701 -175.85 
-     59 121.414 930 0 1 6.15234 -7.43173 -204.45 
-     59 185.868 862 0 0 6.30135 -7.51124 -205.85 
-     59 31.082 138 6 1 -152.527 44.9582 -24.6785 
-Number of digits in this event =  31
+Number of tracker hits in this event =  10
+     59 126.285 899 4 1 -0.1131 0.118876 -84.45 
+     59 112.794 900 4 0 -0.110561 0.130745 -85.85 
+     59 102.482 899 3 1 -0.0644584 0.388681 -114.45 
+     59 75.6003 901 3 0 -0.0519378 0.401924 -115.85 
+     59 131.754 900 2 1 0.197936 0.650255 -144.45 
+     59 130.414 903 2 0 0.218363 0.659408 -145.85 
+     59 113.692 903 1 1 0.695139 0.857267 -174.45 
+     59 121.977 904 1 0 0.720292 0.864364 -175.85 
+     59 120.568 905 0 1 1.23082 1.0017 -204.45 
+     59 105.815 904 0 0 1.255 1.00623 -205.85 
+Number of digits in this event =  7
 Event: 60
-Number of tracker hits in this event =  48
-     60 120.045 899 5 1 -0.123563 0.0808675 -54.45 
-     60 145.83 900 5 0 -0.126175 0.0829948 -55.85 
-     60 138.912 899 4 1 -0.129215 0.126562 -84.45 
-     60 110.9 900 4 0 -0.0836962 0.153324 -85.85 
-     60 236.183 904 3 1 0.986302 0.762651 -114.45 
-     60 112.399 903 3 0 1.03484 0.76505 -115.85 
-     60 133.233 909 2 1 1.93203 0.78659 -144.45 
-     60 136.485 903 2 0 1.97652 0.773957 -145.85 
-     60 126.486 914 1 1 2.8838 0.540851 -174.45 
-     60 118.693 902 1 0 2.93859 0.529483 -175.85 
-     60 151.309 919 0 1 3.96463 0.397304 -204.45 
-     60 112.22 901 0 0 4.02136 0.363751 -205.85 
-     60 108.366 899 3 1 -0.225269 0.253446 -114.45 
-     60 66.4379 898 3 1 -0.25 0.270144 -114.454 
-     60 64.133 897 3 1 -0.45 0.40063 -114.497 
-     60 78.3624 896 3 1 -0.65 0.49395 -114.553 
-     60 76.3941 895 3 1 -0.85 0.577341 -114.621 
-     60 98.259 894 3 1 -1.05 0.684368 -114.682 
-     60 26.5381 893 3 1 -1.25 0.82198 -114.803 
-     60 116.181 908 3 0 -3.36465 1.75195 -115.85 
-     60 200.728 909 3 0 -3.58798 1.85 -115.96 
-     60 180.391 986 3 0 -98.0388 17.3513 -116.25 
-     60 35.4294 401 3 1 -99.855 17.9729 -114.85 
-     60 55.987 400 3 1 -99.95 18.0137 -114.774 
-     60 93.8237 399 3 1 -100.15 18.099 -114.6 
-     60 22.1536 575 4 0 -63.203 -64.9872 -86.25 
-     60 70.4832 574 4 0 -63.1751 -65.05 -86.229 
-     60 58.5941 573 4 0 -63.0835 -65.25 -86.1526 
-     60 81.6859 572 4 0 -63.0098 -65.45 -86.1306 
-     60 58.0186 571 4 0 -62.9759 -65.65 -86.0955 
-     60 47.6193 570 4 0 -62.9578 -65.85 -86.0344 
-     60 52.8396 569 4 0 -62.9592 -66.05 -86.0002 
-     60 3.57966 568 4 0 -62.9636 -66.25 -85.9205 
-     60 107.34 900 3 0 -0.249919 0.224487 -115.85 
-     60 115.709 901 2 1 0.342646 3.5083 -144.45 
-     60 186.561 916 2 0 0.502762 3.41226 -145.85 
-     60 15.2859 945 1 1 9.22631 3.78309 -174.45 
-     60 116.422 946 1 1 9.25 3.77839 -174.501 
-     60 553.631 917 1 0 9.91822 3.57425 -175.85 
-     60 9.19033 1047 0 1 29.6283 0.114587 -204.45 
-     60 126.844 1048 0 1 29.65 0.131407 -204.484 
-     60 16.2593 1049 0 1 29.85 0.277237 -204.8 
-     60 492.365 903 0 0 30.4649 0.65218 -205.85 
-     60 186.181 995 0 0 56.0396 19.1425 -206.25 
-     60 10.5678 1186 0 1 57.416 18.3702 -204.85 
-     60 220.898 1187 0 1 57.45 18.3425 -204.818 
-     60 136.038 1188 0 1 57.65 18.1759 -204.63 
-     60 238.669 998 0 0 55.7964 19.6597 -205.85 
-Number of digits in this event =  19
+Number of tracker hits in this event =  12
+     60 134.768 895 4 1 -0.853781 -0.789354 -84.45 
+     60 165.006 896 4 0 -0.937031 -0.818514 -85.85 
+     60 115.72 885 3 1 -2.86115 -1.37517 -114.45 
+     60 149.411 893 3 0 -2.91479 -1.38136 -115.85 
+     60 16.2587 880 2 1 -4.04848 -1.55174 -144.45 
+     60 91.8846 879 2 1 -4.05 -1.55228 -144.51 
+     60 117.905 892 2 0 -4.08635 -1.56648 -145.85 
+     60 113.773 876 1 1 -4.77451 -1.69797 -174.45 
+     60 179.945 891 1 0 -4.80909 -1.68909 -175.85 
+     60 125.982 873 0 1 -5.42182 -1.33131 -204.45 
+     60 111.76 893 0 0 -5.44235 -1.30824 -205.85 
+     60 267.977 80 5 0 14.1993 -163.994 -56.1079 
+Number of digits in this event =  8
 Event: 61
-Number of tracker hits in this event =  26
-     61 114.485 899 4 1 -0.123776 0.430721 -84.45 
-     61 123.186 901 4 0 -0.135115 0.441254 -85.85 
-     61 211.027 898 3 1 -0.361786 0.647616 -114.45 
-     61 215.092 903 3 0 -0.3813 0.651635 -115.85 
-     61 226.963 896 2 1 -0.797327 0.760866 -144.45 
-     61 122.743 903 2 0 -0.813902 0.766911 -145.85 
-     61 130.755 894 1 1 -1.16179 0.883027 -174.45 
-     61 123.09 904 1 0 -1.19308 0.887817 -175.85 
-     61 119.335 891 0 1 -1.84298 1.03573 -204.45 
-     61 107.844 904 0 0 -1.86109 1.03944 -205.85 
-     61 276.87 898 2 1 -0.414295 0.88673 -144.45 
-     61 241.687 904 2 0 -0.423449 0.994653 -145.85 
-     61 124.127 893 1 1 -1.29156 3.91944 -174.45 
-     61 145.164 919 1 0 -1.40784 4.01592 -175.85 
-     61 271.522 882 0 1 -3.58054 6.08829 -204.45 
-     61 120.357 930 0 0 -3.74476 6.19397 -205.85 
-     61 92.3688 905 2 0 -0.351218 1.18976 -145.85 
-     61 40.6322 906 2 0 -0.341652 1.25 -146.122 
-     61 216.344 902 1 1 0.462177 8.89758 -174.45 
-     61 117.72 944 1 0 0.886165 8.97725 -175.85 
-     61 209.447 944 0 1 8.94583 13.3272 -204.45 
-     61 101.966 970 0 0 9.0901 14.0739 -205.85 
-     61 30.793 971 0 0 9.12723 14.25 -206.176 
-     61 255.279 887 1 1 -2.56383 3.55342 -174.45 
-     61 140.657 918 1 0 -2.61642 3.65354 -175.85 
-     61 185.227 929 0 0 -3.59634 6.01311 -205.85 
-Number of digits in this event =  19
+Number of tracker hits in this event =  12
+     61 130.353 900 4 0 -0.388062 0.0871656 -85.85 
+     61 104.842 898 3 1 -0.424872 2.73752 -114.45 
+     61 145.89 914 3 0 -0.305096 2.89177 -115.85 
+     61 108.481 913 2 1 2.7002 5.71702 -144.45 
+     61 121.382 929 2 0 2.78434 5.93239 -145.85 
+     61 24.8478 924 1 1 5.04509 9.76019 -174.45 
+     61 92.5232 925 1 1 5.05 9.77647 -174.567 
+     61 110.792 949 1 0 5.11665 9.93546 -175.85 
+     61 128.068 936 0 1 7.35659 13.6681 -204.45 
+     61 87.7737 969 0 0 7.45835 13.9753 -205.85 
+     61 19.7327 970 0 0 7.47898 14.05 -206.187 
+     61 180.214 492 5 0 -16.4168 -81.5133 -56.1894 
+Number of digits in this event =  6
 Event: 62
-Number of tracker hits in this event =  18
-     62 115.105 900 5 1 0.0524447 -0.0779367 -54.45 
-     62 472.534 899 5 0 0.0537923 -0.0821218 -55.85 
-     62 116.785 900 4 1 0.0628336 -0.197807 -84.45 
-     62 117.634 899 4 0 0.063841 -0.206714 -85.85 
-     62 361.413 900 3 1 0.0818888 -0.399515 -114.45 
-     62 196.143 898 3 0 0.0838583 -0.411331 -115.85 
-     62 119.865 900 2 1 0.158866 -0.675477 -144.45 
-     62 122.455 896 2 0 0.15375 -0.701219 -145.85 
-     62 190.118 899 0 1 -0.20282 -1.59743 -204.45 
-     62 139.482 892 0 0 -0.211019 -1.60347 -205.85 
-     62 441.235 900 6 0 -0.566105 0.128141 -25.85 
-     62 18.3408 76 1 1 -164.931 94.3101 -174.45 
-     62 173.894 75 1 1 -164.95 94.2808 -174.536 
-     62 23.0603 1365 1 0 -165.033 93.2024 -175.85 
-     62 78.7796 1364 1 0 -165.038 93.15 -175.911 
-     62 80.4113 1363 1 0 -165.037 92.95 -176.08 
-     62 68.9721 1362 1 0 -164.95 92.75 -176.159 
-     62 9.28267 1361 1 0 -164.939 92.55 -176.238 
-Number of digits in this event =  9
-Event: 63
-Number of tracker hits in this event =  10
-     63 116.417 901 4 1 0.326345 0.159542 -84.45 
-     63 196.118 900 4 0 0.332287 0.168091 -85.85 
-     63 109.972 901 3 1 0.435674 0.3694 -114.45 
-     63 144.189 901 3 0 0.436444 0.377526 -115.85 
-     63 169.781 902 2 1 0.472365 0.572213 -144.45 
-     63 108.835 902 2 0 0.474697 0.584719 -145.85 
-     63 112.697 902 1 1 0.505266 0.815232 -174.45 
-     63 140.231 903 1 0 0.497722 0.831898 -175.85 
-     63 94.087 901 0 1 0.368169 1.17964 -204.45 
-     63 132.845 905 0 0 0.361624 1.17715 -205.85 
+Number of tracker hits in this event =  7
+     62 117.322 899 3 1 -0.114807 -0.14427 -114.45 
+     62 121.073 899 3 0 -0.11017 -0.138788 -115.85 
+     62 123.756 900 1 1 0.0896152 0.285144 -174.45 
+     62 94.5714 901 1 0 0.0784274 0.307444 -175.85 
+     62 127.633 899 0 1 -0.169416 0.739165 -204.45 
+     62 122.501 903 0 0 -0.170195 0.761497 -205.85 
+     62 63.3881 988 3 0 -157.94 17.6666 -116.25 
 Number of digits in this event =  6
+Event: 63
+Number of tracker hits in this event =  16
+     63 405.507 900 5 1 0.127156 0.24706 -54.45 
+     63 207.161 901 5 0 0.132365 0.268299 -55.85 
+     63 150.902 901 4 1 0.259302 0.707095 -84.45 
+     63 120.911 903 4 0 0.255741 0.729246 -85.85 
+     63 113.147 900 3 1 0.175031 1.18841 -114.45 
+     63 102.838 905 3 0 0.166346 1.21183 -115.85 
+     63 112.765 908 2 0 -0.055363 1.67439 -145.85 
+     63 102.65 898 1 1 -0.345878 1.88898 -174.45 
+     63 108.502 909 1 0 -0.348304 1.88073 -175.85 
+     63 175.002 898 0 1 -0.419576 1.70839 -204.45 
+     63 150.353 908 0 0 -0.43133 1.70312 -205.85 
+     63 73.2412 902 5 0 0.535881 0.45 -56.1148 
+     63 224.311 899 0 1 -0.231289 2.59129 -204.45 
+     63 170.262 912 0 0 -0.222204 2.61242 -205.85 
+     63 143.596 913 0 0 -0.145126 2.65869 -205.85 
+     63 66.4836 778 6 1 -24.4165 -6.36891 -24.5041 
+Number of digits in this event =  11
 Event: 64
-Number of tracker hits in this event =  67
-     64 120.676 900 5 1 0.0501998 -0.133537 -54.45 
-     64 93.718 899 5 0 0.0708231 -0.129991 -55.85 
-     64 136.089 902 4 1 0.490396 -0.12028 -84.45 
-     64 207.859 899 4 0 0.459422 -0.119371 -85.85 
-     64 333.285 899 3 1 -0.21072 -0.22019 -114.45 
-     64 146.356 898 3 0 -0.252579 -0.325303 -115.85 
-     64 451.965 894 2 1 -1.1138 -2.62363 -144.45 
-     64 106.203 886 2 0 -1.13731 -2.69601 -145.85 
-     64 121.612 892 1 1 -1.55928 -3.96833 -174.45 
-     64 98.8849 880 1 0 -1.60715 -4.00101 -175.85 
-     64 333.03 887 0 1 -2.5389 -4.68181 -204.45 
-     64 426.76 876 0 0 -2.62677 -4.68667 -205.85 
-     64 134.923 886 0 1 -2.65 -5.36291 -204.781 
-     64 105.677 885 0 1 -2.85 -5.60089 -204.722 
-     64 105.454 884 0 1 -3.05 -5.6687 -204.492 
-     64 82.487 883 0 1 -3.25 -5.55641 -204.484 
-     64 222.703 882 0 1 -3.45 -5.35118 -204.637 
-     64 73.2033 881 0 1 -3.65 -5.24929 -204.763 
-     64 67.0102 880 0 1 -3.85 -5.21302 -204.796 
-     64 64.3123 175 0 0 -86.7291 -145.086 -206.25 
-     64 235.13 900 4 1 0.0817628 -0.422159 -84.45 
-     64 572.514 898 4 0 0.0770062 -0.414536 -85.85 
-     64 110.785 899 3 0 -0.125568 -0.16156 -115.85 
-     64 115.807 900 2 0 -1.05901 0.164646 -145.85 
-     64 137.01 894 1 1 -1.10557 0.254002 -174.45 
-     64 99.6153 900 1 0 -1.14282 0.236516 -175.85 
-     64 127.257 889 0 1 -2.10469 -0.12475 -204.45 
-     64 103.723 899 0 0 -2.13043 -0.115548 -205.85 
-     64 33.4121 904 3 0 -0.393462 0.97692 -115.85 
-     64 275.507 905 3 0 -0.411628 1.05 -115.939 
-     64 35.3068 906 3 0 -0.516598 1.25 -116.168 
-     64 99.0511 1054 3 0 1.73918 31.0251 -116.25 
-     64 51.9624 1055 3 0 1.90602 31.05 -115.99 
-     64 53.3687 915 3 1 3.13676 31.7571 -114.85 
-     64 120.979 916 3 1 3.25 31.8218 -114.75 
-     64 29.3691 917 3 1 3.45 32.0071 -114.517 
-     64 119.382 918 3 1 3.65035 31.9024 -114.45 
-     64 62.359 919 3 1 3.85 32.0338 -114.673 
-     64 97.0466 920 3 1 4.05 32.0985 -114.759 
-     64 223.934 921 3 1 4.25 32.2694 -114.738 
-     64 368.585 922 3 1 4.45 32.8036 -114.572 
-     64 82.9405 923 3 1 4.65 32.8781 -114.718 
-     64 84.4399 924 3 1 4.85 32.8414 -114.815 
-     64 261.387 1058 3 0 6.55833 31.7372 -115.85 
-     64 182.668 1059 3 0 6.72937 31.85 -116.024 
-     64 183.069 896 2 0 0.111745 -0.779361 -145.891 
-     64 659.208 900 1 1 0.191493 -0.957901 -174.45 
-     64 149.006 895 1 0 0.192696 -0.950313 -175.85 
-     64 117.39 901 0 1 0.270911 -0.768653 -204.45 
-     64 98.7675 896 0 0 0.274154 -0.754052 -205.85 
-     64 69.0941 901 1 1 0.25 -0.991084 -174.761 
-     64 210.84 907 1 1 1.50014 -2.07585 -174.45 
-     64 107.504 890 1 0 1.54224 -1.93229 -175.85 
-     64 56.6846 912 0 1 2.63462 2.0937 -204.45 
-     64 60.9057 913 0 1 2.65 2.14054 -204.681 
-     64 71.1582 911 0 0 2.75472 2.39461 -205.85 
-     64 46.967 912 0 0 2.77709 2.45 -206.103 
-     64 4.90997 663 1 0 -71.6273 -47.3336 -176.051 
-     64 110.442 975 1 0 56.6637 15.0677 -176.125 
-     64 159.037 900 3 1 0.0793808 -1.07897 -114.45 
-     64 49.5534 894 3 0 0.053481 -1.15785 -115.85 
-     64 124.318 897 2 1 -0.52205 -2.90952 -144.45 
-     64 124.344 885 2 0 -0.55514 -3.03376 -145.85 
-     64 75.4477 884 2 0 -0.558704 -3.05 -146.001 
-     64 121.81 893 1 1 -1.404 -6.09752 -174.45 
-     64 123.642 868 1 0 -1.50793 -6.31603 -175.85 
-     64 176.391 842 0 0 -3.87894 -11.4551 -205.85 
-Number of digits in this event =  33
+Number of tracker hits in this event =  22
+     64 128.232 899 5 0 0.180524 -0.057499 -55.85 
+     64 107.885 900 4 1 0.173006 -0.305569 -84.45 
+     64 117.819 898 4 0 0.175489 -0.324485 -85.85 
+     64 188.083 900 3 1 0.238073 -0.666925 -114.45 
+     64 135.499 896 3 0 0.248306 -0.688007 -115.85 
+     64 127.884 902 2 1 0.490512 -1.11627 -144.45 
+     64 140.481 894 2 0 0.501402 -1.14117 -145.85 
+     64 131.765 903 1 1 0.730623 -1.62589 -174.45 
+     64 109.502 891 1 0 0.741345 -1.65156 -175.85 
+     64 127.854 904 0 1 0.955984 -2.19716 -204.45 
+     64 106.074 889 0 0 0.963413 -2.23344 -205.85 
+     64 63.551 764 5 0 -3.87135 -27.2288 -55.9933 
+     64 426.33 886 5 1 -2.71035 -27.4131 -54.85 
+     64 107.041 887 5 1 -2.65 -27.6544 -54.7045 
+     64 49.6472 287 3 1 -122.683 -69.2544 -114.78 
+     64 189.419 285 3 1 -123.104 -71.1549 -114.45 
+     64 30.9007 284 3 1 -123.15 -71.4213 -114.696 
+     64 168.847 286 3 1 -122.95 -71.522 -114.635 
+     64 40.772 532 3 0 -121.72 -73.5862 -115.85 
+     64 96.2144 531 3 0 -121.667 -73.65 -115.866 
+     64 9.93731 290 3 1 -121.968 -62.3435 -114.85 
+     64 182.684 599 3 0 -121.206 -60.133 -115.85 
+Number of digits in this event =  12
 Event: 65
 Number of tracker hits in this event =  16
-     65 133.055 899 4 1 -0.23278 0.0806026 -84.45 
-     65 116.408 900 4 0 -0.233527 0.0794448 -85.85 
-     65 95.2029 898 2 1 -0.255955 0.111953 -144.45 
-     65 118.304 900 2 0 -0.270269 0.110116 -145.85 
-     65 131.578 895 0 1 -0.986812 0.0510169 -204.45 
-     65 130.636 900 0 0 -0.99052 0.0537505 -205.85 
-     65 9.72695 899 5 1 -0.241808 0.05 -54.6513 
-     65 47.1388 898 5 1 -0.25 0.0576442 -54.6798 
-     65 4.24366 900 5 0 -0.493177 0.248992 -55.85 
-     65 190.884 901 5 0 -0.494462 0.25 -55.8565 
-     65 119.745 857 4 1 -8.47676 5.78266 -84.45 
-     65 135.964 928 4 0 -8.81264 5.73046 -85.85 
-     65 128.634 826 3 1 -14.8375 7.10851 -114.45 
-     65 18.934 929 3 0 -14.7629 5.89122 -115.85 
-     65 97.8104 928 3 0 -14.7594 5.85 -115.896 
-     65 88.4124 927 3 0 -14.733 5.65 -116.141 
-Number of digits in this event =  8
+     65 112.99 900 4 1 0.133265 0.0719396 -84.45 
+     65 136.933 900 4 0 0.144919 0.081766 -85.85 
+     65 141.168 901 3 1 0.374255 0.293062 -114.45 
+     65 148.876 901 3 0 0.382848 0.298935 -115.85 
+     65 131.668 902 2 1 0.557133 0.435913 -144.45 
+     65 127.021 901 2 0 0.550053 0.442769 -145.85 
+     65 142.745 901 1 1 0.395294 0.616432 -174.45 
+     65 102.511 902 1 0 0.387965 0.627544 -175.85 
+     65 149.466 900 0 1 0.201042 0.836817 -204.45 
+     65 17.9273 903 0 0 0.179212 0.849576 -205.85 
+     65 193.732 904 0 0 0.178487 0.85 -205.896 
+     65 150.745 900 5 0 0.099676 0.05 -56.0912 
+     65 121.574 901 5 0 0.442956 0.25 -56.0242 
+     65 298.279 902 5 0 0.519582 0.45 -56.1401 
+     65 42.3996 792 0 1 -21.5157 -48.0787 -204.467 
+     65 71.7504 226 9 1 -134.883 34.6289 65.5107 
+Number of digits in this event =  15
 Event: 66
-Number of tracker hits in this event =  21
-     66 123.654 898 5 1 -0.337672 -0.302663 -54.45 
-     66 102.775 898 5 0 -0.359002 -0.308616 -55.85 
-     66 147.526 896 4 1 -0.788999 -0.472964 -84.45 
-     66 143.021 897 4 0 -0.817055 -0.472735 -85.85 
-     66 117.751 893 3 1 -1.34905 -0.512995 -114.45 
-     66 177.821 897 3 0 -1.37145 -0.51501 -115.85 
-     66 485.481 891 2 1 -1.83166 -0.534073 -144.45 
-     66 397.114 897 2 0 -1.88333 -0.553506 -145.85 
-     66 150.095 885 1 1 -2.92704 -0.876432 -174.45 
-     66 234.871 895 1 0 -2.97328 -0.895551 -175.85 
-     66 102.052 880 0 1 -3.88115 -1.21689 -204.45 
-     66 109.594 894 0 0 -3.92785 -1.23616 -205.85 
-     66 105.477 887 1 1 -2.53197 -0.917884 -174.45 
-     66 105.124 886 0 1 -2.79539 -0.642695 -204.45 
-     66 136.458 897 0 0 -2.82305 -0.636005 -205.85 
-     66 108.887 889 1 1 -2.17137 -0.232094 -174.45 
-     66 120.549 899 1 0 -2.15769 -0.224326 -175.85 
-     66 284.668 890 0 1 -1.96994 -0.149496 -204.45 
-     66 121.928 899 0 0 -1.96439 -0.158735 -205.85 
-     66 62.2188 716 9 0 116.855 -36.7606 63.8909 
-     66 16.0416 874 12 0 -60.9464 -5.16085 153.881 
+Number of tracker hits in this event =  37
+     66 101.873 900 4 1 0.0730543 -0.417962 -84.45 
+     66 123.896 898 4 0 0.0609525 -0.44289 -85.85 
+     66 91.6789 883 3 1 -3.40053 -2.94984 -114.45 
+     66 224.061 882 3 1 -3.45 -3.01277 -114.458 
+     66 64.9366 881 3 1 -3.65 -3.28712 -114.509 
+     66 118.326 880 3 1 -3.85 -3.48373 -114.549 
+     66 145.61 879 3 1 -4.05 -3.66003 -114.582 
+     66 100.415 878 3 1 -4.25 -3.88153 -114.591 
+     66 50.4147 877 3 1 -4.45 -4.03939 -114.585 
+     66 135.178 876 3 1 -4.65 -4.10374 -114.529 
+     66 5.71228 875 3 1 -4.85 -4.15446 -114.459 
+     66 192.852 874 3 1 -5.13411 -4.29626 -114.45 
+     66 65.3459 873 3 1 -5.25 -4.22537 -114.515 
+     66 65.3878 872 3 1 -5.45 -4.18333 -114.599 
+     66 50.8646 871 3 1 -5.65 -4.10603 -114.679 
+     66 68.374 870 3 1 -5.85 -4.05822 -114.673 
+     66 65.7569 869 3 1 -6.05 -4.02333 -114.709 
+     66 49.4811 868 3 1 -6.25 -3.99852 -114.748 
+     66 64.6435 867 3 1 -6.45 -4.01243 -114.786 
+     66 63.4294 866 3 1 -6.65 -4.11812 -114.785 
+     66 81.0915 865 3 1 -6.85 -4.16581 -114.773 
+     66 48.0244 864 3 1 -7.05 -4.13207 -114.734 
+     66 140.968 863 3 1 -7.25 -4.18478 -114.727 
+     66 71.3468 862 3 1 -7.45 -4.50956 -114.585 
+     66 89.5687 880 3 0 -3.58287 -3.91043 -115.85 
+     66 70.8501 879 3 0 -3.58722 -4.05 -116.117 
+     66 313.434 558 3 0 21.4651 -68.3683 -116.25 
+     66 146.075 1016 3 1 23.4263 -68.2593 -114.85 
+     66 404.563 1017 3 1 23.45 -68.2572 -114.827 
+     66 23.4739 1018 3 1 23.65 -68.2353 -114.685 
+     66 20.0544 552 3 0 24.012 -69.555 -115.885 
+     66 249.733 899 0 1 -0.229861 -0.862721 -204.45 
+     66 6.24413 894 0 0 -0.0793886 -1.24584 -205.85 
+     66 135.719 893 0 0 -0.0777757 -1.25 -205.866 
+     66 95.4588 898 0 0 -0.0857246 -0.400795 -205.85 
+     66 107.758 1653 2 1 150.756 -111.123 -144.45 
+     66 29.4871 1652 2 1 150.75 -111.122 -144.453 
 Number of digits in this event =  13
 Event: 67
-Number of tracker hits in this event =  65
-     67 120.382 900 5 1 0.245133 0.140431 -54.45 
-     67 198.398 900 5 0 0.258294 0.141574 -55.85 
-     67 98.1101 902 4 1 0.474499 0.13533 -84.45 
-     67 134.114 900 4 0 0.480946 0.134242 -85.85 
-     67 145.727 904 3 1 0.964807 0.0986102 -114.45 
-     67 122.942 900 3 0 0.989825 0.0971662 -115.85 
-     67 144.747 907 2 1 1.49433 0.0731906 -144.45 
-     67 194.273 900 2 0 1.53042 0.0719493 -145.85 
-     67 115.432 911 1 1 2.30558 -0.139477 -174.45 
-     67 130.411 899 1 0 2.32652 -0.14599 -175.85 
-     67 8.90171 912 0 1 2.64912 -0.246717 -204.45 
-     67 129.325 913 0 1 2.65 -0.246222 -204.472 
-     67 332.025 899 0 0 2.70677 -0.216492 -205.85 
-     67 67.272 903 3 1 0.650618 0.0915383 -114.45 
-     67 3.27003 898 3 0 0.978088 -0.444694 -115.85 
-     67 108.744 897 3 0 0.981123 -0.45 -115.865 
-     67 145.471 935 2 1 7.07517 -9.90004 -144.45 
-     67 144.502 847 2 0 7.4725 -10.4585 -145.85 
-     67 291.795 982 1 1 16.6305 -20.3195 -174.45 
-     67 93.1417 983 1 1 16.65 -20.4387 -174.583 
-     67 75.3881 792 1 0 16.8011 -21.4684 -175.85 
-     67 62.7661 791 1 0 16.829 -21.65 -176.067 
-     67 62.2478 1003 0 1 20.6862 -39.9456 -204.45 
-     67 116.636 1004 0 1 20.85 -39.9831 -204.615 
-     67 2.31111 1005 0 1 21.05 -40.0084 -204.844 
-     67 70.1477 699 0 0 22.0167 -40.2165 -205.85 
-     67 96.2767 698 0 0 22.1722 -40.25 -206.012 
-     67 132.655 681 0 0 79.9852 -43.7037 -206.25 
-     67 34.89 611 0 0 99.8814 -57.7851 -206.25 
-     67 78.4833 610 0 0 99.859 -57.85 -206.136 
-     67 22.4255 609 0 0 99.7706 -58.05 -205.931 
-     67 156.474 1396 0 1 99.4741 -59.4306 -204.85 
-     67 187.839 901 0 1 0.268101 -0.137123 -204.45 
-     67 40.8502 902 3 1 0.643477 0.0697848 -114.45 
-     67 124.252 899 3 0 0.392821 -0.14416 -115.85 
-     67 128.454 877 2 1 -4.5602 -2.69943 -144.45 
-     67 97.1829 887 2 0 -4.43463 -2.57373 -145.85 
-     67 95.2781 901 1 1 0.415888 1.07429 -174.45 
-     67 198.694 902 1 0 0.403524 0.649049 -175.85 
-     67 72.4861 877 0 1 -4.5437 -15.3798 -204.45 
-     67 44.9528 878 0 1 -4.45 -15.4322 -204.708 
-     67 50.3516 821 0 0 -4.24915 -15.7927 -205.85 
-     67 74.6373 820 0 0 -4.21912 -15.85 -206.029 
-     67 139.564 900 0 1 0.216996 0.657696 -204.45 
-     67 135.099 903 0 0 0.271524 0.673908 -205.85 
-     67 143.683 815 0 1 -16.8503 -5.55975 -204.45 
-     67 122.703 814 0 1 -17.05 -5.76415 -204.644 
-     67 67.9407 866 0 0 -18.1985 -6.73586 -205.85 
-     67 165.989 865 0 0 -18.342 -6.85 -206.001 
-     67 6.85998 864 0 0 -18.713 -7.05 -206.238 
-     67 268.757 654 0 0 -36.499 -49.0962 -206.25 
-     67 264.09 653 0 0 -36.2419 -49.25 -206.136 
-     67 436.711 655 0 0 -35.6251 -49.05 -205.944 
-     67 93.9714 728 0 1 -34.369 -49.0135 -204.85 
-     67 341.223 729 0 1 -34.25 -49.0469 -204.649 
-     67 97.5594 652 0 0 -35.7831 -49.45 -206.004 
-     67 45.5414 730 0 1 -34.05 -48.103 -204.692 
-     67 19.2304 752 1 0 37.7656 -29.4873 -176.25 
-     67 97.6792 753 1 0 37.757 -29.45 -176.174 
-     67 193.802 477 1 0 -73.461 -84.5847 -176.25 
-     67 406.85 535 1 1 -73.0145 -85.5727 -174.85 
-     67 1.84687 64 6 1 -167.347 -36.7656 -24.5924 
-     67 179.76 63 6 1 -167.35 -36.7673 -24.5906 
-     67 170.223 1076 5 1 35.4416 -83.9132 -54.6679 
-     67 301.053 1075 5 1 35.25 -84.1348 -54.5309 
-Number of digits in this event =  36
+Number of tracker hits in this event =  17
+     67 175.459 900 4 1 0.109277 -0.159393 -84.45 
+     67 123.485 899 4 0 0.105164 -0.173482 -85.85 
+     67 75.2481 899 2 1 -0.0514034 -0.582543 -144.45 
+     67 226.971 900 1 1 0.0903499 -0.598126 -174.45 
+     67 118.911 897 1 0 0.0929553 -0.598608 -175.85 
+     67 137.391 900 0 1 0.13753 -0.627096 -204.45 
+     67 112.57 897 0 0 0.139427 -0.631384 -205.85 
+     67 102.811 899 1 1 -0.125602 -0.0606144 -174.45 
+     67 142.954 899 1 0 -0.12772 -0.164289 -175.85 
+     67 51.0967 883 0 0 -0.129096 -3.38369 -205.85 
+     67 162.246 882 0 0 -0.151061 -3.45 -206.034 
+     67 60.0251 901 1 1 0.25 0.191543 -174.613 
+     67 86.0876 902 1 1 0.45 0.314686 -174.615 
+     67 97.719 903 1 1 0.65 0.457701 -174.494 
+     67 143.865 904 1 1 0.85 0.720797 -174.515 
+     67 95.7082 908 1 0 1.47551 1.67934 -175.85 
+     67 58.1261 909 1 0 1.55568 1.85 -176.115 
+Number of digits in this event =  8
 Event: 68
-Number of tracker hits in this event =  40
-     68 377.759 899 2 1 -0.219148 -0.457204 -144.45 
-     68 29.887 897 2 0 -0.228417 -0.45057 -145.85 
-     68 227.147 898 2 0 -0.229316 -0.45 -145.986 
-     68 139.685 898 1 1 -0.409006 -0.376759 -174.45 
-     68 131.552 898 1 0 -0.411945 -0.378471 -175.85 
-     68 258.33 898 0 1 -0.445449 -0.396902 -204.45 
-     68 134.279 898 0 0 -0.445722 -0.398568 -205.85 
-     68 21.7325 897 3 0 -0.0523743 -0.452762 -115.85 
-     68 131.644 898 3 0 -0.0543739 -0.45 -115.923 
-     68 131.963 897 2 1 -0.462882 0.793629 -144.45 
-     68 111.4 904 2 0 -0.476923 0.998258 -145.85 
-     68 7.3487 905 2 0 -0.478183 1.05 -146.223 
-     68 125.186 896 1 1 -0.722137 5.1682 -174.45 
-     68 188.218 926 1 0 -0.807919 5.31485 -175.85 
-     68 76.7213 885 0 1 -3.03552 8.27727 -204.45 
-     68 44.277 884 0 1 -3.05 8.31132 -204.732 
-     68 11.2496 941 0 0 -3.0947 8.44558 -205.85 
-     68 148.684 942 0 0 -3.0962 8.45 -205.887 
-     68 4.50466 875 1 1 -5.04308 -2.97833 -174.45 
-     68 131.57 874 1 1 -5.05 -2.98229 -174.464 
-     68 17.7762 883 1 0 -5.76006 -3.43563 -175.85 
-     68 122.729 882 1 0 -5.78167 -3.45 -175.892 
-     68 73.4014 799 0 1 -20.1261 -13.653 -204.45 
-     68 46.6637 798 0 1 -20.25 -13.7086 -204.689 
-     68 106.703 830 0 0 -20.7902 -13.9723 -205.85 
-     68 13.0983 829 0 0 -20.9507 -14.05 -206.194 
-     68 113.844 899 2 0 -0.0665215 -0.0867833 -145.85 
-     68 172.692 899 1 1 -0.199855 0.455541 -174.45 
-     68 120.301 902 1 0 -0.217179 0.512389 -175.85 
-     68 105.322 908 0 0 -0.408866 1.7911 -205.85 
-     68 106.098 899 3 0 -0.111945 -0.25 -115.913 
-     68 144.406 884 2 1 -3.17744 4.88449 -144.45 
-     68 134.027 926 2 0 -3.28227 5.27424 -145.85 
-     68 113.18 873 1 1 -5.35293 12.3222 -174.45 
-     68 143.094 963 1 0 -5.43081 12.7131 -175.85 
-     68 104.817 858 0 1 -8.34345 19.6021 -204.45 
-     68 70.615 857 0 1 -8.45 19.7736 -204.693 
-     68 56.532 1002 0 0 -8.98442 20.5481 -205.85 
-     68 106.382 1003 0 0 -9.05498 20.65 -206.002 
-     68 295.959 1722 2 0 -121.363 164.678 -146.25 
-Number of digits in this event =  21
+Number of tracker hits in this event =  59
+     68 101.934 899 5 1 -0.117289 -0.167579 -54.45 
+     68 156.599 899 5 0 -0.125938 -0.174417 -55.85 
+     68 118.732 898 4 1 -0.301426 -0.308769 -84.45 
+     68 130.698 898 4 0 -0.313454 -0.319068 -85.85 
+     68 287.579 897 3 1 -0.552787 -0.524794 -114.45 
+     68 624.233 897 3 0 -0.544496 -0.53299 -115.85 
+     68 141.408 897 2 1 -0.588182 -1.00843 -144.45 
+     68 127.43 895 2 0 -0.658399 -0.942845 -145.85 
+     68 120.231 891 1 1 -1.77306 0.666267 -174.45 
+     68 132.549 902 1 0 -1.8118 0.628472 -175.85 
+     68 78.7272 887 0 1 -2.5866 0.0720836 -204.45 
+     68 5.5495 899 0 0 -2.66141 -0.05 -206.22 
+     68 15.7496 619 6 1 -56.0747 113.511 -24.45 
+     68 117.179 620 6 1 -56.05 113.534 -24.5007 
+     68 43.8859 1470 6 0 -55.4884 114.286 -25.85 
+     68 95.5028 1471 6 0 -55.4471 114.35 -25.9624 
+     68 26.4208 1472 6 0 -55.3177 114.55 -26.1813 
+     68 128.043 1211 6 0 143.093 62.4259 -26.25 
+     68 110.001 1210 6 0 143.493 62.25 -26.2435 
+     68 167.285 898 3 1 -0.432213 -0.558116 -114.45 
+     68 236.293 898 3 0 -0.720948 -0.404917 -115.85 
+     68 102.701 861 2 1 -7.77585 3.77227 -144.45 
+     68 115.982 919 2 0 -7.78182 3.92753 -145.85 
+     68 145.348 852 1 1 -9.56176 6.43775 -174.45 
+     68 29.7992 933 1 0 -9.30636 6.82711 -175.85 
+     68 138.829 934 1 0 -9.29175 6.85 -175.93 
+     68 145.423 894 0 1 -1.24882 18.9234 -204.45 
+     68 139.301 995 0 0 -0.731626 19.1483 -205.85 
+     68 63.7639 1025 0 0 4.6592 25.2264 -206.25 
+     68 83.3298 1026 0 0 4.67255 25.25 -206.049 
+     68 10.427 1027 0 0 4.57297 25.45 -205.88 
+     68 111.725 917 0 1 3.6161 26.1221 -204.85 
+     68 60.1504 918 0 1 3.65 26.1635 -204.677 
+     68 260.565 919 0 1 3.85 26.1641 -204.63 
+     68 13.4931 920 0 1 4.05 26.1186 -204.486 
+     68 209.468 887 3 0 -40.9268 -2.55327 -116.25 
+     68 148.797 900 2 0 -1.01162 0.0737794 -145.85 
+     68 237.872 885 1 1 -2.95217 1.28343 -174.45 
+     68 116.86 906 1 0 -3.04759 1.30838 -175.85 
+     68 131.392 873 0 1 -5.25144 1.87457 -204.45 
+     68 118.917 909 0 0 -5.38986 1.94699 -205.85 
+     68 164.865 901 1 0 -2.79395 0.45 -175.912 
+     68 4.56288 900 1 0 -2.73097 0.25 -176.242 
+     68 30.1346 178 1 0 -82.4817 -144.449 -176.25 
+     68 370.164 177 1 0 -82.5368 -144.55 -176.228 
+     68 95.6569 176 1 0 -82.6735 -144.75 -176.155 
+     68 76.3291 175 1 0 -82.8115 -144.95 -176.014 
+     68 7.66866 482 1 1 -83.6406 -144.921 -174.85 
+     68 590.742 481 1 1 -83.65 -144.919 -174.835 
+     68 39.7135 1281 5 1 76.25 25.6175 -54.5351 
+     68 6.2574 806 8 0 38.4628 -18.6775 33.75 
+     68 19.4841 123 12 0 26.2684 -155.35 154 
+     68 16.3949 1582 1 1 136.703 25.0729 -174.737 
+     68 65.8833 1583 1 1 136.75 25.0634 -174.712 
+     68 81.9108 1584 1 1 136.95 25.0399 -174.631 
+     68 107.7 1585 1 1 137.15 25.1253 -174.586 
+     68 96.0766 1586 1 1 137.354 25.3731 -174.45 
+     68 139.735 1587 1 1 137.55 25.5476 -174.531 
+     68 188.334 1029 1 0 137.802 25.9282 -175.85 
+Number of digits in this event =  28
 Event: 69
-Number of tracker hits in this event =  12
-     69 131.83 899 5 1 -0.0673055 -0.0554025 -54.45 
-     69 112.48 899 5 0 -0.0768236 -0.0612911 -55.85 
-     69 143.983 899 4 1 -0.218126 -0.232515 -84.45 
-     69 152.352 899 4 0 -0.22212 -0.23473 -85.85 
-     69 137.063 898 3 1 -0.346635 -0.269613 -114.45 
-     69 124.114 898 3 0 -0.349211 -0.267613 -115.85 
-     69 146.885 898 2 1 -0.393187 -0.253339 -144.45 
-     69 122.059 898 2 0 -0.37777 -0.255497 -145.85 
-     69 141.396 899 1 1 -0.0801409 -0.272909 -174.45 
-     69 122.757 898 1 0 -0.0568267 -0.277167 -175.85 
-     69 181.626 901 0 1 0.379786 -0.364076 -204.45 
-     69 114.706 898 0 0 0.394963 -0.376263 -205.85 
-Number of digits in this event =  11
+Number of tracker hits in this event =  24
+     69 126.567 900 5 1 0.0619209 -0.0660365 -54.45 
+     69 464.306 899 5 0 0.0683119 -0.0631794 -55.85 
+     69 117.179 901 3 1 0.396215 -0.0618247 -114.45 
+     69 147.894 899 3 0 0.399354 -0.0582471 -115.85 
+     69 133.672 901 1 1 0.367944 0.157352 -174.45 
+     69 102.106 900 1 0 0.361984 0.166516 -175.85 
+     69 111.104 900 0 1 0.235347 0.371631 -204.45 
+     69 231.852 901 0 0 0.228872 0.384191 -205.85 
+     69 63.3345 868 5 0 -48.1912 -6.4263 -56.25 
+     69 7.4904 1247 5 0 -98.2164 69.6162 -56.25 
+     69 16.2868 630 1 0 -116.689 -53.8597 -176.25 
+     69 109.818 631 1 0 -116.713 -53.85 -176.197 
+     69 126.223 312 1 1 -117.661 -53.345 -174.85 
+     69 100.471 311 1 1 -117.75 -53.289 -174.735 
+     69 188.882 310 1 1 -117.95 -53.0132 -174.599 
+     69 250.762 309 1 1 -118.15 -52.7789 -174.567 
+     69 175.311 642 1 0 -118.474 -51.644 -175.85 
+     69 45.2971 333 1 1 -113.467 -49.1212 -174.85 
+     69 320.491 334 1 1 -113.35 -49.0998 -174.81 
+     69 149.356 902 0 1 0.617364 0.141403 -204.45 
+     69 119.38 903 0 1 0.65 0.163133 -204.565 
+     69 29.4575 902 0 0 1.07019 0.45 -206.198 
+     69 143.33 900 0 0 0.399315 0.21148 -205.85 
+     69 7.09994 853 1 0 -12.9123 -9.34869 -176.237 
+Number of digits in this event =  14
 Event: 70
-Number of tracker hits in this event =  30
-     70 111.689 899 4 1 -0.163259 0.282653 -84.45 
-     70 113.089 901 4 0 -0.173489 0.303738 -85.85 
-     70 139.95 898 3 1 -0.398079 0.737383 -114.45 
-     70 113.729 903 3 0 -0.410847 0.755592 -115.85 
-     70 123.841 896 2 1 -0.662288 1.12246 -144.45 
-     70 162.597 905 2 0 -0.678271 1.13638 -145.85 
-     70 123.621 894 1 1 -1.05395 1.38509 -174.45 
-     70 100.822 906 1 0 -1.07666 1.39671 -175.85 
-     70 114.469 892 0 1 -1.56708 1.64968 -204.45 
-     70 119.607 908 0 0 -1.59632 1.65144 -205.85 
-     70 93.0383 900 4 1 0.05 -0.0513788 -84.4649 
-     70 56.3583 901 4 1 0.25 0.152965 -84.7054 
-     70 52.4192 907 4 0 1.68632 1.5396 -85.85 
-     70 76.5725 908 4 0 1.80233 1.65 -85.9373 
-     70 80.657 909 4 0 1.9785 1.85 -85.9651 
-     70 72.0988 910 4 0 1.99816 2.05 -85.9544 
-     70 25.7922 911 4 0 2.03689 2.25 -85.8883 
-     70 33.4997 935 4 1 7.21928 21.0769 -84.85 
-     70 510.457 936 4 1 7.25 21.1886 -84.844 
-     70 70.6468 1059 4 0 5.30875 31.8614 -85.85 
-     70 77.4215 1060 4 0 5.26325 32.05 -85.8866 
-     70 84.6485 1061 4 0 5.16273 32.25 -85.9136 
-     70 84.3393 1062 4 0 5.1211 32.45 -85.9251 
-     70 98.6535 1063 4 0 4.99883 32.65 -85.9324 
-     70 114.699 1064 4 0 4.84591 32.85 -86.0668 
-     70 235.446 1065 4 0 4.61577 33.05 -86.0645 
-     70 10.5836 1066 4 0 4.40292 33.25 -85.8623 
-     70 96.2188 922 4 1 4.63802 32.1265 -84.85 
-     70 76.1277 923 4 1 4.65 32.109 -84.8428 
-     70 135.54 1100 4 1 40.2018 50.1465 -84.5517 
-Number of digits in this event =  9
+Number of tracker hits in this event =  31
+     70 98.308 899 2 1 -0.172796 1.07551 -144.45 
+     70 309.593 905 2 0 -0.183973 1.09851 -145.85 
+     70 108.356 898 1 1 -0.413341 1.59262 -174.45 
+     70 137.123 907 1 0 -0.428388 1.62314 -175.85 
+     70 328.441 896 0 1 -0.723676 2.1932 -204.45 
+     70 203.802 910 0 0 -0.742683 2.21856 -205.85 
+     70 31.1732 899 1 1 -0.139745 1.1412 -174.45 
+     70 81.4774 900 1 1 0.05 1.0533 -174.628 
+     70 20.9169 901 1 1 0.25 0.960793 -174.817 
+     70 105.639 902 1 0 1.2788 0.487351 -175.85 
+     70 122.87 901 1 0 1.36046 0.45 -175.932 
+     70 24.8183 1025 0 1 25.204 -16.2404 -204.45 
+     70 74.6145 1026 0 1 25.25 -16.2435 -204.506 
+     70 41.6014 1027 0 1 25.45 -16.2607 -204.721 
+     70 163.078 818 0 0 26.381 -16.3347 -205.85 
+     70 80.251 855 2 0 61.0908 -8.98665 -146.147 
+     70 89.687 9 3 1 -178.19 -12.5041 -114.45 
+     70 34.1789 644 4 0 -138.071 -51.2192 -86.0891 
+     70 26.9715 577 3 1 -64.5127 -64.4414 -114.479 
+     70 66.4314 592 0 0 -69.4731 -61.635 -206.128 
+     70 53.724 903 4 0 0.283244 0.656467 -86.1613 
+     70 103.105 895 1 1 -0.907696 1.18941 -174.45 
+     70 93.1495 905 1 0 -0.887819 1.18103 -175.85 
+     70 170.045 909 0 0 -0.629846 1.85977 -205.85 
+     70 198.947 897 0 1 -0.65 1.72721 -204.461 
+     70 8.06143 898 0 1 -0.45 1.61248 -204.816 
+     70 207.037 907 0 0 -0.467046 1.56535 -205.85 
+     70 108.353 948 0 0 -3.542 9.6982 -206.25 
+     70 33.7509 947 0 0 -3.61954 9.65 -206.233 
+     70 89.7039 817 0 0 -70.503 -16.6341 -206.25 
+     70 21.0814 578 3 1 -64.45 -64.331 -114.512 
+Number of digits in this event =  11
 Event: 71
-Number of tracker hits in this event =  6
-     71 136.146 899 4 1 -0.0558292 0.0938917 -84.45 
-     71 144.523 900 4 0 -0.0656067 0.0974888 -85.85 
-     71 210.025 898 3 1 -0.305862 0.161999 -114.45 
-     71 107.239 900 3 0 -0.327052 0.152932 -115.85 
-     71 118.844 889 0 1 -2.1608 0.0800886 -204.45 
-     71 620.687 900 0 0 -2.1977 0.0876716 -205.85 
-Number of digits in this event =  5
+Number of tracker hits in this event =  15
+     71 120.725 900 5 1 0.193674 0.171346 -54.45 
+     71 199.283 900 5 0 0.199155 0.185101 -55.85 
+     71 140.514 901 4 1 0.362436 0.490683 -84.45 
+     71 132.371 902 4 0 0.372322 0.505857 -85.85 
+     71 124.353 902 3 1 0.565224 0.825405 -114.45 
+     71 71.9364 903 3 0 0.573761 0.847511 -115.85 
+     71 65.2466 904 3 0 0.574688 0.85 -116.006 
+     71 121.606 903 2 1 0.708544 1.3314 -144.45 
+     71 130.205 906 2 0 0.725523 1.34362 -145.85 
+     71 108.268 904 1 1 1.02847 1.56593 -174.45 
+     71 121.34 907 1 0 1.03912 1.56315 -175.85 
+     71 115.087 906 0 1 1.25288 1.48388 -204.45 
+     71 120.119 907 0 0 1.27461 1.47327 -205.85 
+     71 55.4491 996 0 0 -26.7727 19.268 -206.25 
+     71 124.527 995 0 0 -26.8083 19.25 -206.216 
+Number of digits in this event =  12
 Event: 72
-Number of tracker hits in this event =  38
-     72 114.242 899 5 1 -0.0792469 0.237606 -54.45 
-     72 10.2057 900 5 0 -0.0831659 0.249677 -55.85 
-     72 170.346 901 5 0 -0.0832645 0.25 -55.8877 
-     72 108.055 899 4 1 -0.149891 0.489196 -84.45 
-     72 130.497 902 4 0 -0.149865 0.500699 -85.85 
-     72 96.1446 899 3 1 -0.148171 0.706074 -114.45 
-     72 435.766 903 3 0 -0.144357 0.712785 -115.85 
-     72 106.22 898 0 1 -0.260197 1.25921 -204.45 
-     72 140.093 906 0 0 -0.273754 1.2937 -205.85 
-     72 110.01 897 1 1 -0.590025 0.96968 -174.45 
-     72 145.029 904 1 0 -0.611745 0.894951 -175.85 
-     72 112.358 896 0 1 -0.716079 -0.183369 -204.45 
-     72 170.833 898 0 0 -0.858722 -0.304912 -205.85 
-     72 439.042 899 2 1 -0.160338 0.948337 -144.45 
-     72 155.887 898 2 1 -0.25 0.757469 -144.834 
-     72 96.2324 899 2 0 -0.388408 -0.05 -145.921 
-     72 71.7373 898 2 0 -0.44285 -0.25 -146.084 
-     72 1.29762 897 2 0 -0.495516 -0.45 -146.243 
-     72 222.345 754 1 1 -29.2137 -47.0624 -174.45 
-     72 268.418 898 3 1 -0.259549 0.72588 -114.45 
-     72 119.691 904 2 0 -0.390511 0.860359 -145.85 
-     72 225.994 898 1 1 -0.389026 -0.0747533 -174.45 
-     72 102.48 899 1 0 -0.377655 -0.140587 -175.85 
-     72 138.702 899 0 1 -0.146031 -1.47909 -204.45 
-     72 111.425 892 0 0 -0.12759 -1.52695 -205.85 
-     72 438.172 900 2 1 0.247958 0.312912 -144.45 
-     72 130.914 901 2 0 0.202528 0.306795 -145.85 
-     72 106.359 901 1 0 -0.441617 0.316361 -175.85 
-     72 109.664 889 0 1 -2.11135 2.06554 -204.45 
-     72 256.042 910 0 0 -1.98916 2.14423 -205.85 
-     72 296.266 865 1 0 30.2169 -7.00971 -176.126 
-     72 276.639 804 2 0 23.6951 -19.0896 -146.136 
-     72 306.021 901 2 1 0.25 -0.284296 -144.489 
-     72 255.987 900 1 1 0.124754 1.52193 -174.45 
-     72 212.959 907 1 0 0.148226 1.48593 -175.85 
-     72 135.374 902 0 1 0.460684 1.0833 -204.45 
-     72 145.726 905 0 0 0.626822 1.06552 -205.85 
-     72 216.638 912 3 0 -93.0088 2.45777 -116.207 
-Number of digits in this event =  25
+Number of tracker hits in this event =  15
+     72 248.805 899 5 1 -0.217717 0.054668 -54.45 
+     72 125.218 900 5 0 -0.212369 0.0561728 -55.85 
+     72 143.01 899 4 1 -0.089896 0.0800778 -84.45 
+     72 135.592 900 4 0 -0.0872637 0.0860404 -85.85 
+     72 149.523 900 2 1 0.13733 0.27371 -144.45 
+     72 267.619 901 2 0 0.138952 0.297014 -145.85 
+     72 129.151 900 1 1 0.152411 0.772886 -174.45 
+     72 122.855 903 1 0 0.1485 0.797998 -175.85 
+     72 134.249 900 0 1 0.0896084 1.32703 -204.45 
+     72 138.575 906 0 0 0.091364 1.35262 -205.85 
+     72 16.0139 839 0 1 -12.0887 -51.9491 -204.844 
+     72 26.3562 636 0 0 -11.6764 -52.7575 -205.85 
+     72 46.2697 844 0 1 -11.2322 -54.0675 -204.85 
+     72 16.4638 788 5 1 -22.4397 -98.9048 -54.5752 
+     72 24.0515 787 5 1 -22.45 -98.9259 -54.5299 
+Number of digits in this event =  12
 Event: 73
-Number of tracker hits in this event =  12
-     73 119.844 900 5 1 0.0937067 -0.0667219 -54.45 
-     73 188.007 899 5 0 0.0983418 -0.0692601 -55.85 
-     73 130.565 900 4 1 0.176356 -0.142126 -84.45 
-     73 123.451 899 4 0 0.180523 -0.145639 -85.85 
-     73 114.33 901 3 1 0.270448 -0.220119 -114.45 
-     73 105.12 899 3 0 0.266849 -0.224528 -115.85 
-     73 107.015 900 2 1 0.181715 -0.308482 -144.45 
-     73 461.865 898 2 0 0.167567 -0.31147 -145.85 
-     73 123.96 899 1 1 -0.138885 -0.317026 -174.45 
-     73 100.727 898 1 0 -0.15473 -0.304351 -175.85 
-     73 122.037 897 0 1 -0.453481 -0.0823786 -204.45 
-     73 108.578 899 0 0 -0.456885 -0.0740703 -205.85 
-Number of digits in this event =  7
+Number of tracker hits in this event =  32
+     73 95.625 900 5 1 0.118993 -0.312116 -54.45 
+     73 103.233 898 5 0 0.119822 -0.340564 -55.85 
+     73 97.0719 900 4 1 0.113408 -0.975803 -84.45 
+     73 162.826 895 4 0 0.132257 -0.992407 -85.85 
+     73 115.592 902 3 1 0.594871 -1.35697 -114.45 
+     73 117.459 893 3 0 0.618822 -1.39013 -115.85 
+     73 603.285 905 2 1 1.10635 -2.00601 -144.45 
+     73 113.942 889 2 0 1.11958 -2.1428 -145.85 
+     73 128.452 907 1 1 1.47877 -4.94107 -174.45 
+     73 93.2227 874 1 0 1.49785 -5.09544 -175.85 
+     73 141.346 909 0 1 1.89571 -8.21769 -204.45 
+     73 138.137 858 0 0 1.90906 -8.35352 -205.85 
+     73 224.214 891 2 0 1.17226 -1.67888 -145.85 
+     73 155.437 920 1 1 4.05054 -0.920148 -174.45 
+     73 175.039 895 1 0 4.18993 -0.93823 -175.85 
+     73 107.823 932 0 1 6.47699 -1.78429 -204.45 
+     73 123.478 891 0 0 6.69184 -1.76539 -205.85 
+     73 208.36 904 2 1 1.05 -1.63394 -144.652 
+     73 81.9117 903 2 1 0.85 -1.18473 -144.459 
+     73 25.1926 1243 1 0 -171.674 68.7223 -175.892 
+     73 120.546 901 1 1 0.38909 -3.82238 -174.45 
+     73 137.016 880 1 0 0.428773 -3.90627 -175.85 
+     73 139.682 902 0 1 0.473804 -6.2781 -204.45 
+     73 104.346 868 0 0 0.461909 -6.32421 -205.85 
+     73 88.2605 792 3 0 0.543202 -21.504 -116.25 
+     73 63.7472 791 3 0 0.501792 -21.65 -116.056 
+     73 101.395 790 3 0 0.369012 -21.85 -116.016 
+     73 52.4051 897 3 1 -0.49355 -22.4001 -114.85 
+     73 271.764 787 3 0 -1.4886 -22.4731 -115.85 
+     73 320.201 788 3 0 -1.65953 -22.45 -116.098 
+     73 63.3681 911 3 1 2.29468 -23.1063 -114.85 
+     73 94.2733 954 3 1 10.8514 -22.3471 -114.85 
+Number of digits in this event =  16
 Event: 74
-Number of tracker hits in this event =  33
-     74 120.853 899 5 1 -0.0786211 -0.10786 -54.45 
-     74 119.136 899 5 0 -0.116474 -0.133503 -55.85 
-     74 158.647 895 4 1 -0.881183 -0.652454 -84.45 
-     74 40.3369 896 4 0 -0.926713 -0.686692 -85.85 
-     74 73.8034 897 4 0 -0.94191 -0.65 -86.0038 
-     74 62.3279 885 3 1 -3.01638 7.62595 -114.45 
-     74 93.6586 884 3 1 -3.05 7.55105 -114.679 
-     74 105.186 935 3 0 -3.144 7.14822 -115.85 
-     74 33.7672 934 3 0 -3.16497 7.05 -116.136 
-     74 71.333 877 2 1 -4.56421 -2.87701 -144.45 
-     74 62.7892 876 2 1 -4.65 -3.01622 -144.669 
-     74 5.42103 881 2 0 -4.94302 -3.84237 -145.85 
-     74 144.214 880 2 0 -4.94547 -3.85 -145.861 
-     74 41.8151 879 2 0 -5.01279 -4.05 -146.147 
-     74 70.5051 838 1 1 -12.3034 -19.627 -174.45 
-     74 96.1859 837 1 1 -12.45 -19.6937 -174.636 
-     74 27.2102 800 1 0 -13.215 -20.0291 -175.85 
-     74 258.973 799 1 0 -13.2636 -20.05 -175.931 
-     74 34.9818 760 0 1 -27.9247 -21.3097 -204.45 
-     74 57.9906 759 0 1 -28.05 -21.3224 -204.54 
-     74 62.0161 758 0 1 -28.25 -21.3463 -204.663 
-     74 38.4884 757 0 1 -28.45 -21.3827 -204.788 
-     74 214.502 791 0 0 -29.8513 -21.6848 -205.85 
-     74 2.98043 685 0 0 -63.2667 -43.0452 -206.25 
-     74 108.264 684 0 0 -63.2689 -43.05 -206.246 
-     74 103.35 683 0 0 -63.3636 -43.25 -206.093 
-     74 25.2611 682 0 0 -63.4852 -43.45 -205.917 
-     74 52.8835 580 0 1 -63.979 -44.3517 -204.85 
-     74 118.631 579 0 1 -64.05 -44.4809 -204.697 
-     74 88.3266 578 0 1 -64.25 -44.7234 -204.47 
-     74 78.424 577 0 1 -64.45 -44.8023 -204.672 
-     74 242.717 677 0 0 -65.3905 -44.535 -205.85 
-     74 144.394 1259 4 1 71.9701 -89.6229 -84.539 
-Number of digits in this event =  8
+Number of tracker hits in this event =  34
+     74 72.6482 899 5 0 0.15663 -0.05 -55.981 
+     74 106.272 930 4 1 6.12989 -2.43873 -84.45 
+     74 133.477 887 4 0 6.376 -2.56208 -85.85 
+     74 63.7044 964 3 1 12.8734 -2.66787 -114.45 
+     74 62.9718 965 3 1 13.05 -2.71631 -114.548 
+     74 50.9789 966 3 1 13.25 -2.77361 -114.659 
+     74 55.3939 967 3 1 13.45 -2.85186 -114.77 
+     74 124.959 882 3 0 15.2196 -3.52473 -115.85 
+     74 118.202 881 3 0 15.5504 -3.65 -116.052 
+     74 31.0564 557 3 0 43.0734 -68.5546 -116.25 
+     74 61.9682 556 3 0 43.0563 -68.65 -116.194 
+     74 126.659 555 3 0 43.0015 -68.85 -116.058 
+     74 34.4104 554 3 0 42.961 -69.05 -115.914 
+     74 139.086 1113 3 1 42.8279 -69.8086 -114.85 
+     74 131.507 536 4 0 44.7627 -72.768 -86.25 
+     74 18.9632 1123 4 1 44.8456 -72.8322 -84.85 
+     74 132.346 1124 4 1 44.85 -72.8343 -84.7677 
+     74 132.975 900 5 1 0.0738487 0.0913633 -54.4858 
+     74 4.90196 902 5 0 -0.05 0.64298 -55.9044 
+     74 185.583 903 5 0 -0.0513862 0.65 -55.9226 
+     74 17.5405 904 4 1 1.0352 7.02665 -84.45 
+     74 177.032 905 4 1 1.05 6.97669 -84.501 
+     74 44.7887 929 4 0 1.04604 5.94287 -85.85 
+     74 161.819 928 4 0 1.0424 5.85 -85.9711 
+     74 15.3632 927 4 0 0.955878 5.65 -86.2016 
+     74 301.99 577 4 0 -10.0297 -64.5554 -86.25 
+     74 164.381 576 4 0 -10.0618 -64.65 -86.1755 
+     74 37.7245 575 4 0 -10.1466 -64.85 -86.0597 
+     74 102.853 578 4 0 -10.0168 -64.45 -85.8949 
+     74 165.693 579 4 0 -9.90916 -64.25 -85.9271 
+     74 186.594 580 4 0 -9.72463 -64.05 -86.0188 
+     74 42.3704 572 8 1 -65.4628 -3.77479 35.5449 
+     74 128.312 1562 3 0 -70.7241 132.668 -116.25 
+     74 303.084 1563 3 0 -70.8565 132.75 -116.118 
+Number of digits in this event =  17
 Event: 75
-Number of tracker hits in this event =  14
-     75 125.545 899 5 0 0.0575215 -0.160322 -55.85 
-     75 152.77 901 4 1 0.302638 -0.879768 -84.45 
-     75 105.384 895 4 0 0.263253 -0.955718 -85.85 
-     75 104.993 895 3 1 -0.994519 -2.46308 -114.45 
-     75 0.528303 887 3 0 -1.07174 -2.64939 -115.85 
-     75 278.283 886 3 0 -1.07198 -2.65 -115.855 
-     75 135.785 888 2 1 -2.41261 -6.35881 -144.45 
-     75 105.239 867 2 0 -2.49868 -6.5462 -145.85 
-     75 130.011 879 1 1 -4.2009 -10.3922 -174.45 
-     75 104.074 847 1 0 -4.35758 -10.6093 -175.85 
-     75 59.617 846 1 0 -4.38725 -10.65 -176.115 
-     75 110.288 862 0 1 -7.49132 -14.6963 -204.45 
-     75 79.6517 826 0 0 -7.56119 -14.826 -205.85 
-     75 32.0972 825 0 0 -7.57429 -14.85 -206.116 
-Number of digits in this event =  6
+Number of tracker hits in this event =  35
+     75 129.865 900 5 1 0.0791245 -0.183643 -54.45 
+     75 128.857 899 5 0 0.0905082 -0.196345 -55.85 
+     75 132.529 901 4 1 0.334542 -0.438982 -84.45 
+     75 123.652 897 4 0 0.348724 -0.457331 -85.85 
+     75 117.58 902 3 1 0.609457 -0.838348 -114.45 
+     75 117.935 895 3 0 0.623195 -0.85978 -115.85 
+     75 110.45 904 2 1 0.904876 -1.31469 -144.45 
+     75 127.903 893 2 0 0.921034 -1.34129 -145.85 
+     75 172.886 906 1 1 1.26956 -1.91709 -174.45 
+     75 109.276 890 1 0 1.28207 -1.94904 -175.85 
+     75 214.805 907 0 1 1.52212 -2.60389 -204.45 
+     75 110.325 886 0 0 1.51961 -2.65276 -205.85 
+     75 58.6314 900 6 1 0.05 0.0632746 -24.6413 
+     75 107.134 902 6 0 0.166234 0.538988 -25.85 
+     75 34.0362 903 6 0 0.189705 0.65 -26.1195 
+     75 16.0753 931 5 1 6.29229 11.6352 -54.45 
+     75 57.7983 930 5 1 6.25 11.6245 -54.4647 
+     75 61.6052 929 5 1 6.05 11.5603 -54.5327 
+     75 79.2029 928 5 1 5.85 11.501 -54.5912 
+     75 150.283 927 5 1 5.65 11.4629 -54.6519 
+     75 72.8523 926 5 1 5.45 11.434 -54.7162 
+     75 55.9263 925 5 1 5.25 11.4055 -54.7504 
+     75 62.5003 924 5 1 5.05 11.3824 -54.7899 
+     75 24.0573 923 5 1 4.85 11.3547 -54.8312 
+     75 210.494 956 5 0 0.848272 11.2556 -55.85 
+     75 164.38 955 5 0 0.613886 11.25 -55.9099 
+     75 37.6564 884 5 0 -41.7299 -3.14222 -56.25 
+     75 74.9436 883 5 0 -41.714 -3.25 -56.1614 
+     75 14.7347 882 5 0 -41.6867 -3.45 -55.9085 
+     75 160.117 691 5 1 -41.7789 -4.37733 -54.85 
+     75 201.233 690 5 1 -41.872 -4.82139 -54.45 
+     75 61.956 689 5 1 -42.05 -5.41299 -54.7335 
+     75 120.812 867 5 0 -42.1915 -6.50094 -55.85 
+     75 75.9082 866 5 0 -42.2099 -6.65 -56.0084 
+     75 28.1186 865 5 0 -42.2882 -6.85 -56.1842 
+Number of digits in this event =  16
 Event: 76
-Number of tracker hits in this event =  51
-     76 139.759 901 4 1 0.319427 -0.186118 -84.45 
-     76 125.082 899 4 0 0.317399 -0.186681 -85.85 
-     76 236.555 901 3 1 0.270513 -0.214888 -114.45 
-     76 112.486 899 3 0 0.271642 -0.226741 -115.85 
-     76 145.128 901 2 1 0.267938 -0.513417 -144.45 
-     76 133.422 897 2 0 0.26992 -0.518339 -145.85 
-     76 277.891 901 1 1 0.308902 -0.635763 -174.45 
-     76 125.376 896 1 0 0.317854 -0.656784 -175.85 
-     76 134.257 902 0 1 0.483218 -1.10683 -204.45 
-     76 175.208 894 0 0 0.488896 -1.13344 -205.85 
-     76 34.3113 897 1 0 0.0769915 -0.456786 -175.85 
-     76 80.2371 861 0 1 -7.72878 -2.93635 -204.45 
-     76 49.5431 860 0 1 -7.85 -2.98769 -204.672 
-     76 30.7912 883 0 0 -8.61299 -3.41947 -205.85 
-     76 182.58 882 0 0 -8.6629 -3.45 -205.929 
-     76 39.1345 900 5 1 0.05 0.0570366 -54.7103 
-     76 125.543 900 5 0 0.0754177 0.182579 -55.85 
-     76 137.511 912 4 1 2.57254 3.40026 -84.45 
-     76 133.881 918 4 0 2.56217 3.7229 -85.85 
-     76 73.8853 920 3 1 4.22526 11.4281 -114.45 
-     76 50.8164 921 3 1 4.25 11.4746 -114.638 
-     76 115.53 958 3 0 4.57705 11.7012 -115.85 
-     76 98.2076 965 2 1 13.1755 16.7183 -144.45 
-     76 32.5133 966 2 1 13.25 16.7865 -144.747 
-     76 33.8575 984 2 0 13.5415 17.0337 -145.85 
-     76 197.634 985 2 0 13.5608 17.05 -145.923 
-     76 40.7725 1006 1 1 21.3653 24.2116 -174.45 
-     76 98.3687 1007 1 1 21.45 24.2881 -174.585 
-     76 126.757 1025 1 0 22.365 25.0604 -175.85 
-     76 30.2027 1026 1 0 22.5947 25.25 -176.161 
-     76 26.3821 1138 0 1 47.7842 44.3159 -204.45 
-     76 68.6284 1139 0 1 47.85 44.3262 -204.513 
-     76 43.0943 1140 0 1 48.05 44.3527 -204.717 
-     76 150.895 1122 0 0 49.2255 44.4512 -205.85 
-     76 151.77 902 1 1 0.454333 -0.368228 -174.45 
-     76 51.9649 900 1 0 0.802004 0.05 -176.019 
-     76 95.5903 946 0 1 9.3407 7.91535 -204.45 
-     76 48.7379 947 0 1 9.45 8.10104 -204.724 
-     76 50.1441 944 0 0 9.95357 8.92646 -205.85 
-     76 95.9615 945 0 0 10.03 9.05 -206.017 
-     76 146.08 900 4 0 -0.0872218 0.0808538 -85.85 
-     76 97.0935 894 3 1 -1.11277 0.765244 -114.45 
-     76 6.66559 903 3 0 -1.23927 0.848409 -115.85 
-     76 124.416 904 3 0 -1.24172 0.85 -115.876 
-     76 133.788 883 2 1 -3.26825 2.13498 -144.45 
-     76 245.049 910 2 0 -3.40941 2.20448 -145.85 
-     76 151.785 866 1 1 -6.77068 3.05969 -174.45 
-     76 38.2219 915 1 0 -6.86389 3.23546 -175.85 
-     76 72.3345 916 1 0 -6.8718 3.25 -175.961 
-     76 176.792 855 0 1 -8.93649 6.34625 -204.45 
-     76 115.616 932 0 0 -9.03899 6.58056 -205.85 
-Number of digits in this event =  25
+Number of tracker hits in this event =  26
+     76 120.403 899 4 1 -0.129459 0.0856218 -84.45 
+     76 98.9257 900 4 0 -0.107523 0.13417 -85.85 
+     76 97.278 906 3 0 0.0709214 1.33102 -115.85 
+     76 148.874 903 2 1 0.731148 1.72523 -144.45 
+     76 146.563 908 2 0 0.676057 1.80011 -145.85 
+     76 265.828 898 1 1 -0.321147 3.13902 -174.45 
+     76 263.375 915 1 0 -0.405739 3.13315 -175.85 
+     76 253.603 889 0 1 -2.07954 3.30101 -204.45 
+     76 291.867 916 0 0 -2.09142 3.32817 -205.85 
+     76 131.126 914 1 0 -0.466054 3.04228 -175.85 
+     76 57.4521 900 0 1 0.221276 2.33984 -204.45 
+     76 60.7738 899 0 1 -0.05 2.22113 -204.525 
+     76 81.01 898 0 1 -0.25 2.06855 -204.606 
+     76 45.9767 897 0 1 -0.45 1.87026 -204.651 
+     76 70.2536 896 0 1 -0.65 1.84714 -204.602 
+     76 77.6526 895 0 1 -0.85 1.84727 -204.562 
+     76 63.6231 894 0 1 -1.05 1.87279 -204.591 
+     76 63.9291 893 0 1 -1.25 1.86087 -204.607 
+     76 72.6756 892 0 1 -1.45 1.81588 -204.635 
+     76 132.276 891 0 1 -1.65 1.77897 -204.671 
+     76 59.2782 890 0 1 -1.85 1.72902 -204.685 
+     76 40.1516 888 0 1 -2.25 1.52933 -204.72 
+     76 50.0493 907 0 0 -2.98381 1.64168 -205.85 
+     76 103.347 908 0 0 -3.03831 1.65 -205.935 
+     76 9.34241 1084 0 0 10.1886 36.8504 -206.152 
+     76 21.4158 1083 0 0 10.1887 36.85 -206.152 
+Number of digits in this event =  10
 Event: 77
-Number of tracker hits in this event =  22
-     77 107.749 900 5 1 0.0730986 0.226055 -54.45 
-     77 171.396 900 5 0 0.0800167 0.234345 -55.85 
-     77 143.585 900 4 1 0.219 0.397462 -84.45 
-     77 535.829 901 4 0 0.23212 0.411668 -85.85 
-     77 158.755 902 3 1 0.53315 0.710936 -114.45 
-     77 110.72 903 3 0 0.539259 0.720155 -115.85 
-     77 257.595 903 2 1 0.670172 0.927328 -144.45 
-     77 230.135 904 2 0 0.676506 0.941913 -145.85 
-     77 102.477 903 1 1 0.797093 1.27182 -174.45 
-     77 201.833 906 1 0 0.79034 1.29498 -175.85 
-     77 137.687 902 0 1 0.63563 1.64145 -204.45 
-     77 276.593 908 0 0 0.62751 1.66254 -205.85 
-     77 164.023 903 0 1 0.65 1.62536 -204.466 
-     77 63.8134 599 0 0 84.1037 -60.127 -206.25 
-     77 73.558 598 0 0 84.2369 -60.25 -206.181 
-     77 55.4986 597 0 0 84.4092 -60.45 -206.11 
-     77 93.6487 596 0 0 84.4833 -60.65 -206.057 
-     77 102.371 595 0 0 84.5513 -60.85 -205.983 
-     77 72.6121 594 0 0 84.5781 -61.05 -205.977 
-     77 84.6582 593 0 0 84.6005 -61.25 -205.938 
-     77 89.8498 592 0 0 84.598 -61.45 -205.898 
-     77 142.29 591 0 0 84.7796 -61.65 -206.001 
-Number of digits in this event =  12
+Number of tracker hits in this event =  25
+     77 156.076 899 5 1 -0.108367 0.107827 -54.45 
+     77 114.272 900 5 0 -0.120489 0.12813 -55.85 
+     77 114.324 898 4 1 -0.375082 0.56727 -84.45 
+     77 126.965 902 4 0 -0.389158 0.578068 -85.85 
+     77 121.558 896 3 1 -0.667093 0.790337 -114.45 
+     77 111.312 903 3 0 -0.685678 0.801049 -115.85 
+     77 216.841 895 2 1 -1.02745 1.01837 -144.45 
+     77 121.531 904 2 0 -1.03585 1.02917 -145.85 
+     77 165.589 893 1 1 -1.27006 1.24576 -174.45 
+     77 663.525 906 1 0 -1.28156 1.27191 -175.85 
+     77 207.185 892 0 1 -1.49465 1.81118 -204.45 
+     77 164.516 908 0 0 -1.49344 1.83568 -205.85 
+     77 243.293 900 5 1 0.05 0.168554 -54.7081 
+     77 284.751 901 5 1 0.25 0.57862 -54.4978 
+     77 96.566 897 3 1 -0.65 0.824617 -114.47 
+     77 85.1811 898 3 1 -0.45 1.06157 -114.663 
+     77 107.02 899 3 1 -0.25 1.23429 -114.791 
+     77 5.12214 900 3 1 0.05 1.4717 -114.848 
+     77 58.0238 927 3 0 3.24757 5.45402 -115.85 
+     77 222.894 927 3 1 5.45373 5.50531 -114.85 
+     77 223.475 928 3 1 5.65 5.52034 -114.768 
+     77 149.49 929 3 1 5.85 5.59746 -114.63 
+     77 94.1111 926 3 1 5.45 5.3341 -114.761 
+     77 72.3782 921 3 0 5.17373 4.32542 -115.85 
+     77 116.414 920 3 0 5.13069 4.25 -115.896 
+Number of digits in this event =  15
 Event: 78
-Number of tracker hits in this event =  11
-     78 135.712 899 4 1 -0.219486 -0.0690812 -84.45 
-     78 115.136 899 4 0 -0.229436 -0.071524 -85.85 
-     78 119.466 897 3 1 -0.47177 -0.109695 -114.45 
-     78 132.709 899 3 0 -0.478898 -0.113273 -115.85 
-     78 112.785 897 2 1 -0.598954 -0.20432 -144.45 
-     78 123.705 899 2 0 -0.603476 -0.205721 -145.85 
-     78 129.755 896 1 1 -0.705787 -0.261288 -174.45 
-     78 102.981 898 1 0 -0.704861 -0.261659 -175.85 
-     78 135.702 896 0 1 -0.660656 -0.240745 -204.45 
-     78 131.712 899 0 0 -0.661227 -0.229419 -205.85 
-     78 1.58839 225 4 0 97.4417 -135.103 -86.0711 
-Number of digits in this event =  8
+Number of tracker hits in this event =  37
+     78 124.733 901 5 1 0.406534 -0.124649 -54.45 
+     78 127.812 899 5 0 0.417349 -0.128305 -55.85 
+     78 511.661 902 4 1 0.614072 -0.181431 -84.45 
+     78 543.074 899 4 0 0.636345 -0.186883 -85.85 
+     78 121.393 905 3 1 1.10191 -0.315004 -114.45 
+     78 104.983 898 3 0 1.14139 -0.324833 -115.85 
+     78 118.607 909 2 1 1.9291 -0.585658 -144.45 
+     78 118.394 897 2 0 1.9532 -0.594591 -145.85 
+     78 122.423 911 1 1 2.41971 -0.833318 -174.45 
+     78 129.48 895 1 0 2.42566 -0.869224 -175.85 
+     78 125.855 912 0 1 2.52926 -1.59244 -204.45 
+     78 120.161 892 0 0 2.53787 -1.63592 -205.85 
+     78 105.27 898 2 0 1.8849 -0.329084 -145.85 
+     78 243.01 840 2 0 -11.7864 -12.013 -146.25 
+     78 8.57933 839 2 0 -11.7581 -12.05 -146.189 
+     78 39.417 900 3 1 0.0586567 0.845592 -114.45 
+     78 45.6709 893 2 1 -1.44433 0.420612 -144.45 
+     78 72.0657 892 2 1 -1.45 0.412039 -144.58 
+     78 239.728 901 2 0 -1.504 0.321999 -145.85 
+     78 105.114 886 1 1 -2.69989 -1.47145 -174.45 
+     78 112.78 892 1 0 -2.68692 -1.51201 -175.85 
+     78 158.897 888 0 1 -2.31806 -2.23823 -204.45 
+     78 194.99 889 0 0 -2.34952 -2.24554 -205.85 
+     78 122.622 882 3 1 -3.48729 -0.679762 -114.45 
+     78 129.646 897 3 0 -3.80564 -0.508434 -115.85 
+     78 33.598 853 2 1 -9.39633 3.39729 -144.45 
+     78 109.429 852 2 1 -9.45 3.44725 -144.559 
+     78 113.304 920 2 0 -10.0982 4.09615 -145.85 
+     78 29.6366 921 2 0 -10.2498 4.25 -146.148 
+     78 30.6738 777 1 1 -24.5959 16.9918 -174.45 
+     78 122.921 776 1 1 -24.65 17.0414 -174.538 
+     78 171.182 988 1 0 -25.4092 17.7614 -175.85 
+     78 97.9309 989 1 0 -25.5026 17.85 -176.015 
+     78 56.964 694 0 1 -41.1471 34.3829 -204.45 
+     78 228.319 693 0 1 -41.25 34.4629 -204.615 
+     78 150.214 1075 0 0 -42.0402 35.0614 -205.85 
+     78 2.55472 1076 0 0 -42.2889 35.25 -206.237 
+Number of digits in this event =  21
 Event: 79
-Number of tracker hits in this event =  27
-     79 163.743 899 5 1 -0.112928 -0.114514 -54.45 
-     79 115.081 899 5 0 -0.127392 -0.120679 -55.85 
-     79 107.687 897 4 1 -0.451844 -0.24913 -84.45 
-     79 118.63 898 4 0 -0.469211 -0.261461 -85.85 
-     79 129.679 896 3 1 -0.802555 -0.531669 -114.45 
-     79 171.139 897 3 0 -0.816424 -0.557774 -115.85 
-     79 127.399 894 2 1 -1.10739 -1.06969 -144.45 
-     79 134.044 894 2 0 -1.12142 -1.10634 -145.85 
-     79 140.173 893 1 1 -1.43885 -1.83696 -174.45 
-     79 105.457 890 1 0 -1.44715 -1.87278 -175.85 
-     79 115.947 892 0 1 -1.59143 -2.61171 -204.45 
-     79 50.0336 887 0 0 -1.60251 -2.64532 -205.85 
-     79 62.4226 886 0 0 -1.60404 -2.65 -206.046 
-     79 33.9779 325 0 1 -115.06 -95.0279 -204.45 
-     79 133.757 324 0 1 -115.15 -95.1044 -204.491 
-     79 139.297 323 0 1 -115.35 -95.3209 -204.709 
-     79 144.291 322 0 1 -115.55 -95.517 -204.844 
-     79 117.857 321 0 1 -115.75 -95.6874 -204.843 
-     79 584.457 320 0 1 -115.95 -96.0091 -204.776 
-     79 253.475 319 0 1 -116.15 -96.4926 -204.625 
-     79 51.6372 318 0 1 -116.35 -96.0093 -204.777 
-     79 154.352 317 0 1 -116.55 -95.9732 -204.745 
-     79 64.08 326 0 1 -114.83 -94.8762 -204.45 
-     79 98.498 327 0 1 -114.75 -94.732 -204.625 
-     79 90.5937 430 0 0 -115.205 -94.1096 -205.85 
-     79 443.387 431 0 0 -115.293 -93.95 -205.879 
-     79 162.316 35 4 0 83.3417 -173.025 -86.21 
-Number of digits in this event =  17
+Number of tracker hits in this event =  15
+     79 214.734 900 5 1 0.0632815 0.0595562 -54.45 
+     79 303.487 900 5 0 0.0654934 0.0684489 -55.85 
+     79 107.513 900 4 1 0.125848 0.2641 -84.45 
+     79 106.155 901 4 0 0.135531 0.277457 -85.85 
+     79 203.077 901 3 1 0.300235 0.598557 -114.45 
+     79 113.943 902 3 0 0.311801 0.614555 -115.85 
+     79 111.641 902 2 1 0.567713 0.985211 -144.45 
+     79 97.2063 904 2 0 0.581126 1.00587 -145.85 
+     79 116.809 904 1 1 0.861109 1.45041 -174.45 
+     79 108.956 907 1 0 0.866578 1.4701 -175.85 
+     79 116.447 904 0 1 0.961529 1.82467 -204.45 
+     79 137.52 908 0 0 0.972495 1.84164 -205.85 
+     79 323.49 902 0 1 0.646059 0.91424 -204.45 
+     79 290.081 904 0 0 0.650648 0.914417 -205.85 
+     79 170.018 1225 7 1 65.231 120.051 5.46773 
+Number of digits in this event =  8
 Event: 80
-Number of tracker hits in this event =  62
-     80 49.6615 899 5 1 -0.246988 0.118362 -54.45 
-     80 42.8261 898 5 1 -0.25 0.118756 -54.6598 
-     80 112.47 900 5 0 -0.265881 0.121558 -55.85 
-     80 107.612 896 4 1 -0.655951 0.216607 -84.45 
-     80 104.936 900 4 0 -0.666984 0.233143 -85.85 
-     80 203.246 895 3 1 -1.00733 0.577214 -114.45 
-     80 102.817 902 3 0 -1.02976 0.614934 -115.85 
-     80 129.986 892 2 1 -1.47921 1.38133 -144.45 
-     80 122.421 906 2 0 -1.4951 1.4224 -145.85 
-     80 116.906 891 1 1 -1.7576 2.13993 -174.45 
-     80 128.514 910 1 0 -1.76993 2.16487 -175.85 
-     80 145.237 890 0 1 -2.00288 2.72553 -204.45 
-     80 137.973 913 0 0 -1.98255 2.72402 -205.85 
-     80 216.262 894 3 1 -1.05 0.264168 -114.575 
-     80 108.964 901 3 0 -1.0844 0.296106 -115.85 
-     80 290.057 888 2 1 -2.29313 0.912033 -144.45 
-     80 200.254 904 2 0 -2.18773 0.907682 -145.85 
-     80 141.368 900 1 1 0.0700839 0.100536 -174.45 
-     80 154.633 900 1 0 0.290771 0.0613742 -175.85 
-     80 115.812 923 0 1 4.70443 0.158631 -204.45 
-     80 102.7 900 0 0 4.99716 0.118494 -205.85 
-     80 32.8143 905 2 0 -2.18398 1.05 -146.177 
-     80 219.153 899 4 1 -0.105607 0.167939 -84.45 
-     80 26.043 899 4 0 -0.12448 -0.235236 -85.85 
-     80 123.57 898 4 0 -0.126704 -0.25 -85.9043 
-     80 113.099 901 4 0 -0.141883 0.25 -85.8801 
-     80 116.71 899 3 1 -0.125944 3.2591 -114.45 
-     80 116.786 916 3 0 0.118095 3.3626 -115.85 
-     80 114.479 928 2 1 5.69565 5.53964 -144.45 
-     80 8.50677 929 2 1 5.85 5.66673 -144.82 
-     80 39.6582 929 2 0 6.31554 6.00343 -145.85 
-     80 105.131 930 2 0 6.37995 6.05 -145.992 
-     80 53.0316 999 1 1 19.9798 16.1378 -174.45 
-     80 78.7557 1000 1 1 20.05 16.1566 -174.588 
-     80 157.053 981 1 0 20.6934 16.3788 -175.85 
-     80 1.2596 982 1 0 20.8958 16.45 -176.246 
-     80 7.25766 1072 0 1 34.6353 22.8933 -204.45 
-     80 110.643 1073 0 1 34.65 22.9008 -204.475 
-     80 14.4457 1074 0 1 34.85 23.0009 -204.797 
-     80 125.082 1016 0 0 35.5611 23.3193 -205.85 
-     80 120.517 893 3 1 -1.25 0.981104 -114.565 
-     80 110.053 892 3 1 -1.45 1.38113 -114.697 
-     80 77.0047 891 3 1 -1.65 1.63967 -114.665 
-     80 106.902 890 3 1 -1.85 1.81128 -114.676 
-     80 87.2824 889 3 1 -2.05 2.02239 -114.703 
-     80 144.766 888 3 1 -2.25 2.2542 -114.785 
-     80 107.379 887 3 1 -2.45 2.44217 -114.81 
-     80 138.316 886 3 1 -2.65 2.7466 -114.765 
-     80 34.6686 885 3 1 -2.85 3.17569 -114.573 
-     80 83.9174 716 4 0 6.22276 -36.6786 -86.25 
-     80 140.482 715 4 0 6.26036 -36.85 -86.1304 
-     80 55.683 714 4 0 6.30519 -37.05 -86.0376 
-     80 77.0814 713 4 0 6.34218 -37.25 -85.9399 
-     80 15.7116 712 4 0 6.47133 -37.45 -85.8642 
-     80 38.9858 940 4 1 8.18023 -39.8619 -84.85 
-     80 55.9068 941 4 1 8.25 -39.9602 -84.8086 
-     80 52.1854 942 4 1 8.45 -40.0007 -84.7885 
-     80 59.8982 943 4 1 8.65 -40.0565 -84.7935 
-     80 55.0244 944 4 1 8.85 -40.1285 -84.7725 
-     80 97.6247 945 4 1 9.05 -40.1669 -84.6951 
-     80 83.1338 946 4 1 9.25 -40.2089 -84.5717 
-     80 11.5501 947 4 1 9.45 -40.2605 -84.4664 
-Number of digits in this event =  21
+Number of tracker hits in this event =  23
+     80 115.896 900 5 1 0.155328 0.115061 -54.45 
+     80 221.908 900 5 0 0.163135 0.130293 -55.85 
+     80 110.696 901 4 1 0.315125 0.47933 -84.45 
+     80 141.372 902 4 0 0.311413 0.491202 -85.85 
+     80 133.071 900 3 1 0.230696 0.660598 -114.45 
+     80 104.883 903 3 0 0.241253 0.692568 -115.85 
+     80 150.652 901 2 1 0.438116 1.36042 -144.45 
+     80 115.325 906 2 0 0.4454 1.41069 -145.85 
+     80 115.506 903 1 1 0.650896 2.34414 -174.45 
+     80 135.656 911 1 0 0.675476 2.37071 -175.85 
+     80 345.46 905 0 1 1.23671 3.01231 -204.45 
+     80 163.955 914 0 0 1.27089 3.02741 -205.85 
+     80 56.9339 906 0 1 1.25 3.01673 -204.791 
+     80 166.378 916 0 0 2.48771 3.28337 -205.85 
+     80 288.368 920 0 1 4.19076 3.31139 -204.85 
+     80 31.3529 919 0 1 4.05 3.4773 -204.676 
+     80 154.675 919 0 0 4.59766 3.94729 -205.85 
+     80 275.445 902 1 1 0.609127 1.31016 -174.45 
+     80 232.488 906 1 0 0.63195 1.32394 -175.85 
+     80 173.358 909 0 0 1.11546 1.891 -205.85 
+     80 84.4134 921 0 1 4.34452 0.708057 -204.45 
+     80 42.4687 922 0 1 4.45 0.634636 -204.694 
+     80 131.592 901 0 0 4.95926 0.390707 -205.85 
+Number of digits in this event =  15
 Event: 81
-Number of tracker hits in this event =  18
-     81 100.221 900 5 1 0.114483 -0.26944 -54.45 
-     81 162.69 898 5 0 0.11653 -0.279815 -55.85 
-     81 127.113 900 4 1 0.140072 -0.490748 -84.45 
-     81 235.546 897 4 0 0.159342 -0.497989 -85.85 
-     81 101.258 902 3 1 0.617716 -0.641478 -114.45 
-     81 116.155 896 3 0 0.639677 -0.652249 -115.85 
-     81 277.56 905 2 1 1.09871 -0.895855 -144.45 
-     81 130.771 895 2 0 1.11264 -0.906196 -145.85 
-     81 175.331 906 1 1 1.36309 -1.1259 -174.45 
-     81 142.428 894 1 0 1.37584 -1.14096 -175.85 
-     81 134.243 907 0 1 1.6085 -1.44019 -204.45 
-     81 105.383 892 0 0 1.60836 -1.45705 -205.85 
-     81 124.903 884 1 0 1.12603 -3.06403 -175.85 
-     81 88.8365 882 1 1 -3.50436 -3.40586 -174.85 
-     81 19.2329 881 1 1 -3.65 -3.41773 -174.827 
-     81 174.613 885 1 0 -4.92869 -3.05 -175.894 
-     81 125.476 1795 0 0 66.0909 179.225 -206.167 
-     81 180.674 1796 0 0 66.0791 179.35 -206.064 
-Number of digits in this event =  13
+Number of tracker hits in this event =  15
+     81 106.203 900 5 1 0.101285 -0.117742 -54.45 
+     81 172.197 899 5 0 0.10631 -0.132557 -55.85 
+     81 127.99 900 4 1 0.210522 -0.440488 -84.45 
+     81 114.62 897 4 0 0.229683 -0.457066 -85.85 
+     81 211.585 903 3 1 0.667608 -0.765691 -114.45 
+     81 169.304 896 3 0 0.685452 -0.779952 -115.85 
+     81 107.62 905 2 1 1.12802 -1.06317 -144.45 
+     81 112.312 894 2 0 1.15004 -1.05619 -145.85 
+     81 119.657 907 1 1 1.54329 -0.911112 -174.45 
+     81 116.882 895 1 0 1.55097 -0.901085 -175.85 
+     81 140.051 908 0 1 1.74433 -0.695199 -204.45 
+     81 250.221 896 0 0 1.75468 -0.682891 -205.85 
+     81 67.6415 911 0 1 2.26397 -0.772205 -204.677 
+     81 261.573 895 0 0 1.88572 -0.85 -206.1 
+     81 222.184 960 0 1 12.0969 -13.2573 -204.517 
+Number of digits in this event =  9
 Event: 82
-Number of tracker hits in this event =  14
-     82 175.087 899 1 0 -0.177025 -0.0866289 -175.85 
-     82 124.289 901 0 1 0.264822 -1.22804 -204.45 
-     82 112.67 894 0 0 0.301809 -1.22978 -205.85 
-     82 12.6921 899 1 1 -0.21842 -0.05 -174.557 
-     82 102.357 898 1 1 -0.25 -0.0953708 -174.577 
-     82 99.0539 897 1 1 -0.45 -0.330975 -174.61 
-     82 250.426 896 1 1 -0.65 -0.521626 -174.537 
-     82 133.48 896 0 1 -0.701219 -0.147848 -204.45 
-     82 119.245 899 0 0 -0.691623 -0.200524 -205.85 
-     82 111.985 900 1 1 0.104188 0.337473 -174.45 
-     82 136.964 901 1 0 0.0985037 0.359616 -175.85 
-     82 109.297 900 0 1 0.0638937 0.646645 -204.45 
-     82 133.047 903 0 0 0.0837267 0.671699 -205.85 
-     82 25.6522 1351 6 0 -48.4486 90.3881 -26.0963 
-Number of digits in this event =  8
+Number of tracker hits in this event =  39
+     82 394.401 897 5 1 -0.556226 0.64697 -54.45 
+     82 513.26 902 5 0 -0.540854 0.641876 -55.85 
+     82 137.344 899 4 1 -0.204501 0.786575 -84.45 
+     82 111.702 903 4 0 -0.27029 0.792999 -85.85 
+     82 131.142 889 3 1 -2.12286 0.905624 -114.45 
+     82 129.168 903 3 0 -2.23643 0.816419 -115.85 
+     82 161.812 878 2 1 -4.25929 -1.07825 -144.45 
+     82 103.961 895 2 0 -4.48463 -1.01315 -145.85 
+     82 114.247 854 1 1 -9.11856 1.21344 -174.45 
+     82 145.951 906 1 0 -9.27853 1.27589 -175.85 
+     82 113.587 847 0 1 -10.5477 4.41728 -204.45 
+     82 163.124 923 0 0 -10.2753 4.66406 -205.85 
+     82 3.0191 898 5 1 -0.45 0.824075 -54.8388 
+     82 180.372 901 5 0 0.41417 0.45 -56.1141 
+     82 108.028 883 5 0 -0.465961 -3.38984 -55.85 
+     82 103.365 901 4 1 0.272068 -5.71922 -84.45 
+     82 106.101 870 4 0 0.426461 -5.96725 -85.85 
+     82 451.168 910 3 1 2.19399 -10.1153 -114.45 
+     82 12.8503 911 3 1 2.25 -10.1457 -114.801 
+     82 159.449 848 3 0 2.37999 -10.2602 -115.85 
+     82 152.364 928 2 1 5.66039 -14.3583 -144.45 
+     82 110.86 827 2 0 5.71937 -14.5301 -145.85 
+     82 96.1945 935 1 1 7.1355 -16.5878 -174.45 
+     82 25.1957 936 1 1 7.25 -16.707 -174.767 
+     82 24.7306 814 1 0 7.6241 -17.2099 -175.85 
+     82 127.396 813 1 0 7.65405 -17.25 -175.937 
+     82 79.4402 981 0 1 16.394 -30.7281 -204.45 
+     82 62.3213 982 0 1 16.45 -30.769 -204.656 
+     82 96.2589 745 0 0 16.804 -31.0064 -205.85 
+     82 60.4209 744 0 0 16.8693 -31.05 -206.069 
+     82 132.183 898 4 1 -0.405099 0.072112 -84.45 
+     82 110.659 900 4 0 -0.407602 0.0677044 -85.85 
+     82 132.688 896 2 1 -0.709131 0.237481 -144.45 
+     82 76.5772 900 2 0 -0.704224 0.248423 -145.85 
+     82 139.491 901 2 0 -0.703431 0.25 -146.057 
+     82 119.911 897 1 1 -0.629155 0.54452 -174.45 
+     82 136.541 902 1 0 -0.629902 0.578682 -175.85 
+     82 143.874 897 0 1 -0.633397 1.31468 -204.45 
+     82 124.145 906 0 0 -0.662599 1.35032 -205.85 
+Number of digits in this event =  21
 Event: 83
-Number of tracker hits in this event =  10
-     83 104.383 902 4 1 0.56288 -0.259175 -84.45 
-     83 143.335 898 4 0 0.582803 -0.27308 -85.85 
-     83 112.489 904 3 1 0.993564 -0.562561 -114.45 
-     83 396.01 897 3 0 1.01937 -0.589015 -115.85 
-     83 111.008 907 2 1 1.52593 -1.12091 -144.45 
-     83 97.2072 894 2 0 1.58039 -1.14893 -145.85 
-     83 139.481 913 1 1 2.67847 -1.79377 -174.45 
-     83 107.714 891 1 0 2.71468 -1.825 -175.85 
-     83 117.079 916 0 1 3.34161 -2.57706 -204.45 
-     83 134.181 887 0 0 3.37 -2.61541 -205.85 
-Number of digits in this event =  6
-Event: 84
 Number of tracker hits in this event =  21
-     84 115.719 900 5 1 0.0847337 0.0689824 -54.45 
-     84 158.066 900 5 0 0.0935124 0.0728488 -55.85 
-     84 114.529 901 4 1 0.267757 0.152592 -84.45 
-     84 187.71 900 4 0 0.274646 0.149943 -85.85 
-     84 97.0343 901 3 1 0.440167 0.0531133 -114.45 
-     84 112.026 903 2 1 0.669636 -0.29714 -144.45 
-     84 190.166 898 2 0 0.666113 -0.320867 -145.85 
-     84 107.115 902 1 1 0.571424 -0.811018 -174.45 
-     84 118.073 895 1 0 0.552238 -0.872365 -175.85 
-     84 168.059 900 0 1 0.160843 -2.10202 -204.45 
-     84 231.551 889 0 0 0.158835 -2.19538 -205.85 
-     84 5.32143 894 1 1 -1.05665 -0.75715 -174.45 
-     84 317.529 895 1 1 -1.05 -0.755275 -174.476 
-     84 283.707 896 1 0 -0.643109 -0.769277 -175.85 
-     84 11.5788 931 0 1 6.42984 -1.75152 -204.45 
-     84 110.305 932 0 1 6.45 -1.76236 -204.5 
-     84 112.354 893 0 0 0.0747165 -1.42699 -205.85 
-     84 335.493 899 0 1 -0.05 -1.34267 -204.451 
-     84 434.655 898 0 1 -0.25 -0.378003 -204.753 
-     84 42.6837 1063 0 1 32.7701 -6.06899 -204.639 
-     84 11.4222 1441 2 0 -57.9554 108.358 -145.939 
+     83 136.38 900 5 1 0.0944797 0.151433 -54.45 
+     83 133.81 900 5 0 0.100157 0.15345 -55.85 
+     83 130.614 901 4 1 0.251975 0.195389 -84.45 
+     83 130.238 900 4 0 0.262329 0.199444 -85.85 
+     83 115.339 902 3 1 0.487127 0.306274 -114.45 
+     83 110.966 901 3 0 0.497641 0.315999 -115.85 
+     83 99.1873 903 2 1 0.723945 0.510223 -144.45 
+     83 137.855 902 2 0 0.737749 0.52201 -145.85 
+     83 138.861 904 1 1 0.953404 0.783806 -174.45 
+     83 121.599 903 1 0 0.956257 0.804597 -175.85 
+     83 242.648 904 0 1 1.00668 1.3314 -204.45 
+     83 108.77 906 0 0 0.996388 1.35478 -205.85 
+     83 224.776 720 0 0 19.8374 -35.9728 -206.25 
+     83 87.4097 1008 0 1 21.6593 -35.8318 -204.85 
+     83 49.4031 1009 0 1 21.85 -35.8433 -204.621 
+     83 70.093 495 0 0 -14.1716 -80.9126 -206.25 
+     83 3.4218 494 0 0 -14.1892 -81.05 -206.245 
+     83 118.042 945 2 0 11.932 9.08162 -146.25 
+     83 21.2389 946 2 0 12.0033 9.25 -146.236 
+     83 3.57006 783 2 0 -44.7859 -23.3378 -146.25 
+     83 21.377 247 2 1 -130.653 64.1129 -144.45 
 Number of digits in this event =  10
+Event: 84
+Number of tracker hits in this event =  14
+     84 112.891 899 5 1 -0.104344 0.0523439 -54.45 
+     84 166.381 900 5 0 -0.101479 0.0525908 -55.85 
+     84 142.953 898 2 1 -0.287918 0.506489 -144.45 
+     84 113.721 902 2 0 -0.305177 0.517971 -145.85 
+     84 105.276 896 1 1 -0.689838 0.745437 -174.45 
+     84 114.852 903 1 0 -0.718099 0.763693 -175.85 
+     84 127.625 893 0 1 -1.27386 1.21598 -204.45 
+     84 271.07 905 0 0 -1.29916 1.2373 -205.85 
+     84 97.1413 894 5 0 -0.585143 -1.07638 -55.85 
+     84 110.505 893 5 0 -0.659327 -1.25 -56.0041 
+     84 15.6997 892 5 0 -0.84915 -1.45 -56.2331 
+     84 234.806 889 5 0 -34.7903 -2.24965 -56.25 
+     84 214.074 721 5 1 -35.7053 -0.939033 -54.85 
+     84 325.011 720 5 1 -35.85 -0.792562 -54.712 
+Number of digits in this event =  9
 Event: 85
-Number of tracker hits in this event =  12
-     85 109.22 900 5 1 0.187821 0.0716776 -54.45 
-     85 101.199 900 5 0 0.199233 0.0750877 -55.85 
-     85 108.148 902 4 1 0.45683 0.123318 -84.45 
-     85 109.451 900 4 0 0.4705 0.130491 -85.85 
-     85 124.185 903 3 1 0.712844 0.407652 -114.45 
-     85 124.459 901 3 0 0.717579 0.415847 -115.85 
-     85 121.071 903 2 1 0.811293 0.577983 -144.45 
-     85 342.928 902 2 0 0.810698 0.582309 -145.85 
-     85 106.214 903 1 1 0.791575 0.649916 -174.45 
-     85 133.759 903 1 0 0.789957 0.653656 -175.85 
-     85 172.925 903 0 1 0.819961 0.719282 -204.45 
-     85 116.032 903 0 0 0.843922 0.719949 -205.85 
-Number of digits in this event =  7
+Number of tracker hits in this event =  10
+     85 107.608 897 4 1 -0.463774 0.0640752 -84.45 
+     85 144.759 900 4 0 -0.475514 0.0676422 -85.85 
+     85 191.073 896 3 1 -0.694715 0.136309 -114.45 
+     85 146.264 900 3 0 -0.701035 0.141696 -115.85 
+     85 130.7 896 2 1 -0.781951 0.250874 -144.45 
+     85 129.873 900 2 0 -0.778066 0.245026 -145.85 
+     85 115.478 896 1 1 -0.66218 0.159561 -174.45 
+     85 116.439 900 1 0 -0.656912 0.165411 -175.85 
+     85 135.82 897 0 1 -0.543238 0.280032 -204.45 
+     85 162.222 901 0 0 -0.510538 0.278054 -205.85 
+Number of digits in this event =  9
 Event: 86
-Number of tracker hits in this event =  17
-     86 118.978 902 3 1 0.589971 -0.608613 -114.45 
-     86 9.36985 897 3 0 0.629344 -0.648987 -115.85 
-     86 101.167 896 3 0 0.630334 -0.65 -115.885 
-     86 300.47 906 2 1 1.44156 -1.48674 -144.45 
-     86 38.9644 907 2 1 1.45 -1.49668 -144.738 
-     86 163.686 892 2 0 1.48164 -1.53401 -145.85 
-     86 135.902 911 1 1 2.31238 -2.5378 -174.45 
-     86 169.488 887 1 0 2.34217 -2.59104 -175.85 
-     86 138.413 914 0 1 2.91663 -3.67401 -204.45 
-     86 110.446 881 0 0 2.94427 -3.71862 -205.85 
-     86 40.9368 893 2 0 1.47504 -1.45 -146.134 
-     86 2.50481 900 4 1 0.05 0.154451 -84.8415 
-     86 412.797 903 4 0 0.880483 0.750433 -85.85 
-     86 337.767 915 0 1 3.14773 -3.48414 -204.45 
-     86 139.377 883 0 0 3.20444 -3.41908 -205.85 
-     86 14.9441 345 2 1 -111.067 69.5583 -144.535 
-     86 105.648 882 0 0 3.12851 -3.53833 -205.85 
-Number of digits in this event =  10
+Number of tracker hits in this event =  69
+     86 138.837 899 5 1 -0.0551805 -0.0788342 -54.45 
+     86 122.179 899 5 0 -0.0585252 -0.0840949 -55.85 
+     86 244.374 899 4 1 -0.108219 -0.208985 -84.45 
+     86 107.181 899 4 0 -0.116416 -0.20944 -85.85 
+     86 161.627 898 3 1 -0.283515 -0.206165 -114.45 
+     86 117.789 899 3 0 -0.29508 -0.210864 -115.85 
+     86 122.204 897 2 1 -0.529341 -0.318483 -144.45 
+     86 264.053 898 2 0 -0.553508 -0.287652 -145.85 
+     86 222.061 895 1 1 -0.895368 0.370044 -174.45 
+     86 132.389 901 1 0 -0.908191 0.380795 -175.85 
+     86 174.933 892 0 1 -1.61258 0.782638 -204.45 
+     86 138.759 903 0 0 -1.62078 0.769543 -205.85 
+     86 51.3434 1302 9 1 80.582 38.4122 65.5037 
+     86 155.257 1372 1 0 -52.5483 94.6477 -176.25 
+     86 73.9221 897 1 1 -0.620289 -0.05 -174.578 
+     86 156.729 898 1 1 -0.45 -0.240916 -174.711 
+     86 68.4862 899 1 1 -0.25 -0.491352 -174.829 
+     86 72.8707 890 1 0 0.854342 -1.87449 -175.85 
+     86 79.5949 889 1 0 0.993574 -2.05 -175.979 
+     86 37.7361 888 1 0 1.10164 -2.25 -176.184 
+     86 96.3306 694 1 0 10.2487 -41.0626 -176.25 
+     86 87.2287 693 1 0 10.3159 -41.25 -176.146 
+     86 254.906 901 4 0 0.337456 0.259516 -85.85 
+     86 22.4859 944 3 1 8.98819 8.7517 -114.45 
+     86 174.993 945 3 1 9.05 8.76693 -114.541 
+     86 3.59427 946 3 1 9.25 8.80848 -114.834 
+     86 148.1 944 3 0 9.93471 8.88468 -115.85 
+     86 62.7002 1045 2 1 29.0735 11.1033 -144.45 
+     86 100.206 1046 2 1 29.25 11.1137 -144.605 
+     86 35.9235 1047 2 1 29.45 11.128 -144.788 
+     86 155.354 955 2 0 30.6556 11.1441 -145.85 
+     86 32.2768 1216 1 1 63.3549 12.3644 -174.45 
+     86 116.589 1217 1 1 63.45 12.3767 -174.515 
+     86 63.6655 1218 1 1 63.65 12.3984 -174.652 
+     86 33.3409 1219 1 1 63.85 12.4206 -174.788 
+     86 252.049 963 1 0 65.6294 12.656 -175.85 
+     86 224.604 899 2 1 -0.17155 -0.198286 -144.45 
+     86 187.209 886 1 1 -2.74951 -2.06435 -174.45 
+     86 95.7675 893 1 0 -2.97491 -1.37831 -175.85 
+     86 43.0652 894 1 0 -3.01639 -1.25 -176.12 
+     86 143.842 869 0 1 -6.08927 14.2187 -204.45 
+     86 34.1337 971 0 0 -6.08435 14.4302 -205.85 
+     86 91.9002 972 0 0 -6.08116 14.45 -205.987 
+     86 84.0584 894 1 1 -1.05 0.13613 -174.704 
+     86 127.487 904 1 0 -2.35319 0.919793 -175.85 
+     86 158.862 905 1 0 -2.56831 1.05 -176.041 
+     86 121.494 900 3 1 0.206736 0.363125 -114.45 
+     86 55.4446 900 3 0 0.236444 0.0910402 -115.85 
+     86 126.034 908 2 1 1.76553 -6.93877 -144.45 
+     86 199.813 865 2 0 1.66781 -7.01869 -145.85 
+     86 171.366 854 1 0 -0.289786 -9.13768 -175.85 
+     86 44.3808 853 1 0 -0.299199 -9.25 -176.128 
+     86 107.4 900 0 1 0.222081 -18.3822 -204.45 
+     86 62.1183 807 0 0 -0.05 -18.6247 -206.078 
+     86 15.3655 806 0 0 -0.0706562 -18.65 -206.215 
+     86 72.8044 900 2 1 0.05 -0.266564 -144.737 
+     86 18.5954 896 2 0 1.05901 -0.826537 -145.85 
+     86 130.063 895 2 0 1.1004 -0.85 -145.896 
+     86 123.538 1059 1 1 31.8957 -27.3799 -174.45 
+     86 139.816 1060 1 1 32.05 -26.9442 -174.596 
+     86 50.0089 783 1 0 34.1177 -23.4242 -175.85 
+     86 121.591 784 1 0 34.2219 -23.25 -175.89 
+     86 89.7736 785 1 0 34.3486 -23.05 -175.933 
+     86 74.2112 786 1 0 34.5195 -22.85 -175.992 
+     86 168.631 787 1 0 34.7338 -22.65 -176.054 
+     86 70.2496 788 1 0 34.9828 -22.45 -176.167 
+     86 102.382 741 0 0 1.12882 -31.7588 -206.029 
+     86 375.596 1102 2 0 -4.48105 40.5484 -146.25 
+     86 13.936 1101 2 0 -4.62559 40.45 -146.248 
+Number of digits in this event =  35
 Event: 87
-Number of tracker hits in this event =  21
-     87 135.024 898 4 1 -0.365299 0.698639 -84.45 
-     87 134.156 903 4 0 -0.387455 0.730755 -85.85 
-     87 64.9065 896 3 1 -0.847308 1.39097 -114.45 
-     87 213.746 895 3 1 -0.85 1.39467 -114.583 
-     87 125.09 906 3 0 -0.875517 1.43134 -115.85 
-     87 134.072 893 2 1 -1.42748 2.25411 -144.45 
-     87 112.418 911 2 0 -1.44929 2.30364 -145.85 
-     87 150.5 890 1 1 -1.88881 3.29503 -174.45 
-     87 251.676 916 1 0 -1.88619 3.33167 -175.85 
-     87 164.274 891 0 1 -1.82079 4.12456 -204.45 
-     87 112.339 920 0 0 -1.80324 4.16942 -205.85 
-     87 194.182 888 0 1 -2.31602 4.31486 -204.45 
-     87 91.6604 889 0 1 -2.25 4.30523 -204.586 
-     87 517.315 921 0 0 -1.62584 4.41388 -205.85 
-     87 139.15 922 0 0 -1.48607 4.45 -206.149 
-     87 6.56453 1039 2 0 -59.6261 28.008 -146.028 
-     87 110.809 1420 2 0 -153.562 104.211 -146.232 
-     87 66.8326 1421 2 0 -153.917 104.35 -146.169 
-     87 88.1985 1548 2 0 -126.993 129.842 -146.25 
-     87 200.998 1547 2 0 -126.783 129.75 -146.22 
-     87 164.313 1441 2 0 -129.905 108.404 -146.25 
-Number of digits in this event =  15
+Number of tracker hits in this event =  22
+     87 110.211 900 5 1 0.0919087 0.102814 -54.45 
+     87 119.999 900 5 0 0.116334 0.100766 -55.85 
+     87 136.148 911 2 1 2.33407 0.3517 -144.45 
+     87 136.048 901 2 0 2.37275 0.37009 -145.85 
+     87 413.463 914 1 1 3.04608 0.786696 -174.45 
+     87 86.7644 915 1 1 3.05 0.787866 -174.579 
+     87 111.763 903 1 0 3.08146 0.803407 -175.85 
+     87 181.977 918 0 1 3.73166 1.17 -204.45 
+     87 128.608 905 0 0 3.76649 1.19947 -205.85 
+     87 336.404 902 1 1 0.506043 0.2071 -174.45 
+     87 239.801 900 1 0 0.545072 0.168826 -175.85 
+     87 141.574 910 0 1 2.08972 -0.501714 -204.45 
+     87 107.332 897 0 0 2.20703 -0.524424 -205.85 
+     87 126.955 902 0 1 0.556703 0.167356 -204.45 
+     87 112.433 900 0 0 0.566795 0.174864 -205.85 
+     87 122.481 314 2 1 -117.208 38.3056 -144.45 
+     87 39.8652 313 2 1 -117.35 38.052 -144.781 
+     87 56.0045 1082 2 0 -117.883 36.6002 -145.85 
+     87 65.2019 1081 2 0 -117.936 36.45 -145.96 
+     87 147.385 1080 2 0 -118.058 36.25 -146.027 
+     87 81.2201 1079 2 0 -118.198 36.05 -146.108 
+     87 11.8381 1078 2 0 -118.344 35.85 -146.204 
+Number of digits in this event =  14
 Event: 88
-Number of tracker hits in this event =  14
-     88 161.636 900 5 1 0.110908 -0.0660507 -54.45 
-     88 99.6793 899 5 0 0.133933 -0.0862345 -55.85 
-     88 134.771 902 4 1 0.580043 -0.502322 -84.45 
-     88 90.5699 897 4 0 0.580456 -0.524123 -85.85 
-     88 151.426 902 3 1 0.555862 -1.0366 -114.45 
-     88 78.6524 895 3 0 0.576896 -1.04831 -115.85 
-     88 45.5436 894 3 0 0.580535 -1.05 -116.074 
-     88 117.95 904 2 1 0.973956 -1.20974 -144.45 
-     88 88.4295 894 2 0 0.951692 -1.24324 -145.85 
-     88 37.5012 893 2 0 0.947445 -1.25 -146.107 
-     88 96.8867 901 1 1 0.44256 -1.95937 -174.45 
-     88 183.249 890 1 0 0.450473 -1.97282 -175.85 
-     88 99.7189 902 0 1 0.559317 -2.12479 -204.45 
-     88 131.017 889 0 0 0.572146 -2.18013 -205.85 
-Number of digits in this event =  8
+Number of tracker hits in this event =  28
+     88 113.315 901 4 1 0.353314 0.15216 -84.45 
+     88 126.016 900 4 0 0.369558 0.158335 -85.85 
+     88 148.126 903 3 1 0.730134 0.259121 -114.45 
+     88 274.758 900 3 0 0.741165 0.247295 -115.85 
+     88 99.2901 903 2 1 0.840852 0.11225 -144.45 
+     88 313.294 900 2 0 0.871632 0.106499 -145.85 
+     88 128.603 907 1 1 1.51657 0.238348 -174.45 
+     88 109.843 900 1 0 1.54289 0.227023 -175.85 
+     88 110.844 911 0 1 2.2591 -0.235577 -204.45 
+     88 121.423 899 0 0 2.38027 -0.19105 -205.85 
+     88 119.665 1494 6 0 43.9917 119.031 -26.25 
+     88 113.253 1495 6 0 44.0986 119.15 -26.1067 
+     88 55.6346 1121 6 1 44.4241 119.989 -24.85 
+     88 195.04 1122 6 1 44.45 120.068 -24.7322 
+     88 147.032 1123 6 1 44.65 120.268 -24.6075 
+     88 66.0693 1493 6 0 44.0049 118.95 -25.8948 
+     88 75.6847 1492 6 0 44.0222 118.75 -25.9846 
+     88 93.7916 1491 6 0 43.9652 118.55 -25.9879 
+     88 202.149 1490 6 0 43.9085 118.35 -25.9574 
+     88 167.833 1489 6 0 44.086 118.15 -26.0993 
+     88 14.5665 1469 1 0 -20.6797 114.11 -176.25 
+     88 129.672 1470 1 0 -20.6927 114.15 -176.236 
+     88 73.7132 1471 1 0 -20.9018 114.35 -176.026 
+     88 34.9946 783 1 1 -23.3599 114.874 -174.85 
+     88 183.68 782 1 1 -23.45 114.868 -174.786 
+     88 10.4799 1124 6 1 44.85 120.319 -24.7129 
+     88 172.133 1004 5 0 -57.6083 20.9914 -56.0148 
+     88 11.8462 1005 5 0 -57.704 21.05 -56.0153 
+Number of digits in this event =  14
 Event: 89
-Number of tracker hits in this event =  12
-     89 140.541 900 5 1 0.118571 -0.324859 -54.45 
-     89 114.529 898 5 0 0.101836 -0.350191 -55.85 
-     89 121.14 899 4 1 -0.17697 -0.902338 -84.45 
-     89 147.316 895 4 0 -0.179396 -0.900934 -85.85 
-     89 128.786 898 3 1 -0.253113 -0.907638 -114.45 
-     89 217.81 895 3 0 -0.252028 -0.912441 -115.85 
-     89 118.692 899 2 1 -0.220978 -1.00494 -144.45 
-     89 144.988 895 2 0 -0.226073 -1.02036 -145.85 
-     89 140.795 899 1 1 -0.228074 -1.40312 -174.45 
-     89 132.137 893 1 0 -0.231179 -1.39141 -175.85 
-     89 231.557 900 0 1 0.0629589 -0.896563 -204.45 
-     89 178.469 627 0 0 35.2765 -54.4699 -206.078 
-Number of digits in this event =  12
+Number of tracker hits in this event =  21
+     89 104.648 900 3 1 0.0936944 -0.276522 -114.45 
+     89 124.771 898 3 0 0.0948989 -0.280887 -115.85 
+     89 152.842 900 2 1 0.136219 -0.354361 -144.45 
+     89 133.568 898 2 0 0.146677 -0.35408 -145.85 
+     89 127.755 901 1 1 0.334413 -0.371035 -174.45 
+     89 96.8136 898 1 0 0.332426 -0.379775 -175.85 
+     89 238.409 901 0 1 0.30197 -0.573711 -204.45 
+     89 111.479 897 0 0 0.29777 -0.574885 -205.85 
+     89 213.285 900 0 1 0.189093 -0.476941 -204.45 
+     89 42.0841 909 0 0 -0.575521 1.91053 -205.85 
+     89 65.7999 910 0 0 -0.617993 2.05 -205.923 
+     89 67.3158 911 0 0 -0.676244 2.25 -205.998 
+     89 62.2515 912 0 0 -0.824741 2.45 -206.087 
+     89 49.9278 913 0 0 -0.860839 2.65 -206.188 
+     89 45.9798 1237 0 0 31.688 67.5207 -206.25 
+     89 83.5879 1238 0 0 31.7643 67.65 -206.235 
+     89 91.6112 1239 0 0 31.8621 67.85 -206.063 
+     89 23.997 1240 0 0 31.8612 68.05 -205.88 
+     89 182.492 1056 0 1 31.4185 69.2758 -204.85 
+     89 294.224 1055 0 1 31.25 69.3256 -204.486 
+     89 51.27 1054 0 1 31.05 69.3494 -204.589 
+Number of digits in this event =  11
 Event: 90
-Number of tracker hits in this event =  28
-     90 164.491 899 5 0 -0.0536191 -0.0712774 -55.85 
-     90 155.541 899 4 1 -0.176892 0.0588971 -84.45 
-     90 109.094 900 4 0 -0.180215 0.0677193 -85.85 
-     90 199.658 899 3 1 -0.242879 0.261263 -114.45 
-     90 116.197 901 3 0 -0.255064 0.256987 -115.85 
-     90 489.244 897 2 1 -0.528069 0.156023 -144.45 
-     90 311.314 900 2 0 -0.536539 0.156139 -145.85 
-     90 549.514 896 1 1 -0.665823 0.228477 -174.45 
-     90 396.35 900 1 0 -0.678734 0.229582 -175.85 
-     90 121.617 895 0 1 -0.930841 0.261718 -204.45 
-     90 151.828 901 0 0 -0.946197 0.264079 -205.85 
-     90 311.768 878 1 1 -4.31581 0.138877 -174.45 
-     90 5.73241 877 1 1 -4.45 0.09914 -174.825 
-     90 253.041 822 0 1 -15.4539 -2.311 -204.45 
-     90 101.03 889 0 0 -15.5465 -2.22113 -205.85 
-     90 309.21 898 0 1 -0.258941 0.310719 -204.45 
-     90 113.268 902 0 0 -0.481489 0.485392 -205.85 
-     90 111.684 899 2 0 -0.645345 -0.11872 -145.85 
-     90 96.7256 888 1 1 -2.40347 -4.63057 -174.45 
-     90 124.966 877 1 0 -2.19297 -4.60878 -175.85 
-     90 117.213 907 0 1 1.54201 -3.68386 -204.45 
-     90 58.0012 908 0 1 1.65 -3.54756 -204.672 
-     90 144.98 886 0 0 2.26103 -2.8418 -205.85 
-     90 36.0144 887 0 0 2.42759 -2.65 -206.172 
-     90 150.862 903 0 0 -0.283917 0.720812 -205.85 
-     90 48.1339 883 0 1 -3.28443 -9.48214 -204.788 
-     90 85.4143 266 2 1 -126.809 20.8157 -144.769 
-     90 239.905 267 2 1 -126.75 20.7445 -144.662 
-Number of digits in this event =  17
+Number of tracker hits in this event =  12
+     90 104.993 899 5 1 -0.0771786 0.171515 -54.45 
+     90 105.534 900 5 0 -0.0823012 0.174816 -55.85 
+     90 147.39 899 4 1 -0.186859 0.197905 -84.45 
+     90 352.497 900 4 0 -0.20341 0.204884 -85.85 
+     90 164.227 897 3 1 -0.562837 0.357486 -114.45 
+     90 180.008 901 3 0 -0.592805 0.361263 -115.85 
+     90 126.685 894 2 1 -1.13718 0.400793 -144.45 
+     90 112.756 901 2 0 -1.16221 0.403751 -145.85 
+     90 111.267 891 1 1 -1.65354 0.478838 -174.45 
+     90 122.129 902 1 0 -1.6706 0.492218 -175.85 
+     90 209.791 890 0 1 -2.01794 0.769639 -204.45 
+     90 178.446 903 0 0 -2.04024 0.785769 -205.85 
+Number of digits in this event =  9
 Event: 91
-Number of tracker hits in this event =  59
-     91 113.255 900 5 1 0.117314 -0.127623 -54.45 
-     91 120.77 899 5 0 0.118689 -0.135912 -55.85 
-     91 127.702 900 4 1 0.155829 -0.288277 -84.45 
-     91 119.458 898 4 0 0.148191 -0.304833 -85.85 
-     91 113.789 899 3 1 -0.0536794 -0.645243 -114.45 
-     91 119.989 896 3 0 -0.0626546 -0.657373 -115.85 
-     91 537.636 899 2 1 -0.246815 -0.884085 -144.45 
-     91 18.2891 898 2 1 -0.25 -0.885424 -144.788 
-     91 496.269 895 2 0 -0.259569 -0.890482 -145.85 
-     91 141.41 897 1 1 -0.486619 -1.01868 -174.45 
-     91 324.81 895 1 0 -0.504485 -1.02471 -175.85 
-     91 126.022 895 0 1 -0.875064 -1.1497 -204.45 
-     91 205.644 894 0 0 -0.886784 -1.14745 -205.85 
-     91 118.573 979 0 0 -17.4688 15.9082 -206.25 
-     91 3.29142 980 0 0 -17.6082 16.05 -205.86 
-     91 23.9859 811 0 1 -17.8354 16.5384 -204.85 
-     91 119.504 810 0 1 -17.85 16.5698 -204.785 
-     91 134.4 963 1 0 -20.3601 12.81 -176.25 
-     91 222.335 799 1 1 -20.13 12.9796 -174.85 
-     91 29.9438 800 1 1 -20.05 13.0223 -174.539 
-     91 37.0181 970 1 0 -19.3177 14.1886 -175.85 
-     91 106.057 971 1 0 -19.271 14.25 -175.911 
-     91 87.8519 972 1 0 -19.1698 14.45 -176.114 
-     91 29.792 996 1 0 48.9272 19.2741 -176.25 
-     91 24.5341 995 1 0 49.0246 19.25 -176.223 
-     91 100.168 188 1 0 91.7001 -142.358 -176.25 
-     91 344.183 187 1 0 91.8382 -142.55 -176.104 
-     91 240.017 186 1 0 91.8376 -142.75 -176.086 
-     91 119.287 898 1 1 -0.388245 -0.88805 -174.45 
-     91 112.706 873 0 1 -5.27482 -3.57398 -204.45 
-     91 134.508 882 0 0 -5.51258 -3.57542 -205.85 
-     91 149.469 893 2 0 0.518636 -1.37892 -145.85 
-     91 87.7797 894 2 0 0.848664 -1.25 -146.133 
-     91 67.1806 837 0 1 -12.5683 2.95233 -204.45 
-     91 124.658 836 0 1 -12.65 2.9794 -204.572 
-     91 55.3528 915 0 0 -13.4515 3.22197 -205.85 
-     91 87.204 916 0 0 -13.5517 3.25 -206.012 
-     91 11.3464 894 1 1 -1.19522 -0.05 -174.812 
-     91 147.25 897 1 0 -2.05124 -0.45362 -175.85 
-     91 18.2187 1102 1 0 -9.74757 40.6274 -176.25 
-     91 244.567 1103 1 0 -9.74028 40.65 -176.237 
-     91 78.5615 1104 1 0 -9.64873 40.85 -176.12 
-     91 67.2896 1105 1 0 -9.54142 41.05 -175.954 
-     91 91.9541 856 1 1 -8.76472 42.274 -174.85 
-     91 82.4313 857 1 1 -8.65 42.5919 -174.629 
-     91 130.505 1065 1 0 4.2146 33.0829 -176.25 
-     91 73.2613 924 1 1 4.9605 34.3752 -174.85 
-     91 102.207 925 1 1 5.05 34.5734 -174.675 
-     91 126.653 1165 2 0 -35.0559 53.1136 -146.25 
-     91 190.916 1166 2 0 -35.3581 53.25 -146.04 
-     91 135.444 1167 2 0 -35.8947 53.45 -145.855 
-     91 88.5015 1168 2 0 -36.3983 53.65 -145.995 
-     91 97.2682 1169 2 0 -36.6469 53.85 -146.053 
-     91 110.924 1170 2 0 -36.9441 54.05 -146.193 
-     91 121.687 1405 2 0 -106.74 101.245 -146.25 
-     91 66.5474 360 2 1 -107.972 101.13 -144.85 
-     91 80.8137 359 2 1 -108.15 101.141 -144.706 
-     91 72.3192 358 2 1 -108.35 101.246 -144.497 
-     91 38.551 357 2 1 -108.55 101.315 -144.47 
-Number of digits in this event =  24
+Number of tracker hits in this event =  10
+     91 124.595 900 4 1 0.221901 -0.0949848 -84.45 
+     91 134.476 899 4 0 0.226893 -0.0962277 -85.85 
+     91 114.114 901 3 1 0.383473 -0.106375 -114.45 
+     91 170.436 899 3 0 0.388186 -0.106713 -115.85 
+     91 150.915 901 2 1 0.43882 -0.114225 -144.45 
+     91 281.581 899 2 0 0.440075 -0.10676 -145.85 
+     91 122.284 902 1 1 0.450403 0.0734125 -174.45 
+     91 135.344 900 1 0 0.458476 0.0734802 -175.85 
+     91 90.1897 902 0 1 0.615052 0.0651846 -204.45 
+     91 109.01 900 0 0 0.62934 0.0623012 -205.85 
+Number of digits in this event =  10
 Event: 92
-Number of tracker hits in this event =  20
-     92 286.847 900 5 1 0.172741 -0.0680195 -54.45 
-     92 143.739 899 5 0 0.17854 -0.0765697 -55.85 
-     92 121.983 901 4 1 0.282183 -0.252283 -84.45 
-     92 114.891 898 4 0 0.288331 -0.2555 -85.85 
-     92 116.79 901 3 1 0.429183 -0.32522 -114.45 
-     92 147.602 898 3 0 0.434326 -0.32184 -115.85 
-     92 120.872 902 2 1 0.545027 -0.239522 -144.45 
-     92 195.162 899 2 0 0.535538 -0.236164 -145.85 
-     92 124.401 901 1 1 0.330007 -0.146641 -174.45 
-     92 151.044 899 1 0 0.321394 -0.150007 -175.85 
-     92 125.063 900 0 1 0.199283 -0.250166 -204.45 
-     92 128.516 898 0 0 0.198966 -0.257365 -205.85 
-     92 74.6195 337 3 1 -112.55 163.132 -114.45 
-     92 72.59 226 5 0 158.653 -134.893 -56.25 
-     92 120.824 225 5 0 158.679 -134.95 -56.0936 
-     92 53.3593 224 5 0 158.618 -135.15 -55.8904 
-     92 93.4852 223 5 0 158.617 -135.35 -55.8927 
-     92 67.7661 222 5 0 158.613 -135.55 -55.8789 
-     92 90.0212 221 5 0 158.572 -135.75 -55.9774 
-     92 77.5059 1616 7 0 70.5758 143.541 3.90369 
-Number of digits in this event =  13
+Number of tracker hits in this event =  9
+     92 199.564 899 4 1 -0.120826 0.0670698 -84.45 
+     92 132.611 900 4 0 -0.129758 0.0632362 -85.85 
+     92 119.152 898 2 1 -0.369199 -0.218065 -144.45 
+     92 128.511 899 2 0 -0.37614 -0.214906 -145.85 
+     92 123.114 897 1 1 -0.503866 -0.147229 -174.45 
+     92 106.976 899 1 0 -0.509569 -0.139852 -175.85 
+     92 154.25 897 0 1 -0.606966 0.0576255 -204.45 
+     92 142.348 900 0 0 -0.614816 0.0680059 -205.85 
+     92 13.2216 899 3 1 -0.163772 0.12369 -114.666 
+Number of digits in this event =  8
 Event: 93
-Number of tracker hits in this event =  28
-     93 244.312 900 4 1 0.078761 0.385278 -84.45 
-     93 115.813 901 4 0 0.0757834 0.385499 -85.85 
-     93 322.16 899 2 1 -0.122492 0.324931 -144.45 
-     93 138.437 901 2 0 -0.126502 0.323795 -145.85 
-     93 140.555 899 1 1 -0.216655 0.291482 -174.45 
-     93 154.5 901 1 0 -0.221082 0.302308 -175.85 
-     93 133.53 898 0 1 -0.251775 0.62774 -204.45 
-     93 110.676 902 0 0 -0.250198 0.629967 -205.85 
-     93 12.0324 1262 1 0 -55.0582 72.6265 -176.25 
-     93 66.7717 1263 1 0 -55.0759 72.65 -176.241 
-     93 52.1439 1264 1 0 -55.2466 72.85 -176.223 
-     93 145.29 905 2 0 -0.178348 1.22027 -145.85 
-     93 139.733 897 1 1 -0.505844 1.34372 -174.45 
-     93 166.023 906 1 0 -0.517177 1.37285 -175.85 
-     93 131.831 896 0 1 -0.680065 2.53927 -204.45 
-     93 127.717 912 0 0 -0.662775 2.5814 -205.85 
-     93 20.9341 899 0 1 -0.119628 0.661236 -204.45 
-     93 170.669 900 0 1 0.05 0.73335 -204.527 
-     93 830.564 901 0 1 0.25 1.03917 -204.621 
-     93 468.904 902 0 1 0.45 1.3823 -204.596 
-     93 107.475 898 2 1 -0.395622 0.593997 -144.45 
-     93 110.482 902 2 0 -0.47808 0.600628 -145.85 
-     93 157.456 886 1 1 -2.68787 0.560779 -174.45 
-     93 148.045 902 1 0 -2.7737 0.544866 -175.85 
-     93 80.3442 878 0 1 -4.28578 -0.05 -204.464 
-     93 33.6493 877 0 1 -4.45 -0.148729 -204.749 
-     93 89.4516 897 0 0 -5.04061 -0.556031 -205.85 
-     93 41.609 896 0 0 -5.17939 -0.65 -206.107 
-Number of digits in this event =  18
+Number of tracker hits in this event =  12
+     93 122.117 900 5 1 0.151157 -0.100623 -54.45 
+     93 122.655 899 5 0 0.166385 -0.105909 -55.85 
+     93 140.988 902 4 1 0.463282 -0.185273 -84.45 
+     93 112.299 899 4 0 0.468784 -0.168994 -85.85 
+     93 154.622 902 3 1 0.578017 0.161383 -114.45 
+     93 143.39 900 3 0 0.58261 0.170442 -115.85 
+     93 122.977 903 2 1 0.706533 0.328677 -144.45 
+     93 136.983 901 2 0 0.706107 0.342462 -145.85 
+     93 119.168 903 1 1 0.800729 0.585195 -174.45 
+     93 186.025 902 1 0 0.809084 0.586425 -175.85 
+     93 135.634 904 0 1 1.03568 0.580244 -204.45 
+     93 110.705 902 0 0 1.05487 0.614546 -205.85 
+Number of digits in this event =  10
 Event: 94
-Number of tracker hits in this event =  15
-     94 141.702 899 5 0 0.0568872 -0.0951228 -55.85 
-     94 114.323 901 4 1 0.25547 -0.225157 -84.45 
-     94 120.983 899 4 0 0.267608 -0.223883 -85.85 
-     94 105.042 902 3 1 0.541147 -0.175735 -114.45 
-     94 238.576 899 3 0 0.557841 -0.175681 -115.85 
-     94 108.6 904 2 1 0.914099 -0.193834 -144.45 
-     94 100.58 899 2 0 0.924039 -0.198988 -145.85 
-     94 155.882 905 1 1 1.08016 -0.271885 -174.45 
-     94 117.549 898 1 0 1.08533 -0.271013 -175.85 
-     94 110.824 905 0 1 1.20687 -0.221233 -204.45 
-     94 121.33 899 0 0 1.20555 -0.217325 -205.85 
-     94 73.9597 930 0 0 12.6219 6.0592 -206.248 
-     94 40.5928 929 0 0 12.6434 6.05 -206.226 
-     94 110.807 1052 0 0 -65.3661 30.4808 -206.081 
-     94 206.398 1056 2 1 31.259 -57.8999 -144.79 
-Number of digits in this event =  9
+Number of tracker hits in this event =  29
+     94 112.705 902 3 1 0.600372 -0.213077 -114.45 
+     94 125.067 899 3 0 0.616574 -0.234435 -115.85 
+     94 191.66 904 2 1 0.954198 -0.6353 -144.45 
+     94 114.477 896 2 0 0.968752 -0.65515 -145.85 
+     94 110.627 906 1 1 1.2627 -1.05076 -174.45 
+     94 120.455 894 1 0 1.27577 -1.06926 -175.85 
+     94 212.822 907 0 1 1.56045 -1.43536 -204.45 
+     94 132.901 893 0 0 1.57095 -1.44658 -205.85 
+     94 83.644 900 3 1 0.20785 0.05 -114.536 
+     94 43.6688 901 3 1 0.25 0.0924135 -114.71 
+     94 104.471 900 3 0 0.4281 0.215795 -115.85 
+     94 6.58376 901 3 0 0.482761 0.25 -116.214 
+     94 292.354 918 2 1 3.83559 2.44173 -144.45 
+     94 17.6128 914 2 0 3.66296 3.01761 -145.85 
+     94 138.396 915 2 0 3.65325 3.05 -145.924 
+     94 136.522 907 1 1 1.56256 18.5866 -174.45 
+     94 8.49478 908 1 1 1.65 18.7379 -174.816 
+     94 75.53 995 1 0 1.93609 19.1322 -175.85 
+     94 41.8646 996 1 0 1.99601 19.25 -176.133 
+     94 40.0756 966 0 1 13.386 35.1632 -204.45 
+     94 99.5063 967 0 1 13.45 35.2056 -204.541 
+     94 59.2052 968 0 1 13.65 35.2967 -204.78 
+     94 131.413 1079 0 0 14.9368 35.9214 -205.85 
+     94 76.47 1080 0 0 15.2024 36.05 -206.068 
+     94 120.475 899 3 1 -0.05 0.301755 -114.565 
+     94 91.2387 898 3 1 -0.25 0.470442 -114.475 
+     94 123.538 897 3 1 -0.45 0.318142 -114.611 
+     94 295.149 896 3 1 -0.65 -0.070569 -114.685 
+     94 210.281 895 3 1 -0.85 -0.583225 -114.495 
+Number of digits in this event =  14
 Event: 95
-Number of tracker hits in this event =  8
-     95 111.219 899 4 1 -0.0542031 0.208181 -84.45 
-     95 153.273 900 4 0 -0.0638753 0.206691 -85.85 
-     95 98.6855 898 3 1 -0.27208 0.171969 -114.45 
-     95 102.937 900 3 0 -0.291692 0.164368 -115.85 
-     95 121.354 893 1 1 -1.42301 -0.535426 -174.45 
-     95 123.997 897 1 0 -1.45078 -0.573151 -175.85 
-     95 143.103 890 0 1 -1.988 -1.33854 -204.45 
-     95 129.892 893 0 0 -2.01745 -1.3797 -205.85 
-Number of digits in this event =  6
+Number of tracker hits in this event =  45
+     95 122.083 900 5 1 0.244741 -0.0784306 -54.45 
+     95 122.914 899 5 0 0.246311 -0.0802573 -55.85 
+     95 105.076 901 4 1 0.27971 -0.0930451 -84.45 
+     95 112.07 899 4 0 0.288711 -0.0951861 -85.85 
+     95 147.294 901 3 1 0.443711 -0.146577 -114.45 
+     95 124.613 899 3 0 0.447409 -0.145671 -115.85 
+     95 128.099 902 2 1 0.531385 -0.163329 -144.45 
+     95 88.6093 899 2 0 0.534798 -0.154609 -145.85 
+     95 177.009 902 0 1 0.594814 0.0645801 -204.45 
+     95 124.082 900 0 0 0.592292 0.0656761 -205.85 
+     95 181.056 489 3 0 -158.738 -82.208 -116.25 
+     95 134.737 488 3 0 -158.777 -82.25 -116.154 
+     95 0.0303591 107 3 1 -158.55 -82.3971 -114.85 
+     95 261.482 108 3 1 -158.55 -82.3971 -114.85 
+     95 123.956 109 3 1 -158.35 -82.3706 -114.662 
+     95 171.78 890 0 0 7.80436 -1.87734 -206.25 
+     95 128.703 942 0 1 8.45013 -2.12951 -204.85 
+     95 33.4517 1223 1 0 71.9136 64.7472 -176.25 
+     95 78.8504 1224 1 0 72.0104 64.85 -176.207 
+     95 92.8355 1225 1 0 72.2347 65.05 -176.089 
+     95 204.478 1226 1 0 72.3303 65.25 -176.009 
+     95 168.784 1227 1 0 72.4083 65.45 -175.908 
+     95 327.183 1263 1 1 72.774 66.763 -174.85 
+     95 53.3332 1264 1 1 72.85 67.0341 -174.625 
+     95 37.5136 1228 1 0 72.6416 65.65 -175.888 
+     95 56.647 1272 1 1 74.4949 65.995 -174.85 
+     95 32.7394 1205 1 0 75.4028 61.2408 -175.85 
+     95 19.7621 1268 1 1 73.7793 60.646 -174.85 
+     95 65.7224 1209 1 0 73.0838 62.0004 -175.85 
+     95 20.1686 727 0 0 20.1149 -34.5654 -206.25 
+     95 99.5082 726 0 0 20.1538 -34.65 -206.213 
+     95 70.6699 725 0 0 20.2955 -34.85 -205.926 
+     95 17.405 1008 0 1 21.8 -35.392 -204.85 
+     95 320.109 1009 0 1 21.85 -35.4118 -204.816 
+     95 146.578 1010 0 1 22.05 -35.4558 -204.816 
+     95 65.6032 1011 0 1 22.25 -35.3267 -204.838 
+     95 106.82 724 0 0 22.9864 -35.05 -205.85 
+     95 58.9793 723 0 0 22.9152 -35.25 -205.91 
+     95 240.129 847 2 0 -1.31885 -10.5331 -146.25 
+     95 15.1564 848 2 0 -1.50397 -10.45 -146.182 
+     95 40.9757 391 2 0 -15.1015 -101.823 -146.25 
+     95 67.6563 672 2 0 -57.3116 -45.5354 -146.25 
+     95 87.2372 607 2 0 -106.086 -58.5104 -146.25 
+     95 91.7295 907 2 0 -75.3934 1.57187 -146.25 
+     95 70.0236 908 2 0 -75.3976 1.65 -146.159 
+Number of digits in this event =  20
 Event: 96
-Number of tracker hits in this event =  47
-     96 106.528 901 5 1 0.422593 0.235989 -54.45 
-     96 148.969 900 5 0 0.435215 0.217347 -55.85 
-     96 136.177 903 4 1 0.716838 0.183476 -84.45 
-     96 114.959 900 4 0 0.784676 0.155351 -85.85 
-     96 149.371 910 3 1 2.07979 -0.400935 -114.45 
-     96 361.059 898 3 0 2.19477 -0.438551 -115.85 
-     96 128.473 922 2 1 4.50461 -1.68049 -144.45 
-     96 121.426 891 2 0 4.62591 -1.74514 -145.85 
-     96 123.964 931 1 1 6.29804 -2.17452 -174.45 
-     96 118.032 889 1 0 6.12053 -2.0841 -175.85 
-     96 135.475 907 0 1 1.62557 0.0991255 -204.45 
-     96 22.1119 903 0 0 1.00319 0.825734 -205.85 
-     96 287.366 904 0 0 0.981492 0.85 -205.896 
-     96 169.001 909 3 1 2.05 -0.452531 -114.555 
-     96 5.50476 908 3 1 1.85 -0.900996 -114.848 
-     96 50.048 885 3 0 -2.18862 -2.97171 -115.85 
-     96 76.7243 884 3 0 -2.30635 -3.05 -115.856 
-     96 167.353 883 3 0 -2.36039 -3.25 -115.934 
-     96 86.7006 882 3 0 -2.2732 -3.45 -116.122 
-     96 122.52 881 3 0 -2.16404 -3.65 -116.137 
-     96 251.565 900 4 1 0.0958004 0.453245 -84.45 
-     96 103.668 902 4 0 0.0938568 0.461591 -85.85 
-     96 136.617 900 2 1 0.132833 1.01077 -144.45 
-     96 124.235 904 2 0 0.131585 1.01924 -145.85 
-     96 139.741 900 1 1 0.106795 1.1355 -174.45 
-     96 123.163 905 1 0 0.108269 1.13236 -175.85 
-     96 135.538 900 0 1 0.122817 1.01598 -204.45 
-     96 16.1954 901 4 1 0.25 0.380202 -84.8235 
-     96 178.2 901 4 0 0.278187 0.379861 -85.85 
-     96 127.955 904 3 1 0.969713 0.367256 -114.45 
-     96 103.175 901 3 0 1.06884 0.401276 -115.85 
-     96 27.5368 914 2 1 3.04186 1.24237 -144.45 
-     96 95.3761 915 2 1 3.05 1.25076 -144.551 
-     96 111.958 906 2 0 3.1644 1.35028 -145.85 
-     96 252.508 929 1 1 5.86969 3.37156 -174.45 
-     96 128.186 916 1 0 6.2043 3.4293 -175.85 
-     96 108.057 966 0 1 13.3024 3.63639 -204.45 
-     96 116.22 919 0 0 13.5535 3.88842 -205.85 
-     96 111.09 928 1 1 5.85 3.38164 -174.505 
-     96 85.9949 918 1 0 5.80466 3.75147 -175.85 
-     96 16.9936 919 1 0 5.80077 3.85 -176.177 
-     96 145.979 911 0 1 2.345 15.5309 -204.45 
-     96 288.063 912 0 1 2.45 15.8704 -204.721 
-     96 33.2093 993 0 0 3.08326 18.7345 -205.85 
-     96 49.0409 994 0 0 3.10947 18.85 -205.894 
-     96 87.0754 995 0 0 3.13161 19.05 -206.019 
-     96 40.0282 996 0 0 3.13722 19.25 -206.156 
-Number of digits in this event =  27
+Number of tracker hits in this event =  29
+     96 114.455 899 4 1 -0.0889985 -0.319757 -84.45 
+     96 513.751 898 4 0 -0.108654 -0.322528 -85.85 
+     96 110.909 897 3 1 -0.520259 -0.314411 -114.45 
+     96 110.179 898 3 0 -0.541404 -0.306499 -115.85 
+     96 136.648 895 2 1 -1.00202 -0.173669 -144.45 
+     96 97.2464 899 2 0 -1.01155 -0.171994 -145.85 
+     96 110.887 894 1 1 -1.12044 -0.174794 -174.45 
+     96 117.491 899 1 0 -1.12537 -0.186217 -175.85 
+     96 125.428 894 0 1 -1.23343 -0.411705 -204.45 
+     96 197.186 898 0 0 -1.24489 -0.415712 -205.85 
+     96 156.295 890 0 0 -20.0514 -1.88355 -206.25 
+     96 240.122 792 0 1 -21.46 -4.29898 -204.85 
+     96 69.0463 791 0 1 -21.65 -4.91424 -204.467 
+     96 140.723 790 0 1 -21.85 -5.02724 -204.476 
+     96 19.1279 884 0 0 -21.9122 -3.10275 -205.85 
+     96 177.541 885 0 0 -21.9045 -3.05 -205.897 
+     96 27.9573 886 0 0 -21.7737 -2.85 -206.174 
+     96 4.70904 893 1 1 -1.27085 -0.0598501 -174.45 
+     96 89.8469 903 3 1 0.714113 -1.37824 -114.45 
+     96 32.202 902 3 1 0.65 -1.41957 -114.745 
+     96 156.292 892 3 0 0.316293 -1.51901 -115.85 
+     96 41.3713 854 2 1 -9.18068 -4.52818 -144.45 
+     96 76.3728 853 2 1 -9.25 -4.5062 -144.499 
+     96 69.1411 852 2 1 -9.45 -4.4466 -144.633 
+     96 64.6977 851 2 1 -9.65 -4.38648 -144.774 
+     96 20.1374 880 2 0 -11.2158 -3.86671 -145.85 
+     96 203.043 881 2 0 -11.266 -3.85 -145.885 
+     96 326.021 949 1 0 -82.9416 9.92616 -176.224 
+     96 152.915 254 10 1 -129.195 -37.3209 95.4123 
+Number of digits in this event =  13
 Event: 97
-Number of tracker hits in this event =  46
-     97 155.522 901 4 1 0.434184 -0.121917 -84.45 
-     97 114.456 899 4 0 0.451041 -0.135951 -85.85 
-     97 133.171 903 3 1 0.807391 -0.458033 -114.45 
-     97 317.142 897 3 0 0.843257 -0.459479 -115.85 
-     97 258.202 906 2 1 1.4384 -0.100485 -144.45 
-     97 30.0768 907 2 1 1.45 -0.108493 -144.72 
-     97 241.032 899 2 0 1.48462 -0.146418 -145.85 
-     97 120.105 912 1 1 2.60435 -0.460494 -174.45 
-     97 300.569 897 1 0 2.7138 -0.590657 -175.85 
-     97 122.341 924 0 1 4.86364 -3.20887 -204.45 
-     97 106.93 883 0 0 4.82792 -3.38237 -205.85 
-     97 108.546 886 1 1 -2.69496 0.588866 -174.45 
-     97 120.297 903 1 0 -3.03148 0.682088 -175.85 
-     97 258.77 850 0 1 -10.0486 3.0768 -204.45 
-     97 27.8386 913 0 0 -9.723 2.68223 -205.85 
-     97 64.3028 912 0 0 -9.69889 2.65 -205.96 
-     97 119.621 896 3 0 0.898172 -0.65 -116.236 
-     97 42.6173 895 3 0 0.685993 -0.85 -116.177 
-     97 77.9941 739 2 1 -32.1601 -51.6248 -144.546 
-     97 131.787 738 2 1 -32.251 -51.7075 -144.45 
-     97 216.965 904 2 1 0.87889 -0.68897 -144.45 
-     97 258.651 896 2 0 0.859583 -0.736347 -145.85 
-     97 111.72 901 1 1 0.261633 -1.89284 -174.45 
-     97 14.7606 900 1 1 0.25 -1.91309 -174.812 
-     97 113.195 890 1 0 0.205661 -1.97742 -175.85 
-     97 187.508 895 0 1 -0.928264 -3.90383 -204.45 
-     97 95.5605 880 0 0 -1.10147 -4.02156 -205.85 
-     97 19.4899 879 0 0 -1.14429 -4.05 -206.192 
-     97 210.298 902 1 1 0.577502 -0.610061 -174.45 
-     97 264.493 896 1 0 0.616972 -0.65 -175.89 
-     97 116.65 907 0 1 1.53058 -1.83622 -204.45 
-     97 118.664 890 0 0 1.37387 -1.92922 -205.85 
-     97 159.839 897 0 1 -0.564819 -0.652604 -204.45 
-     97 120.941 896 0 0 -0.71159 -0.784293 -205.85 
-     97 70.2081 850 1 0 -50.1322 -9.91215 -175.983 
-     97 11.8032 643 1 1 -51.4142 -10.2883 -174.85 
-     97 93.0315 642 1 1 -51.45 -10.2972 -174.82 
-     97 86.6975 641 1 1 -51.65 -10.3482 -174.633 
-     97 155.299 640 1 1 -51.85 -10.2039 -174.532 
-     97 53.9003 639 1 1 -52.05 -10.2355 -174.51 
-     97 23.9492 931 1 0 -12.8531 6.31019 -175.903 
-     97 126.928 904 1 1 0.89368 -0.755823 -174.45 
-     97 135.996 902 0 1 0.594422 -1.2787 -204.45 
-     97 128.792 893 0 0 0.570607 -1.30877 -205.85 
-     97 60.209 635 0 1 -52.9684 -96.06 -204.608 
-     97 31.1535 634 0 1 -53.05 -96.2718 -204.526 
-Number of digits in this event =  24
+Number of tracker hits in this event =  33
+     97 140.349 899 5 1 -0.123768 0.178956 -54.45 
+     97 144.253 900 5 0 -0.134162 0.179666 -55.85 
+     97 120.733 898 4 1 -0.334785 0.149149 -84.45 
+     97 114.557 900 4 0 -0.347134 0.14543 -85.85 
+     97 291.919 897 3 1 -0.564633 0.0602582 -114.45 
+     97 126.505 900 3 0 -0.570963 0.0548035 -115.85 
+     97 135.184 896 2 1 -0.694177 -0.0790061 -144.45 
+     97 121.051 899 2 0 -0.693004 -0.102072 -145.85 
+     97 118.876 896 1 1 -0.669021 -0.582048 -174.45 
+     97 162.572 897 1 0 -0.673459 -0.601893 -175.85 
+     97 128.131 896 0 1 -0.702032 -0.997262 -204.45 
+     97 98.124 895 0 0 -0.716323 -1.00682 -205.85 
+     97 90.2506 904 3 0 -0.76822 0.873222 -115.85 
+     97 108.897 905 3 0 -0.827412 1.05 -116.155 
+     97 37.3723 1115 3 0 -14.4868 43.2167 -116.25 
+     97 76.3732 1116 3 0 -14.4916 43.25 -116.163 
+     97 5.43201 823 3 1 -15.4376 43.1432 -114.85 
+     97 83.2728 822 3 1 -15.45 43.1412 -114.835 
+     97 100.68 821 3 1 -15.65 43.1474 -114.544 
+     97 85.7598 820 3 1 -15.85 43.1013 -114.593 
+     97 189.816 1111 3 0 -15.9391 42.4139 -115.85 
+     97 48.0359 855 5 0 -90.15 -8.9989 -56.212 
+     97 147.782 854 5 0 -90.1857 -9.05 -56.1228 
+     97 184.365 853 5 0 -90.2903 -9.25 -56.016 
+     97 67.6578 1449 1 0 73.8295 110.009 -176.25 
+     97 120.132 1448 1 0 73.8069 109.95 -176.071 
+     97 127.891 1269 1 1 74.0047 109.286 -174.85 
+     97 143.014 1268 1 1 73.85 109.037 -174.73 
+     97 129.595 1267 1 1 73.65 108.97 -174.738 
+     97 72.8077 897 1 1 -0.502242 0.541249 -174.575 
+     97 21.4392 566 6 0 -110.548 -66.7898 -25.9616 
+     97 189.108 1337 5 0 -55.1663 87.5732 -56.1609 
+     97 150.149 1336 5 0 -55.4338 87.45 -56.0517 
+Number of digits in this event =  19
 Event: 98
-Number of tracker hits in this event =  19
-     98 131.628 899 4 1 -0.180578 0.196204 -84.45 
-     98 108.468 900 4 0 -0.190107 0.205125 -85.85 
-     98 109.603 898 3 1 -0.337487 0.351062 -114.45 
-     98 311.805 901 3 0 -0.339655 0.365787 -115.85 
-     98 124.559 898 2 1 -0.395802 0.674003 -144.45 
-     98 120.859 903 2 0 -0.39677 0.686564 -145.85 
-     98 139.613 898 1 1 -0.44495 0.925456 -174.45 
-     98 0.120039 897 1 1 -0.45 0.929652 -174.849 
-     98 135.48 904 1 0 -0.461337 0.941627 -175.85 
-     98 147.177 896 0 1 -0.751096 1.24168 -204.45 
-     98 146.688 906 0 0 -0.773334 1.26046 -205.85 
-     98 232.966 898 0 1 -0.390431 1.11251 -204.45 
-     98 325.707 905 0 0 -0.263133 1.1586 -205.85 
-     98 405.667 942 0 0 -8.70078 8.62712 -206.25 
-     98 6.71466 943 0 0 -9.26185 8.65 -206.226 
-     98 42.1933 1172 0 0 58.4399 54.4767 -205.987 
-     98 62.4862 1338 7 1 87.8088 -119.91 5.52108 
-     98 2.49499 1302 6 1 80.5388 -99.981 -24.8017 
-     98 12.735 888 0 0 -2.43334 -2.36651 -205.898 
-Number of digits in this event =  12
+Number of tracker hits in this event =  55
+     98 52.4895 900 4 1 0.198203 -0.05 -84.7453 
+     98 133.334 899 4 0 0.204055 -0.0519825 -85.85 
+     98 100.074 901 3 1 0.400715 -0.0974073 -114.45 
+     98 121.461 899 3 0 0.411319 -0.0969992 -115.85 
+     98 110.038 902 2 1 0.597438 -0.097156 -144.45 
+     98 91.6491 899 2 0 0.614829 -0.0945033 -145.85 
+     98 151.574 910 0 1 2.15561 -0.436274 -204.45 
+     98 116.971 898 0 0 2.21265 -0.439967 -205.85 
+     98 40.4846 905 5 0 -0.0561914 1.14199 -55.85 
+     98 99.0535 906 5 0 -0.0611105 1.25 -55.9767 
+     98 7.37631 907 5 0 -0.0684281 1.45 -56.2304 
+     98 131.691 1008 5 0 10.456 21.7574 -56.25 
+     98 5.70702 952 5 1 10.6481 21.6227 -54.85 
+     98 110.99 953 5 1 10.65 21.6205 -54.8322 
+     98 182.441 1063 6 0 -18.4873 32.6738 -26.25 
+     98 122.882 803 6 1 -19.2563 32.8924 -24.85 
+     98 60.5336 802 6 1 -19.5606 32.9141 -24.45 
+     98 86.7849 801 6 1 -19.65 32.8712 -24.5103 
+     98 172.657 800 6 1 -19.85 32.8722 -24.6504 
+     98 93.0663 799 6 1 -20.05 33.2416 -24.676 
+     98 330.294 1070 6 0 -20.934 34.1313 -25.85 
+     98 122.392 1238 0 0 -33.7014 67.6752 -206.25 
+     98 126.898 1239 0 0 -33.8087 67.85 -206.104 
+     98 90.0684 1240 0 0 -33.7505 68.05 -205.932 
+     98 223.538 736 0 1 -32.7972 76.7868 -204.85 
+     98 44.1461 735 0 1 -32.85 76.9103 -204.769 
+     98 97.5003 896 4 1 -0.740684 -0.34469 -84.45 
+     98 92.7885 898 4 0 -0.780074 -0.322421 -85.85 
+     98 262.644 886 3 1 -2.73917 -3.25351 -114.45 
+     98 141.613 882 3 0 -2.47086 -3.51723 -115.85 
+     98 140.262 928 2 1 5.68492 -8.89118 -144.45 
+     98 52.5652 850 2 0 5.54771 -9.92633 -145.85 
+     98 92.1886 849 2 0 5.52965 -10.05 -146.018 
+     98 71.615 949 1 1 9.91146 -23.5246 -174.45 
+     98 88.9927 948 1 1 9.85 -23.6893 -174.638 
+     98 32.0309 776 1 0 9.52236 -24.7907 -175.85 
+     98 76.6167 775 1 0 9.50673 -24.85 -175.915 
+     98 41.7534 774 1 0 9.47731 -25.05 -176.126 
+     98 125.252 634 1 0 6.25174 -53.1906 -176.25 
+     98 50.669 930 1 1 6.0732 -53.1121 -174.85 
+     98 223.164 929 1 1 6.05 -53.104 -174.739 
+     98 107.373 928 1 1 5.85 -52.952 -174.624 
+     98 143.165 633 1 0 5.7654 -53.2809 -175.85 
+     98 290.104 900 1 1 0.174354 0.180697 -174.45 
+     98 82.3005 900 1 0 0.275635 0.0726972 -175.85 
+     98 113.537 891 0 1 -1.79514 -2.57895 -204.45 
+     98 109.02 886 0 0 -1.95611 -2.68684 -205.85 
+     98 18.0409 639 8 0 153.388 -52.2314 33.7942 
+     98 97.8922 638 8 0 153.407 -52.25 33.8497 
+     98 61.6596 637 8 0 153.395 -52.45 34.0787 
+     98 12.8342 1652 8 1 150.719 -57.3934 35.15 
+     98 22.235 602 8 0 149.171 -59.5926 34.15 
+     98 184.447 601 8 0 149.131 -59.65 34.1234 
+     98 0.749768 1631 8 1 146.353 -59.0215 35.15 
+     98 222.975 1630 8 1 146.35 -59.0206 35.1514 
+Number of digits in this event =  21
 Event: 99
-Number of tracker hits in this event =  18
-     99 143.66 900 5 1 0.0641697 -0.140713 -54.45 
-     99 118.026 899 5 0 0.0744356 -0.148672 -55.85 
-     99 123.184 901 4 1 0.298932 -0.37443 -84.45 
-     99 111.748 898 4 0 0.312782 -0.389891 -85.85 
-     99 117.944 902 3 1 0.643505 -0.709894 -114.45 
-     99 196.03 896 3 0 0.66366 -0.718606 -115.85 
-     99 4.16225 904 2 1 1.04981 -0.922175 -144.45 
-     99 120.837 905 2 1 1.05 -0.922244 -144.462 
-     99 142.477 895 2 0 1.07134 -0.931157 -145.85 
-     99 135.404 907 1 1 1.48362 -1.13522 -174.45 
-     99 117.636 894 1 0 1.50809 -1.14072 -175.85 
-     99 121.524 909 0 1 1.97203 -1.20211 -204.45 
-     99 311.713 894 0 0 1.99172 -1.20329 -205.85 
-     99 119.933 901 5 1 0.25 -0.232662 -54.6543 
-     99 29.5334 896 5 0 1.8896 -0.772128 -55.85 
-     99 238.145 895 5 0 1.94359 -0.85 -55.8654 
-     99 92.3017 894 5 0 2.04769 -1.05 -55.9838 
-     99 149.355 1084 7 0 -139.357 36.9366 3.79885 
-Number of digits in this event =  12
+Number of tracker hits in this event =  33
+     99 128.375 899 5 1 -0.219098 0.0970519 -54.45 
+     99 145.324 900 5 0 -0.23166 0.096119 -55.85 
+     99 121.909 896 4 1 -0.785677 0.133728 -84.45 
+     99 154.12 900 4 0 -0.880922 0.101475 -85.85 
+     99 145.469 887 3 1 -2.55969 -0.697211 -114.45 
+     99 134.145 896 3 0 -2.75671 -0.689955 -115.85 
+     99 126.464 867 2 1 -6.46168 -0.299559 -144.45 
+     99 108.592 898 2 0 -6.6795 -0.326704 -145.85 
+     99 130.92 845 1 1 -10.964 -1.20411 -174.45 
+     99 112.293 893 1 0 -11.2364 -1.31936 -175.85 
+     99 74.9796 816 0 1 -16.8031 -3.93059 -204.45 
+     99 60.6955 815 0 1 -16.85 -3.9462 -204.639 
+     99 88.8426 879 0 0 -17.1392 -4.05624 -205.85 
+     99 336.259 902 3 1 0.596645 0.221016 -114.45 
+     99 296.194 900 3 0 0.626357 0.163852 -115.85 
+     99 138.764 907 2 1 1.49921 -1.03404 -144.45 
+     99 114.307 894 2 0 1.48114 -1.05861 -145.85 
+     99 120.114 905 1 1 1.08522 -1.58304 -174.45 
+     99 139.867 892 1 0 1.0797 -1.62935 -175.85 
+     99 131.437 901 0 1 0.333731 -2.59015 -204.45 
+     99 111.715 887 0 0 0.403713 -2.59441 -205.85 
+     99 73.5529 896 2 1 -0.831969 -0.228936 -144.45 
+     99 37.0031 895 2 1 -0.85 -0.216429 -144.746 
+     99 160.481 899 2 0 -0.89881 -0.169951 -145.85 
+     99 119.662 890 1 1 -2.01467 0.628446 -174.45 
+     99 107.729 903 1 0 -2.11628 0.653039 -175.85 
+     99 99.7519 879 0 1 -4.12711 1.11546 -204.45 
+     99 216.231 905 0 0 -4.2818 1.13822 -205.85 
+     99 66.2843 413 0 0 73.3438 -97.423 -205.92 
+     99 58.8956 1585 1 1 137.229 -83.6769 -174.843 
+     99 26.5519 479 1 0 134.322 -84.2181 -175.85 
+     99 95.3561 1544 1 1 129.061 -83.9236 -174.85 
+     99 68.7698 668 6 1 -46.3086 -123.857 -24.5991 
+Number of digits in this event =  18
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=4.2s Real=4.23s Sys=0.01s
+  User=2.86s Real=3.05s Sys=0.01s
 End of Run 2
 Graphics systems deleted.
 Visualization Manager deleting...
diff --git a/examples/advanced/hadrontherapy/hadrontherapy.out b/examples/advanced/hadrontherapy/hadrontherapy.out
index 320e788613b..4385041897f 100644
--- a/examples/advanced/hadrontherapy/hadrontherapy.out
+++ b/examples/advanced/hadrontherapy/hadrontherapy.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -650,7 +650,7 @@ Run 0 starts ...
  Run terminated.
 Run Summary
   Number of events processed : 500
-  User=3.91s Real=3.93s Sys=0.03s
+  User=3.21s Real=3.85s Sys=0.03s
 Dose is being written to Dose.out
 Graphics systems deleted.
 Visualization Manager deleting...
diff --git a/examples/advanced/human_phantom/human_phantom.out b/examples/advanced/human_phantom/human_phantom.out
index f01b70cfb85..3634a2588e8 100644
--- a/examples/advanced/human_phantom/human_phantom.out
+++ b/examples/advanced/human_phantom/human_phantom.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -366,7 +366,6 @@ Mass of RightTeste = 18.5406 g
 ### Radiation field defined
 ### by means of GPS 
 /gps/verbose 0
-Verbosity Set to: 0
 /gps/particle e-
 /gps/energy 1 MeV
 #
diff --git a/examples/advanced/lAr_calorimeter/lAr_calorimeter.out b/examples/advanced/lAr_calorimeter/lAr_calorimeter.out
index 026e7733dd6..d459f62dfcf 100644
--- a/examples/advanced/lAr_calorimeter/lAr_calorimeter.out
+++ b/examples/advanced/lAr_calorimeter/lAr_calorimeter.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -850,13 +850,13 @@ Start closing geometry.
 G4GeometryManager::ReportVoxelStats -- Voxel Statistics
 
     Total memory consumed for geometry optimisation:   389 kByte
-    Total CPU time elapsed for geometry optimisation: 0.62 seconds
+    Total CPU time elapsed for geometry optimisation: 0.37 seconds
 
     Voxelisation: top CPU users:
     Percent   Total CPU    System CPU       Memory  Volume
     -------   ----------   ----------     --------  ----------
-      85.48         0.53         0.00          148k EmModuleLogical
-      14.52         0.09         0.00          236k HadModuleLogical
+      83.78         0.31         0.00          148k EmModuleLogical
+      16.22         0.06         0.01          236k 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
@@ -867,8 +867,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
     Voxelisation: top memory users:
     Percent     Memory      Heads    Nodes   Pointers    Total CPU    Volume
     -------   --------     ------   ------   --------   ----------    ----------
-      60.56        235k      1361     2360       3772         0.09    HadModuleLogical
-      38.11        148k      1077     1143       2440         0.53    EmModuleLogical
+      60.56        235k      1361     2360       3772         0.06    HadModuleLogical
+      38.11        148k      1077     1143       2440         0.31    EmModuleLogical
        0.94          3k         8       42        146         0.00    Mother
        0.11          0k         1        6          8         0.00    SolidWLogical
        0.11          0k         1        6          8         0.00    CuPlateLogical
@@ -884,390 +884,390 @@ Read 2001 events from file data-tracks/tracks-20GeV.dat
 ---> Begin of event: 1
  ****  Primary : 1
  Vertex : (5.55552,7.16569,32740)
-Number of F1 Tiles with Positive energy : 48
-Number of F2 tiles with Positive energy : 0
+Number of F1 Tiles with Positive energy : 44
+Number of F2 tiles with Positive energy : 1
  Visisble Energy in S1 , S2 , S3 in (MeV)
-3.7309 2.06742 2.10751 
+3.7309 1.62166 1.62899 
  Visible Energy in Hole Counter  (MeV) 
-0 0.884729
+0 0
  Visible Energy in Upstream Dead Materials 
-283.064
+3.93089
  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 11
-N Scondaries 145
-EmEdep is=19420.2 MeV 
-HadEdep is=0 MeV
-Edep in FCAL1 FCAl2 : 19420.2 0
+N Tracks out of world 0
+N Scondaries 182
+EmEdep is=19863 MeV 
+HadEdep is=5.8588 MeV
+Edep in FCAL1 FCAl2 : 19863 5.8588
  ****  Primary : 2
  Vertex : (-3.76032,10.9751,32740)
-Number of F1 Tiles with Positive energy : 44
+Number of F1 Tiles with Positive energy : 47
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-3.03286 2.3815 4.53795 
+1.81871 1.6427 2.05847 
  Visible Energy in Hole Counter  (MeV) 
-0 0
+0 87.7463
  Visible Energy in Upstream Dead Materials 
-9.29565
+1317.05
  Visible Energy in Tail Catcher Scintillator
-0 0 0 0 0 0 0 
+0.000529877 0 0 0 0 0 0 
  Visible Energy in Tail Catcher Absorber
-0 0 0 0 0 0 
-N Tracks out of world 4
-N Scondaries 83
-EmEdep is=19789.6 MeV 
-HadEdep is=0 MeV
-Edep in FCAL1 FCAl2 : 19789.6 0
+0.00624725 0 0 0 0 0 
+N Tracks out of world 45
+N Scondaries 126
+EmEdep is=17549.2 MeV 
+HadEdep is=10.3741 MeV
+Edep in FCAL1 FCAl2 : 17549.2 10.3741
  ****  Primary : 3
  Vertex : (13.1951,2.677,32740)
-Number of F1 Tiles with Positive energy : 44
+Number of F1 Tiles with Positive energy : 49
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.63391 1.5747 1.864 
+1.82622 2.54817 1.78306 
  Visible Energy in Hole Counter  (MeV) 
 0 0
  Visible Energy in Upstream Dead Materials 
-4.41936
+2.59957
  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 Scondaries 310
-EmEdep is=19762.5 MeV 
-HadEdep is=0.505231 MeV
-Edep in FCAL1 FCAl2 : 19762.5 0.505231
+N Tracks out of world 4
+N Scondaries 167
+EmEdep is=19670.9 MeV 
+HadEdep is=1.34452 MeV
+Edep in FCAL1 FCAl2 : 19670.9 1.34452
  ****  Primary : 4
  Vertex : (-8.66148,-8.80731,32740)
-Number of F1 Tiles with Positive energy : 44
+Number of F1 Tiles with Positive energy : 42
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.7233 1.78945 2.32219 
+1.91798 1.65813 1.48528 
  Visible Energy in Hole Counter  (MeV) 
-0 3.49074
+0 0
  Visible Energy in Upstream Dead Materials 
-9.37034
+10.8422
  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 Scondaries 273
-EmEdep is=19748.4 MeV 
-HadEdep is=0 MeV
-Edep in FCAL1 FCAl2 : 19748.4 0
+N Tracks out of world 1
+N Scondaries 241
+EmEdep is=19806.3 MeV 
+HadEdep is=7.58077 MeV
+Edep in FCAL1 FCAl2 : 19806.3 7.58077
  ****  Primary : 5
  Vertex : (4.75859,7.01622,32740)
-Number of F1 Tiles with Positive energy : 46
+Number of F1 Tiles with Positive energy : 41
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.74175 1.80705 2.24025 
+1.66733 1.59843 1.67998 
  Visible Energy in Hole Counter  (MeV) 
 0 0
  Visible Energy in Upstream Dead Materials 
-18.9456
+1.49257
  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 Scondaries 177
-EmEdep is=19723.1 MeV 
-HadEdep is=0.663327 MeV
-Edep in FCAL1 FCAl2 : 19723.1 0.663327
+N Tracks out of world 0
+N Scondaries 195
+EmEdep is=19914.4 MeV 
+HadEdep is=0.510999 MeV
+Edep in FCAL1 FCAl2 : 19914.4 0.510999
  ****  Primary : 6
  Vertex : (1.94335,14.9228,32740)
-Number of F1 Tiles with Positive energy : 60
+Number of F1 Tiles with Positive energy : 52
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.76486 2.97445 1.71805 
+1.97681 1.95467 2.33744 
  Visible Energy in Hole Counter  (MeV) 
-0 95.3471
+0 0
  Visible Energy in Upstream Dead Materials 
-2287.48
+22.6587
  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 49
-N Scondaries 270
-EmEdep is=16372.6 MeV 
-HadEdep is=3.76634 MeV
-Edep in FCAL1 FCAl2 : 16372.6 3.76634
+N Tracks out of world 1
+N Scondaries 129
+EmEdep is=19870.4 MeV 
+HadEdep is=1.18044 MeV
+Edep in FCAL1 FCAl2 : 19870.4 1.18044
  ****  Primary : 7
  Vertex : (-10.9878,-6.7949,32740)
-Number of F1 Tiles with Positive energy : 41
+Number of F1 Tiles with Positive energy : 32
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.64959 1.74479 1.82303 
+1.80891 1.59661 1.80205 
  Visible Energy in Hole Counter  (MeV) 
-0 4.92515
+0 0
  Visible Energy in Upstream Dead Materials 
-51.5866
+10.8865
  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 7
-N Scondaries 217
-EmEdep is=19801.6 MeV 
+N Tracks out of world 1
+N Scondaries 156
+EmEdep is=19802.6 MeV 
 HadEdep is=0 MeV
-Edep in FCAL1 FCAl2 : 19801.6 0
+Edep in FCAL1 FCAl2 : 19802.6 0
  ****  Primary : 8
  Vertex : (10.9757,-1.49585,32740)
-Number of F1 Tiles with Positive energy : 50
+Number of F1 Tiles with Positive energy : 39
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.81681 1.78953 1.9823 
+1.92917 1.72309 1.5111 
  Visible Energy in Hole Counter  (MeV) 
 0 0
  Visible Energy in Upstream Dead Materials 
-7.24666
+1099.28
  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 4
-N Scondaries 152
-EmEdep is=19607.3 MeV 
-HadEdep is=0 MeV
-Edep in FCAL1 FCAl2 : 19607.3 0
+N Tracks out of world 11
+N Scondaries 69
+EmEdep is=18802.8 MeV 
+HadEdep is=5.74918 MeV
+Edep in FCAL1 FCAl2 : 18802.8 5.74918
  ****  Primary : 9
  Vertex : (-27.7734,3.36444,32740)
-Number of F1 Tiles with Positive energy : 64
+Number of F1 Tiles with Positive energy : 61
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.96206 1.61788 1.61142 
+1.99192 1.70688 1.69646 
  Visible Energy in Hole Counter  (MeV) 
-0 102.199
+0 86.0432
  Visible Energy in Upstream Dead Materials 
-4975.9
+4214.9
  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 152
-N Scondaries 155
-EmEdep is=12577.8 MeV 
-HadEdep is=0.0951047 MeV
-Edep in FCAL1 FCAl2 : 12577.8 0.0951047
+N Tracks out of world 109
+N Scondaries 274
+EmEdep is=13475.4 MeV 
+HadEdep is=1.30294 MeV
+Edep in FCAL1 FCAl2 : 13475.4 1.30294
  ****  Primary : 10
  Vertex : (-22.5474,4.1006,32740)
 Number of F1 Tiles with Positive energy : 45
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.58231 1.83755 1.79221 
+2.36005 1.87006 1.53765 
  Visible Energy in Hole Counter  (MeV) 
 0 0
  Visible Energy in Upstream Dead Materials 
-24.5656
+15.0691
  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 Scondaries 260
-EmEdep is=19809.3 MeV 
-HadEdep is=16.687 MeV
-Edep in FCAL1 FCAl2 : 19809.3 16.687
+N Tracks out of world 1
+N Scondaries 183
+EmEdep is=19781.8 MeV 
+HadEdep is=1.13571 MeV
+Edep in FCAL1 FCAl2 : 19781.8 1.13571
 
 ---> Begin of event: 11
  ****  Primary : 11
  Vertex : (-6.31939,21.5056,32740)
-Number of F1 Tiles with Positive energy : 43
+Number of F1 Tiles with Positive energy : 45
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.64059 1.64764 1.8068 
+1.89118 1.62114 1.85557 
  Visible Energy in Hole Counter  (MeV) 
-0 0
+0 6.48582
  Visible Energy in Upstream Dead Materials 
-4.60942
+8.35166
  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 Scondaries 144
-EmEdep is=19709 MeV 
-HadEdep is=8.27908 MeV
-Edep in FCAL1 FCAl2 : 19709 8.27908
+N Tracks out of world 1
+N Scondaries 297
+EmEdep is=19854.6 MeV 
+HadEdep is=0 MeV
+Edep in FCAL1 FCAl2 : 19854.6 0
  ****  Primary : 12
  Vertex : (17.1015,6.30557,32740)
-Number of F1 Tiles with Positive energy : 40
+Number of F1 Tiles with Positive energy : 45
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.54846 1.58267 2.86356 
+1.84415 1.50968 1.65581 
  Visible Energy in Hole Counter  (MeV) 
 0 0
  Visible Energy in Upstream Dead Materials 
-42.4734
+3.02644
  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 5
-N Scondaries 254
-EmEdep is=19858.3 MeV 
-HadEdep is=0.309996 MeV
-Edep in FCAL1 FCAl2 : 19858.3 0.309996
+N Scondaries 169
+EmEdep is=19801.4 MeV 
+HadEdep is=0 MeV
+Edep in FCAL1 FCAl2 : 19801.4 0
  ****  Primary : 13
  Vertex : (-24.9484,11.8659,32740)
-Number of F1 Tiles with Positive energy : 25
+Number of F1 Tiles with Positive energy : 49
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.5765 1.65853 1.65181 
+4.00833 1.61321 2.08711 
  Visible Energy in Hole Counter  (MeV) 
-0 78.9321
+0 23.6815
  Visible Energy in Upstream Dead Materials 
-18436.8
+16317.7
  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 151
-N Scondaries 136
-EmEdep is=789.409 MeV 
-HadEdep is=0.222609 MeV
-Edep in FCAL1 FCAl2 : 789.409 0.222609
+N Tracks out of world 186
+N Scondaries 41
+EmEdep is=2028.23 MeV 
+HadEdep is=0.0568721 MeV
+Edep in FCAL1 FCAl2 : 2028.23 0.0568721
  ****  Primary : 14
  Vertex : (-0.133696,18.3151,32740)
-Number of F1 Tiles with Positive energy : 50
+Number of F1 Tiles with Positive energy : 48
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-3.17242 2.11269 1.54762 
+1.82302 3.05661 1.50928 
  Visible Energy in Hole Counter  (MeV) 
 0 0
  Visible Energy in Upstream Dead Materials 
-27.8061
+6.07219
  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 4
-N Scondaries 123
-EmEdep is=19764.4 MeV 
+N Tracks out of world 0
+N Scondaries 260
+EmEdep is=19815.3 MeV 
 HadEdep is=0 MeV
-Edep in FCAL1 FCAl2 : 19764.4 0
+Edep in FCAL1 FCAl2 : 19815.3 0
  ****  Primary : 15
  Vertex : (17.3196,17.6617,32740)
-Number of F1 Tiles with Positive energy : 40
+Number of F1 Tiles with Positive energy : 45
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-5.34538 5.215 2.33249 
+1.82454 1.56883 1.63487 
  Visible Energy in Hole Counter  (MeV) 
 0 0
  Visible Energy in Upstream Dead Materials 
-14.6481
+10.0835
  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 7
-N Scondaries 203
-EmEdep is=19830.9 MeV 
-HadEdep is=15.2374 MeV
-Edep in FCAL1 FCAl2 : 19830.9 15.2374
+N Tracks out of world 4
+N Scondaries 119
+EmEdep is=19848.5 MeV 
+HadEdep is=6.27988 MeV
+Edep in FCAL1 FCAl2 : 19848.5 6.27988
  ****  Primary : 16
  Vertex : (-20.8489,10.8988,32740)
-Number of F1 Tiles with Positive energy : 61
+Number of F1 Tiles with Positive energy : 71
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.61554 2.91505 2.0882 
+4.61693 1.69627 1.78553 
  Visible Energy in Hole Counter  (MeV) 
-0 74.6184
+0 33.5793
  Visible Energy in Upstream Dead Materials 
-5524.75
+5791.95
  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 165
-N Scondaries 225
-EmEdep is=12233.1 MeV 
-HadEdep is=0 MeV
-Edep in FCAL1 FCAl2 : 12233.1 0
+N Tracks out of world 132
+N Scondaries 115
+EmEdep is=11593.7 MeV 
+HadEdep is=0.39285 MeV
+Edep in FCAL1 FCAl2 : 11593.7 0.39285
  ****  Primary : 17
  Vertex : (-9.96316,-9.33478,32740)
-Number of F1 Tiles with Positive energy : 45
+Number of F1 Tiles with Positive energy : 58
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.54442 1.65364 1.97616 
+1.61151 1.72935 1.52836 
  Visible Energy in Hole Counter  (MeV) 
-0 0
+0 97.3064
  Visible Energy in Upstream Dead Materials 
-15.2601
+2784.17
  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 Scondaries 313
-EmEdep is=19791.9 MeV 
-HadEdep is=1.06743 MeV
-Edep in FCAL1 FCAl2 : 19791.9 1.06743
+N Tracks out of world 122
+N Scondaries 145
+EmEdep is=16070.1 MeV 
+HadEdep is=0 MeV
+Edep in FCAL1 FCAl2 : 16070.1 0
  ****  Primary : 18
  Vertex : (-9.96316,-9.33478,32740)
-Number of F1 Tiles with Positive energy : 48
+Number of F1 Tiles with Positive energy : 45
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-3.58296 1.56573 3.31291 
+1.71076 1.94 2.22238 
  Visible Energy in Hole Counter  (MeV) 
-0 6.74807
+0 38.365
  Visible Energy in Upstream Dead Materials 
-291.282
+3065.3
  Visible Energy in Tail Catcher Scintillator
-0 0 0 0 0 0 0 
+3.32761 0 0 0 0 0 0 
  Visible Energy in Tail Catcher Absorber
-0 0 0 0 0 0 
-N Tracks out of world 10
-N Scondaries 160
-EmEdep is=19280.5 MeV 
-HadEdep is=4.74128 MeV
-Edep in FCAL1 FCAl2 : 19280.5 4.74128
+1.92885 0.177896 0 0 0 0 
+N Tracks out of world 79
+N Scondaries 134
+EmEdep is=15224.9 MeV 
+HadEdep is=0 MeV
+Edep in FCAL1 FCAl2 : 15224.9 0
  ****  Primary : 19
  Vertex : (-3.64184,-3.4838,32740)
-Number of F1 Tiles with Positive energy : 44
+Number of F1 Tiles with Positive energy : 45
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-2.64376 1.69929 1.65292 
+1.72428 1.58681 2.25564 
  Visible Energy in Hole Counter  (MeV) 
 0 0
  Visible Energy in Upstream Dead Materials 
-11.8143
+6.44847
  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 Scondaries 185
-EmEdep is=19738 MeV 
-HadEdep is=0.829905 MeV
-Edep in FCAL1 FCAl2 : 19738 0.829905
+N Tracks out of world 5
+N Scondaries 191
+EmEdep is=19605.2 MeV 
+HadEdep is=8.16115 MeV
+Edep in FCAL1 FCAl2 : 19605.2 8.16115
  ****  Primary : 20
  Vertex : (-3.38741,1.01439,32740)
-Number of F1 Tiles with Positive energy : 41
+Number of F1 Tiles with Positive energy : 42
 Number of F2 tiles with Positive energy : 0
  Visisble Energy in S1 , S2 , S3 in (MeV)
-1.83323 3.94637 1.73364 
+1.86861 2.24412 1.95666 
  Visible Energy in Hole Counter  (MeV) 
 0 0
  Visible Energy in Upstream Dead Materials 
-6.1377
+4.39364
  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 1
-N Scondaries 107
-EmEdep is=19760.2 MeV 
-HadEdep is=4.9154 MeV
-Edep in FCAL1 FCAl2 : 19760.2 4.9154
+N Tracks out of world 3
+N Scondaries 180
+EmEdep is=19874.5 MeV 
+HadEdep is=0 MeV
+Edep in FCAL1 FCAl2 : 19874.5 0
  Run terminated.
 Run Summary
   Number of events processed : 20
-  User=31.89s Real=31.92s Sys=0.01s
+  User=22.08s Real=23.12s Sys=0.01s
 Graphics systems deleted.
 Visualization Manager deleting...
 G4 kernel has come to Quit state.
@@ -1280,10 +1280,10 @@ RunManager is deleting RunManagerKernel.
 G4SDManager deleted.
 EventManager deleted.
 Units table cleared.
-Total navigation history collections cleaned: 331
+Total navigation history collections cleaned: 264
 ================== Deleting memory pools ===================
-Number of memory pools allocated: 12 of which, static: 0
-Dynamic pools deleted: 12 / Total memory freed: 0.5 Mb
+Number of memory pools allocated: 11 of which, static: 0
+Dynamic pools deleted: 11 / Total memory freed: 0.48 Mb
 ============================================================
 G4Allocator objects are deleted.
 UImanager deleted.
diff --git a/examples/advanced/microbeam/microbeam.out b/examples/advanced/microbeam/microbeam.out
index a20b78c59a9..04900733aa4 100644
--- a/examples/advanced/microbeam/microbeam.out
+++ b/examples/advanced/microbeam/microbeam.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -809,7 +809,7 @@ Index : 12     used in the geometry : Yes
 
 ====================================================================
 
-##### Create analysis manager   0x1e34660
+##### Create analysis manager   0xe79820
 Using Root analysis manager
 All Ntuples have been created 
 -> Event # 1 generated 
diff --git a/examples/advanced/microelectronics/microelectronics.out b/examples/advanced/microelectronics/microelectronics.out
index e8d743638a4..e613af51794 100644
--- a/examples/advanced/microelectronics/microelectronics.out
+++ b/examples/advanced/microelectronics/microelectronics.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -187,13 +187,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   0x1abe2f0
+##### Create analysis manager   0x170f900
 Using Root analysis manager
 ... open Root analysis file : microelectronics.root - done
  Run terminated.
 Run Summary
   Number of events processed : 1
-  User=0.26s Real=0.28s Sys=0s
+  User=0.19s Real=0.27s Sys=0s
 ... write Root file : microelectronics.root - done
 Number and type of particles created outside region "Target" :
 _______________________
@@ -239,7 +239,7 @@ Index : 1     used in the geometry : Yes
 ====================================================================
 
 ### Run 1 starts.
-##### Create analysis manager   0x1abe2f0
+##### Create analysis manager   0x170f900
 Using Root analysis manager
 ... open Root analysis file : microelectronics.root - done
  Run terminated.
diff --git a/examples/advanced/nanobeam/nanobeam.out b/examples/advanced/nanobeam/nanobeam.out
index c1aaaac5576..d2f6483bb5d 100644
--- a/examples/advanced/nanobeam/nanobeam.out
+++ b/examples/advanced/nanobeam/nanobeam.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -162,7 +162,7 @@ Index : 0     used in the geometry : Yes
 
 ====================================================================
 
-##### Create analysis manager   0x8f1200
+##### Create analysis manager   0x14c93d0
 Using Root analysis manager
 Ntuple-1 created
 Ntuple-2 created
diff --git a/examples/advanced/purging_magnet/purging_magnet.out b/examples/advanced/purging_magnet/purging_magnet.out
index 606f5ffe113..97f8df2228e 100644
--- a/examples/advanced/purging_magnet/purging_magnet.out
+++ b/examples/advanced/purging_magnet/purging_magnet.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/advanced/radioprotection/radioprotection.out b/examples/advanced/radioprotection/radioprotection.out
index 998a1ab92eb..c48ce9706d5 100644
--- a/examples/advanced/radioprotection/radioprotection.out
+++ b/examples/advanced/radioprotection/radioprotection.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -387,31 +387,31 @@ CoulombScat:   for  mu-, integral: 1     SubType= 1  BuildTable= 1
       180 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
       ===== EM models for the G4Region  DefaultRegionForTheWorld ======
   eCoulombScattering :  Emin=        0 eV    Emax=       10 TeV
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
 
 msc:   for pi+    SubType= 10
       RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
diff --git a/examples/advanced/underground_physics/underground_physics.out b/examples/advanced/underground_physics/underground_physics.out
index 3e80f1b1c23..bab24ad1538 100644
--- a/examples/advanced/underground_physics/underground_physics.out
+++ b/examples/advanced/underground_physics/underground_physics.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -285,21 +285,21 @@ muPairProd:   for  mu-    SubType= 4
       Sampling table 9x1001 from 1 GeV to 0.1 TeV 
       ===== EM models for the G4Region  DefaultRegionForTheWorld ======
           muPairProd :  Emin=        0 eV    Emax=      100 GeV
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
 
 msc:   for pi+    SubType= 10
       RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
diff --git a/examples/advanced/xray_fluorescence/xray_fluorescence.out b/examples/advanced/xray_fluorescence/xray_fluorescence.out
index 8bfd1ec05e9..a02b2b8df43 100644
--- a/examples/advanced/xray_fluorescence/xray_fluorescence.out
+++ b/examples/advanced/xray_fluorescence/xray_fluorescence.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -2861,7 +2861,7 @@ Created histos
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=1.63s Real=1.64s Sys=0s
+  User=1.02s Real=1.02s Sys=0s
 Going to save histograms
 ... write Root file : xrayfluo.root - done
 /vis/viewer/update
diff --git a/examples/basic/B1/exampleB1.out b/examples/basic/B1/exampleB1.out
index ef5d3ba9d2b..a112363edd8 100644
--- a/examples/basic/B1/exampleB1.out
+++ b/examples/basic/B1/exampleB1.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -763,7 +763,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.0604 nanoGy  +- 145.517 picoGy 
+ Dose in scoring volume : 5.04395 nanoGy  +- 144.841 picoGy 
 ------------------------------------------------------------
 
 Graphics systems deleted.
diff --git a/examples/basic/B2/B2a/exampleB2a.out b/examples/basic/B2/B2a/exampleB2a.out
index 90717b1b86b..0b545a5c8a2 100644
--- a/examples/basic/B2/B2a/exampleB2a.out
+++ b/examples/basic/B2/B2a/exampleB2a.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -805,3592 +805,4763 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
     0        0        0 -2.94e+03       200        0        0         0       World initStep
-    1    0.162   0.0323 -2.83e+03       200   0.0236      115       115       World eIoni
-    2    0.925    0.123 -2.66e+03       200   0.0322      168       283       World eIoni
-    3     1.21    0.179 -2.6e+03       200   0.0106     60.3       344       World eIoni
-    4     1.91    0.364 -2.45e+03       200   0.0281      146       490      Target Transportation
-    5     1.91    0.362 -2.45e+03       182     0.33    0.281       490      Target eBrem
-    6     1.91     0.36 -2.45e+03       181   0.0702   0.0735       490      Target eBrem
-    7     1.91    0.359 -2.45e+03       130    0.469    0.396       491      Target eBrem
-    8     1.91    0.359 -2.45e+03       125   0.0334    0.049       491      Target eBrem
-    9      1.9    0.363 -2.45e+03       123    0.153     0.17       491      Target eIoni
-   10     1.91    0.354 -2.45e+03       120     2.66     1.38       492      Target eBrem
-   11        2    0.334 -2.45e+03       119     1.38     1.26       494      Target eBrem
-   12     2.04    0.361 -2.45e+03      99.2    0.687    0.559       494      Target eBrem
-   13     2.05    0.369 -2.45e+03      97.9    0.335    0.192       494      Target eBrem
-   14     2.11    0.343 -2.44e+03      89.4    0.892    0.832       495      Target eBrem
-   15     2.24    0.358 -2.44e+03      80.7     1.02    0.898       496      Target eBrem
-   16      2.3    0.366 -2.44e+03      79.4    0.808    0.449       497      Target eBrem
-   17      2.4      0.4 -2.44e+03        78     1.12    0.896       497      Target eBrem
-   18     2.33    0.504 -2.44e+03      76.7     1.18    0.888       498      Target eBrem
-   19     2.28    0.496 -2.44e+03      76.1    0.479    0.433       499      Target eBrem
-   20     2.27    0.492 -2.44e+03      75.7    0.245    0.171       499      Target eBrem
-   21     2.23    0.472 -2.44e+03      74.7    0.764    0.671       500      Target eBrem
-   22     2.16    0.435 -2.44e+03      63.5    0.591    0.454       500      Target eBrem
-   23     2.05    0.452 -2.44e+03      61.4     1.75    0.987       501      Target eBrem
-   24     2.16    0.642 -2.44e+03        59      1.9     1.64       503      Target eBrem
-   25     2.11     1.07 -2.44e+03      40.4     1.18    0.886       504      Target eBrem
-   26     2.11     1.17 -2.44e+03      15.7    0.274    0.261       504      Target eBrem
-   27      2.1     1.29 -2.44e+03        14     0.44    0.298       504      Target eBrem
-   28     2.04     1.49 -2.44e+03      13.3    0.567    0.474       505      Target eBrem
-   29     1.75     1.64 -2.44e+03      1.53    0.873     0.79       505      Target eBrem
-   30     1.84     1.59 -2.43e+03     0.043     1.48     1.18       507      Target eIoni
-   31     1.84     1.59 -2.43e+03         0    0.043  0.00617       507      Target eIoni
-   32     1.84     1.59 -2.43e+03         0        0        0       507      Target annihil
+    1  -0.0721  -0.0193 -2.83e+03       200    0.021      115       115       World eIoni
+    2   -0.488   -0.261 -2.45e+03       200   0.0663      373       488       World eIoni
+    3   -0.491   -0.267 -2.45e+03       200 0.000443     1.88       490      Target Transportation
+    4   -0.492   -0.267 -2.45e+03       164    0.324    0.281       490      Target eBrem
+    5   -0.546   -0.285 -2.45e+03      39.3     1.28    0.878       491      Target eBrem
+    6   -0.575   -0.302 -2.45e+03      38.9    0.245    0.237       491      Target eBrem
+    7   -0.601   -0.312 -2.45e+03      38.2    0.336    0.302       492      Target eBrem
+    8   -0.764   -0.215 -2.45e+03        37    0.906    0.713       492      Target eBrem
+    9    -0.81    0.099 -2.45e+03      31.4     1.36     1.23       494      Target eBrem
+   10    -1.48    0.743 -2.44e+03      28.5     2.72     2.37       496      Target eBrem
+   11    -1.51    0.812 -2.44e+03      27.9    0.172    0.179       496      Target eBrem
+   12    -1.81     1.25 -2.44e+03      26.8     0.99    0.928       497      Target eBrem
+   13    -1.93      1.6 -2.44e+03      23.8     1.56     1.28       498      Target eBrem
+   14     -2.1     2.03 -2.44e+03      16.6      1.3     1.17       500      Target eIoni
+   15    -2.14     2.43 -2.44e+03      15.1    0.659    0.573       500      Target eBrem
+   16    -3.83     5.34 -2.44e+03      10.8     4.35     3.56       504      Target eBrem
+   17    -4.34     5.45 -2.44e+03      8.21    0.659    0.573       504      Target eBrem
+   18    -5.17     5.03 -2.44e+03      6.44     1.61     1.27       506      Target eBrem
+   19    -5.34      5.2 -2.44e+03      5.98    0.338    0.298       506      Target eBrem
+   20    -5.69     5.48 -2.44e+03      4.86    0.842    0.808       507      Target eBrem
+   21    -5.97     5.48 -2.44e+03      3.89    0.588    0.608       507      Target eBrem
+   22    -5.99     5.49 -2.44e+03      3.62  0.00978    0.017       507      Target eBrem
+   23    -6.47     5.72 -2.44e+03      1.52      2.1     1.95       509      Target eIoni
+   24    -6.31     5.72 -2.44e+03         0     1.52     1.17       510      Target eIoni
+   25    -6.31     5.72 -2.44e+03         0        0        0       510      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 9,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 14,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.9    0.363 -2.45e+03      1.48        0        0         0      Target initStep
-    1     2.02    0.369 -2.45e+03     0.878    0.602    0.279     0.279      Target msc
-    2     2.06    0.359 -2.45e+03     0.405    0.473    0.449     0.727      Target eBrem
-    3     2.07    0.349 -2.45e+03         0    0.405    0.228     0.955      Target eIoni
+    0     -2.1     2.03 -2.44e+03      5.96        0        0         0      Target initStep
+    1    -2.17     2.09 -2.44e+03      3.34    0.113     0.11      0.11      Target eIoni
+    2    -2.38     2.37 -2.44e+03      1.22     2.12     1.85      1.96      Target eIoni
+    3    -2.37     2.29 -2.44e+03     0.539    0.681    0.743       2.7      Target eBrem
+    4    -2.37     2.29 -2.44e+03         0    0.539    0.336      3.04      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 4,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 24,   Parent ID = 14
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.21    0.179 -2.6e+03   0.00275        0        0         0       World initStep
-    1     1.19    0.298 -2.6e+03         0  0.00275    0.272     0.272       World eIoni
+    0    -2.17     2.09 -2.44e+03      2.51        0        0         0      Target initStep
+    1    -2.23     2.15 -2.44e+03     0.309    0.228    0.172     0.172      Target eBrem
+    2    -2.24     2.15 -2.44e+03         0    0.309    0.155     0.327      Target eIoni
 
 *********************************************************************************************************
 * G4Track Information:   Particle = e-,   Track ID = 3,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.925    0.123 -2.66e+03   0.00466        0        0         0       World initStep
-    1    0.903   -0.178 -2.66e+03         0  0.00466    0.677     0.677       World eIoni
+    0   -0.488   -0.261 -2.45e+03   0.00466        0        0         0       World initStep
+    1   -0.701  -0.0489 -2.45e+03         0  0.00466    0.677     0.677       World eIoni
 
 *********************************************************************************************************
 * G4Track Information:   Particle = e-,   Track ID = 2,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.162   0.0323 -2.83e+03   0.00155        0        0         0       World initStep
-    1    0.173  -0.0129 -2.83e+03         0  0.00155    0.109     0.109       World eIoni
+    0  -0.0721  -0.0193 -2.83e+03    0.0012        0        0         0       World initStep
+    1  -0.0707  -0.0502 -2.83e+03         0   0.0012   0.0747    0.0747       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 31,   Parent ID = 1
+* G4Track Information:   Particle = gamma,   Track ID = 25,   Parent ID = 24
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.84     1.59 -2.43e+03     0.511        0        0         0      Target initStep
-    1    -1.43    -1.32 -2.43e+03     0.297        0     10.6      10.6      Target compt
-    2    -1.59       -1 -2.43e+03         0    0.088    0.386        11      Target phot
+    0    -2.23     2.15 -2.44e+03      1.97        0        0         0      Target initStep
+    1    -17.5     4.57 -2.43e+03     0.233        0     21.9      21.9      Target compt
+    2    -16.7     4.28 -2.43e+03         0    0.088     1.83      23.7      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 33,   Parent ID = 31
+* G4Track Information:   Particle = e-,   Track ID = 27,   Parent ID = 25
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.59       -1 -2.43e+03     0.209        0        0         0      Target initStep
-    1    -1.59   -0.999 -2.43e+03         0    0.209   0.0872    0.0872      Target eIoni
+    0    -16.7     4.28 -2.43e+03     0.145        0        0         0      Target initStep
+    1    -16.7     4.28 -2.43e+03         0    0.145   0.0494    0.0494      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 32,   Parent ID = 31
+* G4Track Information:   Particle = e-,   Track ID = 26,   Parent ID = 25
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.43    -1.32 -2.43e+03     0.214        0        0         0      Target initStep
-    1    -1.43    -1.32 -2.43e+03         0    0.214   0.0901    0.0901      Target eIoni
+    0    -17.5     4.57 -2.43e+03      1.74        0        0         0      Target initStep
+    1    -17.5     4.58 -2.43e+03     0.335      1.4     1.29      1.29      Target eIoni
+    2    -17.5     4.58 -2.43e+03         0    0.335    0.175      1.46      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 30,   Parent ID = 1
+* G4Track Information:   Particle = gamma,   Track ID = 23,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.84     1.59 -2.43e+03     0.511        0        0         0      Target initStep
-    1     1.97      1.7 -2.44e+03         0    0.088    0.412     0.412      Target phot
+    0    -6.31     5.72 -2.44e+03     0.511        0        0         0      Target initStep
+    1    -8.08     6.15 -2.43e+03         0    0.088     12.2      12.2      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 34,   Parent ID = 30
+* G4Track Information:   Particle = e-,   Track ID = 28,   Parent ID = 23
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.97      1.7 -2.44e+03     0.423        0        0         0      Target initStep
-    1     1.98     1.69 -2.44e+03         0    0.423    0.243     0.243      Target eIoni
+    0    -8.08     6.15 -2.43e+03     0.423        0        0         0      Target initStep
+    1    -8.09     6.14 -2.43e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 29,   Parent ID = 1
+* G4Track Information:   Particle = gamma,   Track ID = 22,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.75     1.64 -2.44e+03      10.9        0        0         0      Target initStep
-    1     5.33    0.212 -2.43e+03         0    0.088     6.74      6.74      Target phot
+    0    -6.31     5.72 -2.44e+03     0.511        0        0         0      Target initStep
+    1     -5.8      5.6 -2.44e+03         0    0.088     3.56      3.56      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 35,   Parent ID = 29
+* G4Track Information:   Particle = e-,   Track ID = 29,   Parent ID = 22
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.33    0.212 -2.43e+03      10.9        0        0         0      Target initStep
-    1     5.97  -0.0626 -2.43e+03      8.83     1.92     1.42      1.42      Target eBrem
-    2     6.17   -0.647 -2.43e+03      7.51    0.794    0.751      2.17      Target eBrem
-    3     6.17    -1.76 -2.43e+03      4.23     3.06     2.45      4.62      Target eBrem
-    4     5.74    -1.74 -2.43e+03      1.72     1.01    0.923      5.54      Target eIoni
-    5     5.74    -1.72 -2.43e+03     0.399     1.06    0.967      6.51      Target eBrem
-    6     5.75    -1.72 -2.43e+03         0    0.399    0.224      6.74      Target eIoni
+    0     -5.8      5.6 -2.44e+03     0.423        0        0         0      Target initStep
+    1    -5.81     5.59 -2.44e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 39,   Parent ID = 35
+* G4Track Information:   Particle = gamma,   Track ID = 21,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.74    -1.74 -2.43e+03       1.5        0        0         0      Target initStep
-    1     5.67    -1.77 -2.43e+03      1.11    0.259    0.253     0.253      Target eBrem
-    2     5.64    -1.71 -2.43e+03         0     1.11    0.823      1.08      Target eIoni
+    0    -5.99     5.49 -2.44e+03      0.26        0        0         0      Target initStep
+    1    -7.17     5.89 -2.44e+03         0    0.088     1.29      1.29      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 41,   Parent ID = 39
+* G4Track Information:   Particle = e-,   Track ID = 30,   Parent ID = 21
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.67    -1.77 -2.43e+03      0.14        0        0         0      Target initStep
-    1      5.6    -1.67 -2.43e+03         0    0.088    0.179     0.179      Target phot
+    0    -7.17     5.89 -2.44e+03     0.172        0        0         0      Target initStep
+    1    -7.17      5.9 -2.44e+03         0    0.172   0.0643    0.0643      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 42,   Parent ID = 41
+* G4Track Information:   Particle = gamma,   Track ID = 20,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      5.6    -1.67 -2.43e+03    0.0518        0        0         0      Target initStep
-    1      5.6    -1.67 -2.43e+03         0   0.0518  0.00944   0.00944      Target eIoni
+    0    -5.97     5.48 -2.44e+03     0.382        0        0         0      Target initStep
+    1     -9.1     6.57 -2.44e+03         0    0.088     3.31      3.31      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 40,   Parent ID = 35
+* G4Track Information:   Particle = e-,   Track ID = 31,   Parent ID = 20
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.74    -1.72 -2.43e+03     0.264        0        0         0      Target initStep
-    1     7.93    -2.92 -2.43e+03         0    0.088     2.51      2.51      Target phot
+    0     -9.1     6.57 -2.44e+03     0.294        0        0         0      Target initStep
+    1    -9.11     6.57 -2.44e+03         0    0.294    0.145     0.145      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 43,   Parent ID = 40
+* G4Track Information:   Particle = gamma,   Track ID = 19,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     7.93    -2.92 -2.43e+03     0.176        0        0         0      Target initStep
-    1     7.93    -2.92 -2.43e+03         0    0.176   0.0668    0.0668      Target eIoni
+    0    -5.69     5.48 -2.44e+03     0.278        0        0         0      Target initStep
+    1    -6.64      6.1 -2.44e+03         0    0.088     1.65      1.65      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 38,   Parent ID = 35
+* G4Track Information:   Particle = e-,   Track ID = 32,   Parent ID = 19
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     6.17    -1.76 -2.43e+03     0.208        0        0         0      Target initStep
-    1     5.62    -1.74 -2.43e+03         0    0.088     0.56      0.56      Target phot
+    0    -6.64      6.1 -2.44e+03      0.19        0        0         0      Target initStep
+    1    -6.64     6.11 -2.44e+03         0     0.19    0.075     0.075      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 44,   Parent ID = 38
+* G4Track Information:   Particle = gamma,   Track ID = 18,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.62    -1.74 -2.43e+03      0.12        0        0         0      Target initStep
-    1     5.61    -1.74 -2.43e+03         0     0.12   0.0368    0.0368      Target eIoni
+    0    -5.34      5.2 -2.44e+03     0.127        0        0         0      Target initStep
+    1    -5.48      5.3 -2.44e+03         0    0.088     0.24      0.24      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 37,   Parent ID = 35
+* G4Track Information:   Particle = e-,   Track ID = 33,   Parent ID = 18
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     6.17   -0.647 -2.43e+03     0.531        0        0         0      Target initStep
-    1     6.29    -9.23 -2.43e+03         0    0.088     8.83      8.83      Target phot
+    0    -5.48      5.3 -2.44e+03    0.0389        0        0         0      Target initStep
+    1    -5.48      5.3 -2.44e+03         0   0.0389  0.00594   0.00594      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 45,   Parent ID = 37
+* G4Track Information:   Particle = gamma,   Track ID = 17,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     6.29    -9.23 -2.43e+03     0.443        0        0         0      Target initStep
-    1     6.28    -9.24 -2.43e+03         0    0.443    0.259     0.259      Target eIoni
+    0    -5.17     5.03 -2.44e+03     0.161        0        0         0      Target initStep
+    1    -5.29     5.13 -2.44e+03         0    0.088    0.176     0.176      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 36,   Parent ID = 35
+* G4Track Information:   Particle = e-,   Track ID = 34,   Parent ID = 17
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.97  -0.0626 -2.43e+03     0.096        0        0         0      Target initStep
-    1     5.97   -0.076 -2.43e+03         0    0.088   0.0139    0.0139      Target phot
+    0    -5.29     5.13 -2.44e+03     0.073        0        0         0      Target initStep
+    1    -5.29     5.13 -2.44e+03         0    0.073   0.0165    0.0165      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 46,   Parent ID = 36
+* G4Track Information:   Particle = gamma,   Track ID = 16,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.97   -0.076 -2.43e+03   0.00797        0        0         0      Target initStep
-    1     5.97   -0.076 -2.43e+03         0  0.00797 0.000504  0.000504      Target eIoni
+    0    -4.34     5.45 -2.44e+03      1.91        0        0         0      Target initStep
+    1    -10.2      2.4 -2.44e+03      1.74        0     6.89      6.89      Target compt
+    2    -21.2    -1.81 -2.43e+03       1.7        0     13.2      20.1      Target compt
+    3    -24.7    -3.62 -2.43e+03       1.7        0     4.33      24.5       World Transportation
+    4    -88.2    -36.1 -2.4e+03       1.7        0     77.8       102     Tracker Transportation
+    5 -2.14e+03 -1.09e+03 -1.39e+03       1.7        0 2.52e+03  2.62e+03       World Transportation
+    6 -2.94e+03 -1.49e+03     -993       1.7        0      981   3.6e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 28,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 36,   Parent ID = 16
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.04     1.49 -2.44e+03     0.099        0        0         0      Target initStep
-    1        2     1.51 -2.44e+03         0    0.088    0.101     0.101      Target phot
+    0    -21.2    -1.81 -2.43e+03    0.0384        0        0         0      Target initStep
+    1    -21.2    -1.81 -2.43e+03         0   0.0384  0.00579   0.00579      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 47,   Parent ID = 28
+* G4Track Information:   Particle = e-,   Track ID = 35,   Parent ID = 16
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0        2     1.51 -2.44e+03     0.011        0        0         0      Target initStep
-    1        2     1.51 -2.44e+03         0    0.011 0.000804  0.000804      Target eIoni
+    0    -10.2      2.4 -2.44e+03     0.174        0        0         0      Target initStep
+    1    -10.2      2.4 -2.44e+03         0    0.174   0.0655    0.0655      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 27,   Parent ID = 1
+* G4Track Information:   Particle = gamma,   Track ID = 15,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      2.1     1.29 -2.44e+03      1.23        0        0         0      Target initStep
-    1     1.24     4.25 -2.43e+03      1.12        0     6.82      6.82      Target compt
-    2     2.41     7.09 -2.42e+03         0    0.088     8.55      15.4      Target phot
+    0    -2.14     2.43 -2.44e+03     0.801        0        0         0      Target initStep
+    1    -2.14     2.45 -2.44e+03     0.227        0   0.0277    0.0277      Target compt
+    2    -1.66     2.29 -2.44e+03         0    0.088    0.514     0.542      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 49,   Parent ID = 27
+* G4Track Information:   Particle = e-,   Track ID = 38,   Parent ID = 15
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.41     7.09 -2.42e+03      1.04        0        0         0      Target initStep
-    1     2.42     7.13 -2.42e+03         0     1.04    0.761     0.761      Target eIoni
+    0    -1.66     2.29 -2.44e+03     0.139        0        0         0      Target initStep
+    1    -1.66     2.29 -2.44e+03         0    0.139   0.0464    0.0464      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 48,   Parent ID = 27
+* G4Track Information:   Particle = e-,   Track ID = 37,   Parent ID = 15
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.24     4.25 -2.43e+03      0.11        0        0         0      Target initStep
-    1     1.23     4.25 -2.43e+03         0     0.11    0.032     0.032      Target eIoni
+    0    -2.14     2.45 -2.44e+03     0.574        0        0         0      Target initStep
+    1    -2.16     2.47 -2.44e+03         0    0.574    0.366     0.366      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 26,   Parent ID = 1
+* G4Track Information:   Particle = gamma,   Track ID = 13,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.11     1.17 -2.44e+03      24.4        0        0         0      Target initStep
-    1     1.23      6.5 -2.43e+03      2.89        0     12.2      12.2      Target compt
-    2     2.21     12.5 -2.42e+03      2.24        0     7.23      19.5      Target compt
-    3        4     24.7 -2.41e+03      2.24        0       20      39.5       World Transportation
-    4     4.65     29.1 -2.4e+03      2.24        0     7.24      46.7     Tracker Transportation
-    5      349 2.37e+03      621      2.24        0 3.84e+03  3.89e+03       World Transportation
-    6      432 2.94e+03 1.35e+03      2.24        0      926  4.81e+03  OutOfWorld Transportation
+    0    -1.93      1.6 -2.44e+03      1.34        0        0         0      Target initStep
+    1    -2.31     2.15 -2.44e+03         0    0.088     1.83      1.83      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 51,   Parent ID = 26
+* G4Track Information:   Particle = e-,   Track ID = 39,   Parent ID = 13
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.21     12.5 -2.42e+03     0.648        0        0         0      Target initStep
-    1     2.21     12.5 -2.42e+03         0    0.648    0.428     0.428      Target eIoni
+    0    -2.31     2.15 -2.44e+03      1.25        0        0         0      Target initStep
+    1    -2.33     2.19 -2.44e+03     0.532    0.287    0.321     0.321      Target eBrem
+    2    -2.31     2.19 -2.44e+03         0    0.532    0.331     0.652      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 50,   Parent ID = 26
+* G4Track Information:   Particle = gamma,   Track ID = 40,   Parent ID = 39
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.23      6.5 -2.43e+03      21.5        0        0         0      Target initStep
-    1     1.21     6.57 -2.43e+03      11.5    0.158    0.187     0.187      Target eBrem
-    2     1.07     7.13 -2.42e+03      9.32     1.99     1.88      2.07      Target eBrem
-    3    0.289     7.16 -2.42e+03       5.8     1.28     0.99      3.06      Target eBrem
-    4  0.00919     6.54 -2.42e+03     0.849      2.2      2.1      5.16      Target eBrem
-    5   0.0382     6.51 -2.42e+03         0    0.849      0.6      5.76      Target eIoni
+    0    -2.33     2.19 -2.44e+03     0.433        0        0         0      Target initStep
+    1    -1.12     1.23 -2.44e+03     0.176        0     2.22      2.22      Target compt
+    2    -1.24     1.28 -2.44e+03         0    0.088    0.136      2.36      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 55,   Parent ID = 50
+* G4Track Information:   Particle = e-,   Track ID = 42,   Parent ID = 40
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00919     6.54 -2.42e+03      2.75        0        0         0      Target initStep
-    1   -0.186       13 -2.43e+03     0.919        0     12.3      12.3      Target compt
-    2    -1.52     12.1 -2.44e+03         0    0.088     3.61      15.9      Target phot
+    0    -1.24     1.28 -2.44e+03    0.0876        0        0         0      Target initStep
+    1    -1.24     1.28 -2.44e+03         0   0.0876   0.0222    0.0222      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 57,   Parent ID = 55
+* G4Track Information:   Particle = e-,   Track ID = 41,   Parent ID = 40
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.52     12.1 -2.44e+03     0.831        0        0         0      Target initStep
-    1    -1.54     12.1 -2.44e+03         0    0.831    0.584     0.584      Target eIoni
+    0    -1.12     1.23 -2.44e+03     0.258        0        0         0      Target initStep
+    1    -1.11     1.23 -2.44e+03         0    0.258    0.119     0.119      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 56,   Parent ID = 55
+* G4Track Information:   Particle = gamma,   Track ID = 12,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.186       13 -2.43e+03      1.83        0        0         0      Target initStep
-    1   -0.171     13.1 -2.43e+03      1.14    0.234     0.24      0.24      Target eBrem
-    2   -0.129     13.1 -2.43e+03    0.0229     1.12      0.8      1.04      Target eBrem
-    3   -0.129     13.1 -2.43e+03         0   0.0229  0.00253      1.04      Target eIoni
+    0    -1.81     1.25 -2.44e+03     0.176        0        0         0      Target initStep
+    1    -2.09     1.71 -2.44e+03         0    0.088     1.57      1.57      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 58,   Parent ID = 56
+* G4Track Information:   Particle = e-,   Track ID = 43,   Parent ID = 12
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.171     13.1 -2.43e+03     0.454        0        0         0      Target initStep
-    1   -0.255       14 -2.44e+03     0.236        0     4.72      4.72      Target compt
-    2    -1.58     21.3 -2.44e+03         0    0.088     7.63      12.3      Target phot
+    0    -2.09     1.71 -2.44e+03    0.0882        0        0         0      Target initStep
+    1    -2.09     1.71 -2.44e+03         0   0.0882   0.0224    0.0224      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 60,   Parent ID = 58
+* 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    -1.58     21.3 -2.44e+03     0.148        0        0         0      Target initStep
-    1    -1.58     21.3 -2.44e+03         0    0.148    0.051     0.051      Target eIoni
+    0    -1.51    0.812 -2.44e+03     0.375        0        0         0      Target initStep
+    1    -1.77     1.59 -2.44e+03     0.244        0     1.73      1.73      Target compt
+    2    -4.07     0.23 -2.44e+03     0.203        0     2.93      4.65      Target compt
+    3    -4.29   -0.289 -2.44e+03         0    0.088    0.591      5.24      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 59,   Parent ID = 58
+* G4Track Information:   Particle = e-,   Track ID = 46,   Parent ID = 11
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.255       14 -2.44e+03     0.218        0        0         0      Target initStep
-    1   -0.255       14 -2.44e+03         0    0.218   0.0928    0.0928      Target eIoni
+    0    -4.29   -0.289 -2.44e+03     0.115        0        0         0      Target initStep
+    1    -4.29    -0.29 -2.44e+03         0    0.115   0.0345    0.0345      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 54,   Parent ID = 50
+* G4Track Information:   Particle = e-,   Track ID = 45,   Parent ID = 11
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.289     7.16 -2.42e+03      2.25        0        0         0      Target initStep
-    1      -14    -20.1 -2.41e+03      1.45        0     34.6      34.6      Target compt
-    2    -14.1    -20.6 -2.41e+03       1.4        0    0.864      35.4      Target compt
-    3    -14.1    -20.6 -2.41e+03       1.4        0   0.0791      35.5       World Transportation
-    4    -16.6    -27.1 -2.4e+03       1.4        0       10      45.6     Tracker Transportation
-    5     -853 -2.24e+03     79.7       1.4        0 3.43e+03  3.47e+03       World Transportation
-    6 -1.12e+03 -2.94e+03      859       1.4        0 1.08e+03  4.55e+03  OutOfWorld Transportation
+    0    -4.07     0.23 -2.44e+03    0.0405        0        0         0      Target initStep
+    1    -4.07    0.231 -2.44e+03         0   0.0405  0.00634   0.00634      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 62,   Parent ID = 54
+* G4Track Information:   Particle = e-,   Track ID = 44,   Parent ID = 11
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -14.1    -20.6 -2.41e+03    0.0541        0        0         0      Target initStep
-    1    -14.1    -20.6 -2.41e+03         0   0.0541   0.0101    0.0101      Target eIoni
+    0    -1.77     1.59 -2.44e+03     0.131        0        0         0      Target initStep
+    1    -1.77     1.59 -2.44e+03         0    0.131   0.0423    0.0423      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 61,   Parent ID = 54
+* G4Track Information:   Particle = gamma,   Track ID = 10,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -14    -20.1 -2.41e+03     0.795        0        0         0      Target initStep
-    1      -14    -20.1 -2.41e+03     0.699   0.0955    0.107     0.107      Target msc
-    2    -14.1    -20.1 -2.41e+03         0    0.699    0.471     0.579      Target eIoni
+    0    -1.48    0.743 -2.44e+03     0.214        0        0         0      Target initStep
+    1    -1.73     1.25 -2.44e+03         0    0.088     1.22      1.22      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 53,   Parent ID = 50
+* G4Track Information:   Particle = e-,   Track ID = 47,   Parent ID = 10
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.07     7.13 -2.42e+03     0.192        0        0         0      Target initStep
-    1    0.816     7.11 -2.42e+03         0    0.088    0.262     0.262      Target phot
+    0    -1.73     1.25 -2.44e+03     0.126        0        0         0      Target initStep
+    1    -1.74     1.25 -2.44e+03         0    0.126   0.0395    0.0395      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 63,   Parent ID = 53
+* G4Track Information:   Particle = gamma,   Track ID = 9,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.816     7.11 -2.42e+03     0.104        0        0         0      Target initStep
-    1    0.814     7.11 -2.42e+03         0    0.104   0.0293    0.0293      Target eIoni
+    0    -0.81    0.099 -2.45e+03      4.24        0        0         0      Target initStep
+    1   -0.465     8.12 -2.41e+03      2.93        0     35.6      35.6      Target compt
+    2    -2.98     10.9 -2.4e+03     0.464        0     8.54      44.2      Target compt
+    3     5.07     8.98 -2.4e+03     0.464        0     9.21      53.4     Tracker Transportation
+    4 2.34e+03     -545 -1.22e+03     0.464        0 2.67e+03  2.72e+03       World Transportation
+    5 2.94e+03     -688     -916     0.464        0      690  3.41e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 52,   Parent ID = 50
+* G4Track Information:   Particle = e-,   Track ID = 49,   Parent ID = 9
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.21     6.57 -2.43e+03      9.86        0        0         0      Target initStep
-    1    0.541     14.4 -2.41e+03      2.71        0     19.4      19.4      Target compt
-    2     -1.8     21.1 -2.4e+03         0    0.088     8.86      28.3      Target phot
+    0    -2.98     10.9 -2.4e+03      2.47        0        0         0      Target initStep
+    1    -3.04     10.9 -2.4e+03      1.58    0.202    0.211     0.211      Target eBrem
+    2    -2.95     10.9 -2.4e+03     0.301     1.27     1.19       1.4      Target eIoni
+    3    -2.95     10.9 -2.4e+03         0    0.301     0.15      1.55      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 65,   Parent ID = 52
+* G4Track Information:   Particle = e-,   Track ID = 48,   Parent ID = 9
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -1.8     21.1 -2.4e+03      2.62        0        0         0      Target initStep
-    1    -1.88     21.3 -2.4e+03      1.78     0.84    0.868     0.868      Target eBrem
-    2    -1.77     21.3 -2.4e+03       1.2     0.58    0.573      1.44      Target eBrem
-    3    -1.73     21.3 -2.4e+03         0      1.2    0.904      2.35      Target eIoni
+    0   -0.465     8.12 -2.41e+03      1.31        0        0         0      Target initStep
+    1   -0.421     8.12 -2.41e+03         0     1.31        1         1      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 64,   Parent ID = 52
+* G4Track Information:   Particle = gamma,   Track ID = 50,   Parent ID = 49
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.541     14.4 -2.41e+03      7.15        0        0         0      Target initStep
-    1    0.593     14.7 -2.41e+03      3.82     3.33     2.63      2.63      Target eIoni
-    2    0.437     14.4 -2.41e+03      2.97    0.664    0.661       3.3      Target eBrem
-    3     0.64     14.3 -2.41e+03     0.901     1.59     1.42      4.72      Target eBrem
-    4    0.645     14.2 -2.41e+03     0.223    0.678    0.629      5.35      Target eBrem
-    5    0.649     14.2 -2.41e+03         0    0.223    0.096      5.44      Target eIoni
+    0    -3.04     10.9 -2.4e+03      0.69        0        0         0      Target initStep
+    1   -0.816     9.29 -2.41e+03     0.573        0     2.97      2.97      Target compt
+    2     13.6      6.9 -2.41e+03     0.566        0     14.7      17.6      Target compt
+    3     17.9     6.71 -2.41e+03         0    0.088     4.27      21.9      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 67,   Parent ID = 64
+* G4Track Information:   Particle = e-,   Track ID = 53,   Parent ID = 50
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.64     14.3 -2.41e+03      0.48        0        0         0      Target initStep
-    1    -13.6     5.17 -2.41e+03         0    0.088     17.1      17.1      Target phot
+    0     17.9     6.71 -2.41e+03     0.478        0        0         0      Target initStep
+    1     17.9      6.7 -2.41e+03     0.141    0.338    0.243     0.243      Target eBrem
+    2     17.9      6.7 -2.41e+03         0    0.141   0.0471      0.29      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 68,   Parent ID = 67
+* G4Track Information:   Particle = e-,   Track ID = 52,   Parent ID = 50
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -13.6     5.17 -2.41e+03     0.392        0        0         0      Target initStep
-    1    -13.6     5.16 -2.41e+03         0    0.392    0.219     0.219      Target eIoni
+    0     13.6      6.9 -2.41e+03   0.00652        0        0         0      Target initStep
+    1     13.6      6.9 -2.41e+03         0  0.00652 0.000378  0.000378      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 66,   Parent ID = 64
+* G4Track Information:   Particle = e-,   Track ID = 51,   Parent ID = 50
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.437     14.4 -2.41e+03     0.191        0        0         0      Target initStep
-    1    0.794     14.2 -2.41e+03         0    0.088    0.441     0.441      Target phot
+    0   -0.816     9.29 -2.41e+03     0.117        0        0         0      Target initStep
+    1   -0.816     9.28 -2.41e+03         0    0.117   0.0354    0.0354      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 69,   Parent ID = 66
+* G4Track Information:   Particle = gamma,   Track ID = 8,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.794     14.2 -2.41e+03     0.103        0        0         0      Target initStep
-    1    0.795     14.2 -2.41e+03         0    0.103   0.0287    0.0287      Target eIoni
+    0   -0.764   -0.215 -2.45e+03     0.275        0        0         0      Target initStep
+    1     -1.1    0.148 -2.45e+03         0    0.088     2.14      2.14      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 25,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 54,   Parent ID = 8
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.11     1.07 -2.44e+03      17.4        0        0         0      Target initStep
-    1     4.31     13.6 -2.41e+03         0        0     30.5      30.5      Target conv
+    0     -1.1    0.148 -2.45e+03     0.187        0        0         0      Target initStep
+    1     -1.1    0.145 -2.45e+03         0    0.187   0.0734    0.0734      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 70,   Parent ID = 25
+* G4Track Information:   Particle = gamma,   Track ID = 7,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.31     13.6 -2.41e+03      5.25        0        0         0      Target initStep
-    1     4.32     13.6 -2.41e+03      4.85   0.0377   0.0506    0.0506      Target eBrem
-    2     4.43     13.8 -2.41e+03      4.22    0.522    0.555     0.605      Target eBrem
-    3     4.31     13.6 -2.41e+03      1.58     2.64     2.06      2.66      Target eIoni
-    4     4.23     13.6 -2.41e+03     0.258    0.407    0.434       3.1      Target eBrem
-    5     4.23     13.6 -2.41e+03         0    0.258     0.12      3.22      Target eIoni
+    0   -0.601   -0.312 -2.45e+03     0.356        0        0         0      Target initStep
+    1    -1.89    0.726 -2.44e+03         0    0.088     6.03      6.03      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 74,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 55,   Parent ID = 7
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.23     13.6 -2.41e+03      0.91        0        0         0      Target initStep
-    1     4.15     11.4 -2.4e+03     0.898        0     4.65      4.65      Target compt
-    2     3.54     9.37 -2.4e+03     0.898        0     4.43      9.08     Tracker Transportation
-    3     -355 -1.19e+03     -100     0.898        0 2.62e+03  2.63e+03  Chamber_PV Transportation
-    4     -379 -1.26e+03     49.1     0.898        0      170   2.8e+03     Tracker Transportation
-    5     -480 -1.6e+03      700     0.898        0      741  3.54e+03  Chamber_PV Transportation
-    6     -512 -1.71e+03      900     0.898        0      228  3.76e+03     Tracker Transportation
-    7     -605 -2.02e+03  1.5e+03     0.898        0      683  4.45e+03  Chamber_PV Transportation
-    8     -636 -2.12e+03  1.7e+03     0.898        0      228  4.67e+03     Tracker Transportation
-    9     -689 -2.3e+03 2.04e+03     0.898        0      384  5.06e+03       World Transportation
-   10     -830 -2.77e+03 2.94e+03     0.898        0 1.03e+03  6.09e+03  OutOfWorld Transportation
+    0    -1.89    0.726 -2.44e+03     0.268        0        0         0      Target initStep
+    1     -1.9    0.727 -2.44e+03         0    0.268    0.126     0.126      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 75,   Parent ID = 74
+* G4Track Information:   Particle = gamma,   Track ID = 6,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.15     11.4 -2.4e+03    0.0115        0        0         0      Target initStep
-    1     4.15     11.4 -2.4e+03         0   0.0115 0.000865  0.000865      Target eIoni
+    0   -0.575   -0.302 -2.45e+03     0.165        0        0         0      Target initStep
+    1   -0.581   -0.299 -2.45e+03         0    0.088    0.178     0.178      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 73,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 56,   Parent ID = 6
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.43     13.8 -2.41e+03     0.106        0        0         0      Target initStep
-    1     4.42     13.8 -2.41e+03         0    0.088  0.00821   0.00821      Target phot
+    0   -0.581   -0.299 -2.45e+03    0.0774        0        0         0      Target initStep
+    1    -0.58   -0.299 -2.45e+03         0   0.0774   0.0181    0.0181      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 76,   Parent ID = 73
+* G4Track Information:   Particle = gamma,   Track ID = 5,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.42     13.8 -2.41e+03    0.0178        0        0         0      Target initStep
-    1     4.42     13.8 -2.41e+03         0   0.0178   0.0017    0.0017      Target eIoni
+    0   -0.546   -0.285 -2.45e+03       123        0        0         0      Target initStep
+    1   -0.905    -0.38 -2.44e+03         0        0     6.83      6.83      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 72,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 57,   Parent ID = 5
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.32     13.6 -2.41e+03     0.368        0        0         0      Target initStep
-    1     5.81     15.4 -2.41e+03         0    0.088        4         4      Target phot
+    0   -0.905    -0.38 -2.44e+03      34.8        0        0         0      Target initStep
+    1   -0.886   -0.329 -2.44e+03      33.6     1.12     1.02      1.02      Target eBrem
+    2   -0.879   -0.344 -2.44e+03      27.3      0.2    0.189      1.21      Target eBrem
+    3   -0.866   -0.343 -2.44e+03      26.9    0.113    0.132      1.34      Target eBrem
+    4   -0.714   -0.425 -2.44e+03      20.4     1.34     1.04      2.39      Target eBrem
+    5    -1.36   -0.143 -2.44e+03      12.6      1.6     1.49      3.87      Target eBrem
+    6    -1.42  -0.0706 -2.44e+03      11.5     0.11    0.133      4.01      Target eBrem
+    7    -1.93    0.474 -2.44e+03      8.89     1.56     1.28      5.28      Target eIoni
+    8    -1.96    0.562 -2.44e+03      8.55    0.095    0.099      5.38      Target eBrem
+    9    -2.37     1.06 -2.44e+03       6.2    0.993    0.788      6.17      Target eIoni
+   10    -2.47     1.11 -2.44e+03      5.86    0.159    0.133       6.3      Target eBrem
+   11    -3.27     1.17 -2.44e+03      2.72     3.15     2.39       8.7      Target eIoni
+   12    -3.38     1.31 -2.44e+03      1.63     1.09     1.05      9.75      Target eBrem
+   13    -3.32     1.33 -2.44e+03      1.02    0.605    0.612      10.4      Target eBrem
+   14    -3.36     1.35 -2.44e+03         0     1.02    0.749      11.1      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 77,   Parent ID = 72
+* G4Track Information:   Particle = e-,   Track ID = 67,   Parent ID = 57
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.81     15.4 -2.41e+03      0.28        0        0         0      Target initStep
-    1     5.82     15.4 -2.41e+03         0     0.28    0.135     0.135      Target eIoni
+    0    -2.37     1.06 -2.44e+03      1.36        0        0         0      Target initStep
+    1    -2.43     1.11 -2.44e+03     0.324     1.03     1.04      1.04      Target eIoni
+    2    -2.42     1.11 -2.44e+03         0    0.324    0.167       1.2      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 24,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 65,   Parent ID = 57
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.16    0.642 -2.44e+03     0.519        0        0         0      Target initStep
-    1     2.12     1.69 -2.44e+03         0    0.088     2.21      2.21      Target phot
+    0    -1.93    0.474 -2.44e+03      1.09        0        0         0      Target initStep
+    1    -1.91    0.533 -2.44e+03    0.0801    0.856    0.732     0.732      Target eBrem
+    2    -1.91    0.533 -2.44e+03         0   0.0801   0.0192     0.751      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 78,   Parent ID = 24
+* G4Track Information:   Particle = gamma,   Track ID = 69,   Parent ID = 65
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.12     1.69 -2.44e+03     0.431        0        0         0      Target initStep
-    1     2.12      1.7 -2.44e+03         0    0.431    0.249     0.249      Target eIoni
+    0    -1.91    0.533 -2.44e+03     0.153        0        0         0      Target initStep
+    1    -1.88     0.58 -2.44e+03         0    0.088   0.0792    0.0792      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 23,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 70,   Parent ID = 69
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.05    0.452 -2.44e+03     0.315        0        0         0      Target initStep
-    1     2.05    0.459 -2.44e+03         0    0.088   0.0869    0.0869      Target phot
+    0    -1.88     0.58 -2.44e+03     0.065        0        0         0      Target initStep
+    1    -1.88    0.579 -2.44e+03         0    0.065   0.0137    0.0137      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 79,   Parent ID = 23
+* G4Track Information:   Particle = gamma,   Track ID = 68,   Parent ID = 57
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.05    0.459 -2.44e+03     0.227        0        0         0      Target initStep
-    1     2.04    0.454 -2.44e+03         0    0.227   0.0984    0.0984      Target eIoni
+    0    -2.47     1.11 -2.44e+03     0.173        0        0         0      Target initStep
+    1    -3.15     1.18 -2.44e+03         0    0.088    0.688     0.688      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 22,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 71,   Parent ID = 68
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.16    0.435 -2.44e+03      10.7        0        0         0      Target initStep
-    1     1.47   -0.255 -2.43e+03      1.65        0     9.88      9.88      Target compt
-    2     3.35    -4.42 -2.43e+03         0        0     6.57      16.4      Target conv
+    0    -3.15     1.18 -2.44e+03    0.0851        0        0         0      Target initStep
+    1    -3.16     1.18 -2.44e+03         0   0.0851   0.0212    0.0212      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 81,   Parent ID = 22
+* G4Track Information:   Particle = gamma,   Track ID = 66,   Parent ID = 57
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.35    -4.42 -2.43e+03     0.272        0        0         0      Target initStep
-    1     3.36    -4.42 -2.43e+03         0    0.272    0.129     0.129      Target eIoni
+    0    -1.96    0.562 -2.44e+03     0.254        0        0         0      Target initStep
+    1    -2.02    0.675 -2.44e+03         0    0.088     0.13      0.13      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 80,   Parent ID = 22
+* G4Track Information:   Particle = e-,   Track ID = 72,   Parent ID = 66
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.47   -0.255 -2.43e+03      9.03        0        0         0      Target initStep
-    1     1.37    -0.23 -2.43e+03      7.67    0.989    0.977     0.977      Target eBrem
-    2     1.81    -1.07 -2.43e+03      4.19     3.36     2.48      3.45      Target eBrem
-    3     1.67    -1.09 -2.43e+03      2.83    0.129    0.186      3.64      Target eBrem
-    4     1.42    -1.19 -2.43e+03     0.355     2.47     1.71      5.35      Target eIoni
-    5     1.41    -1.19 -2.43e+03         0    0.355     0.19      5.54      Target eIoni
+    0    -2.02    0.675 -2.44e+03     0.166        0        0         0      Target initStep
+    1    -2.02    0.679 -2.44e+03         0    0.166   0.0612    0.0612      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 85,   Parent ID = 80
+* G4Track Information:   Particle = gamma,   Track ID = 64,   Parent ID = 57
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.67    -1.09 -2.43e+03      1.24        0        0         0      Target initStep
-    1   -0.577    -8.62 -2.42e+03         0    0.088     9.32      9.32      Target phot
+    0    -1.42  -0.0706 -2.44e+03     0.895        0        0         0      Target initStep
+    1      -17     17.2 -2.42e+03     0.264        0     32.6      32.6      Target compt
+    2    -9.93     18.5 -2.42e+03         0    0.088     7.17      39.8      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 86,   Parent ID = 85
+* G4Track Information:   Particle = e-,   Track ID = 74,   Parent ID = 64
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.577    -8.62 -2.42e+03      1.15        0        0         0      Target initStep
-    1   -0.578    -8.67 -2.42e+03         0     1.15    0.862     0.862      Target eIoni
+    0    -9.93     18.5 -2.42e+03     0.176        0        0         0      Target initStep
+    1    -9.92     18.5 -2.42e+03         0    0.176   0.0671    0.0671      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 84,   Parent ID = 80
+* G4Track Information:   Particle = e-,   Track ID = 73,   Parent ID = 64
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.81    -1.07 -2.43e+03     0.115        0        0         0      Target initStep
-    1     1.79    -1.05 -2.43e+03         0    0.088   0.0328    0.0328      Target phot
+    0      -17     17.2 -2.42e+03     0.631        0        0         0      Target initStep
+    1      -17     17.2 -2.42e+03         0    0.631    0.413     0.413      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 87,   Parent ID = 84
+* G4Track Information:   Particle = gamma,   Track ID = 63,   Parent ID = 57
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.79    -1.05 -2.43e+03    0.0265        0        0         0      Target initStep
-    1     1.79    -1.05 -2.43e+03         0   0.0265  0.00319   0.00319      Target eIoni
+    0    -1.36   -0.143 -2.44e+03      6.26        0        0         0      Target initStep
+    1    -6.31     5.69 -2.43e+03      6.09        0     10.4      10.4      Target compt
+    2    -18.1     17.3 -2.42e+03      6.09        0     22.8      33.2       World Transportation
+    3    -29.7     28.7 -2.4e+03      6.09        0     22.5      55.8     Tracker Transportation
+    4 -1.71e+03 1.68e+03     -147      6.09        0 3.26e+03  3.32e+03       World Transportation
+    5 -2.94e+03  2.9e+03  1.5e+03      6.09        0 2.39e+03   5.7e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 83,   Parent ID = 80
+* G4Track Information:   Particle = e-,   Track ID = 75,   Parent ID = 63
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.37    -0.23 -2.43e+03     0.367        0        0         0      Target initStep
-    1     2.97     -3.3 -2.43e+03     0.348        0     4.32      4.32      Target compt
-    2     5.02    -5.99 -2.43e+03         0    0.088     3.52      7.83      Target phot
+    0    -6.31     5.69 -2.43e+03     0.168        0        0         0      Target initStep
+    1    -6.31      5.7 -2.43e+03         0    0.168   0.0624    0.0624      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 89,   Parent ID = 83
+* G4Track Information:   Particle = gamma,   Track ID = 62,   Parent ID = 57
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.02    -5.99 -2.43e+03      0.26        0        0         0      Target initStep
-    1     5.03       -6 -2.43e+03         0     0.26    0.121     0.121      Target eIoni
+    0   -0.714   -0.425 -2.44e+03      5.12        0        0         0      Target initStep
+    1     -1.8      3.5 -2.43e+03         0        0     11.9      11.9      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 88,   Parent ID = 83
+* G4Track Information:   Particle = e-,   Track ID = 76,   Parent ID = 62
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.97     -3.3 -2.43e+03    0.0193        0        0         0      Target initStep
-    1     2.97     -3.3 -2.43e+03         0   0.0193  0.00192   0.00192      Target eIoni
+    0     -1.8      3.5 -2.43e+03      2.89        0        0         0      Target initStep
+    1    -1.87     3.57 -2.43e+03     0.821     2.07     1.72      1.72      Target eIoni
+    2    -1.85      3.6 -2.43e+03         0    0.821    0.576       2.3      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 21,   Parent ID = 1
+* G4Track Information:   Particle = gamma,   Track ID = 61,   Parent ID = 57
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.23    0.472 -2.44e+03     0.198        0        0         0      Target initStep
-    1     2.08    0.378 -2.44e+03         0    0.088     1.34      1.34      Target phot
+    0   -0.866   -0.343 -2.44e+03      0.31        0        0         0      Target initStep
+    1    -0.69   -0.292 -2.44e+03         0    0.088     2.49      2.49      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 90,   Parent ID = 21
+* G4Track Information:   Particle = e-,   Track ID = 78,   Parent ID = 61
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.08    0.378 -2.44e+03      0.11        0        0         0      Target initStep
-    1     2.08    0.376 -2.44e+03         0     0.11    0.032     0.032      Target eIoni
+    0    -0.69   -0.292 -2.44e+03     0.221        0        0         0      Target initStep
+    1    -0.69   -0.295 -2.44e+03         0    0.221   0.0951    0.0951      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 20,   Parent ID = 1
+* G4Track Information:   Particle = gamma,   Track ID = 60,   Parent ID = 57
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.27    0.492 -2.44e+03     0.153        0        0         0      Target initStep
-    1     2.26     0.48 -2.44e+03         0    0.088    0.122     0.122      Target phot
+    0   -0.879   -0.344 -2.44e+03      6.06        0        0         0      Target initStep
+    1   -0.573   -0.866 -2.42e+03      1.01        0     21.5      21.5      Target compt
+    2     -6.4     -2.6 -2.41e+03         0    0.088     7.49        29      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 91,   Parent ID = 20
+* G4Track Information:   Particle = e-,   Track ID = 80,   Parent ID = 60
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.26     0.48 -2.44e+03    0.0646        0        0         0      Target initStep
-    1     2.26    0.481 -2.44e+03         0   0.0646   0.0135    0.0135      Target eIoni
+    0     -6.4     -2.6 -2.41e+03     0.921        0        0         0      Target initStep
+    1    -6.44    -2.62 -2.41e+03     0.699   0.0996    0.102     0.102      Target eBrem
+    2    -6.41    -2.61 -2.41e+03         0    0.699    0.471     0.574      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 19,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 79,   Parent ID = 60
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.28    0.496 -2.44e+03    0.0954        0        0         0      Target initStep
-    1     2.25    0.475 -2.44e+03         0    0.088    0.404     0.404      Target phot
+    0   -0.573   -0.866 -2.42e+03      5.05        0        0         0      Target initStep
+    1   -0.546   -0.863 -2.42e+03      4.31    0.285    0.187     0.187      Target eBrem
+    2   -0.513   -0.629 -2.42e+03      1.83    0.434    0.432     0.619      Target eBrem
+    3   -0.597   -0.588 -2.42e+03      1.24    0.137    0.152     0.771      Target eBrem
+    4   -0.615   -0.529 -2.42e+03     0.613    0.627    0.596      1.37      Target eBrem
+    5   -0.596    -0.55 -2.42e+03         0    0.613    0.399      1.77      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 92,   Parent ID = 19
+* G4Track Information:   Particle = gamma,   Track ID = 84,   Parent ID = 79
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.25    0.475 -2.44e+03   0.00738        0        0         0      Target initStep
-    1     2.25    0.475 -2.44e+03         0  0.00738 0.000451  0.000451      Target eIoni
+    0   -0.597   -0.588 -2.42e+03     0.458        0        0         0      Target initStep
+    1    -6.57      2.5 -2.43e+03         0    0.088     9.98      9.98      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 18,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 85,   Parent ID = 84
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.33    0.504 -2.44e+03     0.152        0        0         0      Target initStep
-    1     2.31    0.501 -2.44e+03         0    0.088    0.439     0.439      Target phot
+    0    -6.57      2.5 -2.43e+03      0.37        0        0         0      Target initStep
+    1    -6.58     2.51 -2.43e+03         0     0.37    0.201     0.201      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 93,   Parent ID = 18
+* G4Track Information:   Particle = gamma,   Track ID = 83,   Parent ID = 79
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.31    0.501 -2.44e+03    0.0642        0        0         0      Target initStep
-    1     2.31    0.502 -2.44e+03         0   0.0642   0.0134    0.0134      Target eIoni
+    0   -0.513   -0.629 -2.42e+03      2.04        0        0         0      Target initStep
+    1    -7.95     2.02 -2.42e+03      1.93        0     9.05      9.05      Target compt
+    2    -22.9     9.94 -2.44e+03      1.93        0       21        30       World Transportation
+    3     -636      334 -2.94e+03      1.93        0      857       887  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 17,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 86,   Parent ID = 83
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      2.4      0.4 -2.44e+03     0.317        0        0         0      Target initStep
-    1     2.32    0.459 -2.44e+03         0    0.088    0.809     0.809      Target phot
+    0    -7.95     2.02 -2.42e+03      0.11        0        0         0      Target initStep
+    1    -7.95     2.02 -2.42e+03         0     0.11    0.032     0.032      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 94,   Parent ID = 17
+* G4Track Information:   Particle = gamma,   Track ID = 82,   Parent ID = 79
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.32    0.459 -2.44e+03     0.229        0        0         0      Target initStep
-    1     2.32    0.461 -2.44e+03         0    0.229      0.1       0.1      Target eIoni
+    0   -0.546   -0.863 -2.42e+03     0.453        0        0         0      Target initStep
+    1   -0.539   -0.824 -2.42e+03     0.451        0   0.0495    0.0495      Target compt
+    2     -0.5   -0.596 -2.42e+03         0    0.088    0.268     0.318      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 16,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 88,   Parent ID = 82
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      2.3    0.366 -2.44e+03      0.42        0        0         0      Target initStep
-    1     2.59    0.304 -2.44e+03         0    0.088     2.52      2.52      Target phot
+    0     -0.5   -0.596 -2.42e+03     0.363        0        0         0      Target initStep
+    1   -0.496   -0.584 -2.42e+03         0    0.363    0.196     0.196      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 95,   Parent ID = 16
+* G4Track Information:   Particle = e-,   Track ID = 87,   Parent ID = 82
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.59    0.304 -2.44e+03     0.332        0        0         0      Target initStep
-    1     2.59     0.31 -2.44e+03         0    0.332    0.173     0.173      Target eIoni
+    0   -0.539   -0.824 -2.42e+03    0.0022        0        0         0      Target initStep
+    1   -0.539   -0.824 -2.42e+03         0   0.0022 8.65e-05  8.65e-05      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 15,   Parent ID = 1
+* G4Track Information:   Particle = gamma,   Track ID = 81,   Parent ID = 80
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.24    0.358 -2.44e+03      7.69        0        0         0      Target initStep
-    1     3.35    0.611 -2.44e+03         0        0     7.07      7.07      Target conv
+    0    -6.44    -2.62 -2.41e+03     0.123        0        0         0      Target initStep
+    1       -6    -2.58 -2.41e+03         0    0.088    0.457     0.457      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 96,   Parent ID = 15
+* G4Track Information:   Particle = e-,   Track ID = 89,   Parent ID = 81
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.35    0.611 -2.44e+03      1.67        0        0         0      Target initStep
-    1     3.39    0.609 -2.44e+03     0.954    0.534     0.57      0.57      Target eBrem
-    2     3.38     0.59 -2.44e+03         0    0.954    0.691      1.26      Target eIoni
+    0       -6    -2.58 -2.41e+03    0.0349        0        0         0      Target initStep
+    1       -6    -2.58 -2.41e+03         0   0.0349  0.00496   0.00496      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 98,   Parent ID = 96
+* G4Track Information:   Particle = gamma,   Track ID = 59,   Parent ID = 57
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.39    0.609 -2.44e+03      0.18        0        0         0      Target initStep
-    1     2.82    0.958 -2.43e+03     0.137        0     2.55      2.55      Target compt
-    2     3.07     1.02 -2.43e+03         0    0.088    0.269      2.82      Target phot
+    0   -0.886   -0.329 -2.44e+03      0.11        0        0         0      Target initStep
+    1   -0.884   -0.331 -2.44e+03    0.0796        0    0.022     0.022      Target compt
+    2   -0.868    -0.22 -2.44e+03         0   0.0159    0.163     0.185      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 100,   Parent ID = 98
+* G4Track Information:   Particle = e-,   Track ID = 91,   Parent ID = 59
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.07     1.02 -2.43e+03    0.0487        0        0         0      Target initStep
-    1     3.07     1.02 -2.43e+03         0   0.0487  0.00854   0.00854      Target eIoni
+    0   -0.868    -0.22 -2.44e+03    0.0637        0        0         0      Target initStep
+    1   -0.868    -0.22 -2.44e+03         0   0.0637   0.0132    0.0132      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 99,   Parent ID = 98
+* G4Track Information:   Particle = e-,   Track ID = 90,   Parent ID = 59
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.82    0.958 -2.43e+03    0.0432        0        0         0      Target initStep
-    1     2.82    0.958 -2.43e+03         0   0.0432  0.00703   0.00703      Target eIoni
+    0   -0.884   -0.331 -2.44e+03    0.0305        0        0         0      Target initStep
+    1   -0.884   -0.331 -2.44e+03         0   0.0305  0.00399   0.00399      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 14,   Parent ID = 1
+* G4Track Information:   Particle = gamma,   Track ID = 4,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.11    0.343 -2.44e+03      7.65        0        0         0      Target initStep
-    1     2.51    0.432 -2.44e+03     0.549        0     3.26      3.26      Target compt
-    2      6.3   -0.524 -2.44e+03         0    0.088     3.91      7.17      Target phot
+    0   -0.492   -0.267 -2.45e+03        36        0        0         0      Target initStep
+    1    -0.79   -0.766 -2.42e+03      3.55        0     26.6      26.6      Target compt
+    2    -1.47     1.58 -2.42e+03     0.552        0     5.09      31.7      Target compt
+    3   -0.967     2.73 -2.42e+03         0    0.088     1.27        33      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 102,   Parent ID = 14
+* G4Track Information:   Particle = e+,   Track ID = 77,   Parent ID = 62
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      6.3   -0.524 -2.44e+03     0.461        0        0         0      Target initStep
-    1     6.32   -0.529 -2.44e+03         0    0.461    0.273     0.273      Target eIoni
+    0     -1.8      3.5 -2.43e+03      1.21        0        0         0      Target initStep
+    1    -1.78     3.54 -2.43e+03         0     1.21    0.929     0.929      Target eIoni
+    2    -1.78     3.54 -2.43e+03         0        0        0     0.929      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 101,   Parent ID = 14
+* G4Track Information:   Particle = e+,   Track ID = 58,   Parent ID = 5
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.51    0.432 -2.44e+03       7.1        0        0         0      Target initStep
-    1     2.52    0.437 -2.44e+03      5.91    0.137    0.138     0.138      Target eBrem
-    2     2.52    0.428 -2.44e+03      4.32    0.289    0.215     0.352      Target eBrem
-    3     2.51     0.49 -2.44e+03      1.97    0.251    0.249     0.601      Target eBrem
-    4     2.66    0.446 -2.44e+03     0.568      1.4      1.4         2      Target eIoni
-    5     2.64    0.458 -2.44e+03         0    0.568     0.36      2.36      Target eIoni
+    0   -0.905    -0.38 -2.44e+03      87.2        0        0         0      Target initStep
+    1     -0.9   -0.375 -2.44e+03      43.8     1.64    0.912     0.912      Target eBrem
+    2     -0.9   -0.375 -2.44e+03      42.7   0.0237   0.0263     0.939      Target eBrem
+    3   -0.916    -0.39 -2.44e+03      38.9    0.297    0.251      1.19      Target eBrem
+    4    -1.01   -0.438 -2.44e+03      28.8    0.611    0.525      1.71      Target eBrem
+    5    -1.19   -0.536 -2.44e+03      25.5    0.967     0.64      2.35      Target eBrem
+    6    -1.59   -0.749 -2.44e+03      20.3    0.755    0.704      3.06      Target eBrem
+    7    -1.93    -1.02 -2.44e+03        13     1.02    0.587      3.65      Target eBrem
+    8    -2.05    -1.09 -2.44e+03      11.2    0.167    0.194      3.84      Target eBrem
+    9    -2.47    -1.26 -2.44e+03      9.92     0.92    0.671      4.51      Target eBrem
+   10    -3.29    -2.57 -2.44e+03      4.05     4.18     2.49         7      Target eBrem
+   11    -3.48    -2.74 -2.44e+03      1.81     2.24     2.05      9.05      Target eIoni
+   12    -3.36    -2.62 -2.44e+03         0     1.81     1.35      10.4      Target eIoni
+   13    -3.36    -2.62 -2.44e+03         0        0        0      10.4      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 105,   Parent ID = 101
+* G4Track Information:   Particle = e-,   Track ID = 94,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.51     0.49 -2.44e+03       2.1        0        0         0      Target initStep
-    1     4.29    -1.28 -2.44e+03     0.242        0     4.65      4.65      Target compt
-    2     1.26     1.32 -2.44e+03         0    0.088     4.52      9.17      Target phot
+    0   -0.967     2.73 -2.42e+03     0.464        0        0         0      Target initStep
+    1    -0.98     2.74 -2.42e+03         0    0.464    0.275     0.275      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 107,   Parent ID = 105
+* G4Track Information:   Particle = e-,   Track ID = 93,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.26     1.32 -2.44e+03     0.154        0        0         0      Target initStep
-    1     1.26     1.32 -2.44e+03         0    0.154   0.0542    0.0542      Target eIoni
+    0    -1.47     1.58 -2.42e+03         3        0        0         0      Target initStep
+    1     -1.5     1.61 -2.42e+03      2.69    0.156    0.138     0.138      Target eBrem
+    2    -1.48     1.64 -2.42e+03       2.4     0.12    0.131     0.269      Target eBrem
+    3    -1.49     1.71 -2.42e+03     0.474     1.44     0.94      1.21      Target eBrem
+    4     -1.5     1.71 -2.42e+03         0    0.474    0.283      1.49      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 106,   Parent ID = 105
+* G4Track Information:   Particle = e-,   Track ID = 92,   Parent ID = 4
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.29    -1.28 -2.44e+03      1.86        0        0         0      Target initStep
-    1     4.35    -1.34 -2.45e+03         0     1.86     1.35      1.35      Target eIoni
+    0    -0.79   -0.766 -2.42e+03      32.4        0        0         0      Target initStep
+    1   -0.782   -0.794 -2.42e+03      30.7    0.211    0.218     0.218      Target eIoni
+    2   -0.801    -0.89 -2.42e+03      23.6    0.501    0.369     0.588      Target eBrem
+    3   -0.663    -1.98 -2.42e+03      17.5      6.1        4      4.59      Target eBrem
+    4  -0.0797    -1.56 -2.42e+03      16.4     0.95    0.781      5.37      Target eBrem
+    5     1.94   -0.862 -2.42e+03      11.6     4.32     3.16      8.53      Target eBrem
+    6     1.97   -0.844 -2.42e+03      10.9   0.0398   0.0407      8.57      Target eBrem
+    7      3.7   -0.218 -2.42e+03       7.1     3.81     3.28      11.9      Target eIoni
+    8     3.56   -0.315 -2.42e+03      4.87    0.263    0.265      12.1      Target eIoni
+    9     3.35   -0.457 -2.42e+03      2.49    0.445     0.37      12.5      Target eIoni
+   10     3.47   -0.645 -2.42e+03     0.574     1.91      1.6      14.1      Target eIoni
+   11     3.44   -0.639 -2.42e+03         0    0.574    0.366      14.5      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 104,   Parent ID = 101
+* G4Track Information:   Particle = e-,   Track ID = 118,   Parent ID = 92
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.52    0.428 -2.44e+03       1.3        0        0         0      Target initStep
-    1      2.3     1.64 -2.44e+03     0.745        0     5.33      5.33      Target compt
-    2     2.22     1.43 -2.44e+03     0.715        0    0.412      5.74      Target compt
-    3     1.97    0.992 -2.43e+03     0.536        0     1.49      7.23      Target compt
-    4     2.99    0.726 -2.43e+03     0.206        0     2.03      9.26      Target compt
-    5     2.85    0.702 -2.43e+03         0    0.088    0.148      9.41      Target phot
+    0     3.35   -0.457 -2.42e+03      1.93        0        0         0      Target initStep
+    1     3.39   -0.567 -2.42e+03         0     1.93     1.38      1.38      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 112,   Parent ID = 104
+* G4Track Information:   Particle = e-,   Track ID = 117,   Parent ID = 92
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.85    0.702 -2.43e+03     0.118        0        0         0      Target initStep
-    1     2.85    0.701 -2.43e+03         0    0.118   0.0357    0.0357      Target eIoni
+    0     3.56   -0.315 -2.42e+03      1.97        0        0         0      Target initStep
+    1     3.46   -0.286 -2.42e+03         0     1.97      1.4       1.4      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 111,   Parent ID = 104
+* G4Track Information:   Particle = e-,   Track ID = 112,   Parent ID = 92
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.99    0.726 -2.43e+03      0.33        0        0         0      Target initStep
-    1        3    0.725 -2.43e+03         0     0.33    0.171     0.171      Target eIoni
+    0   -0.782   -0.794 -2.42e+03      1.58        0        0         0      Target initStep
+    1   -0.838   -0.772 -2.42e+03     0.663    0.409    0.382     0.382      Target eBrem
+    2   -0.827   -0.772 -2.42e+03         0    0.663     0.44     0.822      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 110,   Parent ID = 104
+* G4Track Information:   Particle = gamma,   Track ID = 119,   Parent ID = 112
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.97    0.992 -2.43e+03     0.179        0        0         0      Target initStep
-    1     1.97     0.99 -2.43e+03         0    0.179   0.0689    0.0689      Target eIoni
+    0   -0.838   -0.772 -2.42e+03     0.504        0        0         0      Target initStep
+    1     10.1     2.44 -2.4e+03     0.504        0     25.5      25.5     Tracker Transportation
+    2      727      214     -900     0.504        0 1.68e+03   1.7e+03  Chamber_PV Transportation
+    3      748      220     -856     0.504        0     49.4  1.75e+03     Tracker Transportation
+    4 1.11e+03      327     -100     0.504        0      844   2.6e+03  Chamber_PV Transportation
+    5 1.21e+03      355      100     0.504        0      223  2.82e+03     Tracker Transportation
+    6 1.49e+03      440      700     0.504        0      670  3.49e+03  Chamber_PV Transportation
+    7 1.59e+03      468      900     0.504        0      223  3.71e+03     Tracker Transportation
+    8 1.87e+03      552  1.5e+03     0.504        0      670  4.38e+03  Chamber_PV Transportation
+    9 1.97e+03      581  1.7e+03     0.504        0      223  4.61e+03     Tracker Transportation
+   10  2.3e+03      679 2.39e+03     0.504        0      776  5.38e+03       World Transportation
+   11 2.56e+03      756 2.94e+03     0.504        0      610  5.99e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 109,   Parent ID = 104
+* G4Track Information:   Particle = gamma,   Track ID = 116,   Parent ID = 92
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.22     1.43 -2.44e+03    0.0291        0        0         0      Target initStep
-    1     2.22     1.43 -2.44e+03         0   0.0291  0.00371   0.00371      Target eIoni
+    0     1.97   -0.844 -2.42e+03     0.656        0        0         0      Target initStep
+    1     7.26    0.574 -2.42e+03     0.552        0     5.53      5.53      Target compt
+    2     7.34    0.644 -2.42e+03         0    0.088    0.108      5.64      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 108,   Parent ID = 104
+* G4Track Information:   Particle = e-,   Track ID = 121,   Parent ID = 116
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      2.3     1.64 -2.44e+03     0.555        0        0         0      Target initStep
-    1      2.3     1.66 -2.44e+03         0    0.555     0.35      0.35      Target eIoni
+    0     7.34    0.644 -2.42e+03     0.464        0        0         0      Target initStep
+    1     7.35    0.655 -2.42e+03         0    0.464    0.275     0.275      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 103,   Parent ID = 101
+* G4Track Information:   Particle = e-,   Track ID = 120,   Parent ID = 116
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.52    0.437 -2.44e+03      1.06        0        0         0      Target initStep
-    1     2.43   0.0488 -2.43e+03      0.22        0     15.9      15.9      Target compt
-    2     2.49    0.286 -2.43e+03         0    0.088    0.432      16.3      Target phot
+    0     7.26    0.574 -2.42e+03     0.104        0        0         0      Target initStep
+    1     7.26    0.573 -2.42e+03         0    0.104   0.0293    0.0293      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 114,   Parent ID = 103
+* G4Track Information:   Particle = gamma,   Track ID = 115,   Parent ID = 92
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.49    0.286 -2.43e+03     0.132        0        0         0      Target initStep
-    1     2.49    0.288 -2.43e+03         0    0.132   0.0428    0.0428      Target eIoni
+    0     1.94   -0.862 -2.42e+03     0.487        0        0         0      Target initStep
+    1     3.99    0.125 -2.42e+03     0.169        0     2.31      2.31      Target compt
+    2     3.96    0.107 -2.42e+03         0    0.088   0.0361      2.35      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 113,   Parent ID = 103
+* G4Track Information:   Particle = e-,   Track ID = 123,   Parent ID = 115
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.43   0.0488 -2.43e+03     0.835        0        0         0      Target initStep
-    1     2.43   0.0437 -2.43e+03         0    0.835    0.588     0.588      Target eIoni
+    0     3.96    0.107 -2.42e+03    0.0813        0        0         0      Target initStep
+    1     3.96    0.106 -2.42e+03         0   0.0813   0.0196    0.0196      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 13,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 122,   Parent ID = 115
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.05    0.369 -2.45e+03     0.922        0        0         0      Target initStep
-    1     3.82    0.126 -2.42e+03     0.858        0     29.8      29.8      Target compt
-    2     3.97  -0.0579 -2.42e+03     0.334        0    0.732      30.5      Target compt
-    3      5.8     3.82 -2.41e+03         0    0.088     4.39      34.9      Target phot
+    0     3.99    0.125 -2.42e+03     0.318        0        0         0      Target initStep
+    1        4     0.13 -2.42e+03         0    0.318    0.162     0.162      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 117,   Parent ID = 13
+* G4Track Information:   Particle = gamma,   Track ID = 114,   Parent ID = 92
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      5.8     3.82 -2.41e+03     0.246        0        0         0      Target initStep
-    1      5.8     3.83 -2.41e+03   0.00584   0.0958   0.0618    0.0618      Target eBrem
-    2      5.8     3.83 -2.41e+03         0  0.00584 0.000324    0.0621      Target eIoni
+    0  -0.0797    -1.56 -2.42e+03     0.163        0        0         0      Target initStep
+    1    0.198    -1.48 -2.42e+03         0    0.088    0.349     0.349      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 116,   Parent ID = 13
+* G4Track Information:   Particle = e-,   Track ID = 124,   Parent ID = 114
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.97  -0.0579 -2.42e+03     0.524        0        0         0      Target initStep
-    1     3.97  -0.0706 -2.42e+03         0    0.524    0.324     0.324      Target eIoni
+    0    0.198    -1.48 -2.42e+03    0.0746        0        0         0      Target initStep
+    1    0.199    -1.48 -2.42e+03         0   0.0746   0.0171    0.0171      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 115,   Parent ID = 13
+* G4Track Information:   Particle = gamma,   Track ID = 113,   Parent ID = 92
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.82    0.126 -2.42e+03    0.0639        0        0         0      Target initStep
-    1     3.82    0.127 -2.42e+03         0   0.0639   0.0133    0.0133      Target eIoni
+    0   -0.801    -0.89 -2.42e+03      6.53        0        0         0      Target initStep
+    1   -0.656     -6.6 -2.41e+03         0        0     17.1      17.1      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 118,   Parent ID = 117
+* G4Track Information:   Particle = e-,   Track ID = 125,   Parent ID = 113
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      5.8     3.83 -2.41e+03     0.145        0        0         0      Target initStep
-    1     5.99     3.78 -2.41e+03         0    0.088    0.197     0.197      Target phot
+    0   -0.656     -6.6 -2.41e+03      2.71        0        0         0      Target initStep
+    1   -0.653    -6.62 -2.41e+03      2.03   0.0766   0.0739    0.0739      Target eBrem
+    2   -0.634    -6.69 -2.41e+03      1.52    0.086    0.109     0.183      Target eBrem
+    3   -0.628    -6.76 -2.41e+03      1.04    0.336    0.338     0.521      Target eBrem
+    4   -0.631    -6.74 -2.41e+03         0     1.04    0.769      1.29      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 119,   Parent ID = 118
+* G4Track Information:   Particle = gamma,   Track ID = 129,   Parent ID = 125
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.99     3.78 -2.41e+03    0.0566        0        0         0      Target initStep
-    1     5.99     3.78 -2.41e+03         0   0.0566   0.0109    0.0109      Target eIoni
+    0   -0.628    -6.76 -2.41e+03     0.136        0        0         0      Target initStep
+    1    -0.41    -6.56 -2.41e+03         0    0.088    0.766     0.766      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 12,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 130,   Parent ID = 129
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.04    0.361 -2.45e+03      19.1        0        0         0      Target initStep
-    1     3.06     1.27 -2.43e+03         0        0     16.4      16.4      Target conv
+    0    -0.41    -6.56 -2.41e+03    0.0484        0        0         0      Target initStep
+    1   -0.409    -6.56 -2.41e+03         0   0.0484  0.00846   0.00846      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 120,   Parent ID = 12
+* G4Track Information:   Particle = gamma,   Track ID = 128,   Parent ID = 125
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.06     1.27 -2.43e+03     0.669        0        0         0      Target initStep
-    1     3.07     1.28 -2.43e+03         0    0.669    0.445     0.445      Target eIoni
+    0   -0.634    -6.69 -2.41e+03     0.426        0        0         0      Target initStep
+    1    -1.88    -11.6 -2.4e+03     0.305        0     8.02      8.02      Target compt
+    2    -2.17    -11.7 -2.4e+03     0.305        0    0.315      8.33     Tracker Transportation
+    3 -2.35e+03     -469 -1.49e+03     0.305        0 2.56e+03  2.57e+03       World Transportation
+    4 -2.94e+03     -583 -1.26e+03     0.305        0      639  3.21e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 11,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 131,   Parent ID = 128
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0        2    0.334 -2.45e+03     0.142        0        0         0      Target initStep
-    1     2.09    0.376 -2.45e+03         0    0.088     1.19      1.19      Target phot
+    0    -1.88    -11.6 -2.4e+03      0.12        0        0         0      Target initStep
+    1    -1.88    -11.6 -2.4e+03         0     0.12   0.0368    0.0368      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 122,   Parent ID = 11
+* G4Track Information:   Particle = gamma,   Track ID = 127,   Parent ID = 125
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.09    0.376 -2.45e+03    0.0544        0        0         0      Target initStep
-    1     2.09    0.376 -2.45e+03         0   0.0544   0.0102    0.0102      Target eIoni
+    0   -0.653    -6.62 -2.41e+03     0.609        0        0         0      Target initStep
+    1    -1.39    -7.36 -2.4e+03      0.27        0     2.02      2.02      Target compt
+    2    -2.07    -6.99 -2.4e+03         0    0.088    0.793      2.81      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 10,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 133,   Parent ID = 127
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.91    0.354 -2.45e+03     0.315        0        0         0      Target initStep
-    1     2.06    0.361 -2.44e+03         0    0.088     4.92      4.92      Target phot
+    0    -2.07    -6.99 -2.4e+03     0.182        0        0         0      Target initStep
+    1    -2.08    -6.99 -2.4e+03         0    0.182   0.0704    0.0704      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 123,   Parent ID = 10
+* G4Track Information:   Particle = e-,   Track ID = 132,   Parent ID = 127
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.06    0.361 -2.44e+03     0.227        0        0         0      Target initStep
-    1     2.06    0.359 -2.44e+03         0    0.227   0.0988    0.0988      Target eIoni
+    0    -1.39    -7.36 -2.4e+03     0.339        0        0         0      Target initStep
+    1    -1.39    -7.36 -2.4e+03         0    0.339    0.178     0.178      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 8,   Parent ID = 1
+* G4Track Information:   Particle = gamma,   Track ID = 111,   Parent ID = 93
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.91    0.359 -2.45e+03      5.36        0        0         0      Target initStep
-    1      1.5    0.894 -2.41e+03      1.01        0       44        44      Target compt
-    2     6.54   -0.404 -2.4e+03     0.248        0     6.48      50.5      Target compt
-    3     5.91    0.592 -2.4e+03         0    0.088     1.18      51.6      Target phot
+    0    -1.49     1.71 -2.42e+03      0.49        0        0         0      Target initStep
+    1    -5.89    -2.52 -2.42e+03         0    0.088     6.98      6.98      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 126,   Parent ID = 8
+* G4Track Information:   Particle = e-,   Track ID = 134,   Parent ID = 111
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.91    0.592 -2.4e+03      0.16        0        0         0      Target initStep
-    1     5.91    0.595 -2.4e+03         0     0.16   0.0576    0.0576      Target eIoni
+    0    -5.89    -2.52 -2.42e+03     0.402        0        0         0      Target initStep
+    1    -5.89    -2.53 -2.42e+03         0    0.402    0.226     0.226      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 125,   Parent ID = 8
+* G4Track Information:   Particle = gamma,   Track ID = 110,   Parent ID = 93
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     6.54   -0.404 -2.4e+03     0.757        0        0         0      Target initStep
-    1     6.57   -0.418 -2.4e+03         0    0.757    0.521     0.521      Target eIoni
+    0    -1.48     1.64 -2.42e+03     0.167        0        0         0      Target initStep
+    1    -1.59     2.33 -2.42e+03         0    0.088     1.71      1.71      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 124,   Parent ID = 8
+* G4Track Information:   Particle = e-,   Track ID = 135,   Parent ID = 110
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.5    0.894 -2.41e+03      4.35        0        0         0      Target initStep
-    1     1.41    0.923 -2.4e+03      1.73     2.62     2.09      2.09      Target eIoni
-    2     1.43    0.802 -2.4e+03         0     1.73     1.28      3.37      Target eIoni
+    0    -1.59     2.33 -2.42e+03    0.0791        0        0         0      Target initStep
+    1    -1.59     2.33 -2.42e+03         0   0.0791   0.0188    0.0188      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 7,   Parent ID = 1
+* G4Track Information:   Particle = gamma,   Track ID = 109,   Parent ID = 93
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.91    0.359 -2.45e+03      50.5        0        0         0      Target initStep
-    1      1.9    0.376 -2.45e+03         0        0     1.47      1.47      Target conv
+    0     -1.5     1.61 -2.42e+03     0.152        0        0         0      Target initStep
+    1     -1.5     1.65 -2.42e+03         0    0.088    0.386     0.386      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 6,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 136,   Parent ID = 109
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.91     0.36 -2.45e+03     0.126        0        0         0      Target initStep
-    1     1.91    0.357 -2.45e+03         0    0.088    0.109     0.109      Target phot
+    0     -1.5     1.65 -2.42e+03    0.0641        0        0         0      Target initStep
+    1     -1.5     1.65 -2.42e+03         0   0.0641   0.0134    0.0134      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 5,   Parent ID = 1
+* G4Track Information:   Particle = gamma,   Track ID = 108,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.91    0.362 -2.45e+03      17.9        0        0         0      Target initStep
-    1     1.92    0.341 -2.45e+03         0        0     1.16      1.16      Target conv
+    0    -3.36    -2.62 -2.44e+03     0.511        0        0         0      Target initStep
+    1     1.38        1 -2.44e+03     0.465        0     6.22      6.22      Target compt
+    2     1.88     1.86 -2.44e+03     0.461        0    0.998      7.22      Target compt
+    3     2.52     3.29 -2.44e+03         0    0.088     1.56      8.78      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 131,   Parent ID = 5
+* G4Track Information:   Particle = e-,   Track ID = 139,   Parent ID = 108
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.92    0.341 -2.45e+03      13.1        0        0         0      Target initStep
-    1     1.98   0.0787 -2.45e+03      12.2    0.864     0.76      0.76      Target msc
-    2     1.65    -0.51 -2.45e+03        11     1.22    0.808      1.57      Target msc
-    3     1.53   -0.796 -2.45e+03      7.61    0.696     0.56      2.13      Target eBrem
-    4     1.51   -0.829 -2.45e+03      5.51   0.0885     0.12      2.25      Target eBrem
-    5     1.48   -0.887 -2.45e+03      5.26    0.132    0.132      2.38      Target eBrem
-    6     1.44   -0.849 -2.45e+03      4.79    0.464    0.358      2.74      Target eBrem
-    7      1.9   -0.921 -2.45e+03         0     0.61    0.627      3.37      Target annihil
+    0     2.52     3.29 -2.44e+03     0.373        0        0         0      Target initStep
+    1     2.51      3.3 -2.44e+03         0    0.373    0.203     0.203      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 128,   Parent ID = 7
+* G4Track Information:   Particle = e-,   Track ID = 138,   Parent ID = 108
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.9    0.376 -2.45e+03        22        0        0         0      Target initStep
-    1      1.9  -0.0796 -2.45e+03      19.1     2.93     1.58      1.58      Target msc
-    2     1.68   -0.276 -2.44e+03      10.1     3.17     2.39      3.96      Target eBrem
-    3     1.65   -0.336 -2.44e+03      6.82    0.104    0.087      4.05      Target eBrem
-    4     1.62   -0.383 -2.44e+03      5.61   0.0636   0.0719      4.12      Target eBrem
-    5     1.26   -0.575 -2.44e+03      4.57     0.51    0.592      4.72      Target eBrem
-    6     1.26   -0.764 -2.44e+03       3.7     0.24    0.231      4.95      Target eBrem
-    7      1.3   -0.927 -2.44e+03       3.3     0.24    0.247      5.19      Target eBrem
-    8     1.28   -0.788 -2.44e+03      2.46    0.654    0.533      5.73      Target eBrem
-    9      1.2    -1.01 -2.44e+03     0.913     1.55     1.62      7.34      Target eIoni
-   10     1.18   -0.964 -2.44e+03      0.27    0.643    0.591      7.93      Target eBrem
-   11     1.19   -0.957 -2.44e+03         0     0.27    0.124      8.06      Target eIoni
-   12     1.19   -0.957 -2.44e+03         0        0        0      8.06      Target annihil
+    0     1.88     1.86 -2.44e+03   0.00477        0        0         0      Target initStep
+    1     1.88     1.86 -2.44e+03         0  0.00477 0.000245  0.000245      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 121,   Parent ID = 12
+* G4Track Information:   Particle = e-,   Track ID = 137,   Parent ID = 108
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.06     1.27 -2.43e+03      17.4        0        0         0      Target initStep
-    1     3.08     1.29 -2.43e+03      15.3     1.44        1         1      Target eBrem
-    2      2.5     1.48 -2.43e+03      14.3     0.85    0.897       1.9      Target eBrem
-    3     2.15      1.5 -2.43e+03      12.2    0.503    0.494      2.39      Target eBrem
-    4     1.15     1.12 -2.43e+03      8.48     3.33     2.44      4.83      Target eBrem
-    5     1.08     1.13 -2.43e+03      8.16    0.184   0.0858      4.92      Target eBrem
-    6    0.963     1.18 -2.43e+03      7.69    0.326    0.218      5.14      Target eBrem
-    7    0.412     1.44 -2.43e+03      1.73     2.45     1.37      6.51      Target eIoni
-    8    0.577     1.41 -2.43e+03     0.305     1.31     1.11      7.62      Target eBrem
-    9    0.578      1.4 -2.43e+03         0    0.305    0.149      7.77      Target eIoni
-   10    0.578      1.4 -2.43e+03         0        0        0      7.77      Target annihil
+    0     1.38        1 -2.44e+03    0.0456        0        0         0      Target initStep
+    1     1.38        1 -2.44e+03         0   0.0456  0.00767   0.00767      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 97,   Parent ID = 15
+* G4Track Information:   Particle = gamma,   Track ID = 107,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.35    0.611 -2.44e+03         5        0        0         0      Target initStep
-    1     3.42    0.652 -2.44e+03      2.83     2.18      1.6       1.6      Target eBrem
-    2     3.64    0.904 -2.44e+03     0.997     1.83     1.73      3.33      Target eIoni
-    3      3.6    0.972 -2.44e+03         0    0.997    0.735      4.07      Target eIoni
-    4      3.6    0.972 -2.44e+03         0        0        0      4.07      Target annihil
+    0    -3.36    -2.62 -2.44e+03     0.511        0        0         0      Target initStep
+    1    -9.04    -6.95 -2.44e+03     0.173        0     7.44      7.44      Target compt
+    2    -8.76    -6.78 -2.44e+03         0    0.088    0.319      7.76      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 82,   Parent ID = 22
+* G4Track Information:   Particle = e-,   Track ID = 141,   Parent ID = 107
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.35    -4.42 -2.43e+03     0.357        0        0         0      Target initStep
-    1     3.33    -4.42 -2.43e+03         0    0.357    0.188     0.188      Target eIoni
-    2     3.33    -4.42 -2.43e+03         0        0        0     0.188      Target annihil
+    0    -8.76    -6.78 -2.44e+03    0.0846        0        0         0      Target initStep
+    1    -8.76    -6.78 -2.44e+03         0   0.0846   0.0209    0.0209      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 71,   Parent ID = 25
+* G4Track Information:   Particle = e-,   Track ID = 140,   Parent ID = 107
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.31     13.6 -2.41e+03      11.2        0        0         0      Target initStep
-    1      4.4     13.8 -2.41e+03      10.4    0.404    0.337     0.337      Target eBrem
-    2     4.47     13.9 -2.41e+03       8.6     0.75    0.729      1.07      Target eIoni
-    3     4.27     14.2 -2.41e+03      4.02    0.482    0.423      1.49      Target eBrem
-    4     4.26     14.2 -2.41e+03      3.82   0.0209   0.0231      1.51      Target eBrem
-    5     4.08     14.3 -2.41e+03      2.78    0.245    0.282      1.79      Target eBrem
-    6     3.78     14.3 -2.41e+03       1.1     1.68     1.72      3.51      Target eIoni
-    7     3.81     14.3 -2.41e+03         0      1.1    0.829      4.34      Target eIoni
-    8     3.81     14.3 -2.41e+03         0        0        0      4.34      Target annihil
+    0    -9.04    -6.95 -2.44e+03     0.338        0        0         0      Target initStep
+    1    -9.05    -6.96 -2.44e+03         0    0.338    0.177     0.177      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 161,   Parent ID = 71
+* G4Track Information:   Particle = gamma,   Track ID = 106,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.47     13.9 -2.41e+03      1.09        0        0         0      Target initStep
-    1     4.43     13.9 -2.41e+03         0     1.09    0.809     0.809      Target eIoni
+    0    -3.29    -2.57 -2.44e+03      1.69        0        0         0      Target initStep
+    1    -10.1    -8.34 -2.42e+03     0.318        0     20.8      20.8      Target compt
+    2    -10.8     -9.2 -2.42e+03         0    0.088     1.51      22.3      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 152,   Parent ID = 121
+* G4Track Information:   Particle = e-,   Track ID = 143,   Parent ID = 106
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.412     1.44 -2.43e+03      3.51        0        0         0      Target initStep
-    1    0.415     1.44 -2.43e+03      2.69  0.00283  0.00844   0.00844      Target eBrem
-    2    0.518     1.52 -2.43e+03      1.81    0.877    0.641      0.65      Target eBrem
-    3    0.525     1.52 -2.43e+03      1.27  0.00667   0.0103      0.66      Target eBrem
-    4    0.546      1.5 -2.43e+03      1.13   0.0363   0.0361     0.696      Target eBrem
-    5     0.61     1.49 -2.43e+03         0     1.13    0.843      1.54      Target eIoni
+    0    -10.8     -9.2 -2.42e+03      0.23        0        0         0      Target initStep
+    1    -10.8    -9.21 -2.42e+03         0     0.23    0.101     0.101      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 130,   Parent ID = 5
+* G4Track Information:   Particle = e-,   Track ID = 142,   Parent ID = 106
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.92    0.341 -2.45e+03      3.78        0        0         0      Target initStep
-    1      2.2    0.499 -2.45e+03      2.82     0.61    0.475     0.475      Target eBrem
-    2     2.21    0.564 -2.45e+03      1.36   0.0768   0.0712     0.546      Target eBrem
-    3     2.25    0.633 -2.45e+03     0.514     0.49    0.472      1.02      Target eBrem
-    4     2.26    0.641 -2.45e+03         0    0.514    0.316      1.33      Target eIoni
+    0    -10.1    -8.34 -2.42e+03      1.37        0        0         0      Target initStep
+    1    -10.1    -8.35 -2.42e+03     0.211     1.16     1.05      1.05      Target eIoni
+    2    -10.1    -8.35 -2.42e+03         0    0.211   0.0883      1.14      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 129,   Parent ID = 6
+* G4Track Information:   Particle = gamma,   Track ID = 105,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.91    0.357 -2.45e+03     0.038        0        0         0      Target initStep
-    1     1.91    0.357 -2.45e+03         0    0.038  0.00571   0.00571      Target eIoni
+    0    -2.47    -1.26 -2.44e+03     0.401        0        0         0      Target initStep
+    1    -4.97    -5.39 -2.44e+03     0.173        0     4.87      4.87      Target compt
+    2    -5.02    -5.16 -2.44e+03         0    0.088    0.239      5.11      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 127,   Parent ID = 7
+* G4Track Information:   Particle = e-,   Track ID = 145,   Parent ID = 105
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.9    0.376 -2.45e+03      27.5        0        0         0      Target initStep
-    1     1.57     0.47 -2.45e+03      24.9     2.31     1.65      1.65      Target eBrem
-    2     1.53    0.468 -2.45e+03      23.1    0.146    0.136      1.79      Target eBrem
-    3     1.19    0.585 -2.45e+03      21.2     1.46     1.02      2.81      Target eBrem
-    4     1.09    0.622 -2.44e+03      5.56    0.258    0.239      3.05      Target eBrem
-    5     0.78    0.681 -2.44e+03      2.12     3.44     2.05       5.1      Target eBrem
-    6    0.822    0.833 -2.44e+03     0.354     1.56     1.43      6.54      Target eBrem
-    7    0.833    0.839 -2.44e+03         0    0.354    0.189      6.73      Target eIoni
+    0    -5.02    -5.16 -2.44e+03    0.0855        0        0         0      Target initStep
+    1    -5.03    -5.16 -2.44e+03         0   0.0855   0.0213    0.0213      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 177,   Parent ID = 127
+* G4Track Information:   Particle = e-,   Track ID = 144,   Parent ID = 105
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.822    0.833 -2.44e+03     0.204        0        0         0      Target initStep
-    1    0.245     0.61 -2.44e+03     0.129        0    0.637     0.637      Target compt
-    2    0.317    0.615 -2.44e+03         0    0.088    0.286     0.923      Target phot
+    0    -4.97    -5.39 -2.44e+03     0.228        0        0         0      Target initStep
+    1    -4.98     -5.4 -2.44e+03         0    0.228   0.0991    0.0991      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 179,   Parent ID = 177
+* G4Track Information:   Particle = gamma,   Track ID = 104,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.317    0.615 -2.44e+03    0.0408        0        0         0      Target initStep
-    1    0.316    0.615 -2.44e+03         0   0.0408  0.00641   0.00641      Target eIoni
+    0    -2.05    -1.09 -2.44e+03      1.58        0        0         0      Target initStep
+    1    -2.52    -1.29 -2.44e+03     0.916        0    0.682     0.682      Target compt
+    2    -8.52     2.66 -2.43e+03         0    0.088       10      10.7      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 178,   Parent ID = 177
+* G4Track Information:   Particle = e-,   Track ID = 147,   Parent ID = 104
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.245     0.61 -2.44e+03    0.0751        0        0         0      Target initStep
-    1    0.244     0.61 -2.44e+03         0   0.0751   0.0173    0.0173      Target eIoni
+    0    -8.52     2.66 -2.43e+03     0.828        0        0         0      Target initStep
+    1    -8.54     2.66 -2.43e+03     0.213    0.219    0.115     0.115      Target eBrem
+    2    -8.53     2.66 -2.43e+03         0    0.213   0.0898     0.205      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 176,   Parent ID = 127
+* G4Track Information:   Particle = e-,   Track ID = 146,   Parent ID = 104
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.09    0.622 -2.44e+03      15.4        0        0         0      Target initStep
-    1     -2.7     1.62 -2.44e+03         0        0     10.1      10.1      Target conv
+    0    -2.52    -1.29 -2.44e+03     0.666        0        0         0      Target initStep
+    1    -2.53    -1.31 -2.44e+03         0    0.666    0.443     0.443      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 180,   Parent ID = 176
+* G4Track Information:   Particle = gamma,   Track ID = 148,   Parent ID = 147
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -2.7     1.62 -2.44e+03      8.07        0        0         0      Target initStep
-    1    -2.74     1.63 -2.44e+03      7.86   0.0548   0.0928    0.0928      Target eBrem
-    2    -3.03     1.56 -2.43e+03      6.57     1.16     1.13      1.23      Target eBrem
-    3    -3.72     1.96 -2.44e+03      3.73     2.84     2.53      3.75      Target eIoni
-    4    -4.12     1.91 -2.44e+03     0.991     2.62     1.92      5.68      Target eBrem
-    5    -4.08     1.94 -2.44e+03         0    0.991    0.723       6.4      Target eIoni
+    0    -8.54     2.66 -2.43e+03     0.396        0        0         0      Target initStep
+    1    -6.19     4.99 -2.43e+03         0    0.088     3.52      3.52      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 184,   Parent ID = 180
+* G4Track Information:   Particle = e-,   Track ID = 149,   Parent ID = 148
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -4.12     1.91 -2.44e+03     0.122        0        0         0      Target initStep
-    1       -4     2.02 -2.44e+03         0    0.088    0.187     0.187      Target phot
+    0    -6.19     4.99 -2.43e+03     0.307        0        0         0      Target initStep
+    1    -6.18     4.99 -2.43e+03         0    0.307    0.154     0.154      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 185,   Parent ID = 184
+* G4Track Information:   Particle = gamma,   Track ID = 103,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       -4     2.02 -2.44e+03    0.0345        0        0         0      Target initStep
-    1       -4     2.02 -2.44e+03         0   0.0345  0.00488   0.00488      Target eIoni
+    0    -1.93    -1.02 -2.44e+03      6.25        0        0         0      Target initStep
+    1    -13.3    -7.69 -2.43e+03      1.07        0     18.5      18.5      Target compt
+    2    -12.5    -9.83 -2.42e+03     0.359        0     3.32      21.8      Target compt
+    3    -7.34    -10.4 -2.43e+03         0    0.088      5.5      27.3      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 183,   Parent ID = 180
+* G4Track Information:   Particle = e-,   Track ID = 152,   Parent ID = 103
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.03     1.56 -2.43e+03     0.141        0        0         0      Target initStep
-    1    -3.64     1.91 -2.44e+03         0    0.088    0.833     0.833      Target phot
+    0    -7.34    -10.4 -2.43e+03     0.271        0        0         0      Target initStep
+    1    -7.33    -10.4 -2.43e+03         0    0.271    0.129     0.129      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 186,   Parent ID = 183
+* G4Track Information:   Particle = e-,   Track ID = 151,   Parent ID = 103
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.64     1.91 -2.44e+03    0.0529        0        0         0      Target initStep
-    1    -3.64     1.91 -2.44e+03         0   0.0529  0.00978   0.00978      Target eIoni
+    0    -12.5    -9.83 -2.42e+03     0.707        0        0         0      Target initStep
+    1    -12.5    -9.85 -2.42e+03         0    0.707    0.478     0.478      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 182,   Parent ID = 180
+* G4Track Information:   Particle = e-,   Track ID = 150,   Parent ID = 103
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.74     1.63 -2.44e+03      0.15        0        0         0      Target initStep
-    1    -2.75     1.63 -2.44e+03     0.131        0   0.0283    0.0283      Target compt
-    2    -2.84    0.898 -2.44e+03         0    0.088    0.803     0.831      Target phot
+    0    -13.3    -7.69 -2.43e+03      5.18        0        0         0      Target initStep
+    1    -13.3    -7.69 -2.43e+03      4.02    0.155   0.0124    0.0124      Target eBrem
+    2    -13.6    -7.83 -2.43e+03      1.66     1.34     1.06      1.07      Target eBrem
+    3    -13.6    -7.84 -2.43e+03     0.288     1.37     1.24      2.31      Target eIoni
+    4    -13.6    -7.84 -2.43e+03         0    0.288     0.14      2.45      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 188,   Parent ID = 182
+* G4Track Information:   Particle = gamma,   Track ID = 154,   Parent ID = 150
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.84    0.898 -2.44e+03    0.0434        0        0         0      Target initStep
-    1    -2.84    0.897 -2.44e+03         0   0.0434  0.00708   0.00708      Target eIoni
+    0    -13.6    -7.83 -2.43e+03      1.02        0        0         0      Target initStep
+    1    -9.56    -9.59 -2.44e+03      0.98        0     15.5      15.5      Target compt
+    2    -8.97    -10.6 -2.44e+03     0.209        0     3.53      19.1      Target compt
+    3       -9    -10.8 -2.44e+03     0.142        0     2.22      21.3      Target compt
+    4    -9.06    -10.6 -2.44e+03         0    0.088    0.179      21.5      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 187,   Parent ID = 182
+* G4Track Information:   Particle = e-,   Track ID = 158,   Parent ID = 154
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.75     1.63 -2.44e+03    0.0183        0        0         0      Target initStep
-    1    -2.75     1.63 -2.44e+03         0   0.0183  0.00177   0.00177      Target eIoni
+    0    -9.06    -10.6 -2.44e+03    0.0536        0        0         0      Target initStep
+    1    -9.06    -10.6 -2.44e+03         0   0.0536     0.01      0.01      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 175,   Parent ID = 127
+* G4Track Information:   Particle = e-,   Track ID = 157,   Parent ID = 154
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.19    0.585 -2.45e+03     0.433        0        0         0      Target initStep
-    1   -0.973    0.738 -2.44e+03     0.361        0     4.66      4.66      Target compt
-    2    -1.24    0.747 -2.44e+03     0.323        0    0.291      4.95      Target compt
-    3    -7.57     4.58 -2.44e+03     0.299        0     7.42      12.4      Target compt
-    4    -8.15      5.1 -2.44e+03     0.269        0    0.915      13.3      Target compt
-    5    -10.3      5.1 -2.44e+03         0    0.088     3.44      16.7      Target phot
+    0       -9    -10.8 -2.44e+03    0.0676        0        0         0      Target initStep
+    1       -9    -10.8 -2.44e+03         0   0.0676   0.0146    0.0146      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 193,   Parent ID = 175
+* G4Track Information:   Particle = e-,   Track ID = 156,   Parent ID = 154
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -10.3      5.1 -2.44e+03     0.181        0        0         0      Target initStep
-    1    -10.3     5.11 -2.44e+03         0    0.181   0.0699    0.0699      Target eIoni
+    0    -8.97    -10.6 -2.44e+03     0.771        0        0         0      Target initStep
+    1    -8.96    -10.6 -2.44e+03         0    0.771    0.533     0.533      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 192,   Parent ID = 175
+* G4Track Information:   Particle = e-,   Track ID = 155,   Parent ID = 154
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -8.15      5.1 -2.44e+03      0.03        0        0         0      Target initStep
-    1    -8.15      5.1 -2.44e+03         0     0.03  0.00389   0.00389      Target eIoni
+    0    -9.56    -9.59 -2.44e+03     0.038        0        0         0      Target initStep
+    1    -9.56    -9.59 -2.44e+03         0    0.038  0.00572   0.00572      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 191,   Parent ID = 175
+* G4Track Information:   Particle = gamma,   Track ID = 153,   Parent ID = 150
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -7.57     4.58 -2.44e+03    0.0242        0        0         0      Target initStep
-    1    -7.57     4.58 -2.44e+03         0   0.0242  0.00276   0.00276      Target eIoni
+    0    -13.3    -7.69 -2.43e+03      1.01        0        0         0      Target initStep
+    1    -21.9      -12 -2.42e+03      1.01        0     11.7      11.7       World Transportation
+    2    -47.2    -24.5 -2.4e+03      1.01        0     34.1      45.8     Tracker Transportation
+    3 -2.15e+03 -1.07e+03     -796      1.01        0 2.84e+03  2.89e+03       World Transportation
+    4 -2.94e+03 -1.46e+03     -193      1.01        0 1.07e+03  3.96e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 190,   Parent ID = 175
+* G4Track Information:   Particle = gamma,   Track ID = 102,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.24    0.747 -2.44e+03    0.0381        0        0         0      Target initStep
-    1    -1.24    0.747 -2.44e+03         0   0.0381  0.00572   0.00572      Target eIoni
+    0    -1.59   -0.749 -2.44e+03       4.5        0        0         0      Target initStep
+    1    -6.97    -2.66 -2.43e+03      4.06        0     8.01      8.01      Target compt
+    2    -24.4    -5.41 -2.41e+03      4.06        0     27.5      35.6       World Transportation
+    3    -34.6    -7.03 -2.4e+03      4.06        0     16.2      51.7     Tracker Transportation
+    4 -2.37e+03     -376      432      4.06        0 3.69e+03  3.74e+03       World Transportation
+    5 -2.94e+03     -466 1.12e+03      4.06        0      900  4.64e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 189,   Parent ID = 175
+* G4Track Information:   Particle = e-,   Track ID = 159,   Parent ID = 102
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.973    0.738 -2.44e+03    0.0719        0        0         0      Target initStep
-    1   -0.973    0.738 -2.44e+03         0   0.0719   0.0161    0.0161      Target eIoni
+    0    -6.97    -2.66 -2.43e+03     0.442        0        0         0      Target initStep
+    1    -6.98    -2.67 -2.43e+03  0.000399    0.201    0.164     0.164      Target eBrem
+    2    -6.98    -2.67 -2.43e+03         0 0.000399  1.3e-05     0.164      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 174,   Parent ID = 127
+* G4Track Information:   Particle = gamma,   Track ID = 160,   Parent ID = 159
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.53    0.468 -2.45e+03      1.71        0        0         0      Target initStep
-    1    -3.03     2.88 -2.43e+03     0.371        0     18.4      18.4      Target compt
-    2     -3.5     2.97 -2.43e+03         0    0.088    0.512      18.9      Target phot
+    0    -6.98    -2.67 -2.43e+03     0.241        0        0         0      Target initStep
+    1    -6.94    -4.77 -2.43e+03         0    0.088      2.6       2.6      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 195,   Parent ID = 174
+* G4Track Information:   Particle = e-,   Track ID = 161,   Parent ID = 160
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -3.5     2.97 -2.43e+03     0.283        0        0         0      Target initStep
-    1     -3.5     2.97 -2.43e+03         0    0.283    0.137     0.137      Target eIoni
+    0    -6.94    -4.77 -2.43e+03     0.153        0        0         0      Target initStep
+    1    -6.94    -4.78 -2.43e+03         0    0.153   0.0536    0.0536      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 194,   Parent ID = 174
+* G4Track Information:   Particle = gamma,   Track ID = 101,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.03     2.88 -2.43e+03      1.34        0        0         0      Target initStep
-    1    -3.03     2.89 -2.43e+03    0.0863     1.25     1.02      1.02      Target eIoni
-    2    -3.03     2.89 -2.43e+03         0   0.0863   0.0216      1.04      Target eIoni
+    0    -1.19   -0.536 -2.44e+03      2.37        0        0         0      Target initStep
+    1    -7.24    -1.81 -2.43e+03       2.3        0     10.3      10.3      Target compt
+    2    -24.1    -2.03 -2.41e+03     0.368        0     28.1      38.5      Target compt
+    3    -24.9    -2.29 -2.41e+03     0.368        0     1.22      39.7       World Transportation
+    4     -526     -160 -2.94e+03     0.368        0      747       786  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 173,   Parent ID = 127
+* G4Track Information:   Particle = e-,   Track ID = 163,   Parent ID = 101
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.57     0.47 -2.45e+03     0.223        0        0         0      Target initStep
-    1     1.54    0.466 -2.45e+03         0    0.088   0.0916    0.0916      Target phot
+    0    -24.1    -2.03 -2.41e+03      1.93        0        0         0      Target initStep
+    1      -24    -1.92 -2.41e+03       1.7    0.236    0.247     0.247      Target msc
+    2      -24    -2.13 -2.41e+03      1.43    0.263    0.281     0.527      Target msc
+    3      -24    -2.37 -2.41e+03      1.14     0.29    0.284     0.811      Target msc
+    4    -24.1    -2.26 -2.41e+03     0.929    0.214     0.25      1.06      Target msc
+    5      -24    -2.23 -2.41e+03         0    0.929    0.669      1.73      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 196,   Parent ID = 173
+* G4Track Information:   Particle = e-,   Track ID = 162,   Parent ID = 101
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.54    0.466 -2.45e+03     0.135        0        0         0      Target initStep
-    1     1.54    0.465 -2.45e+03         0    0.135   0.0442    0.0442      Target eIoni
+    0    -7.24    -1.81 -2.43e+03    0.0723        0        0         0      Target initStep
+    1    -7.24    -1.81 -2.43e+03         0   0.0723   0.0162    0.0162      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 172,   Parent ID = 130
+* G4Track Information:   Particle = gamma,   Track ID = 100,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.25    0.633 -2.45e+03     0.358        0        0         0      Target initStep
-    1     3.67    0.929 -2.45e+03         0    0.088     1.81      1.81      Target phot
+    0    -1.01   -0.438 -2.44e+03      9.49        0        0         0      Target initStep
+    1    -1.81   -0.739 -2.44e+03      1.06        0     3.89      3.89      Target compt
+    2    -13.6      -21 -2.43e+03      1.06        0     25.9      29.8       World Transportation
+    3    -40.8    -67.6 -2.4e+03      1.06        0     59.7      89.5     Tracker Transportation
+    4 -1.21e+03 -2.07e+03 -1.3e+03      1.06        0 2.57e+03  2.66e+03       World Transportation
+    5 -1.72e+03 -2.94e+03     -831      1.06        0 1.11e+03  3.77e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 197,   Parent ID = 172
+* G4Track Information:   Particle = e-,   Track ID = 164,   Parent ID = 100
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.67    0.929 -2.45e+03      0.27        0        0         0      Target initStep
-    1     3.68    0.927 -2.45e+03         0     0.27    0.128     0.128      Target eIoni
+    0    -1.81   -0.739 -2.44e+03      8.43        0        0         0      Target initStep
+    1    -1.89   -0.735 -2.44e+03      7.39    0.907    0.555     0.555      Target eBrem
+    2    -1.98    -1.13 -2.44e+03      4.35     2.87     2.35      2.91      Target eBrem
+    3    -2.18    -1.17 -2.43e+03      3.79    0.336     0.25      3.16      Target eBrem
+    4    -2.42    -1.42 -2.44e+03     0.524     1.28     0.81      3.97      Target eBrem
+    5    -2.41    -1.42 -2.44e+03         0    0.524    0.324      4.29      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 171,   Parent ID = 130
+* G4Track Information:   Particle = gamma,   Track ID = 168,   Parent ID = 164
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.21    0.564 -2.45e+03      1.38        0        0         0      Target initStep
-    1     6.83     6.51 -2.44e+03      1.23        0     8.89      8.89      Target compt
-    2     7.85     9.01 -2.44e+03      1.07        0     2.91      11.8      Target compt
-    3     13.3     17.8 -2.44e+03     0.854        0     10.4      22.2      Target compt
-    4     13.4     18.1 -2.44e+03         0    0.088    0.321      22.5      Target phot
+    0    -2.42    -1.42 -2.44e+03      1.98        0        0         0      Target initStep
+    1     6.06     -2.2 -2.43e+03     0.663        0     11.3      11.3      Target compt
+    2     4.52   -0.682 -2.42e+03         0    0.088     8.55      19.8      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 201,   Parent ID = 171
+* G4Track Information:   Particle = e-,   Track ID = 170,   Parent ID = 168
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     13.4     18.1 -2.44e+03     0.766        0        0         0      Target initStep
-    1     13.4     18.1 -2.44e+03         0    0.766    0.529     0.529      Target eIoni
+    0     4.52   -0.682 -2.42e+03     0.575        0        0         0      Target initStep
+    1     4.52   -0.693 -2.42e+03         0    0.575    0.366     0.366      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 200,   Parent ID = 171
+* G4Track Information:   Particle = e-,   Track ID = 169,   Parent ID = 168
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     13.3     17.8 -2.44e+03      0.22        0        0         0      Target initStep
-    1     13.3     17.8 -2.44e+03         0     0.22   0.0939    0.0939      Target eIoni
+    0     6.06     -2.2 -2.43e+03      1.32        0        0         0      Target initStep
+    1     6.14    -2.21 -2.43e+03     0.197     1.12     1.01      1.01      Target eIoni
+    2     6.14    -2.21 -2.43e+03         0    0.197   0.0796      1.09      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 199,   Parent ID = 171
+* G4Track Information:   Particle = gamma,   Track ID = 167,   Parent ID = 164
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     7.85     9.01 -2.44e+03     0.155        0        0         0      Target initStep
-    1     7.85     9.01 -2.44e+03         0    0.155   0.0547    0.0547      Target eIoni
+    0    -2.18    -1.17 -2.43e+03     0.221        0        0         0      Target initStep
+    1    -2.48    -1.45 -2.44e+03         0    0.088    0.438     0.438      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 198,   Parent ID = 171
+* G4Track Information:   Particle = e-,   Track ID = 171,   Parent ID = 167
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     6.83     6.51 -2.44e+03      0.15        0        0         0      Target initStep
-    1     6.83     6.51 -2.44e+03         0     0.15   0.0523    0.0523      Target eIoni
+    0    -2.48    -1.45 -2.44e+03     0.133        0        0         0      Target initStep
+    1    -2.48    -1.45 -2.44e+03         0    0.133   0.0432    0.0432      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 170,   Parent ID = 130
+* G4Track Information:   Particle = gamma,   Track ID = 166,   Parent ID = 164
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      2.2    0.499 -2.45e+03     0.348        0        0         0      Target initStep
-    1      2.1     7.12 -2.45e+03         0    0.088     6.66      6.66      Target phot
+    0    -1.98    -1.13 -2.44e+03     0.169        0        0         0      Target initStep
+    1    -3.17     -1.4 -2.43e+03         0    0.088     1.25      1.25      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 202,   Parent ID = 170
+* G4Track Information:   Particle = e-,   Track ID = 172,   Parent ID = 166
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      2.1     7.12 -2.45e+03      0.26        0        0         0      Target initStep
-    1      2.1     7.12 -2.45e+03         0     0.26    0.121     0.121      Target eIoni
+    0    -3.17     -1.4 -2.43e+03    0.0809        0        0         0      Target initStep
+    1    -3.17     -1.4 -2.43e+03         0   0.0809   0.0195    0.0195      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 169,   Parent ID = 152
+* G4Track Information:   Particle = gamma,   Track ID = 165,   Parent ID = 164
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.546      1.5 -2.43e+03     0.107        0        0         0      Target initStep
-    1     0.66     1.51 -2.43e+03         0    0.088    0.121     0.121      Target phot
+    0    -1.89   -0.735 -2.44e+03     0.137        0        0         0      Target initStep
+    1    -1.89   -0.754 -2.44e+03         0    0.088     0.05      0.05      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 203,   Parent ID = 169
+* G4Track Information:   Particle = e-,   Track ID = 173,   Parent ID = 165
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.66     1.51 -2.43e+03    0.0192        0        0         0      Target initStep
-    1     0.66     1.51 -2.43e+03         0   0.0192  0.00191   0.00191      Target eIoni
+    0    -1.89   -0.754 -2.44e+03    0.0485        0        0         0      Target initStep
+    1    -1.89   -0.754 -2.44e+03         0   0.0485   0.0085    0.0085      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 168,   Parent ID = 152
+* G4Track Information:   Particle = gamma,   Track ID = 99,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.525     1.52 -2.43e+03     0.531        0        0         0      Target initStep
-    1      3.5    -2.14 -2.42e+03         0    0.088     4.76      4.76      Target phot
+    0   -0.916    -0.39 -2.44e+03      3.45        0        0         0      Target initStep
+    1    -1.29   -0.294 -2.44e+03         0        0     2.85      2.85      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 204,   Parent ID = 168
+* G4Track Information:   Particle = e-,   Track ID = 174,   Parent ID = 99
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      3.5    -2.14 -2.42e+03     0.443        0        0         0      Target initStep
-    1     3.51    -2.14 -2.42e+03    0.0139    0.211    0.179     0.179      Target eBrem
-    2     3.51    -2.14 -2.42e+03         0   0.0139  0.00115      0.18      Target eIoni
+    0    -1.29   -0.294 -2.44e+03     0.898        0        0         0      Target initStep
+    1    -1.29    -0.29 -2.44e+03         0    0.898    0.643     0.643      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 205,   Parent ID = 204
+* G4Track Information:   Particle = gamma,   Track ID = 98,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.51    -2.14 -2.42e+03     0.218        0        0         0      Target initStep
-    1     7.11   -0.191 -2.43e+03         0    0.088     4.16      4.16      Target phot
+    0     -0.9   -0.375 -2.44e+03      1.13        0        0         0      Target initStep
+    1    -1.79    -1.29 -2.4e+03      1.13        0     41.1      41.1     Tracker Transportation
+    2    -16.9      -17 -1.7e+03      1.13        0      700       741  Chamber_PV Transportation
+    3    -21.2    -21.4 -1.5e+03      1.13        0      200       942     Tracker Transportation
+    4    -34.2    -34.8     -900      1.13        0      600  1.54e+03  Chamber_PV Transportation
+    5    -38.5    -39.3     -700      1.13        0      200  1.74e+03     Tracker Transportation
+    6    -51.4    -52.7     -100      1.13        0      600  2.34e+03  Chamber_PV Transportation
+    7    -55.8    -57.2      100      1.13        0      200  2.54e+03     Tracker Transportation
+    8    -68.7    -70.6      700      1.13        0      600  3.14e+03  Chamber_PV Transportation
+    9      -73    -75.1      900      1.13        0      200  3.34e+03     Tracker Transportation
+   10      -86    -88.5  1.5e+03      1.13        0      600  3.94e+03  Chamber_PV Transportation
+   11    -90.3      -93  1.7e+03      1.13        0      200  4.14e+03     Tracker Transportation
+   12     -105     -109  2.4e+03      1.13        0      700  4.84e+03       World Transportation
+   13     -117     -121 2.94e+03      1.13        0      540  5.38e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 206,   Parent ID = 205
+* G4Track Information:   Particle = gamma,   Track ID = 97,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     7.11   -0.191 -2.43e+03      0.13        0        0         0      Target initStep
-    1     7.11   -0.189 -2.43e+03         0     0.13   0.0418    0.0418      Target eIoni
+    0     -0.9   -0.375 -2.44e+03      41.7        0        0         0      Target initStep
+    1    -1.04   -0.664 -2.44e+03         0        0     4.25      4.25      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 167,   Parent ID = 152
+* G4Track Information:   Particle = gamma,   Track ID = 96,   Parent ID = 77
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.415     1.44 -2.43e+03     0.819        0        0         0      Target initStep
-    1    0.635     1.91 -2.42e+03     0.471        0     1.13      1.13      Target compt
-    2     5.55     -2.6 -2.42e+03     0.452        0     9.49      10.6      Target compt
-    3      7.5    -4.09 -2.41e+03         0    0.088      5.3      15.9      Target phot
+    0    -1.78     3.54 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -4.82     3.21 -2.43e+03         0    0.088     3.19      3.19      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 209,   Parent ID = 167
+* G4Track Information:   Particle = gamma,   Track ID = 95,   Parent ID = 77
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      7.5    -4.09 -2.41e+03     0.364        0        0         0      Target initStep
-    1      7.5     -4.1 -2.41e+03         0    0.364    0.197     0.197      Target eIoni
+    0    -1.78     3.54 -2.43e+03     0.511        0        0         0      Target initStep
+    1     22.9     6.27 -2.44e+03      0.32        0     25.8      25.8      Target compt
+    2       23     6.01 -2.44e+03         0    0.088    0.317      26.1      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 208,   Parent ID = 167
+* G4Track Information:   Particle = e+,   Track ID = 177,   Parent ID = 97
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.55     -2.6 -2.42e+03    0.0187        0        0         0      Target initStep
-    1     5.55     -2.6 -2.42e+03         0   0.0187  0.00183   0.00183      Target eIoni
+    0    -1.04   -0.664 -2.44e+03      34.2        0        0         0      Target initStep
+    1    -1.12    -1.07 -2.44e+03      32.1     2.13     1.45      1.45      Target eBrem
+    2     -1.1    -1.09 -2.44e+03      9.01    0.236    0.218      1.67      Target eBrem
+    3   -0.961    -1.15 -2.43e+03      2.86     3.07     1.79      3.46      Target eBrem
+    4   -0.977    -1.18 -2.43e+03      2.44   0.0558   0.0469      3.51      Target eBrem
+    5    -1.05    -1.29 -2.43e+03      2.13    0.158    0.173      3.68      Target eBrem
+    6    -1.03    -1.31 -2.43e+03    0.0614     2.07     1.49      5.17      Target eIoni
+    7    -1.03    -1.31 -2.43e+03         0   0.0614   0.0112      5.18      Target eIoni
+    8    -1.03    -1.31 -2.43e+03         0        0        0      5.18      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 207,   Parent ID = 167
+* G4Track Information:   Particle = e+,   Track ID = 175,   Parent ID = 99
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.635     1.91 -2.42e+03     0.348        0        0         0      Target initStep
-    1    0.634     1.92 -2.42e+03         0    0.348    0.184     0.184      Target eIoni
+    0    -1.29   -0.294 -2.44e+03      1.53        0        0         0      Target initStep
+    1    -1.32   -0.293 -2.44e+03     0.324      1.2     1.18      1.18      Target eIoni
+    2    -1.32   -0.306 -2.44e+03         0    0.324    0.163      1.34      Target eIoni
+    3    -1.32   -0.306 -2.44e+03         0        0        0      1.34      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 166,   Parent ID = 71
+* G4Track Information:   Particle = e+,   Track ID = 126,   Parent ID = 113
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.81     14.3 -2.41e+03     0.511        0        0         0      Target initStep
-    1     1.45     18.9 -2.41e+03     0.371        0     5.29      5.29      Target compt
-    2     1.23     19.3 -2.41e+03     0.189        0    0.525      5.82      Target compt
-    3    0.594     18.6 -2.41e+03         0    0.088    0.958      6.77      Target phot
+    0   -0.656     -6.6 -2.41e+03       2.8        0        0         0      Target initStep
+    1   -0.665    -6.68 -2.41e+03      1.39     1.18     1.18      1.18      Target eBrem
+    2   -0.742    -6.66 -2.41e+03         0     1.39     1.08      2.26      Target eIoni
+    3   -0.742    -6.66 -2.41e+03         0        0        0      2.26      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 212,   Parent ID = 166
+* G4Track Information:   Particle = e-,   Track ID = 180,   Parent ID = 95
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.594     18.6 -2.41e+03     0.101        0        0         0      Target initStep
-    1    0.593     18.6 -2.41e+03         0    0.101   0.0277    0.0277      Target eIoni
+    0       23     6.01 -2.44e+03     0.232        0        0         0      Target initStep
+    1       23        6 -2.44e+03         0    0.232    0.102     0.102      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 211,   Parent ID = 166
+* G4Track Information:   Particle = e-,   Track ID = 179,   Parent ID = 95
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.23     19.3 -2.41e+03     0.183        0        0         0      Target initStep
-    1     1.23     19.3 -2.41e+03         0    0.183    0.071     0.071      Target eIoni
+    0     22.9     6.27 -2.44e+03     0.191        0        0         0      Target initStep
+    1     22.9     6.28 -2.44e+03         0    0.191   0.0761    0.0761      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 210,   Parent ID = 166
+* G4Track Information:   Particle = e-,   Track ID = 178,   Parent ID = 96
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.45     18.9 -2.41e+03      0.14        0        0         0      Target initStep
-    1     1.45     18.9 -2.41e+03         0     0.14   0.0466    0.0466      Target eIoni
+    0    -4.82     3.21 -2.43e+03     0.423        0        0         0      Target initStep
+    1    -4.83      3.2 -2.43e+03     0.273   0.0525   0.0613    0.0613      Target eBrem
+    2    -4.84     3.21 -2.43e+03     0.126   0.0151   0.0129    0.0741      Target eBrem
+    3    -4.84     3.21 -2.43e+03         0    0.126   0.0399     0.114      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 165,   Parent ID = 71
+* G4Track Information:   Particle = e-,   Track ID = 176,   Parent ID = 97
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.81     14.3 -2.41e+03     0.511        0        0         0      Target initStep
-    1     4.73     12.5 -2.41e+03     0.183        0     2.05      2.05      Target compt
-    2     4.82     13.5 -2.41e+03         0    0.088     1.02      3.06      Target phot
+    0    -1.04   -0.664 -2.44e+03      6.49        0        0         0      Target initStep
+    1    -1.05   -0.667 -2.44e+03      6.12    0.233    0.141     0.141      Target eBrem
+    2   -0.951   -0.765 -2.44e+03      3.43     1.69     1.54      1.68      Target eBrem
+    3    -1.02    -0.42 -2.44e+03      1.47     1.95     1.87      3.55      Target eIoni
+    4   -0.965   -0.393 -2.44e+03     0.636    0.669    0.597      4.15      Target eBrem
+    5   -0.972   -0.411 -2.44e+03     0.347    0.289     0.26      4.41      Target eBrem
+    6   -0.979   -0.401 -2.44e+03         0    0.347    0.184      4.59      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 214,   Parent ID = 165
+* G4Track Information:   Particle = gamma,   Track ID = 196,   Parent ID = 176
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.82     13.5 -2.41e+03     0.095        0        0         0      Target initStep
-    1     4.82     13.5 -2.41e+03         0    0.095   0.0252    0.0252      Target eIoni
+    0   -0.965   -0.393 -2.44e+03     0.169        0        0         0      Target initStep
+    1   -0.982   -0.417 -2.44e+03         0    0.088   0.0531    0.0531      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 213,   Parent ID = 165
+* G4Track Information:   Particle = e-,   Track ID = 197,   Parent ID = 196
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.73     12.5 -2.41e+03     0.328        0        0         0      Target initStep
-    1     4.73     12.5 -2.41e+03         0    0.328     0.17      0.17      Target eIoni
+    0   -0.982   -0.417 -2.44e+03    0.0807        0        0         0      Target initStep
+    1   -0.982   -0.418 -2.44e+03         0   0.0807   0.0194    0.0194      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 164,   Parent ID = 71
+* G4Track Information:   Particle = gamma,   Track ID = 195,   Parent ID = 176
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.08     14.3 -2.41e+03     0.794        0        0         0      Target initStep
-    1    0.794     14.4 -2.41e+03     0.577        0     4.04      4.04      Target compt
-    2      0.5     14.4 -2.4e+03         0    0.088     1.19      5.23      Target phot
+    0   -0.951   -0.765 -2.44e+03         1        0        0         0      Target initStep
+    1    -4.17     1.67 -2.43e+03         0    0.088     4.47      4.47      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 216,   Parent ID = 164
+* G4Track Information:   Particle = e-,   Track ID = 198,   Parent ID = 195
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      0.5     14.4 -2.4e+03     0.489        0        0         0      Target initStep
-    1    0.487     14.4 -2.4e+03         0    0.489    0.295     0.295      Target eIoni
+    0    -4.17     1.67 -2.43e+03     0.916        0        0         0      Target initStep
+    1    -4.21     1.68 -2.43e+03         0    0.916    0.658     0.658      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 215,   Parent ID = 164
+* G4Track Information:   Particle = gamma,   Track ID = 194,   Parent ID = 176
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.794     14.4 -2.41e+03     0.217        0        0         0      Target initStep
-    1    0.788     14.4 -2.41e+03         0    0.217   0.0924    0.0924      Target eIoni
+    0    -1.05   -0.667 -2.44e+03      0.14        0        0         0      Target initStep
+    1    -1.04   -0.677 -2.44e+03         0    0.088   0.0585    0.0585      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 163,   Parent ID = 71
+* G4Track Information:   Particle = e-,   Track ID = 199,   Parent ID = 194
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.26     14.2 -2.41e+03     0.177        0        0         0      Target initStep
-    1     2.12     14.8 -2.41e+03         0    0.088     2.41      2.41      Target phot
+    0    -1.04   -0.677 -2.44e+03    0.0521        0        0         0      Target initStep
+    1    -1.04   -0.677 -2.44e+03         0   0.0521  0.00952   0.00952      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 217,   Parent ID = 163
+* G4Track Information:   Particle = gamma,   Track ID = 193,   Parent ID = 178
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.12     14.8 -2.41e+03    0.0887        0        0         0      Target initStep
-    1     2.12     14.8 -2.41e+03         0   0.0887   0.0226    0.0226      Target eIoni
+    0    -4.84     3.21 -2.43e+03     0.131        0        0         0      Target initStep
+    1    -4.84     3.37 -2.43e+03         0    0.088    0.163     0.163      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 162,   Parent ID = 71
+* G4Track Information:   Particle = e-,   Track ID = 200,   Parent ID = 193
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.27     14.2 -2.41e+03       4.1        0        0         0      Target initStep
-    1     1.48     15.7 -2.41e+03      3.19        0        4         4      Target compt
-    2    0.436     16.7 -2.4e+03     0.473        0     2.14      6.14      Target compt
-    3    -5.33     15.2 -2.41e+03         0    0.088     6.35      12.5      Target phot
+    0    -4.84     3.37 -2.43e+03    0.0431        0        0         0      Target initStep
+    1    -4.84     3.37 -2.43e+03         0   0.0431  0.00701   0.00701      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 220,   Parent ID = 162
+* G4Track Information:   Particle = gamma,   Track ID = 192,   Parent ID = 178
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -5.33     15.2 -2.41e+03     0.385        0        0         0      Target initStep
-    1    -5.34     15.2 -2.41e+03         0    0.385    0.213     0.213      Target eIoni
+    0    -4.83      3.2 -2.43e+03    0.0978        0        0         0      Target initStep
+    1    -4.86     3.27 -2.43e+03         0    0.088     0.11      0.11      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 219,   Parent ID = 162
+* G4Track Information:   Particle = e-,   Track ID = 201,   Parent ID = 192
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.436     16.7 -2.4e+03      2.72        0        0         0      Target initStep
-    1    0.373     16.8 -2.4e+03      2.29    0.326     0.29      0.29      Target eBrem
-    2    0.182     16.8 -2.4e+03   0.00491     2.29     1.53      1.82      Target eIoni
-    3    0.182     16.8 -2.4e+03         0  0.00491 0.000255      1.82      Target eIoni
+    0    -4.86     3.27 -2.43e+03   0.00975        0        0         0      Target initStep
+    1    -4.86     3.27 -2.43e+03         0  0.00975 0.000677  0.000677      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 218,   Parent ID = 162
+* G4Track Information:   Particle = gamma,   Track ID = 191,   Parent ID = 126
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.48     15.7 -2.41e+03     0.908        0        0         0      Target initStep
-    1     1.43     15.7 -2.41e+03         0    0.908    0.651     0.651      Target eIoni
+    0   -0.742    -6.66 -2.41e+03     0.511        0        0         0      Target initStep
+    1     8.29    0.331 -2.41e+03     0.182        0       12        12      Target compt
+    2     8.14   -0.128 -2.41e+03     0.117        0    0.626      12.7      Target compt
+    3     8.03    0.146 -2.41e+03         0    0.088    0.295        13      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 221,   Parent ID = 219
+* G4Track Information:   Particle = e-,   Track ID = 204,   Parent ID = 191
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.373     16.8 -2.4e+03     0.102        0        0         0      Target initStep
-    1    0.282     16.8 -2.4e+03         0    0.088    0.103     0.103      Target phot
+    0     8.03    0.146 -2.41e+03    0.0293        0        0         0      Target initStep
+    1     8.03    0.146 -2.41e+03         0   0.0293  0.00374   0.00374      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 222,   Parent ID = 221
+* G4Track Information:   Particle = e-,   Track ID = 203,   Parent ID = 191
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.282     16.8 -2.4e+03    0.0144        0        0         0      Target initStep
-    1    0.281     16.8 -2.4e+03         0   0.0144  0.00122   0.00122      Target eIoni
+    0     8.14   -0.128 -2.41e+03    0.0646        0        0         0      Target initStep
+    1     8.14   -0.129 -2.41e+03         0   0.0646   0.0135    0.0135      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 160,   Parent ID = 71
+* G4Track Information:   Particle = e-,   Track ID = 202,   Parent ID = 191
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      4.4     13.8 -2.41e+03     0.319        0        0         0      Target initStep
-    1     4.51     13.8 -2.41e+03         0    0.088    0.244     0.244      Target phot
+    0     8.29    0.331 -2.41e+03     0.329        0        0         0      Target initStep
+    1      8.3    0.338 -2.41e+03         0    0.329     0.17      0.17      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 223,   Parent ID = 160
+* G4Track Information:   Particle = gamma,   Track ID = 190,   Parent ID = 126
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.51     13.8 -2.41e+03     0.231        0        0         0      Target initStep
-    1     4.51     13.8 -2.41e+03         0    0.231    0.101     0.101      Target eIoni
+    0   -0.742    -6.66 -2.41e+03     0.511        0        0         0      Target initStep
+    1    -5.43    -10.3 -2.4e+03     0.268        0     6.25      6.25      Target compt
+    2     -5.4    -10.3 -2.4e+03         0    0.088   0.0511       6.3      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 159,   Parent ID = 82
+* G4Track Information:   Particle = e-,   Track ID = 206,   Parent ID = 190
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.33    -4.42 -2.43e+03     0.511        0        0         0      Target initStep
-    1     3.09    -3.83 -2.43e+03         0    0.088     1.12      1.12      Target phot
+    0     -5.4    -10.3 -2.4e+03      0.18        0        0         0      Target initStep
+    1     -5.4    -10.3 -2.4e+03         0     0.18   0.0692    0.0692      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 224,   Parent ID = 159
+* G4Track Information:   Particle = e-,   Track ID = 205,   Parent ID = 190
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.09    -3.83 -2.43e+03     0.423        0        0         0      Target initStep
-    1     3.09    -3.82 -2.43e+03         0    0.423    0.243     0.243      Target eIoni
+    0    -5.43    -10.3 -2.4e+03     0.243        0        0         0      Target initStep
+    1    -5.43    -10.3 -2.4e+03         0    0.243    0.109     0.109      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 158,   Parent ID = 82
+* G4Track Information:   Particle = gamma,   Track ID = 189,   Parent ID = 126
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.33    -4.42 -2.43e+03     0.511        0        0         0      Target initStep
-    1     3.99    -6.01 -2.42e+03     0.486        0     3.03      3.03      Target compt
-    2     3.83     -7.6 -2.42e+03     0.459        0     4.33      7.36      Target compt
-    3     5.85    -10.1 -2.41e+03     0.199        0     6.53      13.9      Target compt
-    4     5.65    -10.1 -2.41e+03         0    0.088      0.2      14.1      Target phot
+    0   -0.665    -6.68 -2.41e+03     0.231        0        0         0      Target initStep
+    1    -1.63    -6.49 -2.4e+03         0    0.088     1.54      1.54      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 228,   Parent ID = 158
+* G4Track Information:   Particle = e-,   Track ID = 207,   Parent ID = 189
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.65    -10.1 -2.41e+03     0.111        0        0         0      Target initStep
-    1     5.65    -10.1 -2.41e+03         0    0.111   0.0322    0.0322      Target eIoni
+    0    -1.63    -6.49 -2.4e+03     0.143        0        0         0      Target initStep
+    1    -1.63    -6.49 -2.4e+03         0    0.143   0.0484    0.0484      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 227,   Parent ID = 158
+* G4Track Information:   Particle = gamma,   Track ID = 188,   Parent ID = 175
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.85    -10.1 -2.41e+03     0.261        0        0         0      Target initStep
-    1     5.85    -10.1 -2.41e+03         0    0.261    0.121     0.121      Target eIoni
+    0    -1.32   -0.306 -2.44e+03     0.511        0        0         0      Target initStep
+    1   -0.632    0.687 -2.44e+03         0    0.088     2.07      2.07      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 226,   Parent ID = 158
+* G4Track Information:   Particle = e-,   Track ID = 208,   Parent ID = 188
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.83     -7.6 -2.42e+03    0.0271        0        0         0      Target initStep
-    1     3.83     -7.6 -2.42e+03         0   0.0271   0.0033    0.0033      Target eIoni
+    0   -0.632    0.687 -2.44e+03     0.423        0        0         0      Target initStep
+    1    -0.62    0.698 -2.44e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 225,   Parent ID = 158
+* G4Track Information:   Particle = gamma,   Track ID = 187,   Parent ID = 175
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.99    -6.01 -2.42e+03    0.0245        0        0         0      Target initStep
-    1     3.99    -6.01 -2.42e+03         0   0.0245  0.00282   0.00282      Target eIoni
+    0    -1.32   -0.306 -2.44e+03     0.511        0        0         0      Target initStep
+    1    -4.55    -4.97 -2.45e+03         0    0.088     9.75      9.75      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 157,   Parent ID = 97
+* G4Track Information:   Particle = e-,   Track ID = 209,   Parent ID = 187
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      3.6    0.972 -2.44e+03     0.511        0        0         0      Target initStep
-    1     9.58     11.4 -2.43e+03     0.487        0       13        13      Target compt
-    2     10.1       12 -2.43e+03         0    0.088    0.972      13.9      Target phot
+    0    -4.55    -4.97 -2.45e+03     0.423        0        0         0      Target initStep
+    1    -4.55    -4.99 -2.45e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 230,   Parent ID = 157
+* G4Track Information:   Particle = gamma,   Track ID = 186,   Parent ID = 177
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     10.1       12 -2.43e+03     0.399        0        0         0      Target initStep
-    1     10.1       12 -2.43e+03         0    0.399    0.224     0.224      Target eIoni
+    0    -1.03    -1.31 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -1.01    -1.26 -2.43e+03         0    0.088   0.0486    0.0486      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 229,   Parent ID = 157
+* G4Track Information:   Particle = e-,   Track ID = 210,   Parent ID = 186
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     9.58     11.4 -2.43e+03    0.0238        0        0         0      Target initStep
-    1     9.58     11.4 -2.43e+03         0   0.0238  0.00269   0.00269      Target eIoni
+    0    -1.01    -1.26 -2.43e+03     0.423        0        0         0      Target initStep
+    1    -1.01    -1.25 -2.43e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 156,   Parent ID = 97
+* G4Track Information:   Particle = gamma,   Track ID = 185,   Parent ID = 177
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      3.6    0.972 -2.44e+03     0.511        0        0         0      Target initStep
-    1     -1.6    -8.12 -2.44e+03     0.307        0     11.3      11.3      Target compt
-    2      1.1    -12.1 -2.44e+03         0    0.088     4.87      16.2      Target phot
+    0    -1.03    -1.31 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -4.45      -12 -2.43e+03         0    0.088     11.2      11.2      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 232,   Parent ID = 156
+* G4Track Information:   Particle = e-,   Track ID = 211,   Parent ID = 185
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.1    -12.1 -2.44e+03     0.219        0        0         0      Target initStep
-    1      1.1    -12.1 -2.44e+03         0    0.219   0.0936    0.0936      Target eIoni
+    0    -4.45      -12 -2.43e+03     0.423        0        0         0      Target initStep
+    1    -4.45      -12 -2.43e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 231,   Parent ID = 156
+* G4Track Information:   Particle = gamma,   Track ID = 184,   Parent ID = 177
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -1.6    -8.12 -2.44e+03     0.204        0        0         0      Target initStep
-    1    -1.61    -8.12 -2.44e+03         0    0.204   0.0837    0.0837      Target eIoni
+    0    -1.05    -1.29 -2.43e+03     0.154        0        0         0      Target initStep
+    1   -0.287    -1.87 -2.43e+03         0    0.088     1.81      1.81      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 155,   Parent ID = 121
+* G4Track Information:   Particle = e-,   Track ID = 212,   Parent ID = 184
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.578      1.4 -2.43e+03     0.511        0        0         0      Target initStep
-    1    0.678    0.728 -2.42e+03     0.475        0    0.819     0.819      Target compt
-    2     5.03    -12.9 -2.42e+03         0    0.088     14.7      15.5      Target phot
+    0   -0.287    -1.87 -2.43e+03    0.0656        0        0         0      Target initStep
+    1   -0.287    -1.87 -2.43e+03         0   0.0656   0.0139    0.0139      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 234,   Parent ID = 155
+* G4Track Information:   Particle = gamma,   Track ID = 183,   Parent ID = 177
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.03    -12.9 -2.42e+03     0.387        0        0         0      Target initStep
-    1     5.04    -12.9 -2.42e+03         0    0.387    0.214     0.214      Target eIoni
+    0   -0.977    -1.18 -2.43e+03     0.363        0        0         0      Target initStep
+    1    -2.78    -4.78 -2.43e+03     0.217        0     4.16      4.16      Target compt
+    2    -1.41    -5.77 -2.43e+03         0    0.088     1.82      5.98      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 233,   Parent ID = 155
+* G4Track Information:   Particle = e-,   Track ID = 214,   Parent ID = 183
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.678    0.728 -2.42e+03    0.0361        0        0         0      Target initStep
-    1    0.678    0.728 -2.42e+03         0   0.0361  0.00525   0.00525      Target eIoni
+    0    -1.41    -5.77 -2.43e+03     0.129        0        0         0      Target initStep
+    1    -1.41    -5.77 -2.43e+03         0    0.129   0.0412    0.0412      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 154,   Parent ID = 121
+* G4Track Information:   Particle = e-,   Track ID = 213,   Parent ID = 183
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.578      1.4 -2.43e+03     0.511        0        0         0      Target initStep
-    1  -0.0271     5.44 -2.43e+03         0    0.088     4.95      4.95      Target phot
+    0    -2.78    -4.78 -2.43e+03     0.146        0        0         0      Target initStep
+    1    -2.78    -4.79 -2.43e+03         0    0.146   0.0501    0.0501      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 235,   Parent ID = 154
+* G4Track Information:   Particle = gamma,   Track ID = 182,   Parent ID = 177
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0271     5.44 -2.43e+03     0.423        0        0         0      Target initStep
-    1  -0.0144     5.45 -2.43e+03         0    0.423    0.243     0.243      Target eIoni
+    0   -0.961    -1.15 -2.43e+03      3.07        0        0         0      Target initStep
+    1    -1.81    -3.05 -2.43e+03         0        0     4.62      4.62      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 153,   Parent ID = 121
+* G4Track Information:   Particle = e-,   Track ID = 215,   Parent ID = 182
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.577     1.41 -2.43e+03     0.119        0        0         0      Target initStep
-    1     0.89     1.01 -2.42e+03         0    0.088    0.632     0.632      Target phot
+    0    -1.81    -3.05 -2.43e+03      1.89        0        0         0      Target initStep
+    1    -1.85    -3.11 -2.43e+03     0.335     1.56     1.37      1.37      Target eIoni
+    2    -1.85    -3.12 -2.43e+03         0    0.335    0.175      1.54      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 236,   Parent ID = 153
+* G4Track Information:   Particle = gamma,   Track ID = 181,   Parent ID = 177
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.89     1.01 -2.42e+03     0.031        0        0         0      Target initStep
-    1    0.891     1.01 -2.42e+03         0    0.031  0.00411   0.00411      Target eIoni
+    0     -1.1    -1.09 -2.44e+03      22.8        0        0         0      Target initStep
+    1   -0.861    -1.25 -2.43e+03         0        0     3.16      3.16      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 151,   Parent ID = 121
+* G4Track Information:   Particle = e+,   Track ID = 218,   Parent ID = 181
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.963     1.18 -2.43e+03      0.14        0        0         0      Target initStep
-    1    0.641     1.28 -2.43e+03         0    0.088    0.514     0.514      Target phot
+    0   -0.861    -1.25 -2.43e+03      15.9        0        0         0      Target initStep
+    1   -0.708    -1.25 -2.43e+03      13.7     2.05     1.69      1.69      Target eBrem
+    2   -0.539    -1.77 -2.43e+03      6.58     1.65     1.25      2.94      Target eBrem
+    3    -1.01     -2.3 -2.43e+03      5.14     1.31      1.2      4.14      Target eBrem
+    4    -1.06    -2.49 -2.43e+03      1.78    0.213    0.231      4.38      Target eBrem
+    5    -1.19    -2.58 -2.43e+03      1.32    0.326    0.324       4.7      Target eBrem
+    6    -1.26    -2.54 -2.43e+03     0.526    0.792    0.792      5.49      Target eBrem
+    7    -1.28    -2.53 -2.43e+03         0    0.526    0.323      5.81      Target eIoni
+    8    -1.28    -2.53 -2.43e+03         0        0        0      5.81      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 237,   Parent ID = 151
+* G4Track Information:   Particle = e+,   Track ID = 216,   Parent ID = 182
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.641     1.28 -2.43e+03    0.0521        0        0         0      Target initStep
-    1    0.641     1.28 -2.43e+03         0   0.0521  0.00954   0.00954      Target eIoni
+    0    -1.81    -3.05 -2.43e+03     0.158        0        0         0      Target initStep
+    1    -1.81    -3.05 -2.43e+03         0    0.158    0.054     0.054      Target eIoni
+    2    -1.81    -3.05 -2.43e+03         0        0        0     0.054      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 150,   Parent ID = 121
+* G4Track Information:   Particle = e-,   Track ID = 217,   Parent ID = 181
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.08     1.13 -2.43e+03     0.134        0        0         0      Target initStep
-    1    0.866     1.18 -2.43e+03         0    0.088    0.381     0.381      Target phot
+    0   -0.861    -1.25 -2.43e+03      5.88        0        0         0      Target initStep
+    1   -0.861    -1.28 -2.43e+03      2.77    0.253    0.226     0.226      Target eBrem
+    2   -0.796    -1.19 -2.43e+03      1.95    0.669    0.476     0.702      Target eBrem
+    3   -0.871    -1.14 -2.43e+03     0.593     1.36     1.39      2.09      Target eIoni
+    4   -0.854    -1.14 -2.43e+03         0    0.593    0.382      2.47      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 238,   Parent ID = 150
+* G4Track Information:   Particle = gamma,   Track ID = 229,   Parent ID = 217
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.866     1.18 -2.43e+03    0.0464        0        0         0      Target initStep
-    1    0.866     1.18 -2.43e+03         0   0.0464   0.0079    0.0079      Target eIoni
+    0   -0.796    -1.19 -2.43e+03     0.152        0        0         0      Target initStep
+    1   -0.861    -1.15 -2.43e+03         0    0.088    0.111     0.111      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 149,   Parent ID = 121
+* G4Track Information:   Particle = e-,   Track ID = 230,   Parent ID = 229
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.15     1.12 -2.43e+03     0.354        0        0         0      Target initStep
-    1    -1.67     1.33 -2.42e+03         0    0.088     3.63      3.63      Target phot
+    0   -0.861    -1.15 -2.43e+03    0.0639        0        0         0      Target initStep
+    1   -0.861    -1.15 -2.43e+03         0   0.0639   0.0133    0.0133      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 239,   Parent ID = 149
+* G4Track Information:   Particle = gamma,   Track ID = 228,   Parent ID = 217
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.67     1.33 -2.42e+03     0.266        0        0         0      Target initStep
-    1    -1.68     1.33 -2.42e+03         0    0.266    0.125     0.125      Target eIoni
+    0   -0.861    -1.28 -2.43e+03      2.85        0        0         0      Target initStep
+    1     3.72     3.95 -2.42e+03     0.595        0     11.2      11.2      Target compt
+    2     3.71     8.31 -2.42e+03      0.49        0     4.43      15.6      Target compt
+    3     4.79     11.5 -2.43e+03     0.169        0     4.47      20.1      Target compt
+    4     4.64     10.1 -2.43e+03         0    0.088     1.68      21.8      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 148,   Parent ID = 121
+* G4Track Information:   Particle = e-,   Track ID = 234,   Parent ID = 228
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.15      1.5 -2.43e+03      1.59        0        0         0      Target initStep
-    1   -0.722    -0.21 -2.42e+03         0    0.088     5.05      5.05      Target phot
+    0     4.64     10.1 -2.43e+03    0.0812        0        0         0      Target initStep
+    1     4.64     10.1 -2.43e+03         0   0.0812   0.0196    0.0196      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 240,   Parent ID = 148
+* G4Track Information:   Particle = e-,   Track ID = 233,   Parent ID = 228
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.722    -0.21 -2.42e+03       1.5        0        0         0      Target initStep
-    1   -0.783   -0.183 -2.42e+03         0      1.5     1.14      1.14      Target eIoni
+    0     4.79     11.5 -2.43e+03     0.321        0        0         0      Target initStep
+    1     4.79     11.5 -2.43e+03         0    0.321    0.164     0.164      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 147,   Parent ID = 121
+* G4Track Information:   Particle = e-,   Track ID = 232,   Parent ID = 228
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      2.5     1.48 -2.43e+03     0.223        0        0         0      Target initStep
-    1     2.04     1.48 -2.43e+03         0    0.088    0.621     0.621      Target phot
+    0     3.71     8.31 -2.42e+03     0.105        0        0         0      Target initStep
+    1      3.7     8.31 -2.42e+03         0    0.105   0.0294    0.0294      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 241,   Parent ID = 147
+* G4Track Information:   Particle = e-,   Track ID = 231,   Parent ID = 228
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.04     1.48 -2.43e+03     0.135        0        0         0      Target initStep
-    1     2.03     1.49 -2.43e+03         0    0.135    0.044     0.044      Target eIoni
+    0     3.72     3.95 -2.42e+03      2.26        0        0         0      Target initStep
+    1     3.74     3.97 -2.42e+03      1.64   0.0917   0.0734    0.0734      Target eBrem
+    2     3.81     3.94 -2.42e+03     0.657    0.981    0.901     0.975      Target eBrem
+    3     3.81     3.95 -2.42e+03         0    0.657    0.435      1.41      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 146,   Parent ID = 121
+* G4Track Information:   Particle = gamma,   Track ID = 235,   Parent ID = 231
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.08     1.29 -2.43e+03     0.656        0        0         0      Target initStep
-    1    -4.52     3.71 -2.42e+03     0.214        0       11        11      Target compt
-    2    -3.16     3.53 -2.42e+03         0    0.088     1.39      12.4      Target phot
+    0     3.74     3.97 -2.42e+03     0.529        0        0         0      Target initStep
+    1     11.2  -0.0946 -2.42e+03         0    0.088      8.6       8.6      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 243,   Parent ID = 146
+* G4Track Information:   Particle = e-,   Track ID = 236,   Parent ID = 235
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.16     3.53 -2.42e+03     0.126        0        0         0      Target initStep
-    1    -3.15     3.54 -2.42e+03         0    0.126   0.0396    0.0396      Target eIoni
+    0     11.2  -0.0946 -2.42e+03     0.441        0        0         0      Target initStep
+    1     11.2  -0.0998 -2.42e+03         0    0.441    0.257     0.257      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 242,   Parent ID = 146
+* G4Track Information:   Particle = gamma,   Track ID = 227,   Parent ID = 216
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -4.52     3.71 -2.42e+03     0.442        0        0         0      Target initStep
-    1    -4.53     3.72 -2.42e+03         0    0.442    0.258     0.258      Target eIoni
+    0    -1.81    -3.05 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -1.82    -3.06 -2.43e+03         0    0.088    0.019     0.019      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 145,   Parent ID = 128
+* G4Track Information:   Particle = e-,   Track ID = 237,   Parent ID = 227
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.19   -0.957 -2.44e+03     0.511        0        0         0      Target initStep
-    1    -5.88     -1.4 -2.44e+03         0    0.088     9.59      9.59      Target phot
+    0    -1.82    -3.06 -2.43e+03     0.423        0        0         0      Target initStep
+    1    -1.83    -3.07 -2.43e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 244,   Parent ID = 145
+* G4Track Information:   Particle = gamma,   Track ID = 226,   Parent ID = 216
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -5.88     -1.4 -2.44e+03     0.423        0        0         0      Target initStep
-    1    -5.89     -1.4 -2.44e+03         0    0.423    0.243     0.243      Target eIoni
+    0    -1.81    -3.05 -2.43e+03     0.511        0        0         0      Target initStep
+    1    0.269    -1.93 -2.43e+03     0.386        0     4.11      4.11      Target compt
+    2   -0.322   -0.254 -2.44e+03         0    0.088     2.72      6.83      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 144,   Parent ID = 128
+* G4Track Information:   Particle = e-,   Track ID = 239,   Parent ID = 226
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.19   -0.957 -2.44e+03     0.511        0        0         0      Target initStep
-    1     7.01   -0.594 -2.45e+03         0    0.088      7.9       7.9      Target phot
+    0   -0.322   -0.254 -2.44e+03     0.298        0        0         0      Target initStep
+    1    -0.32   -0.249 -2.44e+03         0    0.298    0.148     0.148      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 245,   Parent ID = 144
+* G4Track Information:   Particle = e-,   Track ID = 238,   Parent ID = 226
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     7.01   -0.594 -2.45e+03     0.423        0        0         0      Target initStep
-    1     7.02   -0.601 -2.45e+03         0    0.423    0.243     0.243      Target eIoni
+    0    0.269    -1.93 -2.43e+03     0.125        0        0         0      Target initStep
+    1    0.272    -1.93 -2.43e+03         0    0.125    0.039     0.039      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 143,   Parent ID = 128
+* G4Track Information:   Particle = gamma,   Track ID = 225,   Parent ID = 218
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.28   -0.788 -2.44e+03     0.181        0        0         0      Target initStep
-    1     1.25   -0.829 -2.44e+03         0    0.088   0.0796    0.0796      Target phot
+    0    -1.28    -2.53 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -1.27    -2.03 -2.43e+03     0.373        0    0.652     0.652      Target compt
+    2    -5.43  -0.0274 -2.43e+03     0.193        0      5.7      6.35      Target compt
+    3    -4.64    0.664 -2.43e+03         0    0.088     1.05       7.4      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 246,   Parent ID = 143
+* G4Track Information:   Particle = e-,   Track ID = 242,   Parent ID = 225
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.25   -0.829 -2.44e+03    0.0925        0        0         0      Target initStep
-    1     1.25    -0.83 -2.44e+03         0   0.0925   0.0242    0.0242      Target eIoni
+    0    -4.64    0.664 -2.43e+03     0.105        0        0         0      Target initStep
+    1    -4.64    0.665 -2.43e+03         0    0.105   0.0297    0.0297      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 142,   Parent ID = 128
+* G4Track Information:   Particle = e-,   Track ID = 241,   Parent ID = 225
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.3   -0.927 -2.44e+03     0.159        0        0         0      Target initStep
-    1      1.3   -0.918 -2.44e+03         0    0.088   0.0229    0.0229      Target phot
+    0    -5.43  -0.0274 -2.43e+03      0.18        0        0         0      Target initStep
+    1    -5.43  -0.0274 -2.43e+03         0     0.18   0.0694    0.0694      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 247,   Parent ID = 142
+* G4Track Information:   Particle = e-,   Track ID = 240,   Parent ID = 225
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.3   -0.918 -2.44e+03    0.0714        0        0         0      Target initStep
-    1      1.3   -0.917 -2.44e+03         0   0.0714   0.0159    0.0159      Target eIoni
+    0    -1.27    -2.03 -2.43e+03     0.138        0        0         0      Target initStep
+    1    -1.27    -2.03 -2.43e+03         0    0.138   0.0456    0.0456      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 141,   Parent ID = 128
+* G4Track Information:   Particle = gamma,   Track ID = 224,   Parent ID = 218
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.26   -0.764 -2.44e+03     0.634        0        0         0      Target initStep
-    1     1.44    -2.35 -2.44e+03     0.454        0     1.97      1.97      Target compt
-    2    0.775     -2.9 -2.45e+03     0.398        0     3.12      5.09      Target compt
-    3     1.55    -3.31 -2.45e+03     0.398        0     2.22      7.31       World Transportation
-    4      188     -102 -2.94e+03     0.398        0      533       541  OutOfWorld Transportation
+    0    -1.28    -2.53 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -1.35    -5.07 -2.43e+03     0.417        0     3.31      3.31      Target compt
+    2     1.15    -6.92 -2.44e+03     0.364        0     6.36      9.67      Target compt
+    3    0.901    -8.68 -2.44e+03         0    0.088     2.81      12.5      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 249,   Parent ID = 141
+* G4Track Information:   Particle = e-,   Track ID = 245,   Parent ID = 224
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.775     -2.9 -2.45e+03    0.0564        0        0         0      Target initStep
-    1    0.774     -2.9 -2.45e+03         0   0.0564   0.0108    0.0108      Target eIoni
+    0    0.901    -8.68 -2.44e+03     0.276        0        0         0      Target initStep
+    1    0.899    -8.69 -2.44e+03         0    0.276    0.132     0.132      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 248,   Parent ID = 141
+* G4Track Information:   Particle = e-,   Track ID = 244,   Parent ID = 224
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.44    -2.35 -2.44e+03      0.18        0        0         0      Target initStep
-    1     1.44    -2.36 -2.44e+03         0     0.18   0.0694    0.0694      Target eIoni
+    0     1.15    -6.92 -2.44e+03    0.0528        0        0         0      Target initStep
+    1     1.15    -6.91 -2.44e+03         0   0.0528  0.00974   0.00974      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 140,   Parent ID = 128
+* G4Track Information:   Particle = e-,   Track ID = 243,   Parent ID = 224
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.26   -0.575 -2.44e+03     0.532        0        0         0      Target initStep
-    1     1.24   -0.621 -2.44e+03         0    0.088   0.0605    0.0605      Target phot
+    0    -1.35    -5.07 -2.43e+03     0.094        0        0         0      Target initStep
+    1    -1.35    -5.07 -2.43e+03         0    0.094   0.0248    0.0248      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 250,   Parent ID = 140
+* G4Track Information:   Particle = gamma,   Track ID = 223,   Parent ID = 218
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.24   -0.621 -2.44e+03     0.444        0        0         0      Target initStep
-    1     1.25   -0.625 -2.44e+03         0    0.444    0.259     0.259      Target eIoni
+    0    -1.19    -2.58 -2.43e+03     0.137        0        0         0      Target initStep
+    1    -1.21    -2.58 -2.43e+03         0    0.088   0.0269    0.0269      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 139,   Parent ID = 128
+* G4Track Information:   Particle = e-,   Track ID = 246,   Parent ID = 223
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.62   -0.383 -2.44e+03      1.14        0        0         0      Target initStep
-    1    -15.8    -10.2 -2.43e+03         0    0.088     22.2      22.2      Target phot
+    0    -1.21    -2.58 -2.43e+03    0.0488        0        0         0      Target initStep
+    1    -1.21    -2.58 -2.43e+03         0   0.0488  0.00858   0.00858      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 251,   Parent ID = 139
+* G4Track Information:   Particle = gamma,   Track ID = 222,   Parent ID = 218
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -15.8    -10.2 -2.43e+03      1.05        0        0         0      Target initStep
-    1    -15.8    -10.1 -2.43e+03         0     1.05    0.778     0.778      Target eIoni
+    0    -1.06    -2.49 -2.43e+03      3.15        0        0         0      Target initStep
+    1    -22.1    -11.8 -2.42e+03      3.15        0     24.4      24.4       World Transportation
+    2    -75.7    -35.5 -2.4e+03      3.15        0     62.3      86.7     Tracker Transportation
+    3 -2.19e+03     -972 -1.57e+03      3.15        0 2.46e+03  2.55e+03       World Transportation
+    4 -2.94e+03 -1.3e+03 -1.28e+03      3.15        0      866  3.41e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 138,   Parent ID = 128
+* G4Track Information:   Particle = gamma,   Track ID = 221,   Parent ID = 218
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.65   -0.336 -2.44e+03      3.15        0        0         0      Target initStep
-    1     -1.9    -6.43 -2.44e+03         0        0     9.08      9.08      Target conv
+    0    -1.01     -2.3 -2.43e+03     0.125        0        0         0      Target initStep
+    1    -1.32    -3.28 -2.43e+03         0    0.088     1.05      1.05      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 252,   Parent ID = 138
+* G4Track Information:   Particle = e-,   Track ID = 247,   Parent ID = 221
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -1.9    -6.43 -2.44e+03     0.309        0        0         0      Target initStep
-    1    -1.91    -6.43 -2.44e+03         0    0.309    0.155     0.155      Target eIoni
+    0    -1.32    -3.28 -2.43e+03    0.0367        0        0         0      Target initStep
+    1    -1.32    -3.28 -2.43e+03         0   0.0367   0.0054    0.0054      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 137,   Parent ID = 128
+* G4Track Information:   Particle = gamma,   Track ID = 220,   Parent ID = 218
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.68   -0.276 -2.44e+03      5.86        0        0         0      Target initStep
-    1     -8.3    -23.6 -2.42e+03      5.86        0     32.4      32.4       World Transportation
-    2    -20.2    -51.3 -2.4e+03      5.86        0     38.5      70.9     Tracker Transportation
-    3     -943 -2.21e+03     -538      5.86        0 2.99e+03  3.07e+03       World Transportation
-    4 -1.26e+03 -2.94e+03     95.1      5.86        0 1.02e+03  4.08e+03  OutOfWorld Transportation
+    0   -0.539    -1.77 -2.43e+03      5.47        0        0         0      Target initStep
+    1    -4.44    -6.29 -2.43e+03         0        0     7.05      7.05      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 136,   Parent ID = 131
+* G4Track Information:   Particle = gamma,   Track ID = 219,   Parent ID = 218
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.9   -0.921 -2.45e+03      2.33        0        0         0      Target initStep
-    1     15.3     2.01 -2.45e+03      2.13        0     13.8      13.8      Target compt
-    2     24.6     4.38 -2.45e+03      2.13        0     9.66      23.4       World Transportation
-    3      378     94.4 -2.4e+03      2.13        0      368       391     Tracker Transportation
-    4 2.33e+03      590 -2.15e+03      2.13        0 2.03e+03  2.42e+03       World Transportation
-    5 2.94e+03      746 -2.07e+03      2.13        0      638  3.06e+03  OutOfWorld Transportation
+    0   -0.708    -1.25 -2.43e+03     0.201        0        0         0      Target initStep
+    1   -0.688    -1.31 -2.43e+03         0    0.088    0.126     0.126      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 254,   Parent ID = 136
+* G4Track Information:   Particle = e+,   Track ID = 249,   Parent ID = 220
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.3     2.01 -2.45e+03       0.2        0        0         0      Target initStep
-    1     15.3     2.01 -2.45e+03     0.041    0.159   0.0591    0.0591      Target eBrem
-    2     15.3     2.01 -2.45e+03         0    0.041  0.00645    0.0655      Target eIoni
+    0    -4.44    -6.29 -2.43e+03      2.38        0        0         0      Target initStep
+    1    -4.61    -6.43 -2.43e+03      1.57    0.412    0.387     0.387      Target eBrem
+    2    -4.71     -6.4 -2.43e+03     0.297     1.27     1.21      1.59      Target eIoni
+    3    -4.71     -6.4 -2.43e+03         0    0.297    0.143      1.74      Target eIoni
+    4    -4.71     -6.4 -2.43e+03         0        0        0      1.74      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 135,   Parent ID = 131
+* G4Track Information:   Particle = e-,   Track ID = 250,   Parent ID = 219
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.9   -0.921 -2.45e+03      2.88        0        0         0      Target initStep
-    1       17     7.79 -2.43e+03         0        0     25.2      25.2      Target conv
+    0   -0.688    -1.31 -2.43e+03     0.113        0        0         0      Target initStep
+    1   -0.688    -1.31 -2.43e+03         0    0.113   0.0335    0.0335      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 255,   Parent ID = 135
+* G4Track Information:   Particle = e-,   Track ID = 248,   Parent ID = 220
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       17     7.79 -2.43e+03     0.404        0        0         0      Target initStep
-    1       17     7.79 -2.43e+03         0    0.404    0.228     0.228      Target eIoni
+    0    -4.44    -6.29 -2.43e+03      2.06        0        0         0      Target initStep
+    1    -4.47    -6.37 -2.43e+03     0.567      1.5      1.1       1.1      Target eBrem
+    2    -4.45    -6.36 -2.43e+03         0    0.567     0.36      1.46      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 134,   Parent ID = 131
+* G4Track Information:   Particle = gamma,   Track ID = 253,   Parent ID = 249
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.48   -0.887 -2.45e+03     0.117        0        0         0      Target initStep
-    1     1.49    -0.91 -2.45e+03         0    0.088    0.115     0.115      Target phot
+    0    -4.71     -6.4 -2.43e+03     0.511        0        0         0      Target initStep
+    1     -9.2    -6.63 -2.43e+03         0    0.088     6.63      6.63      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 257,   Parent ID = 134
+* G4Track Information:   Particle = gamma,   Track ID = 252,   Parent ID = 249
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.49    -0.91 -2.45e+03     0.029        0        0         0      Target initStep
-    1     1.49   -0.909 -2.45e+03         0    0.029  0.00369   0.00369      Target eIoni
+    0    -4.71     -6.4 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -3.48    -6.34 -2.42e+03     0.173        0     1.83      1.83      Target compt
+    2    -3.58    -6.34 -2.42e+03     0.155        0    0.229      2.06      Target compt
+    3    -3.56    -6.27 -2.42e+03         0    0.088    0.124      2.18      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 133,   Parent ID = 131
+* G4Track Information:   Particle = gamma,   Track ID = 251,   Parent ID = 249
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.51   -0.829 -2.45e+03      2.02        0        0         0      Target initStep
-    1     1.65    -7.86 -2.43e+03      1.35        0       19        19      Target compt
-    2     3.27    -7.32 -2.42e+03     0.984        0     7.13      26.2      Target compt
-    3      5.5     8.13 -2.4e+03     0.984        0     27.3      53.4     Tracker Transportation
-    4      348 2.37e+03 1.03e+03     0.984        0 4.18e+03  4.23e+03       World Transportation
-    5      430 2.94e+03 1.84e+03     0.984        0      998  5.23e+03  OutOfWorld Transportation
+    0    -4.61    -6.43 -2.43e+03     0.404        0        0         0      Target initStep
+    1    -4.86    -6.27 -2.43e+03         0    0.088    0.566     0.566      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 259,   Parent ID = 133
+* G4Track Information:   Particle = e-,   Track ID = 258,   Parent ID = 251
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.27    -7.32 -2.42e+03      0.37        0        0         0      Target initStep
-    1     3.27    -7.33 -2.42e+03         0     0.37    0.201     0.201      Target eIoni
+    0    -4.86    -6.27 -2.43e+03     0.316        0        0         0      Target initStep
+    1    -4.86    -6.27 -2.43e+03         0    0.316     0.16      0.16      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 258,   Parent ID = 133
+* G4Track Information:   Particle = e-,   Track ID = 257,   Parent ID = 252
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.65    -7.86 -2.43e+03     0.664        0        0         0      Target initStep
-    1     1.64    -7.89 -2.43e+03         0    0.664    0.441     0.441      Target eIoni
+    0    -3.56    -6.27 -2.42e+03    0.0675        0        0         0      Target initStep
+    1    -3.56    -6.27 -2.42e+03         0   0.0675   0.0145    0.0145      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 132,   Parent ID = 131
+* G4Track Information:   Particle = e-,   Track ID = 256,   Parent ID = 252
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.53   -0.796 -2.45e+03       2.7        0        0         0      Target initStep
-    1    -3.64    -6.97 -2.4e+03       2.7        0     47.8      47.8     Tracker Transportation
-    2    -80.4    -98.8 -1.7e+03       2.7        0      710       758  Chamber_PV Transportation
-    3     -102     -125 -1.5e+03       2.7        0      203       961     Tracker Transportation
-    4     -168     -204     -900       2.7        0      609  1.57e+03  Chamber_PV Transportation
-    5     -190     -230     -700       2.7        0      203  1.77e+03     Tracker Transportation
-    6     -256     -309     -100       2.7        0      609  2.38e+03  Chamber_PV Transportation
-    7     -278     -335      100       2.7        0      203  2.58e+03     Tracker Transportation
-    8     -344     -414      700       2.7        0      609  3.19e+03  Chamber_PV Transportation
-    9     -366     -440      900       2.7        0      203   3.4e+03     Tracker Transportation
-   10     -432     -519  1.5e+03       2.7        0      609     4e+03  Chamber_PV Transportation
-   11     -453     -545  1.7e+03       2.7        0      203  4.21e+03     Tracker Transportation
-   12     -530     -637  2.4e+03       2.7        0      710  4.92e+03       World Transportation
-   13     -589     -707 2.94e+03       2.7        0      548  5.47e+03  OutOfWorld Transportation
+    0    -3.58    -6.34 -2.42e+03    0.0171        0        0         0      Target initStep
+    1    -3.58    -6.34 -2.42e+03         0   0.0171  0.00159   0.00159      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 256,   Parent ID = 135
+* G4Track Information:   Particle = e-,   Track ID = 255,   Parent ID = 252
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       17     7.79 -2.43e+03      1.45        0        0         0      Target initStep
-    1       17      7.8 -2.43e+03      1.17    0.036    0.027     0.027      Target eBrem
-    2     17.1     7.83 -2.43e+03         0     1.17    0.894     0.921      Target eIoni
-    3     17.1     7.83 -2.43e+03         0        0        0     0.921      Target annihil
+    0    -3.48    -6.34 -2.42e+03     0.338        0        0         0      Target initStep
+    1    -3.47    -6.34 -2.42e+03         0    0.338    0.177     0.177      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 253,   Parent ID = 138
+* G4Track Information:   Particle = e-,   Track ID = 254,   Parent ID = 253
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -1.9    -6.43 -2.44e+03      1.81        0        0         0      Target initStep
-    1    -1.93    -6.56 -2.44e+03     0.429     1.39     1.35      1.35      Target eIoni
-    2    -1.95    -6.55 -2.44e+03     0.175    0.254    0.201      1.55      Target eBrem
-    3    -1.95    -6.55 -2.44e+03         0    0.175    0.063      1.61      Target eIoni
-    4    -1.95    -6.55 -2.44e+03         0        0        0      1.61      Target annihil
+    0     -9.2    -6.63 -2.43e+03     0.423        0        0         0      Target initStep
+    1    -9.21    -6.63 -2.43e+03         0    0.423    0.243     0.243      Target eIoni
+>>> Event: 0
+    0 hits stored in this event
+### Run 1 starts.
+--> Event 0 starts.
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 181,   Parent ID = 176
+* G4Track Information:   Particle = mu+,   Track ID = 1,   Parent ID = 0
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -2.7     1.62 -2.44e+03      6.29        0        0         0      Target initStep
-    1    -2.74     1.62 -2.44e+03      2.61    0.144    0.157     0.157      Target eBrem
-    2    -2.87     1.56 -2.44e+03         0    0.623    0.684     0.842      Target annihil
+    0        0        0 -2.94e+03     1e+06        0        0         0       World initStep
+    1 -1.04e-05 3.93e-05 -2.77e+03     1e+06   0.0351      174       174       World muIoni
+    2 -9.64e-06 4.26e-05 -2.75e+03     1e+06  0.00254     12.5       187       World muIoni
+    3 0.000155 4.22e-05 -2.66e+03     1e+06   0.0187     91.2       278       World muIoni
+    4 0.000384 3.29e-05 -2.54e+03     1e+06   0.0234      127       405       World muIoni
+    5  0.00056 2.65e-05 -2.45e+03     1e+06   0.0156     85.2       490      Target Transportation
+    6 0.000557 2.43e-05 -2.45e+03     1e+06     1.23     1.04       491      Target muIoni
+    7  0.00103 -0.000856 -2.42e+03     1e+06     35.5       27       518      Target muPairProd
+    8  0.00104 -0.000872 -2.42e+03     1e+06    0.421    0.301       518      Target muIoni
+    9  0.00104 -0.000881 -2.42e+03     1e+06    0.204     0.15       518      Target muIoni
+   10  0.00112 -0.00104 -2.42e+03     1e+06     3.84     2.61       521      Target muIoni
+   11  0.00183 -0.00221 -2.4e+03     1e+06     25.3     18.9       540     Tracker Transportation
+   12  0.00714 -0.00867 -2.3e+03     1e+06   0.0251      100       640     Tracker StepLimiter
+   13  0.00776 -0.00943 -2.29e+03     1e+06  0.00214     11.7       652     Tracker muIoni
+   14    0.013  -0.0159 -2.19e+03     1e+06   0.0227      100       752     Tracker StepLimiter
+   15   0.0169  -0.0206 -2.12e+03     1e+06   0.0155     72.8       825     Tracker muIoni
+   16   0.0187  -0.0229 -2.08e+03     1e+06  0.00791     35.6       860     Tracker muIoni
+   17    0.024  -0.0293 -1.98e+03     1e+06   0.0198      100       960     Tracker StepLimiter
+   18   0.0292  -0.0357 -1.88e+03     1e+06   0.0187      100  1.06e+03     Tracker StepLimiter
+   19   0.0344  -0.0422 -1.78e+03     1e+06   0.0211      100  1.16e+03     Tracker StepLimiter
+   20   0.0386  -0.0474 -1.7e+03     1e+06   0.0181     79.8  1.24e+03  Chamber_PV Transportation
+   21   0.0411  -0.0505 -1.65e+03     1e+06    0.027     48.5  1.29e+03  Chamber_PV muIoni
+   22   0.0418  -0.0514 -1.64e+03     1e+06  0.00707     13.6   1.3e+03  Chamber_PV muIoni
+   23   0.0434  -0.0534 -1.61e+03     1e+06   0.0196     30.5  1.33e+03  Chamber_PV muIoni
+   24   0.0439   -0.054 -1.6e+03     1e+06  0.00241     8.29  1.34e+03  Chamber_PV muIoni
+   25   0.0442  -0.0544 -1.59e+03     1e+06  0.00411     6.25  1.35e+03  Chamber_PV muIoni
+   26   0.0446  -0.0549 -1.58e+03     1e+06  0.00415     8.51  1.36e+03  Chamber_PV muIoni
+   27   0.0448  -0.0551 -1.58e+03     1e+06 0.000649     2.76  1.36e+03  Chamber_PV muIoni
+   28    0.045  -0.0553 -1.58e+03     1e+06  0.00183     3.59  1.36e+03  Chamber_PV muIoni
+   29   0.0489  -0.0603 -1.5e+03     1e+06   0.0945     75.5  1.44e+03  Chamber_PV muIoni
+   30    0.049  -0.0604 -1.5e+03     1e+06  0.00106     2.46  1.44e+03     Tracker Transportation
+   31   0.0529  -0.0653 -1.42e+03     1e+06   0.0114     75.1  1.52e+03     Tracker muIoni
+   32    0.058  -0.0719 -1.32e+03     1e+06   0.0167      100  1.62e+03     Tracker StepLimiter
+   33   0.0608  -0.0754 -1.27e+03     1e+06   0.0137     53.7  1.67e+03     Tracker muIoni
+   34   0.0642  -0.0797 -1.2e+03     1e+06   0.0114       67  1.74e+03     Tracker muIoni
+   35   0.0693  -0.0863 -1.1e+03     1e+06   0.0224      100  1.84e+03     Tracker StepLimiter
+   36   0.0744  -0.0928   -1e+03     1e+06   0.0195      100  1.94e+03     Tracker StepLimiter
+   37   0.0795  -0.0994     -904     1e+06   0.0192      100  2.04e+03     Tracker StepLimiter
+   38   0.0797  -0.0996     -900     1e+06 0.000385     4.27  2.04e+03  Chamber_PV Transportation
+   39   0.0805   -0.101     -884     1e+06   0.0136     16.3  2.06e+03  Chamber_PV muIoni
+   40   0.0829   -0.104     -836     1e+06   0.0237     47.5   2.1e+03  Chamber_PV muIoni
+   41    0.085   -0.106     -796     1e+06   0.0306     40.6  2.14e+03  Chamber_PV muIoni
+   42   0.0852   -0.107     -792     1e+06  0.00162     3.56  2.15e+03  Chamber_PV muIoni
+   43   0.0854   -0.107     -787     1e+06  0.00324     4.65  2.15e+03  Chamber_PV muIoni
+   44   0.0866   -0.108     -765     1e+06   0.0131     21.9  2.17e+03  Chamber_PV muIoni
+   45   0.0884   -0.111     -731     1e+06   0.0233     34.1  2.21e+03  Chamber_PV muIoni
+   46   0.0894   -0.112     -712     1e+06   0.0163     18.9  2.23e+03  Chamber_PV muIoni
+   47   0.0895   -0.112     -710     1e+06  0.00131     2.64  2.23e+03  Chamber_PV muIoni
+   48     0.09   -0.113     -700     1e+06  0.00662     9.78  2.24e+03     Tracker Transportation
+   49   0.0903   -0.113     -695     1e+06 0.000855     5.09  2.25e+03     Tracker muIoni
+   50   0.0929   -0.116     -645     1e+06  0.00922     50.3   2.3e+03     Tracker muIoni
+   51   0.0982   -0.123     -545     1e+06    0.021      100   2.4e+03     Tracker StepLimiter
+   52    0.102   -0.128     -473     1e+06   0.0124     71.9  2.47e+03     Tracker muIoni
+   53    0.105   -0.131     -414     1e+06   0.0116     58.5  2.53e+03     Tracker muIoni
+   54    0.107   -0.134     -380     1e+06  0.00731     34.6  2.56e+03     Tracker muIoni
+   55    0.112    -0.14     -280     1e+06   0.0177      100  2.66e+03     Tracker StepLimiter
+   56    0.115   -0.144     -228     1e+06  0.00849     52.1  2.71e+03     Tracker muIoni
+   57     0.12    -0.15     -128     1e+06   0.0208      100  2.81e+03     Tracker StepLimiter
+   58    0.121   -0.151     -108     1e+06  0.00276     19.2  2.83e+03     Tracker muIoni
+   59    0.122   -0.152     -100     1e+06  0.00348     8.39  2.84e+03  Chamber_PV Transportation
+   60    0.124   -0.155    -54.9     1e+06   0.0235     45.1  2.89e+03  Chamber_PV muIoni
+   61    0.124   -0.155    -51.2     1e+06  0.00222     3.76  2.89e+03  Chamber_PV muIoni
+   62    0.128   -0.159     10.8     1e+06   0.0425       62  2.95e+03  Chamber_PV muIoni
+   63    0.128    -0.16     26.5     1e+06   0.0131     15.7  2.97e+03  Chamber_PV muIoni
+   64    0.132   -0.165      100     1e+06   0.0684     73.5  3.04e+03     Tracker Transportation
+   65    0.138   -0.171      200     1e+06   0.0196      100  3.14e+03     Tracker StepLimiter
+   66    0.143   -0.178      300     1e+06   0.0208      100  3.24e+03     Tracker StepLimiter
+   67    0.144   -0.179      326     1e+06   0.0049     25.8  3.27e+03     Tracker muIoni
+   68     0.15   -0.186      426     1e+06   0.0243      100  3.37e+03     Tracker StepLimiter
+   69    0.151   -0.187      449     1e+06  0.00596     23.4  3.39e+03     Tracker muIoni
+   70    0.153    -0.19      490     1e+06  0.00685     40.6  3.43e+03     Tracker muIoni
+   71    0.158   -0.196      590     1e+06   0.0201      100  3.53e+03     Tracker StepLimiter
+   72    0.162     -0.2      650     1e+06   0.0129     59.8  3.59e+03     Tracker muIoni
+   73    0.164   -0.203      688     1e+06  0.00648     38.6  3.63e+03     Tracker muIoni
+   74    0.164   -0.203      700     1e+06  0.00234     11.8  3.64e+03  Chamber_PV Transportation
+   75    0.167   -0.206      747     1e+06   0.0293       47  3.69e+03  Chamber_PV muIoni
+   76    0.167   -0.207      760     1e+06  0.00402     12.6   3.7e+03  Chamber_PV muIoni
+   77    0.168   -0.208      770     1e+06   0.0106       10  3.71e+03  Chamber_PV muIoni
+   78    0.169   -0.209      783     1e+06  0.00982     13.5  3.72e+03  Chamber_PV muIoni
+   79    0.171   -0.211      819     1e+06   0.0209     35.3  3.76e+03  Chamber_PV muIoni
+   80    0.174   -0.215      885     1e+06   0.0652     66.6  3.83e+03  Chamber_PV muIoni
+   81    0.175   -0.216      893     1e+06  0.00396      8.2  3.83e+03  Chamber_PV muIoni
+   82    0.175   -0.216      900     1e+06  0.00609     6.68  3.84e+03     Tracker Transportation
+   83    0.179   -0.221      972     1e+06   0.0199     71.7  3.91e+03     Tracker muIoni
+   84    0.184   -0.227 1.07e+03     1e+06   0.0196      100  4.01e+03     Tracker StepLimiter
+   85    0.189   -0.233 1.17e+03     1e+06   0.0264      100  4.11e+03     Tracker StepLimiter
+   86    0.191   -0.236 1.21e+03     1e+06  0.00457     36.7  4.15e+03     Tracker muIoni
+   87    0.197   -0.242 1.31e+03     1e+06   0.0209      100  4.25e+03     Tracker StepLimiter
+   88      0.2   -0.246 1.37e+03     1e+06    0.012     58.5  4.31e+03     Tracker muIoni
+   89    0.202   -0.249 1.41e+03     1e+06  0.00748     45.8  4.35e+03     Tracker muIoni
+   90    0.207   -0.254  1.5e+03     1e+06   0.0181     87.3  4.44e+03  Chamber_PV Transportation
+   91    0.208   -0.255 1.51e+03     1e+06   0.0116     14.7  4.45e+03  Chamber_PV muIoni
+   92    0.212    -0.26  1.6e+03     1e+06   0.0551     80.8  4.54e+03  Chamber_PV muIoni
+   93    0.214   -0.263 1.64e+03     1e+06    0.033     41.8  4.58e+03  Chamber_PV muIoni
+   94    0.216   -0.265 1.67e+03     1e+06   0.0223     34.5  4.61e+03  Chamber_PV muIoni
+   95    0.216   -0.266 1.68e+03     1e+06  0.00318     4.44  4.62e+03  Chamber_PV muIoni
+   96    0.218   -0.267  1.7e+03     1e+06   0.0148     23.9  4.64e+03     Tracker Transportation
+   97    0.223   -0.273  1.8e+03     1e+06   0.0189      100  4.74e+03     Tracker StepLimiter
+   98    0.228   -0.279  1.9e+03     1e+06   0.0162      100  4.84e+03     Tracker StepLimiter
+   99    0.231   -0.283 1.96e+03     1e+06   0.0121     56.1   4.9e+03     Tracker muIoni
+  100    0.236   -0.289 2.05e+03     1e+06    0.017     97.1  4.99e+03     Tracker muIoni
+  101    0.242   -0.295 2.15e+03     1e+06   0.0204      100  5.09e+03     Tracker StepLimiter
+  102    0.247   -0.301 2.25e+03     1e+06   0.0209      100  5.19e+03     Tracker StepLimiter
+  103    0.249   -0.303 2.29e+03     1e+06   0.0067     32.6  5.23e+03     Tracker muIoni
+  104     0.25   -0.304  2.3e+03     1e+06  0.00161     9.61  5.24e+03     Tracker muIoni
+  105     0.25   -0.305 2.31e+03     1e+06  0.00394     16.4  5.25e+03     Tracker muIoni
+  106    0.251   -0.306 2.33e+03     1e+06  0.00316     15.7  5.27e+03     Tracker muIoni
+  107    0.254   -0.309 2.38e+03     1e+06   0.0101     51.6  5.32e+03     Tracker muIoni
+  108    0.255    -0.31  2.4e+03     1e+06  0.00351     20.9  5.34e+03       World Transportation
+  109    0.256   -0.311 2.42e+03     1e+06  0.00311     21.6  5.36e+03       World muIoni
+  110    0.258   -0.314 2.46e+03     1e+06  0.00558     34.6   5.4e+03       World muIoni
+  111    0.263   -0.319 2.55e+03     1e+06    0.017     95.8  5.49e+03       World muIoni
+  112    0.265   -0.321 2.58e+03     1e+06  0.00534     29.3  5.52e+03       World muIoni
+  113    0.267   -0.324 2.62e+03     1e+06  0.00733     39.7  5.56e+03       World muIoni
+  114    0.273    -0.33 2.73e+03     1e+06   0.0169      105  5.67e+03       World muIoni
+  115    0.273    -0.33 2.73e+03     1e+06 1.33e-05    0.226  5.67e+03       World muIoni
+  116     0.28   -0.339 2.86e+03     1e+06    0.029      138   5.8e+03       World muIoni
+  117    0.284   -0.343 2.94e+03     1e+06   0.0213     75.6  5.88e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 267,   Parent ID = 181
+* G4Track Information:   Particle = e-,   Track ID = 82,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.87     1.56 -2.44e+03     0.335        0        0         0      Target initStep
-    1    -5.52    0.941 -2.44e+03         0    0.088     4.99      4.99      Target phot
+    0     0.28   -0.339 2.86e+03   0.00341        0        0         0       World initStep
+    1    0.107   -0.312 2.86e+03         0  0.00341    0.393     0.393       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 268,   Parent ID = 267
+* G4Track Information:   Particle = e-,   Track ID = 81,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -5.52    0.941 -2.44e+03     0.247        0        0         0      Target initStep
-    1    -5.52    0.947 -2.44e+03         0    0.247    0.112     0.112      Target eIoni
+    0    0.273    -0.33 2.73e+03   0.00132        0        0         0       World initStep
+    1    0.239   -0.318 2.73e+03         0  0.00132   0.0857    0.0857       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 266,   Parent ID = 181
+* G4Track Information:   Particle = e-,   Track ID = 80,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.87     1.56 -2.44e+03      2.67        0        0         0      Target initStep
-    1    -0.32  -0.0583 -2.43e+03         0    0.088     3.37      3.37      Target phot
+    0    0.273    -0.33 2.73e+03   0.00454        0        0         0       World initStep
+    1   0.0319   -0.174 2.73e+03         0  0.00454    0.645     0.645       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 269,   Parent ID = 266
+* G4Track Information:   Particle = e-,   Track ID = 79,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -0.32  -0.0583 -2.43e+03      2.58        0        0         0      Target initStep
-    1   -0.131   -0.197 -2.43e+03     0.769     1.81     1.63      1.63      Target eIoni
-    2  -0.0988   -0.203 -2.43e+03         0    0.769    0.531      2.16      Target eIoni
+    0    0.267   -0.324 2.62e+03   0.00161        0        0         0       World initStep
+    1    0.221   -0.343 2.62e+03         0  0.00161    0.116     0.116       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 265,   Parent ID = 181
+* G4Track Information:   Particle = e-,   Track ID = 78,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.74     1.62 -2.44e+03      3.54        0        0         0      Target initStep
-    1     -4.6    0.685 -2.43e+03     0.508        0      4.2       4.2      Target compt
-    2    -4.07    -4.44 -2.43e+03         0    0.088     5.15      9.35      Target phot
+    0    0.265   -0.321 2.58e+03     0.003        0        0         0       World initStep
+    1    0.127   -0.301 2.58e+03         0    0.003    0.315     0.315       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 264,   Parent ID = 253
+* G4Track Information:   Particle = e-,   Track ID = 77,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.95    -6.55 -2.44e+03     0.511        0        0         0      Target initStep
-    1    -5.37     -9.7 -2.44e+03     0.242        0     5.68      5.68      Target compt
-    2    -5.38     -9.8 -2.44e+03         0    0.088    0.161      5.84      Target phot
+    0    0.263   -0.319 2.55e+03    0.0032        0        0         0       World initStep
+    1    0.316   -0.466 2.55e+03         0   0.0032    0.351     0.351       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 263,   Parent ID = 253
+* G4Track Information:   Particle = e-,   Track ID = 76,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.95    -6.55 -2.44e+03     0.511        0        0         0      Target initStep
-    1   -0.794    -5.48 -2.44e+03     0.452        0     1.92      1.92      Target compt
-    2   -0.269    -5.12 -2.44e+03         0    0.088     1.47      3.39      Target phot
+    0    0.258   -0.314 2.46e+03    0.0125        0        0         0       World initStep
+    1   -0.487    -1.58 2.46e+03   0.00912  0.00338      2.2       2.2       World eIoni
+    2   -0.531    -1.65 2.46e+03   0.00637 0.000424      0.1       2.3       World eIoni
+    3    -0.65    -2.11 2.46e+03   0.00167   0.0047    0.795       3.1       World eIoni
+    4   -0.671    -2.14 2.46e+03         0  0.00167    0.123      3.22       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 262,   Parent ID = 256
+* G4Track Information:   Particle = e-,   Track ID = 83,   Parent ID = 76
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     17.1     7.83 -2.43e+03     0.511        0        0         0      Target initStep
-    1     18.1      8.9 -2.42e+03     0.299        0     6.52      6.52      Target compt
-    2     17.6     6.96 -2.42e+03         0    0.088     2.29      8.81      Target phot
+    0   -0.531    -1.65 2.46e+03   0.00232        0        0         0       World initStep
+    1   -0.561    -1.62 2.46e+03         0  0.00232    0.205     0.205       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 261,   Parent ID = 256
+* G4Track Information:   Particle = e-,   Track ID = 75,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     17.1     7.83 -2.43e+03     0.511        0        0         0      Target initStep
-    1     16.3     6.98 -2.43e+03         0    0.088     5.18      5.18      Target phot
+    0    0.256   -0.311 2.42e+03   0.00901        0        0         0       World initStep
+    1    0.424    0.194 2.42e+03   0.00573  0.00169    0.652     0.652       World eIoni
+    2    0.363    0.607 2.42e+03         0  0.00573    0.975      1.63       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 260,   Parent ID = 256
+* G4Track Information:   Particle = e-,   Track ID = 84,   Parent ID = 75
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       17      7.8 -2.43e+03     0.242        0        0         0      Target initStep
-    1     17.1     7.84 -2.43e+03         0    0.088    0.129     0.129      Target phot
+    0    0.424    0.194 2.42e+03   0.00159        0        0         0       World initStep
+    1    0.466    0.193 2.42e+03         0  0.00159    0.113     0.113       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 279,   Parent ID = 260
+* G4Track Information:   Particle = e-,   Track ID = 74,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     17.1     7.84 -2.43e+03     0.154        0        0         0      Target initStep
-    1     17.1     7.84 -2.43e+03         0    0.154   0.0546    0.0546      Target eIoni
+    0    0.254   -0.309 2.38e+03   0.00505        0        0         0     Tracker initStep
+    1    0.429 -0.00938 2.38e+03         0  0.00505     0.78      0.78     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 278,   Parent ID = 261
+* G4Track Information:   Particle = e-,   Track ID = 73,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     16.3     6.98 -2.43e+03     0.423        0        0         0      Target initStep
-    1     16.3     6.97 -2.43e+03         0    0.423    0.243     0.243      Target eIoni
+    0    0.251   -0.306 2.33e+03   0.00157        0        0         0     Tracker initStep
+    1    0.263    -0.26 2.33e+03         0  0.00157    0.111     0.111     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 277,   Parent ID = 262
+* G4Track Information:   Particle = e-,   Track ID = 72,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     17.6     6.96 -2.42e+03     0.211        0        0         0      Target initStep
-    1     17.6     6.96 -2.42e+03         0    0.211   0.0882    0.0882      Target eIoni
+    0     0.25   -0.305 2.31e+03   0.00235        0        0         0     Tracker initStep
+    1    0.329   -0.353 2.31e+03         0  0.00235    0.209     0.209     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 276,   Parent ID = 262
+* G4Track Information:   Particle = e-,   Track ID = 71,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     18.1      8.9 -2.42e+03     0.212        0        0         0      Target initStep
-    1     18.1     8.91 -2.42e+03         0    0.212   0.0891    0.0891      Target eIoni
+    0     0.25   -0.304  2.3e+03   0.00253        0        0         0     Tracker initStep
+    1    0.285   -0.402  2.3e+03         0  0.00253    0.236     0.236     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 275,   Parent ID = 263
+* G4Track Information:   Particle = e-,   Track ID = 70,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.269    -5.12 -2.44e+03     0.364        0        0         0      Target initStep
-    1   -0.258    -5.12 -2.44e+03         0    0.364    0.196     0.196      Target eIoni
+    0    0.249   -0.303 2.29e+03   0.00224        0        0         0     Tracker initStep
+    1    0.167   -0.282 2.29e+03         0  0.00224    0.193     0.193     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 274,   Parent ID = 263
+* G4Track Information:   Particle = e-,   Track ID = 69,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.794    -5.48 -2.44e+03    0.0595        0        0         0      Target initStep
-    1   -0.793    -5.48 -2.44e+03         0   0.0595   0.0118    0.0118      Target eIoni
+    0    0.236   -0.289 2.05e+03   0.00556        0        0         0     Tracker initStep
+    1    0.225   -0.496 2.05e+03   0.00272  0.00124    0.249     0.249     Tracker eIoni
+    2     0.15   -0.467 2.05e+03         0  0.00272    0.268     0.516     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 273,   Parent ID = 264
+* G4Track Information:   Particle = e-,   Track ID = 85,   Parent ID = 69
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -5.38     -9.8 -2.44e+03     0.154        0        0         0      Target initStep
-    1    -5.38     -9.8 -2.44e+03         0    0.154   0.0541    0.0541      Target eIoni
+    0    0.225   -0.496 2.05e+03    0.0016        0        0         0     Tracker initStep
+    1     0.22   -0.543 2.05e+03         0   0.0016    0.114     0.114     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 272,   Parent ID = 264
+* G4Track Information:   Particle = e-,   Track ID = 68,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -5.37     -9.7 -2.44e+03     0.269        0        0         0      Target initStep
-    1    -5.38     -9.7 -2.44e+03         0    0.269    0.127     0.127      Target eIoni
+    0    0.231   -0.283 1.96e+03   0.00868        0        0         0     Tracker initStep
+    1     1.11   -0.215 1.96e+03   0.00512  0.00357     1.63      1.63     Tracker eIoni
+    2     1.38   -0.415 1.96e+03         0  0.00512    0.798      2.42     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 271,   Parent ID = 265
+* G4Track Information:   Particle = e-,   Track ID = 67,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -4.07    -4.44 -2.43e+03      0.42        0        0         0      Target initStep
-    1    -4.07    -4.45 -2.43e+03         0     0.42     0.24      0.24      Target eIoni
+    0    0.216   -0.266 1.68e+03   0.00899        0        0         0  Chamber_PV initStep
+    1    0.308   -0.327 1.68e+03         0  0.00899     1.02      1.02  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 270,   Parent ID = 265
+* G4Track Information:   Particle = e-,   Track ID = 66,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -4.6    0.685 -2.43e+03      3.03        0        0         0      Target initStep
-    1    -4.74    0.662 -2.43e+03      1.57     1.26    0.972     0.972      Target eBrem
-    2    -4.66    0.664 -2.43e+03    0.0166     1.43    0.998      1.97      Target eBrem
-    3    -4.66    0.664 -2.43e+03         0   0.0166  0.00152      1.97      Target eIoni
+    0    0.216   -0.265 1.67e+03    0.0115        0        0         0  Chamber_PV initStep
+    1    0.118   -0.395 1.67e+03    0.0023  0.00919     1.39      1.39  Chamber_PV eIoni
+    2    0.116    -0.41 1.67e+03         0   0.0023    0.126      1.52  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 281,   Parent ID = 270
+* G4Track Information:   Particle = e-,   Track ID = 65,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -4.66    0.664 -2.43e+03     0.119        0        0         0      Target initStep
-    1    -4.49    0.532 -2.43e+03         0    0.088    0.239     0.239      Target phot
+    0    0.214   -0.263 1.64e+03    0.0017        0        0         0  Chamber_PV initStep
+    1    0.206   -0.256 1.64e+03         0   0.0017   0.0832    0.0832  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 280,   Parent ID = 270
+* G4Track Information:   Particle = e-,   Track ID = 64,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -4.74    0.662 -2.43e+03     0.209        0        0         0      Target initStep
-    1    -3.01     1.48 -2.43e+03         0    0.088     1.96      1.96      Target phot
+    0    0.212    -0.26  1.6e+03   0.00146        0        0         0  Chamber_PV initStep
+    1    0.215   -0.252  1.6e+03         0  0.00146   0.0675    0.0675  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 283,   Parent ID = 280
+* G4Track Information:   Particle = e-,   Track ID = 63,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.01     1.48 -2.43e+03     0.121        0        0         0      Target initStep
-    1    -3.01     1.48 -2.43e+03         0    0.121   0.0372    0.0372      Target eIoni
+    0    0.208   -0.255 1.51e+03   0.00158        0        0         0  Chamber_PV initStep
+    1     0.21   -0.265 1.51e+03         0  0.00158   0.0756    0.0756  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 282,   Parent ID = 281
+* G4Track Information:   Particle = e-,   Track ID = 62,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -4.49    0.532 -2.43e+03    0.0312        0        0         0      Target initStep
-    1    -4.49    0.532 -2.43e+03         0   0.0312  0.00414   0.00414      Target eIoni
->>> Event: 0
-    0 hits stored in this event
-### Run 1 starts.
---> Event 0 starts.
+    0    0.202   -0.249 1.41e+03    0.0258        0        0         0     Tracker initStep
+    1     2.74      2.4 1.41e+03    0.0205  0.00533     4.58      4.58     Tracker eIoni
+    2     4.31     4.55 1.41e+03    0.0165  0.00398      3.5      8.08     Tracker eIoni
+    3     4.66     6.49 1.41e+03    0.0117  0.00478     2.81      10.9     Tracker eIoni
+    4     4.68     7.11 1.41e+03   0.00899   0.0016     1.27      12.2     Tracker eIoni
+    5     4.79      6.3 1.41e+03   0.00468  0.00317      1.2      13.4     Tracker eIoni
+    6     4.53     6.46 1.41e+03         0  0.00468    0.682        14     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = mu+,   Track ID = 1,   Parent ID = 0
+* G4Track Information:   Particle = e-,   Track ID = 87,   Parent ID = 62
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0        0        0 -2.94e+03     1e+06        0        0         0       World initStep
-    1 -2.99e-07  9.6e-06 -2.8e+03     1e+06   0.0282      139       139       World muIoni
-    2 7.66e-06 4.27e-05 -2.72e+03     1e+06   0.0155     80.5       220       World muIoni
-    3 2.55e-05 9.76e-05 -2.64e+03     1e+06   0.0191     83.7       304       World muIoni
-    4 3.11e-05 0.000112 -2.61e+03     1e+06  0.00551     23.3       327       World muIoni
-    5 5.02e-05  0.00023 -2.45e+03     1e+06   0.0312      163       490      Target Transportation
-    6 5.05e-05  0.00023 -2.45e+03     1e+06     3.15     1.85       492      Target muIoni
-    7 -0.000798 0.000826 -2.42e+03     1e+06     41.2     30.9       523      Target muIoni
-    8 -0.000969 0.000921 -2.41e+03     1e+06     7.54     5.96       529      Target muIoni
-    9 -0.00134  0.00122 -2.4e+03     1e+06     16.1     11.3       540     Tracker Transportation
-   10  -0.0054  0.00592 -2.3e+03     1e+06   0.0194      100       640     Tracker StepLimiter
-   11  -0.0084  0.00937 -2.23e+03     1e+06   0.0156     73.7       714     Tracker muIoni
-   12  -0.0125   0.0141 -2.13e+03     1e+06   0.0204      100       814     Tracker StepLimiter
-   13  -0.0166   0.0188 -2.03e+03     1e+06   0.0178      100       914     Tracker StepLimiter
-   14  -0.0188   0.0213 -1.97e+03     1e+06   0.0119     54.2       968     Tracker muIoni
-   15  -0.0212   0.0241 -1.91e+03     1e+06   0.0145     59.2  1.03e+03     Tracker muIoni
-   16  -0.0249   0.0285 -1.82e+03     1e+06   0.0164     92.7  1.12e+03     Tracker muIoni
-   17  -0.0284   0.0325 -1.73e+03     1e+06   0.0142     86.1  1.21e+03     Tracker muIoni
-   18  -0.0298   0.0341 -1.7e+03     1e+06  0.00572     34.1  1.24e+03  Chamber_PV Transportation
-   19  -0.0299   0.0342 -1.7e+03     1e+06  0.00113     2.11  1.24e+03  Chamber_PV muIoni
-   20  -0.0324    0.037 -1.64e+03     1e+06   0.0478     60.3   1.3e+03  Chamber_PV muIoni
-   21  -0.0327   0.0375 -1.63e+03     1e+06  0.00659      8.7  1.31e+03  Chamber_PV muIoni
-   22  -0.0335   0.0383 -1.61e+03     1e+06   0.0128     19.3  1.33e+03  Chamber_PV muIoni
-   23  -0.0339   0.0389 -1.6e+03     1e+06  0.00466       11  1.34e+03  Chamber_PV muIoni
-   24  -0.0342   0.0392 -1.59e+03     1e+06  0.00234     6.44  1.35e+03  Chamber_PV muIoni
-   25  -0.0351   0.0402 -1.57e+03     1e+06   0.0194     22.1  1.37e+03  Chamber_PV muIoni
-   26  -0.0364   0.0417 -1.54e+03     1e+06    0.019     32.1   1.4e+03  Chamber_PV muIoni
-   27  -0.0371   0.0425 -1.52e+03     1e+06   0.0134     18.1  1.42e+03  Chamber_PV muIoni
-   28  -0.0379   0.0434 -1.5e+03     1e+06   0.0149     19.8  1.44e+03     Tracker Transportation
-   29  -0.0419    0.048 -1.4e+03     1e+06   0.0195      100  1.54e+03     Tracker StepLimiter
-   30  -0.0458   0.0526 -1.3e+03     1e+06   0.0171      100  1.64e+03     Tracker StepLimiter
-   31  -0.0477   0.0548 -1.25e+03     1e+06  0.00801     47.7  1.69e+03     Tracker muIoni
-   32  -0.0482   0.0554 -1.24e+03     1e+06  0.00176     12.1   1.7e+03     Tracker muIoni
-   33  -0.0521     0.06 -1.14e+03     1e+06   0.0208      100   1.8e+03     Tracker StepLimiter
-   34  -0.0544   0.0628 -1.08e+03     1e+06  0.00913     59.2  1.86e+03     Tracker muIoni
-   35  -0.0577   0.0666     -999     1e+06   0.0213     82.5  1.94e+03     Tracker muIoni
-   36  -0.0616   0.0711     -900     1e+06   0.0206     98.6  2.04e+03  Chamber_PV Transportation
-   37  -0.0624   0.0721     -880     1e+06   0.0125       20  2.06e+03  Chamber_PV muIoni
-   38  -0.0633   0.0731     -857     1e+06   0.0122     23.4  2.08e+03  Chamber_PV muIoni
-   39  -0.0665   0.0771     -772     1e+06   0.0542     84.9  2.17e+03  Chamber_PV muIoni
-   40  -0.0669   0.0775     -763     1e+06  0.00512     8.87  2.18e+03  Chamber_PV muIoni
-   41  -0.0674   0.0781     -749     1e+06  0.00642     13.3  2.19e+03  Chamber_PV muIoni
-   42  -0.0693   0.0804     -700     1e+06   0.0326     49.5  2.24e+03     Tracker Transportation
-   43  -0.0699   0.0812     -683     1e+06  0.00315     16.9  2.26e+03     Tracker muIoni
-   44  -0.0711   0.0826     -653     1e+06  0.00687     29.9  2.29e+03     Tracker muIoni
-   45   -0.075   0.0872     -553     1e+06   0.0172      100  2.39e+03     Tracker StepLimiter
-   46   -0.078   0.0907     -475     1e+06   0.0179     77.7  2.46e+03     Tracker muIoni
-   47  -0.0799   0.0929     -427     1e+06   0.0105       48  2.51e+03     Tracker muIoni
-   48  -0.0808    0.094     -404     1e+06  0.00485     23.5  2.54e+03     Tracker muIoni
-   49  -0.0839   0.0977     -323     1e+06   0.0153     80.9  2.62e+03     Tracker muIoni
-   50  -0.0855   0.0996     -282     1e+06  0.00951     41.3  2.66e+03     Tracker muIoni
-   51  -0.0856   0.0997     -280     1e+06 0.000144     1.51  2.66e+03     Tracker muIoni
-   52  -0.0895    0.104     -180     1e+06   0.0163      100  2.76e+03     Tracker StepLimiter
-   53  -0.0926    0.108     -100     1e+06    0.015     80.3  2.84e+03  Chamber_PV Transportation
-   54  -0.0937    0.109    -70.6     1e+06   0.0149     29.4  2.87e+03  Chamber_PV muIoni
-   55  -0.0974    0.114     24.2     1e+06    0.061     94.8  2.96e+03  Chamber_PV muIoni
-   56  -0.0987    0.115     61.5     1e+06   0.0267     37.3     3e+03  Chamber_PV muIoni
-   57  -0.0991    0.116     70.3     1e+06  0.00333     8.88  3.01e+03  Chamber_PV muIoni
-   58  -0.0997    0.116     86.9     1e+06  0.00757     16.6  3.03e+03  Chamber_PV muIoni
-   59     -0.1    0.117      100     1e+06   0.0128     13.1  3.04e+03     Tracker Transportation
-   60   -0.102    0.119      148     1e+06   0.0113     47.6  3.09e+03     Tracker muIoni
-   61   -0.102    0.119      153     1e+06 0.000793     5.21  3.09e+03     Tracker muIoni
-   62   -0.106    0.124      253     1e+06    0.018      100  3.19e+03     Tracker StepLimiter
-   63   -0.109    0.129      350     1e+06   0.0189       97  3.29e+03     Tracker muIoni
-   64    -0.11    0.129      368     1e+06  0.00441     17.8  3.31e+03     Tracker muIoni
-   65   -0.113    0.133      452     1e+06   0.0176     84.3  3.39e+03     Tracker muIoni
-   66   -0.114    0.135      479     1e+06  0.00672     27.3  3.42e+03     Tracker muIoni
-   67   -0.114    0.135      489     1e+06   0.0018     9.37  3.43e+03     Tracker muIoni
-   68   -0.116    0.138      545     1e+06   0.0143     56.1  3.48e+03     Tracker muIoni
-   69   -0.118    0.139      585     1e+06   0.0089       40  3.52e+03     Tracker muIoni
-   70   -0.121    0.144      685     1e+06   0.0205      100  3.62e+03     Tracker StepLimiter
-   71   -0.122    0.145      700     1e+06  0.00239     15.4  3.64e+03  Chamber_PV Transportation
-   72   -0.123    0.146      727     1e+06   0.0154     26.8  3.67e+03  Chamber_PV muIoni
-   73   -0.123    0.146      733     1e+06  0.00415     6.41  3.67e+03  Chamber_PV muIoni
-   74   -0.124    0.148      762     1e+06   0.0169     28.6   3.7e+03  Chamber_PV muIoni
-   75   -0.127    0.152      847     1e+06   0.0618     85.6  3.79e+03  Chamber_PV muIoni
-   76   -0.128    0.152      859     1e+06  0.00821     11.3   3.8e+03  Chamber_PV muIoni
-   77   -0.128    0.153      880     1e+06   0.0195     21.5  3.82e+03  Chamber_PV muIoni
-   78   -0.129    0.154      900     1e+06   0.0144     19.7  3.84e+03     Tracker Transportation
-   79   -0.132    0.157      975     1e+06   0.0146     74.9  3.91e+03     Tracker muIoni
-   80   -0.136    0.162 1.07e+03     1e+06   0.0184      100  4.01e+03     Tracker StepLimiter
-   81   -0.137    0.163  1.1e+03     1e+06  0.00344     21.8  4.04e+03     Tracker muIoni
-   82    -0.14    0.167  1.2e+03     1e+06   0.0192      100  4.14e+03     Tracker StepLimiter
-   83   -0.142    0.169 1.24e+03     1e+06  0.00992     44.6  4.18e+03     Tracker muIoni
-   84   -0.144    0.171 1.29e+03     1e+06  0.00707       47  4.23e+03     Tracker muIoni
-   85   -0.148    0.176 1.39e+03     1e+06   0.0183      100  4.33e+03     Tracker StepLimiter
-   86   -0.149    0.177 1.42e+03     1e+06  0.00901     32.2  4.36e+03     Tracker muIoni
-   87   -0.152    0.181  1.5e+03     1e+06   0.0169     79.5  4.44e+03  Chamber_PV Transportation
-   88   -0.154    0.183 1.56e+03     1e+06   0.0353     56.4   4.5e+03  Chamber_PV muIoni
-   89   -0.155    0.185 1.59e+03     1e+06   0.0247     31.9  4.53e+03  Chamber_PV muIoni
-   90   -0.158    0.187 1.65e+03     1e+06    0.043     64.4  4.59e+03  Chamber_PV muIoni
-   91    -0.16    0.189  1.7e+03     1e+06   0.0395     47.4  4.64e+03     Tracker Transportation
-   92    -0.16     0.19 1.71e+03     1e+06   0.0016     11.5  4.65e+03     Tracker muIoni
-   93   -0.164    0.194 1.81e+03     1e+06   0.0233      100  4.75e+03     Tracker StepLimiter
-   94   -0.168    0.198 1.91e+03     1e+06   0.0221      100  4.85e+03     Tracker StepLimiter
-   95   -0.171    0.202 1.99e+03     1e+06   0.0151     78.1  4.93e+03     Tracker muIoni
-   96   -0.174    0.205 2.08e+03     1e+06   0.0168     85.7  5.02e+03     Tracker muIoni
-   97   -0.178    0.209 2.18e+03     1e+06   0.0213      100  5.12e+03     Tracker StepLimiter
-   98    -0.18    0.212 2.24e+03     1e+06  0.00864     60.6  5.18e+03     Tracker muIoni
-   99   -0.183    0.216 2.33e+03     1e+06   0.0142     91.6  5.27e+03     Tracker muIoni
-  100   -0.186    0.219  2.4e+03     1e+06   0.0131     72.5  5.34e+03       World Transportation
-  101   -0.188    0.221 2.46e+03     1e+06   0.0118     56.3   5.4e+03       World muIoni
-  102   -0.194    0.228 2.61e+03     1e+06   0.0312      155  5.55e+03       World muIoni
-  103     -0.2    0.234 2.75e+03     1e+06   0.0322      143  5.69e+03       World muIoni
-  104   -0.207    0.241 2.94e+03     1e+06   0.0327      185  5.88e+03  OutOfWorld Transportation
+    0     4.79      6.3 1.41e+03   0.00114        0        0         0     Tracker initStep
+    1     4.79      6.3 1.41e+03         0  0.00114   0.0691    0.0691     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 75,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 86,   Parent ID = 62
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -0.2    0.234 2.75e+03   0.00471        0        0         0       World initStep
-    1   -0.428   0.0291 2.75e+03         0  0.00471    0.688     0.688       World eIoni
+    0     4.68     7.11 1.41e+03   0.00109        0        0         0     Tracker initStep
+    1      4.7     7.11 1.41e+03         0  0.00109   0.0648    0.0648     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 74,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 61,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.194    0.228 2.61e+03   0.00824        0        0         0       World initStep
-    1   -0.199     1.04 2.61e+03   0.00282  0.00542     1.55      1.55       World eIoni
-    2   -0.205     1.16 2.61e+03         0  0.00282    0.284      1.83       World eIoni
+    0      0.2   -0.246 1.37e+03   0.00223        0        0         0     Tracker initStep
+    1    0.273   -0.206 1.37e+03         0  0.00223    0.192     0.192     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 73,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 60,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.188    0.221 2.46e+03    0.0025        0        0         0       World initStep
-    1   -0.113    0.291 2.46e+03         0   0.0025    0.233     0.233       World eIoni
+    0    0.191   -0.236 1.21e+03   0.00106        0        0         0     Tracker initStep
+    1    0.209   -0.218 1.21e+03         0  0.00106   0.0621    0.0621     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 72,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 59,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.183    0.216 2.33e+03   0.00181        0        0         0     Tracker initStep
-    1   -0.234    0.247 2.33e+03         0  0.00181    0.139     0.139     Tracker eIoni
+    0    0.179   -0.221      972   0.00389        0        0         0     Tracker initStep
+    1    0.393   -0.173      972         0  0.00389    0.494     0.494     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 71,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 58,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -0.18    0.212 2.24e+03   0.00135        0        0         0     Tracker initStep
-    1    -0.21    0.234 2.24e+03         0  0.00135   0.0883    0.0883     Tracker eIoni
+    0    0.175   -0.216      893   0.00222        0        0         0  Chamber_PV initStep
+    1    0.171   -0.201      893         0  0.00222     0.12      0.12  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 70,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 57,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.174    0.205 2.08e+03     0.157        0        0         0     Tracker initStep
-    1     4.56     3.78 2.08e+03     0.153  0.00203     6.64      6.64     Tracker eIoni
-    2     20.8     10.2 2.08e+03     0.148  0.00363     17.7      24.3     Tracker eIoni
-    3     49.4     31.5 2.05e+03     0.134   0.0125     44.3      68.6     Tracker eIoni
-    4     63.9     57.8 2.04e+03     0.127  0.00762     34.3       103     Tracker eIoni
-    5     70.8     69.1 2.02e+03     0.114   0.0106     29.4       132     Tracker eIoni
-    6     71.1     71.2 2.02e+03     0.111  0.00165     6.11       138     Tracker eIoni
-    7     71.9     76.8 2.01e+03     0.106  0.00392     10.8       149     Tracker eIoni
-    8       66     96.2 1.99e+03    0.0944   0.0102     31.4       181     Tracker eIoni
-    9     58.1      121 1.98e+03    0.0826   0.0106     29.4       210     Tracker eIoni
-   10     57.8      121 1.98e+03     0.081 0.000186    0.727       211     Tracker eIoni
-   11       57      123 1.99e+03    0.0785 0.000344     1.86       213     Tracker eIoni
-   12     45.2      138 1.99e+03    0.0698  0.00877     24.4       237     Tracker eIoni
-   13     45.1      138 1.99e+03    0.0674 7.15e-05    0.225       237     Tracker eIoni
-   14     34.6      146    2e+03    0.0594  0.00798     18.9       256     Tracker eIoni
-   15     32.1      147 2.01e+03    0.0461  0.00363        8       264     Tracker eIoni
-   16     33.3      146 2.01e+03    0.0423  0.00255     3.57       268     Tracker eIoni
-   17     37.3      147 2.02e+03    0.0359  0.00641     9.07       277     Tracker eIoni
-   18     36.3      144 2.03e+03    0.0314  0.00346     6.06       283     Tracker eIoni
-   19     38.7      144 2.03e+03    0.0266  0.00478      5.9       289     Tracker eIoni
-   20     35.8      145 2.03e+03      0.02  0.00547     4.51       293     Tracker eIoni
-   21       34      146 2.03e+03    0.0149  0.00507     3.42       297     Tracker eIoni
-   22     33.1      145 2.03e+03    0.0108  0.00412     2.57       299     Tracker eIoni
-   23     32.6      145 2.04e+03   0.00625  0.00457     1.96       301     Tracker eIoni
-   24     32.6      145 2.04e+03   0.00388 0.000899    0.258       301     Tracker eIoni
-   25     32.7      145 2.04e+03   0.00257 0.000153   0.0127       301     Tracker eIoni
-   26     32.7      145 2.04e+03         0  0.00257    0.243       302     Tracker eIoni
+    0    0.174   -0.215      885    0.0022        0        0         0  Chamber_PV initStep
+    1    0.175     -0.2      885         0   0.0022    0.118     0.118  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 92,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 56,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     32.7      145 2.04e+03   0.00116        0        0         0     Tracker initStep
-    1     32.6      145 2.04e+03         0  0.00116   0.0705    0.0705     Tracker eIoni
+    0    0.171   -0.211      819   0.00183        0        0         0  Chamber_PV initStep
+    1    0.182   -0.209      819         0  0.00183   0.0922    0.0922  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 91,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 55,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     32.6      145 2.04e+03   0.00147        0        0         0     Tracker initStep
-    1     32.6      145 2.04e+03         0  0.00147      0.1       0.1     Tracker eIoni
+    0    0.169   -0.209      783   0.00365        0        0         0  Chamber_PV initStep
+    1    0.179   -0.237      783         0  0.00365    0.242     0.242  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 90,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 54,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     35.8      145 2.03e+03   0.00113        0        0         0     Tracker initStep
-    1     35.8      145 2.03e+03         0  0.00113   0.0678    0.0678     Tracker eIoni
+    0    0.168   -0.208      770   0.00156        0        0         0  Chamber_PV initStep
+    1    0.177   -0.204      770         0  0.00156   0.0742    0.0742  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 89,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 53,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     36.3      144 2.03e+03   0.00109        0        0         0     Tracker initStep
-    1     36.3      144 2.03e+03         0  0.00109   0.0647    0.0647     Tracker eIoni
+    0    0.167   -0.207      760   0.00477        0        0         0  Chamber_PV initStep
+    1    0.199   -0.177      760         0  0.00477    0.366     0.366  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 88,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 52,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     33.3      146 2.01e+03   0.00125        0        0         0     Tracker initStep
-    1     33.3      146 2.01e+03         0  0.00125   0.0792    0.0792     Tracker eIoni
+    0    0.167   -0.206      747   0.00161        0        0         0  Chamber_PV initStep
+    1    0.165   -0.217      747         0  0.00161   0.0773    0.0773  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 87,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 51,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     32.1      147 2.01e+03   0.00964        0        0         0     Tracker initStep
-    1     31.7      148 2.01e+03   0.00405   0.0056     1.78      1.78     Tracker eIoni
-    2     31.9      148 2.01e+03         0  0.00405    0.529      2.31     Tracker eIoni
+    0    0.164   -0.203      688    0.0118        0        0         0     Tracker initStep
+    1   0.0778    0.193      688   0.00967  0.00035    0.441     0.441     Tracker eIoni
+    2   -0.574    0.929      689   0.00588  0.00379     1.78      2.22     Tracker eIoni
+    3   -0.796      1.3      688         0  0.00588     1.02      3.25     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 86,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 88,   Parent ID = 51
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     45.1      138 1.99e+03   0.00229        0        0         0     Tracker initStep
-    1     45.1      138 1.99e+03         0  0.00229    0.202     0.202     Tracker eIoni
+    0   0.0778    0.193      688   0.00179        0        0         0     Tracker initStep
+    1    0.114    0.235      688         0  0.00179    0.135     0.135     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 85,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 50,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       57      123 1.99e+03   0.00209        0        0         0     Tracker initStep
-    1     57.1      123 1.99e+03         0  0.00209    0.173     0.173     Tracker eIoni
+    0    0.162     -0.2      650   0.00194        0        0         0     Tracker initStep
+    1    0.208   -0.152      650         0  0.00194    0.155     0.155     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 84,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 49,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     57.8      121 1.98e+03   0.00144        0        0         0     Tracker initStep
-    1     57.8      121 1.98e+03         0  0.00144   0.0974    0.0974     Tracker eIoni
+    0    0.153    -0.19      490   0.00156        0        0         0     Tracker initStep
+    1      0.2   -0.186      490         0  0.00156     0.11      0.11     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 83,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 48,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     58.1      121 1.98e+03   0.00113        0        0         0     Tracker initStep
-    1     58.1      121 1.98e+03         0  0.00113   0.0678    0.0678     Tracker eIoni
+    0    0.151   -0.187      449   0.00102        0        0         0     Tracker initStep
+    1    0.173   -0.194      449         0  0.00102   0.0584    0.0584     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 82,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 47,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       66     96.2 1.99e+03   0.00121        0        0         0     Tracker initStep
-    1       66     96.2 1.99e+03         0  0.00121   0.0748    0.0748     Tracker eIoni
+    0    0.144   -0.179      326   0.00126        0        0         0     Tracker initStep
+    1    0.125   -0.153      326         0  0.00126   0.0794    0.0794     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 81,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 46,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     71.9     76.8 2.01e+03   0.00129        0        0         0     Tracker initStep
-    1       72     76.8 2.01e+03         0  0.00129   0.0829    0.0829     Tracker eIoni
+    0    0.128    -0.16     26.5   0.00142        0        0         0  Chamber_PV initStep
+    1    0.127   -0.151     26.5         0  0.00142   0.0653    0.0653  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 80,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 45,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     71.1     71.2 2.02e+03   0.00167        0        0         0     Tracker initStep
-    1     71.1     71.2 2.02e+03         0  0.00167    0.122     0.122     Tracker eIoni
+    0    0.128   -0.159     10.8   0.00143        0        0         0  Chamber_PV initStep
+    1     0.12   -0.155     10.8         0  0.00143   0.0661    0.0661  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 79,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 44,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     70.8     69.1 2.02e+03   0.00177        0        0         0     Tracker initStep
-    1     70.9       69 2.02e+03         0  0.00177    0.134     0.134     Tracker eIoni
+    0    0.124   -0.155    -51.2   0.00578        0        0         0  Chamber_PV initStep
+    1    0.109   -0.211    -51.2         0  0.00578    0.495     0.495  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 78,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 43,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     49.4     31.5 2.05e+03   0.00147        0        0         0     Tracker initStep
-    1     49.4     31.5 2.05e+03         0  0.00147    0.101     0.101     Tracker eIoni
+    0    0.124   -0.155    -54.9   0.00556        0        0         0  Chamber_PV initStep
+    1    0.176   -0.173    -54.9         0  0.00556    0.466     0.466  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 77,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 42,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     20.8     10.2 2.08e+03   0.00132        0        0         0     Tracker initStep
-    1     20.8     10.2 2.08e+03         0  0.00132   0.0853    0.0853     Tracker eIoni
+    0    0.121   -0.151     -108   0.00145        0        0         0     Tracker initStep
+    1   0.0953   -0.118     -108         0  0.00145    0.099     0.099     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 76,   Parent ID = 70
+* G4Track Information:   Particle = e-,   Track ID = 41,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.56     3.78 2.08e+03   0.00214        0        0         0     Tracker initStep
-    1     4.54     3.79 2.08e+03         0  0.00214     0.18      0.18     Tracker eIoni
+    0    0.115   -0.144     -228   0.00171        0        0         0     Tracker initStep
+    1    0.112   -0.198     -228         0  0.00171    0.127     0.127     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 69,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 40,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.171    0.202 1.99e+03     0.016        0        0         0     Tracker initStep
-    1    -1.48     0.11 1.99e+03    0.0127  0.00222     1.57      1.57     Tracker eIoni
-    2    -1.64   -0.267 1.99e+03    0.0105 0.000698    0.449      2.02     Tracker eIoni
-    3    -2.26   -0.909 1.99e+03   0.00684  0.00369     1.91      3.93     Tracker eIoni
-    4    -2.55   -0.439 1.99e+03  0.000152  0.00669     1.27      5.21     Tracker eIoni
-    5    -2.55   -0.439 1.99e+03         0 0.000152  0.00751      5.21     Tracker eIoni
+    0    0.107   -0.134     -380   0.00369        0        0         0     Tracker initStep
+    1    0.261   -0.261     -380         0  0.00369     0.45      0.45     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 94,   Parent ID = 69
+* G4Track Information:   Particle = e-,   Track ID = 39,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.64   -0.267 1.99e+03   0.00148        0        0         0     Tracker initStep
-    1    -1.65   -0.294 1.99e+03         0  0.00148    0.102     0.102     Tracker eIoni
+    0    0.105   -0.131     -414     0.001        0        0         0     Tracker initStep
+    1   0.0848   -0.142     -414         0    0.001    0.057     0.057     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 93,   Parent ID = 69
+* G4Track Information:   Particle = e-,   Track ID = 38,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.48     0.11 1.99e+03   0.00105        0        0         0     Tracker initStep
-    1    -1.49    0.108 1.99e+03         0  0.00105   0.0616    0.0616     Tracker eIoni
+    0    0.102   -0.128     -473    0.0798        0        0         0     Tracker initStep
+    1    -20.3     3.37     -467    0.0706  0.00794       25        25     Tracker eIoni
+    2    -29.3     11.2     -474     0.063  0.00595     15.5      40.5     Tracker eIoni
+    3    -35.1       19     -473    0.0592  0.00383     10.7      51.2     Tracker eIoni
+    4    -39.1     29.9     -480    0.0518  0.00744     15.3      66.6     Tracker eIoni
+    5    -47.2     36.6     -479    0.0456   0.0062     12.4      78.9     Tracker eIoni
+    6    -50.3     40.8     -479      0.04   0.0043     5.75      84.7     Tracker eIoni
+    7    -56.7     43.7     -479    0.0344   0.0056     8.34        93     Tracker eIoni
+    8    -57.3     44.4     -479    0.0303 0.000304    0.932      93.9     Tracker eIoni
+    9    -58.1     48.3     -482    0.0255   0.0048     5.63      99.6     Tracker eIoni
+   10    -58.4     48.6     -482    0.0229 0.000706    0.472       100     Tracker eIoni
+   11    -60.5     50.4     -483    0.0184  0.00443     3.96       104     Tracker eIoni
+   12    -61.1     52.8     -483    0.0133  0.00516     3.14       107     Tracker eIoni
+   13    -60.1     53.8     -484    0.0101  0.00314     2.32       109     Tracker eIoni
+   14      -59     54.1     -484   0.00597  0.00418     1.86       111     Tracker eIoni
+   15    -58.8     54.2     -485   0.00167   0.0043     1.05       112     Tracker eIoni
+   16    -58.8     54.2     -485         0  0.00167    0.122       112     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 68,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 93,   Parent ID = 38
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -0.16     0.19 1.71e+03   0.00113        0        0         0     Tracker initStep
-    1   -0.145    0.167 1.71e+03         0  0.00113   0.0677    0.0677     Tracker eIoni
+    0    -58.4     48.6     -482    0.0019        0        0         0     Tracker initStep
+    1    -58.4     48.6     -482         0   0.0019    0.149     0.149     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 67,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 92,   Parent ID = 38
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.158    0.187 1.65e+03   0.00973        0        0         0  Chamber_PV initStep
-    1   -0.119   0.0686 1.65e+03         0  0.00973     1.15      1.15  Chamber_PV eIoni
+    0    -57.3     44.4     -479   0.00382        0        0         0     Tracker initStep
+    1    -57.5     44.3     -479         0  0.00382    0.477     0.477     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 66,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 91,   Parent ID = 38
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.155    0.185 1.59e+03   0.00303        0        0         0  Chamber_PV initStep
-    1    -0.15    0.208 1.59e+03         0  0.00303    0.185     0.185  Chamber_PV eIoni
+    0    -50.3     40.8     -479   0.00126        0        0         0     Tracker initStep
+    1    -50.3     40.8     -479         0  0.00126   0.0794    0.0794     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 65,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 90,   Parent ID = 38
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.154    0.183 1.56e+03   0.00192        0        0         0  Chamber_PV initStep
-    1   -0.141    0.183 1.56e+03         0  0.00192   0.0986    0.0986  Chamber_PV eIoni
+    0    -29.3     11.2     -474   0.00163        0        0         0     Tracker initStep
+    1    -29.3     11.2     -474         0  0.00163    0.117     0.117     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 64,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 89,   Parent ID = 38
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.149    0.177 1.42e+03   0.00592        0        0         0     Tracker initStep
-    1   -0.343    0.595 1.42e+03   0.00087  0.00505     1.04      1.04     Tracker eIoni
-    2   -0.354    0.607 1.42e+03         0  0.00087    0.047      1.08     Tracker eIoni
+    0    -20.3     3.37     -467   0.00125        0        0         0     Tracker initStep
+    1    -20.4     3.35     -467         0  0.00125    0.079     0.079     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 63,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 37,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.144    0.171 1.29e+03   0.00154        0        0         0     Tracker initStep
-    1   -0.111    0.204 1.29e+03         0  0.00154    0.108     0.108     Tracker eIoni
+    0   0.0929   -0.116     -645   0.00566        0        0         0     Tracker initStep
+    1    0.518   -0.121     -645         0  0.00566    0.956     0.956     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 62,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 36,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.142    0.169 1.24e+03   0.00582        0        0         0     Tracker initStep
-    1   -0.325    0.576 1.24e+03         0  0.00582        1         1     Tracker eIoni
+    0   0.0903   -0.113     -695    0.0015        0        0         0     Tracker initStep
+    1   0.0641   -0.148     -695         0   0.0015    0.104     0.104     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 61,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 35,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.137    0.163  1.1e+03   0.00323        0        0         0     Tracker initStep
-    1   -0.203   0.0185  1.1e+03         0  0.00323    0.358     0.358     Tracker eIoni
+    0   0.0895   -0.112     -710   0.00287        0        0         0  Chamber_PV initStep
+    1    0.101   -0.131     -710         0  0.00287    0.172     0.172  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 60,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 34,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.132    0.157      975   0.00588        0        0         0     Tracker initStep
-    1   -0.494   -0.119      975         0  0.00588     1.02      1.02     Tracker eIoni
+    0   0.0894   -0.112     -712   0.00237        0        0         0  Chamber_PV initStep
+    1   0.0954  -0.0962     -712         0  0.00237    0.131     0.131  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 59,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 33,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.128    0.153      880   0.00888        0        0         0  Chamber_PV initStep
-    1   -0.185    0.246      880         0  0.00888        1         1  Chamber_PV eIoni
+    0   0.0884   -0.111     -731   0.00152        0        0         0  Chamber_PV initStep
+    1   0.0967   -0.106     -731         0  0.00152   0.0715    0.0715  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 58,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 32,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.128    0.152      859    0.0122        0        0         0  Chamber_PV initStep
-    1   -0.106   -0.025      859   0.00597  0.00481    0.744     0.744  Chamber_PV eIoni
-    2   -0.108  0.00154      859   0.00361 0.000454   0.0517     0.796  Chamber_PV eIoni
-    3   -0.117   0.0117      859         0  0.00361    0.239      1.03  Chamber_PV eIoni
+    0   0.0866   -0.108     -765   0.00487        0        0         0  Chamber_PV initStep
+    1   0.0673  -0.0673     -765         0  0.00487    0.378     0.378  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 96,   Parent ID = 58
+* G4Track Information:   Particle = e-,   Track ID = 31,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.108  0.00154      859    0.0019        0        0         0  Chamber_PV initStep
-    1   -0.119  0.00509      859         0   0.0019    0.097     0.097  Chamber_PV eIoni
+    0   0.0854   -0.107     -787   0.00708        0        0         0  Chamber_PV initStep
+    1    0.159   -0.133     -787         0  0.00708    0.688     0.688  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 95,   Parent ID = 58
+* G4Track Information:   Particle = e-,   Track ID = 30,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.106   -0.025      859   0.00143        0        0         0  Chamber_PV initStep
-    1   -0.115  -0.0254      859         0  0.00143   0.0661    0.0661  Chamber_PV eIoni
+    0   0.0852   -0.107     -792    0.0055        0        0         0  Chamber_PV initStep
+    1    0.129   -0.139     -792         0   0.0055    0.458     0.458  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 57,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 29,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.127    0.152      847   0.00291        0        0         0  Chamber_PV initStep
-    1   -0.149    0.158      847         0  0.00291    0.175     0.175  Chamber_PV eIoni
+    0    0.085   -0.106     -796   0.00297        0        0         0  Chamber_PV initStep
+    1   0.0782   -0.128     -796         0  0.00297     0.18      0.18  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 56,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 28,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.124    0.148      762   0.00169        0        0         0  Chamber_PV initStep
-    1   -0.128    0.158      762         0  0.00169   0.0825    0.0825  Chamber_PV eIoni
+    0   0.0829   -0.104     -836    0.0019        0        0         0  Chamber_PV initStep
+    1   0.0937  -0.0975     -836         0   0.0019   0.0965    0.0965  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 55,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 27,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.123    0.146      733   0.00147        0        0         0  Chamber_PV initStep
-    1   -0.114    0.143      733         0  0.00147   0.0684    0.0684  Chamber_PV eIoni
+    0   0.0805   -0.101     -884   0.00697        0        0         0  Chamber_PV initStep
+    1    0.156   -0.109     -884         0  0.00697     0.67      0.67  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 54,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 26,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.123    0.146      727   0.00262        0        0         0  Chamber_PV initStep
-    1   -0.108    0.158      727         0  0.00262    0.151     0.151  Chamber_PV eIoni
+    0   0.0642  -0.0797 -1.2e+03   0.00203        0        0         0     Tracker initStep
+    1   0.0194   -0.136 -1.2e+03         0  0.00203    0.166     0.166     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 53,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 25,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.118    0.139      585   0.00108        0        0         0     Tracker initStep
-    1  -0.0938    0.129      585         0  0.00108   0.0636    0.0636     Tracker eIoni
+    0   0.0608  -0.0754 -1.27e+03   0.00925        0        0         0     Tracker initStep
+    1    0.885   -0.597 -1.27e+03   0.00605   0.0032     1.72      1.72     Tracker eIoni
+    2    0.939    -1.01 -1.27e+03   0.00191  0.00293    0.726      2.44     Tracker eIoni
+    3     0.97    -1.01 -1.27e+03         0  0.00191     0.15      2.59     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 52,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 94,   Parent ID = 25
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.116    0.138      545   0.00217        0        0         0     Tracker initStep
-    1  -0.0389    0.159      545         0  0.00217    0.184     0.184     Tracker eIoni
+    0    0.939    -1.01 -1.27e+03   0.00122        0        0         0     Tracker initStep
+    1    0.955   -0.989 -1.27e+03         0  0.00122   0.0759    0.0759     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 51,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 24,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.114    0.135      489   0.00153        0        0         0     Tracker initStep
-    1   -0.149    0.165      489         0  0.00153    0.107     0.107     Tracker eIoni
+    0   0.0529  -0.0653 -1.42e+03    0.0085        0        0         0     Tracker initStep
+    1    0.858    0.224 -1.42e+03   0.00396  0.00454     1.59      1.59     Tracker eIoni
+    2    0.906     0.25 -1.42e+03   0.00318 0.000774    0.313      1.91     Tracker eIoni
+    3     1.06    0.232 -1.42e+03         0  0.00318    0.349      2.26     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 50,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 23,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.114    0.135      479   0.00111        0        0         0     Tracker initStep
-    1   -0.115    0.162      479         0  0.00111   0.0666    0.0666     Tracker eIoni
+    0   0.0489  -0.0603 -1.5e+03   0.00203        0        0         0  Chamber_PV initStep
+    1    0.059  -0.0511 -1.5e+03         0  0.00203    0.106     0.106  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 49,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 22,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.113    0.133      452    0.0568        0        0         0     Tracker initStep
-    1     11.6    -2.29      455    0.0507  0.00613     14.4      14.4     Tracker eIoni
-    2     11.8    -2.75      456    0.0487 0.000937     1.21      15.6     Tracker eIoni
-    3     10.7    -4.83      465    0.0442  0.00446     11.2      26.8     Tracker eIoni
-    4     16.8    -3.73      471    0.0372  0.00701      9.7      36.5     Tracker eIoni
-    5     22.8    -3.16      472    0.0323  0.00493     7.51        44     Tracker eIoni
-    6     25.5     1.02      473    0.0259  0.00642     6.14      50.2     Tracker eIoni
-    7     28.6   -0.801      472    0.0209  0.00497      4.6      54.8     Tracker eIoni
-    8     29.6    -0.13      472    0.0182  0.00163      1.6      56.4     Tracker eIoni
-    9     31.2     1.49      471    0.0133  0.00492      3.1      59.5     Tracker eIoni
-   10       32     2.85      471   0.00862   0.0047     2.32      61.8     Tracker eIoni
-   11     32.3     3.41      471   0.00388  0.00474     1.61      63.4     Tracker eIoni
-   12     32.1     3.29      471         0  0.00388     0.49      63.9     Tracker eIoni
+    0    0.045  -0.0553 -1.58e+03    0.0042        0        0         0  Chamber_PV initStep
+    1   0.0815   -0.053 -1.58e+03         0   0.0042      0.3       0.3  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 98,   Parent ID = 49
+* G4Track Information:   Particle = e-,   Track ID = 21,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     29.6    -0.13      472   0.00105        0        0         0     Tracker initStep
-    1     29.7   -0.148      472         0  0.00105   0.0612    0.0612     Tracker eIoni
+    0   0.0448  -0.0551 -1.58e+03   0.00164        0        0         0  Chamber_PV initStep
+    1   0.0553  -0.0539 -1.58e+03         0  0.00164   0.0792    0.0792  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 97,   Parent ID = 49
+* G4Track Information:   Particle = e-,   Track ID = 20,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     11.8    -2.75      456   0.00108        0        0         0     Tracker initStep
-    1     11.8    -2.74      456         0  0.00108   0.0637    0.0637     Tracker eIoni
+    0   0.0446  -0.0549 -1.58e+03   0.00214        0        0         0  Chamber_PV initStep
+    1   0.0396  -0.0412 -1.58e+03         0  0.00214    0.114     0.114  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 48,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 19,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -0.11    0.129      368   0.00349        0        0         0     Tracker initStep
-    1   -0.158    0.304      368         0  0.00349    0.409     0.409     Tracker eIoni
+    0   0.0442  -0.0544 -1.59e+03   0.00182        0        0         0  Chamber_PV initStep
+    1   0.0345  -0.0473 -1.59e+03         0  0.00182   0.0915    0.0915  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 47,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 18,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.109    0.129      350    0.0039        0        0         0     Tracker initStep
-    1   0.0805    0.241      350         0   0.0039    0.495     0.495     Tracker eIoni
+    0   0.0439   -0.054 -1.6e+03    0.0019        0        0         0  Chamber_PV initStep
+    1    0.052  -0.0635 -1.6e+03         0   0.0019   0.0967    0.0967  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 46,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 17,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.102    0.119      153   0.00123        0        0         0     Tracker initStep
-    1   -0.126   0.0979      153         0  0.00123   0.0771    0.0771     Tracker eIoni
+    0   0.0434  -0.0534 -1.61e+03   0.00273        0        0         0  Chamber_PV initStep
+    1   0.0321  -0.0705 -1.61e+03         0  0.00273    0.159     0.159  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 45,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 16,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.102    0.119      148   0.00206        0        0         0     Tracker initStep
-    1   -0.164    0.158      148         0  0.00206    0.169     0.169     Tracker eIoni
+    0   0.0418  -0.0514 -1.64e+03   0.00622        0        0         0  Chamber_PV initStep
+    1   0.0864 -0.00456 -1.64e+03         0  0.00622    0.558     0.558  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 44,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 15,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0997    0.116     86.9   0.00662        0        0         0  Chamber_PV initStep
-    1  -0.0291    0.112     86.9         0  0.00662    0.617     0.617  Chamber_PV eIoni
+    0   0.0411  -0.0505 -1.65e+03    0.0475        0        0         0  Chamber_PV initStep
+    1   -0.276    0.164 -1.65e+03     0.041 0.000602    0.445     0.445  Chamber_PV eIoni
+    2     -1.1     0.93 -1.65e+03    0.0348  0.00626      4.4      4.85  Chamber_PV eIoni
+    3    -1.57    0.138 -1.65e+03    0.0257  0.00906     3.66      8.51  Chamber_PV eIoni
+    4     -1.2   0.0404 -1.65e+03    0.0188  0.00692     2.73      11.2  Chamber_PV eIoni
+    5   -0.946   -0.161 -1.65e+03    0.0128  0.00598     2.11      13.3  Chamber_PV eIoni
+    6   -0.881  0.00977 -1.65e+03    0.0067  0.00466    0.953      14.3  Chamber_PV eIoni
+    7   -0.882   0.0508 -1.65e+03         0   0.0067    0.629      14.9  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 43,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 96,   Parent ID = 15
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0991    0.116     70.3    0.0015        0        0         0  Chamber_PV initStep
-    1  -0.0894    0.115     70.3         0   0.0015   0.0705    0.0705  Chamber_PV eIoni
+    0   -0.881  0.00977 -1.65e+03   0.00146        0        0         0  Chamber_PV initStep
+    1   -0.884  0.00269 -1.65e+03         0  0.00146   0.0677    0.0677  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 42,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 95,   Parent ID = 15
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0987    0.115     61.5   0.00398        0        0         0  Chamber_PV initStep
-    1   -0.129      0.1     61.5         0  0.00398    0.276     0.276  Chamber_PV eIoni
+    0   -0.276    0.164 -1.65e+03    0.0059        0        0         0  Chamber_PV initStep
+    1   -0.286    0.185 -1.65e+03         0   0.0059    0.513     0.513  Chamber_PV eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 41,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 14,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0974    0.114     24.2   0.00665        0        0         0  Chamber_PV initStep
-    1   -0.143    0.059     24.2  0.000791  0.00586    0.553     0.553  Chamber_PV eIoni
-    2   -0.146   0.0602     24.2         0 0.000791   0.0316     0.585  Chamber_PV eIoni
+    0   0.0187  -0.0229 -2.08e+03   0.00104        0        0         0     Tracker initStep
+    1   0.0218  -0.0471 -2.08e+03         0  0.00104   0.0601    0.0601     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 40,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 13,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0937    0.109    -70.6   0.00222        0        0         0  Chamber_PV initStep
-    1   -0.107    0.102    -70.6         0  0.00222     0.12      0.12  Chamber_PV eIoni
+    0   0.0169  -0.0206 -2.12e+03   0.00164        0        0         0     Tracker initStep
+    1   0.0262   0.0294 -2.12e+03         0  0.00164    0.119     0.119     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 39,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 12,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0856   0.0997     -280   0.00135        0        0         0     Tracker initStep
-    1  -0.0568    0.123     -280         0  0.00135   0.0887    0.0887     Tracker eIoni
+    0  0.00776 -0.00943 -2.29e+03   0.00191        0        0         0     Tracker initStep
+    1   0.0253   0.0535 -2.29e+03         0  0.00191    0.151     0.151     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 38,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 11,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0855   0.0996     -282   0.00107        0        0         0     Tracker initStep
-    1  -0.0609   0.0926     -282         0  0.00107   0.0627    0.0627     Tracker eIoni
+    0  0.00112 -0.00104 -2.42e+03      2.18        0        0         0      Target initStep
+    1   0.0616  -0.0551 -2.42e+03      1.83    0.355    0.265     0.265      Target eIoni
+    2   0.0907  -0.0383 -2.42e+03     0.546     1.28     1.33       1.6      Target eIoni
+    3   0.0805  -0.0596 -2.42e+03         0    0.546    0.342      1.94      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 37,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 10,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0839   0.0977     -323   0.00272        0        0         0     Tracker initStep
-    1  -0.0981    0.215     -323         0  0.00272    0.267     0.267     Tracker eIoni
+    0  0.00104 -0.000881 -2.42e+03      5.25        0        0         0      Target initStep
+    1   -0.187    0.202 -2.42e+03      1.93     3.32     2.27      2.27      Target eIoni
+    2   -0.157    0.331 -2.42e+03     0.302     1.63     1.38      3.66      Target eIoni
+    3   -0.164    0.338 -2.42e+03         0    0.302     0.15      3.81      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 36,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 9,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0808    0.094     -404   0.00205        0        0         0     Tracker initStep
-    1  -0.0426    0.156     -404         0  0.00205    0.168     0.168     Tracker eIoni
+    0  0.00104 -0.000872 -2.42e+03      1.07        0        0         0      Target initStep
+    1 -0.00139  -0.0448 -2.42e+03         0     1.07    0.789     0.789      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 35,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 7,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0799   0.0929     -427   0.00275        0        0         0     Tracker initStep
-    1   -0.197    0.065     -427         0  0.00275    0.272     0.272     Tracker eIoni
+    0  0.00103 -0.000856 -2.42e+03      9.68        0        0         0      Target initStep
+    1  0.00104 -0.000821 -2.42e+03      1.99     1.55     1.36      1.36      Target eBrem
+    2   0.0817   -0.137 -2.42e+03     0.393      1.6     1.41      2.77      Target eIoni
+    3   0.0834   -0.123 -2.42e+03         0    0.393    0.219      2.99      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 34,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 6,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.078   0.0907     -475   0.00136        0        0         0     Tracker initStep
-    1  -0.0919    0.126     -475         0  0.00136   0.0898    0.0898     Tracker eIoni
+    0 0.000557 2.43e-05 -2.45e+03      2.13        0        0         0      Target initStep
+    1  -0.0993 -0.000809 -2.45e+03       1.8    0.323    0.281     0.281      Target msc
+    2   -0.119   -0.114 -2.45e+03      1.41    0.391    0.379      0.66      Target msc
+    3  -0.0342   -0.148 -2.45e+03     0.693    0.263    0.305     0.965      Target eBrem
+    4  -0.0345   -0.179 -2.45e+03         0    0.693    0.466      1.43      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 33,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 5,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0711   0.0826     -653    0.0018        0        0         0     Tracker initStep
-    1   -0.111    0.126     -653         0   0.0018    0.137     0.137     Tracker eIoni
+    0 0.000384 3.29e-05 -2.54e+03   0.00548        0        0         0       World initStep
+    1   -0.244    0.103 -2.54e+03   0.00355  0.00092    0.345     0.345       World eIoni
+    2   -0.263   0.0141 -2.54e+03   0.00119  0.00236    0.373     0.718       World eIoni
+    3   -0.269   0.0403 -2.54e+03         0  0.00119   0.0733     0.791       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 32,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 99,   Parent ID = 5
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0699   0.0812     -683  0.000991        0        0         0     Tracker initStep
-    1  -0.0833   0.0628     -683         0 0.000991   0.0563    0.0563     Tracker eIoni
+    0   -0.244    0.103 -2.54e+03   0.00101        0        0         0       World initStep
+    1   -0.252    0.122 -2.54e+03         0  0.00101   0.0582    0.0582       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 31,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 4,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0674   0.0781     -749    0.0014        0        0         0  Chamber_PV initStep
-    1  -0.0754   0.0819     -749         0   0.0014    0.064     0.064  Chamber_PV eIoni
+    0 0.000155 4.22e-05 -2.66e+03   0.00214        0        0         0       World initStep
+    1  -0.0753   0.0223 -2.66e+03         0  0.00214     0.18      0.18       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 30,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 3,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0669   0.0775     -763   0.00451        0        0         0  Chamber_PV initStep
-    1  -0.0909     0.11     -763         0  0.00451    0.335     0.335  Chamber_PV eIoni
+    0 -9.64e-06 4.26e-05 -2.75e+03      3.13        0        0         0       World initStep
+    1      -66     4.25 -2.63e+03      3.11   0.0177      140       140       World eIoni
+    2     -187    -2.36 -2.48e+03      3.09   0.0228      190       330       World eIoni
+    3     -215    -6.95 -2.45e+03      3.07  0.00985     45.9       376       World eIoni
+    4     -255    -11.3 -2.4e+03      3.07  0.00683       63       439     Tracker Transportation
+    5     -263    -12.3 -2.39e+03      3.06  0.00188     12.2       451     Tracker eIoni
+    6     -298    -17.7 -2.34e+03      3.04  0.00518     58.4       509     Tracker eIoni
+    7     -318    -20.5 -2.32e+03      3.03  0.00548     33.2       542     Tracker eIoni
+    8     -329    -21.4 -2.3e+03      3.02  0.00314     17.9       560     Tracker eIoni
+    9     -366    -21.4 -2.25e+03      3.01  0.00822     61.6       622     Tracker eIoni
+   10     -402    -22.1 -2.21e+03         3  0.00723     57.3       679     Tracker eIoni
+   11     -437    -25.7 -2.17e+03      2.99  0.00727       56       735     Tracker eIoni
+   12     -449    -25.7 -2.15e+03      2.99  0.00185     17.9       753     Tracker eIoni
+   13     -491    -25.7 -2.1e+03      2.98  0.00865     64.9       818     Tracker eIoni
+   14     -552    -28.4 -2.02e+03      2.96   0.0128      100       918     Tracker StepLimiter
+   15     -557    -28.4 -2.02e+03      2.96  0.00139     7.62       926     Tracker eIoni
+   16     -623    -33.8 -1.94e+03      2.94   0.0162      100  1.03e+03     Tracker StepLimiter
+   17     -683    -33.7 -1.86e+03      2.93   0.0144      100  1.13e+03     Tracker StepLimiter
+   18     -684    -33.6 -1.86e+03      2.93 0.000269     1.64  1.13e+03     Tracker eIoni
+   19     -743    -26.2 -1.78e+03      2.92   0.0116      100  1.23e+03     Tracker StepLimiter
+   20     -803    -21.9 -1.7e+03       2.9   0.0147      100  1.33e+03     Tracker StepLimiter
+   21     -863    -3.81 -1.63e+03      2.89  0.00984      100  1.43e+03     Tracker StepLimiter
+   22     -870    -2.11 -1.62e+03      2.89  0.00104     11.1  1.44e+03     Tracker eIoni
+   23     -890     6.11 -1.59e+03      2.88  0.00309     35.2  1.47e+03     Tracker eIoni
+   24     -911     15.1 -1.56e+03      2.88  0.00401     40.5  1.51e+03     Tracker eIoni
+   25     -921       18 -1.54e+03      2.87  0.00395     19.3  1.53e+03     Tracker eIoni
+   26     -931     20.5 -1.53e+03      2.87  0.00199     17.3  1.55e+03     Tracker eIoni
+   27     -984     31.1 -1.44e+03      2.85   0.0126      100  1.65e+03     Tracker StepLimiter
+   28 -1.03e+03     41.8 -1.37e+03      2.79   0.0116     85.2  1.74e+03     Tracker eIoni
+   29 -1.09e+03     48.1 -1.29e+03      2.78   0.0159      100  1.84e+03     Tracker StepLimiter
+   30 -1.12e+03     51.2 -1.26e+03      2.77  0.00512     36.2  1.87e+03     Tracker eIoni
+   31 -1.15e+03     57.5 -1.22e+03      2.76  0.00744     60.5  1.93e+03     Tracker eIoni
+   32 -1.17e+03     59.6 -1.2e+03      2.76  0.00274     23.6  1.96e+03     Tracker eIoni
+   33 -1.17e+03     59.8 -1.2e+03      2.75 0.000405     3.19  1.96e+03     Tracker eIoni
+   34 -1.17e+03       60 -1.2e+03      2.72  0.00026     2.45  1.96e+03     Tracker eIoni
+   35 -1.23e+03     61.3 -1.11e+03      2.71   0.0125      100  2.06e+03     Tracker StepLimiter
+   36 -1.28e+03     56.1 -1.04e+03       2.7    0.013     87.5  2.15e+03     Tracker eIoni
+   37 -1.33e+03     61.7     -955      2.68   0.0131      100  2.25e+03     Tracker StepLimiter
+   38 -1.37e+03     69.2     -881      2.67  0.00893     85.8  2.34e+03     Tracker eIoni
+   39 -1.43e+03     72.5     -797      2.66   0.0148      100  2.44e+03     Tracker StepLimiter
+   40 -1.47e+03     72.7     -710      2.64   0.0145      100  2.54e+03     Tracker StepLimiter
+   41 -1.5e+03     73.5     -670      2.64  0.00558     45.8  2.58e+03     Tracker eIoni
+   42 -1.53e+03       75     -620      2.63  0.00971     57.9  2.64e+03     Tracker eIoni
+   43 -1.53e+03     74.8     -605      2.62  0.00176     17.6  2.66e+03     Tracker eIoni
+   44 -1.55e+03     74.4     -587      2.61  0.00189     21.5  2.68e+03     Tracker eIoni
+   45 -1.58e+03     72.9     -537      2.57  0.00539     59.4  2.74e+03     Tracker eIoni
+   46 -1.63e+03       73     -453      2.55   0.0129      100  2.84e+03     Tracker StepLimiter
+   47 -1.68e+03     69.8     -365      2.54   0.0139      100  2.94e+03     Tracker StepLimiter
+   48 -1.7e+03     65.3     -329      2.53  0.00618     41.5  2.98e+03     Tracker eIoni
+   49 -1.73e+03     54.6     -267      2.33   0.0116     70.1  3.05e+03     Tracker eIoni
+   50 -1.75e+03     47.3     -231      2.32  0.00487     39.3  3.09e+03     Tracker eIoni
+   51 -1.75e+03     44.2     -216      2.32  0.00218     16.5  3.11e+03     Tracker eIoni
+   52 -1.77e+03     25.5     -149      2.31   0.0109     73.3  3.18e+03     Tracker eIoni
+   53 -1.81e+03     5.02    -57.4       2.3    0.011      100  3.28e+03     Tracker StepLimiter
+   54 -1.83e+03      -20     6.08      2.29  0.00823       72  3.35e+03     Tracker eIoni
+   55 -1.86e+03    -54.5     95.2      2.27   0.0128      100  3.45e+03     Tracker StepLimiter
+   56 -1.89e+03    -84.4      184      2.26   0.0118      100  3.55e+03     Tracker StepLimiter
+   57 -1.91e+03    -98.3      235      2.25  0.00572     56.9  3.61e+03     Tracker eIoni
+   58 -1.92e+03     -106      258      2.15  0.00349     26.7  3.63e+03     Tracker eIoni
+   59 -1.95e+03     -136      329      2.14  0.00829     81.3  3.72e+03     Tracker eIoni
+   60 -1.97e+03     -163      389      2.13  0.00802     68.6  3.78e+03     Tracker eIoni
+   61 -1.97e+03     -195      483      2.12   0.0172      100  3.88e+03     Tracker StepLimiter
+   62 -1.98e+03     -240      573       2.1   0.0127      100  3.98e+03     Tracker StepLimiter
+   63 -1.98e+03     -242      577       2.1 0.000786     4.54  3.99e+03     Tracker eIoni
+   64 -1.98e+03     -255      607       2.1  0.00398     32.8  4.02e+03     Tracker eIoni
+   65 -1.97e+03     -274      662      2.08   0.0085     58.9  4.08e+03     Tracker eIoni
+   66 -1.96e+03     -297      720      2.07  0.00855       62  4.14e+03     Tracker eIoni
+   67 -1.96e+03     -341      809      2.06   0.0136      100  4.24e+03     Tracker StepLimiter
+   68 -1.96e+03     -350      825      2.06  0.00166     18.4  4.26e+03     Tracker eIoni
+   69 -1.96e+03     -404      909      2.05  0.00913      100  4.36e+03     Tracker StepLimiter
+   70 -1.95e+03     -460      992      2.04   0.0118      100  4.46e+03     Tracker StepLimiter
+   71 -1.95e+03     -507 1.08e+03      2.02   0.0147      100  4.56e+03     Tracker StepLimiter
+   72 -1.95e+03     -555 1.17e+03      2.01   0.0121      100  4.66e+03     Tracker StepLimiter
+   73 -1.95e+03     -560 1.18e+03      2.01  0.00208     12.4  4.67e+03     Tracker eIoni
+   74 -1.95e+03     -576 1.21e+03         2  0.00574     31.9   4.7e+03     Tracker eIoni
+   75 -1.95e+03     -593 1.24e+03      1.99  0.00458       41  4.75e+03     Tracker eIoni
+   76 -1.95e+03     -598 1.25e+03      1.98 0.000951     10.6  4.76e+03     Tracker eIoni
+   77 -1.95e+03     -622  1.3e+03      1.97  0.00791     52.8  4.81e+03     Tracker eIoni
+   78 -1.96e+03     -646 1.36e+03      1.97  0.00679     68.5  4.88e+03     Tracker eIoni
+   79 -1.96e+03     -690 1.45e+03      1.95   0.0137      100  4.98e+03     Tracker StepLimiter
+   80 -1.97e+03     -704  1.5e+03      1.95  0.00561       49  5.03e+03  Chamber_PV Transportation
+   81 -1.97e+03     -710 1.53e+03      1.93   0.0136     28.5  5.05e+03  Chamber_PV eIoni
+   82 -2.03e+03     -708 1.66e+03      1.87   0.0542      149   5.2e+03  Chamber_PV eIoni
+   83 -2.03e+03     -708 1.66e+03      1.87 4.41e-05      1.1  5.21e+03  Chamber_PV eIoni
+   84 -2.03e+03     -712 1.67e+03      1.86  0.00384     12.4  5.22e+03  Chamber_PV eIoni
+   85 -2.03e+03     -720 1.69e+03      1.84  0.00953     20.4  5.24e+03  Chamber_PV eIoni
+   86 -2.03e+03     -727  1.7e+03      1.83  0.00577     15.1  5.25e+03     Tracker Transportation
+   87 -2.03e+03     -764 1.78e+03      1.82    0.013     92.5  5.35e+03     Tracker eIoni
+   88 -2.03e+03     -791 1.83e+03      1.81  0.00754     56.3   5.4e+03     Tracker eIoni
+   89 -2.04e+03     -811 1.87e+03       1.8  0.00525     43.3  5.45e+03     Tracker eIoni
+   90 -2.04e+03     -819 1.89e+03       1.8  0.00195     19.1  5.46e+03     Tracker eIoni
+   91 -2.04e+03     -824  1.9e+03      1.79  0.00232       11  5.48e+03     Tracker eIoni
+   92 -2.07e+03     -871 1.98e+03      1.77   0.0174      100  5.58e+03     Tracker StepLimiter
+   93 -2.08e+03     -907 2.04e+03      1.44  0.00895     72.9  5.65e+03     Tracker eIoni
+   94 -2.07e+03     -942 2.09e+03      1.43   0.0067     61.9  5.71e+03     Tracker eIoni
+   95 -2.06e+03     -993 2.18e+03      1.42   0.0158      100  5.81e+03     Tracker StepLimiter
+   96 -2.05e+03 -1.01e+03  2.2e+03      1.41  0.00342     27.2  5.84e+03     Tracker eIoni
+   97 -2.05e+03 -1.02e+03 2.22e+03      1.41  0.00443     27.5  5.86e+03     Tracker eIoni
+   98 -2.05e+03 -1.03e+03 2.23e+03       1.4  0.00119     11.7  5.88e+03     Tracker eIoni
+   99 -2.03e+03 -1.07e+03 2.27e+03       1.4  0.00817     57.5  5.93e+03     Tracker eIoni
+  100 -2.02e+03 -1.09e+03  2.3e+03      1.39  0.00445     35.3  5.97e+03     Tracker eIoni
+  101 -1.99e+03 -1.13e+03 2.37e+03      1.38   0.0135     86.3  6.06e+03     Tracker eIoni
+  102 -1.97e+03 -1.16e+03  2.4e+03      1.37  0.00891     47.8   6.1e+03       World Transportation
+  103 -1.93e+03 -1.23e+03 2.51e+03      1.35   0.0167      139  6.24e+03       World eIoni
+  104 -1.92e+03 -1.27e+03 2.56e+03      1.34   0.0114     62.1   6.3e+03       World eIoni
+  105 -1.84e+03 -1.35e+03 2.72e+03      1.31   0.0286      199   6.5e+03       World eIoni
+  106 -1.83e+03 -1.4e+03 2.85e+03      1.28   0.0217      137  6.64e+03       World eIoni
+  107 -1.82e+03 -1.41e+03  2.9e+03      1.27  0.00783     51.7  6.69e+03       World eIoni
+  108 -1.82e+03 -1.41e+03  2.9e+03      1.27        0    0.194  6.69e+03       World eIoni
+  109 -1.82e+03 -1.42e+03 2.92e+03      1.27  0.00513     25.2  6.72e+03       World eIoni
+  110 -1.82e+03 -1.43e+03 2.94e+03      1.26  0.00242     17.2  6.73e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 29,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 173,   Parent ID = 3
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0665   0.0771     -772   0.00201        0        0         0  Chamber_PV initStep
-    1  -0.0604   0.0891     -772         0  0.00201    0.105     0.105  Chamber_PV eIoni
+    0 -1.82e+03 -1.41e+03  2.9e+03   0.00115        0        0         0       World initStep
+    1 -1.82e+03 -1.41e+03  2.9e+03         0  0.00115   0.0694    0.0694       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 28,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 172,   Parent ID = 3
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0633   0.0731     -857    0.0183        0        0         0  Chamber_PV initStep
-    1   -0.157   -0.247     -857    0.0121   0.0062     2.06      2.06  Chamber_PV eIoni
-    2   -0.304   -0.322     -857   0.00891   0.0014    0.419      2.48  Chamber_PV eIoni
-    3    -0.35   -0.406     -857         0  0.00891     1.01      3.49  Chamber_PV eIoni
+    0 -1.82e+03 -1.41e+03  2.9e+03   0.00236        0        0         0       World initStep
+    1 -1.82e+03 -1.41e+03  2.9e+03         0  0.00236    0.211     0.211       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 99,   Parent ID = 28
+* G4Track Information:   Particle = e-,   Track ID = 171,   Parent ID = 3
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.304   -0.322     -857   0.00177        0        0         0  Chamber_PV initStep
-    1   -0.314   -0.321     -857         0  0.00177   0.0881    0.0881  Chamber_PV eIoni
+    0 -1.83e+03 -1.4e+03 2.85e+03    0.0012        0        0         0       World initStep
+    1 -1.83e+03 -1.4e+03 2.85e+03         0   0.0012   0.0747    0.0747       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 27,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 170,   Parent ID = 3
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0624   0.0721     -880    0.0035        0        0         0  Chamber_PV initStep
-    1  -0.0468   0.0959     -880         0   0.0035    0.227     0.227  Chamber_PV eIoni
+    0 -1.84e+03 -1.35e+03 2.72e+03   0.00248        0        0         0       World initStep
+    1 -1.84e+03 -1.35e+03 2.72e+03         0  0.00248    0.228     0.228       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 26,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 169,   Parent ID = 3
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0577   0.0666     -999   0.00244        0        0         0     Tracker initStep
-    1  -0.0392    0.163     -999         0  0.00244    0.223     0.223     Tracker eIoni
+    0 -1.92e+03 -1.27e+03 2.56e+03   0.00172        0        0         0       World initStep
+    1 -1.92e+03 -1.27e+03 2.56e+03         0  0.00172    0.127     0.127       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 25,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 168,   Parent ID = 3
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0544   0.0628 -1.08e+03    0.0127        0        0         0     Tracker initStep
-    1     1.24    0.826 -1.08e+03   0.00877  0.00396     2.24      2.24     Tracker eIoni
-    2     1.86     1.24 -1.08e+03   0.00368  0.00508     1.64      3.88     Tracker eIoni
-    3     1.98      1.2 -1.08e+03         0  0.00368    0.448      4.32     Tracker eIoni
+    0 -1.93e+03 -1.23e+03 2.51e+03  0.000992        0        0         0       World initStep
+    1 -1.93e+03 -1.23e+03 2.51e+03         0 0.000992   0.0564    0.0564       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 24,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 167,   Parent ID = 3
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0482   0.0554 -1.24e+03   0.00769        0        0         0     Tracker initStep
-    1    0.179   -0.635 -1.24e+03   0.00204  0.00457     1.44      1.44     Tracker eIoni
-    2    0.179   -0.576 -1.24e+03         0  0.00204    0.167      1.61     Tracker eIoni
+    0 -2.02e+03 -1.09e+03  2.3e+03   0.00132        0        0         0     Tracker initStep
+    1 -2.02e+03 -1.09e+03  2.3e+03         0  0.00132   0.0855    0.0855     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 100,   Parent ID = 24
+* G4Track Information:   Particle = e-,   Track ID = 166,   Parent ID = 3
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.179   -0.635 -1.24e+03   0.00108        0        0         0     Tracker initStep
-    1    0.154   -0.629 -1.24e+03         0  0.00108   0.0641    0.0641     Tracker eIoni
+    0 -2.03e+03 -1.07e+03 2.27e+03   0.00106        0        0         0     Tracker initStep
+    1 -2.03e+03 -1.07e+03 2.27e+03         0  0.00106   0.0622    0.0622     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 23,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 165,   Parent ID = 3
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0477   0.0548 -1.25e+03    0.0014        0        0         0     Tracker initStep
-    1  -0.0868   0.0585 -1.25e+03         0   0.0014   0.0932    0.0932     Tracker eIoni
+    0 -2.05e+03 -1.03e+03 2.23e+03   0.00138        0        0         0     Tracker initStep
+    1 -2.05e+03 -1.03e+03 2.23e+03         0  0.00138   0.0912    0.0912     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 22,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 164,   Parent ID = 3
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0371   0.0425 -1.52e+03   0.00599        0        0         0  Chamber_PV initStep
-    1  -0.0381  -0.0188 -1.52e+03         0  0.00599    0.525     0.525  Chamber_PV eIoni
+    0 -2.05e+03 -1.01e+03  2.2e+03   0.00267        0        0         0     Tracker initStep
+    1 -2.05e+03 -1.01e+03  2.2e+03         0  0.00267    0.258     0.258     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 21,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 163,   Parent ID = 3
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0364   0.0417 -1.54e+03   0.00779        0        0         0  Chamber_PV initStep
-    1   -0.109   0.0934 -1.54e+03         0  0.00779    0.806     0.806  Chamber_PV eIoni
+    0 -2.07e+03     -942 2.09e+03   0.00344        0        0         0     Tracker initStep
+    1 -2.07e+03     -942 2.09e+03         0  0.00344    0.398     0.398     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 20,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 162,   Parent ID = 3
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0351   0.0402 -1.57e+03   0.00225        0        0         0  Chamber_PV initStep
-    1  -0.0468   0.0505 -1.57e+03         0  0.00225    0.122     0.122  Chamber_PV eIoni
+    0 -2.08e+03     -907 2.04e+03     0.321        0        0         0     Tracker initStep
+    1 -2.09e+03     -908 2.05e+03     0.317  0.00265     8.51      8.51     Tracker eIoni
+    2 -2.1e+03     -912 2.05e+03     0.312  0.00209     14.6      23.1     Tracker eIoni
+    3 -2.15e+03     -953 2.07e+03     0.295   0.0122     67.4      90.5     Tracker eIoni
+    4 -2.19e+03     -977 2.04e+03     0.282   0.0125       57       147       World Transportation
+    5 -2.22e+03     -995 2.02e+03     0.261  0.00797     45.8       193       World eIoni
+    6 -2.25e+03 -1.01e+03 1.98e+03     0.247  0.00979     48.2       241       World eIoni
+    7 -2.27e+03     -999 1.94e+03     0.236  0.00953     46.2       288       World eIoni
+    8 -2.31e+03 -1.02e+03 1.88e+03     0.218   0.0152     77.3       365       World eIoni
+    9 -2.31e+03 -1.03e+03 1.88e+03     0.215  0.00177     7.34       372       World eIoni
+   10 -2.33e+03 -1.05e+03 1.87e+03     0.206   0.0072       36       408       World eIoni
+   11 -2.36e+03 -1.09e+03 1.84e+03     0.192   0.0126     60.9       469       World eIoni
+   12 -2.4e+03 -1.14e+03 1.78e+03     0.141   0.0159     94.8       564       World eIoni
+   13 -2.41e+03 -1.15e+03 1.76e+03     0.137   0.0037     23.2       587       World eIoni
+   14 -2.43e+03 -1.15e+03 1.74e+03     0.126  0.00738     33.9       621       World eIoni
+   15 -2.46e+03 -1.16e+03 1.78e+03     0.109   0.0169     53.7       675       World eIoni
+   16 -2.49e+03 -1.15e+03 1.78e+03    0.0945   0.0123     37.5       712       World eIoni
+   17 -2.5e+03 -1.15e+03 1.78e+03    0.0901  0.00337       12       724       World eIoni
+   18 -2.5e+03 -1.15e+03 1.78e+03    0.0818 0.000392    0.908       725       World eIoni
+   19 -2.51e+03 -1.15e+03 1.78e+03    0.0725  0.00618     18.7       744       World eIoni
+   20 -2.52e+03 -1.14e+03 1.78e+03    0.0628  0.00742     11.4       755       World eIoni
+   21 -2.52e+03 -1.13e+03 1.77e+03     0.055  0.00783     16.9       772       World eIoni
+   22 -2.52e+03 -1.12e+03 1.77e+03      0.05  0.00325     6.84       779       World eIoni
+   23 -2.52e+03 -1.13e+03 1.77e+03    0.0428  0.00719     11.7       791       World eIoni
+   24 -2.51e+03 -1.13e+03 1.76e+03    0.0366  0.00614     9.22       800       World eIoni
+   25 -2.51e+03 -1.13e+03 1.77e+03    0.0308  0.00579     7.33       807       World eIoni
+   26 -2.5e+03 -1.14e+03 1.77e+03    0.0272  0.00264     3.18       810       World eIoni
+   27 -2.51e+03 -1.13e+03 1.77e+03    0.0233  0.00388     4.88       815       World eIoni
+   28 -2.51e+03 -1.13e+03 1.77e+03    0.0217 0.000118     0.28       816       World eIoni
+   29 -2.51e+03 -1.13e+03 1.77e+03    0.0179  0.00379     3.73       819       World eIoni
+   30 -2.51e+03 -1.13e+03 1.77e+03     0.014  0.00278     2.78       822       World eIoni
+   31 -2.51e+03 -1.13e+03 1.77e+03    0.0106  0.00339     2.42       824       World eIoni
+   32 -2.51e+03 -1.13e+03 1.77e+03   0.00654  0.00405     1.92       826       World eIoni
+   33 -2.51e+03 -1.13e+03 1.77e+03  0.000502  0.00603      1.2       828       World eIoni
+   34 -2.51e+03 -1.13e+03 1.77e+03         0 0.000502    0.023       828       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 19,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 194,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0342   0.0392 -1.59e+03   0.00176        0        0         0  Chamber_PV initStep
-    1  -0.0456     0.04 -1.59e+03         0  0.00176    0.087     0.087  Chamber_PV eIoni
+    0 -2.51e+03 -1.13e+03 1.77e+03   0.00114        0        0         0       World initStep
+    1 -2.51e+03 -1.13e+03 1.77e+03         0  0.00114   0.0693    0.0693       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 18,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 193,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0339   0.0389 -1.6e+03   0.00138        0        0         0  Chamber_PV initStep
-    1    -0.04   0.0327 -1.6e+03         0  0.00138   0.0627    0.0627  Chamber_PV eIoni
+    0 -2.51e+03 -1.13e+03 1.77e+03   0.00147        0        0         0       World initStep
+    1 -2.51e+03 -1.13e+03 1.77e+03         0  0.00147      0.1       0.1       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 17,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 192,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0335   0.0383 -1.61e+03    0.0139        0        0         0  Chamber_PV initStep
-    1   0.0106   -0.178 -1.61e+03   0.00581  0.00623     1.04      1.04  Chamber_PV eIoni
-    2  -0.0243   -0.153 -1.61e+03         0  0.00581    0.501      1.54  Chamber_PV eIoni
+    0 -2.5e+03 -1.14e+03 1.77e+03   0.00106        0        0         0       World initStep
+    1 -2.5e+03 -1.14e+03 1.77e+03         0  0.00106   0.0619    0.0619       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 101,   Parent ID = 17
+* G4Track Information:   Particle = e-,   Track ID = 191,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0106   -0.178 -1.61e+03    0.0019        0        0         0  Chamber_PV initStep
-    1   0.0189   -0.169 -1.61e+03         0   0.0019    0.097     0.097  Chamber_PV eIoni
+    0 -2.52e+03 -1.12e+03 1.77e+03   0.00175        0        0         0       World initStep
+    1 -2.52e+03 -1.12e+03 1.77e+03         0  0.00175    0.132     0.132       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 16,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 190,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0327   0.0375 -1.63e+03   0.00249        0        0         0  Chamber_PV initStep
-    1  -0.0275   0.0547 -1.63e+03         0  0.00249    0.141     0.141  Chamber_PV eIoni
+    0 -2.52e+03 -1.14e+03 1.78e+03   0.00232        0        0         0       World initStep
+    1 -2.52e+03 -1.14e+03 1.78e+03         0  0.00232    0.205     0.205       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 15,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 189,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0324    0.037 -1.64e+03   0.00271        0        0         0  Chamber_PV initStep
-    1  -0.0365    0.057 -1.64e+03         0  0.00271    0.158     0.158  Chamber_PV eIoni
+    0 -2.51e+03 -1.15e+03 1.78e+03   0.00309        0        0         0       World initStep
+    1 -2.51e+03 -1.15e+03 1.78e+03  0.000642  0.00245    0.285     0.285       World eIoni
+    2 -2.51e+03 -1.15e+03 1.78e+03         0 0.000642   0.0313     0.316       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 14,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 188,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0299   0.0342 -1.7e+03   0.00144        0        0         0  Chamber_PV initStep
-    1  -0.0222   0.0393 -1.7e+03         0  0.00144   0.0666    0.0666  Chamber_PV eIoni
+    0 -2.5e+03 -1.15e+03 1.78e+03   0.00786        0        0         0       World initStep
+    1 -2.5e+03 -1.15e+03 1.78e+03    0.0036  0.00426     1.48      1.48       World eIoni
+    2 -2.5e+03 -1.15e+03 1.78e+03    0.0022   0.0014    0.249      1.73       World eIoni
+    3 -2.5e+03 -1.15e+03 1.78e+03         0   0.0022    0.188      1.92       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 13,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 187,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0284   0.0325 -1.73e+03   0.00278        0        0         0     Tracker initStep
-    1   0.0782  -0.0273 -1.73e+03         0  0.00278    0.276     0.276     Tracker eIoni
+    0 -2.5e+03 -1.15e+03 1.78e+03    0.0011        0        0         0       World initStep
+    1 -2.5e+03 -1.15e+03 1.78e+03         0   0.0011    0.065     0.065       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 12,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 186,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0249   0.0285 -1.82e+03   0.00172        0        0         0     Tracker initStep
-    1  -0.0451   0.0796 -1.82e+03         0  0.00172    0.128     0.128     Tracker eIoni
+    0 -2.49e+03 -1.15e+03 1.78e+03   0.00231        0        0         0       World initStep
+    1 -2.49e+03 -1.15e+03 1.78e+03         0  0.00231    0.204     0.204       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 11,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 185,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0212   0.0241 -1.91e+03    0.0084        0        0         0     Tracker initStep
-    1  -0.0244    0.304 -1.91e+03   0.00671 0.000649    0.311     0.311     Tracker eIoni
-    2   -0.277   -0.204 -1.91e+03   0.00052  0.00619     1.24      1.55     Tracker eIoni
-    3   -0.277   -0.211 -1.91e+03         0  0.00052    0.024      1.58     Tracker eIoni
+    0 -2.43e+03 -1.15e+03 1.74e+03   0.00368        0        0         0       World initStep
+    1 -2.43e+03 -1.15e+03 1.74e+03         0  0.00368    0.448     0.448       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 102,   Parent ID = 11
+* G4Track Information:   Particle = e-,   Track ID = 184,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0244    0.304 -1.91e+03   0.00104        0        0         0     Tracker initStep
-    1 -0.00433    0.292 -1.91e+03         0  0.00104   0.0601    0.0601     Tracker eIoni
+    0 -2.4e+03 -1.14e+03 1.78e+03    0.0357        0        0         0       World initStep
+    1 -2.4e+03 -1.14e+03 1.78e+03    0.0295  0.00623     7.06      7.06       World eIoni
+    2 -2.4e+03 -1.13e+03 1.77e+03    0.0259  0.00355     5.42      12.5       World eIoni
+    3 -2.4e+03 -1.13e+03 1.77e+03    0.0221 0.000439    0.394      12.9       World eIoni
+    4 -2.4e+03 -1.13e+03 1.77e+03    0.0159  0.00629     3.82      16.7       World eIoni
+    5 -2.4e+03 -1.13e+03 1.77e+03    0.0138 0.000419    0.732      17.4       World eIoni
+    6 -2.4e+03 -1.13e+03 1.77e+03    0.0114  0.00037    0.483      17.9       World eIoni
+    7 -2.4e+03 -1.13e+03 1.77e+03   0.00734  0.00402     2.04      19.9       World eIoni
+    8 -2.4e+03 -1.13e+03 1.77e+03   0.00209  0.00525     1.35      21.3       World eIoni
+    9 -2.4e+03 -1.13e+03 1.77e+03         0  0.00209    0.174      21.5       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 10,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 197,   Parent ID = 184
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0188   0.0213 -1.97e+03    0.0186        0        0         0     Tracker initStep
-    1    0.266    0.314 -1.97e+03     0.018 0.000645    0.426     0.426     Tracker eIoni
-    2     1.92     1.87 -1.97e+03    0.0136  0.00436     3.06      3.48     Tracker eIoni
-    3     3.04     2.93 -1.97e+03   0.00879  0.00338     2.23      5.71     Tracker eIoni
-    4     3.43     2.79 -1.97e+03   0.00445  0.00434     1.64      7.35     Tracker eIoni
-    5     3.52     3.01 -1.97e+03         0  0.00445    0.623      7.98     Tracker eIoni
+    0 -2.4e+03 -1.13e+03 1.77e+03    0.0021        0        0         0       World initStep
+    1 -2.4e+03 -1.13e+03 1.77e+03         0   0.0021    0.175     0.175       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 103,   Parent ID = 10
+* G4Track Information:   Particle = e-,   Track ID = 196,   Parent ID = 184
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.04     2.93 -1.97e+03   0.00143        0        0         0     Tracker initStep
-    1     3.06     2.96 -1.97e+03         0  0.00143   0.0961    0.0961     Tracker eIoni
+    0 -2.4e+03 -1.13e+03 1.77e+03    0.0016        0        0         0       World initStep
+    1 -2.4e+03 -1.13e+03 1.77e+03         0   0.0016    0.114     0.114       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 9,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 195,   Parent ID = 184
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0084  0.00937 -2.23e+03   0.00241        0        0         0     Tracker initStep
-    1   0.0465  -0.0697 -2.23e+03         0  0.00241    0.219     0.219     Tracker eIoni
+    0 -2.4e+03 -1.13e+03 1.77e+03   0.00332        0        0         0       World initStep
+    1 -2.4e+03 -1.13e+03 1.77e+03         0  0.00332    0.375     0.375       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 8,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 183,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.000969 0.000921 -2.41e+03      3.12        0        0         0      Target initStep
-    1   0.0936  0.00902 -2.41e+03       2.7    0.251    0.278     0.278      Target eBrem
-    2  -0.0526    -0.19 -2.41e+03     0.682     2.02     1.67      1.95      Target eIoni
-    3  -0.0471   -0.164 -2.41e+03         0    0.682    0.457       2.4      Target eIoni
+    0 -2.36e+03 -1.09e+03 1.84e+03   0.00154        0        0         0       World initStep
+    1 -2.36e+03 -1.09e+03 1.84e+03         0  0.00154    0.107     0.107       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 7,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 182,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.000798 0.000826 -2.42e+03      1.48        0        0         0      Target initStep
-    1  -0.0623  -0.0204 -2.42e+03    0.0989     1.38     1.13      1.13      Target eIoni
-    2  -0.0605  -0.0203 -2.42e+03         0   0.0989   0.0269      1.15      Target eIoni
+    0 -2.33e+03 -1.05e+03 1.87e+03   0.00131        0        0         0       World initStep
+    1 -2.33e+03 -1.05e+03 1.87e+03         0  0.00131   0.0847    0.0847       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 6,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 181,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 5.05e-05  0.00023 -2.45e+03      4.81        0        0         0      Target initStep
-    1   0.0294  -0.0296 -2.45e+03      4.16    0.649    0.606     0.606      Target msc
-    2    0.071   -0.115 -2.45e+03      1.89    0.427    0.173     0.779      Target eIoni
-    3   0.0321   -0.141 -2.45e+03         0     1.89     1.36      2.14      Target eIoni
+    0 -2.31e+03 -1.03e+03 1.88e+03   0.00112        0        0         0       World initStep
+    1 -2.31e+03 -1.03e+03 1.88e+03         0  0.00112   0.0668    0.0668       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 105,   Parent ID = 6
+* G4Track Information:   Particle = e-,   Track ID = 180,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.071   -0.115 -2.45e+03      1.85        0        0         0      Target initStep
-    1    0.147   -0.155 -2.45e+03      1.25    0.598    0.575     0.575      Target eBrem
-    2    0.123   -0.215 -2.45e+03         0     1.25    0.947      1.52      Target eIoni
+    0 -2.31e+03 -1.02e+03 1.88e+03   0.00331        0        0         0       World initStep
+    1 -2.31e+03 -1.02e+03 1.88e+03   0.00151 0.000596    0.125     0.125       World eIoni
+    2 -2.31e+03 -1.02e+03 1.88e+03         0  0.00151    0.105     0.229       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 5,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 198,   Parent ID = 180
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 3.11e-05 0.000112 -2.61e+03    0.0202        0        0         0       World initStep
-    1     1.63    -1.71 -2.61e+03    0.0158  0.00268     2.94      2.94       World eIoni
-    2   0.0102    -2.68 -2.61e+03    0.0109  0.00487      2.7      5.65       World eIoni
-    3    -1.09    -3.26 -2.61e+03    0.0077  0.00325     1.98      7.62       World eIoni
-    4    -1.57    -3.68 -2.61e+03   0.00199  0.00571     1.45      9.07       World eIoni
-    5    -1.59    -3.74 -2.61e+03         0  0.00199     0.16      9.23       World eIoni
+    0 -2.31e+03 -1.02e+03 1.88e+03    0.0012        0        0         0       World initStep
+    1 -2.31e+03 -1.02e+03 1.88e+03         0   0.0012   0.0741    0.0741       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 106,   Parent ID = 5
+* G4Track Information:   Particle = e-,   Track ID = 179,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.63    -1.71 -2.61e+03   0.00166        0        0         0       World initStep
-    1      1.6    -1.67 -2.61e+03         0  0.00166    0.121     0.121       World eIoni
+    0 -2.27e+03     -999 1.94e+03    0.0012        0        0         0       World initStep
+    1 -2.27e+03     -999 1.94e+03         0   0.0012   0.0741    0.0741       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 4,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 178,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.55e-05 9.76e-05 -2.64e+03   0.00104        0        0         0       World initStep
-    1   0.0163   0.0185 -2.64e+03         0  0.00104   0.0603    0.0603       World eIoni
+    0 -2.25e+03 -1.01e+03 1.98e+03   0.00425        0        0         0       World initStep
+    1 -2.25e+03 -1.01e+03 1.98e+03   0.00264 0.000615    0.107     0.107       World eIoni
+    2 -2.25e+03 -1.01e+03 1.98e+03         0  0.00264    0.254      0.36       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 3,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 199,   Parent ID = 178
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 7.66e-06 4.27e-05 -2.72e+03   0.00542        0        0         0       World initStep
-    1   -0.199   -0.339 -2.72e+03         0  0.00542    0.885     0.885       World eIoni
+    0 -2.25e+03 -1.01e+03 1.98e+03  0.000999        0        0         0       World initStep
+    1 -2.25e+03 -1.01e+03 1.98e+03         0 0.000999    0.057     0.057       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 2,   Parent ID = 1
+* G4Track Information:   Particle = e-,   Track ID = 177,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -2.99e-07  9.6e-06 -2.8e+03    0.0023        0        0         0       World initStep
-    1  -0.0298  -0.0838 -2.8e+03         0   0.0023    0.203     0.203       World eIoni
+    0 -2.22e+03     -995 2.02e+03    0.0132        0        0         0       World initStep
+    1 -2.22e+03     -996 2.02e+03   0.00904  0.00278     1.57      1.57       World eIoni
+    2 -2.22e+03     -997 2.02e+03   0.00485  0.00419     1.68      3.25       World eIoni
+    3 -2.22e+03     -997 2.02e+03         0  0.00485    0.725      3.97       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 104,   Parent ID = 8
+* G4Track Information:   Particle = e-,   Track ID = 200,   Parent ID = 177
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0936  0.00902 -2.41e+03      0.17        0        0         0      Target initStep
-    1   -0.306   -0.686 -2.41e+03         0    0.088    0.816     0.816      Target phot
+    0 -2.22e+03     -996 2.02e+03   0.00137        0        0         0       World initStep
+    1 -2.22e+03     -996 2.02e+03         0  0.00137   0.0904    0.0904       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 107,   Parent ID = 104
+* G4Track Information:   Particle = e-,   Track ID = 176,   Parent ID = 162
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.306   -0.686 -2.41e+03    0.0824        0        0         0      Target initStep
-    1   -0.306   -0.687 -2.41e+03         0   0.0824   0.0201    0.0201      Target eIoni
->>> Event: 0
-    71 hits stored in this event
-### Run 2 starts.
---> Event 0 starts.
->>> Event: 0
-    0 hits stored in this event
->>> Event: 1
-    0 hits stored in this event
->>> Event: 2
-    0 hits stored in this event
->>> Event: 3
-    0 hits stored in this event
->>> Event: 4
-    0 hits stored in this event
->>> Event: 5
-    0 hits stored in this event
->>> Event: 6
-    0 hits stored in this event
->>> Event: 7
-    0 hits stored in this event
->>> Event: 8
-    0 hits stored in this event
->>> Event: 9
-    0 hits stored in this event
->>> Event: 10
-    100 hits stored in this event
->>> Event: 11
-    72 hits stored in this event
->>> Event: 12
-    0 hits stored in this event
->>> Event: 13
-    47 hits stored in this event
->>> Event: 14
-    0 hits stored in this event
->>> Event: 15
-    0 hits stored in this event
->>> Event: 16
-    0 hits stored in this event
->>> Event: 17
-    0 hits stored in this event
->>> Event: 18
-    0 hits stored in this event
->>> Event: 19
-    0 hits stored in this event
->>> Event: 20
-    0 hits stored in this event
->>> Event: 21
-    0 hits stored in this event
->>> Event: 22
-    0 hits stored in this event
->>> Event: 23
-    0 hits stored in this event
->>> Event: 24
-    0 hits stored in this event
->>> Event: 25
-    0 hits stored in this event
->>> Event: 26
-    0 hits stored in this event
->>> Event: 27
-    91 hits stored in this event
->>> Event: 28
-    37 hits stored in this event
->>> Event: 29
+    0 -2.15e+03     -953 2.07e+03   0.00458        0        0         0     Tracker initStep
+    1 -2.15e+03     -953 2.07e+03         0  0.00458    0.657     0.657     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 175,   Parent ID = 162
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -2.1e+03     -912 2.05e+03   0.00335        0        0         0     Tracker initStep
+    1 -2.1e+03     -912 2.05e+03         0  0.00335    0.381     0.381     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 174,   Parent ID = 162
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -2.09e+03     -908 2.05e+03   0.00156        0        0         0     Tracker initStep
+    1 -2.09e+03     -908 2.05e+03         0  0.00156     0.11      0.11     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 161,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -2.04e+03     -824  1.9e+03   0.00401        0        0         0     Tracker initStep
+    1 -2.04e+03     -824  1.9e+03         0  0.00401     0.52      0.52     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 160,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -2.04e+03     -819 1.89e+03   0.00168        0        0         0     Tracker initStep
+    1 -2.04e+03     -819 1.89e+03         0  0.00168    0.123     0.123     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 159,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -2.04e+03     -811 1.87e+03   0.00142        0        0         0     Tracker initStep
+    1 -2.04e+03     -811 1.87e+03         0  0.00142    0.095     0.095     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 158,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -2.03e+03     -791 1.83e+03   0.00386        0        0         0     Tracker initStep
+    1 -2.03e+03     -791 1.83e+03         0  0.00386    0.486     0.486     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 157,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -2.03e+03     -764 1.78e+03   0.00166        0        0         0     Tracker initStep
+    1 -2.03e+03     -764 1.78e+03         0  0.00166    0.121     0.121     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 156,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -2.03e+03     -720 1.69e+03    0.0136        0        0         0  Chamber_PV initStep
+    1 -2.03e+03     -720 1.69e+03   0.00359  0.00678     1.39      1.39  Chamber_PV eIoni
+    2 -2.03e+03     -720 1.69e+03         0  0.00359    0.236      1.63  Chamber_PV eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 201,   Parent ID = 156
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -2.03e+03     -720 1.69e+03   0.00322        0        0         0  Chamber_PV initStep
+    1 -2.03e+03     -720 1.69e+03         0  0.00322    0.202     0.202  Chamber_PV eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 155,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -2.03e+03     -712 1.67e+03   0.00467        0        0         0  Chamber_PV initStep
+    1 -2.03e+03     -712 1.67e+03         0  0.00467    0.353     0.353  Chamber_PV eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 154,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -2.03e+03     -708 1.66e+03   0.00167        0        0         0  Chamber_PV initStep
+    1 -2.03e+03     -708 1.66e+03         0  0.00167   0.0814    0.0814  Chamber_PV eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 153,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -2.03e+03     -708 1.66e+03    0.0014        0        0         0  Chamber_PV initStep
+    1 -2.03e+03     -708 1.66e+03         0   0.0014   0.0642    0.0642  Chamber_PV eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 152,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.97e+03     -710 1.53e+03   0.00386        0        0         0  Chamber_PV initStep
+    1 -1.97e+03     -710 1.53e+03         0  0.00386    0.263     0.263  Chamber_PV eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 151,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.96e+03     -646 1.36e+03    0.0014        0        0         0     Tracker initStep
+    1 -1.96e+03     -646 1.36e+03         0   0.0014   0.0938    0.0938     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 150,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.95e+03     -622  1.3e+03   0.00285        0        0         0     Tracker initStep
+    1 -1.95e+03     -622  1.3e+03         0  0.00285    0.288     0.288     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 149,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.95e+03     -598 1.25e+03   0.00458        0        0         0     Tracker initStep
+    1 -1.95e+03     -598 1.25e+03         0  0.00458    0.655     0.655     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 148,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.95e+03     -593 1.24e+03   0.00633        0        0         0     Tracker initStep
+    1 -1.95e+03     -593 1.24e+03   0.00329  0.00197    0.673     0.673     Tracker eIoni
+    2 -1.95e+03     -593 1.24e+03         0  0.00329    0.369      1.04     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 202,   Parent ID = 148
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.95e+03     -593 1.24e+03   0.00107        0        0         0     Tracker initStep
+    1 -1.95e+03     -593 1.24e+03         0  0.00107   0.0629    0.0629     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 147,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.95e+03     -560 1.18e+03   0.00174        0        0         0     Tracker initStep
+    1 -1.95e+03     -560 1.18e+03         0  0.00174     0.13      0.13     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 146,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.96e+03     -350      825   0.00116        0        0         0     Tracker initStep
+    1 -1.96e+03     -350      825         0  0.00116   0.0708    0.0708     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 145,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.96e+03     -297      720   0.00149        0        0         0     Tracker initStep
+    1 -1.96e+03     -297      720         0  0.00149    0.103     0.103     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 144,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.97e+03     -274      662   0.00242        0        0         0     Tracker initStep
+    1 -1.97e+03     -274      662         0  0.00242     0.22      0.22     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 143,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.98e+03     -255      607   0.00242        0        0         0     Tracker initStep
+    1 -1.98e+03     -255      607         0  0.00242    0.221     0.221     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 142,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.98e+03     -242      577   0.00197        0        0         0     Tracker initStep
+    1 -1.98e+03     -242      577         0  0.00197    0.158     0.158     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 141,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.97e+03     -163      389   0.00104        0        0         0     Tracker initStep
+    1 -1.97e+03     -163      389         0  0.00104   0.0604    0.0604     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 140,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.95e+03     -136      329   0.00141        0        0         0     Tracker initStep
+    1 -1.95e+03     -136      329         0  0.00141   0.0947    0.0947     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 139,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.92e+03     -106      258    0.0967        0        0         0     Tracker initStep
+    1 -1.93e+03     -106      258    0.0936  0.00143     5.23      5.23     Tracker eIoni
+    2 -1.96e+03    -98.8      251    0.0821   0.0116     32.7      37.9     Tracker eIoni
+    3 -1.96e+03    -78.1      246    0.0751  0.00699     26.2      64.1     Tracker eIoni
+    4 -1.97e+03    -62.5      234    0.0652  0.00988     22.6      86.7     Tracker eIoni
+    5 -1.97e+03    -73.5      226    0.0479  0.00584     15.6       102     Tracker eIoni
+    6 -1.97e+03      -80      226      0.04  0.00793       11       113     Tracker eIoni
+    7 -1.97e+03    -80.3      233    0.0344  0.00559     8.33       122     Tracker eIoni
+    8 -1.97e+03    -79.1      232    0.0303 0.000685     1.46       123     Tracker eIoni
+    9 -1.97e+03    -75.3      230    0.0254  0.00483     5.62       129     Tracker eIoni
+   10 -1.97e+03      -74      227    0.0203  0.00515      4.5       133     Tracker eIoni
+   11 -1.98e+03      -73      226    0.0172  0.00307     3.47       137     Tracker eIoni
+   12 -1.98e+03    -71.9      225    0.0142  0.00302     2.93       140     Tracker eIoni
+   13 -1.98e+03    -71.1      226   0.00952  0.00468     2.46       142     Tracker eIoni
+   14 -1.98e+03    -71.4      227   0.00393  0.00559     1.76       144     Tracker eIoni
+   15 -1.98e+03    -71.5      227         0  0.00393    0.501       144     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 205,   Parent ID = 139
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.97e+03    -79.1      232   0.00344        0        0         0     Tracker initStep
+    1 -1.97e+03    -79.2      232         0  0.00344    0.399     0.399     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 204,   Parent ID = 139
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.97e+03    -73.5      226    0.0115        0        0         0     Tracker initStep
+    1 -1.97e+03    -73.7      228   0.00667  0.00478     2.05      2.05     Tracker eIoni
+    2 -1.97e+03    -73.4      228         0  0.00667     1.23      3.28     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 203,   Parent ID = 139
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.93e+03     -106      258   0.00163        0        0         0     Tracker initStep
+    1 -1.93e+03     -106      258         0  0.00163    0.118     0.118     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 138,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.91e+03    -98.3      235   0.00142        0        0         0     Tracker initStep
+    1 -1.91e+03    -98.2      235         0  0.00142   0.0954    0.0954     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 137,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.83e+03      -20     6.08   0.00247        0        0         0     Tracker initStep
+    1 -1.83e+03      -20     6.04         0  0.00247    0.227     0.227     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 136,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.77e+03     25.5     -149   0.00125        0        0         0     Tracker initStep
+    1 -1.77e+03     25.5     -149         0  0.00125   0.0792    0.0792     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 135,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.75e+03     44.2     -216   0.00177        0        0         0     Tracker initStep
+    1 -1.75e+03     44.2     -216         0  0.00177    0.133     0.133     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 134,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.75e+03     47.3     -231   0.00139        0        0         0     Tracker initStep
+    1 -1.75e+03     47.4     -231         0  0.00139    0.092     0.092     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 133,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.73e+03     54.6     -267     0.191        0        0         0     Tracker initStep
+    1 -1.76e+03     53.3     -271     0.178  0.00893     33.6      33.6     Tracker eIoni
+    2 -1.8e+03     67.1     -269     0.166   0.0106     39.8      73.5     Tracker eIoni
+    3 -1.82e+03       71     -273      0.16   0.0054     16.7      90.1     Tracker eIoni
+    4 -1.83e+03     71.6     -278     0.152  0.00432     13.9       104     Tracker eIoni
+    5 -1.85e+03     72.3     -283     0.143   0.0083     27.4       131     Tracker eIoni
+    6 -1.87e+03     72.1     -284    0.0784  0.00268     11.4       143     Tracker eIoni
+    7 -1.87e+03     71.8     -288    0.0753  0.00189     4.46       147     Tracker eIoni
+    8 -1.87e+03     73.1     -296    0.0696  0.00349     8.85       156     Tracker eIoni
+    9 -1.88e+03     67.5     -306    0.0608  0.00877     19.9       176     Tracker eIoni
+   10 -1.88e+03     57.4     -315     0.054  0.00682       16       192     Tracker eIoni
+   11 -1.89e+03     51.4     -305    0.0465  0.00747     13.2       205     Tracker eIoni
+   12 -1.88e+03     49.9     -297    0.0406  0.00596     10.5       216     Tracker eIoni
+   13 -1.88e+03     49.5     -296    0.0385   0.0007    0.799       217     Tracker eIoni
+   14 -1.88e+03       46     -291    0.0336  0.00489     7.89       225     Tracker eIoni
+   15 -1.88e+03     47.3     -287    0.0296  0.00405     6.49       231     Tracker eIoni
+   16 -1.88e+03     46.2     -286    0.0271 0.000536     1.91       233     Tracker eIoni
+   17 -1.88e+03     44.9     -285    0.0228  0.00214     2.19       235     Tracker eIoni
+   18 -1.88e+03     43.9     -283    0.0178  0.00497     3.95       239     Tracker eIoni
+   19 -1.88e+03     44.4     -284    0.0133  0.00454     3.04       242     Tracker eIoni
+   20 -1.88e+03     43.9     -285   0.00885  0.00444     2.32       244     Tracker eIoni
+   21 -1.88e+03       43     -285   0.00503  0.00382     1.65       246     Tracker eIoni
+   22 -1.88e+03     42.9     -285         0  0.00503    0.773       247     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 215,   Parent ID = 133
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.88e+03     44.9     -285   0.00216        0        0         0     Tracker initStep
+    1 -1.88e+03     44.8     -285         0  0.00216    0.183     0.183     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 214,   Parent ID = 133
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.88e+03     46.2     -286   0.00194        0        0         0     Tracker initStep
+    1 -1.88e+03     46.3     -286         0  0.00194    0.155     0.155     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 213,   Parent ID = 133
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.88e+03     49.5     -296   0.00133        0        0         0     Tracker initStep
+    1 -1.88e+03     49.5     -296         0  0.00133   0.0864    0.0864     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 212,   Parent ID = 133
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.87e+03     73.1     -296   0.00229        0        0         0     Tracker initStep
+    1 -1.87e+03     73.1     -296         0  0.00229    0.201     0.201     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 211,   Parent ID = 133
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.87e+03     71.8     -288   0.00118        0        0         0     Tracker initStep
+    1 -1.87e+03     71.8     -288         0  0.00118   0.0723    0.0723     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 210,   Parent ID = 133
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.87e+03     72.1     -284    0.0615        0        0         0     Tracker initStep
+    1 -1.87e+03     71.8     -280    0.0555  0.00386     10.6      10.6     Tracker eIoni
+    2 -1.88e+03     81.1     -277    0.0486  0.00686     13.8      24.4     Tracker eIoni
+    3 -1.88e+03     81.9     -277    0.0454 0.000538     1.05      25.5     Tracker eIoni
+    4 -1.89e+03     89.3     -277    0.0389  0.00651     10.1      35.5     Tracker eIoni
+    5 -1.88e+03     95.5     -275    0.0342  0.00463     7.99      43.5     Tracker eIoni
+    6 -1.88e+03     99.9     -275    0.0284  0.00584     6.66      50.2     Tracker eIoni
+    7 -1.88e+03      100     -278     0.024  0.00442     5.17      55.3     Tracker eIoni
+    8 -1.89e+03      100     -279    0.0205 0.000394     1.18      56.5     Tracker eIoni
+    9 -1.89e+03      101     -281    0.0166  0.00385      3.5        60     Tracker eIoni
+   10 -1.89e+03      103     -281    0.0133  0.00334     2.83      62.9     Tracker eIoni
+   11 -1.89e+03      104     -281   0.00954  0.00373     2.32      65.2     Tracker eIoni
+   12 -1.89e+03      104     -281   0.00684  0.00129    0.696      65.9     Tracker eIoni
+   13 -1.89e+03      104     -280   0.00185  0.00499     1.27      67.1     Tracker eIoni
+   14 -1.89e+03      104     -280         0  0.00185    0.143      67.3     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 219,   Parent ID = 210
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.89e+03      104     -281   0.00141        0        0         0     Tracker initStep
+    1 -1.89e+03      104     -281         0  0.00141   0.0945    0.0945     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 218,   Parent ID = 210
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.89e+03      100     -279   0.00311        0        0         0     Tracker initStep
+    1 -1.89e+03      100     -279         0  0.00311    0.334     0.334     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 217,   Parent ID = 210
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.88e+03     81.9     -277   0.00268        0        0         0     Tracker initStep
+    1 -1.88e+03     81.9     -277         0  0.00268     0.26      0.26     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 216,   Parent ID = 210
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.87e+03     71.8     -280   0.00217        0        0         0     Tracker initStep
+    1 -1.87e+03     71.8     -280         0  0.00217    0.184     0.184     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 209,   Parent ID = 133
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.85e+03     72.3     -283   0.00153        0        0         0     Tracker initStep
+    1 -1.85e+03     72.4     -283         0  0.00153    0.107     0.107     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 208,   Parent ID = 133
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.83e+03     71.6     -278   0.00356        0        0         0     Tracker initStep
+    1 -1.83e+03     71.6     -279         0  0.00356    0.423     0.423     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 207,   Parent ID = 133
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.8e+03     67.1     -269   0.00131        0        0         0     Tracker initStep
+    1 -1.8e+03     67.1     -269         0  0.00131   0.0846    0.0846     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 206,   Parent ID = 133
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.76e+03     53.3     -271   0.00478        0        0         0     Tracker initStep
+    1 -1.76e+03     53.6     -271   0.00157  0.00171    0.501     0.501     Tracker eIoni
+    2 -1.76e+03     53.7     -271         0  0.00157    0.111     0.612     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 220,   Parent ID = 206
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.76e+03     53.6     -271    0.0015        0        0         0     Tracker initStep
+    1 -1.76e+03     53.7     -271         0   0.0015    0.103     0.103     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 132,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.7e+03     65.3     -329   0.00225        0        0         0     Tracker initStep
+    1 -1.7e+03     65.2     -329         0  0.00225    0.195     0.195     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 131,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.58e+03     72.9     -537    0.0371        0        0         0     Tracker initStep
+    1 -1.58e+03     69.5     -539    0.0319  0.00519     7.47      7.47     Tracker eIoni
+    2 -1.59e+03     68.3     -540    0.0266  0.00532     6.05      13.5     Tracker eIoni
+    3 -1.59e+03     65.7     -537    0.0239  0.00269     4.76      18.3     Tracker eIoni
+    4 -1.59e+03     65.3     -538    0.0214  0.00104     1.04      19.3     Tracker eIoni
+    5 -1.59e+03     64.1     -538    0.0174  0.00396     3.67        23     Tracker eIoni
+    6 -1.6e+03     65.3     -537    0.0135  0.00384     2.96        26     Tracker eIoni
+    7 -1.6e+03     66.6     -538   0.00819  0.00536     2.36      28.3     Tracker eIoni
+    8 -1.6e+03       67     -537   0.00151  0.00668     1.54      29.9     Tracker eIoni
+    9 -1.6e+03     66.9     -537         0  0.00151    0.105        30     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 221,   Parent ID = 131
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.59e+03     65.3     -538   0.00153        0        0         0     Tracker initStep
+    1 -1.59e+03     65.3     -538         0  0.00153    0.107     0.107     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 130,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.55e+03     74.4     -587   0.00888        0        0         0     Tracker initStep
+    1 -1.55e+03     75.3     -587   0.00374  0.00514     1.66      1.66     Tracker eIoni
+    2 -1.55e+03     75.2     -587         0  0.00374     0.46      2.12     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 129,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.53e+03     74.8     -605    0.0033        0        0         0     Tracker initStep
+    1 -1.53e+03     74.9     -605         0   0.0033    0.371     0.371     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 128,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.53e+03       75     -620    0.0015        0        0         0     Tracker initStep
+    1 -1.53e+03     75.1     -620         0   0.0015    0.103     0.103     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 127,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.5e+03     73.5     -670   0.00103        0        0         0     Tracker initStep
+    1 -1.5e+03     73.5     -670         0  0.00103   0.0595    0.0595     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 126,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.37e+03     69.2     -881   0.00212        0        0         0     Tracker initStep
+    1 -1.37e+03     69.2     -881         0  0.00212    0.178     0.178     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 125,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.28e+03     56.1 -1.04e+03   0.00104        0        0         0     Tracker initStep
+    1 -1.28e+03     56.2 -1.04e+03         0  0.00104   0.0601    0.0601     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 124,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.17e+03       60 -1.2e+03    0.0289        0        0         0     Tracker initStep
+    1 -1.17e+03     62.3 -1.2e+03    0.0228  0.00317     2.59      2.59     Tracker eIoni
+    2 -1.18e+03     62.5 -1.19e+03    0.0193  0.00343     3.94      6.53     Tracker eIoni
+    3 -1.18e+03     62.9 -1.19e+03    0.0158 0.000878     1.71      8.24     Tracker eIoni
+    4 -1.18e+03     63.8 -1.19e+03    0.0116  0.00427     2.71      10.9     Tracker eIoni
+    5 -1.18e+03     64.8 -1.19e+03   0.00629  0.00527     2.07        13     Tracker eIoni
+    6 -1.18e+03     64.8 -1.19e+03         0  0.00629     1.14      14.1     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 223,   Parent ID = 124
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.18e+03     62.9 -1.19e+03   0.00263        0        0         0     Tracker initStep
+    1 -1.18e+03     62.9 -1.19e+03         0  0.00263    0.253     0.253     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 222,   Parent ID = 124
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.17e+03     62.3 -1.2e+03   0.00294        0        0         0     Tracker initStep
+    1 -1.17e+03     62.4 -1.2e+03         0  0.00294    0.304     0.304     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 123,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.17e+03     59.8 -1.2e+03   0.00282        0        0         0     Tracker initStep
+    1 -1.17e+03     59.9 -1.2e+03         0  0.00282    0.283     0.283     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 122,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.17e+03     59.6 -1.2e+03   0.00143        0        0         0     Tracker initStep
+    1 -1.17e+03     59.6 -1.2e+03         0  0.00143   0.0968    0.0968     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 121,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.15e+03     57.5 -1.22e+03   0.00278        0        0         0     Tracker initStep
+    1 -1.15e+03     57.6 -1.22e+03         0  0.00278    0.277     0.277     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 120,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.12e+03     51.2 -1.26e+03   0.00163        0        0         0     Tracker initStep
+    1 -1.12e+03     51.2 -1.26e+03         0  0.00163    0.118     0.118     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 119,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.03e+03     41.8 -1.37e+03    0.0493        0        0         0     Tracker initStep
+    1 -1.03e+03     38.6 -1.36e+03    0.0434  0.00593     11.5      11.5     Tracker eIoni
+    2 -1.03e+03     36.8 -1.36e+03    0.0384  0.00498     9.41      20.9     Tracker eIoni
+    3 -1.02e+03       37 -1.35e+03    0.0319  0.00654     7.85      28.7     Tracker eIoni
+    4 -1.01e+03     36.9 -1.36e+03    0.0244  0.00749     6.02      34.7     Tracker eIoni
+    5 -1.01e+03     36.9 -1.36e+03    0.0231  3.4e-05   0.0518      34.8     Tracker eIoni
+    6 -1.01e+03     38.7 -1.36e+03    0.0201  0.00305     4.02      38.8     Tracker eIoni
+    7 -1.01e+03     39.7 -1.36e+03    0.0148  0.00526     3.43      42.2     Tracker eIoni
+    8 -1.01e+03     40.6 -1.36e+03   0.00959  0.00524     2.55      44.8     Tracker eIoni
+    9 -1.01e+03     40.2 -1.36e+03   0.00633  0.00218    0.681      45.5     Tracker eIoni
+   10 -1.01e+03     39.7 -1.36e+03         0  0.00633     1.15      46.6     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 225,   Parent ID = 119
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.01e+03     40.2 -1.36e+03   0.00109        0        0         0     Tracker initStep
+    1 -1.01e+03     40.2 -1.36e+03         0  0.00109   0.0643    0.0643     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 224,   Parent ID = 119
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.01e+03     36.9 -1.36e+03   0.00118        0        0         0     Tracker initStep
+    1 -1.01e+03     36.9 -1.36e+03         0  0.00118   0.0725    0.0725     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 118,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -931     20.5 -1.53e+03   0.00252        0        0         0     Tracker initStep
+    1     -931     20.5 -1.53e+03         0  0.00252    0.235     0.235     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 117,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -921       18 -1.54e+03    0.0036        0        0         0     Tracker initStep
+    1     -921       18 -1.54e+03   0.00184 0.000673    0.194     0.194     Tracker eIoni
+    2     -921       18 -1.54e+03         0  0.00184    0.142     0.336     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 226,   Parent ID = 117
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -921       18 -1.54e+03   0.00109        0        0         0     Tracker initStep
+    1     -921       18 -1.54e+03         0  0.00109   0.0645    0.0645     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 116,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -911     15.1 -1.56e+03   0.00112        0        0         0     Tracker initStep
+    1     -911     15.1 -1.56e+03         0  0.00112    0.067     0.067     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 115,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -890     6.11 -1.59e+03   0.00175        0        0         0     Tracker initStep
+    1     -890     6.16 -1.59e+03         0  0.00175    0.131     0.131     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 114,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -870    -2.11 -1.62e+03   0.00135        0        0         0     Tracker initStep
+    1     -870    -2.07 -1.62e+03         0  0.00135   0.0887    0.0887     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 113,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -684    -33.6 -1.86e+03   0.00167        0        0         0     Tracker initStep
+    1     -684    -33.6 -1.86e+03         0  0.00167    0.122     0.122     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 112,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -557    -28.4 -2.02e+03   0.00335        0        0         0     Tracker initStep
+    1     -557    -28.3 -2.02e+03         0  0.00335     0.38      0.38     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 111,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -491    -25.7 -2.1e+03   0.00294        0        0         0     Tracker initStep
+    1     -491    -25.6 -2.1e+03         0  0.00294    0.304     0.304     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 110,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -449    -25.7 -2.15e+03   0.00107        0        0         0     Tracker initStep
+    1     -449    -25.7 -2.15e+03         0  0.00107   0.0626    0.0626     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 109,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -437    -25.7 -2.17e+03   0.00113        0        0         0     Tracker initStep
+    1     -437    -25.7 -2.17e+03         0  0.00113   0.0683    0.0683     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 108,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -402    -22.1 -2.21e+03   0.00171        0        0         0     Tracker initStep
+    1     -402    -22.2 -2.21e+03         0  0.00171    0.127     0.127     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 107,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -366    -21.4 -2.25e+03   0.00379        0        0         0     Tracker initStep
+    1     -366    -21.2 -2.25e+03         0  0.00379    0.471     0.471     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 106,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -329    -21.4 -2.3e+03   0.00131        0        0         0     Tracker initStep
+    1     -329    -21.4 -2.3e+03         0  0.00131   0.0842    0.0842     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 105,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -318    -20.5 -2.32e+03   0.00516        0        0         0     Tracker initStep
+    1     -318    -20.7 -2.32e+03         0  0.00516     0.81      0.81     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 104,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -298    -17.7 -2.34e+03    0.0201        0        0         0     Tracker initStep
+    1     -299    -19.9 -2.35e+03    0.0158  0.00438     3.44      3.44     Tracker eIoni
+    2     -300    -21.7 -2.34e+03    0.0114  0.00432      2.7      6.14     Tracker eIoni
+    3     -300    -22.1 -2.34e+03   0.00568  0.00577     2.05      8.19     Tracker eIoni
+    4     -301    -21.9 -2.34e+03         0  0.00568    0.961      9.15     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 103,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -263    -12.3 -2.39e+03    0.0029        0        0         0     Tracker initStep
+    1     -263    -12.3 -2.39e+03         0   0.0029    0.297     0.297     Tracker eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 102,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -215    -6.95 -2.45e+03   0.00285        0        0         0       World initStep
+    1     -215    -7.07 -2.45e+03         0  0.00285    0.289     0.289       World eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 101,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -187    -2.36 -2.48e+03   0.00312        0        0         0       World initStep
+    1     -187    -2.22 -2.48e+03         0  0.00312    0.336     0.336       World eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 100,   Parent ID = 3
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0      -66     4.25 -2.63e+03   0.00129        0        0         0       World initStep
+    1      -66     4.27 -2.63e+03         0  0.00129    0.083     0.083       World eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 2,   Parent ID = 1
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0 -1.04e-05 3.93e-05 -2.77e+03   0.00112        0        0         0       World initStep
+    1  -0.0275 -0.000579 -2.77e+03         0  0.00112   0.0671    0.0671       World eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = gamma,   Track ID = 98,   Parent ID = 6
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0  -0.0342   -0.148 -2.45e+03     0.457        0        0         0      Target initStep
+    1    -3.25    -20.9 -2.45e+03         0    0.088     21.3      21.3      Target phot
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 227,   Parent ID = 98
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0    -3.25    -20.9 -2.45e+03     0.369        0        0         0      Target initStep
+    1    -3.24    -20.9 -2.45e+03         0    0.369      0.2       0.2      Target eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = gamma,   Track ID = 97,   Parent ID = 7
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0  0.00104 -0.000821 -2.42e+03      6.14        0        0         0      Target initStep
+    1     14.5    -20.3 -2.42e+03      6.14        0     25.4      25.4       World Transportation
+    2     71.3    -99.8 -2.4e+03      6.14        0       99       124     Tracker Transportation
+    3 1.39e+03 -1.95e+03 -2.01e+03      6.14        0 2.31e+03  2.43e+03       World Transportation
+    4  2.1e+03 -2.94e+03 -1.8e+03      6.14        0 1.23e+03  3.67e+03  OutOfWorld Transportation
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e+,   Track ID = 8,   Parent ID = 1
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0  0.00103 -0.000856 -2.42e+03      10.8        0        0         0      Target initStep
+    1  0.00104 -0.000844 -2.42e+03      9.94     0.45    0.392     0.392      Target eBrem
+    2   -0.133   -0.121 -2.42e+03      8.12    0.449    0.335     0.727      Target eBrem
+    3   -0.361   -0.343 -2.42e+03      6.18    0.911    0.824      1.55      Target eBrem
+    4   -0.193  -0.0223 -2.42e+03      4.62     1.09     1.01      2.56      Target eBrem
+    5 -0.00103     0.68 -2.42e+03      2.43     2.18     2.17      4.73      Target eIoni
+    6    0.136    0.421 -2.42e+03     0.718     1.55     1.06       5.8      Target eBrem
+    7    0.103    0.403 -2.42e+03     0.308     0.23    0.274      6.07      Target eBrem
+    8    0.088    0.401 -2.42e+03         0    0.308    0.151      6.22      Target eIoni
+    9    0.088    0.401 -2.42e+03         0        0        0      6.22      Target annihil
+
+*********************************************************************************************************
+* G4Track Information:   Particle = gamma,   Track ID = 235,   Parent ID = 8
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0    0.088    0.401 -2.42e+03     0.511        0        0         0      Target initStep
+    1    -4.12     8.76 -2.43e+03     0.294        0     16.3      16.3      Target compt
+    2    -4.33      8.9 -2.43e+03         0    0.088    0.251      16.5      Target phot
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 237,   Parent ID = 235
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0    -4.33      8.9 -2.43e+03     0.206        0        0         0      Target initStep
+    1    -4.33      8.9 -2.43e+03         0    0.206   0.0849    0.0849      Target eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 236,   Parent ID = 235
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0    -4.12     8.76 -2.43e+03     0.217        0        0         0      Target initStep
+    1    -4.12     8.76 -2.43e+03         0    0.217   0.0925    0.0925      Target eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = gamma,   Track ID = 234,   Parent ID = 8
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0    0.088    0.401 -2.42e+03     0.511        0        0         0      Target initStep
+    1     1.35     -2.1 -2.42e+03         0    0.088     4.88      4.88      Target phot
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 238,   Parent ID = 234
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     1.35     -2.1 -2.42e+03     0.423        0        0         0      Target initStep
+    1     1.35    -2.11 -2.42e+03         0    0.423    0.243     0.243      Target eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = gamma,   Track ID = 233,   Parent ID = 8
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0    0.103    0.403 -2.42e+03      0.18        0        0         0      Target initStep
+    1   -0.401    0.354 -2.42e+03      0.18        0    0.507     0.507      Target compt
+    2    -1.61    0.303 -2.42e+03         0    0.088     1.21      1.72      Target phot
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 240,   Parent ID = 233
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0    -1.61    0.303 -2.42e+03    0.0921        0        0         0      Target initStep
+    1    -1.61    0.303 -2.42e+03         0   0.0921    0.024     0.024      Target eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 239,   Parent ID = 233
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0   -0.401    0.354 -2.42e+03  0.000104        0        0         0      Target initStep
+    1   -0.401    0.354 -2.42e+03         0 0.000104 5.48e-06  5.48e-06      Target eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = gamma,   Track ID = 232,   Parent ID = 8
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0    0.136    0.421 -2.42e+03     0.168        0        0         0      Target initStep
+    1   0.0788    0.345 -2.42e+03         0    0.088   0.0995    0.0995      Target phot
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 241,   Parent ID = 232
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0   0.0788    0.345 -2.42e+03    0.0799        0        0         0      Target initStep
+    1   0.0779    0.345 -2.42e+03         0   0.0799   0.0191    0.0191      Target eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = gamma,   Track ID = 231,   Parent ID = 8
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0   -0.193  -0.0223 -2.42e+03      0.47        0        0         0      Target initStep
+    1     1.81     7.21 -2.42e+03     0.407        0     7.75      7.75      Target compt
+    2     -1.5     17.1 -2.41e+03         0    0.088     11.5      19.3      Target phot
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 243,   Parent ID = 231
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     -1.5     17.1 -2.41e+03     0.319        0        0         0      Target initStep
+    1    -1.49     17.1 -2.41e+03         0    0.319    0.163     0.163      Target eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 242,   Parent ID = 231
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0     1.81     7.21 -2.42e+03    0.0624        0        0         0      Target initStep
+    1     1.81     7.21 -2.42e+03         0   0.0624   0.0128    0.0128      Target eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = gamma,   Track ID = 230,   Parent ID = 8
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0   -0.361   -0.343 -2.42e+03      1.03        0        0         0      Target initStep
+    1     6.07     9.93 -2.4e+03      1.03        0       24        24     Tracker Transportation
+    2      968 1.55e+03      700      1.03        0 3.59e+03  3.62e+03  Chamber_PV Transportation
+    3      986 1.58e+03      760      1.03        0     69.6  3.68e+03     Tracker Transportation
+    4 1.22e+03 1.94e+03  1.5e+03      1.03        0      857  4.54e+03  Chamber_PV Transportation
+    5 1.27e+03 2.03e+03 1.68e+03      1.03        0      212  4.75e+03       World Transportation
+    6 1.66e+03 2.66e+03 2.94e+03      1.03        0 1.46e+03  6.21e+03  OutOfWorld Transportation
+
+*********************************************************************************************************
+* G4Track Information:   Particle = gamma,   Track ID = 229,   Parent ID = 8
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0   -0.133   -0.121 -2.42e+03      1.37        0        0         0      Target initStep
+    1    -5.68    -3.19 -2.41e+03         0    0.088     13.4      13.4      Target phot
+
+*********************************************************************************************************
+* G4Track Information:   Particle = gamma,   Track ID = 228,   Parent ID = 8
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0  0.00104 -0.000844 -2.42e+03     0.429        0        0         0      Target initStep
+    1   -0.125   -0.115 -2.42e+03     0.174        0    0.272     0.272      Target compt
+    2  -0.0582   0.0427 -2.42e+03         0    0.088    0.177      0.45      Target phot
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 246,   Parent ID = 228
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0  -0.0582   0.0427 -2.42e+03    0.0856        0        0         0      Target initStep
+    1  -0.0579   0.0437 -2.42e+03         0   0.0856   0.0214    0.0214      Target eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 245,   Parent ID = 228
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0   -0.125   -0.115 -2.42e+03     0.256        0        0         0      Target initStep
+    1   -0.128   -0.119 -2.42e+03         0    0.256    0.118     0.118      Target eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 244,   Parent ID = 229
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0    -5.68    -3.19 -2.41e+03      1.28        0        0         0      Target initStep
+    1     -5.7     -3.2 -2.41e+03     0.567    0.715    0.641     0.641      Target eBrem
+    2     -5.7    -3.22 -2.41e+03         0    0.567     0.36         1      Target eIoni
+>>> Event: 0
+    95 hits stored in this event
+### Run 2 starts.
+--> Event 0 starts.
+>>> Event: 0
+    0 hits stored in this event
+>>> Event: 1
+    0 hits stored in this event
+>>> Event: 2
+    73 hits stored in this event
+>>> Event: 3
+    0 hits stored in this event
+>>> Event: 4
+    0 hits stored in this event
+>>> Event: 5
+    0 hits stored in this event
+>>> Event: 6
+    34 hits stored in this event
+>>> Event: 7
+    0 hits stored in this event
+>>> Event: 8
+    0 hits stored in this event
+>>> Event: 9
+    0 hits stored in this event
+>>> Event: 10
+    0 hits stored in this event
+>>> Event: 11
+    0 hits stored in this event
+>>> Event: 12
+    58 hits stored in this event
+>>> Event: 13
+    22 hits stored in this event
+>>> Event: 14
+    12 hits stored in this event
+>>> Event: 15
+    0 hits stored in this event
+>>> Event: 16
+    0 hits stored in this event
+>>> Event: 17
+    0 hits stored in this event
+>>> Event: 18
+    89 hits stored in this event
+>>> Event: 19
+    0 hits stored in this event
+>>> Event: 20
+    0 hits stored in this event
+>>> Event: 21
+    0 hits stored in this event
+>>> Event: 22
+    0 hits stored in this event
+>>> Event: 23
+    0 hits stored in this event
+>>> Event: 24
+    0 hits stored in this event
+>>> Event: 25
+    0 hits stored in this event
+>>> Event: 26
+    0 hits stored in this event
+>>> Event: 27
+    0 hits stored in this event
+>>> Event: 28
+    0 hits stored in this event
+>>> Event: 29
     0 hits stored in this event
 >>> Event: 30
     0 hits stored in this event
 >>> Event: 31
-    0 hits stored in this event
+    127 hits stored in this event
 >>> Event: 32
-    0 hits stored in this event
+    59 hits stored in this event
 >>> Event: 33
     0 hits stored in this event
 >>> Event: 34
@@ -4400,21 +5571,21 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
 >>> Event: 36
     0 hits stored in this event
 >>> Event: 37
-    80 hits stored in this event
+    86 hits stored in this event
 >>> Event: 38
     0 hits stored in this event
 >>> Event: 39
-    0 hits stored in this event
+    10 hits stored in this event
 >>> Event: 40
     0 hits stored in this event
 >>> Event: 41
     0 hits stored in this event
 >>> Event: 42
-    0 hits stored in this event
+    24 hits stored in this event
 >>> Event: 43
-    88 hits stored in this event
+    114 hits stored in this event
 >>> Event: 44
-    0 hits stored in this event
+    4 hits stored in this event
 >>> Event: 45
     0 hits stored in this event
 >>> Event: 46
@@ -4422,7 +5593,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
 >>> Event: 47
     0 hits stored in this event
 >>> Event: 48
-    0 hits stored in this event
+    53 hits stored in this event
 >>> Event: 49
     0 hits stored in this event
 >>> Event: 50
@@ -4446,7 +5617,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
 >>> Event: 59
     0 hits stored in this event
 >>> Event: 60
-    0 hits stored in this event
+    101 hits stored in this event
 >>> Event: 61
     0 hits stored in this event
 >>> Event: 62
@@ -4468,7 +5639,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
 >>> Event: 70
     0 hits stored in this event
 >>> Event: 71
-    0 hits stored in this event
+    82 hits stored in this event
 >>> Event: 72
     0 hits stored in this event
 >>> Event: 73
@@ -4480,7 +5651,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
 >>> Event: 76
     0 hits stored in this event
 >>> Event: 77
-    0 hits stored in this event
+    95 hits stored in this event
 >>> Event: 78
     0 hits stored in this event
 >>> Event: 79
@@ -4498,7 +5669,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
 >>> Event: 85
     0 hits stored in this event
 >>> Event: 86
-    0 hits stored in this event
+    126 hits stored in this event
 >>> Event: 87
     0 hits stored in this event
 >>> Event: 88
@@ -4508,7 +5679,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
 >>> Event: 90
     0 hits stored in this event
 >>> Event: 91
-    29 hits stored in this event
+    74 hits stored in this event
 >>> Event: 92
     0 hits stored in this event
 >>> Event: 93
@@ -4516,9 +5687,9 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
 >>> Event: 94
     0 hits stored in this event
 >>> Event: 95
-    64 hits stored in this event
+    0 hits stored in this event
 >>> Event: 96
-    27 hits stored in this event
+    25 hits stored in this event
 >>> Event: 97
     0 hits stored in this event
 >>> Event: 98
@@ -4528,204 +5699,204 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
 ### Run 3 starts.
 --> Event 0 starts.
 >>> Event: 0
-    326 hits stored in this event
+    70 hits stored in this event
 >>> Event: 1
-    49 hits stored in this event
+    64 hits stored in this event
 >>> Event: 2
-    55 hits stored in this event
+    77 hits stored in this event
 >>> Event: 3
-    117 hits stored in this event
+    139 hits stored in this event
 >>> Event: 4
-    78 hits stored in this event
+    198 hits stored in this event
 >>> Event: 5
-    82 hits stored in this event
+    134 hits stored in this event
 >>> Event: 6
-    74 hits stored in this event
+    201 hits stored in this event
 >>> Event: 7
-    92 hits stored in this event
+    72 hits stored in this event
 >>> Event: 8
-    54 hits stored in this event
+    99 hits stored in this event
 >>> Event: 9
-    73 hits stored in this event
+    80 hits stored in this event
 >>> Event: 10
-    113 hits stored in this event
+    51 hits stored in this event
 >>> Event: 11
-    107 hits stored in this event
+    100 hits stored in this event
 >>> Event: 12
-    203 hits stored in this event
+    55 hits stored in this event
 >>> Event: 13
-    248 hits stored in this event
+    174 hits stored in this event
 >>> Event: 14
-    52 hits stored in this event
+    138 hits stored in this event
 >>> Event: 15
-    71 hits stored in this event
+    129 hits stored in this event
 >>> Event: 16
-    135 hits stored in this event
+    197 hits stored in this event
 >>> Event: 17
-    142 hits stored in this event
+    601 hits stored in this event
 >>> Event: 18
-    94 hits stored in this event
+    61 hits stored in this event
 >>> Event: 19
-    96 hits stored in this event
+    147 hits stored in this event
 >>> Event: 20
-    89 hits stored in this event
->>> Event: 21
     53 hits stored in this event
+>>> Event: 21
+    66 hits stored in this event
 >>> Event: 22
-    105 hits stored in this event
+    69 hits stored in this event
 >>> Event: 23
-    229 hits stored in this event
+    111 hits stored in this event
 >>> Event: 24
-    65 hits stored in this event
+    115 hits stored in this event
 >>> Event: 25
-    106 hits stored in this event
+    76 hits stored in this event
 >>> Event: 26
-    96 hits stored in this event
+    101 hits stored in this event
 >>> Event: 27
-    319 hits stored in this event
+    64 hits stored in this event
 >>> Event: 28
-    75 hits stored in this event
+    678 hits stored in this event
 >>> Event: 29
-    91 hits stored in this event
+    121 hits stored in this event
 >>> Event: 30
-    75 hits stored in this event
+    74 hits stored in this event
 >>> Event: 31
-    73 hits stored in this event
+    95 hits stored in this event
 >>> Event: 32
-    87 hits stored in this event
+    101 hits stored in this event
 >>> Event: 33
-    130 hits stored in this event
+    55 hits stored in this event
 >>> Event: 34
-    96 hits stored in this event
+    190 hits stored in this event
 >>> Event: 35
-    81 hits stored in this event
+    89 hits stored in this event
 >>> Event: 36
     105 hits stored in this event
 >>> Event: 37
-    60 hits stored in this event
+    61 hits stored in this event
 >>> Event: 38
-    133 hits stored in this event
+    1482 hits stored in this event
 >>> Event: 39
-    53 hits stored in this event
+    90 hits stored in this event
 >>> Event: 40
-    72 hits stored in this event
+    73 hits stored in this event
 >>> Event: 41
-    179 hits stored in this event
+    57 hits stored in this event
 >>> Event: 42
-    80 hits stored in this event
+    219 hits stored in this event
 >>> Event: 43
-    1048 hits stored in this event
+    84 hits stored in this event
 >>> Event: 44
-    96 hits stored in this event
+    291 hits stored in this event
 >>> Event: 45
-    64 hits stored in this event
+    90 hits stored in this event
 >>> Event: 46
-    967 hits stored in this event
+    2907 hits stored in this event
 >>> Event: 47
-    107 hits stored in this event
+    113 hits stored in this event
 >>> Event: 48
-    60 hits stored in this event
+    229 hits stored in this event
 >>> Event: 49
-    122 hits stored in this event
+    77 hits stored in this event
 >>> Event: 50
-    66 hits stored in this event
+    83 hits stored in this event
 >>> Event: 51
-    1074 hits stored in this event
+    59 hits stored in this event
 >>> Event: 52
-    84 hits stored in this event
+    90 hits stored in this event
 >>> Event: 53
-    70 hits stored in this event
+    151 hits stored in this event
 >>> Event: 54
-    74 hits stored in this event
+    53 hits stored in this event
 >>> Event: 55
-    216 hits stored in this event
+    114 hits stored in this event
 >>> Event: 56
-    91 hits stored in this event
+    68 hits stored in this event
 >>> Event: 57
-    95 hits stored in this event
+    912 hits stored in this event
 >>> Event: 58
-    72 hits stored in this event
+    63 hits stored in this event
 >>> Event: 59
-    56 hits stored in this event
+    79 hits stored in this event
 >>> Event: 60
-    112 hits stored in this event
+    173 hits stored in this event
 >>> Event: 61
-    52 hits stored in this event
+    136 hits stored in this event
 >>> Event: 62
-    112 hits stored in this event
+    405 hits stored in this event
 >>> Event: 63
-    57 hits stored in this event
+    694 hits stored in this event
 >>> Event: 64
-    170 hits stored in this event
+    206 hits stored in this event
 >>> Event: 65
-    80 hits stored in this event
+    44 hits stored in this event
 >>> Event: 66
-    78 hits stored in this event
+    79 hits stored in this event
 >>> Event: 67
-    12638 hits stored in this event
+    57 hits stored in this event
 >>> Event: 68
-    233 hits stored in this event
+    73 hits stored in this event
 >>> Event: 69
-    71 hits stored in this event
+    194 hits stored in this event
 >>> Event: 70
-    57 hits stored in this event
+    112 hits stored in this event
 >>> Event: 71
-    51 hits stored in this event
+    107 hits stored in this event
 >>> Event: 72
-    1417 hits stored in this event
+    176 hits stored in this event
 >>> Event: 73
-    167 hits stored in this event
+    1143 hits stored in this event
 >>> Event: 74
-    135 hits stored in this event
+    112 hits stored in this event
 >>> Event: 75
-    77 hits stored in this event
+    139 hits stored in this event
 >>> Event: 76
-    63 hits stored in this event
+    82 hits stored in this event
 >>> Event: 77
-    91 hits stored in this event
+    63 hits stored in this event
 >>> Event: 78
-    1339 hits stored in this event
+    893 hits stored in this event
 >>> Event: 79
-    90 hits stored in this event
+    61 hits stored in this event
 >>> Event: 80
-    117 hits stored in this event
+    216 hits stored in this event
 >>> Event: 81
-    127 hits stored in this event
+    943 hits stored in this event
 >>> Event: 82
-    55 hits stored in this event
+    127 hits stored in this event
 >>> Event: 83
-    126 hits stored in this event
+    597 hits stored in this event
 >>> Event: 84
-    88 hits stored in this event
+    186 hits stored in this event
 >>> Event: 85
-    114 hits stored in this event
+    149 hits stored in this event
 >>> Event: 86
-    410 hits stored in this event
+    84 hits stored in this event
 >>> Event: 87
-    99 hits stored in this event
+    70 hits stored in this event
 >>> Event: 88
-    55 hits stored in this event
+    98 hits stored in this event
 >>> Event: 89
-    75 hits stored in this event
+    114 hits stored in this event
 >>> Event: 90
-    336 hits stored in this event
+    51 hits stored in this event
 >>> Event: 91
-    68 hits stored in this event
+    86 hits stored in this event
 >>> Event: 92
-    48 hits stored in this event
+    97 hits stored in this event
 >>> Event: 93
-    83 hits stored in this event
+    110 hits stored in this event
 >>> Event: 94
-    53 hits stored in this event
+    120 hits stored in this event
 >>> Event: 95
-    1283 hits stored in this event
+    145 hits stored in this event
 >>> Event: 96
-    142 hits stored in this event
+    91 hits stored in this event
 >>> Event: 97
-    65 hits stored in this event
+    85 hits stored in this event
 >>> Event: 98
-    228 hits stored in this event
+    123 hits stored in this event
 >>> Event: 99
-    57 hits stored in this event
+    55 hits stored in this event
 Graphics systems deleted.
 Visualization Manager deleting...
diff --git a/examples/basic/B2/B2b/exampleB2b.out b/examples/basic/B2/B2b/exampleB2b.out
index fdc1ea677ad..3ca02e2b879 100644
--- a/examples/basic/B2/B2b/exampleB2b.out
+++ b/examples/basic/B2/B2b/exampleB2b.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -804,13187 +804,3919 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
     1  0.00225 -0.00402 -2.92e+03       200  0.00378     21.7      21.7       World eIoni
     2    0.139  0.00567 -2.82e+03       200   0.0165       94       116       World eIoni
     3    0.177    0.076 -2.69e+03       200   0.0269      138       254       World eIoni
-    4    0.178   0.0763 -2.68e+03       200 0.000562     1.73       255       World eIoni
-    5    0.261   0.0976 -2.45e+03       200   0.0463      235       490      Target Transportation
-    6    0.253    0.107 -2.45e+03       107     1.31    0.769       491      Target eBrem
-    7    0.229    0.128 -2.45e+03      48.1    0.957     0.64       491      Target eBrem
-    8  -0.0713  -0.0835 -2.45e+03      18.5     2.82      2.5       494      Target eBrem
-    9    -0.91    -1.96 -2.44e+03      13.3     5.23     4.56       498      Target eIoni
-   10   -0.269    -3.04 -2.44e+03      11.2     1.68     1.55       500      Target eBrem
-   11   -0.287    -3.25 -2.44e+03      6.28    0.224    0.246       500      Target eBrem
-   12   -0.263    -3.38 -2.44e+03       5.2    0.172     0.19       500      Target eBrem
-   13 -0.00845    -3.74 -2.44e+03       3.4     1.62    0.841       501      Target eBrem
-   14  -0.0297    -3.97 -2.44e+03      1.55     1.86     1.89       503      Target eIoni
-   15   0.0609    -3.87 -2.44e+03     0.217     1.33     1.19       504      Target eIoni
-   16   0.0612    -3.88 -2.44e+03         0    0.217   0.0888       504      Target eIoni
-   17   0.0612    -3.88 -2.44e+03         0        0        0       504      Target annihil
+    4    0.178   0.0763 -2.68e+03       200 0.000482     1.73       255       World eIoni
+    5    0.188   0.0822 -2.62e+03       200    0.012     67.1       322       World eIoni
+    6    0.189   0.0828 -2.61e+03       200 0.000863     5.05       328       World eIoni
+    7     0.19    0.084 -2.61e+03       200 0.000363     4.08       332       World eIoni
+    8    0.202   0.0972 -2.59e+03       200  0.00281     20.5       352       World eIoni
+    9    0.268    0.104 -2.5e+03       200   0.0156       83       435       World eIoni
+   10    0.262    0.113 -2.45e+03       200  0.00765     54.9       490      Target Transportation
+   11    0.252    0.108 -2.45e+03       198    0.863    0.769       491      Target eBrem
+   12    0.252    0.108 -2.45e+03       197  0.00046 0.000656       491      Target eBrem
+   13    0.206    0.124 -2.45e+03       196     1.11    0.885       492      Target eBrem
+   14    0.151    0.126 -2.45e+03       195    0.859    0.644       492      Target eBrem
+   15   0.0689    0.138 -2.45e+03       192     1.07    0.798       493      Target eBrem
+   16   0.0305    0.147 -2.45e+03      70.8    0.408    0.432       494      Target eBrem
+   17   0.0171     0.15 -2.45e+03      70.5    0.172    0.111       494      Target eBrem
+   18 -0.00964    0.148 -2.45e+03      69.4    0.173    0.156       494      Target eBrem
+   19  -0.0148    0.148 -2.45e+03      69.3   0.0315    0.035       494      Target eBrem
+   20   -0.168    0.263 -2.44e+03      66.6      1.8     1.26       495      Target eBrem
+   21   -0.284    0.224 -2.44e+03      58.9     1.16     1.01       496      Target eBrem
+   22   -0.358     0.17 -2.44e+03      56.9    0.613    0.464       497      Target eBrem
+   23   -0.503 -0.00641 -2.44e+03      11.6     1.08    0.997       498      Target eBrem
+   24   -0.533  -0.0477 -2.44e+03        11    0.339    0.348       498      Target eBrem
+   25   -0.037   -0.685 -2.44e+03      6.37      4.4     2.81       501      Target eBrem
+   26    0.592    -1.54 -2.44e+03      3.74     2.62     2.52       503      Target eIoni
+   27    0.831     -1.7 -2.44e+03      2.69    0.417    0.424       504      Target eBrem
+   28     1.03    -1.94 -2.44e+03     0.851     1.84     1.69       505      Target eIoni
+   29     0.97    -1.92 -2.44e+03         0    0.851    0.606       506      Target eIoni
+   30     0.97    -1.92 -2.44e+03         0        0        0       506      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 5,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.178   0.0763 -2.68e+03   0.00101        0        0         0       World initStep
-    1    0.163   0.0944 -2.68e+03         0  0.00101   0.0582    0.0582       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 4,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.177    0.076 -2.69e+03   0.00349        0        0         0       World initStep
-    1 -0.00233   0.0485 -2.69e+03         0  0.00349    0.409     0.409       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 3,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.139  0.00567 -2.82e+03   0.00123        0        0         0       World initStep
-    1    0.141   0.0377 -2.82e+03         0  0.00123   0.0771    0.0771       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 2,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00225 -0.00402 -2.92e+03    0.0482        0        0         0       World initStep
-    1     -6.3       -2 -2.92e+03    0.0417  0.00505     7.11      7.11       World eIoni
-    2     -6.5    -1.93 -2.92e+03    0.0413 0.000439    0.214      7.33       World eIoni
-    3    -12.1     2.92 -2.92e+03    0.0349  0.00485     8.08      15.4       World eIoni
-    4      -13     3.32 -2.92e+03    0.0296  0.00166     2.66      18.1       World eIoni
-    5    -14.4     4.99 -2.93e+03    0.0238  0.00574     5.45      23.5       World eIoni
-    6    -14.7     5.07 -2.93e+03    0.0197  0.00409     4.16      27.7       World eIoni
-    7    -14.3     5.54 -2.93e+03    0.0122  0.00354     2.35        30       World eIoni
-    8    -13.8     4.61 -2.93e+03   0.00655  0.00566     2.16      32.2       World eIoni
-    9    -13.3     4.63 -2.93e+03         0  0.00655      1.2      33.4       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 18,   Parent ID = 2
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -14.3     5.54 -2.93e+03     0.004        0        0         0       World initStep
-    1    -14.5     5.61 -2.93e+03         0    0.004    0.517     0.517       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 17,   Parent ID = 2
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -13     3.32 -2.92e+03   0.00366        0        0         0       World initStep
-    1    -12.9     3.35 -2.92e+03         0  0.00366    0.444     0.444       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 16,   Parent ID = 2
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -12.1     2.92 -2.92e+03   0.00152        0        0         0       World initStep
-    1    -12.1     2.96 -2.92e+03         0  0.00152    0.105     0.105       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 15,   Parent ID = 2
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -6.3       -2 -2.92e+03    0.0014        0        0         0       World initStep
-    1    -6.32    -2.04 -2.92e+03         0   0.0014   0.0937    0.0937       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 14,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0612    -3.88 -2.44e+03     0.511        0        0         0      Target initStep
-    1     0.31    -2.94 -2.44e+03      0.22        0    0.974     0.974      Target compt
-    2    0.169    -2.96 -2.44e+03         0    0.088    0.208      1.18      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 20,   Parent ID = 14
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.169    -2.96 -2.44e+03     0.132        0        0         0      Target initStep
-    1     0.17    -2.96 -2.44e+03         0    0.132   0.0426    0.0426      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 19,   Parent ID = 14
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.31    -2.94 -2.44e+03     0.291        0        0         0      Target initStep
-    1    0.314    -2.94 -2.44e+03         0    0.291    0.143     0.143      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 13,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0612    -3.88 -2.44e+03     0.511        0        0         0      Target initStep
-    1   -0.552    -6.19 -2.44e+03      0.51        0      2.4       2.4      Target compt
-    2     -1.1    -8.07 -2.44e+03     0.444        0     1.99      4.39      Target compt
-    3    -12.1    -21.5 -2.43e+03         0    0.088     20.7      25.1      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 23,   Parent ID = 13
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -12.1    -21.5 -2.43e+03     0.356        0        0         0      Target initStep
-    1    -12.1    -21.5 -2.43e+03         0    0.356     0.19      0.19      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 22,   Parent ID = 13
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -1.1    -8.07 -2.44e+03    0.0665        0        0         0      Target initStep
-    1     -1.1    -8.07 -2.44e+03         0   0.0665   0.0142    0.0142      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 21,   Parent ID = 13
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.552    -6.19 -2.44e+03  0.000703        0        0         0      Target initStep
-    1   -0.552    -6.19 -2.44e+03         0 0.000703 2.14e-05  2.14e-05      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 12,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.00845    -3.74 -2.44e+03     0.174        0        0         0      Target initStep
-    1  -0.0616    -3.87 -2.44e+03         0    0.088    0.393     0.393      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 24,   Parent ID = 12
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0616    -3.87 -2.44e+03    0.0856        0        0         0      Target initStep
-    1  -0.0617    -3.87 -2.44e+03         0   0.0856   0.0213    0.0213      Target eIoni
-
-*********************************************************************************************************
-* 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   -0.263    -3.38 -2.44e+03     0.905        0        0         0      Target initStep
-    1     6.95    -13.4 -2.45e+03     0.905        0     14.6      14.6       World Transportation
-    2      462     -645 -2.94e+03     0.905        0      920       934  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 10,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.287    -3.25 -2.44e+03      4.74        0        0         0      Target initStep
-    1     1.92    -12.1 -2.45e+03      4.74        0     12.1      12.1       World Transportation
-    2      139     -563 -2.94e+03      4.74        0      750       762  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 9,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.269    -3.04 -2.44e+03     0.336        0        0         0      Target initStep
-    1    0.102    -5.68 -2.44e+03         0    0.088     3.73      3.73      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 25,   Parent ID = 9
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.102    -5.68 -2.44e+03     0.248        0        0         0      Target initStep
-    1    0.101    -5.68 -2.44e+03         0    0.248    0.112     0.112      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 8,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0713  -0.0835 -2.45e+03      26.8        0        0         0      Target initStep
-    1    -1.92     1.37 -2.43e+03         0        0     14.1      14.1      Target conv
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 26,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.92     1.37 -2.43e+03      11.5        0        0         0      Target initStep
-    1    -1.95     1.38 -2.43e+03      7.18    0.366    0.347     0.347      Target eBrem
-    2    -1.94     1.38 -2.43e+03      6.97   0.0191   0.0183     0.365      Target eBrem
-    3    -1.07     1.61 -2.43e+03      3.08     2.53     2.06      2.43      Target eBrem
-    4   -0.856      1.8 -2.43e+03      1.35     1.73     1.78       4.2      Target eIoni
-    5   -0.885     1.89 -2.43e+03         0     1.35     1.03      5.24      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 30,   Parent ID = 26
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.07     1.61 -2.43e+03      1.37        0        0         0      Target initStep
-    1    0.602     3.37 -2.43e+03      1.05        0     2.63      2.63      Target compt
-    2    0.717     3.83 -2.43e+03      0.89        0    0.508      3.14      Target compt
-    3     4.43     12.6 -2.42e+03     0.242        0     12.9      16.1      Target compt
-    4     4.83     12.1 -2.42e+03         0    0.088     0.67      16.7      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 34,   Parent ID = 30
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.83     12.1 -2.42e+03     0.154        0        0         0      Target initStep
-    1     4.83     12.1 -2.42e+03         0    0.154   0.0541    0.0541      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 33,   Parent ID = 30
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.43     12.6 -2.42e+03     0.649        0        0         0      Target initStep
-    1     4.43     12.6 -2.42e+03         0    0.649    0.428     0.428      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 32,   Parent ID = 30
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.717     3.83 -2.43e+03     0.156        0        0         0      Target initStep
-    1    0.717     3.83 -2.43e+03         0    0.156   0.0554    0.0554      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 31,   Parent ID = 30
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.602     3.37 -2.43e+03     0.322        0        0         0      Target initStep
-    1    0.613     3.37 -2.43e+03         0    0.322    0.165     0.165      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 29,   Parent ID = 26
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.94     1.38 -2.43e+03     0.192        0        0         0      Target initStep
-    1    -1.03     1.61 -2.43e+03         0    0.088     1.02      1.02      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 35,   Parent ID = 29
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.03     1.61 -2.43e+03     0.104        0        0         0      Target initStep
-    1    -1.03     1.61 -2.43e+03         0    0.104   0.0293    0.0293      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 28,   Parent ID = 26
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.95     1.38 -2.43e+03      3.97        0        0         0      Target initStep
-    1     14.8     3.58 -2.43e+03      1.95        0       18        18      Target compt
-    2     23.1     9.66 -2.42e+03      1.95        0     12.7      30.7       World Transportation
-    3     43.2     24.4 -2.4e+03      1.95        0     30.9      61.6     Tracker Transportation
-    4 1.94e+03 1.42e+03     -680      1.95        0 2.91e+03  2.97e+03       World Transportation
-    5 2.94e+03 2.16e+03      231      1.95        0 1.54e+03  4.52e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 36,   Parent ID = 28
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     14.8     3.58 -2.43e+03      2.02        0        0         0      Target initStep
-    1     14.9     3.57 -2.43e+03       1.6    0.161    0.149     0.149      Target eBrem
-    2     14.9     3.62 -2.43e+03     0.242     1.36     1.21      1.36      Target eIoni
-    3     14.9     3.63 -2.43e+03         0    0.242    0.109      1.46      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 37,   Parent ID = 36
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     14.9     3.57 -2.43e+03     0.262        0        0         0      Target initStep
-    1     15.6     4.26 -2.43e+03         0    0.088     1.08      1.08      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 38,   Parent ID = 37
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     15.6     4.26 -2.43e+03     0.174        0        0         0      Target initStep
-    1     15.6     4.27 -2.43e+03         0    0.174   0.0655    0.0655      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 7,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.229    0.128 -2.45e+03      58.3        0        0         0      Target initStep
-    1    -2.23     2.33 -2.41e+03         0        0     34.9      34.9      Target conv
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 39,   Parent ID = 7
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.23     2.33 -2.41e+03      24.1        0        0         0      Target initStep
-    1    -2.73     2.54 -2.41e+03      14.2     1.85     1.61      1.61      Target eBrem
-    2    -2.73     2.77 -2.41e+03      5.92      1.6     1.45      3.06      Target eBrem
-    3    -3.03     3.02 -2.41e+03      3.97      1.8     1.28      4.35      Target eBrem
-    4    -3.03     3.07 -2.41e+03      1.54    0.119   0.0538       4.4      Target eBrem
-    5    -3.02     3.17 -2.41e+03      0.27     1.27     1.17      5.57      Target eIoni
-    6    -3.01     3.17 -2.41e+03         0     0.27    0.127       5.7      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 44,   Parent ID = 39
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.03     3.07 -2.41e+03      2.32        0        0         0      Target initStep
-    1    -3.05     21.8 -2.4e+03      1.66        0       20        20      Target compt
-    2    -2.79     24.8 -2.4e+03      1.66        0      3.1      23.1       World Transportation
-    3      239 2.94e+03 -2.53e+03      1.66        0 2.93e+03  2.95e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 45,   Parent ID = 44
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.05     21.8 -2.4e+03     0.659        0        0         0      Target initStep
-    1    -3.05     21.8 -2.4e+03         0    0.659    0.437     0.437      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 43,   Parent ID = 39
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.03     3.02 -2.41e+03     0.146        0        0         0      Target initStep
-    1     -2.9     3.91 -2.41e+03         0    0.088     0.93      0.93      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 46,   Parent ID = 43
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -2.9     3.91 -2.41e+03    0.0583        0        0         0      Target initStep
-    1     -2.9     3.91 -2.41e+03         0   0.0583   0.0115    0.0115      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 42,   Parent ID = 39
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.73     2.77 -2.41e+03      6.65        0        0         0      Target initStep
-    1    -7.52     7.26 -2.4e+03      6.65        0     12.9      12.9     Tracker Transportation
-    2 -1.35e+03 1.26e+03      700      6.65        0  3.6e+03  3.62e+03     Chamber Transportation
-    3 -1.36e+03 1.27e+03      722      6.65        0     25.9  3.64e+03     Tracker Transportation
-    4 -1.69e+03 1.59e+03  1.5e+03      6.65        0      904  4.55e+03     Chamber Transportation
-    5 -1.75e+03 1.64e+03 1.63e+03      6.65        0      156   4.7e+03       World Transportation
-    6 -2.31e+03 2.17e+03 2.94e+03      6.65        0 1.52e+03  6.22e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 41,   Parent ID = 39
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.73     2.54 -2.41e+03      8.12        0        0         0      Target initStep
-    1    -2.69     2.86 -2.41e+03      3.79        0     1.78      1.78      Target compt
-    2    -2.88     2.83 -2.41e+03     0.571        0    0.647      2.43      Target compt
-    3    -3.23    0.793 -2.41e+03         0    0.088     2.09      4.52      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 49,   Parent ID = 41
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.23    0.793 -2.41e+03     0.483        0        0         0      Target initStep
-    1    -3.25    0.785 -2.41e+03         0    0.483     0.29      0.29      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 48,   Parent ID = 41
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.88     2.83 -2.41e+03      3.22        0        0         0      Target initStep
-    1    -2.92     2.84 -2.41e+03      2.91    0.162    0.189     0.189      Target eBrem
-    2    -2.81     2.96 -2.41e+03      1.27    0.664    0.569     0.758      Target eBrem
-    3    -2.78     3.03 -2.41e+03         0     1.27    0.969      1.73      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 47,   Parent ID = 41
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.69     2.86 -2.41e+03      4.33        0        0         0      Target initStep
-    1     -2.6     2.98 -2.41e+03      2.86    0.611    0.575     0.575      Target eBrem
-    2    -2.79        3 -2.41e+03      2.05    0.488    0.594      1.17      Target eBrem
-    3     -2.8        3 -2.41e+03      1.95  0.00579   0.0069      1.18      Target eBrem
-    4    -2.94     2.98 -2.41e+03      1.03    0.416    0.444      1.62      Target eBrem
-    5    -2.95     2.93 -2.41e+03         0     1.03    0.758      2.38      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 55,   Parent ID = 47
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.94     2.98 -2.41e+03       0.5        0        0         0      Target initStep
-    1    -3.24    -2.16 -2.41e+03     0.232        0      5.8       5.8      Target compt
-    2    -5.73    -2.49 -2.41e+03         0    0.088     3.37      9.17      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 57,   Parent ID = 55
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -5.73    -2.49 -2.41e+03     0.144        0        0         0      Target initStep
-    1    -5.73    -2.49 -2.41e+03         0    0.144   0.0488    0.0488      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 56,   Parent ID = 55
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.24    -2.16 -2.41e+03     0.268        0        0         0      Target initStep
-    1    -3.24    -2.16 -2.41e+03         0    0.268    0.126     0.126      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 54,   Parent ID = 47
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -2.8        3 -2.41e+03     0.102        0        0         0      Target initStep
-    1    -2.85        3 -2.41e+03         0    0.088   0.0464    0.0464      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 58,   Parent ID = 54
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.85        3 -2.41e+03    0.0144        0        0         0      Target initStep
-    1    -2.85        3 -2.41e+03         0   0.0144  0.00122   0.00122      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 53,   Parent ID = 47
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.79        3 -2.41e+03     0.316        0        0         0      Target initStep
-    1    -5.57     2.87 -2.41e+03         0    0.088     2.86      2.86      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 59,   Parent ID = 53
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -5.57     2.87 -2.41e+03     0.228        0        0         0      Target initStep
-    1    -5.57     2.87 -2.41e+03         0    0.228   0.0991    0.0991      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 52,   Parent ID = 47
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -2.6     2.98 -2.41e+03     0.858        0        0         0      Target initStep
-    1    -8.22        3 -2.4e+03     0.844        0     9.27      9.27      Target compt
-    2    -10.3     2.52 -2.4e+03     0.844        0     3.57      12.8     Tracker Transportation
-    3 -2.34e+03     -539      818     0.844        0 4.01e+03  4.02e+03       World Transportation
-    4 -2.94e+03     -679 1.65e+03     0.844        0 1.04e+03  5.06e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 60,   Parent ID = 52
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -8.22        3 -2.4e+03    0.0139        0        0         0      Target initStep
-    1    -8.22        3 -2.4e+03         0   0.0139  0.00115   0.00115      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 51,   Parent ID = 48
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.81     2.96 -2.41e+03     0.976        0        0         0      Target initStep
-    1      7.2     23.9 -2.4e+03     0.976        0     24.7      24.7       World Transportation
-    2     8.61     26.9 -2.4e+03     0.976        0      3.5      28.2     Tracker Transportation
-    3 1.03e+03 2.17e+03 -1.54e+03     0.976        0 2.52e+03  2.55e+03       World Transportation
-    4  1.4e+03 2.94e+03 -1.23e+03     0.976        0      910  3.46e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 50,   Parent ID = 48
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.92     2.84 -2.41e+03     0.143        0        0         0      Target initStep
-    1    -2.85     2.96 -2.41e+03         0    0.088     0.23      0.23      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 61,   Parent ID = 50
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.85     2.96 -2.41e+03    0.0552        0        0         0      Target initStep
-    1    -2.85     2.96 -2.41e+03         0   0.0552   0.0105    0.0105      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 6,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.253    0.107 -2.45e+03      91.2        0        0         0      Target initStep
-    1 -0.00546     1.14 -2.42e+03         0        0     26.7      26.7      Target conv
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 63,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.00546     1.14 -2.42e+03      26.2        0        0         0      Target initStep
-    1  -0.0056     1.15 -2.42e+03      24.8   0.0748   0.0667    0.0667      Target eBrem
-    2  -0.0183      1.2 -2.42e+03        23     1.34     1.14       1.2      Target eBrem
-    3  -0.0392      1.2 -2.42e+03      22.6     0.17    0.173      1.38      Target eBrem
-    4  -0.0572     1.21 -2.42e+03      19.1    0.253    0.224       1.6      Target eBrem
-    5   -0.139     1.23 -2.42e+03      18.2    0.785    0.636      2.24      Target eBrem
-    6    0.291     1.51 -2.42e+03      11.7     3.01     2.18      4.41      Target eBrem
-    7    0.459     1.57 -2.42e+03      11.1    0.296    0.282       4.7      Target eBrem
-    8    0.655      1.6 -2.42e+03      10.6    0.401    0.383      5.08      Target eBrem
-    9     1.28     2.17 -2.42e+03      8.51     1.94     1.61      6.69      Target eBrem
-   10    0.991     2.23 -2.42e+03      7.76    0.574    0.582      7.27      Target eBrem
-   11    0.973     2.24 -2.42e+03      6.99   0.0265   0.0345      7.31      Target eBrem
-   12    0.898     2.31 -2.42e+03      5.96    0.198    0.165      7.47      Target eBrem
-   13    0.645     3.17 -2.42e+03      2.89     3.06     2.44      9.91      Target eIoni
-   14    0.559     3.16 -2.42e+03      2.43    0.203     0.16      10.1      Target eBrem
-   15    0.437     3.14 -2.42e+03     0.439     1.59     1.36      11.4      Target eBrem
-   16    0.452     3.12 -2.42e+03         0    0.439    0.252      11.7      Target eIoni
-   17    0.452     3.12 -2.42e+03         0        0        0      11.7      Target annihil
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 40,   Parent ID = 7
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.23     2.33 -2.41e+03      33.1        0        0         0      Target initStep
-    1    -2.24     2.34 -2.41e+03      31.3    0.139     0.11      0.11      Target eBrem
-    2    -2.25     2.32 -2.41e+03      30.6    0.128     0.12      0.23      Target eBrem
-    3    -2.18     1.68 -2.41e+03      22.9     2.57     1.75      1.98      Target eBrem
-    4    -2.12     1.59 -2.41e+03      18.7    0.173    0.231      2.21      Target eBrem
-    5    -1.57     1.23 -2.41e+03      15.6     2.41      1.5       3.7      Target eBrem
-    6     1.24     1.79 -2.41e+03      5.92     4.59     4.01      7.71      Target eBrem
-    7     1.71     1.78 -2.41e+03      4.21     1.21     1.19       8.9      Target eBrem
-    8     1.76     1.63 -2.41e+03      2.24     1.77     1.72      10.6      Target eBrem
-    9      1.8     1.67 -2.41e+03      1.98   0.0931   0.0974      10.7      Target eBrem
-   10     1.87     1.76 -2.41e+03      1.55    0.144    0.165      10.9      Target eBrem
-   11     1.99     1.84 -2.41e+03     0.968    0.319    0.296      11.2      Target eBrem
-   12        2     1.76 -2.41e+03     0.398    0.446     0.41      11.6      Target eBrem
-   13        2     1.74 -2.41e+03         0    0.398    0.219      11.8      Target eIoni
-   14        2     1.74 -2.41e+03         0        0        0      11.8      Target annihil
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 27,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.92     1.37 -2.43e+03      14.2        0        0         0      Target initStep
-    1    -2.09     1.55 -2.43e+03      12.1     1.84     1.26      1.26      Target eBrem
-    2    -2.03     1.63 -2.43e+03      11.7    0.284    0.269      1.53      Target eBrem
-    3    -1.76     2.04 -2.43e+03      10.2      1.4     1.04      2.58      Target eBrem
-    4     -2.7     2.73 -2.43e+03      5.93     4.25      3.2      5.78      Target eIoni
-    5    -3.03      2.5 -2.43e+03      4.92    0.749    0.659      6.44      Target eBrem
-    6     -3.2     2.52 -2.43e+03      4.22    0.231    0.214      6.65      Target eBrem
-    7    -3.38     2.63 -2.43e+03      3.28    0.633    0.494      7.15      Target eBrem
-    8    -3.44     2.57 -2.43e+03      2.97    0.151    0.138      7.28      Target eBrem
-    9     -3.5     2.55 -2.43e+03       1.5    0.126    0.131      7.42      Target eBrem
-   10    -3.47      2.4 -2.43e+03         0      1.5     1.16      8.57      Target eIoni
-   11    -3.47      2.4 -2.43e+03         0        0        0      8.57      Target annihil
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 62,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.00546     1.14 -2.42e+03        64        0        0         0      Target initStep
-    1  -0.0108     1.15 -2.42e+03      63.6    0.194     0.13      0.13      Target eBrem
-    2  -0.0183     1.21 -2.42e+03      8.09    0.904    0.557     0.687      Target eBrem
-    3  -0.0162     1.23 -2.42e+03      6.58     0.46    0.269     0.956      Target eBrem
-    4 -0.00767     1.31 -2.42e+03      5.83    0.587    0.528      1.48      Target eBrem
-    5  0.00947      1.3 -2.42e+03      5.26   0.0182   0.0209       1.5      Target eBrem
-    6    0.463     1.15 -2.42e+03      3.81     1.25    0.869      2.37      Target eBrem
-    7    0.454    0.964 -2.42e+03     0.232     0.28    0.245      2.62      Target eBrem
-    8    0.448    0.965 -2.42e+03         0    0.232    0.102      2.72      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 110,   Parent ID = 62
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.454    0.964 -2.42e+03       3.3        0        0         0      Target initStep
-    1     1.69    -5.06 -2.42e+03     0.479        0     6.15      6.15      Target compt
-    2   -0.376    -5.68 -2.42e+03         0    0.088     2.17      8.32      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 112,   Parent ID = 110
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.376    -5.68 -2.42e+03     0.391        0        0         0      Target initStep
-    1   -0.387    -5.68 -2.42e+03         0    0.391    0.218     0.218      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 111,   Parent ID = 110
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.69    -5.06 -2.42e+03      2.82        0        0         0      Target initStep
-    1     1.77    -5.27 -2.42e+03      1.59    0.489    0.461     0.461      Target eBrem
-    2     1.84    -5.35 -2.42e+03     0.363    0.985    0.533     0.994      Target eBrem
-    3     1.83    -5.35 -2.42e+03         0    0.363    0.196      1.19      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 114,   Parent ID = 111
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.84    -5.35 -2.42e+03     0.243        0        0         0      Target initStep
-    1     1.46     -5.2 -2.42e+03         0    0.088    0.438     0.438      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 115,   Parent ID = 114
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.46     -5.2 -2.42e+03     0.155        0        0         0      Target initStep
-    1     1.45     -5.2 -2.42e+03         0    0.155   0.0551    0.0551      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 113,   Parent ID = 111
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.77    -5.27 -2.42e+03     0.738        0        0         0      Target initStep
-    1     7.92    -12.3 -2.42e+03         0    0.088     9.47      9.47      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 116,   Parent ID = 113
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     7.92    -12.3 -2.42e+03      0.65        0        0         0      Target initStep
-    1     7.93    -12.3 -2.42e+03         0     0.65     0.43      0.43      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 109,   Parent ID = 62
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.463     1.15 -2.42e+03     0.196        0        0         0      Target initStep
-    1    0.141    0.184 -2.42e+03         0    0.088     1.07      1.07      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 117,   Parent ID = 109
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.141    0.184 -2.42e+03     0.108        0        0         0      Target initStep
-    1    0.139    0.185 -2.42e+03         0    0.108   0.0309    0.0309      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 108,   Parent ID = 62
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00947      1.3 -2.42e+03     0.555        0        0         0      Target initStep
-    1       25    -0.68 -2.41e+03     0.555        0     27.3      27.3       World Transportation
-    2     49.2     -2.6 -2.4e+03     0.555        0     26.4      53.7     Tracker Transportation
-    3 2.39e+03     -189 -1.39e+03     0.555        0 2.56e+03  2.61e+03       World Transportation
-    4 2.94e+03     -232 -1.16e+03     0.555        0      598  3.21e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 107,   Parent ID = 62
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.00767     1.31 -2.42e+03     0.163        0        0         0      Target initStep
-    1    0.143     1.27 -2.42e+03         0    0.088    0.172     0.172      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 118,   Parent ID = 107
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.143     1.27 -2.42e+03     0.075        0        0         0      Target initStep
-    1    0.143     1.27 -2.42e+03         0    0.075   0.0172    0.0172      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 106,   Parent ID = 62
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0162     1.23 -2.42e+03      1.05        0        0         0      Target initStep
-    1    0.251     2.21 -2.42e+03         0    0.088     4.24      4.24      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 119,   Parent ID = 106
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.251     2.21 -2.42e+03     0.958        0        0         0      Target initStep
-    1    0.276     2.22 -2.42e+03         0    0.958    0.694     0.694      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 105,   Parent ID = 62
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0183     1.21 -2.42e+03      54.6        0        0         0      Target initStep
-    1   -0.578     1.94 -2.42e+03         0        0     6.27      6.27      Target conv
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 104,   Parent ID = 62
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0108     1.15 -2.42e+03      0.18        0        0         0      Target initStep
-    1  -0.0109     1.19 -2.42e+03         0    0.088    0.499     0.499      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 103,   Parent ID = 27
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.47      2.4 -2.43e+03     0.511        0        0         0      Target initStep
-    1    -9.04     5.13 -2.43e+03         0    0.088     6.92      6.92      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 102,   Parent ID = 27
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.47      2.4 -2.43e+03     0.511        0        0         0      Target initStep
-    1  -0.0901     0.75 -2.43e+03     0.478        0     4.19      4.19      Target compt
-    2     3.86    -2.37 -2.42e+03         0    0.088     7.13      11.3      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 101,   Parent ID = 27
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -3.5     2.55 -2.43e+03      1.35        0        0         0      Target initStep
-    1    -8.15    -23.6 -2.44e+03      1.35        0     29.6      29.6       World Transportation
-    2     -187 -1.03e+03 -2.94e+03      1.35        0 1.14e+03  1.17e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 100,   Parent ID = 27
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.44     2.57 -2.43e+03     0.154        0        0         0      Target initStep
-    1    -3.77     2.37 -2.43e+03         0    0.088     0.99      0.99      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 99,   Parent ID = 27
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.38     2.63 -2.43e+03     0.313        0        0         0      Target initStep
-    1    -3.69     2.41 -2.43e+03         0    0.088    0.551     0.551      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 98,   Parent ID = 27
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -3.2     2.52 -2.43e+03     0.471        0        0         0      Target initStep
-    1    -5.67      4.4 -2.43e+03     0.428        0     4.43      4.43      Target compt
-    2     -6.8     6.46 -2.42e+03         0    0.088     2.62      7.05      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 97,   Parent ID = 27
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.03      2.5 -2.43e+03     0.258        0        0         0      Target initStep
-    1    -3.55     2.53 -2.43e+03      0.21        0    0.604     0.604      Target compt
-    2    -3.81     1.81 -2.43e+03         0    0.088     1.46      2.07      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 96,   Parent ID = 27
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.76     2.04 -2.43e+03     0.161        0        0         0      Target initStep
-    1    -2.32     2.47 -2.43e+03         0    0.088     1.12      1.12      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 95,   Parent ID = 27
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.03     1.63 -2.43e+03     0.111        0        0         0      Target initStep
-    1    -1.92     1.77 -2.43e+03         0    0.088    0.324     0.324      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 94,   Parent ID = 27
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.09     1.55 -2.43e+03     0.243        0        0         0      Target initStep
-    1    -1.73     2.01 -2.43e+03         0    0.088     1.54      1.54      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 93,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0        2     1.74 -2.41e+03     0.511        0        0         0      Target initStep
-    1     4.76      2.5 -2.41e+03     0.511        0     2.88      2.88      Target compt
-    2     5.52     2.72 -2.41e+03         0    0.088    0.799      3.68      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 92,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0        2     1.74 -2.41e+03     0.511        0        0         0      Target initStep
-    1    -1.45    0.794 -2.41e+03     0.205        0     3.61      3.61      Target compt
-    2    -1.23    0.808 -2.41e+03         0    0.088    0.368      3.98      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 91,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0        2     1.76 -2.41e+03     0.124        0        0         0      Target initStep
-    1     2.25     1.28 -2.41e+03         0    0.088     0.63      0.63      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 90,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.99     1.84 -2.41e+03     0.258        0        0         0      Target initStep
-    1     2.01    0.805 -2.41e+03         0    0.088     1.11      1.11      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 89,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.87     1.76 -2.41e+03     0.289        0        0         0      Target initStep
-    1     2.03     1.88 -2.41e+03         0    0.088    0.197     0.197      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 88,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.8     1.67 -2.41e+03     0.168        0        0         0      Target initStep
-    1     2.54     2.13 -2.41e+03         0    0.088    0.868     0.868      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 87,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.76     1.63 -2.41e+03     0.198        0        0         0      Target initStep
-    1     2.19      1.8 -2.41e+03         0    0.088    0.723     0.723      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 86,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.71     1.78 -2.41e+03     0.502        0        0         0      Target initStep
-    1     2.16    -1.14 -2.4e+03         0    0.088     5.15      5.15      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 85,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.24     1.79 -2.41e+03      5.05        0        0         0      Target initStep
-    1     7.16     1.69 -2.4e+03      5.05        0     10.3      10.3     Tracker Transportation
-    2  2.4e+03    -40.4      992      5.05        0 4.15e+03  4.16e+03       World Transportation
-    3 2.94e+03      -50 1.76e+03      5.05        0      938   5.1e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 84,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.57     1.23 -2.41e+03     0.751        0        0         0      Target initStep
-    1     1.39     6.84 -2.4e+03     0.726        0     9.37      9.37      Target compt
-    2     2.87      8.6 -2.4e+03     0.726        0     4.31      13.7     Tracker Transportation
-    3 1.54e+03 1.84e+03  1.4e+03     0.726        0 4.49e+03   4.5e+03       World Transportation
-    4 2.16e+03 2.59e+03 2.94e+03     0.726        0 1.82e+03  6.33e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 83,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.12     1.59 -2.41e+03      4.03        0        0         0      Target initStep
-    1    -2.02     1.51 -2.41e+03         0        0    0.398     0.398      Target conv
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 82,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.18     1.68 -2.41e+03      5.09        0        0         0      Target initStep
-    1    0.871    -2.47 -2.4e+03         0    0.088     8.76      8.76      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 81,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.25     2.32 -2.41e+03     0.556        0        0         0      Target initStep
-    1    -2.21     2.19 -2.41e+03         0    0.088    0.302     0.302      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 80,   Parent ID = 40
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.24     2.34 -2.41e+03      1.74        0        0         0      Target initStep
-    1    -3.21   -0.454 -2.4e+03      1.74        0       14        14     Tracker Transportation
-    2    -52.8     -143 -1.7e+03      1.74        0      716       730     Chamber Transportation
-    3    -66.9     -184 -1.5e+03      1.74        0      205       935     Tracker Transportation
-    4     -109     -306     -900      1.74        0      614  1.55e+03     Chamber Transportation
-    5     -124     -347     -700      1.74        0      205  1.75e+03     Tracker Transportation
-    6     -166     -469     -100      1.74        0      614  2.37e+03     Chamber Transportation
-    7     -180     -510      100      1.74        0      205  2.57e+03     Tracker Transportation
-    8     -223     -632      700      1.74        0      614  3.19e+03     Chamber Transportation
-    9     -237     -673      900      1.74        0      205  3.39e+03     Tracker Transportation
-   10     -279     -795  1.5e+03      1.74        0      614     4e+03     Chamber Transportation
-   11     -293     -835  1.7e+03      1.74        0      205  4.21e+03     Tracker Transportation
-   12     -343     -978  2.4e+03      1.74        0      716  4.92e+03       World Transportation
-   13     -381 -1.09e+03 2.94e+03      1.74        0      552  5.48e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 79,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.452     3.12 -2.42e+03     0.511        0        0         0      Target initStep
-    1       12   -0.784 -2.41e+03         0    0.088     12.4      12.4      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 78,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.452     3.12 -2.42e+03     0.511        0        0         0      Target initStep
-    1    -3.82     4.57 -2.42e+03         0    0.088      4.6       4.6      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 77,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.437     3.14 -2.42e+03     0.397        0        0         0      Target initStep
-    1     3.26     2.79 -2.42e+03         0    0.088     2.98      2.98      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 76,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.559     3.16 -2.42e+03     0.265        0        0         0      Target initStep
-    1   -0.164     1.93 -2.42e+03         0    0.088     7.02      7.02      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 75,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.898     2.31 -2.42e+03     0.839        0        0         0      Target initStep
-    1    0.328     5.65 -2.41e+03     0.311        0     3.82      3.82      Target compt
-    2   -0.546     5.66 -2.42e+03         0    0.088    0.951      4.77      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 74,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.973     2.24 -2.42e+03     0.738        0        0         0      Target initStep
-    1    0.394     2.72 -2.42e+03         0    0.088      1.1       1.1      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 73,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.991     2.23 -2.42e+03     0.174        0        0         0      Target initStep
-    1    0.756     2.43 -2.42e+03         0    0.088    0.486     0.486      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 72,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.28     2.17 -2.42e+03     0.163        0        0         0      Target initStep
-    1     1.25     2.18 -2.42e+03         0    0.088   0.0588    0.0588      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 71,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.655      1.6 -2.42e+03     0.112        0        0         0      Target initStep
-    1    0.664      1.6 -2.42e+03         0    0.088   0.0166    0.0166      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 70,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.459     1.57 -2.42e+03     0.329        0        0         0      Target initStep
-    1     2.77     1.47 -2.42e+03     0.184        0     3.49      3.49      Target compt
-    2     3.72     2.28 -2.42e+03         0    0.088     1.84      5.33      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 69,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.291     1.51 -2.42e+03      3.43        0        0         0      Target initStep
-    1    0.479      1.5 -2.42e+03     0.319        0    0.298     0.298      Target compt
-    2   -0.782    0.172 -2.42e+03         0    0.088     1.84      2.13      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 68,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.139     1.23 -2.42e+03     0.153        0        0         0      Target initStep
-    1 0.000487     1.35 -2.42e+03         0    0.088    0.596     0.596      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 67,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0572     1.21 -2.42e+03      3.23        0        0         0      Target initStep
-    1   -0.505     1.34 -2.42e+03         0    0.088     3.52      3.52      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 66,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0392      1.2 -2.42e+03     0.168        0        0         0      Target initStep
-    1  -0.0596      1.2 -2.42e+03         0    0.088    0.357     0.357      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 65,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0183      1.2 -2.42e+03     0.551        0        0         0      Target initStep
-    1   -0.878     1.16 -2.41e+03         0    0.088     7.46      7.46      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 64,   Parent ID = 63
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0056     1.15 -2.42e+03      1.26        0        0         0      Target initStep
-    1   -0.121     2.48 -2.4e+03      1.26        0     22.5      22.5     Tracker Transportation
-    2    -3.71     44.1 -1.7e+03      1.26        0      701       724     Chamber Transportation
-    3    -4.74     55.9 -1.5e+03      1.26        0      200       924     Tracker Transportation
-    4    -7.82     91.6     -900      1.26        0      601  1.53e+03     Chamber Transportation
-    5    -8.84      103     -700      1.26        0      200  1.73e+03     Tracker Transportation
-    6    -11.9      139     -100      1.26        0      601  2.33e+03     Chamber Transportation
-    7    -12.9      151      100      1.26        0      200  2.53e+03     Tracker Transportation
-    8      -16      187      700      1.26        0      601  3.13e+03     Chamber Transportation
-    9    -17.1      198      900      1.26        0      200  3.33e+03     Tracker Transportation
-   10    -20.1      234  1.5e+03      1.26        0      601  3.93e+03     Chamber Transportation
-   11    -21.2      246  1.7e+03      1.26        0      200  4.13e+03     Tracker Transportation
-   12    -24.8      288  2.4e+03      1.26        0      701  4.83e+03       World Transportation
-   13    -27.5      320 2.94e+03      1.26        0      541  5.37e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 147,   Parent ID = 83
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.02     1.51 -2.41e+03      0.13        0        0         0      Target initStep
-    1    -2.02     1.51 -2.41e+03         0     0.13   0.0392    0.0392      Target eIoni
-    2    -2.02     1.51 -2.41e+03         0        0        0    0.0392      Target annihil
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 121,   Parent ID = 105
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.578     1.94 -2.42e+03       4.8        0        0         0      Target initStep
-    1   -0.651     1.94 -2.41e+03      2.43     1.77     1.42      1.42      Target eBrem
-    2   -0.917     1.85 -2.41e+03     0.717     1.71     1.61      3.03      Target eIoni
-    3     -0.9     1.84 -2.41e+03         0    0.717    0.488      3.51      Target eIoni
-    4     -0.9     1.84 -2.41e+03         0        0        0      3.51      Target annihil
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 167,   Parent ID = 65
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.878     1.16 -2.41e+03     0.463        0        0         0      Target initStep
-    1   -0.888     1.16 -2.41e+03         0    0.463    0.275     0.275      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 166,   Parent ID = 66
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0596      1.2 -2.42e+03    0.0796        0        0         0      Target initStep
-    1    -0.06      1.2 -2.42e+03         0   0.0796    0.019     0.019      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 165,   Parent ID = 67
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.505     1.34 -2.42e+03      3.14        0        0         0      Target initStep
-    1   -0.623     1.37 -2.42e+03      1.19     1.95     1.79      1.79      Target eIoni
-    2   -0.693     1.37 -2.42e+03     0.352    0.364    0.283      2.08      Target eBrem
-    3   -0.695     1.39 -2.42e+03         0    0.352    0.187      2.27      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 164,   Parent ID = 68
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 0.000487     1.35 -2.42e+03    0.0653        0        0         0      Target initStep
-    1 0.000796     1.35 -2.42e+03         0   0.0653   0.0138    0.0138      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 163,   Parent ID = 69
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.782    0.172 -2.42e+03     0.231        0        0         0      Target initStep
-    1   -0.787    0.169 -2.42e+03         0    0.231    0.101     0.101      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 162,   Parent ID = 69
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.479      1.5 -2.42e+03      3.11        0        0         0      Target initStep
-    1    0.499      1.5 -2.42e+03      2.15   0.0862   0.0326    0.0326      Target eBrem
-    2    0.661     1.52 -2.42e+03     0.635     1.52     1.48      1.51      Target eIoni
-    3     0.66     1.49 -2.42e+03         0    0.635    0.417      1.93      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 161,   Parent ID = 70
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.72     2.28 -2.42e+03    0.0963        0        0         0      Target initStep
-    1     3.72     2.28 -2.42e+03         0   0.0963   0.0258    0.0258      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 160,   Parent ID = 70
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.77     1.47 -2.42e+03     0.145        0        0         0      Target initStep
-    1     2.77     1.47 -2.42e+03         0    0.145   0.0495    0.0495      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 159,   Parent ID = 71
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.664      1.6 -2.42e+03    0.0239        0        0         0      Target initStep
-    1    0.664      1.6 -2.42e+03         0   0.0239  0.00269   0.00269      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 158,   Parent ID = 72
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.25     2.18 -2.42e+03     0.075        0        0         0      Target initStep
-    1     1.25     2.18 -2.42e+03         0    0.075   0.0172    0.0172      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 157,   Parent ID = 73
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.756     2.43 -2.42e+03    0.0861        0        0         0      Target initStep
-    1    0.756     2.43 -2.42e+03         0   0.0861   0.0216    0.0216      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 156,   Parent ID = 74
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.394     2.72 -2.42e+03      0.65        0        0         0      Target initStep
-    1    0.388     2.73 -2.42e+03         0     0.65     0.43      0.43      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 155,   Parent ID = 75
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.546     5.66 -2.42e+03     0.223        0        0         0      Target initStep
-    1    -0.55     5.66 -2.42e+03         0    0.223    0.096     0.096      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 154,   Parent ID = 75
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.328     5.65 -2.41e+03     0.528        0        0         0      Target initStep
-    1    0.332     5.67 -2.41e+03         0    0.528    0.327     0.327      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 153,   Parent ID = 76
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.164     1.93 -2.42e+03     0.177        0        0         0      Target initStep
-    1   -0.164     1.93 -2.42e+03         0    0.177   0.0675    0.0675      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 152,   Parent ID = 77
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.26     2.79 -2.42e+03     0.309        0        0         0      Target initStep
-    1     3.27     2.79 -2.42e+03         0    0.309    0.155     0.155      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 151,   Parent ID = 78
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.82     4.57 -2.42e+03     0.423        0        0         0      Target initStep
-    1    -3.83     4.57 -2.42e+03         0    0.423    0.243     0.243      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 150,   Parent ID = 79
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       12   -0.784 -2.41e+03     0.423        0        0         0      Target initStep
-    1       12   -0.785 -2.41e+03         0    0.423    0.243     0.243      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 149,   Parent ID = 81
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.21     2.19 -2.41e+03     0.468        0        0         0      Target initStep
-    1    -2.22     2.19 -2.41e+03         0    0.468    0.279     0.279      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 148,   Parent ID = 82
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.871    -2.47 -2.4e+03         5        0        0         0      Target initStep
-    1     0.96    -2.54 -2.4e+03      4.05    0.264    0.226     0.226      Target eBrem
-    2     1.16    -2.71 -2.4e+03      1.89     2.16     2.02      2.25      Target eIoni
-    3      1.1    -2.78 -2.4e+03     0.424    0.362    0.422      2.67      Target eBrem
-    4     1.11     -2.8 -2.4e+03         0    0.424    0.244      2.91      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 146,   Parent ID = 83
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.02     1.51 -2.41e+03      2.87        0        0         0      Target initStep
-    1    -1.99     1.49 -2.41e+03      2.54     0.17     0.11      0.11      Target eBrem
-    2    -1.97     1.33 -2.41e+03     0.124     2.41     1.62      1.73      Target eIoni
-    3    -1.97     1.33 -2.41e+03         0    0.124   0.0385      1.76      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 145,   Parent ID = 84
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.39     6.84 -2.4e+03    0.0258        0        0         0      Target initStep
-    1     1.39     6.84 -2.4e+03         0   0.0258  0.00306   0.00306      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 144,   Parent ID = 86
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.16    -1.14 -2.4e+03     0.414        0        0         0      Target initStep
-    1     2.16    -1.14 -2.4e+03     0.243   0.0157   0.0185    0.0185      Target eBrem
-    2     2.16    -1.15 -2.4e+03         0    0.243    0.109     0.127      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 143,   Parent ID = 87
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.19      1.8 -2.41e+03      0.11        0        0         0      Target initStep
-    1     2.19      1.8 -2.41e+03         0     0.11   0.0318    0.0318      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 142,   Parent ID = 88
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.54     2.13 -2.41e+03    0.0797        0        0         0      Target initStep
-    1     2.54     2.13 -2.41e+03         0   0.0797    0.019     0.019      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 141,   Parent ID = 89
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.03     1.88 -2.41e+03     0.201        0        0         0      Target initStep
-    1     2.03     1.88 -2.41e+03         0    0.201   0.0819    0.0819      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 140,   Parent ID = 90
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.01    0.805 -2.41e+03      0.17        0        0         0      Target initStep
-    1     2.02    0.803 -2.41e+03         0     0.17   0.0637    0.0637      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 139,   Parent ID = 91
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.25     1.28 -2.41e+03    0.0365        0        0         0      Target initStep
-    1     2.25     1.28 -2.41e+03         0   0.0365  0.00534   0.00534      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 138,   Parent ID = 92
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.23    0.808 -2.41e+03     0.117        0        0         0      Target initStep
-    1    -1.23    0.807 -2.41e+03         0    0.117   0.0351    0.0351      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 137,   Parent ID = 92
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.45    0.794 -2.41e+03     0.306        0        0         0      Target initStep
-    1    -1.46    0.792 -2.41e+03         0    0.306    0.154     0.154      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 136,   Parent ID = 93
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.52     2.72 -2.41e+03     0.423        0        0         0      Target initStep
-    1     5.53     2.73 -2.41e+03         0    0.423    0.242     0.242      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 135,   Parent ID = 93
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.76      2.5 -2.41e+03   0.00012        0        0         0      Target initStep
-    1     4.76      2.5 -2.41e+03         0  0.00012 5.91e-06  5.91e-06      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 134,   Parent ID = 94
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.73     2.01 -2.43e+03     0.155        0        0         0      Target initStep
-    1    -1.72     2.01 -2.43e+03         0    0.155   0.0548    0.0548      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 133,   Parent ID = 95
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.92     1.77 -2.43e+03     0.023        0        0         0      Target initStep
-    1    -1.92     1.77 -2.43e+03         0    0.023  0.00254   0.00254      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 132,   Parent ID = 96
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.32     2.47 -2.43e+03    0.0727        0        0         0      Target initStep
-    1    -2.32     2.48 -2.43e+03         0   0.0727   0.0164    0.0164      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 131,   Parent ID = 97
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.81     1.81 -2.43e+03     0.122        0        0         0      Target initStep
-    1    -3.81      1.8 -2.43e+03         0    0.122   0.0376    0.0376      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 130,   Parent ID = 97
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.55     2.53 -2.43e+03     0.048        0        0         0      Target initStep
-    1    -3.55     2.53 -2.43e+03         0    0.048  0.00834   0.00834      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 129,   Parent ID = 98
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -6.8     6.46 -2.42e+03      0.34        0        0         0      Target initStep
-    1    -6.81     6.47 -2.42e+03         0     0.34    0.178     0.178      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 128,   Parent ID = 98
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -5.67      4.4 -2.43e+03    0.0434        0        0         0      Target initStep
-    1    -5.67     4.39 -2.43e+03         0   0.0434  0.00709   0.00709      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 127,   Parent ID = 99
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.69     2.41 -2.43e+03     0.225        0        0         0      Target initStep
-    1    -3.69      2.4 -2.43e+03         0    0.225   0.0973    0.0973      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 126,   Parent ID = 100
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.77     2.37 -2.43e+03    0.0662        0        0         0      Target initStep
-    1    -3.77     2.37 -2.43e+03         0   0.0662   0.0141    0.0141      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 125,   Parent ID = 102
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.86    -2.37 -2.42e+03      0.39        0        0         0      Target initStep
-    1     3.87    -2.38 -2.42e+03         0     0.39    0.217     0.217      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 124,   Parent ID = 102
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0901     0.75 -2.43e+03    0.0326        0        0         0      Target initStep
-    1  -0.0898     0.75 -2.43e+03         0   0.0326  0.00445   0.00445      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 123,   Parent ID = 103
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -9.04     5.13 -2.43e+03     0.423        0        0         0      Target initStep
-    1    -9.05     5.14 -2.43e+03         0    0.423    0.243     0.243      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 122,   Parent ID = 104
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0109     1.19 -2.42e+03    0.0922        0        0         0      Target initStep
-    1  -0.0107     1.19 -2.42e+03         0   0.0922    0.024     0.024      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 120,   Parent ID = 105
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.578     1.94 -2.42e+03      48.8        0        0         0      Target initStep
-    1   -0.591     1.97 -2.42e+03      48.1    0.292    0.212     0.212      Target eBrem
-    2   -0.544     2.13 -2.41e+03        35     1.19    0.883      1.09      Target eIoni
-    3   -0.534     2.17 -2.41e+03      34.6    0.316    0.269      1.36      Target eBrem
-    4    -1.02     3.23 -2.41e+03      30.5     3.99     2.94       4.3      Target eBrem
-    5       -1     3.24 -2.41e+03        30   0.0874   0.0951       4.4      Target eBrem
-    6   -0.884     3.21 -2.41e+03      24.2    0.717    0.582      4.98      Target eBrem
-    7   -0.881     3.21 -2.41e+03      23.9   0.0173   0.0158         5      Target eBrem
-    8   -0.864      3.2 -2.41e+03      22.7    0.172    0.127      5.12      Target eBrem
-    9   -0.839      3.2 -2.41e+03      21.8    0.345    0.324      5.45      Target eBrem
-   10   -0.817     3.23 -2.41e+03      18.1   0.0513   0.0716      5.52      Target eBrem
-   11   -0.307     3.91 -2.41e+03      15.8     1.21     1.12      6.64      Target eBrem
-   12    0.434     4.09 -2.41e+03      14.3     1.43     1.05       7.7      Target eBrem
-   13    0.591     4.01 -2.41e+03      13.6    0.372    0.291      7.99      Target eBrem
-   14    0.698     4.02 -2.41e+03      11.8    0.317    0.153      8.14      Target eBrem
-   15    0.713     4.01 -2.41e+03      11.4   0.0588   0.0266      8.17      Target eBrem
-   16     1.07     4.09 -2.41e+03      10.5    0.833     0.85      9.01      Target eBrem
-   17     1.25     4.28 -2.41e+03      3.97     0.62     0.55      9.56      Target eBrem
-   18     1.05     4.47 -2.41e+03      1.59    0.463    0.405      9.97      Target eBrem
-   19    0.967      4.4 -2.41e+03      1.07    0.363    0.363      10.3      Target eBrem
-   20    0.926     4.39 -2.41e+03         0     1.07    0.789      11.1      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 180,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.544     2.13 -2.41e+03      11.9        0        0         0      Target initStep
-    1   -0.558     2.12 -2.41e+03      7.14    0.249    0.152     0.152      Target eBrem
-    2   -0.792     1.88 -2.41e+03      4.52     2.17     1.79      1.94      Target eBrem
-    3   -0.555     1.83 -2.41e+03      3.28    0.998     1.06         3      Target eBrem
-    4   -0.286     1.71 -2.41e+03      1.17     2.11     1.49      4.48      Target eBrem
-    5   -0.233     1.75 -2.41e+03      0.62    0.225    0.219       4.7      Target eBrem
-    6   -0.228     1.78 -2.41e+03         0     0.62    0.404       5.1      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 200,   Parent ID = 180
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.233     1.75 -2.41e+03     0.325        0        0         0      Target initStep
-    1   -0.307     3.34 -2.41e+03     0.316        0     1.59      1.59      Target compt
-    2   -0.244     4.92 -2.41e+03         0    0.088     1.66      3.25      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 202,   Parent ID = 200
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.244     4.92 -2.41e+03     0.228        0        0         0      Target initStep
-    1   -0.241     4.92 -2.41e+03         0    0.228    0.099     0.099      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 201,   Parent ID = 200
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.307     3.34 -2.41e+03   0.00992        0        0         0      Target initStep
-    1   -0.307     3.34 -2.41e+03         0  0.00992 0.000694  0.000694      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 199,   Parent ID = 180
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.555     1.83 -2.41e+03     0.244        0        0         0      Target initStep
-    1    0.175     1.47 -2.41e+03         0    0.088    0.904     0.904      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 203,   Parent ID = 199
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.175     1.47 -2.41e+03     0.156        0        0         0      Target initStep
-    1    0.178     1.47 -2.41e+03         0    0.156   0.0555    0.0555      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 198,   Parent ID = 180
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.792     1.88 -2.41e+03     0.451        0        0         0      Target initStep
-    1   -0.492      1.7 -2.41e+03         0    0.088    0.853     0.853      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 204,   Parent ID = 198
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.492      1.7 -2.41e+03     0.363        0        0         0      Target initStep
-    1   -0.479      1.7 -2.41e+03         0    0.363    0.196     0.196      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 197,   Parent ID = 180
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.558     2.12 -2.41e+03      4.54        0        0         0      Target initStep
-    1    -3.57    -1.75 -2.4e+03      4.23        0       13        13      Target compt
-    2    -4.08    -2.19 -2.4e+03      4.23        0      2.5      15.5     Tracker Transportation
-    3     -153     -132 -1.7e+03      4.23        0      727       743     Chamber Transportation
-    4     -182     -157 -1.57e+03      4.23        0      139       882     Tracker Transportation
-    5     -324     -280     -900      4.23        0      692  1.57e+03     Chamber Transportation
-    6     -367     -317     -700      4.23        0      208  1.78e+03     Tracker Transportation
-    7     -495     -428     -100      4.23        0      623  2.41e+03     Chamber Transportation
-    8     -537     -465      100      4.23        0      208  2.61e+03     Tracker Transportation
-    9     -665     -576      700      4.23        0      623  3.24e+03     Chamber Transportation
-   10     -708     -613      900      4.23        0      208  3.44e+03     Tracker Transportation
-   11     -836     -724  1.5e+03      4.23        0      623  4.07e+03     Chamber Transportation
-   12     -878     -761  1.7e+03      4.23        0      208  4.28e+03     Tracker Transportation
-   13 -1.03e+03     -891  2.4e+03      4.23        0      727     5e+03       World Transportation
-   14 -1.14e+03     -991 2.94e+03      4.23        0      561  5.56e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 205,   Parent ID = 197
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.57    -1.75 -2.4e+03     0.311        0        0         0      Target initStep
-    1    -3.57    -1.76 -2.4e+03         0    0.311    0.157     0.157      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 196,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.967      4.4 -2.41e+03     0.163        0        0         0      Target initStep
-    1    0.743     4.32 -2.41e+03         0    0.088    0.272     0.272      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 206,   Parent ID = 196
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.743     4.32 -2.41e+03    0.0749        0        0         0      Target initStep
-    1    0.742     4.32 -2.41e+03         0   0.0749   0.0172    0.0172      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 195,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.05     4.47 -2.41e+03      1.91        0        0         0      Target initStep
-    1    -2.15     1.76 -2.41e+03      1.06        0     4.21      4.21      Target compt
-    2    -16.3    0.512 -2.41e+03     0.266        0     14.4      18.6      Target compt
-    3    -15.5      1.7 -2.41e+03         0    0.088     1.62      20.2      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 209,   Parent ID = 195
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -15.5      1.7 -2.41e+03     0.178        0        0         0      Target initStep
-    1    -15.5      1.7 -2.41e+03         0    0.178   0.0679    0.0679      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 208,   Parent ID = 195
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -16.3    0.512 -2.41e+03     0.798        0        0         0      Target initStep
-    1    -16.3    0.502 -2.41e+03     0.191    0.469    0.394     0.394      Target eBrem
-    2    -16.3    0.507 -2.41e+03         0    0.191   0.0761      0.47      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 207,   Parent ID = 195
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.15     1.76 -2.41e+03     0.846        0        0         0      Target initStep
-    1    -2.16     1.72 -2.41e+03         0    0.846    0.598     0.598      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 210,   Parent ID = 208
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -16.3    0.502 -2.41e+03     0.138        0        0         0      Target initStep
-    1    -16.2     0.58 -2.41e+03         0    0.088    0.161     0.161      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 211,   Parent ID = 210
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -16.2     0.58 -2.41e+03    0.0496        0        0         0      Target initStep
-    1    -16.2     0.58 -2.41e+03         0   0.0496  0.00881   0.00881      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 194,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.25     4.28 -2.41e+03      5.89        0        0         0      Target initStep
-    1    -14.8     20.2 -2.41e+03      5.89        0       23        23       World Transportation
-    2 -1.99e+03 1.98e+03 -2.94e+03      5.89        0 2.84e+03  2.86e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 193,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.07     4.09 -2.41e+03     0.115        0        0         0      Target initStep
-    1     1.17     4.12 -2.41e+03         0    0.088    0.281     0.281      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 212,   Parent ID = 193
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.17     4.12 -2.41e+03    0.0268        0        0         0      Target initStep
-    1     1.17     4.11 -2.41e+03         0   0.0268  0.00324   0.00324      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 192,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.713     4.01 -2.41e+03     0.332        0        0         0      Target initStep
-    1      3.2     3.57 -2.41e+03         0    0.088      4.2       4.2      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 213,   Parent ID = 192
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      3.2     3.57 -2.41e+03     0.244        0        0         0      Target initStep
-    1      3.2     3.57 -2.41e+03         0    0.244     0.11      0.11      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 191,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.698     4.02 -2.41e+03      1.52        0        0         0      Target initStep
-    1     6.86     3.69 -2.4e+03      1.52        0     10.7      10.7     Tracker Transportation
-    2  2.4e+03     -122      989      1.52        0 4.15e+03  4.16e+03       World Transportation
-    3 2.94e+03     -151 1.76e+03      1.52        0      943   5.1e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 190,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.591     4.01 -2.41e+03     0.306        0        0         0      Target initStep
-    1     1.72     3.78 -2.41e+03         0    0.088      1.6       1.6      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 214,   Parent ID = 190
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.72     3.78 -2.41e+03     0.218        0        0         0      Target initStep
-    1     1.72     3.78 -2.41e+03         0    0.218    0.093     0.093      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 189,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.307     3.91 -2.41e+03      1.09        0        0         0      Target initStep
-    1   -0.304     3.91 -2.41e+03         0    0.088  0.00495   0.00495      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 215,   Parent ID = 189
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.304     3.91 -2.41e+03      1.01        0        0         0      Target initStep
-    1   -0.272     3.95 -2.41e+03     0.491    0.514    0.425     0.425      Target eBrem
-    2   -0.269     3.94 -2.41e+03         0    0.491    0.298     0.723      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 188,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.817     3.23 -2.41e+03      3.67        0        0         0      Target initStep
-    1      2.7     7.22 -2.4e+03     0.947        0     10.5      10.5      Target compt
-    2     9.77     17.2 -2.4e+03     0.947        0     12.3      22.8     Tracker Transportation
-    3 1.38e+03 1.96e+03 -2.13e+03     0.947        0  2.4e+03  2.42e+03       World Transportation
-    4 2.07e+03 2.94e+03 -1.99e+03     0.947        0  1.2e+03  3.62e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 216,   Parent ID = 188
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      2.7     7.22 -2.4e+03      2.72        0        0         0      Target initStep
-    1     2.77     7.24 -2.4e+03       2.3    0.421    0.241     0.241      Target msc
-    2     2.94     7.21 -2.4e+03      2.01    0.125    0.175     0.416      Target eBrem
-    3     3.24     7.25 -2.4e+03      1.64    0.372    0.379     0.795      Target msc
-    4     3.17     7.23 -2.4e+03   0.00451     1.63     1.23      2.03      Target eIoni
-    5     3.17     7.23 -2.4e+03         0  0.00451 0.000227      2.03      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 217,   Parent ID = 216
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.94     7.21 -2.4e+03     0.166        0        0         0      Target initStep
-    1     3.32     7.78 -2.4e+03         0    0.088    0.715     0.715      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 218,   Parent ID = 217
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.32     7.78 -2.4e+03    0.0776        0        0         0      Target initStep
-    1     3.33     7.78 -2.4e+03         0   0.0776   0.0182    0.0182      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 187,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.839      3.2 -2.41e+03     0.607        0        0         0      Target initStep
-    1      2.1      6.2 -2.4e+03         0    0.088      8.8       8.8      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 219,   Parent ID = 187
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      2.1      6.2 -2.4e+03     0.519        0        0         0      Target initStep
-    1     2.11      6.2 -2.4e+03         0    0.519     0.32      0.32      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 186,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.864      3.2 -2.41e+03      1.03        0        0         0      Target initStep
-    1     6.29     2.09 -2.4e+03      1.03        0       13        13     Tracker Transportation
-    2 2.37e+03     -367 1.18e+03      1.03        0 4.31e+03  4.32e+03       World Transportation
-    3 2.94e+03     -455 2.04e+03      1.03        0 1.03e+03  5.35e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 185,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.881     3.21 -2.41e+03     0.286        0        0         0      Target initStep
-    1   -0.778     3.18 -2.41e+03         0    0.088    0.704     0.704      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 220,   Parent ID = 185
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.778     3.18 -2.41e+03     0.198        0        0         0      Target initStep
-    1   -0.776     3.17 -2.41e+03         0    0.198   0.0804    0.0804      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 184,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.884     3.21 -2.41e+03      5.06        0        0         0      Target initStep
-    1    0.631     3.06 -2.4e+03      5.06        0     11.1      11.1     Tracker Transportation
-    2     97.4    -6.92 -1.7e+03      5.06        0      707       718     Chamber Transportation
-    3      125    -9.77 -1.5e+03      5.06        0      202       920     Tracker Transportation
-    4      208    -18.3     -900      5.06        0      606  1.53e+03     Chamber Transportation
-    5      236    -21.2     -700      5.06        0      202  1.73e+03     Tracker Transportation
-    6      318    -29.7     -100      5.06        0      606  2.33e+03     Chamber Transportation
-    7      346    -32.6      100      5.06        0      202  2.54e+03     Tracker Transportation
-    8      429    -41.1      700      5.06        0      606  3.14e+03     Chamber Transportation
-    9      457      -44      900      5.06        0      202  3.34e+03     Tracker Transportation
-   10      540    -52.5  1.5e+03      5.06        0      606  3.95e+03     Chamber Transportation
-   11      567    -55.4  1.7e+03      5.06        0      202  4.15e+03     Tracker Transportation
-   12      664    -65.3  2.4e+03      5.06        0      707  4.86e+03       World Transportation
-   13      738      -73 2.94e+03      5.06        0      545   5.4e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 183,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       -1     3.24 -2.41e+03     0.354        0        0         0      Target initStep
-    1   -0.374     3.41 -2.41e+03         0    0.088      2.8       2.8      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 221,   Parent ID = 183
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.374     3.41 -2.41e+03     0.266        0        0         0      Target initStep
-    1   -0.376     3.41 -2.41e+03         0    0.266    0.125     0.125      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 182,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.02     3.23 -2.41e+03     0.118        0        0         0      Target initStep
-    1   -0.974     3.25 -2.41e+03         0    0.088    0.166     0.166      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 222,   Parent ID = 182
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.974     3.25 -2.41e+03    0.0299        0        0         0      Target initStep
-    1   -0.975     3.25 -2.41e+03         0   0.0299  0.00388   0.00388      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 181,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.534     2.17 -2.41e+03    0.0949        0        0         0      Target initStep
-    1   -0.531     2.18 -2.41e+03         0    0.088   0.0533    0.0533      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 223,   Parent ID = 181
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.531     2.18 -2.41e+03   0.00691        0        0         0      Target initStep
-    1   -0.531     2.18 -2.41e+03         0  0.00691  0.00041   0.00041      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 179,   Parent ID = 120
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.591     1.97 -2.42e+03     0.442        0        0         0      Target initStep
-    1   -0.609     2.11 -2.41e+03         0    0.088     1.05      1.05      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 224,   Parent ID = 179
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.609     2.11 -2.41e+03     0.354        0        0         0      Target initStep
-    1   -0.605     2.12 -2.41e+03         0    0.354    0.189     0.189      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 178,   Parent ID = 144
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.16    -1.14 -2.4e+03     0.156        0        0         0      Target initStep
-    1     2.12     -1.2 -2.4e+03         0    0.088   0.0947    0.0947      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 225,   Parent ID = 178
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.12     -1.2 -2.4e+03    0.0676        0        0         0      Target initStep
-    1     2.12     -1.2 -2.4e+03         0   0.0676   0.0146    0.0146      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 177,   Parent ID = 146
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.99     1.49 -2.41e+03     0.168        0        0         0      Target initStep
-    1    -1.98     1.39 -2.41e+03         0    0.088     0.14      0.14      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 226,   Parent ID = 177
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.98     1.39 -2.41e+03    0.0798        0        0         0      Target initStep
-    1    -1.98     1.39 -2.41e+03         0   0.0798   0.0191    0.0191      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 176,   Parent ID = 148
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.1    -2.78 -2.4e+03       1.1        0        0         0      Target initStep
-    1     6.63   -0.379 -2.4e+03       1.1        0     7.39      7.39     Tracker Transportation
-    2  2.2e+03      955     -699       1.1        0 2.94e+03  2.94e+03       World Transportation
-    3 2.94e+03 1.28e+03     -127       1.1        0      988  3.93e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 175,   Parent ID = 148
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.96    -2.54 -2.4e+03     0.691        0        0         0      Target initStep
-    1     1.15    -2.69 -2.4e+03     0.583        0    0.772     0.772      Target compt
-    2     3.45    -3.05 -2.4e+03         0    0.088      3.3      4.07      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 228,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.45    -3.05 -2.4e+03     0.495        0        0         0      Target initStep
-    1     3.47    -3.04 -2.4e+03         0    0.495      0.3       0.3      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 227,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.15    -2.69 -2.4e+03     0.108        0        0         0      Target initStep
-    1     1.14    -2.69 -2.4e+03         0    0.108    0.031     0.031      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 174,   Parent ID = 162
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.499      1.5 -2.42e+03     0.876        0        0         0      Target initStep
-    1    0.362    0.911 -2.42e+03         0    0.088    0.929     0.929      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 229,   Parent ID = 174
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.362    0.911 -2.42e+03     0.788        0        0         0      Target initStep
-    1    0.334    0.896 -2.42e+03         0    0.788    0.548     0.548      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 173,   Parent ID = 165
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.693     1.37 -2.42e+03     0.479        0        0         0      Target initStep
-    1     7.55    -6.38 -2.42e+03         0    0.088     11.3      11.3      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 230,   Parent ID = 173
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     7.55    -6.38 -2.42e+03     0.391        0        0         0      Target initStep
-    1     7.55    -6.39 -2.42e+03         0    0.391    0.217     0.217      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 172,   Parent ID = 121
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -0.9     1.84 -2.41e+03     0.511        0        0         0      Target initStep
-    1    -7.67     5.36 -2.43e+03     0.417        0     12.7      12.7      Target compt
-    2    -9.26     7.36 -2.43e+03         0    0.088      2.7      15.4      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 232,   Parent ID = 172
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -9.26     7.36 -2.43e+03     0.329        0        0         0      Target initStep
-    1    -9.26     7.37 -2.43e+03         0    0.329     0.17      0.17      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 231,   Parent ID = 172
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -7.67     5.36 -2.43e+03    0.0938        0        0         0      Target initStep
-    1    -7.67     5.36 -2.43e+03         0   0.0938   0.0247    0.0247      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 171,   Parent ID = 121
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -0.9     1.84 -2.41e+03     0.511        0        0         0      Target initStep
-    1   -0.888     1.83 -2.41e+03     0.413        0    0.022     0.022      Target compt
-    2    0.938     2.78 -2.41e+03     0.267        0     2.62      2.64      Target compt
-    3    0.637     2.96 -2.41e+03         0    0.088    0.697      3.34      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 235,   Parent ID = 171
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.637     2.96 -2.41e+03     0.179        0        0         0      Target initStep
-    1    0.639     2.96 -2.41e+03         0    0.179   0.0689    0.0689      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 234,   Parent ID = 171
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.938     2.78 -2.41e+03     0.146        0        0         0      Target initStep
-    1    0.941     2.79 -2.41e+03         0    0.146     0.05      0.05      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 233,   Parent ID = 171
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.888     1.83 -2.41e+03    0.0975        0        0         0      Target initStep
-    1   -0.888     1.83 -2.41e+03         0   0.0975   0.0263    0.0263      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 170,   Parent ID = 121
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.651     1.94 -2.41e+03     0.596        0        0         0      Target initStep
-    1    -18.4    -16.9 -2.41e+03     0.596        0       27        27       World Transportation
-    2    -36.3    -35.8 -2.4e+03     0.596        0     27.1        54     Tracker Transportation
-    3 -1.65e+03 -1.75e+03 -1.73e+03     0.596        0 2.44e+03   2.5e+03       World Transportation
-    4 -2.77e+03 -2.94e+03 -1.25e+03     0.596        0 1.71e+03  4.21e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 169,   Parent ID = 147
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.02     1.51 -2.41e+03     0.511        0        0         0      Target initStep
-    1     1.12     1.23 -2.41e+03     0.305        0     3.75      3.75      Target compt
-    2     1.12     1.22 -2.41e+03         0    0.088   0.0108      3.76      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 168,   Parent ID = 147
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.02     1.51 -2.41e+03     0.511        0        0         0      Target initStep
-    1    -17.9     2.93 -2.42e+03     0.392        0     18.9      18.9      Target compt
-    2      -21     9.26 -2.43e+03         0    0.088     9.83      28.8      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 239,   Parent ID = 168
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -21     9.26 -2.43e+03     0.304        0        0         0      Target initStep
-    1      -21     9.26 -2.43e+03         0    0.304    0.152     0.152      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 238,   Parent ID = 168
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -17.9     2.93 -2.42e+03     0.119        0        0         0      Target initStep
-    1    -17.9     2.93 -2.42e+03         0    0.119   0.0364    0.0364      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 237,   Parent ID = 169
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.12     1.22 -2.41e+03     0.217        0        0         0      Target initStep
-    1     1.12     1.22 -2.41e+03         0    0.217   0.0921    0.0921      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 236,   Parent ID = 169
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.12     1.23 -2.41e+03     0.206        0        0         0      Target initStep
-    1     1.13     1.23 -2.41e+03         0    0.206   0.0853    0.0853      Target eIoni
->>> Event: 0
-    0 hits stored in this event
-### Run 1 starts.
---> Event 0 starts.
-
-*********************************************************************************************************
-* G4Track Information:   Particle = mu+,   Track ID = 1,   Parent ID = 0
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0        0        0 -2.94e+03     1e+06        0        0         0       World initStep
-    1 -6.31e-07 -5.6e-06 -2.87e+03     1e+06    0.014     74.8      74.8       World muIoni
-    2 -1.45e-06 -1.4e-05 -2.79e+03     1e+06   0.0131     70.2       145       World muIoni
-    3 2.77e-05 -7.02e-05 -2.61e+03     1e+06   0.0362      185       330       World muIoni
-    4 3.77e-05 -7.95e-05 -2.58e+03     1e+06  0.00463     28.7       359       World muIoni
-    5  8.2e-05 -0.000117 -2.45e+03     1e+06   0.0239      131       490      Target Transportation
-    6  0.00241 0.000481 -2.41e+03  9.92e+05     55.5     40.6       531      Target muPairProd
-    7  0.00303 0.000316 -2.4e+03  9.92e+05     8.96     6.74       537      Target CoulombScat
-    8   0.0033 0.000253 -2.4e+03  9.92e+05     3.66     2.52       540      Target muIoni
-    9  0.00332 0.000251 -2.4e+03  9.92e+05    0.122    0.127       540     Tracker Transportation
-   10   0.0144 -0.00226 -2.3e+03  9.92e+05   0.0205      100       640     Tracker StepLimiter
-   11   0.0175 -0.00296 -2.27e+03  9.92e+05  0.00621     28.2       668     Tracker muIoni
-   12   0.0286 -0.00544 -2.17e+03  9.92e+05   0.0184      100       768     Tracker StepLimiter
-   13   0.0315  -0.0061 -2.15e+03  9.92e+05  0.00646     26.7       795     Tracker muIoni
-   14   0.0359 -0.00708 -2.11e+03  9.92e+05  0.00664     39.3       834     Tracker muIoni
-   15   0.0448 -0.00908 -2.03e+03  9.92e+05   0.0155     80.5       915     Tracker muIoni
-   16   0.0541  -0.0112 -1.94e+03  9.92e+05   0.0191     83.7       998     Tracker muIoni
-   17   0.0567  -0.0117 -1.92e+03  9.92e+05  0.00551     23.3  1.02e+03     Tracker muIoni
-   18   0.0679  -0.0142 -1.82e+03  9.92e+05   0.0195      100  1.12e+03     Tracker StepLimiter
-   19   0.0765  -0.0162 -1.74e+03  9.92e+05   0.0197     77.4   1.2e+03     Tracker muIoni
-   20    0.081  -0.0172 -1.7e+03  9.92e+05  0.00786     40.9  1.24e+03     Chamber Transportation
-   21   0.0829  -0.0176 -1.68e+03  9.92e+05  0.00646     16.7  1.26e+03     Chamber muIoni
-   22   0.0935  -0.0199 -1.59e+03  9.92e+05    0.069     94.9  1.35e+03     Chamber muIoni
-   23    0.099  -0.0212 -1.54e+03  9.92e+05   0.0428     49.5   1.4e+03     Chamber muIoni
-   24   0.0994  -0.0212 -1.54e+03  9.92e+05  0.00274     3.42   1.4e+03     Chamber muIoni
-   25    0.101  -0.0215 -1.52e+03  9.92e+05  0.00549     11.1  1.42e+03     Chamber muIoni
-   26    0.103  -0.0221 -1.5e+03  9.92e+05   0.0167     24.3  1.44e+03     Tracker Transportation
-   27    0.114  -0.0246 -1.4e+03  9.92e+05   0.0254      100  1.54e+03     Tracker StepLimiter
-   28    0.126  -0.0271 -1.3e+03  9.92e+05   0.0158      100  1.64e+03     Tracker StepLimiter
-   29    0.137  -0.0295 -1.2e+03  9.92e+05    0.019      100  1.74e+03     Tracker StepLimiter
-   30    0.148   -0.032 -1.1e+03  9.92e+05     0.02      100  1.84e+03     Tracker StepLimiter
-   31    0.149  -0.0323 -1.09e+03  9.92e+05  0.00192     12.3  1.85e+03     Tracker muIoni
-   32     0.15  -0.0324 -1.08e+03  9.92e+05 0.000988     5.07  1.86e+03     Tracker muIoni
-   33     0.15  -0.0326 -1.08e+03  9.92e+05  0.00064     6.23  1.86e+03     Tracker muIoni
-   34    0.161   -0.035     -976  9.92e+05   0.0218      100  1.96e+03     Tracker StepLimiter
-   35     0.17  -0.0369     -900  9.92e+05   0.0163     76.4  2.04e+03     Chamber Transportation
-   36     0.17  -0.0369     -899  9.92e+05 0.000347     1.17  2.04e+03     Chamber muIoni
-   37    0.185  -0.0402     -767  9.92e+05   0.0819      132  2.17e+03     Chamber muIoni
-   38    0.186  -0.0406     -753  9.92e+05  0.00868     13.5  2.19e+03     Chamber muIoni
-   39    0.192  -0.0419     -700  9.92e+05   0.0438     53.4  2.24e+03     Tracker Transportation
-   40    0.203  -0.0445     -600  9.92e+05   0.0186      100  2.34e+03     Tracker StepLimiter
-   41    0.207  -0.0455     -561  9.92e+05  0.00576     39.2  2.38e+03     Tracker muIoni
-   42    0.214  -0.0471     -497  9.92e+05   0.0143     63.9  2.44e+03     Tracker muIoni
-   43    0.225  -0.0497     -397  9.92e+05   0.0165      100  2.54e+03     Tracker StepLimiter
-   44    0.226  -0.0499     -389  9.92e+05  0.00146     7.87  2.55e+03     Tracker muIoni
-   45    0.237  -0.0524     -289  9.92e+05   0.0228      100  2.65e+03     Tracker StepLimiter
-   46    0.241  -0.0535     -247  9.92e+05  0.00823     41.9  2.69e+03     Tracker muIoni
-   47    0.244  -0.0542     -219  9.92e+05  0.00558     27.7  2.72e+03     Tracker muIoni
-   48    0.255  -0.0568     -119  9.92e+05   0.0192      100  2.82e+03     Tracker StepLimiter
-   49    0.255  -0.0568     -118  9.92e+05 0.000195     1.24  2.82e+03     Tracker muIoni
-   50    0.257  -0.0573     -100  9.92e+05  0.00392     18.2  2.84e+03     Chamber Transportation
-   51    0.258  -0.0576    -88.1  9.92e+05  0.00991     11.9  2.85e+03     Chamber muIoni
-   52    0.277  -0.0621     82.9  9.92e+05    0.123      171  3.02e+03     Chamber muIoni
-   53    0.279  -0.0626      100  9.92e+05   0.0106     17.1  3.04e+03     Tracker Transportation
-   54     0.29  -0.0653      200  9.92e+05   0.0182      100  3.14e+03     Tracker StepLimiter
-   55    0.296   -0.067      262  9.92e+05  0.00963     61.8   3.2e+03     Tracker muIoni
-   56    0.301  -0.0683      307  9.92e+05  0.00977     45.6  3.25e+03     Tracker muIoni
-   57    0.302  -0.0685      316  9.92e+05  0.00171     8.36  3.26e+03     Tracker muIoni
-   58    0.313  -0.0713      416  9.92e+05   0.0219      100  3.36e+03     Tracker StepLimiter
-   59    0.324   -0.074      516  9.92e+05   0.0208      100  3.46e+03     Tracker StepLimiter
-   60    0.325  -0.0742      521  9.92e+05 0.000954     5.66  3.46e+03     Tracker muIoni
-   61    0.332   -0.076      588  9.92e+05   0.0108     66.4  3.53e+03     Tracker muIoni
-   62    0.333  -0.0764      603  9.92e+05   0.0014     15.1  3.54e+03     Tracker muIoni
-   63    0.337  -0.0774      640  9.92e+05  0.00511     36.6  3.58e+03     Tracker muIoni
-   64    0.344   -0.079      700  9.92e+05   0.0113     60.4  3.64e+03     Chamber Transportation
-   65    0.359  -0.0826      835  9.92e+05   0.0954      135  3.77e+03     Chamber muIoni
-   66     0.36  -0.0829      846  9.92e+05  0.00925     11.5  3.79e+03     Chamber muIoni
-   67    0.363  -0.0836      870  9.92e+05    0.017     24.1  3.81e+03     Chamber muIoni
-   68    0.363  -0.0836      872  9.92e+05 0.000632     2.16  3.81e+03     Chamber muIoni
-   69    0.363  -0.0837      876  9.92e+05  0.00218     3.97  3.82e+03     Chamber muIoni
-   70    0.366  -0.0844      900  9.92e+05   0.0206     23.7  3.84e+03     Tracker Transportation
-   71    0.366  -0.0844      902  9.92e+05 0.000704     1.96  3.84e+03     Tracker muIoni
-   72    0.377  -0.0872    1e+03  9.92e+05    0.021      100  3.94e+03     Tracker StepLimiter
-   73    0.388  -0.0899  1.1e+03  9.92e+05   0.0189      100  4.04e+03     Tracker StepLimiter
-   74    0.395  -0.0917 1.16e+03  9.92e+05   0.0103     62.3   4.1e+03     Tracker muIoni
-   75    0.396  -0.0921 1.18e+03  9.92e+05  0.00346     13.7  4.12e+03     Tracker muIoni
-   76    0.402  -0.0936 1.23e+03  9.92e+05   0.0122     54.4  4.17e+03     Tracker muIoni
-   77    0.403  -0.0939 1.24e+03  9.92e+05  0.00259     10.9  4.18e+03     Tracker muIoni
-   78    0.404  -0.0941 1.25e+03  9.92e+05  0.00153     6.42  4.19e+03     Tracker muIoni
-   79    0.415  -0.0969 1.35e+03  9.92e+05     0.02      100  4.29e+03     Tracker StepLimiter
-   80    0.422  -0.0986 1.41e+03  9.92e+05    0.013     62.7  4.35e+03     Tracker muIoni
-   81    0.431   -0.101  1.5e+03  9.92e+05    0.017     87.5  4.44e+03     Chamber Transportation
-   82    0.434   -0.102 1.53e+03  9.92e+05   0.0145     30.5  4.47e+03     Chamber muIoni
-   83    0.437   -0.103 1.56e+03  9.92e+05   0.0209     26.6   4.5e+03     Chamber muIoni
-   84    0.441   -0.103 1.59e+03  9.92e+05   0.0172     29.7  4.53e+03     Chamber muIoni
-   85    0.443   -0.104  1.6e+03  9.92e+05   0.0101     17.9  4.54e+03     Chamber muIoni
-   86    0.446   -0.105 1.63e+03  9.92e+05   0.0192     29.6  4.57e+03     Chamber muIoni
-   87    0.453   -0.106  1.7e+03  9.92e+05   0.0472     65.7  4.64e+03     Tracker Transportation
-   88    0.464   -0.109  1.8e+03  9.92e+05   0.0184      100  4.74e+03     Tracker StepLimiter
-   89    0.475   -0.112  1.9e+03  9.92e+05   0.0194      100  4.84e+03     Tracker StepLimiter
-   90    0.475   -0.112  1.9e+03  9.92e+05 0.000164     1.33  4.84e+03     Tracker muIoni
-   91    0.484   -0.114 1.98e+03  9.92e+05   0.0117     80.7  4.92e+03     Tracker muIoni
-   92    0.491   -0.116 2.04e+03  9.92e+05   0.0139     60.8  4.98e+03     Tracker muIoni
-   93    0.502   -0.118 2.14e+03  9.92e+05    0.022      100  5.08e+03     Tracker StepLimiter
-   94    0.504   -0.119 2.16e+03  9.92e+05  0.00245     16.6   5.1e+03     Tracker muIoni
-   95     0.51    -0.12 2.21e+03  9.92e+05  0.00988     52.4  5.15e+03     Tracker muIoni
-   96    0.517   -0.122 2.28e+03  9.92e+05   0.0134     65.8  5.22e+03     Tracker muIoni
-   97    0.528   -0.125 2.38e+03  9.92e+05   0.0199      100  5.32e+03     Tracker StepLimiter
-   98    0.531   -0.125  2.4e+03  9.92e+05  0.00437     22.4  5.34e+03       World Transportation
-   99    0.533   -0.126 2.42e+03  9.92e+05  0.00415     19.6  5.36e+03       World muIoni
-  100    0.544   -0.129 2.52e+03  9.92e+05   0.0219      104  5.46e+03       World muIoni
-  101    0.553   -0.131  2.6e+03  9.92e+05   0.0141     75.2  5.54e+03       World muIoni
-  102    0.557   -0.132 2.64e+03  9.92e+05  0.00763     37.6  5.58e+03       World muIoni
-  103    0.562   -0.133 2.69e+03  9.92e+05  0.00872     51.3  5.63e+03       World muIoni
-  104    0.576   -0.136 2.81e+03  9.92e+05    0.026      126  5.75e+03       World muIoni
-  105     0.58   -0.137 2.85e+03  9.92e+05  0.00738     37.2  5.79e+03       World muIoni
-  106     0.59    -0.14 2.94e+03  9.92e+05   0.0183     89.4  5.88e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 71,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.58   -0.137 2.85e+03   0.00409        0        0         0       World initStep
-    1    0.757   -0.299 2.85e+03         0  0.00409    0.539     0.539       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 70,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.576   -0.136 2.81e+03   0.00137        0        0         0       World initStep
-    1    0.538   -0.138 2.81e+03         0  0.00137   0.0901    0.0901       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 69,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.562   -0.133 2.69e+03   0.00236        0        0         0       World initStep
-    1    0.524   -0.217 2.69e+03         0  0.00236    0.211     0.211       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 68,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.557   -0.132 2.64e+03   0.00119        0        0         0       World initStep
-    1    0.583   -0.147 2.64e+03         0  0.00119   0.0737    0.0737       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 67,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.553   -0.131  2.6e+03   0.00208        0        0         0       World initStep
-    1     0.49   -0.171  2.6e+03         0  0.00208    0.172     0.172       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 66,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.544   -0.129 2.52e+03   0.00545        0        0         0       World initStep
-    1    0.378    0.231 2.52e+03         0  0.00545    0.891     0.891       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 65,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.533   -0.126 2.42e+03  0.000992        0        0         0       World initStep
-    1    0.551   -0.113 2.42e+03         0 0.000992   0.0564    0.0564       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 64,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.517   -0.122 2.28e+03    0.0015        0        0         0     Tracker initStep
-    1    0.478   -0.141 2.28e+03         0   0.0015    0.103     0.103     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 63,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.51    -0.12 2.21e+03   0.00194        0        0         0     Tracker initStep
-    1    0.444    -0.11 2.21e+03         0  0.00194    0.154     0.154     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 62,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.504   -0.119 2.16e+03   0.00117        0        0         0     Tracker initStep
-    1    0.529   -0.134 2.16e+03         0  0.00117   0.0712    0.0712     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 61,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.491   -0.116 2.04e+03   0.00785        0        0         0     Tracker initStep
-    1    0.895    0.519 2.04e+03   0.00327  0.00458     1.48      1.48     Tracker eIoni
-    2    0.818    0.605 2.04e+03         0  0.00327    0.365      1.84     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 60,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.484   -0.114 1.98e+03   0.00211        0        0         0     Tracker initStep
-    1     0.45  -0.0452 1.98e+03         0  0.00211    0.176     0.176     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 59,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.475   -0.112  1.9e+03   0.00149        0        0         0     Tracker initStep
-    1    0.481  -0.0689  1.9e+03         0  0.00149    0.102     0.102     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 58,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.446   -0.105 1.63e+03   0.00351        0        0         0     Chamber initStep
-    1    0.418    -0.11 1.63e+03         0  0.00351    0.229     0.229     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 57,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.443   -0.104  1.6e+03    0.0514        0        0         0     Chamber initStep
-    1     1.84   -0.358 1.61e+03    0.0424  0.00674     2.83      2.83     Chamber eIoni
-    2     1.73    0.252  1.6e+03    0.0338  0.00862     4.57      7.41     Chamber eIoni
-    3     1.46    0.373  1.6e+03    0.0231   0.0107     3.55        11     Chamber eIoni
-    4      1.7     0.54  1.6e+03    0.0104  0.00571     2.42      13.4     Chamber eIoni
-    5     1.78    0.467  1.6e+03   0.00213  0.00827     1.25      14.6     Chamber eIoni
-    6     1.77    0.459  1.6e+03         0  0.00213    0.113      14.7     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 73,   Parent ID = 57
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.7     0.54  1.6e+03   0.00699        0        0         0     Chamber initStep
-    1     1.71    0.486  1.6e+03         0  0.00699    0.674     0.674     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 72,   Parent ID = 57
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.84   -0.358 1.61e+03   0.00226        0        0         0     Chamber initStep
-    1     1.85   -0.355 1.61e+03         0  0.00226    0.123     0.123     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 56,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.441   -0.103 1.59e+03    0.0209        0        0         0     Chamber initStep
-    1    0.591  -0.0867 1.59e+03    0.0176  0.00056    0.187     0.187     Chamber eIoni
-    2    0.766    0.179 1.59e+03   0.00703   0.0106        2      2.19     Chamber eIoni
-    3    0.703    0.156 1.59e+03         0  0.00703     0.68      2.87     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 74,   Parent ID = 56
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.591  -0.0867 1.59e+03   0.00269        0        0         0     Chamber initStep
-    1    0.606  -0.0972 1.59e+03         0  0.00269    0.157     0.157     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 55,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.437   -0.103 1.56e+03   0.00947        0        0         0     Chamber initStep
-    1    0.325   -0.146 1.56e+03         0  0.00947     1.11      1.11     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 54,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.434   -0.102 1.53e+03   0.00512        0        0         0     Chamber initStep
-    1    0.483   -0.108 1.53e+03         0  0.00512    0.409     0.409     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 53,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.422  -0.0986 1.41e+03     0.149        0        0         0     Tracker initStep
-    1    -14.9      -40 1.43e+03     0.137   0.0106     48.6      48.6     Tracker eIoni
-    2     2.32    -62.7 1.42e+03     0.127  0.00858     29.5      78.1     Tracker eIoni
-    3     7.28    -73.5 1.42e+03     0.122  0.00472       12      90.2     Tracker eIoni
-    4     7.16    -92.5 1.43e+03     0.116  0.00537     19.9       110     Tracker eIoni
-    5     7.83     -131 1.44e+03     0.103   0.0126     46.4       156     Tracker eIoni
-    6   -0.105     -135 1.47e+03    0.0888   0.0123     33.6       190     Tracker eIoni
-    7     -8.2     -162 1.48e+03    0.0767   0.0121     29.9       220     Tracker eIoni
-    8     -8.1     -164 1.48e+03    0.0727 0.000583     2.16       222     Tracker eIoni
-    9    -7.91     -166 1.48e+03    0.0718 0.000929     2.91       225     Tracker eIoni
-   10    -1.14     -183 1.48e+03    0.0632  0.00859       21       246     Tracker eIoni
-   11     2.47     -185  1.5e+03    0.0556  0.00758     17.1       263     Tracker eIoni
-   12     3.79     -185  1.5e+03     0.055 0.000674     2.26       265     Chamber Transportation
-   13     4.05     -186  1.5e+03    0.0515 0.000617    0.586       266     Chamber eIoni
-   14     4.35     -187  1.5e+03    0.0499  0.00155     1.23       267     Chamber msc
-   15     3.84     -186  1.5e+03    0.0478  0.00209     1.23       268     Chamber msc
-   16     4.26     -186  1.5e+03    0.0456  0.00219     1.23       270     Chamber msc
-   17     4.38     -185  1.5e+03    0.0442  0.00139     1.23       271     Chamber msc
-   18      4.4     -186  1.5e+03     0.042  0.00229     1.23       272     Chamber msc
-   19     5.15     -186  1.5e+03    0.0378   0.0028     1.07       273     Chamber eIoni
-   20     5.36     -185  1.5e+03     0.033  0.00302      1.2       274     Chamber eIoni
-   21     5.82     -185  1.5e+03    0.0301  0.00291     1.23       276     Chamber msc
-   22     5.71     -185  1.5e+03    0.0257  0.00441     1.23       277     Chamber msc
-   23     5.64     -184  1.5e+03    0.0229  0.00284     1.42       278     Chamber msc
-   24     4.68     -183  1.5e+03    0.0188  0.00404     1.43       280     Chamber msc
-   25     4.54     -183 1.51e+03     0.016 0.000722     0.42       280     Chamber eIoni
-   26     4.65     -183 1.51e+03    0.0122  0.00381     1.86       282     Chamber eIoni
-   27     4.76     -183 1.51e+03   0.00796 0.000981    0.461       282     Chamber eIoni
-   28     4.74     -183 1.51e+03         0  0.00796    0.835       283     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 84,   Parent ID = 53
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.76     -183 1.51e+03   0.00326        0        0         0     Chamber initStep
-    1     4.76     -183 1.51e+03         0  0.00326    0.205     0.205     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 83,   Parent ID = 53
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.54     -183 1.51e+03   0.00211        0        0         0     Chamber initStep
-    1     4.54     -183 1.51e+03         0  0.00211    0.112     0.112     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 82,   Parent ID = 53
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.36     -185  1.5e+03   0.00169        0        0         0     Chamber initStep
-    1     5.36     -185  1.5e+03         0  0.00169   0.0824    0.0824     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 81,   Parent ID = 53
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.15     -186  1.5e+03   0.00141        0        0         0     Chamber initStep
-    1     5.16     -186  1.5e+03         0  0.00141   0.0644    0.0644     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 80,   Parent ID = 53
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.05     -186  1.5e+03   0.00288        0        0         0     Chamber initStep
-    1     4.04     -186  1.5e+03         0  0.00288    0.172     0.172     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 79,   Parent ID = 53
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -8.1     -164 1.48e+03   0.00338        0        0         0     Tracker initStep
-    1    -7.98     -164 1.48e+03   0.00144  0.00194    0.291     0.291     Tracker eIoni
-    2    -8.02     -164 1.48e+03         0  0.00144    0.097     0.388     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 78,   Parent ID = 53
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.105     -135 1.47e+03   0.00183        0        0         0     Tracker initStep
-    1   -0.123     -135 1.47e+03         0  0.00183    0.141     0.141     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 77,   Parent ID = 53
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     7.16    -92.5 1.43e+03    0.0011        0        0         0     Tracker initStep
-    1     7.17    -92.5 1.43e+03         0   0.0011   0.0653    0.0653     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 76,   Parent ID = 53
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.32    -62.7 1.42e+03   0.00162        0        0         0     Tracker initStep
-    1     2.28    -62.7 1.42e+03         0  0.00162    0.117     0.117     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 75,   Parent ID = 53
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -14.9      -40 1.43e+03    0.0011        0        0         0     Tracker initStep
-    1    -14.9      -40 1.43e+03         0   0.0011   0.0657    0.0657     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 52,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.404  -0.0941 1.25e+03   0.00672        0        0         0     Tracker initStep
-    1    0.782   -0.378 1.25e+03   0.00308  0.00264    0.694     0.694     Tracker eIoni
-    2    0.731   -0.447 1.25e+03         0  0.00308     0.33      1.02     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 85,   Parent ID = 52
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.782   -0.378 1.25e+03     0.001        0        0         0     Tracker initStep
-    1    0.771   -0.358 1.25e+03         0    0.001   0.0572    0.0572     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 51,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.403  -0.0939 1.24e+03   0.00107        0        0         0     Tracker initStep
-    1    0.384   -0.111 1.24e+03         0  0.00107   0.0628    0.0628     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 50,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.402  -0.0936 1.23e+03   0.00119        0        0         0     Tracker initStep
-    1    0.421  -0.0696 1.23e+03         0  0.00119   0.0735    0.0735     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 49,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.396  -0.0921 1.18e+03   0.00112        0        0         0     Tracker initStep
-    1    0.423   -0.096 1.18e+03         0  0.00112   0.0675    0.0675     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 48,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.395  -0.0917 1.16e+03   0.00351        0        0         0     Tracker initStep
-    1    0.369   0.0899 1.16e+03         0  0.00351    0.413     0.413     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 47,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.366  -0.0844      902   0.00193        0        0         0     Tracker initStep
-    1     0.38    -0.02      902         0  0.00193    0.152     0.152     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 46,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.363  -0.0837      876   0.00148        0        0         0     Chamber initStep
-    1    0.373  -0.0845      876         0  0.00148   0.0687    0.0687     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 45,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.363  -0.0836      872   0.00248        0        0         0     Chamber initStep
-    1    0.375  -0.0705      872         0  0.00248     0.14      0.14     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 44,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.363  -0.0836      870   0.00187        0        0         0     Chamber initStep
-    1    0.352  -0.0778      870         0  0.00187   0.0949    0.0949     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 43,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.36  -0.0829      846   0.00183        0        0         0     Chamber initStep
-    1    0.351  -0.0912      846         0  0.00183   0.0917    0.0917     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 42,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.359  -0.0826      835   0.00254        0        0         0     Chamber initStep
-    1    0.352  -0.0653      835         0  0.00254    0.144     0.144     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 41,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.337  -0.0774      640   0.00102        0        0         0     Tracker initStep
-    1    0.321  -0.0605      640         0  0.00102   0.0589    0.0589     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 40,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.333  -0.0764      603   0.00148        0        0         0     Tracker initStep
-    1    0.371   -0.097      603         0  0.00148    0.101     0.101     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 39,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.332   -0.076      588   0.00211        0        0         0     Tracker initStep
-    1    0.268  -0.0336      588         0  0.00211    0.176     0.176     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 38,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.325  -0.0742      521   0.00282        0        0         0     Tracker initStep
-    1    0.258   -0.181      521         0  0.00282    0.284     0.284     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 37,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.302  -0.0685      316   0.00137        0        0         0     Tracker initStep
-    1    0.271  -0.0471      316         0  0.00137   0.0901    0.0901     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 36,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.301  -0.0683      307   0.00112        0        0         0     Tracker initStep
-    1    0.285  -0.0904      307         0  0.00112    0.067     0.067     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 35,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.296   -0.067      262   0.00205        0        0         0     Tracker initStep
-    1    0.224  -0.0713      262         0  0.00205    0.168     0.168     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 34,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.277  -0.0621     82.9   0.00536        0        0         0     Chamber initStep
-    1    0.314  -0.0707     82.9   0.00256 0.000404   0.0619    0.0619     Chamber eIoni
-    2    0.323   -0.082     82.9         0  0.00256    0.146     0.208     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 86,   Parent ID = 34
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.314  -0.0707     82.9    0.0024        0        0         0     Chamber initStep
-    1    0.328  -0.0653     82.9         0   0.0024    0.133     0.133     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 33,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.258  -0.0576    -88.1   0.00279        0        0         0     Chamber initStep
-    1    0.249  -0.0768    -88.1         0  0.00279    0.165     0.165     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 32,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.255  -0.0568     -118   0.00303        0        0         0     Tracker initStep
-    1    0.396  -0.0407     -118         0  0.00303     0.32      0.32     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 31,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.244  -0.0542     -219   0.00174        0        0         0     Tracker initStep
-    1    0.209  -0.0103     -219         0  0.00174     0.13      0.13     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 30,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.241  -0.0535     -247   0.00638        0        0         0     Tracker initStep
-    1    0.367    0.457     -247   0.00228   0.0041     1.16      1.16     Tracker eIoni
-    2    0.437    0.447     -247         0  0.00228      0.2      1.36     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 29,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.226  -0.0499     -389    0.0092        0        0         0     Tracker initStep
-    1    0.271  -0.0935     -389   0.00691 6.64e-05    0.064     0.064     Tracker eIoni
-    2    0.521   -0.582     -389         0  0.00691     1.29      1.35     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 87,   Parent ID = 29
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.271  -0.0935     -389   0.00222        0        0         0     Tracker initStep
-    1    0.334  -0.0901     -389         0  0.00222    0.191     0.191     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 28,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.214  -0.0471     -497     0.023        0        0         0     Tracker initStep
-    1   -0.428    0.135     -497    0.0223 0.000722    0.701     0.701     Tracker eIoni
-    2    -3.13    -1.17     -497    0.0175  0.00485     3.85      4.55     Tracker eIoni
-    3    -3.89    -2.47     -497    0.0133  0.00237     2.03      6.58     Tracker eIoni
-    4    -4.22    -3.83     -496    0.0101   0.0032     2.32       8.9     Tracker eIoni
-    5    -5.21    -3.32     -496   0.00557  0.00453     1.85      10.8     Tracker eIoni
-    6    -5.35    -2.93     -496         0  0.00557    0.929      11.7     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 88,   Parent ID = 28
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.89    -2.47     -497   0.00178        0        0         0     Tracker initStep
-    1    -3.89    -2.49     -497         0  0.00178    0.135     0.135     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 27,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.207  -0.0455     -561   0.00131        0        0         0     Tracker initStep
-    1     0.19  -0.0143     -561         0  0.00131   0.0845    0.0845     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 26,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.186  -0.0406     -753   0.00174        0        0         0     Chamber initStep
-    1    0.189  -0.0516     -753         0  0.00174   0.0861    0.0861     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 25,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.185  -0.0402     -767   0.00155        0        0         0     Chamber initStep
-    1    0.184  -0.0502     -767         0  0.00155   0.0734    0.0734     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 24,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.17  -0.0369     -899   0.00414        0        0         0     Chamber initStep
-    1    0.161  -0.0717     -899         0  0.00414    0.294     0.294     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 23,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.15  -0.0326 -1.08e+03   0.00157        0        0         0     Tracker initStep
-    1    0.108  -0.0112 -1.08e+03         0  0.00157    0.111     0.111     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 22,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.15  -0.0324 -1.08e+03    0.0022        0        0         0     Tracker initStep
-    1    0.201   0.0318 -1.08e+03         0   0.0022    0.188     0.188     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 21,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.149  -0.0323 -1.09e+03   0.00102        0        0         0     Tracker initStep
-    1    0.142  -0.0551 -1.09e+03         0  0.00102   0.0587    0.0587     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 20,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.101  -0.0215 -1.52e+03   0.00171        0        0         0     Chamber initStep
-    1    0.093  -0.0296 -1.52e+03         0  0.00171   0.0837    0.0837     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 19,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0994  -0.0212 -1.54e+03     0.161        0        0         0     Chamber initStep
-    1     4.25      1.1 -1.53e+03     0.156  0.00398     6.14      6.14     Chamber eIoni
-    2     10.4    -16.1 -1.52e+03     0.147  0.00915     22.7      28.9     Chamber msc
-    3    -1.38      -19 -1.51e+03     0.129   0.0178     22.7      51.6     Chamber msc
-    4     4.41    -18.7 -1.51e+03     0.117     0.01     13.3      64.9     Chamber eIoni
-    5     5.34    -25.7 -1.5e+03       0.1   0.0167     19.2      84.1     Chamber eIoni
-    6     4.51    -26.2 -1.5e+03    0.0882   0.0035     3.17      87.3     Chamber eIoni
-    7     3.51    -28.2 -1.5e+03    0.0841  0.00406     3.99      91.3     Tracker Transportation
-    8       12    -23.6 -1.5e+03    0.0789  0.00329     10.4       102     Tracker eIoni
-    9       28    -23.2 -1.49e+03    0.0701  0.00877     18.6       120     Tracker eIoni
-   10     45.7    -20.4 -1.49e+03    0.0627  0.00743     20.2       140     Tracker eIoni
-   11     55.1    -31.1 -1.5e+03    0.0512   0.0115     16.8       157     Tracker eIoni
-   12     59.1      -34 -1.5e+03    0.0483  0.00295     7.76       165     Chamber Transportation
-   13     59.8    -33.6 -1.5e+03    0.0461  0.00216     1.14       166     Chamber msc
-   14     60.5    -33.7 -1.5e+03    0.0458 0.000312    0.901       167     Chamber msc
-   15     61.1    -33.3 -1.5e+03    0.0444  0.00137    0.901       168     Chamber msc
-   16     61.5    -33.6 -1.5e+03    0.0433  0.00114    0.901       169     Chamber msc
-   17     61.5      -34 -1.5e+03    0.0416   0.0017    0.901       170     Chamber msc
-   18     61.5      -34 -1.5e+03     0.039        0   0.0193       170     Chamber eIoni
-   19       61    -33.5 -1.5e+03    0.0357  0.00332    0.901       171     Chamber msc
-   20     61.5      -33 -1.5e+03    0.0339  0.00177    0.901       172     Chamber msc
-   21       62    -32.6 -1.5e+03    0.0324  0.00151    0.901       172     Chamber msc
-   22     62.3      -32 -1.5e+03    0.0306  0.00187    0.901       173     Chamber msc
-   23     62.7    -31.9 -1.5e+03    0.0284  0.00216    0.901       174     Chamber msc
-   24     62.8    -31.9 -1.5e+03    0.0283 0.000144   0.0764       174     Tracker Transportation
-   25     65.7    -31.4 -1.5e+03    0.0251  0.00316     3.31       178     Tracker msc
-   26     68.3      -31 -1.5e+03    0.0215  0.00362     3.01       181     Tracker msc
-   27     68.9    -28.7 -1.5e+03     0.019  0.00251     3.01       184     Tracker msc
-   28       69    -28.4 -1.5e+03    0.0186  0.00033    0.518       184     Chamber Transportation
-   29       69    -28.4 -1.5e+03    0.0186 2.53e-05   0.0495       184     Chamber msc
-   30     69.1    -28.4 -1.5e+03    0.0183 0.000322    0.143       184     Chamber msc
-   31     69.1    -28.4 -1.5e+03    0.0175 0.000762    0.143       185     Chamber msc
-   32     69.1    -28.2 -1.5e+03    0.0175 6.12e-05    0.143       185     Chamber msc
-   33     69.1    -28.2 -1.5e+03    0.0171 0.000399    0.143       185     Chamber msc
-   34       69    -28.2 -1.5e+03    0.0163 0.000788    0.143       185     Chamber msc
-   35     68.9    -28.1 -1.5e+03    0.0159 0.000378    0.151       185     Chamber msc
-   36     68.7    -28.1 -1.5e+03    0.0149  0.00101    0.151       185     Chamber msc
-   37     68.7    -28.1 -1.5e+03    0.0144 0.000465    0.152       185     Chamber msc
-   38     68.6    -28.1 -1.5e+03    0.0138 0.000624    0.143       186     Chamber msc
-   39     68.5    -28.1 -1.5e+03    0.0133 0.000482    0.143       186     Chamber msc
-   40     68.5    -28.2 -1.5e+03     0.013 0.000367    0.143       186     Chamber msc
-   41     68.5    -28.1 -1.5e+03    0.0122 0.000751    0.143       186     Chamber msc
-   42     68.6      -28 -1.5e+03   0.00826 0.000902     0.13       186     Chamber eIoni
-   43     68.7    -28.1 -1.5e+03   0.00749  0.00077    0.143       186     Chamber msc
-   44     68.8    -28.2 -1.5e+03   0.00701 0.000475    0.143       186     Chamber msc
-   45     68.9    -28.1 -1.5e+03   0.00617 0.000844    0.143       187     Chamber msc
-   46     68.9    -28.2 -1.5e+03    0.0046  0.00157    0.143       187     Chamber msc
-   47     68.9    -28.2 -1.5e+03   0.00238  0.00222    0.143       187     Chamber msc
-   48     68.9    -28.2 -1.5e+03         0  0.00238    0.132       187     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 94,   Parent ID = 19
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     68.6      -28 -1.5e+03   0.00305        0        0         0     Chamber initStep
-    1     68.6    -28.1 -1.5e+03         0  0.00305    0.187     0.187     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 93,   Parent ID = 19
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     61.5      -34 -1.5e+03   0.00253        0        0         0     Chamber initStep
-    1     61.5      -34 -1.5e+03         0  0.00253    0.144     0.144     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 92,   Parent ID = 19
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       12    -23.6 -1.5e+03   0.00199        0        0         0     Tracker initStep
-    1       12    -23.7 -1.5e+03         0  0.00199     0.16      0.16     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 91,   Parent ID = 19
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.51    -26.2 -1.5e+03   0.00877        0        0         0     Chamber initStep
-    1      4.6    -26.2 -1.5e+03         0  0.00877    0.983     0.983     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 90,   Parent ID = 19
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.41    -18.7 -1.51e+03   0.00178        0        0         0     Chamber initStep
-    1      4.4    -18.7 -1.51e+03         0  0.00178   0.0889    0.0889     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 89,   Parent ID = 19
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.25      1.1 -1.53e+03   0.00149        0        0         0     Chamber initStep
-    1     4.25      1.1 -1.53e+03         0  0.00149   0.0695    0.0695     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 18,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.099  -0.0212 -1.54e+03   0.00202        0        0         0     Chamber initStep
-    1   0.0868   -0.027 -1.54e+03         0  0.00202    0.105     0.105     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 17,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0935  -0.0199 -1.59e+03   0.00141        0        0         0     Chamber initStep
-    1   0.0853  -0.0164 -1.59e+03         0  0.00141   0.0648    0.0648     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 16,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0829  -0.0176 -1.68e+03   0.00315        0        0         0     Chamber initStep
-    1    0.101 -0.000727 -1.68e+03         0  0.00315    0.196     0.196     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 15,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0765  -0.0162 -1.74e+03    0.0274        0        0         0     Tracker initStep
-    1     -3.5    -1.76 -1.74e+03    0.0223  0.00514     4.94      4.94     Tracker eIoni
-    2    -4.23    -1.84 -1.74e+03    0.0204 0.000552    0.829      5.77     Tracker eIoni
-    3    -5.88    -3.39 -1.74e+03    0.0159  0.00451     3.49      9.26     Tracker eIoni
-    4     -6.8    -4.88 -1.74e+03     0.012  0.00386     2.72        12     Tracker eIoni
-    5    -7.76    -5.49 -1.74e+03   0.00779  0.00423     2.13      14.1     Tracker eIoni
-    6    -8.49    -5.46 -1.74e+03   0.00215  0.00564     1.47      15.6     Tracker eIoni
-    7    -8.54    -5.44 -1.74e+03         0  0.00215    0.182      15.8     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 95,   Parent ID = 15
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -4.23    -1.84 -1.74e+03    0.0013        0        0         0     Tracker initStep
-    1    -4.25    -1.82 -1.74e+03         0   0.0013   0.0839    0.0839     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 14,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0567  -0.0117 -1.92e+03    0.0202        0        0         0     Tracker initStep
-    1   -0.437   -0.651 -1.92e+03    0.0186  0.00157    0.889     0.889     Tracker msc
-    2   -0.711     -1.6 -1.92e+03    0.0178 0.000835     1.01       1.9     Tracker msc
-    3   -0.837    -2.58 -1.92e+03    0.0168 0.000928     1.01      2.91     Tracker msc
-    4    -0.42    -2.98 -1.92e+03    0.0155   0.0013     1.01      3.93     Tracker msc
-    5  0.00682    -3.57 -1.92e+03    0.0128  0.00274     1.01      4.94     Tracker msc
-    6    0.696    -3.71 -1.92e+03    0.0117  0.00104     1.01      5.95     Tracker msc
-    7     1.16    -4.39 -1.92e+03   0.00919  0.00255     1.01      6.97     Tracker msc
-    8     1.88    -3.93 -1.92e+03   0.00716  0.00203     1.01      7.98     Tracker msc
-    9      2.3    -3.46 -1.92e+03   0.00378  0.00338     1.01      8.99     Tracker msc
-   10     2.46    -3.58 -1.92e+03         0  0.00378     0.47      9.46     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 13,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0541  -0.0112 -1.94e+03   0.00104        0        0         0     Tracker initStep
-    1   0.0745  -0.0249 -1.94e+03         0  0.00104   0.0603    0.0603     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 12,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0448 -0.00908 -2.03e+03   0.00542        0        0         0     Tracker initStep
-    1   -0.261    0.239 -2.03e+03         0  0.00542    0.885     0.885     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 11,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0359 -0.00708 -2.11e+03    0.0023        0        0         0     Tracker initStep
-    1  -0.0517  0.00821 -2.11e+03         0   0.0023    0.203     0.203     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 10,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0315  -0.0061 -2.15e+03   0.00526        0        0         0     Tracker initStep
-    1   0.0375 -0.00578 -2.15e+03   0.00404        0    0.006     0.006     Tracker eIoni
-    2    0.232    -0.06 -2.15e+03         0  0.00404    0.527     0.533     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 96,   Parent ID = 10
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0375 -0.00578 -2.15e+03   0.00122        0        0         0     Tracker initStep
-    1   0.0552  0.00829 -2.15e+03         0  0.00122   0.0765    0.0765     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 9,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0175 -0.00296 -2.27e+03   0.00214        0        0         0     Tracker initStep
-    1  -0.0538   0.0303 -2.27e+03         0  0.00214     0.18      0.18     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 8,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0033 0.000253 -2.4e+03      1.14        0        0         0      Target initStep
-    1   -0.036 -0.00874 -2.4e+03       1.1    0.039   0.0465    0.0465      Target msc
-    2  -0.0651  -0.0118 -2.4e+03      1.07   0.0273   0.0351    0.0816      Target msc
-    3  -0.0823  -0.0335 -2.4e+03      1.04   0.0274   0.0339     0.116      Target msc
-    4  -0.0999  -0.0101 -2.4e+03      1.01   0.0273   0.0339     0.149      Target msc
-    5   -0.108  0.00861 -2.4e+03     0.973    0.042   0.0339     0.183      Target msc
-    6   -0.137 0.000861 -2.4e+03     0.937   0.0351   0.0339     0.217      Target msc
-    7    -0.16  0.00277 -2.4e+03     0.907   0.0304   0.0339     0.251      Target msc
-    8   -0.189   0.0134 -2.4e+03     0.873   0.0342   0.0339     0.285      Target msc
-    9   -0.197   0.0304 -2.4e+03     0.857   0.0156   0.0339     0.319      Target msc
-   10   -0.215   0.0245 -2.4e+03     0.823   0.0347   0.0339     0.353      Target msc
-   11   -0.236   0.0316 -2.4e+03     0.743   0.0796   0.0339     0.387      Target msc
-   12   -0.255   0.0469 -2.4e+03     0.719   0.0237   0.0339     0.421      Target msc
-   13   -0.261   0.0702 -2.4e+03     0.697   0.0223   0.0339     0.455      Target msc
-   14   -0.271   0.0931 -2.4e+03     0.671   0.0265   0.0339     0.489      Target msc
-   15   -0.243    0.103 -2.4e+03     0.638   0.0331   0.0339     0.523      Target msc
-   16    -0.23    0.113 -2.4e+03     0.615   0.0221   0.0339     0.557      Target msc
-   17   -0.217    0.124 -2.4e+03     0.597   0.0187   0.0339     0.591      Target msc
-   18    -0.22    0.146 -2.4e+03     0.566   0.0308   0.0339     0.624      Target msc
-   19   -0.236    0.141 -2.4e+03     0.536   0.0302   0.0339     0.658      Target msc
-   20   -0.241    0.142 -2.4e+03     0.531  0.00498  0.00577     0.664     Tracker Transportation
-   21    -2.75     15.2 -2.4e+03     0.527  0.00251       16      16.7     Tracker eIoni
-   22    -3.39     23.2 -2.39e+03     0.517 0.000684     8.51      25.2     Tracker eIoni
-   23    -27.6      115 -2.37e+03     0.503   0.0141      100       125     Tracker StepLimiter
-   24      -34      143 -2.36e+03     0.498  0.00351     29.4       155     Tracker eIoni
-   25    -60.2      225 -2.34e+03      0.48   0.0171     92.2       247     Tracker eIoni
-   26      -68      244 -2.33e+03     0.474  0.00489     21.1       268     Tracker eIoni
-   27      -70      249 -2.33e+03     0.472  0.00105     5.09       273     Tracker eIoni
-   28      -90      320 -2.32e+03     0.458    0.012     75.4       348     Tracker eIoni
-   29    -90.3      322 -2.32e+03     0.457 0.000217     1.39       350     Tracker eIoni
-   30     -127      410 -2.35e+03     0.443   0.0139      100       450     Tracker StepLimiter
-   31     -157      502 -2.35e+03     0.425   0.0167     97.9       548     Tracker eIoni
-   32     -161      464 -2.27e+03     0.411   0.0119     87.1       635     Tracker eIoni
-   33     -149      429 -2.34e+03     0.397   0.0131     80.4       715     Tracker eIoni
-   34     -144      415 -2.4e+03     0.385   0.0118       63       778       World Transportation
-   35     -147      408 -2.41e+03     0.381   0.0027       15       793       World eIoni
-   36     -139      366 -2.51e+03      0.36   0.0176      106       899       World eIoni
-   37     -123      356 -2.54e+03     0.354  0.00633     37.9       937       World eIoni
-   38     -122      356 -2.54e+03     0.352 8.75e-05    0.665       937       World eIoni
-   39     -119      356 -2.55e+03     0.346  0.00323     11.5       949       World eIoni
-   40     -102      361 -2.59e+03     0.337  0.00784     40.7       990       World eIoni
-   41    -99.1      360 -2.59e+03     0.333  0.00229     6.61       996       World eIoni
-   42    -45.1      414 -2.76e+03     0.299   0.0329      183  1.18e+03       World eIoni
-   43    -45.7      415 -2.76e+03      0.29 0.000431     1.56  1.18e+03       World eIoni
-   44    -61.1      413 -2.8e+03     0.277  0.00657     41.3  1.22e+03       World eIoni
-   45    -60.1      424 -2.83e+03     0.264   0.0077     36.2  1.26e+03       World eIoni
-   46    -59.5      436 -2.85e+03     0.258  0.00423     25.6  1.28e+03       World eIoni
-   47      -59      440 -2.86e+03     0.254  0.00162     7.56  1.29e+03       World eIoni
-   48    -65.6      462 -2.88e+03     0.248  0.00605     34.6  1.33e+03       World eIoni
-   49    -89.1      488 -2.94e+03     0.234   0.0138     70.2   1.4e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 119,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -59      440 -2.86e+03   0.00222        0        0         0       World initStep
-    1    -59.1      440 -2.86e+03         0  0.00222    0.191     0.191       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 118,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -59.5      436 -2.85e+03   0.00158        0        0         0       World initStep
-    1    -59.4      436 -2.85e+03         0  0.00158    0.112     0.112       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 117,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -60.1      424 -2.83e+03   0.00501        0        0         0       World initStep
-    1      -60      424 -2.83e+03         0  0.00501    0.768     0.768       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 116,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -61.1      413 -2.8e+03   0.00673        0        0         0       World initStep
-    1    -61.5      413 -2.8e+03  0.000325   0.0064     1.25      1.25       World eIoni
-    2    -61.5      413 -2.8e+03         0 0.000325   0.0141      1.26       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 115,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -45.7      415 -2.76e+03   0.00897        0        0         0       World initStep
-    1    -46.3      415 -2.76e+03   0.00486    0.003     1.01      1.01       World eIoni
-    2    -46.5      415 -2.76e+03   0.00223  0.00263    0.192       1.2       World eIoni
-    3    -46.5      415 -2.76e+03         0  0.00223    0.193      1.39       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 120,   Parent ID = 115
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -46.3      415 -2.76e+03   0.00111        0        0         0       World initStep
-    1    -46.3      415 -2.76e+03         0  0.00111   0.0661    0.0661       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 114,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -45.1      414 -2.76e+03   0.00119        0        0         0       World initStep
-    1      -45      414 -2.76e+03         0  0.00119   0.0733    0.0733       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 113,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -99.1      360 -2.59e+03   0.00126        0        0         0       World initStep
-    1    -99.1      360 -2.59e+03         0  0.00126   0.0796    0.0796       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 112,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -102      361 -2.59e+03   0.00143        0        0         0       World initStep
-    1     -102      361 -2.59e+03         0  0.00143   0.0968    0.0968       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 111,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -119      356 -2.55e+03   0.00218        0        0         0       World initStep
-    1     -120      356 -2.55e+03         0  0.00218    0.186     0.186       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 110,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -122      356 -2.54e+03   0.00208        0        0         0       World initStep
-    1     -122      357 -2.54e+03         0  0.00208    0.172     0.172       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 109,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -139      366 -2.51e+03   0.00332        0        0         0       World initStep
-    1     -140      366 -2.51e+03         0  0.00332    0.374     0.374       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 108,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -147      408 -2.41e+03   0.00132        0        0         0       World initStep
-    1     -147      408 -2.41e+03         0  0.00132   0.0857    0.0857       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 107,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -149      429 -2.34e+03   0.00102        0        0         0     Tracker initStep
-    1     -149      429 -2.34e+03         0  0.00102   0.0583    0.0583     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 106,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -161      464 -2.27e+03    0.0019        0        0         0     Tracker initStep
-    1     -161      464 -2.27e+03         0   0.0019    0.149     0.149     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 105,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -157      502 -2.35e+03   0.00121        0        0         0     Tracker initStep
-    1     -158      502 -2.35e+03         0  0.00121   0.0747    0.0747     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 104,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -90.3      322 -2.32e+03   0.00128        0        0         0     Tracker initStep
-    1    -90.3      322 -2.32e+03         0  0.00128   0.0819    0.0819     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 103,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -90      320 -2.32e+03   0.00181        0        0         0     Tracker initStep
-    1      -90      321 -2.32e+03         0  0.00181    0.139     0.139     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 102,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -70      249 -2.33e+03   0.00121        0        0         0     Tracker initStep
-    1      -70      249 -2.33e+03         0  0.00121   0.0754    0.0754     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 101,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -68      244 -2.33e+03   0.00103        0        0         0     Tracker initStep
-    1      -68      244 -2.33e+03         0  0.00103   0.0599    0.0599     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 100,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -60.2      225 -2.34e+03    0.0013        0        0         0     Tracker initStep
-    1    -60.2      225 -2.34e+03         0   0.0013   0.0836    0.0836     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 99,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -34      143 -2.36e+03   0.00127        0        0         0     Tracker initStep
-    1      -34      143 -2.36e+03         0  0.00127   0.0805    0.0805     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 98,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.39     23.2 -2.39e+03   0.00922        0        0         0     Tracker initStep
-    1     -3.3     23.2 -2.39e+03   0.00567 0.000201    0.118     0.118     Tracker eIoni
-    2    -3.02     23.3 -2.39e+03         0  0.00567    0.958      1.08     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 121,   Parent ID = 98
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -3.3     23.2 -2.39e+03   0.00335        0        0         0     Tracker initStep
-    1    -3.17     23.2 -2.39e+03         0  0.00335     0.38      0.38     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 97,   Parent ID = 8
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.75     15.2 -2.4e+03   0.00104        0        0         0     Tracker initStep
-    1    -2.77     15.2 -2.4e+03         0  0.00104   0.0606    0.0606     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 6,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00241 0.000481 -2.41e+03  6.36e+03        0        0         0      Target initStep
-    1  0.00251 0.000577 -2.41e+03   4.5e+03    0.794    0.279     0.279      Target eBrem
-    2  0.00364 0.000988 -2.41e+03  4.49e+03     2.53    0.718     0.997      Target eBrem
-    3  0.00393  0.00093 -2.41e+03  4.48e+03    0.166    0.174      1.17      Target eBrem
-    4  0.00487 0.000841 -2.41e+03  4.47e+03    0.764    0.526       1.7      Target eBrem
-    5  0.00489 0.000834 -2.41e+03  4.46e+03   0.0111   0.0124      1.71      Target eBrem
-    6  0.00539 0.000598 -2.41e+03  4.46e+03    0.405    0.383      2.09      Target eBrem
-    7  0.00556 0.000436 -2.41e+03  4.41e+03    0.163    0.147      2.24      Target eBrem
-    8  0.00565 0.000282 -2.41e+03  4.21e+03    0.127    0.136      2.37      Target eBrem
-    9  0.00571 0.000162 -2.41e+03  4.07e+03    0.187    0.178      2.55      Target eBrem
-   10  0.00587 0.000331 -2.41e+03  4.06e+03    0.699    0.498      3.05      Target eBrem
-   11  0.00609  0.00113 -2.41e+03  3.94e+03    0.604    0.445       3.5      Target eBrem
-   12  0.00626  0.00182 -2.41e+03  3.78e+03    0.438     0.39      3.89      Target eBrem
-   13  0.00658  0.00226 -2.41e+03  3.77e+03    0.464    0.427      4.31      Target eBrem
-   14  0.00666  0.00236 -2.4e+03  3.21e+03    0.109   0.0794      4.39      Target eBrem
-   15  0.00675   0.0019 -2.4e+03  1.69e+03    0.716     0.54      4.93      Target eBrem
-   16  0.00669  0.00176 -2.4e+03  1.69e+03   0.0662   0.0747      5.01      Target eBrem
-   17  0.00663  0.00165 -2.4e+03       868   0.0704   0.0717      5.08      Target eBrem
-   18   0.0066  0.00145 -2.4e+03       866    0.229    0.207      5.29      Target eBrem
-   19  0.00712 -0.00238 -2.4e+03       846     1.14    0.635      5.92      Target eBrem
-   20  0.00714 -0.00242 -2.4e+03        50   0.0111   0.0113      5.93      Target eBrem
-   21  0.00473 -0.00214 -2.4e+03      37.2   0.0735   0.0781      6.01      Target eBrem
-   22 -0.00483  -0.0606 -2.4e+03      36.4    0.572    0.457      6.47      Target eBrem
-   23 0.000757   -0.042 -2.4e+03      35.2    0.324    0.309      6.78      Target eBrem
-   24     -0.2    0.255 -2.4e+03      33.9    0.513    0.381      7.16      Target eBrem
-   25   -0.227    0.294 -2.4e+03      29.2    0.173   0.0498      7.21      Target eIoni
-   26   -0.311    0.402 -2.4e+03      26.7    0.132    0.144      7.35      Target eBrem
-   27   -0.455    0.628 -2.4e+03      17.8    0.351    0.295      7.65      Target eBrem
-   28   -0.706     1.16 -2.4e+03      15.6    0.853    0.735      8.38      Target eIoni
-   29   -0.715     1.43 -2.4e+03      15.1     0.35    0.337      8.72      Target eBrem
-   30   -0.631      1.9 -2.4e+03      14.2    0.651    0.578       9.3      Target eBrem
-   31   -0.614     1.99 -2.4e+03      13.6    0.107   0.0999       9.4      Target eBrem
-   32   -0.626        3 -2.4e+03      8.58     1.68     1.29      10.7      Target eBrem
-   33    -1.08     3.52 -2.41e+03       5.4     3.19     2.89      13.6      Target eIoni
-   34    -1.72     3.56 -2.41e+03      2.74     2.66      2.3      15.9      Target eIoni
-   35    -1.87     3.43 -2.41e+03      1.65     0.98    0.851      16.7      Target eBrem
-   36    -1.79     3.36 -2.41e+03      1.01    0.339    0.306        17      Target eBrem
-   37    -1.82     3.34 -2.41e+03         0     1.01    0.742      17.8      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 149,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.706     1.16 -2.4e+03      1.34        0        0         0      Target initStep
-    1   -0.777      1.2 -2.4e+03         0     1.34     0.96      0.96      Target eBrem
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 146,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.227    0.294 -2.4e+03      4.59        0        0         0      Target initStep
-    1   -0.366    0.558 -2.4e+03      3.26     1.33    0.385     0.385      Target msc
-    2   -0.527    0.796 -2.4e+03      2.12     1.01    0.952      1.34      Target eBrem
-    3   -0.384    0.725 -2.4e+03      1.07    0.435    0.446      1.78      Target eBrem
-    4   -0.322    0.718 -2.4e+03     0.107    0.966    0.715       2.5      Target eBrem
-    5   -0.322     0.72 -2.4e+03         0    0.107   0.0303      2.53      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 5,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 3.77e-05 -7.95e-05 -2.58e+03   0.00111        0        0         0       World initStep
-    1 -0.000523  -0.0271 -2.58e+03         0  0.00111   0.0659    0.0659       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 4,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.77e-05 -7.02e-05 -2.61e+03   0.00177        0        0         0       World initStep
-    1   0.0548    0.017 -2.61e+03         0  0.00177    0.133     0.133       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 3,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.45e-06 -1.4e-05 -2.79e+03   0.00195        0        0         0       World initStep
-    1   0.0261  -0.0624 -2.79e+03         0  0.00195    0.156     0.156       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 2,   Parent ID = 1
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -6.31e-07 -5.6e-06 -2.87e+03   0.00111        0        0         0       World initStep
-    1   0.0272 -0.00293 -2.87e+03         0  0.00111   0.0667    0.0667       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 157,   Parent ID = 146
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.384    0.725 -2.4e+03     0.616        0        0         0      Target initStep
-    1     7.71    0.215 -2.4e+03     0.616        0     8.55      8.55     Tracker Transportation
-    2  2.4e+03     -150 -1.6e+03     0.616        0 2.52e+03  2.53e+03       World Transportation
-    3 2.94e+03     -184 -1.42e+03     0.616        0      576  3.11e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 156,   Parent ID = 146
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.527    0.796 -2.4e+03     0.127        0        0         0      Target initStep
-    1   -0.403    0.698 -2.4e+03         0    0.088    0.174     0.174      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 158,   Parent ID = 156
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.403    0.698 -2.4e+03    0.0387        0        0         0      Target initStep
-    1   -0.403    0.698 -2.4e+03         0   0.0387  0.00587   0.00587      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 155,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.79     3.36 -2.41e+03     0.297        0        0         0      Target initStep
-    1    -4.79 0.000642 -2.41e+03         0    0.088     6.59      6.59      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 159,   Parent ID = 155
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -4.79 0.000642 -2.41e+03     0.209        0        0         0      Target initStep
-    1    -4.79 -0.00509 -2.41e+03         0    0.209   0.0873    0.0873      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 154,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.87     3.43 -2.41e+03     0.107        0        0         0      Target initStep
-    1    -1.88     3.33 -2.41e+03         0    0.088    0.103     0.103      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 160,   Parent ID = 154
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.88     3.33 -2.41e+03    0.0188        0        0         0      Target initStep
-    1    -1.88     3.33 -2.41e+03         0   0.0188  0.00185   0.00185      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 153,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.626        3 -2.4e+03       3.3        0        0         0      Target initStep
-    1    -1.06     4.15 -2.41e+03         0        0     1.31      1.31      Target conv
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 161,   Parent ID = 153
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.06     4.15 -2.41e+03     0.351        0        0         0      Target initStep
-    1    -1.06     4.16 -2.41e+03         0    0.351    0.187     0.187      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 152,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.614     1.99 -2.4e+03      0.53        0        0         0      Target initStep
-    1    0.226     4.59 -2.4e+03     0.399        0     2.83      2.83      Target compt
-    2    0.264     4.68 -2.4e+03         0    0.088    0.204      3.03      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 164,   Parent ID = 152
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.264     4.68 -2.4e+03     0.311        0        0         0      Target initStep
-    1    0.262     4.69 -2.4e+03         0    0.311    0.157     0.157      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 163,   Parent ID = 152
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.226     4.59 -2.4e+03     0.132        0        0         0      Target initStep
-    1    0.226      4.6 -2.4e+03         0    0.132   0.0425    0.0425      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 151,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.631      1.9 -2.4e+03     0.202        0        0         0      Target initStep
-    1   -0.513     3.44 -2.4e+03     0.126        0      1.6       1.6      Target compt
-    2     -1.1     3.17 -2.4e+03         0    0.088    0.779      2.38      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 166,   Parent ID = 151
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -1.1     3.17 -2.4e+03    0.0376        0        0         0      Target initStep
-    1     -1.1     3.17 -2.4e+03         0   0.0376   0.0056    0.0056      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 165,   Parent ID = 151
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.513     3.44 -2.4e+03    0.0766        0        0         0      Target initStep
-    1   -0.512     3.44 -2.4e+03         0   0.0766   0.0179    0.0179      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 150,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.715     1.43 -2.4e+03     0.207        0        0         0      Target initStep
-    1   -0.687     1.79 -2.4e+03         0    0.088    0.417     0.417      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 167,   Parent ID = 150
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.687     1.79 -2.4e+03     0.119        0        0         0      Target initStep
-    1   -0.686     1.79 -2.4e+03         0    0.119    0.036     0.036      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 148,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.455    0.628 -2.4e+03      8.57        0        0         0      Target initStep
-    1   -0.908     1.29 -2.4e+03         0        0    0.898     0.898      Target conv
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 168,   Parent ID = 148
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.908     1.29 -2.4e+03      0.68        0        0         0      Target initStep
-    1   -0.932      1.3 -2.4e+03     0.232    0.449    0.374     0.374      Target eBrem
-    2   -0.926     1.29 -2.4e+03         0    0.232    0.102     0.476      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 147,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.311    0.402 -2.4e+03      2.29        0        0         0      Target initStep
-    1    -14.5     20.4 -2.41e+03      2.29        0     25.9      25.9       World Transportation
-    2     -894 1.26e+03 -2.94e+03      2.29        0 1.61e+03  1.63e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 145,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -0.2    0.255 -2.4e+03     0.746        0        0         0      Target initStep
-    1    -3.91     5.71 -2.4e+03         0    0.088      6.7       6.7      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 170,   Parent ID = 145
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.91     5.71 -2.4e+03     0.658        0        0         0      Target initStep
-    1    -3.93     5.73 -2.4e+03     0.283    0.262    0.233     0.233      Target eBrem
-    2    -3.93     5.74 -2.4e+03         0    0.283    0.137      0.37      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 171,   Parent ID = 170
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.93     5.73 -2.4e+03     0.113        0        0         0      Target initStep
-    1    -3.29     5.91 -2.4e+03         0    0.088    0.661     0.661      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 172,   Parent ID = 171
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.29     5.91 -2.4e+03    0.0253        0        0         0      Target initStep
-    1    -3.29     5.91 -2.4e+03         0   0.0253  0.00296   0.00296      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 144,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 0.000757   -0.042 -2.4e+03     0.861        0        0         0      Target initStep
-    1    -1.18     1.65 -2.4e+03     0.437        0     2.13      2.13      Target compt
-    2    0.732     4.79 -2.4e+03         0    0.088     3.72      5.84      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 174,   Parent ID = 144
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.732     4.79 -2.4e+03     0.349        0        0         0      Target initStep
-    1    0.743     4.79 -2.4e+03         0    0.349    0.185     0.185      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 173,   Parent ID = 144
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.18     1.65 -2.4e+03     0.424        0        0         0      Target initStep
-    1    -1.19     1.65 -2.4e+03         0    0.424    0.243     0.243      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 143,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.00483  -0.0606 -2.4e+03     0.236        0        0         0      Target initStep
-    1   -0.138 -0.00466 -2.4e+03     0.236        0     2.92      2.92     Tracker Transportation
-    2    -32.2     13.4 -1.7e+03     0.236        0      701       704     Chamber Transportation
-    3    -41.3     17.2 -1.5e+03     0.236        0      200       904     Tracker Transportation
-    4    -68.8     28.7     -900     0.236        0      601   1.5e+03     Chamber Transportation
-    5      -78     32.6     -700     0.236        0      200  1.71e+03     Tracker Transportation
-    6     -105     44.1     -100     0.236        0      601  2.31e+03     Chamber Transportation
-    7     -115     47.9      100     0.236        0      200  2.51e+03     Tracker Transportation
-    8     -142     59.4      700     0.236        0      601  3.11e+03     Chamber Transportation
-    9     -151     63.2      900     0.236        0      200  3.31e+03     Tracker Transportation
-   10     -179     74.7  1.5e+03     0.236        0      601  3.91e+03     Chamber Transportation
-   11     -188     78.6  1.7e+03     0.236        0      200  4.11e+03     Tracker Transportation
-   12     -220       92  2.4e+03     0.236        0      701  4.81e+03       World Transportation
-   13     -245      102 2.94e+03     0.236        0      541  5.35e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 142,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00473 -0.00214 -2.4e+03      12.7        0        0         0      Target initStep
-    1   -0.151   -0.268 -2.4e+03      12.7        0     3.38      3.38     Tracker Transportation
-    2    -32.4    -55.5 -1.7e+03      12.7        0      703       706     Chamber Transportation
-    3    -41.6    -71.3 -1.5e+03      12.7        0      201       907     Tracker Transportation
-    4    -69.3     -119     -900      12.7        0      602  1.51e+03     Chamber Transportation
-    5    -78.5     -134     -700      12.7        0      201  1.71e+03     Tracker Transportation
-    6     -106     -182     -100      12.7        0      602  2.31e+03     Chamber Transportation
-    7     -115     -197      100      12.7        0      201  2.51e+03     Tracker Transportation
-    8     -143     -245      700      12.7        0      602  3.12e+03     Chamber Transportation
-    9     -152     -261      900      12.7        0      201  3.32e+03     Tracker Transportation
-   10     -180     -308  1.5e+03      12.7        0      602  3.92e+03     Chamber Transportation
-   11     -189     -324  1.7e+03      12.7        0      201  4.12e+03     Tracker Transportation
-   12     -221     -379  2.4e+03      12.7        0      703  4.82e+03       World Transportation
-   13     -246     -422 2.94e+03      12.7        0      542  5.37e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 141,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00714 -0.00242 -2.4e+03       796        0        0         0      Target initStep
-    1   0.0183  -0.0113 -2.4e+03       796        0     3.45      3.45     Tracker Transportation
-    2     2.29    -1.81 -1.7e+03       796        0      700       703     Chamber Transportation
-    3     2.94    -2.32 -1.5e+03       796        0      200       903     Tracker Transportation
-    4     4.89    -3.87     -900       796        0      600   1.5e+03     Chamber Transportation
-    5     5.54    -4.38     -700       796        0      200   1.7e+03     Tracker Transportation
-    6     7.49    -5.92     -100       796        0      600   2.3e+03     Chamber Transportation
-    7     8.14    -6.43      100       796        0      200   2.5e+03     Tracker Transportation
-    8     10.1    -7.98      700       796        0      600   3.1e+03     Chamber Transportation
-    9     10.7    -8.49      900       796        0      200   3.3e+03     Tracker Transportation
-   10     12.7      -10  1.5e+03       796        0      600   3.9e+03     Chamber Transportation
-   11     13.3    -10.5  1.7e+03       796        0      200   4.1e+03     Tracker Transportation
-   12     15.6    -12.3  2.4e+03       796        0      700   4.8e+03       World Transportation
-   13     17.4    -13.7 2.94e+03       796        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 140,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00712 -0.00238 -2.4e+03      19.3        0        0         0      Target initStep
-    1   0.0158    -0.01 -2.4e+03      19.3        0     3.46      3.46     Tracker Transportation
-    2     1.77    -1.56 -1.7e+03      19.3        0      700       703     Chamber Transportation
-    3     2.27       -2 -1.5e+03      19.3        0      200       903     Tracker Transportation
-    4     3.77    -3.33     -900      19.3        0      600   1.5e+03     Chamber Transportation
-    5     4.28    -3.77     -700      19.3        0      200   1.7e+03     Tracker Transportation
-    6     5.78     -5.1     -100      19.3        0      600   2.3e+03     Chamber Transportation
-    7     6.28    -5.54      100      19.3        0      200   2.5e+03     Tracker Transportation
-    8     7.78    -6.86      700      19.3        0      600   3.1e+03     Chamber Transportation
-    9     8.29    -7.31      900      19.3        0      200   3.3e+03     Tracker Transportation
-   10     9.79    -8.63  1.5e+03      19.3        0      600   3.9e+03     Chamber Transportation
-   11     10.3    -9.07  1.7e+03      19.3        0      200   4.1e+03     Tracker Transportation
-   12       12    -10.6  2.4e+03      19.3        0      700   4.8e+03       World Transportation
-   13     13.4    -11.8 2.94e+03      19.3        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 139,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0066  0.00145 -2.4e+03      1.25        0        0         0      Target initStep
-    1   0.0161  -0.0114 -2.4e+03      1.25        0     4.09      4.09     Tracker Transportation
-    2     1.63     -2.2 -1.7e+03      1.25        0      700       704     Chamber Transportation
-    3     2.09    -2.83 -1.5e+03      1.25        0      200       904     Tracker Transportation
-    4     3.48    -4.71     -900      1.25        0      600   1.5e+03     Chamber Transportation
-    5     3.94    -5.33     -700      1.25        0      200   1.7e+03     Tracker Transportation
-    6     5.33    -7.21     -100      1.25        0      600   2.3e+03     Chamber Transportation
-    7     5.79    -7.84      100      1.25        0      200   2.5e+03     Tracker Transportation
-    8     7.17    -9.71      700      1.25        0      600   3.1e+03     Chamber Transportation
-    9     7.64    -10.3      900      1.25        0      200   3.3e+03     Tracker Transportation
-   10     9.02    -12.2  1.5e+03      1.25        0      600   3.9e+03     Chamber Transportation
-   11     9.48    -12.8  1.7e+03      1.25        0      200   4.1e+03     Tracker Transportation
-   12     11.1      -15  2.4e+03      1.25        0      700   4.8e+03       World Transportation
-   13     12.3    -16.7 2.94e+03      1.25        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 138,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00663  0.00165 -2.4e+03       819        0        0         0      Target initStep
-    1  0.00222 -0.00559 -2.4e+03       819        0      4.3       4.3     Tracker Transportation
-    2   -0.715    -1.18 -1.7e+03       819        0      700       704     Chamber Transportation
-    3    -0.92    -1.52 -1.5e+03       819        0      200       904     Tracker Transportation
-    4    -1.53    -2.53     -900       819        0      600   1.5e+03     Chamber Transportation
-    5    -1.74    -2.87     -700       819        0      200   1.7e+03     Tracker Transportation
-    6    -2.35    -3.88     -100       819        0      600   2.3e+03     Chamber Transportation
-    7    -2.56    -4.21      100       819        0      200   2.5e+03     Tracker Transportation
-    8    -3.17    -5.22      700       819        0      600   3.1e+03     Chamber Transportation
-    9    -3.38    -5.56      900       819        0      200   3.3e+03     Tracker Transportation
-   10    -3.99    -6.57  1.5e+03       819        0      600   3.9e+03     Chamber Transportation
-   11     -4.2    -6.91  1.7e+03       819        0      200   4.1e+03     Tracker Transportation
-   12    -4.92    -8.08  2.4e+03       819        0      700   4.8e+03       World Transportation
-   13    -5.47    -8.99 2.94e+03       819        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 137,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00669  0.00176 -2.4e+03      3.29        0        0         0      Target initStep
-    1  0.00987 -0.000259 -2.4e+03      3.29        0     4.37      4.37     Tracker Transportation
-    2    0.519   -0.323 -1.7e+03      3.29        0      700       704     Chamber Transportation
-    3    0.664   -0.415 -1.5e+03      3.29        0      200       904     Tracker Transportation
-    4      1.1   -0.692     -900      3.29        0      600   1.5e+03     Chamber Transportation
-    5     1.25   -0.785     -700      3.29        0      200   1.7e+03     Tracker Transportation
-    6     1.68    -1.06     -100      3.29        0      600   2.3e+03     Chamber Transportation
-    7     1.83    -1.15      100      3.29        0      200   2.5e+03     Tracker Transportation
-    8     2.26    -1.43      700      3.29        0      600   3.1e+03     Chamber Transportation
-    9     2.41    -1.52      900      3.29        0      200   3.3e+03     Tracker Transportation
-   10     2.84     -1.8  1.5e+03      3.29        0      600   3.9e+03     Chamber Transportation
-   11     2.99    -1.89  1.7e+03      3.29        0      200   4.1e+03     Tracker Transportation
-   12      3.5    -2.21  2.4e+03      3.29        0      700   4.8e+03       World Transportation
-   13     3.89    -2.46 2.94e+03      3.29        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 136,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00675   0.0019 -2.4e+03  1.52e+03        0        0         0      Target initStep
-    1  0.00657  0.00147 -2.4e+03         0        0    0.262     0.262      Target conv
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 175,   Parent ID = 136
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00657  0.00147 -2.4e+03  1.12e+03        0        0         0      Target initStep
-    1  0.00591 0.000321 -2.4e+03  1.12e+03    0.484    0.457     0.457      Target eBrem
-    2  0.00657 -0.00141 -2.4e+03       955    0.755    0.512     0.969      Target eBrem
-    3  0.00668 -0.00183 -2.4e+03       953   0.0939    0.102      1.07      Target eBrem
-    4 -0.000623 -0.00698 -2.4e+03       932     1.44     1.22      2.29      Target eBrem
-    5 -0.00172 -0.00761 -2.4e+03       932     0.11     0.11       2.4      Target eBrem
-    6 -0.00189 -0.00769 -2.4e+03       929   0.0199   0.0146      2.41      Target eIoni
-    7 -0.00424  -0.0087 -2.4e+03       927    0.131    0.137      2.55      Target eBrem
-    8  -0.0064 -0.00917 -2.4e+03      93.3    0.154    0.132      2.68      Target eBrem
-    9 -0.00755  -0.0082 -2.4e+03      77.3   0.0717   0.0607      2.74      Target eBrem
-   10 -0.00908  0.00965 -2.4e+03        73    0.504    0.358       3.1      Target eBrem
-   11  -0.0233    0.032 -2.4e+03      63.5    0.339    0.259      3.36      Target eBrem
-   12  -0.0968    0.101 -2.4e+03      53.8     1.06    0.825      4.18      Target eBrem
-   13  -0.0978    0.102 -2.4e+03      53.8   0.0095   0.0149       4.2     Tracker Transportation
-   14    -9.46     2.33 -2.3e+03      53.8   0.0184      100       104     Tracker StepLimiter
-   15    -14.6     3.83 -2.24e+03      53.8  0.00878     59.1       163     Tracker eIoni
-   16    -20.4     5.27 -2.18e+03      53.7  0.00788     62.5       226     Tracker eIoni
-   17    -24.3     6.03 -2.13e+03      53.7  0.00774     44.9       271     Tracker eIoni
-   18    -28.9     7.12 -2.08e+03      53.7  0.00842       54       325     Tracker eIoni
-   19    -37.6     8.41 -1.98e+03      53.7   0.0189      100       425     Tracker StepLimiter
-   20    -46.1     10.3 -1.88e+03      53.7   0.0227      100       525     Tracker StepLimiter
-   21    -53.3       13 -1.78e+03      53.7   0.0206      100       625     Tracker StepLimiter
-   22    -54.5     13.3 -1.76e+03      53.7  0.00239     17.1       642     Tracker eIoni
-   23    -56.1     13.8 -1.74e+03      53.7  0.00396     23.2       665     Tracker eIoni
-   24      -59     14.7 -1.7e+03      53.6  0.00696     41.8       707     Chamber Transportation
-   25    -59.6     14.9 -1.69e+03      53.6  0.00263     7.88       715     Chamber eIoni
-   26    -60.5     15.2 -1.68e+03      53.6  0.00681     14.5       729     Chamber eIoni
-   27    -60.7     15.3 -1.67e+03      53.6 0.000827     3.25       733     Chamber eIoni
-   28    -62.6     16.3 -1.64e+03      53.5   0.0152     31.7       764     Chamber eBrem
-   29    -64.5     17.6 -1.61e+03      53.5   0.0211     35.4       800     Chamber eIoni
-   30    -67.5     19.3 -1.57e+03      53.5   0.0261     38.7       838     Chamber eIoni
-   31    -68.7     20.2 -1.55e+03      53.5   0.0163     19.4       858     Chamber eIoni
-   32    -69.5     20.7 -1.53e+03      52.6  0.00409     15.1       873     Chamber eBrem
-   33      -70     20.9 -1.53e+03      52.6  0.00289     9.34       882     Chamber eIoni
-   34    -71.2     21.5 -1.5e+03      52.5   0.0108     25.2       907     Tracker Transportation
-   35    -76.6     23.9 -1.4e+03      52.5   0.0149      100  1.01e+03     Tracker StepLimiter
-   36    -79.6     25.2 -1.34e+03      52.5  0.00827     58.4  1.07e+03     Tracker eIoni
-   37    -81.6     26.2 -1.31e+03      52.5  0.00815     36.4   1.1e+03     Tracker eIoni
-   38    -82.3     26.5 -1.29e+03      52.5  0.00169     12.4  1.11e+03     Tracker eIoni
-   39    -83.3     26.9 -1.28e+03      52.5  0.00266     17.5  1.13e+03     Tracker eIoni
-   40    -89.2     28.9 -1.18e+03      52.5   0.0162      100  1.23e+03     Tracker StepLimiter
-   41    -93.2     30.2 -1.1e+03      52.4    0.011     71.7   1.3e+03     Tracker eIoni
-   42      -96     31.4 -1.05e+03      52.4   0.0107     53.1  1.36e+03     Tracker eIoni
-   43    -98.4     32.3 -1.01e+03      52.4  0.00805     43.3   1.4e+03     Tracker eIoni
-   44    -98.5     32.3 -1.01e+03      52.4 0.000253     1.33   1.4e+03     Tracker eIoni
-   45     -102     33.4     -946      52.4   0.0116     60.7  1.46e+03     Tracker eIoni
-   46     -104     34.4     -900      52.4   0.0094     46.2  1.51e+03     Chamber Transportation
-   47     -104     34.4     -898      52.4   0.0011     2.25  1.51e+03     Chamber eIoni
-   48     -112     35.7     -756      52.3   0.0629      142  1.65e+03     Chamber eIoni
-   49     -112     35.7     -756      52.3 0.000961    0.542  1.65e+03     Chamber eIoni
-   50     -114     35.1     -715      52.3   0.0232     40.6  1.69e+03     Chamber eIoni
-   51     -115     34.8     -700      52.3  0.00659     15.1  1.71e+03     Tracker Transportation
-   52     -115     34.8     -699      52.3 0.000529     1.03  1.71e+03     Tracker eIoni
-   53     -119     33.9     -638      52.2   0.0127       61  1.77e+03     Tracker eIoni
-   54     -121     33.6     -621      52.2  0.00188     16.9  1.79e+03     Tracker eIoni
-   55     -121     33.5     -618      52.2 0.000518     3.55  1.79e+03     Tracker eIoni
-   56     -127     31.3     -519      52.2   0.0182     98.6  1.89e+03     Tracker eIoni
-   57     -134     29.6     -420      52.2   0.0208      100  1.99e+03     Tracker StepLimiter
-   58     -141     28.3     -320      52.2   0.0163      100  2.09e+03     Tracker StepLimiter
-   59     -147     26.6     -220      52.1   0.0172      100  2.19e+03     Tracker StepLimiter
-   60     -150     25.8     -165      52.1   0.0117     54.9  2.24e+03     Tracker eIoni
-   61     -152     25.5     -143      52.1  0.00338     22.1  2.27e+03     Tracker eIoni
-   62     -152     25.4     -136      52.1  0.00107     7.53  2.27e+03     Tracker eIoni
-   63     -153     25.2     -122      52.1  0.00417     13.3  2.29e+03     Tracker eIoni
-   64     -155     24.9     -100      52.1  0.00425     22.4  2.31e+03     Chamber Transportation
-   65     -159     25.4      -14        52   0.0504     86.1   2.4e+03     Chamber eIoni
-   66     -159     25.4    -11.8        52  0.00112     2.23   2.4e+03     Chamber eIoni
-   67     -161     25.4     13.8        52   0.0147     25.6  2.42e+03     Chamber eIoni
-   68     -165     24.9      100      51.9   0.0515     86.4  2.51e+03     Tracker Transportation
-   69     -167     25.2      125      51.9  0.00393     24.8  2.54e+03     Tracker eIoni
-   70     -168     25.4      151      51.9  0.00558     26.5  2.56e+03     Tracker eIoni
-   71     -170     25.6      173      51.9  0.00501     21.7  2.58e+03     Tracker eIoni
-   72     -172     25.9      214      51.9  0.00806     41.2  2.62e+03     Tracker eIoni
-   73     -178     26.7      314      51.8   0.0179      100  2.72e+03     Tracker StepLimiter
-   74     -178     26.7      323      51.8  0.00134     9.28  2.73e+03     Tracker eIoni
-   75     -180       27      365      51.8  0.00697     41.7  2.78e+03     Tracker eIoni
-   76     -186       27      464      51.8   0.0162      100  2.88e+03     Tracker StepLimiter
-   77     -186       27      468      51.8 0.000142     3.63  2.88e+03     Tracker eIoni
-   78     -192     26.3      568      51.8   0.0194      100  2.98e+03     Tracker StepLimiter
-   79     -197     25.1      668      51.8   0.0178      100  3.08e+03     Tracker StepLimiter
-   80     -198     24.7      700      51.8  0.00679     32.2  3.11e+03     Chamber Transportation
-   81     -199     24.5      715      51.7   0.0104     14.7  3.13e+03     Chamber eIoni
-   82     -202     23.5      785      51.7   0.0339     70.6   3.2e+03     Chamber eIoni
-   83     -203     23.7      809      51.7   0.0178     23.8  3.22e+03     Chamber eIoni
-   84     -204       24      847      51.7   0.0221     37.7  3.26e+03     Chamber eIoni
-   85     -204     24.1      848      51.7 0.000545     1.46  3.26e+03     Chamber eIoni
-   86     -207     25.1      900      51.6   0.0288       52  3.31e+03     Tracker Transportation
-   87     -207     25.2      904      51.6 0.000124     4.14  3.32e+03     Tracker eIoni
-   88     -208     26.5    1e+03      51.6   0.0169      100  3.42e+03     Tracker StepLimiter
-   89     -209     28.1  1.1e+03      51.6    0.019      100  3.52e+03     Tracker StepLimiter
-   90     -211     29.2  1.2e+03      51.6    0.018      100  3.62e+03     Tracker StepLimiter
-   91     -212     29.6  1.3e+03      51.6    0.022      100  3.72e+03     Tracker StepLimiter
-   92     -214     30.2  1.4e+03      51.5   0.0159      100  3.82e+03     Tracker StepLimiter
-   93     -215     30.2 1.47e+03      51.5   0.0132       62  3.88e+03     Tracker eIoni
-   94     -216     30.3  1.5e+03      51.5   0.0051       34  3.91e+03     Chamber Transportation
-   95     -216     30.5 1.52e+03      51.5   0.0134     20.5  3.93e+03     Chamber eIoni
-   96     -216     30.6 1.53e+03      51.5  0.00318     8.84  3.94e+03     Chamber eIoni
-   97     -217     31.4 1.56e+03        51   0.0179     32.7  3.97e+03     Chamber eIoni
-   98     -218     31.5 1.58e+03        51   0.0137     17.4  3.99e+03     Chamber eIoni
-   99     -218     31.5 1.59e+03        51  0.00326     7.11     4e+03     Chamber eIoni
-  100     -221     31.9 1.63e+03        51   0.0224       47  4.05e+03     Chamber eIoni
-  101     -222     31.9 1.65e+03        51  0.00732     13.1  4.06e+03     Chamber eIoni
-  102     -222     31.9 1.65e+03        51  0.00274     4.13  4.06e+03     Chamber eIoni
-  103     -225     31.6  1.7e+03      50.9   0.0255     49.6  4.11e+03     Tracker Transportation
-  104     -227     31.8 1.74e+03      50.9  0.00653     37.6  4.15e+03     Tracker eIoni
-  105     -228     31.8 1.77e+03      50.9  0.00656       36  4.19e+03     Tracker eIoni
-  106     -230     31.8 1.81e+03      50.9  0.00584     36.1  4.22e+03     Tracker eIoni
-  107     -232     32.1 1.86e+03      42.1  0.00768     51.3  4.27e+03     Tracker eBrem
-  108     -237     32.1 1.96e+03      42.1   0.0159      100  4.37e+03     Tracker StepLimiter
-  109     -240     32.5 2.02e+03      42.1   0.0121     63.7  4.44e+03     Tracker eIoni
-  110     -245     32.9 2.12e+03      42.1   0.0168      100  4.54e+03     Tracker StepLimiter
-  111     -246     33.1 2.15e+03      42.1  0.00642     29.1  4.57e+03     Tracker eIoni
-  112     -248     33.4  2.2e+03      42.1  0.00691     43.4  4.61e+03     Tracker eIoni
-  113     -249     33.5 2.21e+03        42  0.00247     18.3  4.63e+03     Tracker eIoni
-  114     -254     33.5 2.31e+03        42   0.0176      100  4.73e+03     Tracker StepLimiter
-  115     -258     33.4  2.4e+03        42   0.0164     85.2  4.81e+03       World Transportation
-  116     -258     33.4 2.41e+03        42 0.000839     7.98  4.82e+03       World eIoni
-  117     -260     33.5 2.45e+03        42  0.00937       39  4.86e+03       World eIoni
-  118     -265     33.3 2.58e+03        42   0.0277      137     5e+03       World eIoni
-  119     -273     31.3 2.76e+03      41.9   0.0309      176  5.17e+03       World eIoni
-  120     -274     31.1 2.78e+03      41.9  0.00371     22.7   5.2e+03       World eIoni
-  121     -277     29.4 2.91e+03      41.9   0.0218      126  5.32e+03       World eIoni
-  122     -278     29.1 2.94e+03      41.9  0.00467     31.4  5.35e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 264,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -277     29.4 2.91e+03   0.00134        0        0         0       World initStep
-    1     -277     29.3 2.91e+03         0  0.00134   0.0874    0.0874       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 263,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -274     31.1 2.78e+03   0.00126        0        0         0       World initStep
-    1     -274     31.1 2.78e+03         0  0.00126   0.0797    0.0797       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 262,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -273     31.3 2.76e+03   0.00148        0        0         0       World initStep
-    1     -273     31.3 2.76e+03         0  0.00148    0.101     0.101       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 261,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -265     33.3 2.58e+03   0.00114        0        0         0       World initStep
-    1     -265     33.3 2.58e+03         0  0.00114   0.0693    0.0693       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 260,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -260     33.5 2.45e+03   0.00238        0        0         0       World initStep
-    1     -260     33.4 2.45e+03         0  0.00238    0.215     0.215       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 259,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -258     33.4 2.41e+03   0.00116        0        0         0       World initStep
-    1     -258     33.4 2.41e+03         0  0.00116   0.0711    0.0711       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 258,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -249     33.5 2.21e+03   0.00257        0        0         0     Tracker initStep
-    1     -249     33.6 2.21e+03         0  0.00257    0.242     0.242     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 257,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -248     33.4  2.2e+03   0.00104        0        0         0     Tracker initStep
-    1     -248     33.5  2.2e+03         0  0.00104   0.0605    0.0605     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 256,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -246     33.1 2.15e+03   0.00129        0        0         0     Tracker initStep
-    1     -246     33.1 2.15e+03         0  0.00129   0.0826    0.0826     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 255,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -240     32.5 2.02e+03    0.0011        0        0         0     Tracker initStep
-    1     -240     32.5 2.02e+03         0   0.0011   0.0653    0.0653     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 253,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -230     31.8 1.81e+03   0.00154        0        0         0     Tracker initStep
-    1     -230     31.8 1.81e+03         0  0.00154    0.108     0.108     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 252,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -228     31.8 1.77e+03    0.0011        0        0         0     Tracker initStep
-    1     -228     31.8 1.77e+03         0   0.0011   0.0651    0.0651     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 251,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -227     31.8 1.74e+03   0.00859        0        0         0     Tracker initStep
-    1     -227     32.6 1.74e+03   0.00458  0.00401     1.61      1.61     Tracker eIoni
-    2     -226     32.7 1.74e+03         0  0.00458    0.655      2.27     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 250,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -222     31.9 1.65e+03   0.00391        0        0         0     Chamber initStep
-    1     -222     31.9 1.65e+03         0  0.00391    0.268     0.268     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 249,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -222     31.9 1.65e+03    0.0039        0        0         0     Chamber initStep
-    1     -222     31.9 1.65e+03         0   0.0039    0.268     0.268     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 248,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -221     31.9 1.63e+03   0.00205        0        0         0     Chamber initStep
-    1     -221       32 1.63e+03         0  0.00205    0.107     0.107     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 247,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -218     31.5 1.59e+03   0.00239        0        0         0     Chamber initStep
-    1     -218     31.5 1.59e+03         0  0.00239    0.132     0.132     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 246,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -218     31.5 1.58e+03   0.00556        0        0         0     Chamber initStep
-    1     -218     31.5 1.58e+03         0  0.00556    0.466     0.466     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 245,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -217     31.4 1.56e+03     0.441        0        0         0     Chamber initStep
-    1     -192     50.5 1.56e+03     0.427   0.0121       32        32     Chamber eIoni
-    2     -170     44.8 1.57e+03      0.41    0.014     24.7      56.7     Chamber eIoni
-    3     -169     43.5 1.57e+03     0.406 0.000446     1.76      58.5     Chamber eIoni
-    4     -162     17.9 1.58e+03      0.39   0.0131     34.8      93.3     Chamber eIoni
-    5     -194     3.72  1.6e+03     0.372   0.0159     47.1       140     Chamber eIoni
-    6     -217     6.54 1.58e+03      0.35   0.0171     53.7       194     Chamber eIoni
-    7     -230    0.735 1.58e+03     0.339  0.00798     15.1       209     Chamber eIoni
-    8     -265     12.9 1.52e+03     0.315   0.0222       71       280     Chamber eIoni
-    9     -274     4.95 1.51e+03     0.289   0.0104     20.1       300     Chamber eIoni
-   10     -285    -11.1 1.51e+03     0.271   0.0129     25.8       326     Chamber eIoni
-   11     -293    -22.4  1.5e+03     0.259  0.00825     22.6       349     Chamber eIoni
-   12     -293    -22.6  1.5e+03     0.259  0.00013     0.23       349     Tracker Transportation
-   13     -291    -33.4 1.49e+03     0.255  0.00165     13.5       362     Tracker eIoni
-   14     -277    -62.4 1.46e+03     0.243   0.0107     47.9       410     Tracker eIoni
-   15     -273    -64.2 1.45e+03     0.242  0.00101      6.1       416     Tracker eIoni
-   16     -262    -68.9 1.45e+03     0.221  0.00143     14.8       431     Tracker eIoni
-   17     -186    -86.8 1.39e+03     0.199    0.021     94.9       526     Tracker eIoni
-   18     -184    -88.6 1.39e+03     0.195   0.0012     4.37       530     Tracker eIoni
-   19     -157     -104 1.35e+03     0.185  0.00912     49.9       580     Tracker eIoni
-   20     -157     -106 1.35e+03     0.182 0.000453     2.05       582     Tracker eIoni
-   21     -146     -143 1.34e+03     0.171   0.0096     40.5       623     Tracker eIoni
-   22     -147     -149 1.33e+03     0.168  0.00233     8.39       631     Tracker eIoni
-   23     -148     -153 1.33e+03     0.167 0.000925     3.79       635     Tracker eIoni
-   24     -137     -213 1.31e+03     0.128   0.0141     65.2       700     Tracker eIoni
-   25     -138     -214 1.31e+03     0.113 0.000366     1.97       702     Tracker eIoni
-   26     -138     -215 1.32e+03      0.11  0.00103     1.62       704     Tracker eIoni
-   27     -139     -218 1.32e+03     0.108  0.00126     5.57       709     Tracker eIoni
-   28     -145     -244 1.33e+03    0.0931   0.0126     31.3       741     Tracker eIoni
-   29     -145     -244 1.33e+03     0.092  1.9e-05    0.244       741     Tracker eIoni
-   30     -148     -247 1.34e+03     0.089  0.00174      6.6       748     Tracker eIoni
-   31     -155     -251 1.34e+03    0.0829  0.00416     10.9       759     Tracker eIoni
-   32     -164     -271 1.36e+03    0.0739  0.00906     26.7       785     Tracker eIoni
-   33     -167     -288 1.37e+03    0.0654  0.00851       22       807     Tracker eIoni
-   34     -176     -299 1.38e+03    0.0565  0.00889       18       825     Tracker eIoni
-   35     -181     -304 1.38e+03    0.0494  0.00583     9.82       835     Tracker eIoni
-   36     -181     -313 1.38e+03    0.0407   0.0071     10.6       846     Tracker eIoni
-   37     -182     -320 1.38e+03    0.0339  0.00682     8.55       854     Tracker eIoni
-   38     -185     -324 1.39e+03    0.0285  0.00539     6.56       861     Tracker eIoni
-   39     -189     -325 1.39e+03    0.0252  0.00331     5.19       866     Tracker eIoni
-   40     -191     -327 1.39e+03    0.0199  0.00533     4.45       870     Tracker eIoni
-   41     -193     -327 1.39e+03    0.0134  0.00401     2.53       873     Tracker eIoni
-   42     -194     -327 1.39e+03    0.0105  0.00287     2.33       875     Tracker eIoni
-   43     -194     -327 1.38e+03   0.00532  0.00517     1.91       877     Tracker eIoni
-   44     -194     -327 1.38e+03         0  0.00532    0.855       878     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 295,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -193     -327 1.39e+03   0.00249        0        0         0     Tracker initStep
-    1     -193     -327 1.39e+03         0  0.00249    0.231     0.231     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 294,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -181     -313 1.38e+03   0.00159        0        0         0     Tracker initStep
-    1     -181     -313 1.38e+03         0  0.00159    0.113     0.113     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 293,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -181     -304 1.38e+03   0.00125        0        0         0     Tracker initStep
-    1     -181     -304 1.38e+03         0  0.00125   0.0792    0.0792     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 292,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -155     -251 1.34e+03   0.00196        0        0         0     Tracker initStep
-    1     -155     -251 1.34e+03         0  0.00196    0.156     0.156     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 291,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -148     -247 1.34e+03   0.00125        0        0         0     Tracker initStep
-    1     -148     -247 1.34e+03         0  0.00125   0.0785    0.0785     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 290,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -145     -244 1.33e+03    0.0011        0        0         0     Tracker initStep
-    1     -145     -244 1.33e+03         0   0.0011   0.0651    0.0651     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 289,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -145     -244 1.33e+03    0.0019        0        0         0     Tracker initStep
-    1     -145     -244 1.33e+03         0   0.0019     0.15      0.15     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 288,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -139     -218 1.32e+03   0.00117        0        0         0     Tracker initStep
-    1     -139     -218 1.32e+03         0  0.00117   0.0719    0.0719     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 287,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -138     -215 1.32e+03   0.00179        0        0         0     Tracker initStep
-    1     -138     -215 1.32e+03         0  0.00179    0.136     0.136     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 286,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -138     -214 1.31e+03    0.0146        0        0         0     Tracker initStep
-    1     -139     -215 1.31e+03   0.00933  0.00531     2.52      2.52     Tracker eIoni
-    2     -140     -215 1.31e+03   0.00419  0.00515     1.73      4.25     Tracker eIoni
-    3     -140     -215 1.31e+03         0  0.00419     0.56      4.81     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 285,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -137     -213 1.31e+03    0.0247        0        0         0     Tracker initStep
-    1     -135     -216 1.31e+03    0.0192   0.0055     4.34      4.34     Tracker eIoni
-    2     -135     -218 1.31e+03    0.0149  0.00434     3.27      7.61     Tracker eIoni
-    3     -135     -219 1.31e+03     0.013 0.000569    0.762      8.38     Tracker eIoni
-    4     -135     -220 1.31e+03   0.00827  0.00476     2.28      10.7     Tracker eIoni
-    5     -134     -220 1.31e+03   0.00429  0.00398     1.56      12.2     Tracker eIoni
-    6     -134     -220 1.31e+03         0  0.00429    0.586      12.8     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 296,   Parent ID = 285
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -135     -219 1.31e+03   0.00126        0        0         0     Tracker initStep
-    1     -135     -219 1.31e+03         0  0.00126   0.0801    0.0801     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 284,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -147     -149 1.33e+03   0.00102        0        0         0     Tracker initStep
-    1     -147     -149 1.33e+03         0  0.00102    0.059     0.059     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 283,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -146     -143 1.34e+03  0.000996        0        0         0     Tracker initStep
-    1     -146     -143 1.34e+03         0 0.000996   0.0568    0.0568     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 282,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -157     -106 1.35e+03   0.00257        0        0         0     Tracker initStep
-    1     -157     -106 1.35e+03         0  0.00257    0.244     0.244     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 281,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -157     -104 1.35e+03   0.00121        0        0         0     Tracker initStep
-    1     -157     -104 1.35e+03         0  0.00121   0.0751    0.0751     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 280,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -184    -88.6 1.39e+03   0.00304        0        0         0     Tracker initStep
-    1     -184    -88.8 1.39e+03         0  0.00304    0.322     0.322     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 279,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -186    -86.8 1.39e+03   0.00117        0        0         0     Tracker initStep
-    1     -186    -86.8 1.39e+03         0  0.00117   0.0712    0.0712     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 278,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -262    -68.9 1.45e+03    0.0189        0        0         0     Tracker initStep
-    1     -262    -70.7 1.45e+03    0.0173  0.00153     2.05      2.05     Tracker msc
-    2     -262    -72.4 1.45e+03    0.0146  0.00267     2.02      4.07     Tracker msc
-    3     -262      -74 1.45e+03   0.00944  0.00409     2.29      6.37     Tracker eIoni
-    4     -263    -74.7 1.45e+03   0.00416  0.00528     1.75      8.11     Tracker eIoni
-    5     -263    -74.5 1.45e+03         0  0.00416    0.553      8.67     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 297,   Parent ID = 278
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -262      -74 1.45e+03   0.00112        0        0         0     Tracker initStep
-    1     -262      -74 1.45e+03         0  0.00112   0.0674    0.0674     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 277,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -277    -62.4 1.46e+03    0.0018        0        0         0     Tracker initStep
-    1     -277    -62.5 1.46e+03         0   0.0018    0.137     0.137     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 276,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -291    -33.4 1.49e+03   0.00187        0        0         0     Tracker initStep
-    1     -291    -33.4 1.49e+03         0  0.00187    0.146     0.146     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 275,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -293    -22.4  1.5e+03     0.004        0        0         0     Chamber initStep
-    1     -293    -22.4  1.5e+03   0.00381 0.000189    0.031     0.031     Chamber msc
-    2     -293    -22.4  1.5e+03   0.00318 0.000627   0.0466    0.0776     Chamber msc
-    3     -293    -22.4  1.5e+03     0.003 0.000181   0.0368     0.114     Chamber msc
-    4     -293    -22.3  1.5e+03   0.00282 0.000182   0.0437     0.158     Chamber msc
-    5     -293    -22.3  1.5e+03   0.00242 0.000401   0.0405     0.199     Chamber msc
-    6     -293    -22.3  1.5e+03         0  0.00242    0.135     0.333     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 274,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -285    -11.1 1.51e+03   0.00514        0        0         0     Chamber initStep
-    1     -285    -11.1 1.51e+03         0  0.00514    0.411     0.411     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 273,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -274     4.95 1.51e+03    0.0157        0        0         0     Chamber initStep
-    1     -274     4.95 1.51e+03    0.0157        0   0.0307    0.0307     Chamber eIoni
-    2     -274     4.94 1.51e+03    0.0125  0.00154    0.488     0.519     Chamber eIoni
-    3     -274     4.99 1.51e+03   0.00874 0.000384    0.324     0.843     Chamber eIoni
-    4     -274     4.95 1.51e+03         0  0.00874    0.976      1.82     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 299,   Parent ID = 273
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -274     4.99 1.51e+03   0.00338        0        0         0     Chamber initStep
-    1     -274     4.98 1.51e+03         0  0.00338    0.216     0.216     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 298,   Parent ID = 273
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -274     4.94 1.51e+03   0.00171        0        0         0     Chamber initStep
-    1     -274     4.94 1.51e+03         0  0.00171   0.0839    0.0839     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 272,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -265     12.9 1.52e+03     0.002        0        0         0     Chamber initStep
-    1     -265     12.9 1.52e+03         0    0.002    0.104     0.104     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 271,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -230    0.735 1.58e+03   0.00283        0        0         0     Chamber initStep
-    1     -230    0.742 1.58e+03         0  0.00283    0.168     0.168     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 270,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -217     6.54 1.58e+03    0.0049        0        0         0     Chamber initStep
-    1     -217     6.59 1.58e+03         0   0.0049    0.381     0.381     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 269,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -194     3.72  1.6e+03    0.0021        0        0         0     Chamber initStep
-    1     -194     3.73  1.6e+03         0   0.0021    0.111     0.111     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 268,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -162     17.9 1.58e+03   0.00296        0        0         0     Chamber initStep
-    1     -162     17.9 1.58e+03         0  0.00296    0.179     0.179     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 267,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -169     43.5 1.57e+03   0.00295        0        0         0     Chamber initStep
-    1     -169     43.5 1.57e+03         0  0.00295    0.178     0.178     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 266,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -170     44.8 1.57e+03    0.0031        0        0         0     Chamber initStep
-    1     -171     44.8 1.57e+03         0   0.0031    0.191     0.191     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 265,   Parent ID = 245
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -192     50.5 1.56e+03    0.0027        0        0         0     Chamber initStep
-    1     -192     50.5 1.56e+03         0   0.0027    0.158     0.158     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 244,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -216     30.6 1.53e+03    0.0031        0        0         0     Chamber initStep
-    1     -216     30.6 1.53e+03         0   0.0031    0.191     0.191     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 243,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -216     30.5 1.52e+03   0.00925        0        0         0     Chamber initStep
-    1     -216     30.6 1.52e+03   0.00755 0.000161    0.123     0.123     Chamber eIoni
-    2     -216     30.5 1.52e+03         0  0.00755    0.766     0.888     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 300,   Parent ID = 243
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -216     30.6 1.52e+03   0.00153        0        0         0     Chamber initStep
-    1     -216     30.6 1.52e+03         0  0.00153   0.0722    0.0722     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 242,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -215     30.2 1.47e+03   0.00192        0        0         0     Tracker initStep
-    1     -215     30.2 1.47e+03         0  0.00192    0.151     0.151     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 241,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -207     25.2      904   0.00159        0        0         0     Tracker initStep
-    1     -207     25.1      904         0  0.00159    0.113     0.113     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 240,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -204     24.1      848   0.00161        0        0         0     Chamber initStep
-    1     -204     24.1      848         0  0.00161   0.0776    0.0776     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 239,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -204       24      847   0.00138        0        0         0     Chamber initStep
-    1     -204       24      847         0  0.00138    0.063     0.063     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 238,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -203     23.7      809   0.00145        0        0         0     Chamber initStep
-    1     -203     23.7      809         0  0.00145   0.0675    0.0675     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 237,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -202     23.5      785    0.0015        0        0         0     Chamber initStep
-    1     -202     23.5      785         0   0.0015   0.0701    0.0701     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 236,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -199     24.5      715   0.00163        0        0         0     Chamber initStep
-    1     -199     24.5      715         0  0.00163   0.0787    0.0787     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 235,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -186       27      468   0.00792        0        0         0     Tracker initStep
-    1     -186     27.7      468   0.00215  0.00576     1.49      1.49     Tracker eIoni
-    2     -186     27.6      468         0  0.00215    0.182      1.67     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 234,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -180       27      365   0.00104        0        0         0     Tracker initStep
-    1     -180       27      365         0  0.00104   0.0607    0.0607     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 233,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -178     26.7      323   0.00137        0        0         0     Tracker initStep
-    1     -178     26.7      323         0  0.00137   0.0901    0.0901     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 232,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -172     25.9      214   0.00116        0        0         0     Tracker initStep
-    1     -172     25.8      214         0  0.00116    0.071     0.071     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 231,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -170     25.6      173    0.0636        0        0         0     Tracker initStep
-    1     -182     35.9      175    0.0531   0.0105     17.2      17.2     Tracker eIoni
-    2     -183     37.8      175    0.0503  0.00068     2.28      19.5     Tracker eIoni
-    3     -188     46.7      176     0.043  0.00736     11.8      31.3     Tracker eIoni
-    4     -186     51.2      182     0.038  0.00496     9.28      40.6     Tracker eIoni
-    5     -190     48.3      187    0.0304  0.00763     7.74      48.4     Tracker eIoni
-    6     -190     48.1      187      0.03 0.000365    0.957      49.3     Tracker eIoni
-    7     -191       48      192    0.0256  0.00441     5.57      54.9     Tracker eIoni
-    8     -191     48.1      193    0.0236 0.000677     1.08        56     Tracker eIoni
-    9     -189     46.8      195    0.0186  0.00499     4.12      60.1     Tracker eIoni
-   10     -188     47.3      197     0.015  0.00197     2.53      62.6     Tracker eIoni
-   11     -187     48.9      197    0.0117  0.00329     2.57      65.2     Tracker eIoni
-   12     -187     49.9      197   0.00703  0.00464     2.08      67.3     Tracker eIoni
-   13     -186     50.1      197   0.00112  0.00591     1.31      68.6     Tracker eIoni
-   14     -186     50.1      197         0  0.00112    0.067      68.7     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 303,   Parent ID = 231
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -188     47.3      197   0.00171        0        0         0     Tracker initStep
-    1     -188     47.3      197         0  0.00171    0.127     0.127     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 302,   Parent ID = 231
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -191     48.1      193   0.00132        0        0         0     Tracker initStep
-    1     -191     48.1      193         0  0.00132   0.0857    0.0857     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 301,   Parent ID = 231
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -183     37.8      175   0.00203        0        0         0     Tracker initStep
-    1     -183     37.8      175         0  0.00203    0.165     0.165     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 230,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -168     25.4      151   0.00202        0        0         0     Tracker initStep
-    1     -168     25.4      151         0  0.00202    0.165     0.165     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 229,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -167     25.2      125   0.00204        0        0         0     Tracker initStep
-    1     -167     25.1      125         0  0.00204    0.167     0.167     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 228,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -161     25.4     13.8     0.007        0        0         0     Chamber initStep
-    1     -161     25.4     13.8         0    0.007    0.675     0.675     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 227,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -159     25.4    -11.8   0.00146        0        0         0     Chamber initStep
-    1     -159     25.4    -11.8         0  0.00146   0.0675    0.0675     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 226,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -159     25.4      -14    0.0132        0        0         0     Chamber initStep
-    1     -159     25.4      -14   0.00482  0.00839     1.59      1.59     Chamber eIoni
-    2     -159     25.3    -13.9         0  0.00482    0.372      1.96     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 225,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -153     25.2     -122    0.0131        0        0         0     Tracker initStep
-    1     -152     24.5     -122   0.00972  0.00338     2.29      2.29     Tracker eIoni
-    2     -152     23.7     -122   0.00406  0.00425      1.6       3.9     Tracker eIoni
-    3     -151     23.9     -122         0  0.00406     0.53      4.43     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 304,   Parent ID = 225
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -152     23.7     -122   0.00142        0        0         0     Tracker initStep
-    1     -152     23.7     -122         0  0.00142    0.095     0.095     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 224,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -152     25.4     -136   0.00147        0        0         0     Tracker initStep
-    1     -152     25.4     -136         0  0.00147    0.101     0.101     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 223,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -152     25.5     -143   0.00442        0        0         0     Tracker initStep
-    1     -152     25.3     -143         0  0.00442    0.615     0.615     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 222,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -150     25.8     -165   0.00649        0        0         0     Tracker initStep
-    1     -150     25.9     -165   0.00489 0.000588   0.0994    0.0994     Tracker eIoni
-    2     -150     25.9     -165         0  0.00489    0.737     0.837     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 305,   Parent ID = 222
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -150     25.9     -165   0.00101        0        0         0     Tracker initStep
-    1     -150     25.9     -165         0  0.00101    0.058     0.058     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 221,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -127     31.3     -519   0.00108        0        0         0     Tracker initStep
-    1     -127     31.3     -519         0  0.00108   0.0635    0.0635     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 220,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -121     33.5     -618   0.00139        0        0         0     Tracker initStep
-    1     -121     33.5     -618         0  0.00139   0.0927    0.0927     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 219,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -121     33.6     -621   0.00366        0        0         0     Tracker initStep
-    1     -121     33.7     -621         0  0.00366    0.442     0.442     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 218,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -119     33.9     -638    0.0461        0        0         0     Tracker initStep
-    1     -113       33     -636    0.0382  0.00226      7.1       7.1     Tracker eIoni
-    2     -113     30.3     -638     0.036  0.00117     3.22      10.3     Tracker eIoni
-    3     -112     27.6     -640    0.0306  0.00311     3.74      14.1     Tracker eIoni
-    4     -108     26.8     -642    0.0246  0.00597      5.7      19.8     Tracker eIoni
-    5     -105     25.7     -644    0.0191  0.00551     4.32      24.1     Tracker eIoni
-    6     -103     25.3     -643     0.015  0.00407     3.25      27.3     Tracker eIoni
-    7     -103     27.1     -643    0.0114  0.00367     2.58      29.9     Tracker eIoni
-    8     -102     26.9     -642   0.00651  0.00484     2.03      31.9     Tracker eIoni
-    9     -102     26.6     -642   0.00309  0.00227    0.506      32.5     Tracker eIoni
-   10     -102     26.5     -642         0  0.00309    0.331      32.8     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 309,   Parent ID = 218
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -102     26.6     -642   0.00115        0        0         0     Tracker initStep
-    1     -102     26.6     -642         0  0.00115     0.07      0.07     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 308,   Parent ID = 218
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -112     27.6     -640   0.00229        0        0         0     Tracker initStep
-    1     -112     27.5     -640         0  0.00229    0.201     0.201     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 307,   Parent ID = 218
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -113     30.3     -638    0.0011        0        0         0     Tracker initStep
-    1     -113     30.3     -638         0   0.0011   0.0656    0.0656     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 306,   Parent ID = 218
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -113       33     -636   0.00561        0        0         0     Tracker initStep
-    1     -113       33     -636   0.00407 0.000451    0.147     0.147     Tracker eIoni
-    2     -113     32.8     -636         0  0.00407    0.532      0.68     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 310,   Parent ID = 306
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -113       33     -636   0.00109        0        0         0     Tracker initStep
-    1     -113       33     -636         0  0.00109   0.0648    0.0648     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 217,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -115     34.8     -699    0.0041        0        0         0     Tracker initStep
-    1     -115     34.9     -699   0.00212 0.000567    0.225     0.225     Tracker eIoni
-    2     -116       35     -699         0  0.00212    0.177     0.402     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 311,   Parent ID = 217
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -115     34.9     -699   0.00142        0        0         0     Tracker initStep
-    1     -116     34.9     -699         0  0.00142   0.0954    0.0954     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 216,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -114     35.1     -715   0.00797        0        0         0     Chamber initStep
-    1     -114     35.1     -715   0.00475 4.71e-05    0.017     0.017     Chamber eIoni
-    2     -114     35.1     -715         0  0.00475    0.363      0.38     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 312,   Parent ID = 216
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -114     35.1     -715   0.00318        0        0         0     Chamber initStep
-    1     -114     35.1     -715         0  0.00318    0.198     0.198     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 215,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -112     35.7     -756   0.00147        0        0         0     Chamber initStep
-    1     -112     35.7     -756         0  0.00147   0.0687    0.0687     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 214,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -112     35.7     -756   0.00201        0        0         0     Chamber initStep
-    1     -112     35.7     -756         0  0.00201    0.105     0.105     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 213,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -104     34.4     -898   0.00726        0        0         0     Chamber initStep
-    1     -104     34.4     -898         0  0.00726    0.716     0.716     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 212,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -102     33.4     -946   0.00126        0        0         0     Tracker initStep
-    1     -102     33.4     -946         0  0.00126   0.0794    0.0794     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 211,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -98.5     32.3 -1.01e+03   0.00372        0        0         0     Tracker initStep
-    1    -98.6     32.1 -1.01e+03         0  0.00372    0.457     0.457     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 210,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -98.4     32.3 -1.01e+03   0.00587        0        0         0     Tracker initStep
-    1    -98.1       32 -1.01e+03         0  0.00587     1.02      1.02     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 209,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -96     31.4 -1.05e+03   0.00112        0        0         0     Tracker initStep
-    1      -96     31.4 -1.05e+03         0  0.00112   0.0668    0.0668     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 208,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -93.2     30.2 -1.1e+03    0.0231        0        0         0     Tracker initStep
-    1    -94.6       33 -1.1e+03    0.0187  0.00437        4         4     Tracker eIoni
-    2    -94.7     35.3 -1.1e+03    0.0142  0.00448     3.18      7.18     Tracker eIoni
-    3    -94.4     36.5 -1.1e+03    0.0101  0.00409     2.46      9.64     Tracker eIoni
-    4    -93.8     36.3 -1.1e+03   0.00614  0.00267     1.25      10.9     Tracker eIoni
-    5    -93.7     35.8 -1.1e+03  1.41e-06  0.00614      1.1        12     Tracker eIoni
-    6    -93.7     35.8 -1.1e+03         0 1.41e-06 0.000704        12     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 313,   Parent ID = 208
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -93.8     36.3 -1.1e+03    0.0013        0        0         0     Tracker initStep
-    1    -93.8     36.3 -1.1e+03         0   0.0013   0.0836    0.0836     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 207,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -83.3     26.9 -1.28e+03   0.00109        0        0         0     Tracker initStep
-    1    -83.3     26.9 -1.28e+03         0  0.00109   0.0649    0.0649     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 206,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -82.3     26.5 -1.29e+03   0.00183        0        0         0     Tracker initStep
-    1    -82.4     26.5 -1.29e+03         0  0.00183     0.14      0.14     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 205,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -81.6     26.2 -1.31e+03   0.00594        0        0         0     Tracker initStep
-    1      -82     25.9 -1.31e+03    0.0003  0.00564     1.04      1.04     Tracker eIoni
-    2      -82     25.9 -1.31e+03         0   0.0003    0.013      1.05     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 204,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -79.6     25.2 -1.34e+03   0.00103        0        0         0     Tracker initStep
-    1    -79.7     25.2 -1.34e+03         0  0.00103   0.0592    0.0592     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 203,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -70     20.9 -1.53e+03   0.00251        0        0         0     Chamber initStep
-    1      -70     20.8 -1.53e+03         0  0.00251    0.142     0.142     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 201,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -68.7     20.2 -1.55e+03   0.00148        0        0         0     Chamber initStep
-    1    -68.7     20.2 -1.55e+03         0  0.00148   0.0691    0.0691     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 200,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -67.5     19.3 -1.57e+03    0.0098        0        0         0     Chamber initStep
-    1    -67.4     19.4 -1.57e+03   0.00155  0.00825     1.16      1.16     Chamber eIoni
-    2    -67.4     19.4 -1.57e+03         0  0.00155   0.0736      1.23     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 199,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -64.5     17.6 -1.61e+03   0.00203        0        0         0     Chamber initStep
-    1    -64.5     17.6 -1.61e+03         0  0.00203    0.106     0.106     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 197,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -60.7     15.3 -1.67e+03   0.00184        0        0         0     Chamber initStep
-    1    -60.7     15.3 -1.67e+03         0  0.00184   0.0928    0.0928     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 196,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -60.5     15.2 -1.68e+03    0.0743        0        0         0     Chamber initStep
-    1    -60.9     17.4 -1.68e+03    0.0692  0.00187     2.47      2.47     Chamber eIoni
-    2      -61     18.2 -1.68e+03    0.0529  0.00152     2.52      4.99     Chamber eIoni
-    3    -62.1     18.2 -1.67e+03    0.0509  0.00201     2.01      6.99     Chamber eIoni
-    4    -63.7     18.6 -1.67e+03    0.0414  0.00953     5.74      12.7     Chamber eIoni
-    5    -63.5     19.5 -1.67e+03    0.0324  0.00903     4.45      17.2     Chamber eIoni
-    6    -64.1     18.9 -1.67e+03    0.0184  0.00368     2.24      19.4     Chamber eIoni
-    7    -64.1     18.6 -1.67e+03    0.0113  0.00705     2.07      21.5     Chamber eIoni
-    8      -64     18.6 -1.67e+03   0.00188  0.00942     1.37      22.9     Chamber eIoni
-    9      -64     18.6 -1.67e+03         0  0.00188   0.0958      22.9     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 316,   Parent ID = 196
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -64.1     18.9 -1.67e+03    0.0103        0        0         0     Chamber initStep
-    1    -64.1     18.8 -1.67e+03         0   0.0103     1.24      1.24     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 315,   Parent ID = 196
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -61     18.2 -1.68e+03    0.0147        0        0         0     Chamber initStep
-    1    -61.2     18.1 -1.68e+03   0.00594   0.0088     1.74      1.74     Chamber eIoni
-    2    -61.2     18.1 -1.68e+03         0  0.00594    0.518      2.26     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 314,   Parent ID = 196
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -60.9     17.4 -1.68e+03   0.00324        0        0         0     Chamber initStep
-    1    -60.9     17.4 -1.68e+03         0  0.00324    0.203     0.203     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 195,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -59.6     14.9 -1.69e+03   0.00347        0        0         0     Chamber initStep
-    1    -59.6     14.9 -1.69e+03         0  0.00347    0.225     0.225     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 194,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -56.1     13.8 -1.74e+03    0.0035        0        0         0     Tracker initStep
-    1    -56.3     13.6 -1.74e+03         0   0.0035    0.411     0.411     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 193,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -54.5     13.3 -1.76e+03   0.00222        0        0         0     Tracker initStep
-    1    -54.4     13.3 -1.76e+03         0  0.00222    0.191     0.191     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 192,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -28.9     7.12 -2.08e+03   0.00114        0        0         0     Tracker initStep
-    1    -28.9     7.13 -2.08e+03         0  0.00114   0.0688    0.0688     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 191,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -24.3     6.03 -2.13e+03   0.00126        0        0         0     Tracker initStep
-    1    -24.3        6 -2.13e+03         0  0.00126   0.0796    0.0796     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 190,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -20.4     5.27 -2.18e+03    0.0448        0        0         0     Tracker initStep
-    1    -25.3     10.8 -2.18e+03    0.0402   0.0034     8.56      8.56     Tracker eIoni
-    2    -26.5     13.4 -2.17e+03    0.0355  0.00366     6.04      14.6     Tracker eIoni
-    3    -26.4     13.9 -2.17e+03    0.0324  0.00199     1.21      15.8     Tracker eIoni
-    4    -24.9       16 -2.17e+03    0.0273  0.00516     6.17        22     Tracker eIoni
-    5    -24.6       16 -2.17e+03    0.0248 0.000604    0.371      22.3     Tracker eIoni
-    6    -22.7     17.2 -2.17e+03    0.0206  0.00422     4.36      26.7     Tracker eIoni
-    7    -20.4     17.6 -2.16e+03    0.0163  0.00426     3.52      30.2     Tracker eIoni
-    8    -18.8     18.6 -2.17e+03    0.0134  0.00293     2.78        33     Tracker eIoni
-    9      -19     17.5 -2.17e+03   0.00932  0.00302     1.71      34.7     Tracker eIoni
-   10    -19.9     17.6 -2.17e+03    0.0035  0.00582     1.73      36.5     Tracker eIoni
-   11      -20     17.7 -2.17e+03         0   0.0035     0.41      36.9     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 321,   Parent ID = 190
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -19     17.5 -2.17e+03   0.00102        0        0         0     Tracker initStep
-    1      -19     17.5 -2.17e+03         0  0.00102   0.0588    0.0588     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 320,   Parent ID = 190
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -24.6       16 -2.17e+03   0.00187        0        0         0     Tracker initStep
-    1    -24.6       16 -2.17e+03         0  0.00187    0.145     0.145     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 319,   Parent ID = 190
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -26.4     13.9 -2.17e+03    0.0011        0        0         0     Tracker initStep
-    1    -26.4       14 -2.17e+03         0   0.0011   0.0655    0.0655     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 318,   Parent ID = 190
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -26.5     13.4 -2.17e+03  0.000993        0        0         0     Tracker initStep
-    1    -26.5     13.4 -2.17e+03         0 0.000993   0.0565    0.0565     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 317,   Parent ID = 190
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -25.3     10.8 -2.18e+03   0.00122        0        0         0     Tracker initStep
-    1    -25.3     10.8 -2.18e+03         0  0.00122    0.076     0.076     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 189,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -14.6     3.83 -2.24e+03    0.0059        0        0         0     Tracker initStep
-    1    -14.3     3.52 -2.24e+03  0.000309  0.00559     1.03      1.03     Tracker eIoni
-    2    -14.3     3.52 -2.24e+03         0 0.000309   0.0134      1.04     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 182,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.00189 -0.00769 -2.4e+03      2.78        0        0         0      Target initStep
-    1    0.366    0.168 -2.4e+03      2.18    0.594    0.598     0.598      Target msc
-    2    0.503      0.3 -2.4e+03      1.32    0.195    0.198     0.796      Target eBrem
-    3     0.52    0.329 -2.4e+03     0.885    0.112   0.0636      0.86      Target eBrem
-    4     0.49    0.365 -2.4e+03         0    0.885    0.631      1.49      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 323,   Parent ID = 182
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.52    0.329 -2.4e+03     0.325        0        0         0      Target initStep
-    1    -2.03     2.94 -2.4e+03         0    0.088     3.68      3.68      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 324,   Parent ID = 323
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.03     2.94 -2.4e+03     0.237        0        0         0      Target initStep
-    1    -2.04     2.95 -2.4e+03         0    0.237    0.105     0.105      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 322,   Parent ID = 182
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.503      0.3 -2.4e+03     0.666        0        0         0      Target initStep
-    1     1.32     2.05 -2.4e+03     0.585        0     2.36      2.36      Target compt
-    2      1.8     2.49 -2.4e+03         0    0.088     1.16      3.52      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 326,   Parent ID = 322
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.8     2.49 -2.4e+03     0.497        0        0         0      Target initStep
-    1     1.81      2.5 -2.4e+03         0    0.497    0.302     0.302      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 325,   Parent ID = 322
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.32     2.05 -2.4e+03     0.081        0        0         0      Target initStep
-    1     1.32     2.06 -2.4e+03         0    0.081   0.0195    0.0195      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 254,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -232     32.1 1.86e+03      8.79        0        0         0     Tracker initStep
-    1     -246     35.8  2.4e+03      8.79        0      539       539       World Transportation
-    2     -260     39.4 2.94e+03      8.79        0      540  1.08e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 202,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -69.5     20.7 -1.53e+03     0.894        0        0         0     Chamber initStep
-    1    -73.3     21.7 -1.5e+03     0.894        0     34.7      34.7     Tracker Transportation
-    2     -138     38.9     -900     0.894        0      604       638     Chamber Transportation
-    3     -160     44.7     -700     0.894        0      201       840     Tracker Transportation
-    4     -225     61.9     -100     0.894        0      604  1.44e+03     Chamber Transportation
-    5     -246     67.7      100     0.894        0      201  1.64e+03     Tracker Transportation
-    6     -311       85      700     0.894        0      604  2.25e+03     Chamber Transportation
-    7     -333     90.7      900     0.894        0      201  2.45e+03     Tracker Transportation
-    8     -398      108  1.5e+03     0.894        0      604  3.05e+03     Chamber Transportation
-    9     -420      114  1.7e+03     0.894        0      201  3.25e+03     Tracker Transportation
-   10     -495      134  2.4e+03     0.894        0      704  3.96e+03       World Transportation
-   11     -554      149 2.94e+03     0.894        0      543   4.5e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 198,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -62.6     16.3 -1.64e+03    0.0104        0        0         0     Chamber initStep
-    1    -62.8     16.4 -1.64e+03         0  0.00546     3.72      3.72     Chamber phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 327,   Parent ID = 198
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -62.8     16.4 -1.64e+03   0.00498        0        0         0     Chamber initStep
-    1    -62.8     16.3 -1.64e+03         0  0.00498    0.392     0.392     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 188,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0968    0.101 -2.4e+03       8.6        0        0         0      Target initStep
-    1  -0.0978    0.102 -2.4e+03       8.6        0   0.0149    0.0149     Tracker Transportation
-    2    -47.5     25.3 -1.7e+03       8.6        0      702       702     Chamber Transportation
-    3      -61     32.5 -1.5e+03       8.6        0      201       903     Tracker Transportation
-    4     -102     54.1     -900       8.6        0      602   1.5e+03     Chamber Transportation
-    5     -115     61.3     -700       8.6        0      201  1.71e+03     Tracker Transportation
-    6     -156     82.9     -100       8.6        0      602  2.31e+03     Chamber Transportation
-    7     -169     90.1      100       8.6        0      201  2.51e+03     Tracker Transportation
-    8     -210      112      700       8.6        0      602  3.11e+03     Chamber Transportation
-    9     -224      119      900       8.6        0      201  3.31e+03     Tracker Transportation
-   10     -264      141  1.5e+03       8.6        0      602  3.91e+03     Chamber Transportation
-   11     -278      148  1.7e+03       8.6        0      201  4.11e+03     Tracker Transportation
-   12     -325      173  2.4e+03       8.6        0      702  4.81e+03       World Transportation
-   13     -362      192 2.94e+03       8.6        0      542  5.36e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 187,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0233    0.032 -2.4e+03      9.18        0        0         0      Target initStep
-    1  -0.0834    0.104 -2.4e+03      9.18        0    0.836     0.836     Tracker Transportation
-    2    -50.8     60.5 -1.7e+03      9.18        0      704       705     Chamber Transportation
-    3    -65.3     77.8 -1.5e+03      9.18        0      201       907     Tracker Transportation
-    4     -109      130     -900      9.18        0      604  1.51e+03     Chamber Transportation
-    5     -123      147     -700      9.18        0      201  1.71e+03     Tracker Transportation
-    6     -167      199     -100      9.18        0      604  2.32e+03     Chamber Transportation
-    7     -181      216      100      9.18        0      201  2.52e+03     Tracker Transportation
-    8     -225      268      700      9.18        0      604  3.12e+03     Chamber Transportation
-    9     -239      285      900      9.18        0      201  3.32e+03     Tracker Transportation
-   10     -283      337  1.5e+03      9.18        0      604  3.93e+03     Chamber Transportation
-   11     -297      354  1.7e+03      9.18        0      201  4.13e+03     Tracker Transportation
-   12     -348      414  2.4e+03      9.18        0      704  4.83e+03       World Transportation
-   13     -387      461 2.94e+03      9.18        0      543  5.37e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 186,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.00908  0.00965 -2.4e+03      3.73        0        0         0      Target initStep
-    1  -0.0562   0.0683 -2.4e+03      3.73        0     1.09      1.09     Tracker Transportation
-    2    -30.4     37.8 -1.7e+03      3.73        0      702       703     Chamber Transportation
-    3      -39     48.6 -1.5e+03      3.73        0      200       903     Tracker Transportation
-    4      -65     80.9     -900      3.73        0      601   1.5e+03     Chamber Transportation
-    5    -73.7     91.7     -700      3.73        0      200  1.71e+03     Tracker Transportation
-    6    -99.7      124     -100      3.73        0      601  2.31e+03     Chamber Transportation
-    7     -108      135      100      3.73        0      200  2.51e+03     Tracker Transportation
-    8     -134      167      700      3.73        0      601  3.11e+03     Chamber Transportation
-    9     -143      178      900      3.73        0      200  3.31e+03     Tracker Transportation
-   10     -169      210  1.5e+03      3.73        0      601  3.91e+03     Chamber Transportation
-   11     -178      221  1.7e+03      3.73        0      200  4.11e+03     Tracker Transportation
-   12     -208      259  2.4e+03      3.73        0      702  4.81e+03       World Transportation
-   13     -231      288 2.94e+03      3.73        0      541  5.35e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 185,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.00755  -0.0082 -2.4e+03        16        0        0         0      Target initStep
-    1  -0.0269   0.0036 -2.4e+03        16        0     1.45      1.45     Tracker Transportation
-    2    -9.37     5.72 -1.7e+03        16        0      700       702     Chamber Transportation
-    3      -12     7.36 -1.5e+03        16        0      200       902     Tracker Transportation
-    4    -20.1     12.3     -900        16        0      600   1.5e+03     Chamber Transportation
-    5    -22.7     13.9     -700        16        0      200   1.7e+03     Tracker Transportation
-    6    -30.7     18.8     -100        16        0      600   2.3e+03     Chamber Transportation
-    7    -33.4     20.4      100        16        0      200   2.5e+03     Tracker Transportation
-    8    -41.4     25.3      700        16        0      600   3.1e+03     Chamber Transportation
-    9    -44.1       27      900        16        0      200   3.3e+03     Tracker Transportation
-   10    -52.1     31.9  1.5e+03        16        0      600   3.9e+03     Chamber Transportation
-   11    -54.8     33.5  1.7e+03        16        0      200   4.1e+03     Tracker Transportation
-   12    -64.1     39.2  2.4e+03        16        0      700   4.8e+03       World Transportation
-   13    -71.3     43.6 2.94e+03        16        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 184,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0064 -0.00917 -2.4e+03       833        0        0         0      Target initStep
-    1   -0.031  -0.0128 -2.4e+03       833        0     1.51      1.51     Tracker Transportation
-    2    -11.5    -1.72 -1.7e+03       833        0      700       702     Chamber Transportation
-    3    -14.7     -2.2 -1.5e+03       833        0      200       902     Tracker Transportation
-    4    -24.6    -3.67     -900       833        0      600   1.5e+03     Chamber Transportation
-    5    -27.8    -4.15     -700       833        0      200   1.7e+03     Tracker Transportation
-    6    -37.6    -5.61     -100       833        0      600   2.3e+03     Chamber Transportation
-    7    -40.9     -6.1      100       833        0      200   2.5e+03     Tracker Transportation
-    8    -50.7    -7.56      700       833        0      600   3.1e+03     Chamber Transportation
-    9      -54    -8.05      900       833        0      200   3.3e+03     Tracker Transportation
-   10    -63.8    -9.51  1.5e+03       833        0      600   3.9e+03     Chamber Transportation
-   11    -67.1      -10  1.7e+03       833        0      200   4.1e+03     Tracker Transportation
-   12    -78.5    -11.7  2.4e+03       833        0      700   4.8e+03       World Transportation
-   13    -87.4      -13 2.94e+03       833        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 183,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.00424  -0.0087 -2.4e+03      2.13        0        0         0      Target initStep
-    1  -0.0349   -0.017 -2.4e+03      2.13        0     1.64      1.64     Tracker Transportation
-    2    -13.1    -3.58 -1.7e+03      2.13        0      700       702     Chamber Transportation
-    3    -16.8     -4.6 -1.5e+03      2.13        0      200       902     Tracker Transportation
-    4    -28.1    -7.66     -900      2.13        0      600   1.5e+03     Chamber Transportation
-    5    -31.8    -8.68     -700      2.13        0      200   1.7e+03     Tracker Transportation
-    6      -43    -11.7     -100      2.13        0      600   2.3e+03     Chamber Transportation
-    7    -46.7    -12.8      100      2.13        0      200   2.5e+03     Tracker Transportation
-    8    -57.9    -15.8      700      2.13        0      600   3.1e+03     Chamber Transportation
-    9    -61.7    -16.8      900      2.13        0      200   3.3e+03     Tracker Transportation
-   10    -72.9    -19.9  1.5e+03      2.13        0      600   3.9e+03     Chamber Transportation
-   11    -76.6    -20.9  1.7e+03      2.13        0      200   4.1e+03     Tracker Transportation
-   12    -89.7    -24.5  2.4e+03      2.13        0      700   4.8e+03       World Transportation
-   13    -99.8    -27.2 2.94e+03      2.13        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 181,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.00172 -0.00761 -2.4e+03     0.442        0        0         0      Target initStep
-    1  -0.0203  -0.0168 -2.4e+03     0.442        0     1.79      1.79     Tracker Transportation
-    2    -7.29    -3.61 -1.7e+03     0.442        0      700       702     Chamber Transportation
-    3    -9.37    -4.63 -1.5e+03     0.442        0      200       902     Tracker Transportation
-    4    -15.6    -7.71     -900     0.442        0      600   1.5e+03     Chamber Transportation
-    5    -17.7    -8.74     -700     0.442        0      200   1.7e+03     Tracker Transportation
-    6    -23.9    -11.8     -100     0.442        0      600   2.3e+03     Chamber Transportation
-    7      -26    -12.8      100     0.442        0      200   2.5e+03     Tracker Transportation
-    8    -32.2    -15.9      700     0.442        0      600   3.1e+03     Chamber Transportation
-    9    -34.3    -16.9      900     0.442        0      200   3.3e+03     Tracker Transportation
-   10    -40.5      -20  1.5e+03     0.442        0      600   3.9e+03     Chamber Transportation
-   11    -42.6      -21  1.7e+03     0.442        0      200   4.1e+03     Tracker Transportation
-   12    -49.9    -24.6  2.4e+03     0.442        0      700   4.8e+03       World Transportation
-   13    -55.5    -27.4 2.94e+03     0.442        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 180,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.000623 -0.00698 -2.4e+03      19.6        0        0         0      Target initStep
-    1  -0.0197  -0.0132 -2.4e+03      19.6        0      1.9       1.9     Tracker Transportation
-    2    -7.04    -2.31 -1.7e+03      19.6        0      700       702     Chamber Transportation
-    3    -9.05    -2.96 -1.5e+03      19.6        0      200       902     Tracker Transportation
-    4    -15.1    -4.93     -900      19.6        0      600   1.5e+03     Chamber Transportation
-    5    -17.1    -5.58     -700      19.6        0      200   1.7e+03     Tracker Transportation
-    6    -23.1    -7.55     -100      19.6        0      600   2.3e+03     Chamber Transportation
-    7    -25.1     -8.2      100      19.6        0      200   2.5e+03     Tracker Transportation
-    8    -31.1    -10.2      700      19.6        0      600   3.1e+03     Chamber Transportation
-    9    -33.1    -10.8      900      19.6        0      200   3.3e+03     Tracker Transportation
-   10    -39.1    -12.8  1.5e+03      19.6        0      600   3.9e+03     Chamber Transportation
-   11    -41.2    -13.4  1.7e+03      19.6        0      200   4.1e+03     Tracker Transportation
-   12    -48.2    -15.7  2.4e+03      19.6        0      700   4.8e+03       World Transportation
-   13    -53.6    -17.5 2.94e+03      19.6        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 179,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00668 -0.00183 -2.4e+03      1.58        0        0         0      Target initStep
-    1  0.00788  -0.0146 -2.4e+03      1.58        0     3.11      3.11     Tracker Transportation
-    2    0.277    -2.89 -1.7e+03      1.58        0      700       703     Chamber Transportation
-    3    0.354    -3.72 -1.5e+03      1.58        0      200       903     Tracker Transportation
-    4    0.584    -6.18     -900      1.58        0      600   1.5e+03     Chamber Transportation
-    5    0.661    -7.01     -700      1.58        0      200   1.7e+03     Tracker Transportation
-    6    0.892    -9.47     -100      1.58        0      600   2.3e+03     Chamber Transportation
-    7    0.969    -10.3      100      1.58        0      200   2.5e+03     Tracker Transportation
-    8      1.2    -12.8      700      1.58        0      600   3.1e+03     Chamber Transportation
-    9     1.28    -13.6      900      1.58        0      200   3.3e+03     Tracker Transportation
-   10     1.51    -16.1  1.5e+03      1.58        0      600   3.9e+03     Chamber Transportation
-   11     1.58    -16.9  1.7e+03      1.58        0      200   4.1e+03     Tracker Transportation
-   12     1.85    -19.8  2.4e+03      1.58        0      700   4.8e+03       World Transportation
-   13     2.06      -22 2.94e+03      1.58        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 178,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00657 -0.00141 -2.4e+03       162        0        0         0      Target initStep
-    1   0.0119  -0.0168 -2.4e+03       162        0     3.22      3.22     Tracker Transportation
-    2     1.18    -3.36 -1.7e+03       162        0      700       703     Chamber Transportation
-    3     1.51    -4.32 -1.5e+03       162        0      200       903     Tracker Transportation
-    4     2.51    -7.18     -900       162        0      600   1.5e+03     Chamber Transportation
-    5     2.85    -8.14     -700       162        0      200   1.7e+03     Tracker Transportation
-    6     3.84      -11     -100       162        0      600   2.3e+03     Chamber Transportation
-    7     4.18      -12      100       162        0      200   2.5e+03     Tracker Transportation
-    8     5.18    -14.8      700       162        0      600   3.1e+03     Chamber Transportation
-    9     5.51    -15.8      900       162        0      200   3.3e+03     Tracker Transportation
-   10     6.51    -18.7  1.5e+03       162        0      600   3.9e+03     Chamber Transportation
-   11     6.84    -19.6  1.7e+03       162        0      200   4.1e+03     Tracker Transportation
-   12     8.01      -23  2.4e+03       162        0      700   4.8e+03       World Transportation
-   13     8.91    -25.5 2.94e+03       162        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 177,   Parent ID = 175
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00591 0.000321 -2.4e+03      3.24        0        0         0      Target initStep
-    1  0.00617  -0.0154 -2.4e+03      3.24        0     3.73      3.73     Tracker Transportation
-    2   0.0555    -2.97 -1.7e+03      3.24        0      700       704     Chamber Transportation
-    3   0.0695    -3.82 -1.5e+03      3.24        0      200       904     Tracker Transportation
-    4    0.112    -6.35     -900      3.24        0      600   1.5e+03     Chamber Transportation
-    5    0.126    -7.19     -700      3.24        0      200   1.7e+03     Tracker Transportation
-    6    0.168    -9.73     -100      3.24        0      600   2.3e+03     Chamber Transportation
-    7    0.182    -10.6      100      3.24        0      200   2.5e+03     Tracker Transportation
-    8    0.224    -13.1      700      3.24        0      600   3.1e+03     Chamber Transportation
-    9    0.239      -14      900      3.24        0      200   3.3e+03     Tracker Transportation
-   10    0.281    -16.5  1.5e+03      3.24        0      600   3.9e+03     Chamber Transportation
-   11    0.295    -17.3  1.7e+03      3.24        0      200   4.1e+03     Tracker Transportation
-   12    0.344    -20.3  2.4e+03      3.24        0      700   4.8e+03       World Transportation
-   13    0.382    -22.6 2.94e+03      3.24        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 135,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00666  0.00236 -2.4e+03       565        0        0         0      Target initStep
-    1  0.00911  0.00511 -2.4e+03         0        0        3         3      Target conv
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 328,   Parent ID = 135
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00911  0.00511 -2.4e+03       525        0        0         0      Target initStep
-    1  0.00961  0.00466 -2.4e+03       522    0.123    0.104     0.104      Target eBrem
-    2  0.00999  0.00271 -2.4e+03       484    0.489    0.409     0.513      Target eBrem
-    3     0.01   0.0024 -2.4e+03       403   0.0372   0.0406     0.553      Target eBrem
-    4    0.011 0.000494 -2.4e+03       338     0.52    0.402     0.955      Target eBrem
-    5   0.0109 0.000979 -2.4e+03       337    0.145    0.118      1.07      Target eBrem
-    6  0.00952   0.0045 -2.4e+03       336     1.43    0.918      1.99     Tracker Transportation
-    7    0.358    -4.69 -2.3e+03       336   0.0184      100       102     Tracker StepLimiter
-    8    0.723     -9.4 -2.2e+03       336   0.0224      100       202     Tracker StepLimiter
-    9     1.08    -14.1 -2.1e+03       336   0.0192      100       302     Tracker StepLimiter
-   10      1.4    -18.8   -2e+03       335   0.0207      100       402     Tracker StepLimiter
-   11     1.72    -23.6 -1.9e+03       335   0.0186      100       502     Tracker StepLimiter
-   12     1.73    -23.8 -1.9e+03       335 0.000571     3.42       505     Tracker eIoni
-   13     1.79    -24.7 -1.88e+03       335  0.00404     20.1       525     Tracker eIoni
-   14      1.8    -24.8 -1.88e+03       335 0.000133     1.62       527     Tracker eIoni
-   15      1.8    -24.8 -1.88e+03       335 3.35e-05    0.295       527     Tracker eIoni
-   16     2.09    -29.5 -1.78e+03       335   0.0206      100       627     Tracker StepLimiter
-   17      2.3      -33 -1.7e+03       335   0.0163     75.4       703     Chamber Transportation
-   18     2.35    -33.7 -1.69e+03       335  0.00822     13.8       717     Chamber eIoni
-   19     2.38    -34.4 -1.67e+03       335   0.0139     15.4       732     Chamber eIoni
-   20      2.4    -34.7 -1.66e+03       335  0.00513     6.38       738     Chamber eIoni
-   21     2.47    -36.1 -1.64e+03       335   0.0251     29.5       768     Chamber eIoni
-   22     2.59    -41.2 -1.54e+03       335   0.0387     98.8       867     Chamber eIoni
-   23     2.58    -43.1 -1.5e+03       335   0.0273     36.4       903     Tracker Transportation
-   24     2.52    -48.6 -1.4e+03       335   0.0177      100     1e+03     Tracker StepLimiter
-   25     2.51    -50.4 -1.37e+03       335  0.00576     33.1  1.04e+03     Tracker eIoni
-   26     2.43    -55.9 -1.27e+03       335   0.0233      100  1.14e+03     Tracker StepLimiter
-   27     2.29    -61.4 -1.17e+03       335   0.0165      100  1.24e+03     Tracker StepLimiter
-   28     2.28    -61.8 -1.16e+03       335 0.000832     7.22  1.24e+03     Tracker eIoni
-   29     2.19    -66.8 -1.07e+03       335   0.0176     90.7  1.33e+03     Tracker eIoni
-   30     2.15    -68.7 -1.04e+03       335  0.00621     33.7  1.37e+03     Tracker eIoni
-   31     2.06    -74.1     -936       335    0.021      100  1.47e+03     Tracker StepLimiter
-   32     2.04    -76.1     -900       335   0.0096     36.2   1.5e+03     Chamber Transportation
-   33     2.02    -76.4     -895       335  0.00437     5.43  1.51e+03     Chamber eIoni
-   34     1.99    -76.8     -888       335  0.00416     6.98  1.52e+03     Chamber eIoni
-   35     1.91    -77.5     -876       335   0.0064     12.1  1.53e+03     Chamber eIoni
-   36     1.89    -77.6     -873       335  0.00164     2.39  1.53e+03     Chamber eIoni
-   37     1.61    -80.8     -812       335   0.0347     61.1  1.59e+03     Chamber eIoni
-   38     1.61    -80.9     -811       335 0.000342    0.771  1.59e+03     Chamber eIoni
-   39     1.51    -82.5     -781       335   0.0802     30.9  1.62e+03     Chamber eIoni
-   40     1.46    -83.4     -765       335    0.012     15.9  1.64e+03     Chamber eIoni
-   41      1.4    -84.4     -746       335   0.0151     18.6  1.66e+03     Chamber eIoni
-   42     1.29    -86.4     -707       335   0.0206     39.2   1.7e+03     Chamber eIoni
-   43     1.26    -86.7     -700       335  0.00392     6.93   1.7e+03     Tracker Transportation
-   44     1.05    -91.7     -600       335   0.0203      100   1.8e+03     Tracker StepLimiter
-   45    0.826    -96.6     -500       335   0.0184      100   1.9e+03     Tracker StepLimiter
-   46    0.813      -97     -494       335  0.00119      6.4  1.91e+03     Tracker eIoni
-   47    0.783      -99     -452       335  0.00696     42.2  1.95e+03     Tracker eIoni
-   48    0.746     -103     -363       335   0.0161     88.8  2.04e+03     Tracker eIoni
-   49     0.74     -104     -357       335  0.00223      6.5  2.05e+03     Tracker eIoni
-   50    0.735     -104     -353       335 0.000351     3.19  2.05e+03     Tracker eIoni
-   51    0.719     -104     -342       335  0.00218     11.9  2.06e+03     Tracker eIoni
-   52    0.718     -104     -341       335        0     0.51  2.06e+03     Tracker eIoni
-   53    0.615     -108     -275       335   0.0109     65.9  2.13e+03     Tracker eIoni
-   54     0.52     -111     -201       335   0.0143     74.6   2.2e+03     Tracker eIoni
-   55    0.493     -112     -180       335  0.00515     20.5  2.22e+03     Tracker eIoni
-   56    0.468     -113     -159       335  0.00628     21.2  2.25e+03     Tracker eIoni
-   57    0.371     -116     -100       335   0.0122     59.2   2.3e+03     Chamber Transportation
-   58    0.256     -118    -68.4       335   0.0221     31.6  2.34e+03     Chamber eIoni
-   59   0.0562     -119    -36.3       335   0.0219     32.2  2.37e+03     Chamber eIoni
-   60   -0.127     -121     2.49       335   0.0387     38.8  2.41e+03     Chamber eIoni
-   61   -0.157     -122     13.3       335  0.00797     10.9  2.42e+03     Chamber eIoni
-   62   -0.178     -122     25.8       335  0.00786     12.5  2.43e+03     Chamber eIoni
-   63   -0.185     -122     30.5       335  0.00477      4.7  2.44e+03     Chamber eIoni
-   64   -0.186     -123     31.2       335 0.000548    0.686  2.44e+03     Chamber eIoni
-   65   -0.189     -123     34.3       335  0.00242     3.15  2.44e+03     Chamber eIoni
-   66    -0.17     -126       95       335   0.0407     60.8   2.5e+03     Chamber eIoni
-   67   -0.161     -126      100       335  0.00414     4.97  2.51e+03     Tracker Transportation
-   68  -0.0642     -129      162       335   0.0132     61.7  2.57e+03     Tracker eIoni
-   69    0.138     -135      261       335   0.0182      100  2.67e+03     Tracker StepLimiter
-   70     0.43     -140      361       335   0.0174      100  2.77e+03     Tracker StepLimiter
-   71    0.757     -145      461       334   0.0185      100  2.87e+03     Tracker StepLimiter
-   72     1.06     -150      561       334   0.0182      100  2.97e+03     Tracker StepLimiter
-   73     1.36     -156      661       334   0.0214      100  3.07e+03     Tracker StepLimiter
-   74     1.49     -158      700       334  0.00674     39.1  3.11e+03     Chamber Transportation
-   75     1.61     -160      740       334   0.0187     39.9  3.15e+03     Chamber eIoni
-   76     1.82     -164      821       334   0.0455     81.4  3.23e+03     Chamber eIoni
-   77     2.02     -168      890       332    0.043     69.4   3.3e+03     Chamber eBrem
-   78     2.05     -169      900       332  0.00456     9.57  3.31e+03     Tracker Transportation
-   79     2.25     -172      968       332   0.0121     67.8  3.37e+03     Tracker eIoni
-   80     2.42     -176 1.03e+03       332    0.014     66.8  3.44e+03     Tracker eIoni
-   81     2.63     -181 1.13e+03       332   0.0211      100  3.54e+03     Tracker StepLimiter
-   82     2.64     -181 1.14e+03       332 0.000454     3.82  3.54e+03     Tracker eIoni
-   83     2.78     -185 1.21e+03       332   0.0112     68.2  3.61e+03     Tracker eIoni
-   84        3     -191 1.31e+03       332   0.0151      100  3.71e+03     Tracker StepLimiter
-   85     3.23     -196 1.41e+03       332   0.0193      100  3.81e+03     Tracker StepLimiter
-   86     3.28     -197 1.43e+03       332  0.00413     20.7  3.83e+03     Tracker eIoni
-   87     3.42     -201  1.5e+03       332   0.0184     73.6  3.91e+03     Chamber Transportation
-   88     3.42     -203 1.54e+03       281   0.0223     40.3  3.95e+03     Chamber eBrem
-   89     3.39     -205 1.56e+03       281  0.00977     19.9  3.97e+03     Chamber eIoni
-   90     3.27     -206 1.59e+03       281    0.023     34.5     4e+03     Chamber eIoni
-   91     3.23     -207  1.6e+03       281   0.0072      9.1  4.01e+03     Chamber eIoni
-   92     3.19     -207 1.61e+03       281  0.00642     9.67  4.02e+03     Chamber eIoni
-   93     2.77     -212  1.7e+03       280   0.0537     86.8  4.11e+03     Tracker Transportation
-   94     2.57     -214 1.73e+03       280  0.00309     27.2  4.13e+03     Tracker eIoni
-   95     1.83     -219 1.83e+03       280   0.0212      100  4.23e+03     Tracker StepLimiter
-   96     1.24     -224 1.91e+03       280   0.0162     81.5  4.32e+03     Tracker eIoni
-   97    0.498     -230 2.01e+03       280   0.0177      100  4.42e+03     Tracker StepLimiter
-   98   -0.316     -235 2.11e+03       280   0.0194      100  4.52e+03     Tracker StepLimiter
-   99   -0.474     -237 2.13e+03       280  0.00385     19.6  4.54e+03     Tracker eIoni
-  100   -0.577     -237 2.14e+03       280   0.0017     12.5  4.55e+03     Tracker eIoni
-  101    -1.27     -242 2.23e+03       280   0.0175     85.7  4.63e+03     Tracker eIoni
-  102    -1.61     -245 2.28e+03       280   0.0137     51.9  4.69e+03     Tracker eIoni
-  103    -1.76     -246  2.3e+03       280  0.00396     25.9  4.71e+03     Tracker eIoni
-  104     -1.9     -248 2.33e+03       280  0.00451     24.4  4.74e+03     Tracker eIoni
-  105    -2.33     -252  2.4e+03       280   0.0114     72.4  4.81e+03       World Transportation
-  106    -2.78     -256 2.48e+03       280   0.0149     81.8  4.89e+03       World eIoni
-  107    -2.86     -257  2.5e+03       280  0.00234     15.5  4.91e+03       World eIoni
-  108    -2.87     -258  2.5e+03       280  0.00064     3.58  4.91e+03       World eIoni
-  109    -3.09     -260 2.54e+03       280  0.00683     41.9  4.95e+03       World eIoni
-  110    -4.06     -270 2.72e+03       280   0.0366      178  5.13e+03       World eIoni
-  111    -4.15     -271 2.74e+03       280  0.00404     18.9  5.15e+03       World eIoni
-  112    -4.45     -275  2.8e+03       280    0.014     64.7  5.21e+03       World eIoni
-  113    -4.51     -275 2.82e+03       280  0.00307     14.5  5.23e+03       World eIoni
-  114    -5.03     -282 2.94e+03       280   0.0271      122  5.35e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 407,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -4.51     -275 2.82e+03   0.00112        0        0         0       World initStep
-    1    -4.53     -275 2.82e+03         0  0.00112   0.0673    0.0673       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 406,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -4.45     -275  2.8e+03   0.00146        0        0         0       World initStep
-    1    -4.49     -274  2.8e+03         0  0.00146   0.0994    0.0994       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 405,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -4.15     -271 2.74e+03   0.00282        0        0         0       World initStep
-    1    -4.28     -271 2.74e+03         0  0.00282    0.283     0.283       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 404,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -4.06     -270 2.72e+03   0.00324        0        0         0       World initStep
-    1    -4.16     -270 2.72e+03         0  0.00324    0.359     0.359       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 403,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -3.09     -260 2.54e+03   0.00103        0        0         0       World initStep
-    1    -3.07     -260 2.54e+03         0  0.00103   0.0598    0.0598       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 402,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.87     -258  2.5e+03   0.00406        0        0         0       World initStep
-    1    -2.68     -257  2.5e+03         0  0.00406    0.531     0.531       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 401,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.86     -257  2.5e+03   0.00099        0        0         0       World initStep
-    1    -2.86     -257  2.5e+03         0  0.00099   0.0563    0.0563       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 400,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.78     -256 2.48e+03   0.00391        0        0         0       World initStep
-    1    -2.86     -256 2.48e+03         0  0.00391    0.498     0.498       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 399,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -1.9     -248 2.33e+03   0.00219        0        0         0     Tracker initStep
-    1    -1.98     -248 2.33e+03         0  0.00219    0.188     0.188     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 398,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.76     -246  2.3e+03   0.00404        0        0         0     Tracker initStep
-    1    -1.52     -246  2.3e+03         0  0.00404    0.527     0.527     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 397,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.61     -245 2.28e+03   0.00114        0        0         0     Tracker initStep
-    1    -1.59     -245 2.28e+03         0  0.00114   0.0691    0.0691     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 396,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.27     -242 2.23e+03   0.00157        0        0         0     Tracker initStep
-    1    -1.31     -242 2.23e+03         0  0.00157    0.111     0.111     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 395,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.577     -237 2.14e+03   0.00213        0        0         0     Tracker initStep
-    1   -0.536     -237 2.14e+03         0  0.00213    0.179     0.179     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 394,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.474     -237 2.13e+03   0.00182        0        0         0     Tracker initStep
-    1   -0.443     -237 2.13e+03         0  0.00182     0.14      0.14     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 393,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.24     -224 1.91e+03   0.00121        0        0         0     Tracker initStep
-    1     1.25     -224 1.91e+03         0  0.00121   0.0753    0.0753     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 392,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.57     -214 1.73e+03   0.00177        0        0         0     Tracker initStep
-    1     2.62     -214 1.73e+03         0  0.00177    0.134     0.134     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 391,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.19     -207 1.61e+03   0.00285        0        0         0     Chamber initStep
-    1      3.2     -207 1.61e+03         0  0.00285     0.17      0.17     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 390,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.23     -207  1.6e+03   0.00219        0        0         0     Chamber initStep
-    1     3.22     -207  1.6e+03         0  0.00219    0.118     0.118     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 389,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.27     -206 1.59e+03    0.0384        0        0         0     Chamber initStep
-    1     4.08     -207 1.59e+03    0.0293  0.00149     1.49      1.49     Chamber eIoni
-    2      3.8     -207 1.59e+03    0.0235  0.00584     3.08      4.58     Chamber eIoni
-    3     3.61     -207 1.59e+03    0.0191  0.00239    0.933      5.51     Chamber eIoni
-    4     3.37     -207 1.59e+03    0.0112  0.00562     1.72      7.23     Chamber eIoni
-    5     3.49     -207 1.59e+03   0.00428  0.00545    0.912      8.14     Chamber eIoni
-    6     3.52     -207 1.59e+03         0  0.00428    0.309      8.45     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 411,   Parent ID = 389
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.49     -207 1.59e+03   0.00149        0        0         0     Chamber initStep
-    1     3.49     -207 1.59e+03         0  0.00149   0.0694    0.0694     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 410,   Parent ID = 389
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.37     -207 1.59e+03   0.00226        0        0         0     Chamber initStep
-    1     3.37     -207 1.59e+03         0  0.00226    0.123     0.123     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 409,   Parent ID = 389
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.61     -207 1.59e+03   0.00201        0        0         0     Chamber initStep
-    1     3.62     -207 1.59e+03         0  0.00201    0.105     0.105     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 408,   Parent ID = 389
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.08     -207 1.59e+03   0.00759        0        0         0     Chamber initStep
-    1     4.14     -207 1.59e+03         0  0.00759    0.772     0.772     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 388,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.39     -205 1.56e+03   0.00232        0        0         0     Chamber initStep
-    1      3.4     -205 1.56e+03         0  0.00232    0.128     0.128     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 386,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.28     -197 1.43e+03    0.0159        0        0         0     Tracker initStep
-    1     5.15     -198 1.43e+03    0.0128  0.00314     2.73      2.73     Tracker eIoni
-    2        6     -197 1.43e+03   0.00628  0.00653     2.25      4.98     Tracker eIoni
-    3     6.33     -196 1.43e+03         0  0.00628     1.14      6.11     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 385,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.78     -185 1.21e+03    0.0268        0        0         0     Tracker initStep
-    1     2.22     -183 1.21e+03    0.0209  0.00228     2.23      2.23     Tracker eIoni
-    2     2.26     -182 1.21e+03    0.0159  0.00191     1.94      4.17     Tracker eIoni
-    3    0.705     -182 1.21e+03    0.0115  0.00435     2.72      6.89     Tracker eIoni
-    4    0.551     -181 1.21e+03   0.00528  0.00624     2.06      8.95     Tracker eIoni
-    5    0.536     -182 1.21e+03   0.00217  0.00311     0.66      9.61     Tracker eIoni
-    6    0.607     -182 1.21e+03         0  0.00217    0.184      9.79     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 413,   Parent ID = 385
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.26     -182 1.21e+03   0.00309        0        0         0     Tracker initStep
-    1     2.18     -181 1.21e+03         0  0.00309    0.332     0.332     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 412,   Parent ID = 385
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.22     -183 1.21e+03   0.00363        0        0         0     Tracker initStep
-    1     2.05     -183 1.21e+03         0  0.00363    0.437     0.437     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 384,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.64     -181 1.14e+03   0.00179        0        0         0     Tracker initStep
-    1     2.62     -181 1.14e+03         0  0.00179    0.136     0.136     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 383,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.42     -176 1.03e+03   0.00113        0        0         0     Tracker initStep
-    1     2.44     -176 1.03e+03         0  0.00113   0.0679    0.0679     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 382,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.25     -172      968    0.0014        0        0         0     Tracker initStep
-    1     2.21     -172      968         0   0.0014   0.0938    0.0938     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 380,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.82     -164      821   0.00343        0        0         0     Chamber initStep
-    1     1.85     -164      821         0  0.00343    0.221     0.221     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 379,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.61     -160      740     0.017        0        0         0     Chamber initStep
-    1     1.35     -160      740    0.0124  0.00235     1.14      1.14     Chamber eIoni
-    2     1.36     -160      740   0.00127   0.0112      1.5      2.64     Chamber eIoni
-    3     1.36     -160      740         0  0.00127   0.0563       2.7     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 414,   Parent ID = 379
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.35     -160      740   0.00219        0        0         0     Chamber initStep
-    1     1.35     -160      740         0  0.00219    0.117     0.117     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 378,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0642     -129      162   0.00108        0        0         0     Tracker initStep
-    1  -0.0901     -129      162         0  0.00108   0.0635    0.0635     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 377,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -0.17     -126       95   0.00356        0        0         0     Chamber initStep
-    1    -0.15     -126       95         0  0.00356    0.233     0.233     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 376,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.189     -123     34.3    0.0327        0        0         0     Chamber initStep
-    1   -0.659     -123     34.5    0.0258   0.0069     3.44      3.44     Chamber eIoni
-    2    -1.17     -124     34.5      0.02  0.00582     2.74      6.18     Chamber eIoni
-    3   -0.968     -124     34.3    0.0144  0.00149    0.602      6.78     Chamber eIoni
-    4   -0.918     -124     34.2    0.0121 0.000804    0.151      6.93     Chamber eIoni
-    5   -0.954     -124     34.1  0.000314   0.0118     1.47       8.4     Chamber eIoni
-    6   -0.955     -124     34.1         0 0.000314   0.0133      8.41     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 416,   Parent ID = 376
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.918     -124     34.2   0.00149        0        0         0     Chamber initStep
-    1   -0.927     -124     34.2         0  0.00149   0.0699    0.0699     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 415,   Parent ID = 376
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.968     -124     34.3   0.00408        0        0         0     Chamber initStep
-    1   -0.937     -124     34.3         0  0.00408    0.286     0.286     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 375,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.186     -123     31.2   0.00157        0        0         0     Chamber initStep
-    1    -0.19     -122     31.2         0  0.00157   0.0746    0.0746     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 374,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.185     -122     30.5   0.00249        0        0         0     Chamber initStep
-    1   -0.196     -122     30.5         0  0.00249     0.14      0.14     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 373,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.178     -122     25.8   0.00305        0        0         0     Chamber initStep
-    1   -0.166     -122     25.8         0  0.00305    0.187     0.187     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 372,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.157     -122     13.3   0.00152        0        0         0     Chamber initStep
-    1   -0.157     -122     13.3         0  0.00152   0.0713    0.0713     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 371,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.127     -121     2.49   0.00466        0        0         0     Chamber initStep
-    1   -0.136     -121      2.5         0  0.00466    0.352     0.352     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 370,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0562     -119    -36.3   0.00334        0        0         0     Chamber initStep
-    1    0.082     -119    -36.3         0  0.00334    0.213     0.213     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 369,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.256     -118    -68.4   0.00295        0        0         0     Chamber initStep
-    1    0.239     -118    -68.4         0  0.00295    0.178     0.178     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 368,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.468     -113     -159    0.0166        0        0         0     Tracker initStep
-    1     2.54     -113     -159    0.0125  0.00412     2.83      2.83     Tracker eIoni
-    2     2.79     -114     -159   0.00714  0.00269     0.74      3.57     Tracker eIoni
-    3     2.73     -114     -158  0.000536  0.00661     1.34      4.91     Tracker eIoni
-    4     2.72     -114     -158         0 0.000536   0.0249      4.93     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 417,   Parent ID = 368
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.79     -114     -159   0.00264        0        0         0     Tracker initStep
-    1     2.76     -114     -159         0  0.00264    0.255     0.255     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 367,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.493     -112     -180    0.0011        0        0         0     Tracker initStep
-    1    0.519     -112     -180         0   0.0011   0.0652    0.0652     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 366,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.52     -111     -201   0.00108        0        0         0     Tracker initStep
-    1     0.51     -111     -201         0  0.00108   0.0633    0.0633     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 365,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.615     -108     -275   0.00105        0        0         0     Tracker initStep
-    1     0.59     -108     -275         0  0.00105   0.0614    0.0614     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 364,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.718     -104     -341   0.00736        0        0         0     Tracker initStep
-    1    0.823     -105     -341   0.00253  0.00483     1.38      1.38     Tracker eIoni
-    2    0.726     -105     -341         0  0.00253    0.237      1.62     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 363,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.719     -104     -342   0.00187        0        0         0     Tracker initStep
-    1    0.773     -104     -342         0  0.00187    0.146     0.146     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 362,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.735     -104     -353     0.004        0        0         0     Tracker initStep
-    1    0.711     -104     -353         0    0.004    0.518     0.518     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 361,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.74     -104     -357   0.00319        0        0         0     Tracker initStep
-    1    0.861     -104     -357   0.00209   0.0011    0.242     0.242     Tracker eIoni
-    2    0.913     -104     -357         0  0.00209    0.173     0.415     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 360,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.746     -103     -363   0.00199        0        0         0     Tracker initStep
-    1    0.758     -103     -363         0  0.00199     0.16      0.16     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 359,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.783      -99     -452   0.00229        0        0         0     Tracker initStep
-    1    0.811    -99.1     -452         0  0.00229    0.201     0.201     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 358,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.813      -97     -494   0.00134        0        0         0     Tracker initStep
-    1    0.829    -96.9     -494         0  0.00134   0.0875    0.0875     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 357,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.29    -86.4     -707   0.00189        0        0         0     Chamber initStep
-    1      1.3    -86.4     -707         0  0.00189   0.0962    0.0962     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 356,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.4    -84.4     -746   0.00228        0        0         0     Chamber initStep
-    1      1.4    -84.4     -746         0  0.00228    0.124     0.124     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 355,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.46    -83.4     -765   0.00186        0        0         0     Chamber initStep
-    1     1.47    -83.4     -765         0  0.00186    0.094     0.094     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 354,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.51    -82.5     -781   0.00386        0        0         0     Chamber initStep
-    1     1.54    -82.5     -781         0  0.00386    0.263     0.263     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 353,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.61    -80.9     -811   0.00162        0        0         0     Chamber initStep
-    1      1.6    -80.9     -811         0  0.00162   0.0781    0.0781     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 352,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.61    -80.8     -812    0.0167        0        0         0     Chamber initStep
-    1     1.61    -80.8     -812    0.0167 1.27e-05  0.00551   0.00551     Chamber eIoni
-    2     1.63    -80.6     -812   0.00693  0.00973     1.92      1.92     Chamber eIoni
-    3     1.57    -80.6     -812   0.00219  0.00275    0.465      2.39     Chamber eIoni
-    4     1.59    -80.6     -812         0  0.00219    0.118       2.5     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 418,   Parent ID = 352
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.57    -80.6     -812   0.00199        0        0         0     Chamber initStep
-    1     1.57    -80.6     -812         0  0.00199    0.104     0.104     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 351,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.89    -77.6     -873   0.00701        0        0         0     Chamber initStep
-    1     1.81    -77.6     -873         0  0.00701    0.677     0.677     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 350,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.91    -77.5     -876    0.0126        0        0         0     Chamber initStep
-    1     1.99    -77.3     -876   0.00472  0.00785     1.52      1.52     Chamber eIoni
-    2     1.97    -77.3     -876         0  0.00472    0.359      1.88     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 349,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.99    -76.8     -888   0.00407        0        0         0     Chamber initStep
-    1        2    -76.8     -888         0  0.00407    0.286     0.286     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 348,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.02    -76.4     -895   0.00213        0        0         0     Chamber initStep
-    1     2.03    -76.4     -895         0  0.00213    0.114     0.114     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 347,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.15    -68.7 -1.04e+03   0.00126        0        0         0     Tracker initStep
-    1     2.19    -68.7 -1.04e+03         0  0.00126     0.08      0.08     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 346,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.19    -66.8 -1.07e+03    0.0019        0        0         0     Tracker initStep
-    1     2.24    -66.9 -1.07e+03         0   0.0019     0.15      0.15     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 345,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.28    -61.8 -1.16e+03   0.00252        0        0         0     Tracker initStep
-    1     2.38    -61.8 -1.16e+03         0  0.00252    0.234     0.234     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 344,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.51    -50.4 -1.37e+03   0.00167        0        0         0     Tracker initStep
-    1     2.55    -50.4 -1.37e+03         0  0.00167    0.122     0.122     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 343,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.59    -41.2 -1.54e+03    0.0014        0        0         0     Chamber initStep
-    1      2.6    -41.2 -1.54e+03         0   0.0014   0.0643    0.0643     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 342,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.47    -36.1 -1.64e+03   0.00791        0        0         0     Chamber initStep
-    1     2.41    -36.1 -1.64e+03   0.00412  0.00139    0.391     0.391     Chamber eIoni
-    2      2.4    -36.1 -1.64e+03   0.00303  0.00109    0.127     0.518     Chamber eIoni
-    3     2.42    -36.1 -1.64e+03         0  0.00303    0.185     0.703     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 419,   Parent ID = 342
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.41    -36.1 -1.64e+03    0.0024        0        0         0     Chamber initStep
-    1      2.4    -36.1 -1.63e+03         0   0.0024    0.134     0.134     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 341,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      2.4    -34.7 -1.66e+03    0.0024        0        0         0     Chamber initStep
-    1     2.38    -34.7 -1.66e+03         0   0.0024    0.134     0.134     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 340,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.38    -34.4 -1.67e+03   0.00257        0        0         0     Chamber initStep
-    1      2.4    -34.4 -1.67e+03         0  0.00257    0.147     0.147     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 339,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.35    -33.7 -1.69e+03   0.00142        0        0         0     Chamber initStep
-    1     2.34    -33.7 -1.69e+03         0  0.00142   0.0652    0.0652     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 338,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.8    -24.8 -1.88e+03   0.00256        0        0         0     Tracker initStep
-    1     1.72    -24.7 -1.88e+03         0  0.00256    0.242     0.242     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 337,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.8    -24.8 -1.88e+03   0.00101        0        0         0     Tracker initStep
-    1     1.78    -24.8 -1.88e+03         0  0.00101   0.0576    0.0576     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 336,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.79    -24.7 -1.88e+03     0.003        0        0         0     Tracker initStep
-    1     1.88    -24.8 -1.88e+03   0.00126  0.00174    0.131     0.131     Tracker eIoni
-    2     1.91    -24.8 -1.88e+03         0  0.00126   0.0801     0.211     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 335,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.73    -23.8 -1.9e+03   0.00111        0        0         0     Tracker initStep
-    1     1.75    -23.8 -1.9e+03         0  0.00111   0.0666    0.0666     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 387,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.42     -203 1.54e+03      51.2        0        0         0     Chamber initStep
-    1     3.08     -212  1.7e+03      51.2        0      160       160     Tracker Transportation
-    2     1.63     -250  2.4e+03      51.2        0      701       861       World Transportation
-    3    0.513     -279 2.94e+03      51.2        0      541   1.4e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 381,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.02     -168      890      2.36        0        0         0     Chamber initStep
-    1     2.06     -169      900      2.36        0     9.57      9.57     Tracker Transportation
-    2     4.42     -201  1.5e+03      2.36        0      601       610     Chamber Transportation
-    3     5.21     -212  1.7e+03      2.36        0      200       811     Tracker Transportation
-    4     7.97     -249  2.4e+03      2.36        0      701  1.51e+03       World Transportation
-    5     10.1     -278 2.94e+03      2.36        0      541  2.05e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 334,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0109 0.000979 -2.4e+03     0.369        0        0         0      Target initStep
-    1  0.00926  0.00393 -2.4e+03     0.369        0    0.918     0.918     Tracker Transportation
-    2    -1.24     2.25 -1.7e+03     0.369        0      700       701     Chamber Transportation
-    3    -1.59      2.9 -1.5e+03     0.369        0      200       901     Tracker Transportation
-    4    -2.66     4.83     -900     0.369        0      600   1.5e+03     Chamber Transportation
-    5    -3.02     5.47     -700     0.369        0      200   1.7e+03     Tracker Transportation
-    6    -4.09      7.4     -100     0.369        0      600   2.3e+03     Chamber Transportation
-    7    -4.45     8.04      100     0.369        0      200   2.5e+03     Tracker Transportation
-    8    -5.52     9.97      700     0.369        0      600   3.1e+03     Chamber Transportation
-    9    -5.87     10.6      900     0.369        0      200   3.3e+03     Tracker Transportation
-   10    -6.94     12.5  1.5e+03     0.369        0      600   3.9e+03     Chamber Transportation
-   11     -7.3     13.2  1.7e+03     0.369        0      200   4.1e+03     Tracker Transportation
-   12    -8.55     15.4  2.4e+03     0.369        0      700   4.8e+03       World Transportation
-   13    -9.51     17.2 2.94e+03     0.369        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 333,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.011 0.000494 -2.4e+03      65.4        0        0         0      Target initStep
-    1   0.0138 -0.000995 -2.4e+03      65.4        0     1.04      1.04     Tracker Transportation
-    2     1.89    -1.01 -1.7e+03      65.4        0      700       701     Chamber Transportation
-    3     2.42    -1.29 -1.5e+03      65.4        0      200       901     Tracker Transportation
-    4     4.03    -2.16     -900      65.4        0      600   1.5e+03     Chamber Transportation
-    5     4.56    -2.44     -700      65.4        0      200   1.7e+03     Tracker Transportation
-    6     6.17    -3.31     -100      65.4        0      600   2.3e+03     Chamber Transportation
-    7     6.71    -3.59      100      65.4        0      200   2.5e+03     Tracker Transportation
-    8     8.31    -4.46      700      65.4        0      600   3.1e+03     Chamber Transportation
-    9     8.85    -4.74      900      65.4        0      200   3.3e+03     Tracker Transportation
-   10     10.5    -5.61  1.5e+03      65.4        0      600   3.9e+03     Chamber Transportation
-   11       11    -5.89  1.7e+03      65.4        0      200   4.1e+03     Tracker Transportation
-   12     12.9     -6.9  2.4e+03      65.4        0      700   4.8e+03       World Transportation
-   13     14.3    -7.68 2.94e+03      65.4        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 332,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.01   0.0024 -2.4e+03      80.7        0        0         0      Target initStep
-    1   0.0169 -0.00994 -2.4e+03      80.7        0     1.44      1.44     Tracker Transportation
-    2     3.38    -6.02 -1.7e+03      80.7        0      700       701     Chamber Transportation
-    3     4.34    -7.73 -1.5e+03      80.7        0      200       901     Tracker Transportation
-    4     7.22    -12.9     -900      80.7        0      600   1.5e+03     Chamber Transportation
-    5     8.18    -14.6     -700      80.7        0      200   1.7e+03     Tracker Transportation
-    6     11.1    -19.8     -100      80.7        0      600   2.3e+03     Chamber Transportation
-    7       12    -21.5      100      80.7        0      200   2.5e+03     Tracker Transportation
-    8     14.9    -26.6      700      80.7        0      600   3.1e+03     Chamber Transportation
-    9     15.9    -28.3      900      80.7        0      200   3.3e+03     Tracker Transportation
-   10     18.8    -33.5  1.5e+03      80.7        0      600   3.9e+03     Chamber Transportation
-   11     19.7    -35.2  1.7e+03      80.7        0      200   4.1e+03     Tracker Transportation
-   12     23.1    -41.2  2.4e+03      80.7        0      700   4.8e+03       World Transportation
-   13     25.7    -45.8 2.94e+03      80.7        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 331,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00999  0.00271 -2.4e+03      37.7        0        0         0      Target initStep
-    1   0.0088 -0.00774 -2.4e+03      37.7        0     1.48      1.48     Tracker Transportation
-    2   -0.557    -4.96 -1.7e+03      37.7        0      700       701     Chamber Transportation
-    3   -0.718    -6.37 -1.5e+03      37.7        0      200       902     Tracker Transportation
-    4     -1.2    -10.6     -900      37.7        0      600   1.5e+03     Chamber Transportation
-    5    -1.36      -12     -700      37.7        0      200   1.7e+03     Tracker Transportation
-    6    -1.85    -16.3     -100      37.7        0      600   2.3e+03     Chamber Transportation
-    7    -2.01    -17.7      100      37.7        0      200   2.5e+03     Tracker Transportation
-    8     -2.5    -21.9      700      37.7        0      600   3.1e+03     Chamber Transportation
-    9    -2.66    -23.3      900      37.7        0      200   3.3e+03     Tracker Transportation
-   10    -3.14    -27.6  1.5e+03      37.7        0      600   3.9e+03     Chamber Transportation
-   11     -3.3      -29  1.7e+03      37.7        0      200   4.1e+03     Tracker Transportation
-   12    -3.87    -33.9  2.4e+03      37.7        0      700   4.8e+03       World Transportation
-   13    -4.31    -37.8 2.94e+03      37.7        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 330,   Parent ID = 328
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00961  0.00466 -2.4e+03      2.44        0        0         0      Target initStep
-    1   0.0173 -0.00614 -2.4e+03      2.44        0     1.89      1.89     Tracker Transportation
-    2     2.88    -4.01 -1.7e+03      2.44        0      700       702     Chamber Transportation
-    3      3.7    -5.16 -1.5e+03      2.44        0      200       902     Tracker Transportation
-    4     6.15    -8.59     -900      2.44        0      600   1.5e+03     Chamber Transportation
-    5     6.97    -9.74     -700      2.44        0      200   1.7e+03     Tracker Transportation
-    6     9.42    -13.2     -100      2.44        0      600   2.3e+03     Chamber Transportation
-    7     10.2    -14.3      100      2.44        0      200   2.5e+03     Tracker Transportation
-    8     12.7    -17.8      700      2.44        0      600   3.1e+03     Chamber Transportation
-    9     13.5    -18.9      900      2.44        0      200   3.3e+03     Tracker Transportation
-   10       16    -22.3  1.5e+03      2.44        0      600   3.9e+03     Chamber Transportation
-   11     16.8    -23.5  1.7e+03      2.44        0      200   4.1e+03     Tracker Transportation
-   12     19.6    -27.5  2.4e+03      2.44        0      700   4.8e+03       World Transportation
-   13     21.9    -30.6 2.94e+03      2.44        0      540  5.34e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 134,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00658  0.00226 -2.41e+03     0.166        0        0         0      Target initStep
-    1  0.00662   0.0023 -2.41e+03         0    0.088   0.0282    0.0282      Target phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 420,   Parent ID = 134
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00662   0.0023 -2.41e+03    0.0781        0        0         0      Target initStep
-    1  0.00665  0.00284 -2.41e+03         0   0.0781   0.0184    0.0184      Target eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 133,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00626  0.00182 -2.41e+03       160        0        0         0      Target initStep
-    1  0.00721  0.00301 -2.4e+03         0        0    0.957     0.957      Target conv
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 421,   Parent ID = 133
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00721  0.00301 -2.4e+03       101        0        0         0      Target initStep
-    1   0.0125  0.00611 -2.4e+03      99.8    0.583    0.351     0.351      Target eBrem
-    2   0.0166   0.0232 -2.4e+03      98.5     0.41    0.396     0.748      Target eBrem
-    3   0.0367   0.0428 -2.4e+03      93.6    0.888    0.661      1.41      Target eBrem
-    4   0.0505   0.0528 -2.4e+03      88.7    0.257    0.206      1.61      Target eBrem
-    5    0.154   0.0937 -2.4e+03      62.9    0.888    0.692      2.31      Target eBrem
-    6    0.269    0.339 -2.4e+03      59.8     1.89     1.44      3.74      Target eBrem
-    7    0.293    0.377 -2.4e+03      7.52    0.129    0.129      3.87      Target eBrem
-    8    0.433    0.678 -2.4e+03      6.81    0.523    0.483      4.35      Target eBrem
-    9    0.427    0.801 -2.4e+03      6.25    0.558    0.494      4.85     Tracker Transportation
-   10     -4.8     31.7 -2.31e+03      6.24   0.0125      100       105     Tracker StepLimiter
-   11    -8.49     66.9 -2.21e+03      6.22   0.0113      100       205     Tracker StepLimiter
-   12    -10.4      100 -2.12e+03      6.21   0.0142     93.1       298     Tracker eIoni
-   13     -8.7      120 -2.08e+03       6.2  0.00726     46.2       344     Tracker eIoni
-   14    -4.54      161 -1.99e+03      6.18   0.0125      100       444     Tracker StepLimiter
-   15    -4.15      168 -1.98e+03      6.18  0.00214     16.1       460     Tracker eIoni
-   16    -2.97      186 -1.94e+03      6.17  0.00832     41.4       502     Tracker eIoni
-   17     -1.4      218 -1.88e+03      6.16  0.00973     70.9       573     Tracker eIoni
-   18   -0.625      258 -1.79e+03      6.14    0.016     94.8       667     Tracker eIoni
-   19     2.28      302 -1.7e+03      6.13   0.0129      100       767     Tracker StepLimiter
-   20     4.25      328 -1.65e+03      6.12  0.00897     55.3       823     Tracker eIoni
-   21     5.43      344 -1.63e+03      6.11  0.00315     29.3       852     Tracker eIoni
-   22     7.52      363 -1.6e+03       6.1  0.00606     37.7       890     Tracker eIoni
-   23     8.48      370 -1.58e+03       6.1  0.00232     14.7       904     Tracker eIoni
-   24     14.7      420 -1.5e+03      6.09   0.0139      100     1e+03     Tracker StepLimiter
-   25     20.6      454 -1.44e+03      6.03  0.00873     68.6  1.07e+03     Tracker eBrem
-   26     29.2      503 -1.35e+03      6.01   0.0161      100  1.17e+03     Tracker StepLimiter
-   27     37.8      540 -1.29e+03         6  0.00944     71.8  1.24e+03     Tracker eIoni
-   28     52.2      594 -1.21e+03      5.99   0.0141      100  1.34e+03     Tracker StepLimiter
-   29     68.3      645 -1.12e+03      5.97   0.0148      100  1.44e+03     Tracker StepLimiter
-   30     69.3      648 -1.12e+03      5.97 0.000475     6.13  1.45e+03     Tracker eBrem
-   31     84.8      694 -1.03e+03      5.95   0.0179      100  1.55e+03     Tracker StepLimiter
-   32     98.3      728     -961      5.94   0.0109     77.6  1.63e+03     Tracker eIoni
-   33      109      752     -916      5.93  0.00939     52.2  1.68e+03     Tracker eIoni
-   34      112      760     -900      5.92  0.00517     17.9   1.7e+03     Chamber Transportation
-   35      113      761     -898      5.92 0.000512     2.72   1.7e+03     Chamber eIoni
-   36      118      771     -877      5.91  0.00865     23.2  1.72e+03     Tracker Transportation
-   37      123      781     -856       5.9  0.00432     24.3  1.75e+03     Tracker eIoni
-   38      143      820     -766      5.89   0.0136      100  1.85e+03     Tracker StepLimiter
-   39      160      861     -677      5.87   0.0187      100  1.95e+03     Tracker StepLimiter
-   40      180      902     -588      5.85   0.0133      100  2.05e+03     Tracker StepLimiter
-   41      199      940     -497      5.84   0.0153      100  2.15e+03     Tracker StepLimiter
-   42      225      977     -408      5.82    0.017      100  2.25e+03     Tracker StepLimiter
-   43      250 1.01e+03     -318      5.81    0.015      100  2.35e+03     Tracker StepLimiter
-   44      278 1.05e+03     -229      5.79   0.0147      100  2.45e+03     Tracker StepLimiter
-   45      309 1.09e+03     -142      5.78   0.0151      100  2.55e+03     Tracker StepLimiter
-   46      324  1.1e+03     -100      5.77  0.00614     47.5   2.6e+03     Chamber Transportation
-   47      336 1.12e+03    -69.1      5.75   0.0145       35  2.63e+03     Chamber eIoni
-   48      338 1.12e+03    -60.2      5.75  0.00328     10.5  2.64e+03     Chamber eIoni
-   49      341 1.12e+03    -52.9      5.74  0.00381     8.87  2.65e+03     Chamber eIoni
-   50      343 1.13e+03    -44.4      5.73  0.00417     9.71  2.66e+03     Chamber eIoni
-   51      344 1.13e+03    -38.8      5.67  0.00262     6.39  2.67e+03     Chamber eIoni
-   52      344 1.13e+03    -37.8      5.66 6.99e-05     1.21  2.67e+03     Chamber eIoni
-   53      348 1.14e+03    -15.5      5.65  0.00707     25.1  2.69e+03     Chamber eIoni
-   54      352 1.17e+03     22.7      5.62   0.0207     44.4  2.74e+03     Chamber eIoni
-   55      354 1.18e+03     39.2      5.59    0.013     22.3  2.76e+03     Chamber eIoni
-   56      365 1.18e+03     51.5      5.58  0.00671     16.8  2.78e+03     Chamber eIoni
-   57      380 1.19e+03     67.2      5.57  0.00399     22.7   2.8e+03     Chamber eIoni
-   58      401  1.2e+03     82.4      5.55    0.013     26.6  2.83e+03     Chamber eIoni
-   59      424  1.2e+03      100      5.54   0.0112       30  2.86e+03     Tracker Transportation
-   60      426 1.21e+03      102      5.54 0.000381     3.01  2.86e+03     Tracker eIoni
-   61      506 1.23e+03      156      5.52    0.015      100  2.96e+03     Tracker StepLimiter
-   62      584 1.25e+03      216      5.51   0.0134      100  3.06e+03     Tracker StepLimiter
-   63      615 1.26e+03      241       5.5  0.00601     40.9   3.1e+03     Tracker eIoni
-   64      659 1.26e+03      274      5.49   0.0114     55.1  3.15e+03     Tracker eIoni
-   65      674 1.27e+03      286      5.48  0.00354     19.3  3.17e+03     Tracker eIoni
-   66      744 1.28e+03      342      5.47   0.0133     90.4  3.26e+03     Tracker eIoni
-   67      770 1.28e+03      361      5.46   0.0038     33.4   3.3e+03     Tracker eIoni
-   68      850 1.29e+03      422      5.45   0.0129      100   3.4e+03     Tracker StepLimiter
-   69      891  1.3e+03      455      5.44  0.00934     53.9  3.45e+03     Tracker eIoni
-   70      970  1.3e+03      516      5.42   0.0156      100  3.55e+03     Tracker StepLimiter
-   71      997 1.31e+03      537      5.42  0.00534     33.5  3.59e+03     Tracker eIoni
-   72 1.07e+03 1.32e+03      596       5.4   0.0169     94.4  3.68e+03     Tracker eIoni
-   73 1.07e+03 1.32e+03      596      5.38 2.74e-05    0.519  3.68e+03     Tracker eIoni
-   74 1.12e+03 1.32e+03      630      5.37  0.00595     57.3  3.74e+03     Tracker eIoni
-   75 1.14e+03 1.32e+03      645      5.37  0.00395     25.6  3.76e+03     Tracker eIoni
-   76 1.16e+03 1.33e+03      665      5.36  0.00439     34.1   3.8e+03     Tracker eIoni
-   77 1.21e+03 1.33e+03      700      5.35  0.00773     61.4  3.86e+03     Chamber Transportation
-   78 1.22e+03 1.33e+03      703      5.34  0.00176     4.53  3.86e+03     Chamber eIoni
-   79 1.22e+03 1.33e+03      704      5.34 0.000652     1.94  3.87e+03     Chamber eIoni
-   80 1.23e+03 1.33e+03      710      5.33  0.00589     11.3  3.88e+03     Chamber eIoni
-   81 1.26e+03 1.33e+03      728      5.29   0.0146     31.8  3.91e+03     Chamber eIoni
-   82 1.27e+03 1.33e+03      739      5.28  0.00434     18.9  3.93e+03     Chamber eIoni
-   83  1.3e+03 1.32e+03      759      5.27   0.0124     34.7  3.96e+03     Chamber eIoni
-   84  1.3e+03 1.32e+03      760      5.25 0.000906     1.42  3.96e+03     Chamber eIoni
-   85 1.31e+03 1.32e+03      766      5.25  0.00553     12.2  3.98e+03     Tracker Transportation
-   86 1.39e+03 1.31e+03      822      5.23   0.0169      100  4.08e+03     Tracker StepLimiter
-   87 1.39e+03  1.3e+03      823      5.23 2.04e-05    0.239  4.08e+03     Tracker eIoni
-   88 1.44e+03  1.3e+03      856      5.21   0.0102     55.9  4.13e+03     Tracker eIoni
-   89 1.49e+03 1.29e+03      896       5.2  0.00857       66   4.2e+03     Tracker eIoni
-   90 1.57e+03 1.28e+03      955      5.19   0.0128      100   4.3e+03     Tracker StepLimiter
-   91 1.58e+03 1.28e+03      962      5.19  0.00131     11.5  4.31e+03     Tracker eIoni
-   92 1.66e+03 1.27e+03 1.02e+03      5.17   0.0139      100  4.41e+03     Tracker StepLimiter
-   93 1.66e+03 1.27e+03 1.02e+03      5.17 5.55e-05    0.124  4.41e+03     Tracker eIoni
-   94 1.69e+03 1.27e+03 1.05e+03      5.16  0.00679     41.7  4.45e+03     Tracker eIoni
-   95 1.72e+03 1.27e+03 1.07e+03      5.16  0.00464     34.8  4.49e+03     Tracker eIoni
-   96 1.74e+03 1.26e+03 1.08e+03      5.15  0.00326     21.5  4.51e+03     Tracker eIoni
-   97 1.82e+03 1.26e+03 1.14e+03      5.13   0.0141      100  4.61e+03     Tracker StepLimiter
-   98 1.88e+03 1.26e+03 1.18e+03      5.12   0.0106     72.2  4.68e+03     Tracker eIoni
-   99 1.95e+03 1.25e+03 1.23e+03      5.11   0.0121     87.8  4.77e+03     Tracker eIoni
-  100 1.98e+03 1.25e+03 1.26e+03       5.1    0.007     43.4  4.81e+03     Tracker eIoni
-  101 2.05e+03 1.25e+03 1.31e+03      5.08   0.0123     83.4  4.89e+03       World Transportation
-  102 2.22e+03 1.25e+03 1.43e+03      5.05   0.0307      214  5.11e+03       World eIoni
-  103 2.38e+03 1.24e+03 1.55e+03      5.02    0.028      200  5.31e+03       World eIoni
-  104 2.46e+03 1.23e+03 1.61e+03      5.01   0.0153      101  5.41e+03       World eIoni
-  105 2.62e+03 1.22e+03 1.72e+03      4.98    0.024      189   5.6e+03       World eIoni
-  106 2.63e+03 1.21e+03 1.73e+03      4.96  0.00304     17.7  5.62e+03       World eIoni
-  107 2.71e+03  1.2e+03  1.8e+03      4.95   0.0157      108  5.72e+03       World eIoni
-  108 2.77e+03 1.19e+03 1.85e+03      4.93   0.0138     81.2  5.81e+03       World eIoni
-  109 2.94e+03 1.16e+03    2e+03      4.89   0.0375      229  6.03e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 496,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.77e+03 1.19e+03 1.85e+03  0.000995        0        0         0       World initStep
-    1 2.77e+03 1.19e+03 1.85e+03         0 0.000995   0.0566    0.0566       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 495,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.71e+03  1.2e+03  1.8e+03   0.00144        0        0         0       World initStep
-    1 2.71e+03  1.2e+03  1.8e+03         0  0.00144   0.0969    0.0969       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 494,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.63e+03 1.21e+03 1.73e+03     0.017        0        0         0       World initStep
-    1 2.63e+03 1.21e+03 1.73e+03    0.0157 0.000146    0.208     0.208       World eIoni
-    2 2.63e+03 1.22e+03 1.73e+03    0.0117  0.00406     2.69       2.9       World eIoni
-    3 2.63e+03 1.22e+03 1.73e+03   0.00741  0.00425     2.08      4.98       World eIoni
-    4 2.63e+03 1.22e+03 1.73e+03  0.000448  0.00696     1.39      6.37       World eIoni
-    5 2.63e+03 1.22e+03 1.73e+03         0 0.000448   0.0201      6.39       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 497,   Parent ID = 494
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.63e+03 1.21e+03 1.73e+03   0.00112        0        0         0       World initStep
-    1 2.63e+03 1.21e+03 1.73e+03         0  0.00112   0.0671    0.0671       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 493,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.62e+03 1.22e+03 1.72e+03   0.00112        0        0         0       World initStep
-    1 2.62e+03 1.22e+03 1.72e+03         0  0.00112   0.0674    0.0674       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 492,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.46e+03 1.23e+03 1.61e+03   0.00126        0        0         0       World initStep
-    1 2.46e+03 1.23e+03 1.61e+03         0  0.00126   0.0795    0.0795       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 491,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.22e+03 1.25e+03 1.43e+03    0.0013        0        0         0       World initStep
-    1 2.22e+03 1.25e+03 1.43e+03         0   0.0013   0.0833    0.0833       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 490,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.98e+03 1.25e+03 1.26e+03   0.00593        0        0         0     Tracker initStep
-    1 1.98e+03 1.25e+03 1.26e+03   0.00336  0.00256     1.04      1.04     Tracker eIoni
-    2 1.98e+03 1.25e+03 1.26e+03         0  0.00336    0.383      1.42     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 489,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.95e+03 1.25e+03 1.23e+03   0.00117        0        0         0     Tracker initStep
-    1 1.95e+03 1.25e+03 1.23e+03         0  0.00117   0.0716    0.0716     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 488,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.88e+03 1.26e+03 1.18e+03   0.00132        0        0         0     Tracker initStep
-    1 1.88e+03 1.26e+03 1.18e+03         0  0.00132    0.086     0.086     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 487,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.74e+03 1.26e+03 1.08e+03   0.00433        0        0         0     Tracker initStep
-    1 1.74e+03 1.26e+03 1.08e+03         0  0.00433    0.594     0.594     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 486,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.72e+03 1.27e+03 1.07e+03   0.00259        0        0         0     Tracker initStep
-    1 1.72e+03 1.27e+03 1.07e+03         0  0.00259    0.245     0.245     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 485,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.69e+03 1.27e+03 1.05e+03     0.001        0        0         0     Tracker initStep
-    1 1.69e+03 1.27e+03 1.05e+03         0    0.001   0.0571    0.0571     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 484,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.66e+03 1.27e+03 1.02e+03   0.00134        0        0         0     Tracker initStep
-    1 1.66e+03 1.27e+03 1.02e+03         0  0.00134   0.0877    0.0877     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 483,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.58e+03 1.28e+03      962   0.00327        0        0         0     Tracker initStep
-    1 1.58e+03 1.28e+03      962         0  0.00327    0.366     0.366     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 482,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.49e+03 1.29e+03      896   0.00117        0        0         0     Tracker initStep
-    1 1.49e+03 1.29e+03      896         0  0.00117   0.0715    0.0715     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 481,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.44e+03  1.3e+03      856   0.00174        0        0         0     Tracker initStep
-    1 1.44e+03  1.3e+03      856         0  0.00174     0.13      0.13     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 480,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.39e+03  1.3e+03      823   0.00258        0        0         0     Tracker initStep
-    1 1.39e+03  1.3e+03      823         0  0.00258    0.245     0.245     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 479,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.3e+03 1.32e+03      760    0.0152        0        0         0     Chamber initStep
-    1  1.3e+03 1.32e+03      760    0.0116 0.000596    0.128     0.128     Chamber eIoni
-    2  1.3e+03 1.32e+03      760    0.0056   0.0015     0.36     0.488     Chamber eIoni
-    3  1.3e+03 1.32e+03      760  0.000216  0.00538    0.432      0.92     Chamber eIoni
-    4  1.3e+03 1.32e+03      760         0 0.000216   0.0102      0.93     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 499,   Parent ID = 479
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.3e+03 1.32e+03      760   0.00447        0        0         0     Chamber initStep
-    1  1.3e+03 1.32e+03      760         0  0.00447     0.33      0.33     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 498,   Parent ID = 479
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.3e+03 1.32e+03      760   0.00306        0        0         0     Chamber initStep
-    1  1.3e+03 1.32e+03      760         0  0.00306    0.188     0.188     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 478,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.3e+03 1.32e+03      759   0.00547        0        0         0     Chamber initStep
-    1  1.3e+03 1.32e+03      759         0  0.00547    0.454     0.454     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 477,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.27e+03 1.33e+03      739   0.00287        0        0         0     Chamber initStep
-    1 1.27e+03 1.33e+03      739         0  0.00287    0.171     0.171     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 476,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.26e+03 1.33e+03      728    0.0211        0        0         0     Chamber initStep
-    1 1.26e+03 1.33e+03      728    0.0153   0.0058     2.31      2.31     Chamber eIoni
-    2 1.26e+03 1.33e+03      728    0.0078  0.00022     0.13      2.44     Chamber eIoni
-    3 1.26e+03 1.33e+03      728         0   0.0078    0.807      3.25     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 500,   Parent ID = 476
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.26e+03 1.33e+03      728   0.00732        0        0         0     Chamber initStep
-    1 1.26e+03 1.33e+03      728         0  0.00732    0.727     0.727     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 475,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.23e+03 1.33e+03      710   0.00192        0        0         0     Chamber initStep
-    1 1.23e+03 1.33e+03      710         0  0.00192    0.098     0.098     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 474,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.22e+03 1.33e+03      704   0.00275        0        0         0     Chamber initStep
-    1 1.22e+03 1.33e+03      704         0  0.00275    0.162     0.162     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 473,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.22e+03 1.33e+03      703    0.0114        0        0         0     Chamber initStep
-    1 1.22e+03 1.33e+03      703         0   0.0114     1.36      1.36     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 472,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.16e+03 1.33e+03      665   0.00141        0        0         0     Tracker initStep
-    1 1.16e+03 1.33e+03      665         0  0.00141   0.0948    0.0948     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 471,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.14e+03 1.32e+03      645   0.00108        0        0         0     Tracker initStep
-    1 1.14e+03 1.32e+03      645         0  0.00108   0.0637    0.0637     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 470,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.12e+03 1.32e+03      630   0.00187        0        0         0     Tracker initStep
-    1 1.12e+03 1.32e+03      630         0  0.00187    0.145     0.145     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 469,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.07e+03 1.32e+03      596    0.0179        0        0         0     Tracker initStep
-    1 1.07e+03 1.32e+03      598    0.0135  0.00442     3.05      3.05     Tracker eIoni
-    2 1.07e+03 1.32e+03      598    0.0069  0.00659     2.35       5.4     Tracker eIoni
-    3 1.07e+03 1.32e+03      597   0.00196  0.00494     1.29      6.69     Tracker eIoni
-    4 1.07e+03 1.32e+03      597         0  0.00196    0.157      6.84     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 468,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.07e+03 1.32e+03      596   0.00305        0        0         0     Tracker initStep
-    1 1.07e+03 1.32e+03      596   0.00116  0.00188    0.274     0.274     Tracker eIoni
-    2 1.07e+03 1.32e+03      596         0  0.00116   0.0709     0.344     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 467,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      997 1.31e+03      537   0.00181        0        0         0     Tracker initStep
-    1      997 1.31e+03      537         0  0.00181    0.139     0.139     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 466,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      891  1.3e+03      455   0.00132        0        0         0     Tracker initStep
-    1      891  1.3e+03      455         0  0.00132   0.0856    0.0856     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 465,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      770 1.28e+03      361   0.00288        0        0         0     Tracker initStep
-    1      770 1.28e+03      361         0  0.00288    0.294     0.294     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 464,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      744 1.28e+03      342   0.00228        0        0         0     Tracker initStep
-    1      744 1.28e+03      342         0  0.00228    0.199     0.199     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 463,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      674 1.27e+03      286   0.00119        0        0         0     Tracker initStep
-    1      674 1.27e+03      286         0  0.00119   0.0737    0.0737     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 462,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      659 1.26e+03      274   0.00122        0        0         0     Tracker initStep
-    1      659 1.26e+03      274         0  0.00122   0.0763    0.0763     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 461,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      615 1.26e+03      241   0.00214        0        0         0     Tracker initStep
-    1      615 1.26e+03      241         0  0.00214     0.18      0.18     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 460,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      426 1.21e+03      102   0.00232        0        0         0     Tracker initStep
-    1      426 1.21e+03      102         0  0.00232    0.206     0.206     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 459,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      401  1.2e+03     82.4   0.00308        0        0         0     Chamber initStep
-    1      401  1.2e+03     82.4         0  0.00308    0.189     0.189     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 458,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      380 1.19e+03     67.2   0.00581        0        0         0     Chamber initStep
-    1      380 1.19e+03     67.2         0  0.00581    0.499     0.499     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 457,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      365 1.18e+03     51.5    0.0028        0        0         0     Chamber initStep
-    1      365 1.18e+03     51.5         0   0.0028    0.165     0.165     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 456,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      354 1.18e+03     39.2    0.0145        0        0         0     Chamber initStep
-    1      354 1.18e+03     39.3   0.00532  0.00914     1.71      1.71     Chamber eIoni
-    2      354 1.18e+03     39.3         0  0.00532    0.435      2.15     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 455,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      352 1.17e+03     22.7    0.0113        0        0         0     Chamber initStep
-    1      352 1.17e+03     22.7   0.00167  0.00959      1.3       1.3     Chamber eIoni
-    2      352 1.17e+03     22.7         0  0.00167   0.0813      1.38     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 454,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      348 1.14e+03    -15.5    0.0067        0        0         0     Chamber initStep
-    1      348 1.14e+03    -15.6         0   0.0067    0.629     0.629     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 453,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      344 1.13e+03    -37.8   0.00727        0        0         0     Chamber initStep
-    1      344 1.13e+03    -37.8         0  0.00727    0.718     0.718     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 452,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      344 1.13e+03    -38.8    0.0611        0        0         0     Chamber initStep
-    1      345 1.13e+03    -37.5    0.0493   0.0118     7.32      7.32     Chamber eIoni
-    2      346 1.13e+03    -38.7    0.0413  0.00806     5.51      12.8     Chamber eIoni
-    3      346 1.13e+03    -38.8    0.0328  0.00344     1.09      13.9     Chamber eIoni
-    4      347 1.13e+03    -39.4    0.0243  0.00848     3.45      17.4     Chamber eIoni
-    5      346 1.13e+03    -39.3    0.0212  0.00125    0.628        18     Chamber eIoni
-    6      346 1.13e+03      -39    0.0165  0.00469     2.31      20.3     Chamber eIoni
-    7      346 1.13e+03    -38.9    0.0121  0.00443      1.9      22.2     Chamber eIoni
-    8      346 1.13e+03    -38.7   0.00454  0.00752     1.46      23.7     Chamber eIoni
-    9      346 1.13e+03    -38.8         0  0.00454    0.338        24     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 502,   Parent ID = 452
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      346 1.13e+03    -39.3   0.00191        0        0         0     Chamber initStep
-    1      346 1.13e+03    -39.3         0  0.00191   0.0977    0.0977     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 501,   Parent ID = 452
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      346 1.13e+03    -38.8   0.00501        0        0         0     Chamber initStep
-    1      346 1.13e+03    -38.8         0  0.00501    0.395     0.395     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 451,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      343 1.13e+03    -44.4   0.00185        0        0         0     Chamber initStep
-    1      343 1.13e+03    -44.4         0  0.00185   0.0934    0.0934     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 450,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      341 1.12e+03    -52.9   0.00324        0        0         0     Chamber initStep
-    1      341 1.12e+03    -52.9         0  0.00324    0.204     0.204     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 449,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      338 1.12e+03    -60.2   0.00185        0        0         0     Chamber initStep
-    1      338 1.12e+03    -60.2         0  0.00185   0.0933    0.0933     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 448,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      336 1.12e+03    -69.1   0.00511        0        0         0     Chamber initStep
-    1      336 1.12e+03    -69.1         0  0.00511    0.408     0.408     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 447,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      123      781     -856   0.00517        0        0         0     Tracker initStep
-    1      122      781     -856         0  0.00517    0.811     0.811     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 446,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      113      761     -898   0.00472        0        0         0     Chamber initStep
-    1      113      761     -898         0  0.00472    0.359     0.359     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 445,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      109      752     -916   0.00195        0        0         0     Tracker initStep
-    1      109      752     -916         0  0.00195    0.155     0.155     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 444,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     98.3      728     -961   0.00117        0        0         0     Tracker initStep
-    1     98.3      728     -961         0  0.00117   0.0714    0.0714     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 442,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     37.8      540 -1.29e+03   0.00432        0        0         0     Tracker initStep
-    1     37.6      540 -1.29e+03         0  0.00432    0.591     0.591     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 440,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     8.48      370 -1.58e+03   0.00366        0        0         0     Tracker initStep
-    1     8.63      370 -1.58e+03         0  0.00366    0.444     0.444     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 439,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     7.52      363 -1.6e+03    0.0031        0        0         0     Tracker initStep
-    1     7.66      363 -1.6e+03         0   0.0031    0.333     0.333     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 438,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     5.43      344 -1.63e+03   0.00161        0        0         0     Tracker initStep
-    1     5.47      344 -1.63e+03         0  0.00161    0.115     0.115     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 437,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.25      328 -1.65e+03   0.00116        0        0         0     Tracker initStep
-    1     4.23      328 -1.65e+03         0  0.00116   0.0707    0.0707     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 436,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.625      258 -1.79e+03   0.00136        0        0         0     Tracker initStep
-    1   -0.608      258 -1.79e+03         0  0.00136   0.0897    0.0897     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 435,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -1.4      218 -1.88e+03   0.00124        0        0         0     Tracker initStep
-    1    -1.41      218 -1.88e+03         0  0.00124   0.0782    0.0782     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 434,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.97      186 -1.94e+03   0.00124        0        0         0     Tracker initStep
-    1    -2.94      186 -1.94e+03         0  0.00124   0.0775    0.0775     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 433,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -4.15      168 -1.98e+03   0.00174        0        0         0     Tracker initStep
-    1    -4.18      168 -1.98e+03         0  0.00174     0.13      0.13     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 432,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -8.7      120 -2.08e+03    0.0058        0        0         0     Tracker initStep
-    1    -8.31      120 -2.08e+03         0   0.0058    0.996     0.996     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 431,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -10.4      100 -2.12e+03   0.00129        0        0         0     Tracker initStep
-    1    -10.4      100 -2.12e+03         0  0.00129   0.0824    0.0824     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 443,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     69.3      648 -1.12e+03   0.00212        0        0         0     Tracker initStep
-    1     70.1      662 -1.09e+03         0 0.000403     30.8      30.8     Tracker phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 503,   Parent ID = 443
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     70.1      662 -1.09e+03   0.00172        0        0         0     Tracker initStep
-    1     70.1      662 -1.09e+03         0  0.00172    0.128     0.128     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 441,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     20.6      454 -1.44e+03    0.0464        0        0         0     Tracker initStep
-    1      320  2.3e+03 1.24e+03    0.0413        0 3.27e+03  3.27e+03     Tracker compt
-    2  1.1e+03      689  1.5e+03    0.0413        0 1.81e+03  5.08e+03     Chamber Transportation
-    3 1.11e+03      654 1.51e+03         0   0.0346     38.9  5.12e+03     Chamber phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 505,   Parent ID = 441
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.11e+03      654 1.51e+03   0.00674        0        0         0     Chamber initStep
-    1 1.11e+03      654 1.51e+03         0  0.00674    0.635     0.635     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 504,   Parent ID = 441
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      320  2.3e+03 1.24e+03   0.00506        0        0         0     Tracker initStep
-    1      320  2.3e+03 1.24e+03         0  0.00506    0.781     0.781     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 430,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.433    0.678 -2.4e+03     0.194        0        0         0      Target initStep
-    1    0.461    0.809 -2.4e+03     0.194        0    0.414     0.414     Tracker Transportation
-    2     51.6      234 -1.7e+03     0.194        0      740       740     Chamber Transportation
-    3     51.7      234 -1.7e+03     0.194        0     0.95       741     Tracker Transportation
-    4      110      501     -900     0.194        0      844  1.59e+03     Chamber Transportation
-    5      125      567     -700     0.194        0      211   1.8e+03     Tracker Transportation
-    6      168      767     -100     0.194        0      634  2.43e+03     Chamber Transportation
-    7      183      834      100     0.194        0      211  2.64e+03     Tracker Transportation
-    8      227 1.03e+03      700     0.194        0      634  3.28e+03     Chamber Transportation
-    9      242  1.1e+03      900     0.194        0      211  3.49e+03     Tracker Transportation
-   10      285  1.3e+03  1.5e+03     0.194        0      634  4.12e+03     Chamber Transportation
-   11      300 1.37e+03  1.7e+03     0.194        0      211  4.33e+03     Tracker Transportation
-   12      351  1.6e+03  2.4e+03     0.194        0      740  5.07e+03       World Transportation
-   13      391 1.78e+03 2.94e+03     0.194        0      571  5.64e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 429,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.293    0.377 -2.4e+03      52.1        0        0         0      Target initStep
-    1    0.427    0.643 -2.4e+03      52.1        0    0.774     0.774     Tracker Transportation
-    2      283      560     -900      52.1        0 1.63e+03  1.63e+03     Chamber Transportation
-    3      321      635     -700      52.1        0      217  1.84e+03     Tracker Transportation
-    4      434      859     -100      52.1        0      650  2.49e+03     Chamber Transportation
-    5      436      862    -89.9         0        0       11   2.5e+03     Chamber conv
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 506,   Parent ID = 429
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      436      862    -89.9      8.87        0        0         0     Chamber initStep
-    1      438      869      -72      8.86   0.0111     19.4      19.4     Chamber eIoni
-    2      442      874    -56.8      8.85  0.00713     16.4      35.8     Chamber eIoni
-    3      447      880    -37.5      8.84  0.00833     20.7      56.5     Chamber eIoni
-    4      458      889    -3.64      8.82   0.0184     36.8      93.3     Chamber eIoni
-    5      463      902       32      8.77   0.0223     38.1       131     Chamber eIoni
-    6      465      906     45.9      8.76  0.00622     14.8       146     Chamber eIoni
-    7      471      920     92.3      8.73   0.0254     48.8       195     Chamber eIoni
-    8      473      922      100      8.73  0.00621     8.03       203     Tracker Transportation
-    9      479      934      142      8.72  0.00658     43.9       247     Tracker eIoni
-   10      493      955      239       8.7   0.0158      100       347     Tracker StepLimiter
-   11      507      972      321      8.69    0.013     85.2       432     Tracker eIoni
-   12      522      996      417      8.67   0.0168      100       532     Tracker StepLimiter
-   13      526    1e+03      440      8.67  0.00273     24.1       556     Tracker eIoni
-   14      539 1.02e+03      537      8.65   0.0155      100       656     Tracker StepLimiter
-   15      550 1.04e+03      634      8.64   0.0148      100       756     Tracker StepLimiter
-   16      559 1.06e+03      700      8.63  0.00997     69.1       825     Chamber Transportation
-   17      573 1.08e+03      783      8.59   0.0313     85.6       911     Chamber eIoni
-   18      575 1.08e+03      788      8.59  0.00301     5.82       917     Chamber eIoni
-   19      576 1.08e+03      804      8.58  0.00634     16.4       933     Chamber eIoni
-   20      577 1.08e+03      812      8.57  0.00411     8.65       942     Chamber eIoni
-   21      587 1.09e+03      874      8.55   0.0198       63     1e+03     Chamber eIoni
-   22      587 1.09e+03      882      8.52  0.00557     8.25  1.01e+03     Chamber eIoni
-   23      589  1.1e+03      900      8.51  0.00816     18.2  1.03e+03     Tracker Transportation
-   24      592 1.11e+03      999       8.5   0.0151      100  1.13e+03     Tracker StepLimiter
-   25      593 1.12e+03 1.05e+03      8.49   0.0075     51.6  1.18e+03     Tracker eIoni
-   26      597 1.13e+03 1.13e+03      8.48   0.0106     80.7  1.26e+03     Tracker eIoni
-   27      600 1.15e+03 1.23e+03      8.46   0.0145      100  1.36e+03     Tracker StepLimiter
-   28      601 1.16e+03 1.29e+03      8.45  0.00777     60.5  1.42e+03     Tracker eIoni
-   29      602 1.17e+03 1.34e+03      8.43  0.00836     49.4  1.47e+03     Tracker eIoni
-   30      602 1.18e+03 1.38e+03      8.42  0.00648     41.5  1.52e+03     Tracker eIoni
-   31      604  1.2e+03 1.47e+03      8.41   0.0145      100  1.62e+03     Tracker StepLimiter
-   32      604  1.2e+03  1.5e+03       8.4  0.00546     25.9  1.64e+03     Chamber Transportation
-   33      603 1.21e+03 1.52e+03      8.39  0.00721     19.5  1.66e+03     Chamber eIoni
-   34      600 1.21e+03 1.54e+03      8.38  0.00722     18.9  1.68e+03     Chamber eIoni
-   35      584 1.23e+03  1.6e+03      8.34   0.0337     68.9  1.75e+03     Chamber eIoni
-   36      581 1.24e+03 1.61e+03      8.33  0.00805     15.4  1.76e+03     Chamber eIoni
-   37      577 1.24e+03 1.63e+03      8.33  0.00656     18.5  1.78e+03     Chamber eIoni
-   38      568 1.24e+03 1.68e+03      8.31   0.0191     44.4  1.83e+03     Chamber eIoni
-   39      561 1.25e+03  1.7e+03       8.3  0.00819     21.9  1.85e+03     Chamber eIoni
-   40      560 1.25e+03  1.7e+03      8.29   0.0027     4.11  1.85e+03     Tracker Transportation
-   41      527 1.27e+03 1.79e+03      8.28   0.0132      100  1.95e+03     Tracker StepLimiter
-   42      494 1.29e+03 1.88e+03      8.27   0.0127      100  2.05e+03     Tracker StepLimiter
-   43      463 1.31e+03 1.97e+03      8.25   0.0115     88.9  2.14e+03     Tracker eIoni
-   44      430 1.32e+03 2.06e+03      8.24   0.0141     99.3  2.24e+03     Tracker eIoni
-   45      398 1.34e+03 2.15e+03      8.22   0.0151      100  2.34e+03     Tracker StepLimiter
-   46      396 1.34e+03 2.16e+03      8.22  0.00107     9.58  2.35e+03     Tracker eIoni
-   47      366 1.36e+03 2.25e+03       8.2   0.0166      100  2.45e+03     Tracker StepLimiter
-   48      337 1.38e+03 2.35e+03      8.19   0.0136      100  2.55e+03     Tracker StepLimiter
-   49      334 1.38e+03 2.36e+03      8.18   0.0022     12.6  2.56e+03     Tracker eIoni
-   50      322 1.39e+03  2.4e+03      8.18  0.00563     42.4  2.61e+03       World Transportation
-   51      223 1.43e+03 2.73e+03      8.11   0.0588      347  2.95e+03       World eIoni
-   52      212 1.44e+03 2.77e+03       8.1  0.00616     39.6  2.99e+03       World eIoni
-   53      196 1.45e+03 2.82e+03      8.09  0.00782       54  3.05e+03       World eIoni
-   54      170 1.47e+03  2.9e+03      8.08   0.0162     89.9  3.14e+03       World eIoni
-   55      157 1.48e+03 2.94e+03      8.07  0.00688     41.7  3.18e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 543,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      170 1.47e+03  2.9e+03   0.00158        0        0         0       World initStep
-    1      170 1.47e+03  2.9e+03         0  0.00158    0.112     0.112       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 542,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      196 1.45e+03 2.82e+03   0.00117        0        0         0       World initStep
-    1      196 1.45e+03 2.82e+03         0  0.00117    0.072     0.072       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 541,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      212 1.44e+03 2.77e+03   0.00241        0        0         0       World initStep
-    1      212 1.44e+03 2.77e+03         0  0.00241    0.218     0.218       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 540,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      223 1.43e+03 2.73e+03   0.00845        0        0         0       World initStep
-    1      224 1.43e+03 2.73e+03   0.00392  0.00453     1.59      1.59       World eIoni
-    2      224 1.43e+03 2.73e+03         0  0.00392    0.499      2.08       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 539,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      334 1.38e+03 2.36e+03   0.00114        0        0         0     Tracker initStep
-    1      334 1.38e+03 2.36e+03         0  0.00114   0.0686    0.0686     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 538,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      396 1.34e+03 2.16e+03   0.00617        0        0         0     Tracker initStep
-    1      396 1.34e+03 2.16e+03     0.004 0.000973    0.617     0.617     Tracker eIoni
-    2      396 1.34e+03 2.16e+03         0    0.004    0.518      1.13     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 544,   Parent ID = 538
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      396 1.34e+03 2.16e+03    0.0012        0        0         0     Tracker initStep
-    1      396 1.34e+03 2.16e+03         0   0.0012   0.0741    0.0741     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 537,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      430 1.32e+03 2.06e+03   0.00111        0        0         0     Tracker initStep
-    1      430 1.32e+03 2.06e+03         0  0.00111   0.0663    0.0663     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 536,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      463 1.31e+03 1.97e+03   0.00122        0        0         0     Tracker initStep
-    1      463 1.31e+03 1.97e+03         0  0.00122   0.0759    0.0759     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 535,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      561 1.25e+03  1.7e+03   0.00185        0        0         0     Chamber initStep
-    1      561 1.25e+03  1.7e+03         0  0.00185   0.0931    0.0931     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 534,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      568 1.24e+03 1.68e+03   0.00145        0        0         0     Chamber initStep
-    1      568 1.24e+03 1.68e+03         0  0.00145    0.067     0.067     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 533,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      577 1.24e+03 1.63e+03   0.00168        0        0         0     Chamber initStep
-    1      577 1.24e+03 1.63e+03         0  0.00168   0.0822    0.0822     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 532,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      581 1.24e+03 1.61e+03   0.00221        0        0         0     Chamber initStep
-    1      581 1.24e+03 1.61e+03         0  0.00221    0.119     0.119     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 531,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      584 1.23e+03  1.6e+03   0.00143        0        0         0     Chamber initStep
-    1      584 1.23e+03  1.6e+03         0  0.00143   0.0661    0.0661     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 530,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      600 1.21e+03 1.54e+03   0.00272        0        0         0     Chamber initStep
-    1      600 1.21e+03 1.54e+03         0  0.00272    0.159     0.159     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 529,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      603 1.21e+03 1.52e+03   0.00497        0        0         0     Chamber initStep
-    1      603 1.21e+03 1.52e+03         0  0.00497    0.391     0.391     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 528,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      602 1.18e+03 1.38e+03   0.00151        0        0         0     Tracker initStep
-    1      602 1.18e+03 1.38e+03         0  0.00151    0.105     0.105     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 527,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      602 1.17e+03 1.34e+03    0.0151        0        0         0     Tracker initStep
-    1      602 1.17e+03 1.34e+03   0.00907  0.00342      2.1       2.1     Tracker eIoni
-    2      603 1.17e+03 1.34e+03   0.00445  0.00462     1.69      3.79     Tracker eIoni
-    3      602 1.17e+03 1.34e+03         0  0.00445    0.624      4.41     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 545,   Parent ID = 527
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      602 1.17e+03 1.34e+03   0.00257        0        0         0     Tracker initStep
-    1      602 1.17e+03 1.34e+03         0  0.00257    0.242     0.242     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 526,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      601 1.16e+03 1.29e+03  0.000996        0        0         0     Tracker initStep
-    1      601 1.16e+03 1.29e+03         0 0.000996   0.0567    0.0567     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 525,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      597 1.13e+03 1.13e+03   0.00248        0        0         0     Tracker initStep
-    1      597 1.13e+03 1.13e+03         0  0.00248    0.229     0.229     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 524,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      593 1.12e+03 1.05e+03   0.00222        0        0         0     Tracker initStep
-    1      593 1.12e+03 1.05e+03         0  0.00222    0.191     0.191     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 523,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      587 1.09e+03      882    0.0189        0        0         0     Chamber initStep
-    1      588 1.09e+03      882    0.0125  0.00643     2.12      2.12     Chamber eIoni
-    2      587 1.09e+03      882   0.00459   0.0079     1.51      3.63     Chamber eIoni
-    3      587 1.09e+03      882   0.00282 0.000292   0.0803      3.71     Chamber eIoni
-    4      587 1.09e+03      882         0  0.00282    0.167      3.87     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 546,   Parent ID = 523
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      587 1.09e+03      882   0.00148        0        0         0     Chamber initStep
-    1      587 1.09e+03      882         0  0.00148   0.0689    0.0689     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 522,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      587 1.09e+03      874   0.00215        0        0         0     Chamber initStep
-    1      587 1.09e+03      874         0  0.00215    0.115     0.115     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 521,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      577 1.08e+03      812   0.00202        0        0         0     Chamber initStep
-    1      577 1.08e+03      812         0  0.00202    0.105     0.105     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 520,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      576 1.08e+03      804   0.00428        0        0         0     Chamber initStep
-    1      576 1.08e+03      804         0  0.00428    0.308     0.308     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 519,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      575 1.08e+03      788     0.002        0        0         0     Chamber initStep
-    1      575 1.08e+03      788         0    0.002    0.104     0.104     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 518,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      573 1.08e+03      783   0.00312        0        0         0     Chamber initStep
-    1      573 1.08e+03      783         0  0.00312    0.193     0.193     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 517,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      526    1e+03      440   0.00342        0        0         0     Tracker initStep
-    1      525    1e+03      440         0  0.00342    0.394     0.394     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 516,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      507      972      321   0.00122        0        0         0     Tracker initStep
-    1      507      972      321         0  0.00122   0.0765    0.0765     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 515,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      479      934      142   0.00291        0        0         0     Tracker initStep
-    1      479      933      142         0  0.00291    0.299     0.299     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 514,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      471      920     92.3   0.00148        0        0         0     Chamber initStep
-    1      471      920     92.3         0  0.00148   0.0691    0.0691     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 513,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      465      906     45.9   0.00175        0        0         0     Chamber initStep
-    1      465      906     45.9         0  0.00175   0.0864    0.0864     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 512,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      463      902       32    0.0254        0        0         0     Chamber initStep
-    1      463      901     32.2    0.0185  0.00695      2.7       2.7     Chamber eIoni
-    2      463      901     32.1    0.0146   0.0024    0.624      3.32     Chamber eIoni
-    3      463      901     32.1   0.00364    0.011     1.73      5.05     Chamber eIoni
-    4      463      901     32.1         0  0.00364    0.241      5.29     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 547,   Parent ID = 512
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      463      901     32.1   0.00146        0        0         0     Chamber initStep
-    1      463      901     32.1         0  0.00146   0.0678    0.0678     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 511,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      458      889    -3.64   0.00218        0        0         0     Chamber initStep
-    1      458      889    -3.63         0  0.00218    0.117     0.117     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 510,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      447      880    -37.5   0.00335        0        0         0     Chamber initStep
-    1      447      880    -37.5         0  0.00335    0.214     0.214     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 509,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      442      874    -56.8   0.00248        0        0         0     Chamber initStep
-    1      442      874    -56.8         0  0.00248     0.14      0.14     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 508,   Parent ID = 506
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      438      869      -72   0.00218        0        0         0     Chamber initStep
-    1      438      869      -72         0  0.00218    0.117     0.117     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 428,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.269    0.339 -2.4e+03      1.21        0        0         0      Target initStep
-    1    0.426    0.622 -2.4e+03      1.21        0    0.895     0.895     Tracker Transportation
-    2      282      510     -900      1.21        0 1.61e+03  1.61e+03     Chamber Transportation
-    3      320      578     -700      1.21        0      215  1.82e+03     Tracker Transportation
-    4      432      782     -100      1.21        0      644  2.47e+03     Chamber Transportation
-    5      470      850      100      1.21        0      215  2.68e+03     Tracker Transportation
-    6      582 1.05e+03      700      1.21        0      644  3.33e+03     Chamber Transportation
-    7      620 1.12e+03      900      1.21        0      215  3.54e+03     Tracker Transportation
-    8      732 1.33e+03  1.5e+03      1.21        0      644  4.18e+03     Chamber Transportation
-    9      770 1.39e+03  1.7e+03      1.21        0      215   4.4e+03     Tracker Transportation
-   10      901 1.63e+03  2.4e+03      1.21        0      751  5.15e+03       World Transportation
-   11    1e+03 1.81e+03 2.94e+03      1.21        0      579  5.73e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 427,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.154   0.0937 -2.4e+03        25        0        0         0      Target initStep
-    1    0.506    0.335 -2.4e+03        25        0     2.28      2.28     Tracker Transportation
-    2      110     75.8 -1.7e+03        25        0      713       715     Chamber Transportation
-    3      142     97.3 -1.5e+03        25        0      204       918     Tracker Transportation
-    4      236      162     -900        25        0      611  1.53e+03     Chamber Transportation
-    5      268      184     -700        25        0      204  1.73e+03     Tracker Transportation
-    6      362      248     -100        25        0      611  2.34e+03     Chamber Transportation
-    7      393      270      100        25        0      204  2.55e+03     Tracker Transportation
-    8      488      334      700        25        0      611  3.16e+03     Chamber Transportation
-    9      519      356      900        25        0      204  3.36e+03     Tracker Transportation
-   10      613      421  1.5e+03        25        0      611  3.97e+03     Chamber Transportation
-   11      645      442  1.7e+03        25        0      204  4.18e+03     Tracker Transportation
-   12      755      518  2.4e+03        25        0      713  4.89e+03       World Transportation
-   13      839      576 2.94e+03        25        0      550  5.44e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 426,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0505   0.0528 -2.4e+03       4.6        0        0         0      Target initStep
-    1    0.357    0.241 -2.4e+03       4.6        0     2.95      2.95     Tracker Transportation
-    2     73.8     45.2 -1.7e+03       4.6        0      705       708     Chamber Transportation
-    3     94.8     58.1 -1.5e+03       4.6        0      202       910     Tracker Transportation
-    4      158     96.6     -900       4.6        0      605  1.51e+03     Chamber Transportation
-    5      179      109     -700       4.6        0      202  1.72e+03     Tracker Transportation
-    6      242      148     -100       4.6        0      605  2.32e+03     Chamber Transportation
-    7      263      161      100       4.6        0      202  2.52e+03     Tracker Transportation
-    8      326      199      700       4.6        0      605  3.13e+03     Chamber Transportation
-    9      347      212      900       4.6        0      202  3.33e+03     Tracker Transportation
-   10      410      251  1.5e+03       4.6        0      605  3.93e+03     Chamber Transportation
-   11      431      264  1.7e+03       4.6        0      202  4.13e+03     Tracker Transportation
-   12      504      309  2.4e+03       4.6        0      705  4.84e+03       World Transportation
-   13      561      343 2.94e+03       4.6        0      544  5.38e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 425,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0367   0.0428 -2.4e+03      3.98        0        0         0      Target initStep
-    1    0.188    0.212 -2.4e+03      3.98        0     3.14      3.14     Tracker Transportation
-    2     34.1       38 -1.7e+03      3.98        0      702       705     Chamber Transportation
-    3     43.8     48.8 -1.5e+03      3.98        0      201       906     Tracker Transportation
-    4     72.9     81.3     -900      3.98        0      602  1.51e+03     Chamber Transportation
-    5     82.6     92.1     -700      3.98        0      201  1.71e+03     Tracker Transportation
-    6      112      124     -100      3.98        0      602  2.31e+03     Chamber Transportation
-    7      121      135      100      3.98        0      201  2.51e+03     Tracker Transportation
-    8      150      168      700      3.98        0      602  3.11e+03     Chamber Transportation
-    9      160      179      900      3.98        0      201  3.31e+03     Tracker Transportation
-   10      189      211  1.5e+03      3.98        0      602  3.91e+03     Chamber Transportation
-   11      199      222  1.7e+03      3.98        0      201  4.11e+03     Tracker Transportation
-   12      233      260  2.4e+03      3.98        0      702  4.82e+03       World Transportation
-   13      259      289 2.94e+03      3.98        0      541  5.36e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 424,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0166   0.0232 -2.4e+03     0.949        0        0         0      Target initStep
-    1   0.0194    0.208 -2.4e+03     0.949        0     3.79      3.79     Tracker Transportation
-    2     0.53     34.4 -1.7e+03     0.949        0      701       705     Chamber Transportation
-    3    0.604     39.4 -1.6e+03         0   0.0346      102       807     Chamber phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 548,   Parent ID = 424
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    0.604     39.4 -1.6e+03     0.914        0        0         0     Chamber initStep
-    1     3.36     39.3 -1.59e+03      0.91  0.00215     7.39      7.39     Chamber eIoni
-    2     26.1     35.5 -1.56e+03     0.895   0.0138     35.9      43.3     Chamber eIoni
-    3     24.8       36 -1.54e+03     0.857  0.00679     20.4      63.7     Chamber eIoni
-    4     28.4     36.6 -1.53e+03     0.841  0.00913     15.9      79.6     Chamber eIoni
-    5     31.7     42.2 -1.52e+03      0.83  0.00323     11.7      91.3     Chamber eIoni
-    6     39.6     69.3 -1.5e+03     0.811   0.0186     38.8       130     Tracker Transportation
-    7     99.9      118 -1.44e+03     0.799   0.0128      100       230     Tracker StepLimiter
-    8      172      130 -1.37e+03     0.782   0.0164      100       330     Tracker StepLimiter
-    9      218      152 -1.32e+03     0.769   0.0111     69.5       400     Tracker eIoni
-   10      257      186 -1.25e+03     0.745    0.014     88.4       488     Tracker eIoni
-   11      284      230 -1.17e+03     0.731   0.0139      100       588     Tracker StepLimiter
-   12      325      267 -1.09e+03     0.717   0.0141      100       688     Tracker StepLimiter
-   13      328      270 -1.08e+03     0.682  0.00108     7.47       695     Tracker eIoni
-   14      329      271 -1.08e+03     0.679  0.00074     2.32       698     Tracker eIoni
-   15      352      293 -1.04e+03     0.667   0.0067     47.9       746     Tracker eIoni
-   16      357      297 -1.04e+03     0.664  0.00164     8.78       754     Tracker eIoni
-   17      393      320     -982      0.65   0.0106     70.7       825     Tracker eIoni
-   18      446      378     -922     0.636   0.0137      100       925     Tracker StepLimiter
-   19      472      393     -900      0.63  0.00589     37.9       963     Chamber Transportation
-   20      478      411     -887     0.615   0.0122     23.9       987     Chamber eIoni
-   21      480      422     -883     0.611  0.00467     12.4       999     Chamber eIoni
-   22      478      426     -884     0.607  0.00211     5.04     1e+03     Chamber eIoni
-   23      478      428     -884     0.605 0.000492     1.49  1.01e+03     Chamber eIoni
-   24      479      445     -886     0.597  0.00527       18  1.02e+03     Chamber eIoni
-   25      487      449     -892     0.591  0.00338     10.7  1.03e+03     Chamber eIoni
-   26      505      458     -900     0.585   0.0064     24.2  1.06e+03     Tracker Transportation
-   27      520      462     -925      0.58  0.00381     29.8  1.09e+03     Tracker eIoni
-   28      528      465     -939     0.578  0.00202     16.1   1.1e+03     Tracker eIoni
-   29      564      491 -1.03e+03     0.564   0.0136      100   1.2e+03     Tracker StepLimiter
-   30      578      498 -1.06e+03     0.551   0.0068     37.8  1.24e+03     Tracker eIoni
-   31      599      502 -1.16e+03     0.536   0.0153      100  1.34e+03     Tracker StepLimiter
-   32      651      481 -1.24e+03      0.52   0.0159      100  1.44e+03     Tracker StepLimiter
-   33      669      471 -1.26e+03     0.513  0.00354     30.6  1.47e+03     Tracker eIoni
-   34      691      459 -1.32e+03     0.501  0.00865     59.1  1.53e+03     Tracker eIoni
-   35      708      433 -1.37e+03     0.489   0.0084     60.4  1.59e+03     Tracker eIoni
-   36      713      427 -1.38e+03     0.486  0.00282     12.1   1.6e+03     Tracker eIoni
-   37      747      381 -1.45e+03     0.469   0.0168     91.1   1.7e+03     Tracker eIoni
-   38      758      348 -1.5e+03     0.458  0.00959     66.6  1.76e+03     Tracker eIoni
-   39      757      327 -1.56e+03     0.446   0.0108     64.4  1.83e+03     Tracker eIoni
-   40      753      317 -1.57e+03     0.437  0.00268     14.7  1.84e+03     Tracker eIoni
-   41      750      308 -1.58e+03     0.435  0.00105     12.3  1.85e+03     Tracker eIoni
-   42      728      259 -1.61e+03     0.426  0.00877     65.9  1.92e+03     Tracker eIoni
-   43      726      239 -1.63e+03     0.422   0.0028     27.5  1.95e+03     Tracker eIoni
-   44      720      198 -1.67e+03     0.413  0.00778     56.8     2e+03     Tracker eIoni
-   45      721      112 -1.72e+03     0.399   0.0136      100   2.1e+03     Tracker StepLimiter
-   46      722      105 -1.73e+03     0.396  0.00145     8.86  2.11e+03     Tracker eIoni
-   47      716     18.5 -1.78e+03     0.379   0.0174      100  2.21e+03     Tracker StepLimiter
-   48      716       16 -1.78e+03     0.374 0.000517     2.93  2.22e+03     Tracker eIoni
-   49      718     5.93 -1.78e+03     0.369  0.00187     11.9  2.23e+03     Tracker eIoni
-   50      735    -40.3 -1.8e+03     0.358  0.00863     54.3  2.28e+03     Tracker eIoni
-   51      741    -48.9 -1.81e+03     0.356  0.00129     10.9  2.29e+03     Tracker eIoni
-   52      755      -71 -1.82e+03     0.343  0.00461     27.8  2.32e+03     Tracker eIoni
-   53      778     -124 -1.83e+03     0.319   0.0103     60.7  2.38e+03     Tracker eIoni
-   54      831     -201 -1.86e+03     0.303   0.0162      100  2.48e+03     Tracker StepLimiter
-   55      881     -241 -1.93e+03     0.288   0.0148     96.9  2.58e+03     Tracker eIoni
-   56      866     -329 -1.97e+03     0.269   0.0189      100  2.68e+03     Tracker StepLimiter
-   57      867     -330 -1.98e+03     0.255  0.00256     9.07  2.69e+03     Tracker eIoni
-   58      876     -329 -2.01e+03     0.245  0.00776     36.6  2.72e+03     Tracker eIoni
-   59      880     -352 -2.04e+03     0.234   0.0106     37.3  2.76e+03     Tracker eIoni
-   60      917     -369 -2.09e+03     0.217   0.0109     60.7  2.82e+03     Tracker eIoni
-   61      920     -371 -2.09e+03     0.211  0.00294     10.4  2.83e+03     Tracker eIoni
-   62      941     -373 -2.15e+03     0.195   0.0149     59.8  2.89e+03     Tracker eIoni
-   63      946     -368 -2.18e+03     0.187  0.00648     31.7  2.92e+03     Tracker eIoni
-   64      971     -374 -2.27e+03     0.165   0.0215      100  3.02e+03     Tracker StepLimiter
-   65    1e+03     -316 -2.3e+03     0.143   0.0186     74.9   3.1e+03     Tracker eIoni
-   66      990     -309 -2.29e+03     0.134  0.00538     22.7  3.12e+03     Tracker eIoni
-   67      997     -279 -2.25e+03     0.119   0.0147       48  3.17e+03     Tracker eIoni
-   68    1e+03     -255 -2.24e+03    0.0963  0.00936     27.2   3.2e+03     Tracker eIoni
-   69      997     -228 -2.22e+03    0.0841   0.0122     34.2  3.23e+03     Tracker eIoni
-   70    1e+03     -223 -2.21e+03    0.0781  0.00474     15.7  3.25e+03     Tracker eIoni
-   71    1e+03     -222 -2.21e+03    0.0745  0.00198     4.45  3.25e+03     Tracker eIoni
-   72 1.01e+03     -223 -2.19e+03    0.0582  0.00733     18.9  3.27e+03     Tracker eIoni
-   73 1.01e+03     -222 -2.19e+03    0.0562 0.000944     2.54  3.27e+03     Tracker eIoni
-   74 1.02e+03     -217 -2.18e+03    0.0497  0.00648     14.1  3.29e+03     Tracker eIoni
-   75 1.03e+03     -221 -2.18e+03    0.0381  0.00886     11.3   3.3e+03     Tracker eIoni
-   76 1.03e+03     -222 -2.18e+03     0.037  0.00109      2.8   3.3e+03     Tracker eIoni
-   77 1.03e+03     -228 -2.18e+03    0.0335  0.00344     7.43  3.31e+03     Tracker eIoni
-   78 1.03e+03     -228 -2.18e+03    0.0322 0.000218    0.709  3.31e+03     Tracker eIoni
-   79 1.03e+03     -228 -2.17e+03    0.0308   0.0014     1.57  3.31e+03     Tracker eIoni
-   80 1.03e+03     -226 -2.17e+03    0.0241  0.00667     5.76  3.32e+03     Tracker eIoni
-   81 1.03e+03     -226 -2.17e+03    0.0206  0.00148     1.05  3.32e+03     Tracker eIoni
-   82 1.03e+03     -226 -2.17e+03     0.017 0.000474    0.555  3.32e+03     Tracker eIoni
-   83 1.04e+03     -225 -2.17e+03     0.012    0.005     2.89  3.32e+03     Tracker eIoni
-   84 1.04e+03     -225 -2.17e+03   0.00721  0.00475     2.12  3.32e+03     Tracker eIoni
-   85 1.04e+03     -224 -2.17e+03   0.00133  0.00588     1.35  3.32e+03     Tracker eIoni
-   86 1.04e+03     -224 -2.17e+03         0  0.00133   0.0865  3.32e+03     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 601,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.03e+03     -226 -2.17e+03    0.0032        0        0         0     Tracker initStep
-    1 1.03e+03     -226 -2.17e+03         0   0.0032    0.351     0.351     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 600,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.03e+03     -226 -2.17e+03   0.00202        0        0         0     Tracker initStep
-    1 1.03e+03     -226 -2.17e+03         0  0.00202    0.165     0.165     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 599,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.03e+03     -228 -2.18e+03    0.0011        0        0         0     Tracker initStep
-    1 1.03e+03     -228 -2.18e+03         0   0.0011   0.0654    0.0654     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 598,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.03e+03     -221 -2.18e+03   0.00276        0        0         0     Tracker initStep
-    1 1.03e+03     -221 -2.18e+03         0  0.00276    0.274     0.274     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 597,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.01e+03     -222 -2.19e+03   0.00114        0        0         0     Tracker initStep
-    1 1.01e+03     -222 -2.19e+03         0  0.00114   0.0688    0.0688     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 596,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.01e+03     -223 -2.19e+03   0.00896        0        0         0     Tracker initStep
-    1 1.01e+03     -224 -2.19e+03   0.00415  0.00481     1.67      1.67     Tracker eIoni
-    2 1.01e+03     -224 -2.19e+03         0  0.00415    0.553      2.22     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 595,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    1e+03     -222 -2.21e+03   0.00162        0        0         0     Tracker initStep
-    1    1e+03     -222 -2.21e+03         0  0.00162    0.117     0.117     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 594,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    1e+03     -223 -2.21e+03   0.00126        0        0         0     Tracker initStep
-    1    1e+03     -223 -2.21e+03         0  0.00126   0.0798    0.0798     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 593,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    1e+03     -255 -2.24e+03    0.0135        0        0         0     Tracker initStep
-    1    1e+03     -254 -2.24e+03    0.0101  0.00338     2.35      2.35     Tracker eIoni
-    2    1e+03     -255 -2.24e+03   0.00599  0.00414     1.85      4.21     Tracker eIoni
-    3    1e+03     -255 -2.24e+03         0  0.00599     1.05      5.26     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 592,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      990     -309 -2.29e+03   0.00368        0        0         0     Tracker initStep
-    1      990     -309 -2.29e+03         0  0.00368    0.447     0.447     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 591,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    1e+03     -316 -2.3e+03   0.00389        0        0         0     Tracker initStep
-    1    1e+03     -316 -2.3e+03         0  0.00389    0.493     0.493     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 590,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      946     -368 -2.18e+03   0.00132        0        0         0     Tracker initStep
-    1      946     -368 -2.18e+03         0  0.00132   0.0851    0.0851     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 589,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      941     -373 -2.15e+03   0.00138        0        0         0     Tracker initStep
-    1      941     -373 -2.15e+03         0  0.00138   0.0916    0.0916     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 588,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      920     -371 -2.09e+03   0.00273        0        0         0     Tracker initStep
-    1      921     -371 -2.09e+03         0  0.00273    0.268     0.268     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 587,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      917     -369 -2.09e+03   0.00614        0        0         0     Tracker initStep
-    1      918     -369 -2.09e+03         0  0.00614      1.1       1.1     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 586,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      880     -352 -2.04e+03   0.00116        0        0         0     Tracker initStep
-    1      880     -352 -2.04e+03         0  0.00116    0.071     0.071     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 585,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      876     -329 -2.01e+03   0.00138        0        0         0     Tracker initStep
-    1      876     -329 -2.01e+03         0  0.00138   0.0919    0.0919     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 584,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      867     -330 -1.98e+03    0.0123        0        0         0     Tracker initStep
-    1      867     -330 -1.98e+03   0.00854  0.00374     2.17      2.17     Tracker eIoni
-    2      867     -331 -1.98e+03   0.00355  0.00499      1.6      3.77     Tracker eIoni
-    3      867     -331 -1.98e+03         0  0.00355     0.42      4.19     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 583,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      778     -124 -1.83e+03    0.0128        0        0         0     Tracker initStep
-    1      778     -125 -1.83e+03    0.0088  0.00403     2.25      2.25     Tracker eIoni
-    2      778     -126 -1.83e+03   0.00472  0.00407     1.64       3.9     Tracker eIoni
-    3      778     -126 -1.83e+03         0  0.00472    0.693      4.59     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 582,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      755      -71 -1.82e+03   0.00897        0        0         0     Tracker initStep
-    1      755    -70.6 -1.82e+03   0.00425  0.00472     1.67      1.67     Tracker eIoni
-    2      755    -70.5 -1.82e+03   0.00238  0.00187    0.366      2.04     Tracker eIoni
-    3      755    -70.6 -1.82e+03         0  0.00238    0.213      2.25     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 581,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      741    -48.9 -1.81e+03  0.000996        0        0         0     Tracker initStep
-    1      741    -48.9 -1.81e+03         0 0.000996   0.0567    0.0567     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 580,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      735    -40.3 -1.8e+03   0.00146        0        0         0     Tracker initStep
-    1      735    -40.3 -1.8e+03         0  0.00146   0.0996    0.0996     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 579,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      718     5.93 -1.78e+03   0.00352        0        0         0     Tracker initStep
-    1      718     5.82 -1.78e+03         0  0.00352    0.415     0.415     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 578,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      716       16 -1.78e+03   0.00442        0        0         0     Tracker initStep
-    1      717     15.8 -1.78e+03         0  0.00442    0.617     0.617     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 577,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      722      105 -1.73e+03   0.00142        0        0         0     Tracker initStep
-    1      722      105 -1.73e+03         0  0.00142    0.095     0.095     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 576,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      720      198 -1.67e+03   0.00171        0        0         0     Tracker initStep
-    1      720      198 -1.67e+03         0  0.00171    0.127     0.127     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 575,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      726      239 -1.63e+03   0.00117        0        0         0     Tracker initStep
-    1      726      239 -1.63e+03         0  0.00117   0.0719    0.0719     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 574,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      750      308 -1.58e+03   0.00139        0        0         0     Tracker initStep
-    1      750      308 -1.58e+03         0  0.00139   0.0926    0.0926     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 573,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      753      317 -1.57e+03   0.00609        0        0         0     Tracker initStep
-    1      753      318 -1.57e+03         0  0.00609     1.08      1.08     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 572,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      757      327 -1.56e+03   0.00124        0        0         0     Tracker initStep
-    1      757      327 -1.56e+03         0  0.00124   0.0782    0.0782     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 571,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      758      348 -1.5e+03   0.00125        0        0         0     Tracker initStep
-    1      758      348 -1.5e+03         0  0.00125    0.079     0.079     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 570,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      708      433 -1.37e+03   0.00429        0        0         0     Tracker initStep
-    1      708      433 -1.37e+03         0  0.00429    0.584     0.584     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 569,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      691      459 -1.32e+03   0.00328        0        0         0     Tracker initStep
-    1      691      459 -1.32e+03         0  0.00328    0.367     0.367     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 568,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      669      471 -1.26e+03    0.0029        0        0         0     Tracker initStep
-    1      669      471 -1.26e+03         0   0.0029    0.297     0.297     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 567,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      578      498 -1.06e+03   0.00675        0        0         0     Tracker initStep
-    1      577      498 -1.06e+03         0  0.00675     1.25      1.25     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 566,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      520      462     -925   0.00103        0        0         0     Tracker initStep
-    1      520      462     -925         0  0.00103   0.0592    0.0592     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 565,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      487      449     -892   0.00232        0        0         0     Chamber initStep
-    1      487      449     -892         0  0.00232    0.127     0.127     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 564,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      479      445     -886   0.00234        0        0         0     Chamber initStep
-    1      479      445     -886         0  0.00234    0.129     0.129     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 563,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      478      428     -884   0.00198        0        0         0     Chamber initStep
-    1      478      428     -884         0  0.00198    0.103     0.103     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 562,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      478      426     -884   0.00148        0        0         0     Chamber initStep
-    1      478      426     -884         0  0.00148   0.0691    0.0691     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 561,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      478      411     -887   0.00263        0        0         0     Chamber initStep
-    1      478      410     -887         0  0.00263    0.151     0.151     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 560,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      393      320     -982   0.00413        0        0         0     Tracker initStep
-    1      393      320     -982         0  0.00413    0.546     0.546     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 559,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      357      297 -1.04e+03   0.00131        0        0         0     Tracker initStep
-    1      357      297 -1.04e+03         0  0.00131   0.0846    0.0846     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 558,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      352      293 -1.04e+03   0.00504        0        0         0     Tracker initStep
-    1      352      293 -1.04e+03   0.00133  0.00263    0.511     0.511     Tracker eIoni
-    2      352      293 -1.04e+03         0  0.00133   0.0864     0.597     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 602,   Parent ID = 558
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      352      293 -1.04e+03   0.00107        0        0         0     Tracker initStep
-    1      352      293 -1.04e+03         0  0.00107   0.0631    0.0631     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 557,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      329      271 -1.08e+03   0.00204        0        0         0     Tracker initStep
-    1      329      271 -1.08e+03         0  0.00204    0.167     0.167     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 556,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      328      270 -1.08e+03    0.0342        0        0         0     Tracker initStep
-    1      325      269 -1.08e+03    0.0294   0.0034     4.85      4.85     Tracker eIoni
-    2      325      268 -1.08e+03    0.0268 0.000476     0.89      5.74     Tracker eIoni
-    3      325      268 -1.07e+03    0.0232  0.00355      4.8      10.5     Tracker eIoni
-    4      324      268 -1.07e+03    0.0191  0.00166     1.23      11.8     Tracker eIoni
-    5      322      269 -1.07e+03    0.0142  0.00492     3.26        15     Tracker eIoni
-    6      321      269 -1.07e+03      0.01  0.00421     2.46      17.5     Tracker eIoni
-    7      320      268 -1.07e+03   0.00672  0.00329     1.84      19.3     Tracker eIoni
-    8      320      268 -1.07e+03  0.000736  0.00598     1.24      20.6     Tracker eIoni
-    9      320      268 -1.07e+03         0 0.000736   0.0375      20.6     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 605,   Parent ID = 556
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      324      268 -1.07e+03   0.00243        0        0         0     Tracker initStep
-    1      324      268 -1.07e+03         0  0.00243    0.222     0.222     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 604,   Parent ID = 556
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      325      268 -1.08e+03   0.00215        0        0         0     Tracker initStep
-    1      325      269 -1.08e+03         0  0.00215    0.182     0.182     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 603,   Parent ID = 556
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      325      269 -1.08e+03   0.00135        0        0         0     Tracker initStep
-    1      325      269 -1.08e+03         0  0.00135   0.0888    0.0888     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 555,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      257      186 -1.25e+03   0.00941        0        0         0     Tracker initStep
-    1      257      186 -1.25e+03   0.00895 0.000462    0.396     0.396     Tracker eIoni
-    2      257      187 -1.25e+03   0.00724 0.000608    0.671      1.07     Tracker eIoni
-    3      257      187 -1.25e+03   0.00472 0.000786    0.325      1.39     Tracker eIoni
-    4      256      187 -1.25e+03         0  0.00472    0.691      2.08     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 607,   Parent ID = 555
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      257      187 -1.25e+03   0.00174        0        0         0     Tracker initStep
-    1      257      187 -1.25e+03         0  0.00174     0.13      0.13     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 606,   Parent ID = 555
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      257      187 -1.25e+03    0.0011        0        0         0     Tracker initStep
-    1      257      187 -1.25e+03         0   0.0011   0.0654    0.0654     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 554,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      218      152 -1.32e+03   0.00268        0        0         0     Tracker initStep
-    1      218      152 -1.32e+03         0  0.00268     0.26      0.26     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 553,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     31.7     42.2 -1.52e+03   0.00795        0        0         0     Chamber initStep
-    1     31.7     42.1 -1.52e+03         0  0.00795    0.833     0.833     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 552,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     28.4     36.6 -1.53e+03    0.0063        0        0         0     Chamber initStep
-    1     28.3     36.7 -1.53e+03   0.00302 0.000996    0.148     0.148     Chamber eIoni
-    2     28.3     36.7 -1.53e+03         0  0.00302    0.184     0.333     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 608,   Parent ID = 552
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     28.3     36.7 -1.53e+03   0.00228        0        0         0     Chamber initStep
-    1     28.3     36.7 -1.53e+03         0  0.00228    0.125     0.125     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 551,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     24.8       36 -1.54e+03    0.0316        0        0         0     Chamber initStep
-    1     25.5     36.4 -1.54e+03    0.0231  0.00849     3.32      3.32     Chamber eIoni
-    2     25.4     36.8 -1.54e+03    0.0157  0.00455     1.86      5.18     Chamber eIoni
-    3     25.4       37 -1.54e+03     0.011  0.00312    0.573      5.75     Chamber eIoni
-    4     25.6       37 -1.54e+03   0.00266  0.00635    0.949       6.7     Chamber eIoni
-    5     25.5       37 -1.54e+03         0  0.00266    0.154      6.85     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 611,   Parent ID = 551
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     25.6       37 -1.54e+03   0.00194        0        0         0     Chamber initStep
-    1     25.6       37 -1.54e+03         0  0.00194   0.0997    0.0997     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 610,   Parent ID = 551
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     25.4       37 -1.54e+03   0.00159        0        0         0     Chamber initStep
-    1     25.4       37 -1.54e+03         0  0.00159    0.076     0.076     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 609,   Parent ID = 551
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     25.4     36.8 -1.54e+03    0.0029        0        0         0     Chamber initStep
-    1     25.3     36.8 -1.54e+03         0   0.0029    0.174     0.174     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 550,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     26.1     35.5 -1.56e+03   0.00157        0        0         0     Chamber initStep
-    1     26.1     35.5 -1.56e+03         0  0.00157   0.0744    0.0744     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 549,   Parent ID = 548
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     3.36     39.3 -1.59e+03   0.00157        0        0         0     Chamber initStep
-    1     3.37     39.3 -1.59e+03         0  0.00157   0.0745    0.0745     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 423,   Parent ID = 421
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0125  0.00611 -2.4e+03     0.762        0        0         0      Target initStep
-    1   0.0159   0.0407 -2.4e+03     0.762        0     4.19      4.19     Tracker Transportation
-    2    0.593     5.83 -1.7e+03     0.762        0      700       704     Chamber Transportation
-    3    0.758     7.49 -1.5e+03     0.762        0      200       904     Tracker Transportation
-    4     1.25     12.5     -900     0.762        0      600   1.5e+03     Chamber Transportation
-    5     1.42     14.1     -700     0.762        0      200   1.7e+03     Tracker Transportation
-    6     1.91     19.1     -100     0.762        0      600   2.3e+03     Chamber Transportation
-    7     2.08     20.7      100     0.762        0      200   2.5e+03     Tracker Transportation
-    8     2.57     25.7      700     0.762        0      600   3.1e+03     Chamber Transportation
-    9     2.74     27.3      900     0.762        0      200   3.3e+03     Tracker Transportation
-   10     3.23     32.3  1.5e+03     0.762        0      600   3.9e+03     Chamber Transportation
-   11      3.4       34  1.7e+03     0.762        0      200   4.1e+03     Tracker Transportation
-   12     3.97     39.8  2.4e+03     0.762        0      700   4.8e+03       World Transportation
-   13     4.08     40.8 2.52e+03     0.741        0      122  4.93e+03       World compt
-   14    -65.3     87.8 2.94e+03     0.741        0      426  5.35e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 612,   Parent ID = 423
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.08     40.8 2.52e+03    0.0208        0        0         0       World initStep
-    1     6.37     39.3 2.52e+03    0.0164  0.00432     3.56      3.56       World eIoni
-    2      7.1       39 2.52e+03    0.0147 0.000709    0.894      4.45       World eIoni
-    3     8.58     38.2 2.52e+03    0.0106  0.00413     2.54      6.99       World eIoni
-    4     9.59     37.6 2.52e+03   0.00557  0.00502     1.92      8.91       World eIoni
-    5     9.26     37.4 2.52e+03         0  0.00557    0.927      9.84       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 613,   Parent ID = 612
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      7.1       39 2.52e+03   0.00101        0        0         0       World initStep
-    1      7.1       39 2.52e+03         0  0.00101   0.0578    0.0578       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 132,   Parent ID = 6
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00609  0.00113 -2.41e+03       126        0        0         0      Target initStep
-    1  0.00866   0.0132 -2.4e+03         0        0     4.86      4.86      Target conv
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 614,   Parent ID = 132
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00866   0.0132 -2.4e+03        23        0        0         0      Target initStep
-    1  0.00512   0.0283 -2.4e+03      21.3    0.492    0.407     0.407      Target eBrem
-    2  -0.0168  -0.0677 -2.4e+03      20.6    0.706    0.647      1.05     Tracker Transportation
-    3     6.76    -2.37 -2.38e+03      20.6  0.00456     20.3      21.4     Tracker eIoni
-    4     33.4    -12.8 -2.31e+03      20.6   0.0156     81.1       103     Tracker eIoni
-    5     36.7    -13.9 -2.3e+03      20.6  0.00171     9.52       112     Tracker eIoni
-    6     63.7    -23.4 -2.22e+03      20.5   0.0143     77.6       190     Tracker eIoni
-    7     97.3    -35.5 -2.13e+03      20.5   0.0192      100       290     Tracker StepLimiter
-    8      132    -47.5 -2.04e+03      20.5   0.0148      100       390     Tracker StepLimiter
-    9      148    -52.9   -2e+03      20.5  0.00919     45.3       435     Tracker eIoni
-   10      177    -64.3 -1.91e+03      20.5   0.0168     87.2       522     Tracker eIoni
-   11      209      -76 -1.83e+03      20.4   0.0158     92.9       615     Tracker eIoni
-   12      232    -84.4 -1.77e+03      20.4  0.00991     65.9       681     Tracker eIoni
-   13      260    -93.4 -1.7e+03      20.4   0.0132     76.3       757     Tracker eIoni
-   14      261    -93.6 -1.69e+03      20.4 0.000189      1.6       759     Tracker eIoni
-   15      283    -99.7 -1.64e+03      20.4   0.0127     59.6       818     Tracker eIoni
-   16      319     -112 -1.55e+03      20.4   0.0203      100       918     Tracker StepLimiter
-   17      357     -122 -1.46e+03      20.3   0.0136      100  1.02e+03     Tracker StepLimiter
-   18      384     -131 -1.39e+03      20.3   0.0107     73.3  1.09e+03     Tracker eIoni
-   19      404     -137 -1.34e+03      20.3    0.012     54.5  1.15e+03     Tracker eIoni
-   20      441     -150 -1.25e+03      20.3   0.0167      100  1.25e+03     Tracker StepLimiter
-   21      474     -163 -1.16e+03      20.3    0.015     90.2  1.34e+03     Tracker eIoni
-   22      510     -177 -1.07e+03      20.3   0.0162      100  1.44e+03     Tracker StepLimiter
-   23      538     -187   -1e+03      20.2    0.011     74.4  1.51e+03     Tracker eIoni
-   24      543     -189     -991      20.2  0.00105     12.7  1.52e+03     Tracker eIoni
-   25      581     -202     -900      20.2   0.0161     99.2  1.62e+03     Chamber Transportation
-   26      589     -204     -880      20.2  0.00994     21.2  1.64e+03     Chamber eIoni
-   27      591     -205     -875      20.2   0.0031      6.2  1.65e+03     Chamber eIoni
-   28      592     -206     -872      20.1  0.00152     2.42  1.65e+03     Chamber eBrem
-   29      629     -221     -777      20.1   0.0504      104  1.76e+03     Chamber eIoni
-   30      665     -230     -700        20   0.0482     85.5  1.84e+03     Tracker Transportation
-   31      699     -238     -620        20   0.0134     87.4  1.93e+03     Tracker eIoni
-   32      706     -240     -604        20  0.00384     17.9  1.95e+03     Tracker eIoni
-   33      717     -243     -576        20  0.00619     30.4  1.98e+03     Tracker eIoni
-   34      720     -244     -569        20  0.00122     7.63  1.98e+03     Tracker eIoni
-   35      727     -246     -553        20  0.00288     16.5     2e+03     Tracker eIoni
-   36      764     -256     -461        20   0.0153      100   2.1e+03     Tracker StepLimiter
-   37      803     -266     -370      19.9    0.015      100   2.2e+03     Tracker StepLimiter
-   38      814     -269     -340      19.9  0.00484     31.8  2.23e+03     Tracker eIoni
-   39      829     -274     -301      19.9   0.0112     41.9  2.28e+03     Tracker eIoni
-   40      858     -285     -226      19.9   0.0142     80.9  2.36e+03     Tracker eIoni
-   41      866     -288     -204      19.9  0.00475     23.8  2.38e+03     Tracker eIoni
-   42      866     -288     -204      19.9        0    0.332  2.38e+03     Tracker eIoni
-   43      901     -303     -111      19.9   0.0183      100  2.48e+03     Tracker StepLimiter
-   44      905     -305     -100      19.9  0.00186     12.3  2.49e+03     Chamber Transportation
-   45      906     -305      -98      19.9  0.00157     2.19  2.49e+03     Chamber eIoni
-   46      917     -309      -71      19.9   0.0173     29.4  2.52e+03     Chamber eIoni
-   47      927     -313      -48      19.8  0.00981     25.2  2.55e+03     Chamber eIoni
-   48      947     -321     2.34      19.8   0.0301       55   2.6e+03     Chamber eIoni
-   49      950     -322     10.9      19.8  0.00646     9.23  2.61e+03     Chamber eIoni
-   50      968     -328       61      19.6    0.031     53.3  2.67e+03     Chamber eBrem
-   51      975     -332     84.6      19.6   0.0133     25.2  2.69e+03     Chamber eIoni
-   52      976     -333       86      19.6 0.000476     1.47  2.69e+03     Chamber eIoni
-   53      980     -335      100      19.6  0.00908     14.9  2.71e+03     Tracker Transportation
-   54      982     -336      105      19.6  0.00143     5.15  2.71e+03     Tracker eIoni
-   55      988     -339      126      19.6  0.00374     22.1  2.74e+03     Tracker eIoni
-   56      991     -340      136      19.6 0.000896     10.7  2.75e+03     Tracker eIoni
-   57 1.02e+03     -354      231      19.6   0.0159      100  2.85e+03     Tracker StepLimiter
-   58 1.02e+03     -356      245      19.6  0.00312     14.9  2.86e+03     Tracker eIoni
-   59 1.04e+03     -367      309      19.5   0.0109     68.3  2.93e+03     Tracker eIoni
-   60 1.07e+03     -381      404      19.5   0.0184      100  3.03e+03     Tracker StepLimiter
-   61 1.09e+03     -391      468      19.5   0.0149     66.8   3.1e+03     Tracker eIoni
-   62 1.09e+03     -391      469      13.3 0.000371     1.71   3.1e+03     Tracker eBrem
-   63 1.12e+03     -405      564      13.3   0.0128      100   3.2e+03     Tracker StepLimiter
-   64 1.13e+03     -408      590      13.3  0.00462     27.3  3.23e+03     Tracker eIoni
-   65 1.16e+03     -422      685      13.3   0.0131      100  3.33e+03     Tracker StepLimiter
-   66 1.16e+03     -424      700      13.3  0.00287     15.7  3.34e+03     Chamber Transportation
-   67 1.16e+03     -425      704      13.3  0.00182      3.9  3.34e+03     Chamber eIoni
-   68 1.17e+03     -427      724      13.3   0.0134     21.6  3.37e+03     Chamber eIoni
-   69 1.17e+03     -428      733      13.3   0.0035     8.58  3.38e+03     Chamber eIoni
-   70 1.18e+03     -435      771      13.2   0.0212     41.7  3.42e+03     Chamber eIoni
-   71  1.2e+03     -438      807      13.2   0.0186     37.8  3.45e+03     Chamber eIoni
-   72 1.21e+03     -440      834      13.2  0.00974     28.8  3.48e+03     Chamber eIoni
-   73 1.23e+03     -440      887      13.2   0.0285     57.8  3.54e+03     Chamber eIoni
-   74 1.23e+03     -440      900      13.2  0.00794     14.4  3.56e+03     Tracker Transportation
-   75 1.26e+03     -442      947      13.2  0.00668     51.4  3.61e+03     Tracker eIoni
-   76  1.3e+03     -448 1.04e+03      13.1   0.0188      100  3.71e+03     Tracker StepLimiter
-   77 1.32e+03     -450 1.09e+03      13.1  0.00869     62.1  3.77e+03     Tracker eIoni
-   78 1.34e+03     -452 1.14e+03      13.1  0.00672     47.3  3.82e+03     Tracker eIoni
-   79 1.39e+03     -457 1.23e+03      13.1   0.0154      100  3.92e+03     Tracker StepLimiter
-   80  1.4e+03     -458 1.26e+03      13.1   0.0061     36.4  3.95e+03     Tracker eIoni
-   81 1.44e+03     -462 1.35e+03      13.1   0.0143      100  4.05e+03     Tracker StepLimiter
-   82 1.47e+03     -464 1.41e+03      13.1   0.0123     68.7  4.12e+03     Tracker eIoni
-   83 1.51e+03     -465  1.5e+03        13   0.0173       96  4.22e+03     Chamber Transportation
-   84 1.53e+03     -465 1.53e+03        13   0.0214     31.9  4.25e+03     Chamber eIoni
-   85 1.53e+03     -466 1.54e+03        13  0.00579     13.4  4.26e+03     Chamber eIoni
-   86 1.54e+03     -466 1.55e+03      11.2  0.00342     7.83  4.27e+03     Chamber eBrem
-   87 1.54e+03     -466 1.55e+03      11.2  0.00435     8.12  4.28e+03     Chamber eIoni
-   88 1.56e+03     -466 1.59e+03      11.2   0.0166     35.7  4.31e+03     Chamber eIoni
-   89  1.6e+03     -461 1.68e+03      11.1    0.037      101  4.42e+03     Chamber eIoni
-   90 1.62e+03     -461  1.7e+03      11.1     0.02     28.2  4.44e+03     Tracker Transportation
-   91 1.66e+03     -465 1.79e+03      11.1   0.0152      100  4.54e+03     Tracker StepLimiter
-   92 1.67e+03     -465  1.8e+03      11.1  0.00238     13.8  4.56e+03     Tracker eIoni
-   93 1.69e+03     -468 1.85e+03      11.1  0.00871     56.5  4.61e+03     Tracker eIoni
-   94 1.72e+03     -468 1.91e+03      11.1  0.00832     61.3  4.68e+03     Tracker eIoni
-   95 1.77e+03     -473    2e+03      11.1    0.014      100  4.78e+03     Tracker StepLimiter
-   96 1.78e+03     -474 2.03e+03      11.1  0.00583     38.8  4.81e+03     Tracker eIoni
-   97 1.82e+03     -477  2.1e+03        11   0.0142     80.4  4.89e+03     Tracker eIoni
-   98 1.83e+03     -478 2.12e+03        11  0.00281     15.9  4.91e+03     Tracker eIoni
-   99 1.84e+03     -478 2.14e+03        11  0.00231     27.4  4.94e+03     Tracker eIoni
-  100 1.87e+03     -479 2.21e+03        11   0.0112     73.2  5.01e+03     Tracker eIoni
-  101 1.91e+03     -479  2.3e+03        11   0.0152      100  5.11e+03     Tracker StepLimiter
-  102 1.95e+03     -482 2.36e+03        11    0.012     73.8  5.18e+03     Tracker eIoni
-  103 1.95e+03     -482 2.38e+03        11  0.00327     17.7   5.2e+03     Tracker eIoni
-  104 1.96e+03     -482  2.4e+03        11  0.00314     23.6  5.23e+03       World Transportation
-  105 1.99e+03     -483 2.44e+03        11  0.00832     50.4  5.28e+03       World eIoni
-  106    2e+03     -484 2.47e+03      10.9  0.00716     27.6   5.3e+03       World eIoni
-  107 2.03e+03     -485 2.53e+03      10.9   0.0118     71.7  5.38e+03       World eIoni
-  108 2.06e+03     -485 2.58e+03      10.9   0.0108     52.8  5.43e+03       World eIoni
-  109 2.16e+03     -487 2.78e+03      10.9   0.0308      231  5.66e+03       World eIoni
-  110  2.2e+03     -489 2.85e+03      10.9   0.0098     76.6  5.74e+03       World eIoni
-  111  2.2e+03     -489 2.86e+03      10.9 0.000571     3.54  5.74e+03       World eIoni
-  112 2.24e+03     -490 2.93e+03      10.9   0.0113     80.3  5.82e+03       World eIoni
-  113 2.24e+03     -491 2.94e+03      10.9  0.00243     13.6  5.83e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 698,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.24e+03     -490 2.93e+03   0.00335        0        0         0       World initStep
-    1 2.24e+03     -490 2.93e+03         0  0.00335    0.381     0.381       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 697,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  2.2e+03     -489 2.86e+03   0.00131        0        0         0       World initStep
-    1  2.2e+03     -489 2.86e+03         0  0.00131   0.0846    0.0846       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 696,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  2.2e+03     -489 2.85e+03   0.00144        0        0         0       World initStep
-    1  2.2e+03     -489 2.85e+03         0  0.00144   0.0978    0.0978       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 695,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.16e+03     -487 2.78e+03    0.0074        0        0         0       World initStep
-    1 2.16e+03     -486 2.78e+03   0.00235  0.00506     1.39      1.39       World eIoni
-    2 2.16e+03     -486 2.78e+03         0  0.00235    0.209       1.6       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 694,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.06e+03     -485 2.58e+03   0.00124        0        0         0       World initStep
-    1 2.06e+03     -485 2.58e+03         0  0.00124   0.0782    0.0782       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 693,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.03e+03     -485 2.53e+03   0.00128        0        0         0       World initStep
-    1 2.03e+03     -485 2.53e+03         0  0.00128   0.0819    0.0819       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 692,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    2e+03     -484 2.47e+03   0.00656        0        0         0       World initStep
-    1    2e+03     -484 2.47e+03   0.00175  0.00481     1.21      1.21       World eIoni
-    2    2e+03     -484 2.47e+03         0  0.00175    0.131      1.34       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 691,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.99e+03     -483 2.44e+03    0.0015        0        0         0       World initStep
-    1 1.99e+03     -483 2.44e+03         0   0.0015    0.103     0.103       World eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 690,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.95e+03     -482 2.38e+03   0.00108        0        0         0     Tracker initStep
-    1 1.95e+03     -482 2.38e+03         0  0.00108   0.0635    0.0635     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 689,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.95e+03     -482 2.36e+03   0.00105        0        0         0     Tracker initStep
-    1 1.95e+03     -482 2.36e+03         0  0.00105   0.0611    0.0611     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 688,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.87e+03     -479 2.21e+03   0.00205        0        0         0     Tracker initStep
-    1 1.87e+03     -479 2.21e+03         0  0.00205    0.168     0.168     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 687,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.84e+03     -478 2.14e+03   0.00645        0        0         0     Tracker initStep
-    1 1.84e+03     -478 2.14e+03   0.00169  0.00309    0.793     0.793     Tracker eIoni
-    2 1.84e+03     -478 2.14e+03         0  0.00169    0.124     0.917     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 699,   Parent ID = 687
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.84e+03     -478 2.14e+03   0.00167        0        0         0     Tracker initStep
-    1 1.84e+03     -478 2.14e+03         0  0.00167    0.122     0.122     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 686,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.83e+03     -478 2.12e+03   0.00184        0        0         0     Tracker initStep
-    1 1.83e+03     -478 2.12e+03         0  0.00184    0.142     0.142     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 685,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.82e+03     -477  2.1e+03   0.00107        0        0         0     Tracker initStep
-    1 1.82e+03     -477  2.1e+03         0  0.00107   0.0628    0.0628     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 684,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.78e+03     -474 2.03e+03   0.00165        0        0         0     Tracker initStep
-    1 1.78e+03     -474 2.03e+03         0  0.00165     0.12      0.12     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 683,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.72e+03     -468 1.91e+03   0.00172        0        0         0     Tracker initStep
-    1 1.72e+03     -469 1.91e+03         0  0.00172    0.128     0.128     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 682,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.69e+03     -468 1.85e+03   0.00272        0        0         0     Tracker initStep
-    1 1.69e+03     -468 1.85e+03         0  0.00272    0.266     0.266     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 681,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.67e+03     -465  1.8e+03   0.00102        0        0         0     Tracker initStep
-    1 1.67e+03     -465  1.8e+03         0  0.00102   0.0584    0.0584     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 680,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.6e+03     -461 1.68e+03   0.00173        0        0         0     Chamber initStep
-    1  1.6e+03     -461 1.68e+03         0  0.00173   0.0852    0.0852     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 679,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.56e+03     -466 1.59e+03   0.00278        0        0         0     Chamber initStep
-    1 1.56e+03     -466 1.59e+03         0  0.00278    0.164     0.164     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 678,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.54e+03     -466 1.55e+03   0.00451        0        0         0     Chamber initStep
-    1 1.54e+03     -466 1.55e+03   0.00222 0.000829   0.0743    0.0743     Chamber eIoni
-    2 1.54e+03     -466 1.55e+03         0  0.00222     0.12     0.195     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 700,   Parent ID = 678
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.54e+03     -466 1.55e+03   0.00146        0        0         0     Chamber initStep
-    1 1.54e+03     -466 1.55e+03         0  0.00146   0.0676    0.0676     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 676,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.53e+03     -466 1.54e+03   0.00832        0        0         0     Chamber initStep
-    1 1.53e+03     -466 1.54e+03         0  0.00832    0.898     0.898     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 675,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.53e+03     -465 1.53e+03   0.00328        0        0         0     Chamber initStep
-    1 1.53e+03     -465 1.53e+03         0  0.00328    0.207     0.207     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 674,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.47e+03     -464 1.41e+03   0.00146        0        0         0     Tracker initStep
-    1 1.47e+03     -464 1.41e+03         0  0.00146    0.099     0.099     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 673,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.4e+03     -458 1.26e+03   0.00334        0        0         0     Tracker initStep
-    1  1.4e+03     -458 1.26e+03         0  0.00334    0.378     0.378     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 672,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.34e+03     -452 1.14e+03   0.00477        0        0         0     Tracker initStep
-    1 1.34e+03     -451 1.14e+03   0.00197  0.00106    0.294     0.294     Tracker eIoni
-    2 1.34e+03     -451 1.14e+03         0  0.00197    0.158     0.452     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 701,   Parent ID = 672
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.34e+03     -451 1.14e+03   0.00174        0        0         0     Tracker initStep
-    1 1.34e+03     -451 1.14e+03         0  0.00174     0.13      0.13     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 671,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.32e+03     -450 1.09e+03   0.00107        0        0         0     Tracker initStep
-    1 1.32e+03     -450 1.09e+03         0  0.00107   0.0633    0.0633     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 670,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.26e+03     -442      947   0.00181        0        0         0     Tracker initStep
-    1 1.26e+03     -442      947         0  0.00181    0.139     0.139     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 669,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.23e+03     -440      887   0.00157        0        0         0     Chamber initStep
-    1 1.23e+03     -440      887         0  0.00157   0.0747    0.0747     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 668,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.21e+03     -440      834    0.0021        0        0         0     Chamber initStep
-    1 1.21e+03     -440      834         0   0.0021    0.111     0.111     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 667,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.2e+03     -438      807   0.00173        0        0         0     Chamber initStep
-    1  1.2e+03     -438      807         0  0.00173   0.0853    0.0853     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 666,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.18e+03     -435      771   0.00361        0        0         0     Chamber initStep
-    1 1.18e+03     -435      771         0  0.00361    0.238     0.238     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 665,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.17e+03     -428      733   0.00273        0        0         0     Chamber initStep
-    1 1.17e+03     -428      733         0  0.00273     0.16      0.16     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 664,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.17e+03     -427      724    0.0017        0        0         0     Chamber initStep
-    1 1.17e+03     -427      724         0   0.0017    0.083     0.083     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 663,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.16e+03     -425      704   0.00178        0        0         0     Chamber initStep
-    1 1.16e+03     -425      704         0  0.00178   0.0889    0.0889     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 662,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.13e+03     -408      590   0.00108        0        0         0     Tracker initStep
-    1 1.13e+03     -408      590         0  0.00108   0.0633    0.0633     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 660,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.09e+03     -391      468    0.0163        0        0         0     Tracker initStep
-    1 1.09e+03     -389      468    0.0127  0.00356     2.78      2.78     Tracker eIoni
-    2 1.09e+03     -388      468   0.00864  0.00405     2.23      5.01     Tracker eIoni
-    3 1.09e+03     -387      468   0.00258  0.00606     1.62      6.63     Tracker eIoni
-    4 1.09e+03     -387      468   0.00116 0.000371    0.107      6.73     Tracker eIoni
-    5 1.09e+03     -387      468         0  0.00116   0.0704       6.8     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 702,   Parent ID = 660
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.09e+03     -387      468   0.00106        0        0         0     Tracker initStep
-    1 1.09e+03     -387      468         0  0.00106   0.0616    0.0616     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 659,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.04e+03     -367      309   0.00202        0        0         0     Tracker initStep
-    1 1.04e+03     -367      309         0  0.00202    0.165     0.165     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 658,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.02e+03     -356      245    0.0019        0        0         0     Tracker initStep
-    1 1.02e+03     -356      245         0   0.0019    0.149     0.149     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 657,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      991     -340      136   0.00137        0        0         0     Tracker initStep
-    1      991     -340      136         0  0.00137   0.0906    0.0906     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 656,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      988     -339      126   0.00489        0        0         0     Tracker initStep
-    1      988     -338      126         0  0.00489    0.736     0.736     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 655,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      982     -336      105   0.00245        0        0         0     Tracker initStep
-    1      982     -336      105         0  0.00245    0.225     0.225     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 654,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      976     -333       86   0.00143        0        0         0     Chamber initStep
-    1      976     -333       86         0  0.00143   0.0662    0.0662     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 653,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      975     -332     84.6   0.00138        0        0         0     Chamber initStep
-    1      975     -332     84.6         0  0.00138   0.0626    0.0626     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 651,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      950     -322     10.9   0.00241        0        0         0     Chamber initStep
-    1      950     -322     10.9         0  0.00241    0.134     0.134     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 650,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      947     -321     2.34   0.00677        0        0         0     Chamber initStep
-    1      947     -321     2.32         0  0.00677    0.639     0.639     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 649,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      927     -313      -48   0.00157        0        0         0     Chamber initStep
-    1      927     -313      -48         0  0.00157   0.0745    0.0745     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 648,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      917     -309      -71   0.00349        0        0         0     Chamber initStep
-    1      917     -309      -71         0  0.00349    0.227     0.227     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 647,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      906     -305      -98   0.00354        0        0         0     Chamber initStep
-    1      906     -305      -98    0.0025  0.00104    0.088     0.088     Chamber eIoni
-    2      906     -305      -98         0   0.0025    0.141     0.229     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 646,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      866     -288     -204   0.00249        0        0         0     Tracker initStep
-    1      866     -288     -204         0  0.00249    0.231     0.231     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 645,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      866     -288     -204   0.00104        0        0         0     Tracker initStep
-    1      866     -288     -204         0  0.00104   0.0603    0.0603     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 644,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      858     -285     -226   0.00108        0        0         0     Tracker initStep
-    1      858     -284     -226         0  0.00108   0.0641    0.0641     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 643,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      829     -274     -301   0.00516        0        0         0     Tracker initStep
-    1      830     -274     -301         0  0.00516    0.811     0.811     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 642,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      814     -269     -340    0.0019        0        0         0     Tracker initStep
-    1      814     -269     -340         0   0.0019    0.149     0.149     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 641,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      727     -246     -553   0.00238        0        0         0     Tracker initStep
-    1      727     -246     -553         0  0.00238    0.214     0.214     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 640,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      720     -244     -569    0.0106        0        0         0     Tracker initStep
-    1      721     -243     -569   0.00831  0.00228     1.92      1.92     Tracker eIoni
-    2      721     -243     -569    0.0041  0.00421     1.56      3.49     Tracker eIoni
-    3      721     -243     -569         0   0.0041     0.54      4.03     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 639,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      717     -243     -576   0.00311        0        0         0     Tracker initStep
-    1      717     -243     -576         0  0.00311    0.336     0.336     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 638,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      706     -240     -604   0.00538        0        0         0     Tracker initStep
-    1      706     -240     -603         0  0.00538    0.871     0.871     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 637,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      699     -238     -620   0.00542        0        0         0     Tracker initStep
-    1      699     -238     -620         0  0.00542    0.883     0.883     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 636,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      629     -221     -777   0.00181        0        0         0     Chamber initStep
-    1      629     -221     -777         0  0.00181    0.091     0.091     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 634,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      591     -205     -875    0.0047        0        0         0     Chamber initStep
-    1      591     -205     -875         0   0.0047    0.357     0.357     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 633,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      589     -204     -880    0.0018        0        0         0     Chamber initStep
-    1      589     -204     -880         0   0.0018   0.0902    0.0902     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 632,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      543     -189     -991   0.00586        0        0         0     Tracker initStep
-    1      543     -188     -990         0  0.00586     1.02      1.02     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 631,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      538     -187   -1e+03    0.0028        0        0         0     Tracker initStep
-    1      538     -187   -1e+03         0   0.0028    0.281     0.281     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 630,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      474     -163 -1.16e+03   0.00812        0        0         0     Tracker initStep
-    1      474     -164 -1.16e+03   0.00345  0.00468     1.53      1.53     Tracker eIoni
-    2      474     -164 -1.16e+03         0  0.00345    0.399      1.93     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 629,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      404     -137 -1.34e+03   0.00319        0        0         0     Tracker initStep
-    1      404     -137 -1.34e+03         0  0.00319     0.35      0.35     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 628,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      384     -131 -1.39e+03   0.00758        0        0         0     Tracker initStep
-    1      384     -131 -1.39e+03   0.00332  0.00427     1.43      1.43     Tracker eIoni
-    2      385     -131 -1.39e+03         0  0.00332    0.374       1.8     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 627,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      283    -99.7 -1.64e+03    0.0149        0        0         0     Tracker initStep
-    1      283    -99.7 -1.64e+03    0.0136 3.69e-05   0.0168    0.0168     Tracker eIoni
-    2      282    -98.4 -1.64e+03   0.00971  0.00389     2.37      2.38     Tracker eIoni
-    3      281      -99 -1.64e+03   0.00641   0.0033     1.79      4.17     Tracker eIoni
-    4      282    -99.3 -1.64e+03   0.00241    0.004     1.17      5.34     Tracker eIoni
-    5      282    -99.4 -1.64e+03         0  0.00241    0.218      5.56     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 703,   Parent ID = 627
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      283    -99.7 -1.64e+03   0.00124        0        0         0     Tracker initStep
-    1      283    -99.7 -1.64e+03         0  0.00124   0.0776    0.0776     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 626,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      261    -93.6 -1.69e+03   0.00125        0        0         0     Tracker initStep
-    1      261    -93.6 -1.69e+03         0  0.00125   0.0793    0.0793     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 625,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      260    -93.4 -1.7e+03    0.0016        0        0         0     Tracker initStep
-    1      260    -93.5 -1.7e+03         0   0.0016    0.115     0.115     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 624,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      232    -84.4 -1.77e+03    0.0157        0        0         0     Tracker initStep
-    1      231    -83.4 -1.77e+03    0.0121  0.00244      2.3       2.3     Tracker eIoni
-    2      230    -82.6 -1.77e+03   0.00857  0.00188     1.15      3.46     Tracker eIoni
-    3      231    -82.7 -1.77e+03   0.00301  0.00556     1.61      5.06     Tracker eIoni
-    4      231    -82.6 -1.77e+03         0  0.00301    0.317      5.38     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 705,   Parent ID = 624
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      230    -82.6 -1.77e+03   0.00167        0        0         0     Tracker initStep
-    1      230    -82.6 -1.77e+03         0  0.00167    0.122     0.122     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 704,   Parent ID = 624
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      231    -83.4 -1.77e+03   0.00112        0        0         0     Tracker initStep
-    1      231    -83.4 -1.77e+03         0  0.00112   0.0669    0.0669     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 623,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      209      -76 -1.83e+03    0.0012        0        0         0     Tracker initStep
-    1      209      -76 -1.83e+03         0   0.0012   0.0741    0.0741     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 622,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      177    -64.3 -1.91e+03   0.00412        0        0         0     Tracker initStep
-    1      177    -64.5 -1.91e+03         0  0.00412    0.529     0.529     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 621,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      148    -52.9   -2e+03   0.00807        0        0         0     Tracker initStep
-    1      148    -52.8   -2e+03    0.0065 0.000281    0.201     0.201     Tracker eIoni
-    2      148      -53   -2e+03   0.00163  0.00488     1.19      1.39     Tracker eIoni
-    3      148      -53   -2e+03         0  0.00163    0.117      1.51     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 706,   Parent ID = 621
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      148    -52.8   -2e+03   0.00128        0        0         0     Tracker initStep
-    1      148    -52.8   -2e+03         0  0.00128    0.082     0.082     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 620,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     63.7    -23.4 -2.22e+03   0.00206        0        0         0     Tracker initStep
-    1     63.6    -23.4 -2.22e+03         0  0.00206     0.17      0.17     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 619,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     36.7    -13.9 -2.3e+03   0.00139        0        0         0     Tracker initStep
-    1     36.6    -13.9 -2.3e+03         0  0.00139   0.0919    0.0919     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 618,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     33.4    -12.8 -2.31e+03   0.00478        0        0         0     Tracker initStep
-    1     33.1    -12.8 -2.3e+03         0  0.00478    0.708     0.708     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 617,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     6.76    -2.37 -2.38e+03   0.00221        0        0         0     Tracker initStep
-    1     6.79     -2.3 -2.38e+03         0  0.00221     0.19      0.19     Tracker eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 677,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.54e+03     -466 1.55e+03      1.81        0        0         0     Chamber initStep
-    1 1.61e+03     -468  1.7e+03      1.81        0      170       170     Tracker Transportation
-    2 1.95e+03     -481  2.4e+03      1.81        0      778       948       World Transportation
-    3 2.21e+03     -491 2.94e+03      1.81        0      600  1.55e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 661,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.09e+03     -391      469      6.17        0        0         0     Tracker initStep
-    1 1.16e+03     -433      700      6.17        0      243       243     Chamber Transportation
-    2 1.21e+03     -470      900      6.17        0      211       455     Tracker Transportation
-    3 1.38e+03     -580  1.5e+03      6.17        0      633  1.09e+03     Chamber Transportation
-    4 1.44e+03     -617  1.7e+03      6.17        0      211   1.3e+03     Tracker Transportation
-    5 1.64e+03     -746  2.4e+03      6.17        0      739  2.04e+03       World Transportation
-    6 1.79e+03     -845 2.94e+03      6.17        0      570  2.61e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 652,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      968     -328       61     0.155        0        0         0     Chamber initStep
-    1      979     -335      100     0.155        0     41.3      41.3     Tracker Transportation
-    2 1.16e+03     -433      700     0.155        0      635       676     Chamber Transportation
-    3 1.22e+03     -466      900     0.155        0      212       888     Tracker Transportation
-    4 1.41e+03     -565  1.5e+03     0.155        0      635  1.52e+03     Chamber Transportation
-    5 1.47e+03     -598  1.7e+03     0.155        0      212  1.73e+03     Tracker Transportation
-    6 1.68e+03     -714  2.4e+03     0.155        0      741  2.48e+03       World Transportation
-    7 1.85e+03     -803 2.94e+03     0.155        0      572  3.05e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 635,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      592     -206     -872    0.0633        0        0         0     Chamber initStep
-    1      650     -218     -745         0   0.0346      140       140     Chamber phot
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 707,   Parent ID = 635
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      650     -218     -745    0.0287        0        0         0     Chamber initStep
-    1      650     -219     -745    0.0227  0.00604     3.02      3.02     Chamber eIoni
-    2      651     -218     -745    0.0148  0.00784     2.45      5.47     Chamber eIoni
-    3      651     -218     -745   0.00453   0.0103     1.75      7.21     Chamber eIoni
-    4      651     -218     -745   0.00228 5.68e-05   0.0165      7.23     Chamber eIoni
-    5      651     -218     -745         0  0.00228    0.125      7.35     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 708,   Parent ID = 707
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      651     -218     -745   0.00219        0        0         0     Chamber initStep
-    1      651     -218     -745         0  0.00219    0.118     0.118     Chamber eIoni
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 616,   Parent ID = 614
-*********************************************************************************************************
-
-Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00512   0.0283 -2.4e+03       1.2        0        0         0      Target initStep
-    1  -0.0158  -0.0494 -2.4e+03       1.2        0    0.627     0.627     Tracker Transportation
-    2    -23.6    -87.5 -1.7e+03       1.2        0      706       706     Chamber Transportation
-    3    -30.3     -112 -1.5e+03       1.2        0      202       908     Tracker Transportation
-    4    -50.5     -187     -900       1.2        0      605  1.51e+03     Chamber Transportation
-    5    -57.3     -212     -700       1.2        0      202  1.71e+03     Tracker Transportation
-    6    -77.5     -287     -100       1.2        0      605  2.32e+03     Chamber Transportation
-    7    -84.2     -312      100       1.2        0      202  2.52e+03     Tracker Transportation
-    8     -104     -387      700       1.2        0      605  3.13e+03     Chamber Transportation
-    9     -111     -412      900       1.2        0      202  3.33e+03     Tracker Transportation
-   10     -131     -487  1.5e+03       1.2        0      605  3.93e+03     Chamber Transportation
-   11     -138     -512  1.7e+03       1.2        0      202  4.13e+03     Tracker Transportation
-   12     -162     -600  2.4e+03       1.2        0      706  4.84e+03       World Transportation
-   13     -180     -667 2.94e+03       1.2        0      545  5.39e+03  OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 131,   Parent ID = 6
+* G4Track Information:   Particle = e-,   Track ID = 10,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00587 0.000331 -2.41e+03      4.52        0        0         0      Target initStep
-    1  0.00796  0.00732 -2.4e+03      4.52        0     6.33      6.33     Tracker Transportation
-    2    0.239     0.78 -1.7e+03      4.52        0      700       706     Chamber Transportation
-    3    0.305        1 -1.5e+03      4.52        0      200       906     Tracker Transportation
-    4    0.503     1.66     -900      4.52        0      600  1.51e+03     Chamber Transportation
-    5    0.569     1.88     -700      4.52        0      200  1.71e+03     Tracker Transportation
-    6    0.767     2.55     -100      4.52        0      600  2.31e+03     Chamber Transportation
-    7    0.833     2.77      100      4.52        0      200  2.51e+03     Tracker Transportation
-    8     1.03     3.43      700      4.52        0      600  3.11e+03     Chamber Transportation
-    9      1.1     3.65      900      4.52        0      200  3.31e+03     Tracker Transportation
-   10     1.29     4.31  1.5e+03      4.52        0      600  3.91e+03     Chamber Transportation
-   11     1.36     4.53  1.7e+03      4.52        0      200  4.11e+03     Tracker Transportation
-   12     1.59     5.31  2.4e+03      4.52        0      700  4.81e+03       World Transportation
-   13     1.77      5.9 2.94e+03      4.52        0      540  5.35e+03  OutOfWorld Transportation
+    0    0.268    0.104 -2.5e+03   0.00178        0        0         0       World initStep
+    1    0.326    0.104 -2.5e+03         0  0.00178    0.134     0.134       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 130,   Parent ID = 6
+* G4Track Information:   Particle = e-,   Track ID = 9,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00571 0.000162 -2.41e+03       142        0        0         0      Target initStep
-    1  0.00891 -0.00445 -2.4e+03       142        0     6.83      6.83     Tracker Transportation
-    2    0.337   -0.477 -1.7e+03       142        0      700       707     Chamber Transportation
-    3    0.431   -0.612 -1.5e+03       142        0      200       907     Tracker Transportation
-    4    0.712    -1.02     -900       142        0      600  1.51e+03     Chamber Transportation
-    5    0.806    -1.15     -700       142        0      200  1.71e+03     Tracker Transportation
-    6     1.09    -1.56     -100       142        0      600  2.31e+03     Chamber Transportation
-    7     1.18    -1.69      100       142        0      200  2.51e+03     Tracker Transportation
-    8     1.46     -2.1      700       142        0      600  3.11e+03     Chamber Transportation
-    9     1.56    -2.23      900       142        0      200  3.31e+03     Tracker Transportation
-   10     1.84    -2.64  1.5e+03       142        0      600  3.91e+03     Chamber Transportation
-   11     1.93    -2.77  1.7e+03       142        0      200  4.11e+03     Tracker Transportation
-   12     2.26    -3.25  2.4e+03       142        0      700  4.81e+03       World Transportation
-   13     2.51    -3.61 2.94e+03       142        0      540  5.35e+03  OutOfWorld Transportation
+    0    0.202   0.0972 -2.59e+03   0.00124        0        0         0       World initStep
+    1    0.183    0.124 -2.59e+03         0  0.00124   0.0784    0.0784       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 129,   Parent ID = 6
+* G4Track Information:   Particle = e-,   Track ID = 8,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00565 0.000282 -2.41e+03       199        0        0         0      Target initStep
-    1  0.00723 -0.00708 -2.4e+03       199        0     7.01      7.01     Tracker Transportation
-    2    0.165   -0.742 -1.7e+03       199        0      700       707     Chamber Transportation
-    3     0.21   -0.952 -1.5e+03       199        0      200       907     Tracker Transportation
-    4    0.346    -1.58     -900       199        0      600  1.51e+03     Chamber Transportation
-    5    0.391    -1.79     -700       199        0      200  1.71e+03     Tracker Transportation
-    6    0.527    -2.42     -100       199        0      600  2.31e+03     Chamber Transportation
-    7    0.572    -2.63      100       199        0      200  2.51e+03     Tracker Transportation
-    8    0.707    -3.26      700       199        0      600  3.11e+03     Chamber Transportation
-    9    0.752    -3.47      900       199        0      200  3.31e+03     Tracker Transportation
-   10    0.888     -4.1  1.5e+03       199        0      600  3.91e+03     Chamber Transportation
-   11    0.933    -4.31  1.7e+03       199        0      200  4.11e+03     Tracker Transportation
-   12     1.09    -5.05  2.4e+03       199        0      700  4.81e+03       World Transportation
-   13     1.21    -5.62 2.94e+03       199        0      540  5.35e+03  OutOfWorld Transportation
+    0     0.19    0.084 -2.61e+03   0.00291        0        0         0       World initStep
+    1    0.227   -0.043 -2.61e+03         0  0.00291    0.299     0.299       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 128,   Parent ID = 6
+* G4Track Information:   Particle = e-,   Track ID = 7,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00556 0.000436 -2.41e+03      50.9        0        0         0      Target initStep
-    1  0.00696 -0.000979 -2.41e+03         0        0     1.37      1.37      Target conv
+    0    0.189   0.0828 -2.61e+03   0.00104        0        0         0       World initStep
+    1    0.174   0.0635 -2.61e+03         0  0.00104   0.0603    0.0603       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 709,   Parent ID = 128
+* G4Track Information:   Particle = e-,   Track ID = 6,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00696 -0.000979 -2.41e+03      21.5        0        0         0      Target initStep
-    1  0.00671 -0.000845 -2.41e+03      18.2    0.022   0.0145    0.0145      Target eBrem
-    2   -0.198   -0.299 -2.4e+03      14.9      1.6      1.2      1.22      Target eBrem
-    3    -0.45   -0.636 -2.4e+03      13.4    0.831    0.777         2      Target eBrem
-    4    -1.17    -1.94 -2.4e+03      10.3     2.29     1.84      3.83      Target eBrem
-    5    0.695    -1.77 -2.4e+03      7.31     2.96     2.64      6.47      Target msc
-    6      1.1    -1.45 -2.4e+03      6.36    0.717    0.604      7.07      Target eBrem
-    7     2.57       -1 -2.4e+03      3.27     3.09     2.49      9.56      Target eIoni
-    8     2.55       -1 -2.4e+03     0.913   0.0778   0.0501      9.61      Target eBrem
-    9     2.56   -0.993 -2.4e+03     0.156    0.757     0.65      10.3      Target eBrem
-   10     2.56    -0.99 -2.4e+03         0    0.156   0.0554      10.3      Target eIoni
+    0    0.188   0.0822 -2.62e+03   0.00247        0        0         0       World initStep
+    1    0.288   0.0859 -2.62e+03         0  0.00247    0.227     0.227       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 716,   Parent ID = 709
+* G4Track Information:   Particle = e-,   Track ID = 5,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.55       -1 -2.4e+03      2.28        0        0         0      Target initStep
-    1      -12    -20.8 -2.45e+03         0        0     53.1      53.1      Target conv
+    0    0.178   0.0763 -2.68e+03   0.00143        0        0         0       World initStep
+    1    0.218   0.0792 -2.68e+03         0  0.00143   0.0961    0.0961       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 717,   Parent ID = 716
+* G4Track Information:   Particle = e-,   Track ID = 4,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -12    -20.8 -2.45e+03     0.994        0        0         0      Target initStep
-    1    -11.9    -20.9 -2.45e+03         0    0.994    0.726     0.726      Target eIoni
+    0    0.177    0.076 -2.69e+03   0.00349        0        0         0       World initStep
+    1 -0.00233   0.0485 -2.69e+03         0  0.00349    0.409     0.409       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 715,   Parent ID = 709
+* G4Track Information:   Particle = e-,   Track ID = 3,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.1    -1.45 -2.4e+03      0.24        0        0         0      Target initStep
-    1     3.07    0.756 -2.4e+03      0.24        0     3.39      3.39     Tracker Transportation
-    2  1.6e+03 1.79e+03 -1.07e+03      0.24        0 2.74e+03  2.75e+03       World Transportation
-    3 2.62e+03 2.94e+03     -210      0.24        0 1.76e+03  4.51e+03  OutOfWorld Transportation
+    0    0.139  0.00567 -2.82e+03   0.00123        0        0         0       World initStep
+    1    0.141   0.0377 -2.82e+03         0  0.00123   0.0771    0.0771       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 714,   Parent ID = 709
+* G4Track Information:   Particle = e-,   Track ID = 2,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -1.17    -1.94 -2.4e+03     0.811        0        0         0      Target initStep
-    1     6.28    -4.78 -2.4e+03         0    0.088     7.98      7.98      Target phot
+    0  0.00225 -0.00402 -2.92e+03    0.0482        0        0         0       World initStep
+    1    -1.25   -0.607 -2.92e+03    0.0444 0.000891     1.41      1.41       World eIoni
+    2    -1.44   -0.665 -2.92e+03    0.0419 0.000148    0.207      1.62       World eIoni
+    3    -6.26    -7.54 -2.92e+03    0.0378  0.00406     8.93      10.5       World eIoni
+    4    -6.26    -7.54 -2.92e+03    0.0368 1.73e-06  0.00254      10.6       World eIoni
+    5    -9.88    -13.1 -2.91e+03    0.0308  0.00599     7.37      17.9       World eIoni
+    6    -11.8    -17.5 -2.91e+03     0.026  0.00478     5.75      23.7       World eIoni
+    7    -11.9    -20.9 -2.91e+03    0.0211  0.00491     4.62      28.3       World eIoni
+    8    -14.5      -22 -2.91e+03    0.0165  0.00462     3.62      31.9       World eIoni
+    9    -13.5    -23.5 -2.92e+03    0.0132  0.00332     2.81      34.7       World eIoni
+   10    -13.5    -22.3 -2.92e+03   0.00931  0.00385      2.3        37       World eIoni
+   11      -13    -22.2 -2.92e+03   0.00469  0.00462     1.73      38.8       World eIoni
+   12    -12.7    -22.1 -2.92e+03         0  0.00469    0.684      39.4       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 719,   Parent ID = 714
+* G4Track Information:   Particle = e-,   Track ID = 31,   Parent ID = 2
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     6.28    -4.78 -2.4e+03     0.723        0        0         0      Target initStep
-    1     6.31     -4.8 -2.4e+03         0    0.723    0.492     0.492      Target eIoni
+    0    -6.26    -7.54 -2.92e+03   0.00106        0        0         0       World initStep
+    1    -6.26    -7.54 -2.92e+03         0  0.00106   0.0624    0.0624       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 713,   Parent ID = 709
+* G4Track Information:   Particle = e-,   Track ID = 30,   Parent ID = 2
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -0.45   -0.636 -2.4e+03     0.694        0        0         0      Target initStep
-    1    -3.63    -2.51 -2.4e+03     0.694        0     5.43      5.43     Tracker Transportation
-    2 -2.07e+03 -1.22e+03      178     0.694        0 3.52e+03  3.52e+03       World Transportation
-    3 -2.94e+03 -1.73e+03 1.27e+03     0.694        0 1.49e+03  5.01e+03  OutOfWorld Transportation
+    0    -1.44   -0.665 -2.92e+03   0.00233        0        0         0       World initStep
+    1     -1.5   -0.623 -2.92e+03         0  0.00233    0.206     0.206       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 712,   Parent ID = 709
+* G4Track Information:   Particle = e-,   Track ID = 29,   Parent ID = 2
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.198   -0.299 -2.4e+03      1.74        0        0         0      Target initStep
-    1    -1.54   -0.905 -2.4e+03      1.74        0     4.85      4.85     Tracker Transportation
-    2     -205    -92.7 -1.7e+03      1.74        0      735       740     Chamber Transportation
-    3     -219    -98.9 -1.65e+03      1.74        0     49.4       789     Tracker Transportation
-    4     -437     -198     -900      1.74        0      790  1.58e+03     Chamber Transportation
-    5     -496     -224     -700      1.74        0      210  1.79e+03     Tracker Transportation
-    6     -670     -303     -100      1.74        0      630  2.42e+03     Chamber Transportation
-    7     -728     -329      100      1.74        0      210  2.63e+03     Tracker Transportation
-    8     -903     -408      700      1.74        0      630  3.26e+03     Chamber Transportation
-    9     -961     -434      900      1.74        0      210  3.47e+03     Tracker Transportation
-   10 -1.14e+03     -513  1.5e+03      1.74        0      630   4.1e+03     Chamber Transportation
-   11 -1.19e+03     -539  1.7e+03      1.74        0      210  4.31e+03     Tracker Transportation
-   12 -1.4e+03     -631  2.4e+03      1.74        0      735  5.04e+03       World Transportation
-   13 -1.55e+03     -701 2.94e+03      1.74        0      567  5.61e+03  OutOfWorld Transportation
+    0    -1.25   -0.607 -2.92e+03   0.00289        0        0         0       World initStep
+    1     -1.2   -0.728 -2.92e+03         0  0.00289    0.296     0.296       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 711,   Parent ID = 709
+* G4Track Information:   Particle = gamma,   Track ID = 28,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00671 -0.000845 -2.41e+03      3.28        0        0         0      Target initStep
-    1    0.149    0.176 -2.4e+03      3.28        0     5.76      5.76     Tracker Transportation
-    2     17.4     21.6 -1.7e+03      3.28        0      701       706     Chamber Transportation
-    3     22.3     27.8 -1.5e+03      3.28        0      200       906     Tracker Transportation
-    4     37.1     46.2     -900      3.28        0      600  1.51e+03     Chamber Transportation
-    5       42     52.3     -700      3.28        0      200  1.71e+03     Tracker Transportation
-    6     56.8     70.7     -100      3.28        0      600  2.31e+03     Chamber Transportation
-    7     61.7     76.8      100      3.28        0      200  2.51e+03     Tracker Transportation
-    8     76.5     95.2      700      3.28        0      600  3.11e+03     Chamber Transportation
-    9     81.4      101      900      3.28        0      200  3.31e+03     Tracker Transportation
-   10     96.2      120  1.5e+03      3.28        0      600  3.91e+03     Chamber Transportation
-   11      101      126  1.7e+03      3.28        0      200  4.11e+03     Tracker Transportation
-   12      118      147  2.4e+03      3.28        0      701  4.81e+03       World Transportation
-   13      132      164 2.94e+03      3.28        0      540  5.35e+03  OutOfWorld Transportation
+    0     0.97    -1.92 -2.44e+03     0.511        0        0         0      Target initStep
+    1    0.981    -1.09 -2.45e+03     0.198        0     4.21      4.21      Target compt
+    2      2.5    0.341 -2.44e+03         0    0.088     2.88      7.09      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 127,   Parent ID = 6
+* G4Track Information:   Particle = e-,   Track ID = 33,   Parent ID = 28
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00539 0.000598 -2.41e+03      2.11        0        0         0      Target initStep
-    1   0.0115 -0.00632 -2.4e+03      2.11        0     7.29      7.29     Tracker Transportation
-    2    0.594   -0.671 -1.7e+03      2.11        0      700       707     Chamber Transportation
-    3     0.76   -0.861 -1.5e+03      2.11        0      200       907     Tracker Transportation
-    4     1.26    -1.43     -900      2.11        0      600  1.51e+03     Chamber Transportation
-    5     1.43    -1.62     -700      2.11        0      200  1.71e+03     Tracker Transportation
-    6     1.93    -2.19     -100      2.11        0      600  2.31e+03     Chamber Transportation
-    7     2.09    -2.38      100      2.11        0      200  2.51e+03     Tracker Transportation
-    8     2.59    -2.95      700      2.11        0      600  3.11e+03     Chamber Transportation
-    9     2.76    -3.14      900      2.11        0      200  3.31e+03     Tracker Transportation
-   10     3.26    -3.71  1.5e+03      2.11        0      600  3.91e+03     Chamber Transportation
-   11     3.42     -3.9  1.7e+03      2.11        0      200  4.11e+03     Tracker Transportation
-   12     4.01    -4.56  2.4e+03      2.11        0      700  4.81e+03       World Transportation
-   13     4.46    -5.08 2.94e+03      2.11        0      540  5.35e+03  OutOfWorld Transportation
+    0      2.5    0.341 -2.44e+03      0.11        0        0         0      Target initStep
+    1      2.5     0.34 -2.44e+03         0     0.11   0.0321    0.0321      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 126,   Parent ID = 6
+* G4Track Information:   Particle = e-,   Track ID = 32,   Parent ID = 28
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00489 0.000834 -2.41e+03      7.33        0        0         0      Target initStep
-    1   0.0158 -0.00254 -2.4e+03      7.33        0     7.67      7.67     Tracker Transportation
-    2     1.01    -0.31 -1.7e+03      7.33        0      700       708     Chamber Transportation
-    3     1.29   -0.398 -1.5e+03      7.33        0      200       908     Tracker Transportation
-    4     2.14   -0.662     -900      7.33        0      600  1.51e+03     Chamber Transportation
-    5     2.43    -0.75     -700      7.33        0      200  1.71e+03     Tracker Transportation
-    6     3.28    -1.01     -100      7.33        0      600  2.31e+03     Chamber Transportation
-    7     3.56     -1.1      100      7.33        0      200  2.51e+03     Tracker Transportation
-    8     4.41    -1.36      700      7.33        0      600  3.11e+03     Chamber Transportation
-    9      4.7    -1.45      900      7.33        0      200  3.31e+03     Tracker Transportation
-   10     5.55    -1.72  1.5e+03      7.33        0      600  3.91e+03     Chamber Transportation
-   11     5.83     -1.8  1.7e+03      7.33        0      200  4.11e+03     Tracker Transportation
-   12     6.82    -2.11  2.4e+03      7.33        0      700  4.81e+03       World Transportation
-   13     7.59    -2.35 2.94e+03      7.33        0      540  5.35e+03  OutOfWorld Transportation
+    0    0.981    -1.09 -2.45e+03     0.313        0        0         0      Target initStep
+    1    0.979    -1.09 -2.45e+03         0    0.313    0.158     0.158      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 125,   Parent ID = 6
+* G4Track Information:   Particle = gamma,   Track ID = 27,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00487 0.000841 -2.41e+03      11.4        0        0         0      Target initStep
-    1   0.0159 -0.00463 -2.4e+03      11.4        0     7.68      7.68     Tracker Transportation
-    2     1.02   -0.503 -1.7e+03      11.4        0      700       708     Chamber Transportation
-    3      1.3   -0.645 -1.5e+03      11.4        0      200       908     Tracker Transportation
-    4     2.16    -1.07     -900      11.4        0      600  1.51e+03     Chamber Transportation
-    5     2.45    -1.21     -700      11.4        0      200  1.71e+03     Tracker Transportation
-    6     3.31    -1.64     -100      11.4        0      600  2.31e+03     Chamber Transportation
-    7      3.6    -1.78      100      11.4        0      200  2.51e+03     Tracker Transportation
-    8     4.46    -2.21      700      11.4        0      600  3.11e+03     Chamber Transportation
-    9     4.74    -2.35      900      11.4        0      200  3.31e+03     Tracker Transportation
-   10      5.6    -2.78  1.5e+03      11.4        0      600  3.91e+03     Chamber Transportation
-   11     5.89    -2.92  1.7e+03      11.4        0      200  4.11e+03     Tracker Transportation
-   12     6.89    -3.42  2.4e+03      11.4        0      700  4.81e+03       World Transportation
-   13     7.66     -3.8 2.94e+03      11.4        0      540  5.35e+03  OutOfWorld Transportation
+    0     0.97    -1.92 -2.44e+03     0.511        0        0         0      Target initStep
+    1    0.961    -2.65 -2.44e+03     0.175        0      3.7       3.7      Target compt
+    2    0.953    -2.63 -2.44e+03         0    0.088   0.0399      3.74      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 124,   Parent ID = 6
+* G4Track Information:   Particle = e-,   Track ID = 35,   Parent ID = 27
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00393  0.00093 -2.41e+03      8.55        0        0         0      Target initStep
-    1  0.00506 0.000748 -2.41e+03      1.88        0    0.622     0.622      Target compt
-    2    -2.26    -5.49 -2.4e+03      1.88        0     9.63      10.3     Tracker Transportation
-    3     -340     -823 -1.27e+03     0.708        0 1.44e+03  1.45e+03     Tracker compt
-    4     -453     -635     -811     0.708        0      508  1.95e+03     Chamber Transportation
-    5     -481     -589     -700     0.708        0      124  2.08e+03     Tracker Transportation
-    6     -630     -341     -100     0.708        0      666  2.74e+03     Chamber Transportation
-    7     -680     -258      100     0.708        0      222  2.97e+03     Tracker Transportation
-    8     -829    -10.7      700     0.708        0      666  3.63e+03     Chamber Transportation
-    9     -879     71.9      900     0.708        0      222  3.85e+03     Tracker Transportation
-   10 -1.03e+03      320  1.5e+03     0.708        0      666  4.52e+03     Chamber Transportation
-   11 -1.08e+03      402  1.7e+03     0.708        0      222  4.74e+03     Tracker Transportation
-   12 -1.25e+03      691  2.4e+03     0.708        0      777  5.52e+03       World Transportation
-   13 -1.39e+03      914 2.94e+03     0.708        0      599  6.12e+03  OutOfWorld Transportation
+    0    0.953    -2.63 -2.44e+03    0.0872        0        0         0      Target initStep
+    1    0.954    -2.63 -2.44e+03         0   0.0872    0.022     0.022      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 721,   Parent ID = 124
+* G4Track Information:   Particle = e-,   Track ID = 34,   Parent ID = 27
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -340     -823 -1.27e+03      1.17        0        0         0     Tracker initStep
-    1     -340     -826 -1.27e+03      1.17 0.000142     2.86      2.86     Tracker eIoni
-    2     -341     -829 -1.26e+03      1.16 0.000315     4.32      7.18     Tracker eIoni
-    3     -346     -886 -1.23e+03      1.15  0.00954     66.5      73.7     Tracker eIoni
-    4     -362     -952 -1.2e+03      1.14   0.0106     75.4       149     Tracker eIoni
-    5     -368 -1.04e+03 -1.16e+03      1.13    0.013      100       249     Tracker StepLimiter
-    6     -368 -1.08e+03 -1.14e+03      1.12  0.00711     45.7       295     Tracker eIoni
-    7     -374 -1.13e+03 -1.12e+03      1.06  0.00551     46.3       341     Tracker eIoni
-    8     -373 -1.15e+03 -1.11e+03      1.05  0.00201     21.8       363     Tracker eIoni
-    9     -373 -1.15e+03 -1.11e+03     0.906 0.000836     3.31       366     Tracker eIoni
-   10     -402 -1.25e+03 -1.12e+03     0.894   0.0124      100       466     Tracker StepLimiter
-   11     -414 -1.28e+03 -1.12e+03     0.889  0.00398     33.6       500     Tracker eIoni
-   12     -434 -1.32e+03 -1.12e+03     0.879  0.00858     50.7       550     Tracker eIoni
-   13     -444 -1.35e+03 -1.11e+03     0.839  0.00497     31.8       582     Tracker eIoni
-   14     -467 -1.45e+03 -1.09e+03     0.823   0.0153      100       682     Tracker StepLimiter
-   15     -492 -1.51e+03 -1.07e+03     0.812  0.00877     65.9       748     Tracker eIoni
-   16     -530 -1.58e+03 -1.05e+03     0.799   0.0118     84.1       832     Tracker eIoni
-   17     -590 -1.66e+03 -1.04e+03     0.785   0.0146      100       932     Tracker StepLimiter
-   18     -604 -1.68e+03 -1.03e+03     0.775  0.00562     28.9       961     Tracker eIoni
-   19     -620 -1.72e+03 -1.02e+03      0.77  0.00399     47.1  1.01e+03     Tracker eIoni
-   20     -631 -1.74e+03 -1.02e+03     0.766  0.00214     20.3  1.03e+03     Tracker eIoni
-   21     -660 -1.78e+03 -1.01e+03     0.756  0.00783     55.1  1.08e+03     Tracker eIoni
-   22     -707 -1.84e+03     -984     0.745  0.00987     72.4  1.16e+03     Tracker eIoni
-   23     -734 -1.87e+03     -960     0.736  0.00751     48.5   1.2e+03     Tracker eIoni
-   24     -767 -1.91e+03     -914     0.723   0.0113     72.5  1.28e+03     Tracker eIoni
-   25     -774 -1.92e+03     -908     0.718  0.00138     10.2  1.29e+03     Tracker eIoni
-   26     -800 -1.93e+03     -880     0.709  0.00719     42.5  1.33e+03     Tracker eIoni
-   27     -822 -1.95e+03     -860     0.697   0.0047     33.6  1.36e+03     Tracker eIoni
-   28     -879 -1.99e+03     -791     0.682    0.015      100  1.46e+03     Tracker StepLimiter
-   29     -921 -2.04e+03     -714     0.666   0.0159      100  1.56e+03     Tracker StepLimiter
-   30     -934 -2.06e+03     -697     0.661  0.00216     25.6  1.59e+03     Tracker eIoni
-   31     -985 -2.11e+03     -635     0.644   0.0167      100  1.69e+03     Tracker StepLimiter
-   32 -1.04e+03 -2.16e+03     -574     0.634   0.0109     99.3  1.79e+03       World Transportation
-   33 -1.12e+03 -2.23e+03     -457     0.608    0.025      158  1.95e+03       World eIoni
-   34 -1.2e+03 -2.27e+03     -307      0.58   0.0266      182  2.13e+03       World eIoni
-   35 -1.25e+03 -2.35e+03     -201     0.551   0.0228      142  2.27e+03       World eIoni
-   36 -1.42e+03 -2.6e+03      163     0.468   0.0825      534   2.8e+03       World eIoni
-   37 -1.5e+03 -2.77e+03      270     0.432   0.0346      212  3.02e+03       World eIoni
-   38 -1.51e+03 -2.83e+03      291     0.412  0.00999     64.1  3.08e+03       World eIoni
-   39 -1.51e+03 -2.83e+03      292      0.41 0.000169     4.05  3.08e+03       World eIoni
-   40 -1.5e+03 -2.84e+03      301     0.404  0.00166     17.6   3.1e+03       World eIoni
-   41 -1.5e+03 -2.85e+03      304       0.4  0.00153     8.16  3.11e+03       World eIoni
-   42 -1.5e+03 -2.87e+03      309     0.395   0.0035     19.8  3.13e+03       World eIoni
-   43 -1.5e+03 -2.9e+03      332     0.388  0.00594     34.3  3.16e+03       World eIoni
-   44 -1.5e+03 -2.9e+03      340     0.383  0.00327     12.1  3.18e+03       World eIoni
-   45 -1.49e+03 -2.91e+03      350      0.38  0.00235     12.2  3.19e+03       World eIoni
-   46 -1.49e+03 -2.93e+03      372     0.374  0.00388     28.5  3.22e+03       World eIoni
-   47 -1.49e+03 -2.94e+03      383     0.372  0.00196     15.6  3.23e+03  OutOfWorld Transportation
+    0    0.961    -2.65 -2.44e+03     0.336        0        0         0      Target initStep
+    1    0.962    -2.65 -2.44e+03         0    0.336    0.175     0.175      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 758,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 26,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.49e+03 -2.93e+03      372   0.00162        0        0         0       World initStep
-    1 -1.49e+03 -2.93e+03      372         0  0.00162    0.116     0.116       World eIoni
+    0    0.831     -1.7 -2.44e+03     0.636        0        0         0      Target initStep
+    1     5.46    -5.14 -2.44e+03     0.329        0     6.13      6.13      Target compt
+    2     5.58    -4.98 -2.44e+03         0    0.088     0.28      6.41      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 757,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 37,   Parent ID = 26
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.49e+03 -2.91e+03      350   0.00156        0        0         0       World initStep
-    1 -1.49e+03 -2.91e+03      350         0  0.00156     0.11      0.11       World eIoni
+    0     5.58    -4.98 -2.44e+03     0.241        0        0         0      Target initStep
+    1     5.59    -4.98 -2.44e+03         0    0.241    0.108     0.108      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 756,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 36,   Parent ID = 26
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.5e+03 -2.9e+03      340   0.00105        0        0         0       World initStep
-    1 -1.5e+03 -2.9e+03      340         0  0.00105   0.0608    0.0608       World eIoni
+    0     5.46    -5.14 -2.44e+03     0.307        0        0         0      Target initStep
+    1     5.47    -5.14 -2.44e+03         0    0.307    0.154     0.154      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 755,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 25,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.5e+03 -2.9e+03      332   0.00112        0        0         0       World initStep
-    1 -1.5e+03 -2.9e+03      332         0  0.00112   0.0674    0.0674       World eIoni
+    0   -0.037   -0.685 -2.44e+03     0.207        0        0         0      Target initStep
+    1     1.08    -2.16 -2.44e+03         0    0.088     2.05      2.05      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 754,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 38,   Parent ID = 25
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.5e+03 -2.87e+03      309   0.00183        0        0         0       World initStep
-    1 -1.5e+03 -2.87e+03      309         0  0.00183     0.14      0.14       World eIoni
+    0     1.08    -2.16 -2.44e+03     0.119        0        0         0      Target initStep
+    1     1.09    -2.16 -2.44e+03         0    0.119   0.0364    0.0364      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 753,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 24,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.5e+03 -2.85e+03      304   0.00247        0        0         0       World initStep
-    1 -1.5e+03 -2.85e+03      304         0  0.00247    0.227     0.227       World eIoni
+    0   -0.533  -0.0477 -2.44e+03     0.326        0        0         0      Target initStep
+    1   0.0961    0.087 -2.44e+03     0.303        0     3.51      3.51      Target compt
+    2    0.275   0.0248 -2.44e+03     0.153        0    0.311      3.82      Target compt
+    3    0.287  -0.0193 -2.44e+03         0    0.088     0.16      3.98      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 752,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 41,   Parent ID = 24
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.5e+03 -2.84e+03      301   0.00372        0        0         0       World initStep
-    1 -1.5e+03 -2.84e+03      301         0  0.00372    0.457     0.457       World eIoni
+    0    0.287  -0.0193 -2.44e+03    0.0646        0        0         0      Target initStep
+    1    0.288  -0.0197 -2.44e+03         0   0.0646   0.0135    0.0135      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 751,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 40,   Parent ID = 24
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.51e+03 -2.83e+03      292   0.00202        0        0         0       World initStep
-    1 -1.51e+03 -2.83e+03      292         0  0.00202    0.165     0.165       World eIoni
+    0    0.275   0.0248 -2.44e+03      0.15        0        0         0      Target initStep
+    1    0.276   0.0247 -2.44e+03         0     0.15   0.0521    0.0521      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 750,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 39,   Parent ID = 24
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.51e+03 -2.83e+03      291    0.0105        0        0         0       World initStep
-    1 -1.51e+03 -2.83e+03      291   0.00429  0.00624     1.91      1.91       World eIoni
-    2 -1.51e+03 -2.83e+03      292         0  0.00429    0.586       2.5       World eIoni
+    0   0.0961    0.087 -2.44e+03     0.024        0        0         0      Target initStep
+    1   0.0959   0.0871 -2.44e+03         0    0.024  0.00271   0.00271      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 749,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 23,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.5e+03 -2.77e+03      270   0.00157        0        0         0       World initStep
-    1 -1.5e+03 -2.77e+03      270         0  0.00157    0.111     0.111       World eIoni
+    0   -0.503 -0.00641 -2.44e+03      44.2        0        0         0      Target initStep
+    1    -2.99   -0.654 -2.43e+03         0        0     8.35      8.35      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 748,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 42,   Parent ID = 23
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.25e+03 -2.35e+03     -201   0.00577        0        0         0       World initStep
-    1 -1.25e+03 -2.35e+03     -201         0  0.00577    0.987     0.987       World eIoni
+    0    -2.99   -0.654 -2.43e+03      12.3        0        0         0      Target initStep
+    1    -3.13   -0.688 -2.43e+03      6.96    0.493    0.487     0.487      Target eBrem
+    2    -3.05   -0.667 -2.43e+03      5.29      1.3     1.15      1.63      Target eBrem
+    3    -2.96    -1.11 -2.43e+03       4.3    0.846    0.814      2.45      Target eBrem
+    4     -2.9    -1.32 -2.43e+03      1.47     2.83     2.08      4.52      Target eIoni
+    5    -2.93    -1.34 -2.43e+03    0.0576     1.41     1.12      5.65      Target eIoni
+    6    -2.93    -1.34 -2.43e+03         0   0.0576   0.0112      5.66      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 747,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 46,   Parent ID = 42
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.2e+03 -2.27e+03     -307   0.00139        0        0         0       World initStep
-    1 -1.2e+03 -2.27e+03     -307         0  0.00139    0.092     0.092       World eIoni
+    0    -2.96    -1.11 -2.43e+03     0.143        0        0         0      Target initStep
+    1    -2.81    -1.15 -2.43e+03         0    0.088     0.34      0.34      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 746,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 47,   Parent ID = 46
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -1.12e+03 -2.23e+03     -457  0.000996        0        0         0       World initStep
-    1 -1.12e+03 -2.23e+03     -457         0 0.000996   0.0567    0.0567       World eIoni
+    0    -2.81    -1.15 -2.43e+03    0.0553        0        0         0      Target initStep
+    1    -2.81    -1.15 -2.43e+03         0   0.0553   0.0105    0.0105      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 745,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 45,   Parent ID = 42
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -934 -2.06e+03     -697   0.00271        0        0         0     Tracker initStep
-    1     -934 -2.06e+03     -697         0  0.00271    0.266     0.266     Tracker eIoni
+    0    -3.05   -0.667 -2.43e+03     0.368        0        0         0      Target initStep
+    1    -2.97    -1.07 -2.43e+03         0    0.088    0.439     0.439      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 744,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 48,   Parent ID = 45
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -822 -1.95e+03     -860   0.00793        0        0         0     Tracker initStep
-    1     -822 -1.95e+03     -859   0.00126  0.00567     1.34      1.34     Tracker eIoni
-    2     -822 -1.95e+03     -860         0  0.00126   0.0799      1.42     Tracker eIoni
+    0    -2.97    -1.07 -2.43e+03      0.28        0        0         0      Target initStep
+    1    -2.97    -1.07 -2.43e+03         0     0.28    0.135     0.135      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 759,   Parent ID = 744
+* G4Track Information:   Particle = gamma,   Track ID = 44,   Parent ID = 42
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -822 -1.95e+03     -859     0.001        0        0         0     Tracker initStep
-    1     -822 -1.95e+03     -859         0    0.001   0.0574    0.0574     Tracker eIoni
+    0    -3.13   -0.688 -2.43e+03      4.88        0        0         0      Target initStep
+    1    -2.31   -0.655 -2.43e+03      1.01        0     9.08      9.08      Target compt
+    2    -10.1     5.33 -2.42e+03     0.865        0     12.9        22      Target compt
+    3    -13.5     6.31 -2.41e+03         0    0.088     3.94        26      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 743,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 51,   Parent ID = 44
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -800 -1.93e+03     -880   0.00102        0        0         0     Tracker initStep
-    1     -800 -1.93e+03     -880         0  0.00102    0.059     0.059     Tracker eIoni
+    0    -13.5     6.31 -2.41e+03     0.777        0        0         0      Target initStep
+    1    -13.5     6.32 -2.41e+03         0    0.777    0.538     0.538      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 742,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 50,   Parent ID = 44
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -774 -1.92e+03     -908   0.00396        0        0         0     Tracker initStep
-    1     -774 -1.92e+03     -908         0  0.00396    0.508     0.508     Tracker eIoni
+    0    -10.1     5.33 -2.42e+03     0.142        0        0         0      Target initStep
+    1    -10.1     5.33 -2.42e+03         0    0.142   0.0478    0.0478      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 741,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 49,   Parent ID = 44
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -767 -1.91e+03     -914   0.00204        0        0         0     Tracker initStep
-    1     -767 -1.91e+03     -914         0  0.00204    0.167     0.167     Tracker eIoni
+    0    -2.31   -0.655 -2.43e+03      3.87        0        0         0      Target initStep
+    1    -2.23   -0.689 -2.42e+03      3.06    0.537    0.556     0.556      Target eBrem
+    2    -2.32   -0.962 -2.42e+03      1.04     2.02     1.77      2.33      Target eIoni
+    3    -2.27    -0.98 -2.42e+03         0     1.04    0.768       3.1      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 740,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 52,   Parent ID = 49
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -734 -1.87e+03     -960   0.00101        0        0         0     Tracker initStep
-    1     -734 -1.87e+03     -960  0.000198 0.000814   0.0391    0.0391     Tracker msc
-    2     -734 -1.87e+03     -960         0 0.000198  0.00904    0.0481     Tracker eIoni
+    0    -2.23   -0.689 -2.42e+03     0.271        0        0         0      Target initStep
+    1    -3.31    -4.49 -2.42e+03         0    0.088     4.18      4.18      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 739,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 53,   Parent ID = 52
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -707 -1.84e+03     -984   0.00165        0        0         0     Tracker initStep
-    1     -707 -1.84e+03     -984         0  0.00165     0.12      0.12     Tracker eIoni
+    0    -3.31    -4.49 -2.42e+03     0.183        0        0         0      Target initStep
+    1    -3.31     -4.5 -2.42e+03         0    0.183   0.0713    0.0713      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 738,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 22,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -660 -1.78e+03 -1.01e+03   0.00213        0        0         0     Tracker initStep
-    1     -660 -1.78e+03 -1.01e+03         0  0.00213    0.179     0.179     Tracker eIoni
+    0   -0.358     0.17 -2.44e+03      1.44        0        0         0      Target initStep
+    1    -2.49    -2.82 -2.42e+03         0    0.088     27.7      27.7      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 737,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 54,   Parent ID = 22
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -631 -1.74e+03 -1.02e+03   0.00146        0        0         0     Tracker initStep
-    1     -631 -1.74e+03 -1.02e+03         0  0.00146   0.0998    0.0998     Tracker eIoni
+    0    -2.49    -2.82 -2.42e+03      1.35        0        0         0      Target initStep
+    1    -2.48     -2.8 -2.42e+03     0.185     1.17     1.04      1.04      Target eIoni
+    2    -2.48    -2.79 -2.42e+03         0    0.185   0.0723      1.11      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 736,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 21,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -620 -1.72e+03 -1.02e+03   0.00135        0        0         0     Tracker initStep
-    1     -620 -1.72e+03 -1.02e+03         0  0.00135   0.0887    0.0887     Tracker eIoni
+    0   -0.284    0.224 -2.44e+03      6.55        0        0         0      Target initStep
+    1   -0.949    0.046 -2.44e+03         0        0     3.85      3.85      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 735,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 55,   Parent ID = 21
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -604 -1.68e+03 -1.03e+03   0.00364        0        0         0     Tracker initStep
-    1     -604 -1.68e+03 -1.03e+03         0  0.00364     0.44      0.44     Tracker eIoni
+    0   -0.949    0.046 -2.44e+03      4.25        0        0         0      Target initStep
+    1   -0.984    0.053 -2.44e+03      3.28    0.255    0.224     0.224      Target eBrem
+    2   -0.858    0.355 -2.44e+03      1.19      1.8     1.76      1.98      Target eBrem
+    3   -0.785    0.348 -2.44e+03     0.339    0.617    0.577      2.56      Target eBrem
+    4   -0.796    0.352 -2.44e+03         0    0.339    0.178      2.73      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 734,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 59,   Parent ID = 55
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -530 -1.58e+03 -1.05e+03   0.00139        0        0         0     Tracker initStep
-    1     -530 -1.58e+03 -1.05e+03         0  0.00139   0.0921    0.0921     Tracker eIoni
+    0   -0.785    0.348 -2.44e+03     0.235        0        0         0      Target initStep
+    1    -1.28    -1.57 -2.44e+03         0    0.088     2.51      2.51      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 733,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 60,   Parent ID = 59
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -492 -1.51e+03 -1.07e+03    0.0022        0        0         0     Tracker initStep
-    1     -492 -1.51e+03 -1.07e+03         0   0.0022    0.189     0.189     Tracker eIoni
+    0    -1.28    -1.57 -2.44e+03     0.147        0        0         0      Target initStep
+    1    -1.27    -1.57 -2.44e+03         0    0.147   0.0508    0.0508      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 732,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 58,   Parent ID = 55
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -444 -1.35e+03 -1.11e+03     0.035        0        0         0     Tracker initStep
-    1     -450 -1.35e+03 -1.11e+03    0.0296  0.00539     6.86      6.86     Tracker eIoni
-    2     -454 -1.35e+03 -1.11e+03    0.0238  0.00576     5.46      12.3     Tracker eIoni
-    3     -455 -1.35e+03 -1.11e+03     0.019   0.0012     1.42      13.7     Tracker eIoni
-    4     -456 -1.35e+03 -1.11e+03    0.0154  0.00355     3.23        17     Tracker eIoni
-    5     -457 -1.35e+03 -1.11e+03   0.00728  0.00262     1.94      18.9     Tracker eIoni
-    6     -458 -1.35e+03 -1.11e+03   0.00344  0.00182    0.647      19.6     Tracker eIoni
-    7     -458 -1.35e+03 -1.11e+03         0  0.00344    0.399        20     Tracker eIoni
+    0   -0.858    0.355 -2.44e+03     0.294        0        0         0      Target initStep
+    1   0.0902    0.185 -2.44e+03     0.274        0    0.996     0.996      Target compt
+    2     2.91     1.16 -2.44e+03         0    0.088     3.02      4.02      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 762,   Parent ID = 732
+* G4Track Information:   Particle = e-,   Track ID = 62,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -458 -1.35e+03 -1.11e+03   0.00202        0        0         0     Tracker initStep
-    1     -458 -1.35e+03 -1.11e+03         0  0.00202    0.164     0.164     Tracker eIoni
+    0     2.91     1.16 -2.44e+03     0.186        0        0         0      Target initStep
+    1     2.92     1.16 -2.44e+03         0    0.186   0.0729    0.0729      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 761,   Parent ID = 732
+* G4Track Information:   Particle = e-,   Track ID = 61,   Parent ID = 58
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -457 -1.35e+03 -1.11e+03   0.00555        0        0         0     Tracker initStep
-    1     -458 -1.35e+03 -1.11e+03         0  0.00555    0.922     0.922     Tracker eIoni
+    0   0.0902    0.185 -2.44e+03    0.0199        0        0         0      Target initStep
+    1   0.0902    0.185 -2.44e+03         0   0.0199  0.00202   0.00202      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 760,   Parent ID = 732
+* G4Track Information:   Particle = gamma,   Track ID = 57,   Parent ID = 55
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -455 -1.35e+03 -1.11e+03   0.00364        0        0         0     Tracker initStep
-    1     -454 -1.35e+03 -1.11e+03         0  0.00364    0.439     0.439     Tracker eIoni
+    0   -0.984    0.053 -2.44e+03     0.706        0        0         0      Target initStep
+    1    0.608     2.87 -2.44e+03     0.623        0     3.45      3.45      Target compt
+    2     2.81     4.76 -2.44e+03     0.368        0     2.91      6.35      Target compt
+    3      2.6     5.63 -2.44e+03         0    0.088    0.921      7.27      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 731,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 65,   Parent ID = 57
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -434 -1.32e+03 -1.12e+03   0.00151        0        0         0     Tracker initStep
-    1     -434 -1.32e+03 -1.12e+03         0  0.00151    0.104     0.104     Tracker eIoni
+    0      2.6     5.63 -2.44e+03      0.28        0        0         0      Target initStep
+    1      2.6     5.64 -2.44e+03         0     0.28    0.135     0.135      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 730,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 64,   Parent ID = 57
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -414 -1.28e+03 -1.12e+03   0.00124        0        0         0     Tracker initStep
-    1     -414 -1.28e+03 -1.12e+03         0  0.00124   0.0776    0.0776     Tracker eIoni
+    0     2.81     4.76 -2.44e+03     0.254        0        0         0      Target initStep
+    1     2.82     4.76 -2.44e+03         0    0.254    0.117     0.117      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 729,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 63,   Parent ID = 57
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -373 -1.15e+03 -1.11e+03     0.142        0        0         0     Tracker initStep
-    1     -353 -1.17e+03 -1.1e+03     0.133  0.00784     31.4      31.4     Tracker eIoni
-    2     -303 -1.17e+03 -1.12e+03     0.118   0.0149     58.9      90.3     Tracker eIoni
-    3     -276 -1.19e+03 -1.14e+03     0.105   0.0116     38.8       129     Tracker eIoni
-    4     -246 -1.19e+03 -1.16e+03    0.0929   0.0123     39.7       169     Tracker eIoni
-    5     -244 -1.2e+03 -1.16e+03    0.0914 0.000523      2.2       171     Tracker eIoni
-    6     -240 -1.2e+03 -1.16e+03    0.0871  0.00203     5.29       176     Tracker eIoni
-    7     -235 -1.2e+03 -1.16e+03     0.084  0.00182     5.44       182     Tracker eIoni
-    8     -229 -1.21e+03 -1.17e+03    0.0813  0.00268     11.3       193     Tracker eIoni
-    9     -211 -1.22e+03 -1.17e+03    0.0716  0.00974     25.8       219     Tracker eIoni
-   10     -210 -1.22e+03 -1.17e+03    0.0621 0.000673     2.88       222     Tracker eIoni
-   11     -207 -1.23e+03 -1.16e+03    0.0545  0.00759     16.6       238     Tracker eIoni
-   12     -206 -1.24e+03 -1.16e+03    0.0464  0.00809     13.4       252     Tracker eIoni
-   13     -205 -1.24e+03 -1.16e+03     0.034   0.0037     5.67       257     Tracker eIoni
-   14     -203 -1.25e+03 -1.16e+03    0.0278  0.00478     5.06       262     Tracker eIoni
-   15     -201 -1.25e+03 -1.16e+03     0.023  0.00475     5.03       267     Tracker eIoni
-   16     -201 -1.25e+03 -1.16e+03    0.0219 0.000161    0.256       268     Tracker eIoni
-   17     -200 -1.25e+03 -1.16e+03     0.018  0.00389     3.77       271     Tracker eIoni
-   18     -200 -1.25e+03 -1.16e+03    0.0137  0.00424     3.06       274     Tracker eIoni
-   19     -199 -1.25e+03 -1.16e+03    0.0106  0.00316     2.39       277     Tracker eIoni
-   20     -198 -1.25e+03 -1.16e+03   0.00566 0.000885    0.632       278     Tracker eIoni
-   21     -198 -1.25e+03 -1.16e+03         0  0.00566    0.956       278     Tracker eIoni
+    0    0.608     2.87 -2.44e+03    0.0838        0        0         0      Target initStep
+    1    0.608     2.87 -2.44e+03         0   0.0838   0.0206    0.0206      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 772,   Parent ID = 729
+* G4Track Information:   Particle = gamma,   Track ID = 20,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -198 -1.25e+03 -1.16e+03   0.00403        0        0         0     Tracker initStep
-    1     -198 -1.25e+03 -1.16e+03         0  0.00403    0.525     0.525     Tracker eIoni
+    0   -0.168    0.263 -2.44e+03     0.835        0        0         0      Target initStep
+    1     -1.3    0.707 -2.43e+03         0    0.088     11.5      11.5      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 771,   Parent ID = 729
+* G4Track Information:   Particle = e-,   Track ID = 66,   Parent ID = 20
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -201 -1.25e+03 -1.16e+03  0.000993        0        0         0     Tracker initStep
-    1     -201 -1.25e+03 -1.16e+03         0 0.000993   0.0565    0.0565     Tracker eIoni
+    0     -1.3    0.707 -2.43e+03     0.747        0        0         0      Target initStep
+    1    -1.29    0.713 -2.43e+03         0    0.747    0.512     0.512      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 770,   Parent ID = 729
+* G4Track Information:   Particle = gamma,   Track ID = 19,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -203 -1.25e+03 -1.16e+03    0.0014        0        0         0     Tracker initStep
-    1     -203 -1.25e+03 -1.16e+03         0   0.0014   0.0934    0.0934     Tracker eIoni
+    0  -0.0148    0.148 -2.45e+03    0.0992        0        0         0      Target initStep
+    1  -0.0214    0.148 -2.45e+03         0    0.088   0.0532    0.0532      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 769,   Parent ID = 729
+* G4Track Information:   Particle = e-,   Track ID = 67,   Parent ID = 19
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -205 -1.24e+03 -1.16e+03   0.00873        0        0         0     Tracker initStep
-    1     -206 -1.25e+03 -1.16e+03   0.00451  0.00422     1.63      1.63     Tracker eIoni
-    2     -206 -1.25e+03 -1.16e+03         0  0.00451    0.639      2.27     Tracker eIoni
+    0  -0.0214    0.148 -2.45e+03    0.0112        0        0         0      Target initStep
+    1  -0.0215    0.148 -2.45e+03         0   0.0112 0.000833  0.000833      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 768,   Parent ID = 729
+* G4Track Information:   Particle = gamma,   Track ID = 18,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -210 -1.22e+03 -1.17e+03   0.00882        0        0         0     Tracker initStep
-    1     -209 -1.22e+03 -1.17e+03   0.00364  0.00519     1.65      1.65     Tracker eIoni
-    2     -209 -1.22e+03 -1.17e+03         0  0.00364    0.439      2.09     Tracker eIoni
+    0 -0.00964    0.148 -2.45e+03     0.897        0        0         0      Target initStep
+    1    -4.52    0.748 -2.41e+03     0.834        0     34.8      34.8      Target compt
+    2    -4.55     0.99 -2.41e+03     0.496        0     0.83      35.6      Target compt
+    3    -5.05     1.16 -2.41e+03     0.492        0    0.604      36.2      Target compt
+    4    -17.6     3.85 -2.4e+03         0    0.088     14.4      50.6      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 767,   Parent ID = 729
+* G4Track Information:   Particle = e-,   Track ID = 71,   Parent ID = 18
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -235 -1.2e+03 -1.16e+03   0.00128        0        0         0     Tracker initStep
-    1     -235 -1.2e+03 -1.16e+03         0  0.00128    0.082     0.082     Tracker eIoni
+    0    -17.6     3.85 -2.4e+03     0.404        0        0         0      Target initStep
+    1    -17.6     3.85 -2.4e+03         0    0.404    0.228     0.228      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 766,   Parent ID = 729
+* G4Track Information:   Particle = e-,   Track ID = 70,   Parent ID = 18
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -240 -1.2e+03 -1.16e+03   0.00225        0        0         0     Tracker initStep
-    1     -240 -1.2e+03 -1.16e+03         0  0.00225    0.196     0.196     Tracker eIoni
+    0    -5.05     1.16 -2.41e+03   0.00338        0        0         0      Target initStep
+    1    -5.05     1.16 -2.41e+03         0  0.00338 0.000154  0.000154      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 765,   Parent ID = 729
+* G4Track Information:   Particle = e-,   Track ID = 69,   Parent ID = 18
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -244 -1.2e+03 -1.16e+03   0.00104        0        0         0     Tracker initStep
-    1     -244 -1.2e+03 -1.16e+03         0  0.00104   0.0603    0.0603     Tracker eIoni
+    0    -4.55     0.99 -2.41e+03     0.339        0        0         0      Target initStep
+    1    -4.55    0.992 -2.41e+03         0    0.339    0.177     0.177      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 764,   Parent ID = 729
+* G4Track Information:   Particle = e-,   Track ID = 68,   Parent ID = 18
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -276 -1.19e+03 -1.14e+03   0.00148        0        0         0     Tracker initStep
-    1     -276 -1.19e+03 -1.14e+03         0  0.00148    0.102     0.102     Tracker eIoni
+    0    -4.52    0.748 -2.41e+03    0.0628        0        0         0      Target initStep
+    1    -4.52    0.747 -2.41e+03         0   0.0628   0.0129    0.0129      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 763,   Parent ID = 729
+* G4Track Information:   Particle = gamma,   Track ID = 17,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -353 -1.17e+03 -1.1e+03   0.00118        0        0         0     Tracker initStep
-    1     -353 -1.17e+03 -1.1e+03         0  0.00118   0.0724    0.0724     Tracker eIoni
+    0   0.0171     0.15 -2.45e+03     0.134        0        0         0      Target initStep
+    1  -0.0239    0.148 -2.45e+03         0    0.088    0.264     0.264      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 728,   Parent ID = 721
+* G4Track Information:   Particle = e-,   Track ID = 72,   Parent ID = 17
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -373 -1.15e+03 -1.11e+03   0.00407        0        0         0     Tracker initStep
-    1     -373 -1.15e+03 -1.11e+03         0  0.00407    0.534     0.534     Tracker eIoni
+    0  -0.0239    0.148 -2.45e+03    0.0457        0        0         0      Target initStep
+    1   -0.024    0.149 -2.45e+03         0   0.0457   0.0077    0.0077      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 727,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 16,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -374 -1.13e+03 -1.12e+03     0.057        0        0         0     Tracker initStep
-    1     -381 -1.12e+03 -1.11e+03    0.0493  0.00772     14.4      14.4     Tracker eIoni
-    2     -383 -1.13e+03 -1.11e+03     0.046  0.00105      2.6        17     Tracker eIoni
-    3     -391 -1.13e+03 -1.11e+03     0.039  0.00697     10.3      27.3     Tracker eIoni
-    4     -397 -1.13e+03 -1.1e+03    0.0319   0.0071     8.02      35.3     Tracker eIoni
-    5     -398 -1.13e+03 -1.1e+03    0.0293  0.00258     1.38      36.7     Tracker eIoni
-    6     -400 -1.13e+03 -1.1e+03    0.0247  0.00464     5.39      42.1     Tracker eIoni
-    7     -401 -1.12e+03 -1.1e+03    0.0194  0.00528     4.33      46.4     Tracker eIoni
-    8     -403 -1.12e+03 -1.11e+03    0.0166  0.00277      3.3      49.7     Tracker eIoni
-    9     -405 -1.12e+03 -1.11e+03    0.0124  0.00424     2.83      52.6     Tracker eIoni
-   10     -405 -1.12e+03 -1.11e+03    0.0103 0.000916    0.429        53     Tracker eIoni
-   11     -406 -1.12e+03 -1.11e+03   0.00659  0.00373     1.88      54.9     Tracker eIoni
-   12     -406 -1.12e+03 -1.11e+03   0.00187  0.00472     1.02      55.9     Tracker eIoni
-   13     -406 -1.12e+03 -1.11e+03         0  0.00187    0.146        56     Tracker eIoni
+    0   0.0305    0.147 -2.45e+03       121        0        0         0      Target initStep
+    1   -0.204    0.208 -2.44e+03         0        0     2.51      2.51      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 774,   Parent ID = 727
+* G4Track Information:   Particle = gamma,   Track ID = 15,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -405 -1.12e+03 -1.11e+03   0.00114        0        0         0     Tracker initStep
-    1     -405 -1.12e+03 -1.11e+03         0  0.00114   0.0693    0.0693     Tracker eIoni
+    0   0.0689    0.138 -2.45e+03       1.6        0        0         0      Target initStep
+    1    -3.98     1.51 -2.4e+03     0.507        0       44        44      Target compt
+    2    -1.59    -6.07 -2.4e+03     0.507        0     8.55      52.5     Tracker Transportation
+    3      716 -2.29e+03 -1.45e+03     0.507        0 2.57e+03  2.63e+03       World Transportation
+    4      921 -2.94e+03 -1.18e+03     0.507        0      732  3.36e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 773,   Parent ID = 727
+* G4Track Information:   Particle = gamma,   Track ID = 14,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -383 -1.13e+03 -1.11e+03   0.00228        0        0         0     Tracker initStep
-    1     -383 -1.13e+03 -1.11e+03         0  0.00228      0.2       0.2     Tracker eIoni
+    0    0.151    0.126 -2.45e+03     0.191        0        0         0      Target initStep
+    1   0.0761    0.128 -2.45e+03         0    0.088    0.917     0.917      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 726,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 13,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -368 -1.08e+03 -1.14e+03   0.00125        0        0         0     Tracker initStep
-    1     -368 -1.08e+03 -1.14e+03         0  0.00125   0.0792    0.0792     Tracker eIoni
+    0    0.206    0.124 -2.45e+03     0.174        0        0         0      Target initStep
+    1    0.178    0.126 -2.45e+03         0    0.088    0.357     0.357      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 725,   Parent ID = 721
+* G4Track Information:   Particle = gamma,   Track ID = 12,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -362     -952 -1.2e+03   0.00269        0        0         0     Tracker initStep
-    1     -362     -952 -1.2e+03         0  0.00269    0.262     0.262     Tracker eIoni
+    0    0.252    0.108 -2.45e+03     0.224        0        0         0      Target initStep
+    1    0.232    0.111 -2.45e+03         0    0.088    0.576     0.576      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 724,   Parent ID = 721
+* 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     -346     -886 -1.23e+03   0.00149        0        0         0     Tracker initStep
-    1     -346     -886 -1.23e+03         0  0.00149    0.103     0.103     Tracker eIoni
+    0    0.252    0.108 -2.45e+03      1.36        0        0         0      Target initStep
+    1   0.0621    0.134 -2.44e+03     0.596        0     5.17      5.17      Target compt
+    2    -17.4     5.69 -2.43e+03     0.482        0       21      26.2      Target compt
+    3    -23.2     4.22 -2.43e+03         0    0.088        6      32.2      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 723,   Parent ID = 721
+* G4Track Information:   Particle = e+,   Track ID = 74,   Parent ID = 16
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -341     -829 -1.26e+03   0.00103        0        0         0     Tracker initStep
-    1     -341     -829 -1.26e+03         0  0.00103   0.0599    0.0599     Tracker eIoni
+    0   -0.204    0.208 -2.44e+03      62.2        0        0         0      Target initStep
+    1   -0.485    0.332 -2.44e+03      40.6     1.73      1.5       1.5      Target eBrem
+    2   -0.632    0.332 -2.44e+03      37.5    0.933    0.729      2.23      Target eIoni
+    3   -0.826    0.403 -2.44e+03      1.53     1.46     1.34      3.57      Target eBrem
+    4   -0.911    0.377 -2.44e+03     0.228     1.31     1.19      4.75      Target eIoni
+    5   -0.915    0.386 -2.44e+03         0    0.228   0.0956      4.85      Target eIoni
+    6   -0.915    0.386 -2.44e+03         0        0        0      4.85      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 722,   Parent ID = 721
+* G4Track Information:   Particle = e+,   Track ID = 56,   Parent ID = 21
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -340     -826 -1.27e+03   0.00315        0        0         0     Tracker initStep
-    1     -340     -826 -1.27e+03         0  0.00315    0.343     0.343     Tracker eIoni
+    0   -0.949    0.046 -2.44e+03      1.28        0        0         0      Target initStep
+    1   -0.963   0.0163 -2.44e+03     0.646    0.403    0.275     0.275      Target eBrem
+    2    -0.93   0.0375 -2.44e+03         0    0.646    0.426     0.701      Target eIoni
+    3    -0.93   0.0375 -2.44e+03         0        0        0     0.701      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 720,   Parent ID = 124
+* G4Track Information:   Particle = e+,   Track ID = 43,   Parent ID = 23
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00506 0.000748 -2.41e+03      6.67        0        0         0      Target initStep
-    1   0.0339   0.0681 -2.41e+03      5.81    0.744    0.563     0.563      Target eBrem
-    2   -0.133    0.268 -2.41e+03      3.14    0.851    0.509      1.07      Target eIoni
-    3   -0.408    0.237 -2.41e+03     0.926     2.05     1.21      2.28      Target eBrem
-    4   -0.424    0.271 -2.41e+03     0.589    0.202     0.24      2.52      Target eBrem
-    5   -0.406    0.254 -2.41e+03         0    0.589    0.378       2.9      Target eIoni
+    0    -2.99   -0.654 -2.43e+03      30.8        0        0         0      Target initStep
+    1    -3.68   -0.873 -2.43e+03      26.3     2.27     1.83      1.83      Target eBrem
+    2    -4.41   -0.825 -2.43e+03      23.9      1.5     1.36      3.19      Target eBrem
+    3     -5.3   -0.451 -2.43e+03      22.4     1.06     1.05      4.24      Target eBrem
+    4    -5.74   -0.223 -2.43e+03      21.2    0.943    0.528      4.76      Target eBrem
+    5    -5.96   -0.117 -2.43e+03        20    0.584    0.255      5.02      Target eBrem
+    6    -6.06  -0.0888 -2.43e+03      19.4   0.0841    0.102      5.12      Target eBrem
+    7    -6.36   0.0266 -2.43e+03        16    0.426    0.335      5.46      Target eBrem
+    8    -7.08    0.313 -2.43e+03      8.28     1.02     0.85      6.31      Target eBrem
+    9    -7.23    0.395 -2.43e+03      7.46    0.171    0.178      6.48      Target eBrem
+   10    -7.93    0.663 -2.43e+03      6.36    0.994     0.93      7.41      Target eBrem
+   11    -8.39    0.525 -2.43e+03      5.25    0.758     0.61      8.02      Target eBrem
+   12    -8.65    0.505 -2.43e+03      3.88    0.517    0.485      8.51      Target eBrem
+   13    -8.58    0.652 -2.43e+03      2.58    0.336    0.254      8.76      Target eBrem
+   14    -8.41    0.783 -2.43e+03     0.978    0.303    0.315      9.08      Target eBrem
+   15     -8.4    0.722 -2.43e+03         0    0.978    0.718       9.8      Target eIoni
+   16     -8.4    0.722 -2.43e+03         0        0        0       9.8      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 776,   Parent ID = 720
+* G4Track Information:   Particle = e-,   Track ID = 83,   Parent ID = 74
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.133    0.268 -2.41e+03      1.82        0        0         0      Target initStep
-    1   -0.232     0.17 -2.41e+03     0.341     1.48     1.33      1.33      Target eIoni
-    2   -0.222    0.164 -2.41e+03         0    0.341    0.179      1.51      Target eIoni
+    0   -0.632    0.332 -2.44e+03      2.14        0        0         0      Target initStep
+    1   -0.588     0.39 -2.44e+03     0.662     1.48     1.47      1.47      Target eIoni
+    2   -0.594    0.412 -2.44e+03         0    0.662     0.44      1.91      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 778,   Parent ID = 720
+* G4Track Information:   Particle = e-,   Track ID = 81,   Parent ID = 11
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.424    0.271 -2.41e+03     0.136        0        0         0      Target initStep
-    1   -0.216    0.219 -2.41e+03         0    0.088    0.236     0.236      Target phot
+    0    -23.2     4.22 -2.43e+03     0.394        0        0         0      Target initStep
+    1    -23.2     4.21 -2.43e+03         0    0.394     0.22      0.22      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 779,   Parent ID = 778
+* G4Track Information:   Particle = e-,   Track ID = 80,   Parent ID = 11
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.216    0.219 -2.41e+03    0.0475        0        0         0      Target initStep
-    1   -0.215    0.219 -2.41e+03         0   0.0475  0.00821   0.00821      Target eIoni
+    0    -17.4     5.69 -2.43e+03     0.114        0        0         0      Target initStep
+    1    -17.4     5.69 -2.43e+03         0    0.114   0.0339    0.0339      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 777,   Parent ID = 720
+* G4Track Information:   Particle = e-,   Track ID = 79,   Parent ID = 11
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.408    0.237 -2.41e+03     0.156        0        0         0      Target initStep
-    1   -0.682    0.627 -2.41e+03         0    0.088    0.567     0.567      Target phot
+    0   0.0621    0.134 -2.44e+03      0.76        0        0         0      Target initStep
+    1   0.0768    0.129 -2.44e+03         0     0.76    0.523     0.523      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 780,   Parent ID = 777
+* G4Track Information:   Particle = e-,   Track ID = 78,   Parent ID = 12
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.682    0.627 -2.41e+03    0.0679        0        0         0      Target initStep
-    1   -0.682    0.628 -2.41e+03         0   0.0679   0.0147    0.0147      Target eIoni
+    0    0.232    0.111 -2.45e+03     0.136        0        0         0      Target initStep
+    1    0.231    0.111 -2.45e+03         0    0.136   0.0448    0.0448      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 775,   Parent ID = 720
+* G4Track Information:   Particle = e-,   Track ID = 77,   Parent ID = 13
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   0.0339   0.0681 -2.41e+03     0.121        0        0         0      Target initStep
-    1   -0.057    0.172 -2.41e+03         0    0.088    0.144     0.144      Target phot
+    0    0.178    0.126 -2.45e+03    0.0857        0        0         0      Target initStep
+    1    0.179    0.125 -2.45e+03         0   0.0857   0.0214    0.0214      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 781,   Parent ID = 775
+* G4Track Information:   Particle = e-,   Track ID = 76,   Parent ID = 14
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.057    0.172 -2.41e+03    0.0329        0        0         0      Target initStep
-    1  -0.0572    0.172 -2.41e+03         0   0.0329  0.00451   0.00451      Target eIoni
+    0   0.0761    0.128 -2.45e+03     0.103        0        0         0      Target initStep
+    1   0.0743    0.128 -2.45e+03         0    0.103   0.0287    0.0287      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 123,   Parent ID = 6
+* G4Track Information:   Particle = e-,   Track ID = 75,   Parent ID = 15
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00364 0.000988 -2.41e+03      5.13        0        0         0      Target initStep
-    1   0.0165 7.07e-05 -2.4e+03      5.13        0     8.38      8.38     Tracker Transportation
-    2     1.09  -0.0765 -1.7e+03      5.13        0      700       708     Chamber Transportation
-    3      1.4  -0.0984 -1.5e+03      5.13        0      200       908     Tracker Transportation
-    4     2.32   -0.164     -900      5.13        0      600  1.51e+03     Chamber Transportation
-    5     2.58   -0.183     -725      2.65        0      175  1.68e+03     Chamber compt
-    6     14.5   -0.161     -700      2.65        0     28.1  1.71e+03     Tracker Transportation
-    7      295    0.352     -100      2.65        0      662  2.37e+03     Chamber Transportation
-    8      388    0.523      100      2.65        0      221  2.59e+03     Tracker Transportation
-    9      668     1.04      700      2.65        0      662  3.26e+03     Chamber Transportation
-   10      762     1.21      900      2.65        0      221  3.48e+03     Tracker Transportation
-   11 1.04e+03     1.72  1.5e+03      2.65        0      662  4.14e+03     Chamber Transportation
-   12 1.14e+03     1.89  1.7e+03      2.65        0      221  4.36e+03     Tracker Transportation
-   13 1.46e+03     2.49  2.4e+03      2.65        0      773  5.13e+03       World Transportation
-   14 1.71e+03     2.95 2.94e+03      2.65        0      596  5.73e+03  OutOfWorld Transportation
+    0    -3.98     1.51 -2.4e+03      1.09        0        0         0      Target initStep
+    1    -3.99     1.53 -2.4e+03         0     1.09    0.807     0.807      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 782,   Parent ID = 123
+* G4Track Information:   Particle = e-,   Track ID = 73,   Parent ID = 16
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.58   -0.183     -725      2.48        0        0         0     Chamber initStep
-    1     2.32   -0.186     -725      2.48 0.000303    0.724     0.724     Chamber eIoni
-    2    -0.96    0.739     -716      2.47  0.00389     9.35      10.1     Chamber eIoni
-    3    -7.98    0.256     -700      2.47  0.00714     17.7      27.8     Tracker Transportation
-    4    -17.2     4.78     -677      2.46  0.00335     24.7      52.5     Tracker eIoni
-    5    -20.8     6.49     -668      2.38 0.000628     10.4        63     Tracker eIoni
-    6    -52.8     28.1     -576      2.37   0.0159      100       163     Tracker StepLimiter
-    7    -53.1     28.4     -575      2.37 7.54e-05    0.937       164     Tracker eIoni
-    8    -60.6     35.1     -553      2.36  0.00298     24.2       188     Tracker eIoni
-    9    -76.9     50.6     -493      2.35  0.00696     64.2       252     Tracker eIoni
-   10    -80.9     53.9     -479      2.35   0.0018     15.1       267     Tracker eIoni
-   11     -116     70.7     -386      2.33   0.0129      100       367     Tracker StepLimiter
-   12     -119     72.3     -369      2.32  0.00257     17.6       385     Tracker eIoni
-   13     -127     75.3     -336      2.31  0.00375     34.5       420     Tracker eIoni
-   14     -128     75.7     -332      2.31 0.000404     3.52       423     Tracker eIoni
-   15     -141     84.1     -274       2.3  0.00632     59.9       483     Tracker eIoni
-   16     -143     85.3     -267      2.29  0.00193      7.6       491     Tracker eIoni
-   17     -146     87.4     -254      2.29  0.00102     13.6       504     Tracker eIoni
-   18     -153     92.5     -225      2.29   0.0028     30.9       535     Tracker eIoni
-   19     -164       98     -178      2.28  0.00536     48.3       583     Tracker eIoni
-   20     -174      102     -140      2.27  0.00742     39.2       623     Tracker eIoni
-   21     -186      109     -100      2.26   0.0076     42.6       665     Chamber Transportation
-   22     -187      111    -93.5      2.26  0.00468     6.72       672     Chamber eIoni
-   23     -193      109    -65.1      2.24  0.00924       29       701     Chamber eIoni
-   24     -194      110      -61      2.24  0.00124     4.32       705     Chamber eIoni
-   25     -194      110    -55.9      1.95  0.00176      5.1       710     Chamber eIoni
-   26     -195      110    -52.8      1.94 0.000479     3.22       714     Chamber eIoni
-   27     -200      107    -32.2      1.93   0.0118     21.5       735     Chamber eIoni
-   28     -195      107  -0.0899      1.92  0.00687     32.5       768     Chamber eIoni
-   29     -196      110     13.4      1.91  0.00493     13.9       782     Chamber eIoni
-   30     -195      106     35.5      1.91  0.00614     22.8       804     Chamber eIoni
-   31     -199      106     55.6       1.9  0.00414     20.5       825     Chamber eIoni
-   32     -192      111     81.7      1.89   0.0129     27.6       852     Chamber eIoni
-   33     -189      113     88.2      1.87  0.00395      7.4       860     Chamber eIoni
-   34     -184      115      100      1.87  0.00207     13.1       873     Tracker Transportation
-   35     -162      113      197      1.86   0.0129      100       973     Tracker StepLimiter
-   36     -154      113      238      1.85  0.00456     41.8  1.01e+03     Tracker eIoni
-   37     -135      112      326      1.77   0.0109     89.6   1.1e+03     Tracker eIoni
-   38     -112      121      422      1.75    0.017      100   1.2e+03     Tracker StepLimiter
-   39    -85.6      144      512      1.72   0.0121     96.2   1.3e+03     Tracker eIoni
-   40    -44.9      162      601      1.71   0.0162      100   1.4e+03     Tracker StepLimiter
-   41     -3.9      191      687      1.69   0.0156      100   1.5e+03     Tracker StepLimiter
-   42     3.19      195      700      1.69  0.00167       15  1.52e+03     Chamber Transportation
-   43     52.7      215      739      1.66   0.0329     67.4  1.58e+03     Chamber eIoni
-   44     60.2      216      743      1.65  0.00211     8.68  1.59e+03     Chamber eIoni
-   45      111      207      777      1.62   0.0255     63.2  1.65e+03     Chamber eIoni
-   46      144      236      800       1.6   0.0186     49.8   1.7e+03     Chamber eIoni
-   47      160      258      789      1.57   0.0106     29.5  1.73e+03     Chamber eIoni
-   48      155      280      781      1.56  0.00847       25  1.76e+03     Chamber eIoni
-   49      163      326      757      1.54   0.0184     54.9  1.81e+03     Chamber eIoni
-   50      159      389      718      1.39   0.0282     82.2   1.9e+03     Chamber eBrem
-   51      162      402      707      1.38  0.00655     17.1  1.91e+03     Chamber eIoni
-   52      163      411      700      1.38  0.00317     11.7  1.93e+03     Tracker Transportation
-   53      172      491      641      1.36   0.0128      100  2.03e+03     Tracker StepLimiter
-   54      188      575      590      1.35   0.0131      100  2.13e+03     Tracker StepLimiter
-   55      195      625      548      1.34    0.007     65.6  2.19e+03     Tracker eIoni
-   56      200      652      529      1.33  0.00359     33.9  2.22e+03     Tracker eIoni
-   57      213      729      466      1.32   0.0137      100  2.32e+03     Tracker StepLimiter
-   58      217      781      418      1.31  0.00859     70.8   2.4e+03     Tracker eIoni
-   59      216      802      404      1.31  0.00301     25.2  2.42e+03     Tracker eIoni
-   60      219      826      387      1.28  0.00249     29.7  2.45e+03     Tracker eIoni
-   61      222      870      363      1.27  0.00506     50.2   2.5e+03     Tracker eIoni
-   62      223      879      357      1.27  0.00139     10.5  2.51e+03     Tracker eIoni
-   63      229      931      330      1.21  0.00502       59  2.57e+03     Tracker eIoni
-   64      244      985      299      1.19  0.00946     64.7  2.63e+03     Tracker eIoni
-   65      257 1.04e+03      266      1.17   0.0129       68   2.7e+03     Tracker eIoni
-   66      270  1.1e+03      250      1.17  0.00712     57.5  2.76e+03     Tracker eIoni
-   67      283 1.15e+03      232      1.16  0.00725     62.2  2.82e+03     Tracker eIoni
-   68      314 1.24e+03      191      1.14   0.0151      100  2.92e+03     Tracker StepLimiter
-   69      316 1.25e+03      189      1.14  0.00103     6.32  2.93e+03     Tracker eIoni
-   70      329 1.28e+03      178      1.13  0.00397     36.3  2.97e+03     Tracker eIoni
-   71      346 1.32e+03      165      1.12  0.00664     44.7  3.01e+03     Tracker eIoni
-   72      361 1.34e+03      156      1.12  0.00757     33.2  3.04e+03     Tracker eIoni
-   73      364 1.35e+03      154      1.11 0.000828      5.4  3.05e+03     Tracker eIoni
-   74      370 1.36e+03      150       1.1  0.00113     13.4  3.06e+03     Tracker eIoni
-   75      391  1.4e+03      133       1.1  0.00599     45.5  3.11e+03     Tracker eIoni
-   76      416 1.44e+03      118      1.09  0.00552     51.7  3.16e+03     Tracker eIoni
-   77      472 1.51e+03     95.2      1.07   0.0159     95.7  3.25e+03     Tracker eIoni
-   78      528 1.56e+03     62.8      1.05   0.0144     82.6  3.34e+03     Tracker eIoni
-   79      534 1.57e+03     58.7      1.05 0.000712     9.07  3.35e+03     Tracker eIoni
-   80      548 1.59e+03       49      1.04    0.003     23.3  3.37e+03     Tracker eIoni
-   81      552 1.59e+03     45.8      1.04 0.000844     6.46  3.38e+03     Tracker eIoni
-   82      558  1.6e+03     40.7      1.03  0.00179     9.91  3.39e+03     Tracker eIoni
-   83      590 1.63e+03     19.3      1.03  0.00603     48.3  3.43e+03     Tracker eIoni
-   84      590 1.63e+03       19      1.02 0.000119     1.03  3.44e+03     Tracker eIoni
-   85      629 1.65e+03     5.55     0.985  0.00464     48.5  3.48e+03     Tracker eIoni
-   86      708  1.7e+03      -35     0.971   0.0139      100  3.58e+03     Tracker StepLimiter
-   87      731 1.71e+03    -41.8     0.967  0.00397     28.1  3.61e+03     Tracker eIoni
-   88      764 1.74e+03    -46.7     0.955  0.00557     41.5  3.65e+03     Tracker eIoni
-   89      846 1.78e+03    -65.8     0.937   0.0119     93.9  3.75e+03     Tracker eIoni
-   90      937 1.81e+03    -82.1     0.923   0.0138      100  3.85e+03     Tracker StepLimiter
-   91 1.01e+03 1.83e+03    -79.5     0.911  0.00896     80.1  3.93e+03     Tracker eIoni
-   92 1.05e+03 1.84e+03    -64.1     0.902  0.00546     43.7  3.97e+03     Tracker eIoni
-   93 1.07e+03 1.84e+03    -60.2     0.899  0.00181     15.2  3.99e+03     Tracker eIoni
-   94 1.17e+03 1.84e+03    -44.7     0.884   0.0146      100  4.09e+03     Tracker StepLimiter
-   95  1.2e+03 1.83e+03    -35.8     0.868  0.00543     38.4  4.12e+03     Tracker eIoni
-   96 1.29e+03  1.8e+03     6.05     0.854   0.0136      100  4.22e+03     Tracker StepLimiter
-   97 1.37e+03 1.75e+03       33      0.84   0.0139      100  4.32e+03     Tracker StepLimiter
-   98 1.42e+03 1.71e+03     69.3     0.827   0.0118     75.5   4.4e+03     Tracker eIoni
-   99  1.5e+03 1.66e+03      112     0.818  0.00901      100   4.5e+03     Tracker StepLimiter
-  100  1.5e+03 1.66e+03      113     0.818 0.000528     5.68  4.51e+03     Tracker eIoni
-  101 1.51e+03 1.63e+03      119     0.805  0.00548     27.4  4.53e+03     Tracker eIoni
-  102 1.55e+03 1.54e+03      137     0.793   0.0119      100  4.63e+03     Tracker StepLimiter
-  103 1.58e+03 1.48e+03      155     0.782  0.00968     67.5   4.7e+03     Tracker eIoni
-  104  1.6e+03 1.45e+03      151     0.777  0.00286     39.8  4.74e+03     Tracker eIoni
-  105 1.64e+03 1.39e+03      152     0.763   0.0122     70.9  4.81e+03     Tracker eIoni
-  106 1.69e+03 1.34e+03      181     0.744   0.0112     77.7  4.89e+03     Tracker eIoni
-  107  1.7e+03 1.33e+03      186     0.731  0.00186     16.8  4.91e+03     Tracker eIoni
-  108 1.73e+03  1.3e+03      200     0.721  0.00699     48.1  4.95e+03     Tracker eIoni
-  109 1.77e+03 1.27e+03      218     0.712  0.00765       47     5e+03     Tracker eIoni
-  110 1.79e+03 1.25e+03      236     0.704  0.00584     33.9  5.04e+03     Tracker eIoni
-  111 1.81e+03 1.23e+03      255      0.68  0.00492     36.3  5.07e+03     Tracker eIoni
-  112 1.84e+03  1.2e+03      291     0.671  0.00702       56  5.13e+03     Tracker eIoni
-  113 1.85e+03 1.18e+03      309     0.668  0.00261     29.2  5.16e+03     Tracker eIoni
-  114 1.87e+03 1.12e+03      351     0.656  0.00917       78  5.23e+03     Tracker eIoni
-  115 1.87e+03 1.09e+03      368     0.649  0.00553     28.6  5.26e+03     Tracker eIoni
-  116  1.9e+03 1.03e+03      439      0.63    0.019      100  5.36e+03     Tracker StepLimiter
-  117 1.91e+03      981      481     0.618   0.0108     65.1  5.43e+03     Tracker eIoni
-  118 1.91e+03      975      486     0.607  0.00066     7.25  5.44e+03     Tracker eIoni
-  119  1.9e+03      968      496     0.604   0.0014     12.6  5.45e+03     Tracker eIoni
-  120  1.9e+03      967      497     0.603  0.00017     1.55  5.45e+03     Tracker eIoni
-  121  1.9e+03      941      537     0.592  0.00867     48.7   5.5e+03     Tracker eIoni
-  122 1.88e+03      895      623     0.577   0.0144      100   5.6e+03     Tracker StepLimiter
-  123 1.85e+03      824      683     0.564   0.0137      100   5.7e+03     Tracker StepLimiter
-  124  1.8e+03      773      728      0.55   0.0109     84.1  5.78e+03     Tracker eIoni
-  125 1.77e+03      705      774     0.531   0.0186     89.4  5.87e+03     Tracker eIoni
-  126 1.75e+03      681      802     0.523  0.00587     39.2  5.91e+03     Tracker eIoni
-  127 1.75e+03      650      825     0.515  0.00574     39.9  5.95e+03     Tracker eIoni
-  128 1.74e+03      645      828     0.512  0.00134     5.76  5.96e+03     Tracker eIoni
-  129 1.74e+03      645      828     0.512 4.93e-06   0.0329  5.96e+03     Chamber Transportation
-  130 1.75e+03      622      843     0.498    0.013     32.3  5.99e+03     Chamber eIoni
-  131 1.75e+03      622      842     0.497 0.000564     1.48  5.99e+03     Tracker Transportation
-  132 1.77e+03      600      827     0.491  0.00599       30  6.02e+03     Tracker eIoni
-  133 1.81e+03      516      791     0.477   0.0143      100  6.12e+03     Tracker StepLimiter
-  134 1.84e+03      472      786     0.466  0.00892     57.1  6.18e+03     Tracker eIoni
-  135  1.9e+03      391      772     0.449   0.0168      100  6.28e+03     Tracker StepLimiter
-  136 1.96e+03      319      791     0.434   0.0154      100  6.38e+03     Tracker StepLimiter
-  137 1.97e+03      304      800      0.43  0.00244     19.8   6.4e+03     Tracker eIoni
-  138    2e+03      258      829     0.415   0.0112     61.3  6.46e+03     Tracker eIoni
-  139 2.02e+03      180      859     0.399   0.0147     86.8  6.55e+03     Tracker eIoni
-  140 2.03e+03      167      867     0.388  0.00351       22  6.57e+03     Tracker eIoni
-  141 2.07e+03      123      921     0.365   0.0149     78.7  6.65e+03     Tracker eIoni
-  142 2.08e+03      115      937     0.362  0.00203     20.7  6.67e+03     Tracker eIoni
-  143 2.15e+03     84.6    1e+03     0.346   0.0156      100  6.77e+03     Tracker StepLimiter
-  144 2.15e+03     83.3    1e+03     0.342 0.000947     1.81  6.77e+03     Tracker eIoni
-  145 2.18e+03   -0.322 1.04e+03     0.322   0.0198      100  6.87e+03     Tracker StepLimiter
-  146  2.2e+03    -24.9 1.05e+03     0.314  0.00401     29.9   6.9e+03     Tracker eIoni
-  147  2.2e+03      -40 1.05e+03     0.308   0.0045       17  6.92e+03     Tracker eIoni
-  148 2.21e+03    -75.8 1.07e+03     0.301  0.00634     42.6  6.96e+03     Tracker eIoni
-  149 2.24e+03     -146 1.11e+03     0.287   0.0144       85  7.04e+03     Tracker eIoni
-  150 2.29e+03     -210 1.13e+03      0.27   0.0161     87.9  7.13e+03     Tracker eIoni
-  151 2.31e+03     -301 1.16e+03     0.253   0.0167      100  7.23e+03     Tracker StepLimiter
-  152 2.37e+03     -375 1.15e+03      0.23   0.0226      100  7.33e+03     Tracker StepLimiter
-  153 2.37e+03     -381 1.15e+03     0.229  0.00124     8.02  7.34e+03       World Transportation
-  154  2.4e+03     -450 1.19e+03      0.21   0.0169     81.9  7.42e+03       World eIoni
-  155 2.42e+03     -456  1.2e+03       0.2  0.00784       31  7.45e+03       World eIoni
-  156 2.47e+03     -457 1.28e+03     0.178   0.0204     93.9  7.55e+03       World eIoni
-  157 2.49e+03     -468 1.33e+03     0.161   0.0128     50.5   7.6e+03       World eIoni
-  158 2.47e+03     -511 1.38e+03     0.139   0.0227     80.9  7.68e+03       World eIoni
-  159 2.46e+03     -516  1.4e+03     0.127  0.00826     24.9   7.7e+03       World eIoni
-  160 2.47e+03     -517 1.42e+03     0.123   0.0044     14.4  7.72e+03       World eIoni
-  161 2.49e+03     -512 1.45e+03    0.0983   0.0105     37.4  7.75e+03       World eIoni
-  162  2.5e+03     -516 1.45e+03    0.0942  0.00283     9.61  7.76e+03       World eIoni
-  163 2.52e+03     -498 1.45e+03     0.084   0.0102       33   7.8e+03       World eIoni
-  164 2.52e+03     -497 1.45e+03    0.0814 0.000425    0.877   7.8e+03       World eIoni
-  165 2.52e+03     -484 1.46e+03    0.0731  0.00831     16.9  7.81e+03       World eIoni
-  166 2.52e+03     -480 1.48e+03    0.0652  0.00793     17.1  7.83e+03       World eIoni
-  167 2.52e+03     -479 1.48e+03    0.0611 0.000132    0.607  7.83e+03       World eIoni
-  168 2.52e+03     -471 1.48e+03    0.0486  0.00657     11.5  7.84e+03       World eIoni
-  169 2.51e+03     -467 1.49e+03    0.0418  0.00677     11.2  7.86e+03       World eIoni
-  170 2.51e+03     -464 1.49e+03    0.0352  0.00665      8.9  7.86e+03       World eIoni
-  171  2.5e+03     -462  1.5e+03     0.029   0.0062     6.91  7.87e+03       World eIoni
-  172  2.5e+03     -462  1.5e+03    0.0256  0.00339      5.3  7.88e+03       World eIoni
-  173  2.5e+03     -462  1.5e+03    0.0203  0.00523     4.53  7.88e+03       World eIoni
-  174  2.5e+03     -463 1.49e+03    0.0148  0.00555     3.48  7.88e+03       World eIoni
-  175  2.5e+03     -464 1.49e+03    0.0118  0.00297     2.55  7.89e+03       World eIoni
-  176  2.5e+03     -464 1.49e+03   0.00984 0.000258    0.431  7.89e+03       World eIoni
-  177  2.5e+03     -465 1.49e+03   0.00511  0.00473     1.81  7.89e+03       World eIoni
-  178  2.5e+03     -464 1.49e+03         0  0.00511    0.795  7.89e+03       World eIoni
+    0   -0.204    0.208 -2.44e+03        58        0        0         0      Target initStep
+    1   -0.292    0.153 -2.44e+03      55.8     1.94    0.879     0.879      Target eBrem
+    2   -0.321    0.148 -2.44e+03        55     0.29    0.256      1.14      Target eBrem
+    3   -0.219    0.455 -2.44e+03      51.7     3.02     2.03      3.17      Target eBrem
+    4   -0.211     0.46 -2.44e+03      48.6   0.0361    0.034       3.2      Target eBrem
+    5  -0.0463    0.662 -2.44e+03      42.9     1.61     1.33      4.54      Target eBrem
+    6  0.00427    0.846 -2.44e+03      39.8      1.1    0.714      5.25      Target eBrem
+    7    0.146     1.11 -2.44e+03      37.3    0.929    0.796      6.05      Target eBrem
+    8    0.485     1.54 -2.44e+03        35     1.32    0.851       6.9      Target eIoni
+    9    0.471     2.22 -2.44e+03      27.6      1.7     1.19      8.09      Target eBrem
+   10    0.574     2.47 -2.44e+03      25.8     1.17    0.828      8.91      Target eBrem
+   11    0.745     2.53 -2.43e+03      23.3     1.62     1.45      10.4      Target eBrem
+   12     1.91     6.14 -2.43e+03      16.6     6.77     5.28      15.6      Target eIoni
+   13     2.54     6.34 -2.43e+03      1.43    0.949    0.711      16.4      Target eBrem
+   14     2.63     6.31 -2.43e+03      0.18     1.25     1.09      17.4      Target eIoni
+   15     2.63     6.31 -2.43e+03         0     0.18   0.0692      17.5      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 905,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 113,   Parent ID = 73
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  2.5e+03     -464 1.49e+03   0.00172        0        0         0       World initStep
-    1  2.5e+03     -464 1.49e+03         0  0.00172    0.128     0.128       World eIoni
+    0    0.485     1.54 -2.44e+03      1.03        0        0         0      Target initStep
+    1     0.53     1.58 -2.44e+03     0.245    0.781    0.676     0.676      Target eBrem
+    2    0.533     1.58 -2.44e+03         0    0.245    0.111     0.787      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 904,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 117,   Parent ID = 73
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.52e+03     -471 1.48e+03   0.00598        0        0         0       World initStep
-    1 2.52e+03     -470 1.48e+03         0  0.00598     1.05      1.05       World eIoni
+    0     2.54     6.34 -2.43e+03      14.2        0        0         0      Target initStep
+    1     5.83     10.1 -2.43e+03         0        0     5.02      5.02      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 903,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 118,   Parent ID = 117
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.52e+03     -479 1.48e+03   0.00395        0        0         0       World initStep
-    1 2.52e+03     -479 1.48e+03         0  0.00395    0.506     0.506       World eIoni
+    0     5.83     10.1 -2.43e+03      11.5        0        0         0      Target initStep
+    1     5.87     10.2 -2.43e+03      10.4    0.183   0.0651    0.0651      Target eBrem
+    2     5.99     10.3 -2.43e+03      8.43    0.138    0.163     0.228      Target eIoni
+    3     6.32     10.5 -2.43e+03      7.85    0.426    0.421     0.649      Target eBrem
+    4      6.4     10.7 -2.43e+03      7.31    0.309    0.335     0.985      Target eBrem
+    5     6.74     11.3 -2.43e+03       3.3      3.5     2.37      3.35      Target eBrem
+    6     6.99     11.5 -2.43e+03     0.984     2.31     1.84      5.19      Target eIoni
+    7     6.96     11.5 -2.43e+03         0    0.984    0.717      5.91      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 902,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 121,   Parent ID = 118
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.52e+03     -497 1.45e+03   0.00214        0        0         0       World initStep
-    1 2.52e+03     -497 1.45e+03         0  0.00214    0.181     0.181       World eIoni
+    0     5.99     10.3 -2.43e+03      1.86        0        0         0      Target initStep
+    1     6.12     10.2 -2.43e+03     0.532     1.33     1.35      1.35      Target eIoni
+    2     6.12     10.2 -2.43e+03         0    0.532    0.331      1.68      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 901,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 124,   Parent ID = 118
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  2.5e+03     -516 1.45e+03   0.00129        0        0         0       World initStep
-    1  2.5e+03     -516 1.45e+03         0  0.00129   0.0825    0.0825       World eIoni
+    0     6.74     11.3 -2.43e+03      0.52        0        0         0      Target initStep
+    1      7.2     11.8 -2.43e+03         0    0.088    0.675     0.675      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 900,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 125,   Parent ID = 124
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.49e+03     -512 1.45e+03    0.0139        0        0         0       World initStep
-    1 2.49e+03     -512 1.45e+03    0.0103  0.00363     2.41      2.41       World eIoni
-    2 2.49e+03     -513 1.45e+03   0.00623  0.00407     1.88      4.29       World eIoni
-    3 2.49e+03     -513 1.45e+03  0.000804  0.00543     1.12      5.41       World eIoni
-    4 2.49e+03     -513 1.45e+03         0 0.000804   0.0422      5.46       World eIoni
+    0      7.2     11.8 -2.43e+03     0.432        0        0         0      Target initStep
+    1     7.22     11.8 -2.43e+03         0    0.432    0.249     0.249      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 899,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 123,   Parent ID = 118
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.46e+03     -516  1.4e+03   0.00327        0        0         0       World initStep
-    1 2.46e+03     -516  1.4e+03         0  0.00327    0.365     0.365       World eIoni
+    0      6.4     10.7 -2.43e+03     0.231        0        0         0      Target initStep
+    1     6.68     11.1 -2.43e+03         0    0.088    0.913     0.913      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 898,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 126,   Parent ID = 123
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.49e+03     -468 1.33e+03   0.00337        0        0         0       World initStep
-    1 2.49e+03     -468 1.33e+03         0  0.00337    0.385     0.385       World eIoni
+    0     6.68     11.1 -2.43e+03     0.143        0        0         0      Target initStep
+    1     6.68     11.1 -2.43e+03         0    0.143   0.0486    0.0486      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 897,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 122,   Parent ID = 118
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.47e+03     -457 1.28e+03   0.00214        0        0         0       World initStep
-    1 2.47e+03     -457 1.28e+03         0  0.00214     0.18      0.18       World eIoni
+    0     6.32     10.5 -2.43e+03     0.147        0        0         0      Target initStep
+    1     6.38     10.6 -2.43e+03         0    0.088    0.158     0.158      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 896,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 127,   Parent ID = 122
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.42e+03     -456  1.2e+03   0.00245        0        0         0       World initStep
-    1 2.42e+03     -456  1.2e+03         0  0.00245    0.224     0.224       World eIoni
+    0     6.38     10.6 -2.43e+03    0.0591        0        0         0      Target initStep
+    1     6.38     10.6 -2.43e+03         0   0.0591   0.0117    0.0117      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 895,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 120,   Parent ID = 118
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  2.4e+03     -450 1.19e+03   0.00173        0        0         0       World initStep
-    1  2.4e+03     -450 1.19e+03         0  0.00173    0.128     0.128       World eIoni
+    0     5.87     10.2 -2.43e+03     0.921        0        0         0      Target initStep
+    1     16.2       19 -2.43e+03     0.921        0     13.7      13.7       World Transportation
+    2 2.94e+03 2.52e+03 -2.74e+03     0.921        0 3.86e+03  3.88e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 894,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 116,   Parent ID = 73
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.29e+03     -210 1.13e+03    0.0011        0        0         0     Tracker initStep
-    1 2.29e+03     -210 1.13e+03         0   0.0011   0.0654    0.0654     Tracker eIoni
+    0    0.745     2.53 -2.43e+03     0.884        0        0         0      Target initStep
+    1     5.23     4.36 -2.42e+03       0.6        0     18.9      18.9      Target compt
+    2   -0.951     8.01 -2.4e+03         0    0.088     13.2      32.1      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 893,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 129,   Parent ID = 116
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  2.2e+03      -40 1.05e+03   0.00185        0        0         0     Tracker initStep
-    1  2.2e+03      -40 1.06e+03         0  0.00185    0.143     0.143     Tracker eIoni
+    0   -0.951     8.01 -2.4e+03     0.512        0        0         0      Target initStep
+    1   -0.962     8.02 -2.4e+03     0.125    0.146     0.15      0.15      Target eBrem
+    2   -0.963     8.02 -2.4e+03         0    0.125   0.0391     0.189      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 892,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 128,   Parent ID = 116
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  2.2e+03    -24.9 1.05e+03   0.00428        0        0         0     Tracker initStep
-    1  2.2e+03    -24.9 1.05e+03   0.00238 0.000759    0.187     0.187     Tracker eIoni
-    2  2.2e+03    -24.9 1.05e+03         0  0.00238    0.215     0.402     Tracker eIoni
+    0     5.23     4.36 -2.42e+03     0.284        0        0         0      Target initStep
+    1     5.24     4.36 -2.42e+03         0    0.284    0.138     0.138      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 906,   Parent ID = 892
+* G4Track Information:   Particle = gamma,   Track ID = 130,   Parent ID = 129
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  2.2e+03    -24.9 1.05e+03   0.00113        0        0         0     Tracker initStep
-    1  2.2e+03    -24.9 1.05e+03         0  0.00113   0.0683    0.0683     Tracker eIoni
+    0   -0.962     8.02 -2.4e+03     0.242        0        0         0      Target initStep
+    1   -0.962      8.3 -2.4e+03         0    0.088    0.279     0.279      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 891,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 131,   Parent ID = 130
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.15e+03     83.3    1e+03   0.00329        0        0         0     Tracker initStep
-    1 2.15e+03     83.3    1e+03         0  0.00329    0.369     0.369     Tracker eIoni
+    0   -0.962      8.3 -2.4e+03     0.154        0        0         0      Target initStep
+    1   -0.964      8.3 -2.4e+03         0    0.154   0.0541    0.0541      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 890,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 115,   Parent ID = 73
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.08e+03      115      937   0.00117        0        0         0     Tracker initStep
-    1 2.08e+03      115      937         0  0.00117   0.0712    0.0712     Tracker eIoni
+    0    0.574     2.47 -2.44e+03     0.552        0        0         0      Target initStep
+    1    0.653     3.19 -2.43e+03         0    0.088     2.67      2.67      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 889,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 132,   Parent ID = 115
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.07e+03      123      921    0.0078        0        0         0     Tracker initStep
-    1 2.07e+03      123      921   0.00462  0.00199    0.898     0.898     Tracker eIoni
-    2 2.07e+03      123      921         0  0.00462    0.667      1.57     Tracker eIoni
+    0    0.653     3.19 -2.43e+03     0.464        0        0         0      Target initStep
+    1    0.648      3.2 -2.43e+03     0.146    0.317     0.25      0.25      Target eBrem
+    2    0.647      3.2 -2.43e+03         0    0.146   0.0501       0.3      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 907,   Parent ID = 889
+* G4Track Information:   Particle = gamma,   Track ID = 114,   Parent ID = 73
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.07e+03      123      921   0.00119        0        0         0     Tracker initStep
-    1 2.07e+03      123      921         0  0.00119    0.073     0.073     Tracker eIoni
+    0    0.471     2.22 -2.44e+03      5.72        0        0         0      Target initStep
+    1     6.86     21.6 -2.4e+03      5.72        0     41.8      41.8     Tracker Transportation
+    2      410 1.24e+03     -100      5.72        0 2.64e+03  2.68e+03     Chamber Transportation
+    3      413 1.25e+03    -80.8      5.72        0       22   2.7e+03     Tracker Transportation
+    4      550 1.67e+03      700      5.72        0      895  3.59e+03     Chamber Transportation
+    5      582 1.77e+03      885      5.72        0      211  3.81e+03     Tracker Transportation
+    6      690 2.09e+03  1.5e+03      5.72        0      705  4.51e+03     Chamber Transportation
+    7      725  2.2e+03  1.7e+03      5.72        0      229  4.74e+03     Tracker Transportation
+    8      751 2.28e+03 1.85e+03      5.72        0      172  4.91e+03       World Transportation
+    9      942 2.86e+03 2.94e+03      5.72        0 1.25e+03  6.16e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 888,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 112,   Parent ID = 73
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.03e+03      167      867    0.0073        0        0         0     Tracker initStep
-    1 2.03e+03      167      866   0.00469   0.0011    0.393     0.393     Tracker eIoni
-    2 2.03e+03      167      867     0.002  0.00156     0.17     0.562     Tracker eIoni
-    3 2.03e+03      167      867         0    0.002    0.162     0.725     Tracker eIoni
+    0    0.146     1.11 -2.44e+03      1.52        0        0         0      Target initStep
+    1     4.52     5.27 -2.43e+03      1.29        0     10.3      10.3      Target compt
+    2     4.67     6.08 -2.43e+03      1.27        0     1.57      11.9      Target compt
+    3     4.74     11.6 -2.42e+03     0.337        0     12.1        24      Target compt
+    4     6.08       13 -2.42e+03         0    0.088     2.25      26.2      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 909,   Parent ID = 888
+* G4Track Information:   Particle = e-,   Track ID = 136,   Parent ID = 112
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.03e+03      167      867   0.00112        0        0         0     Tracker initStep
-    1 2.03e+03      167      867         0  0.00112   0.0675    0.0675     Tracker eIoni
+    0     6.08       13 -2.42e+03     0.249        0        0         0      Target initStep
+    1     6.09       13 -2.42e+03         0    0.249    0.113     0.113      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 908,   Parent ID = 888
+* G4Track Information:   Particle = e-,   Track ID = 135,   Parent ID = 112
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.03e+03      167      866   0.00152        0        0         0     Tracker initStep
-    1 2.03e+03      167      866         0  0.00152    0.106     0.106     Tracker eIoni
+    0     4.74     11.6 -2.42e+03      0.93        0        0         0      Target initStep
+    1     4.73     11.6 -2.42e+03         0     0.93     0.67      0.67      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 887,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 134,   Parent ID = 112
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 2.02e+03      180      859    0.0018        0        0         0     Tracker initStep
-    1 2.02e+03      180      859         0   0.0018    0.137     0.137     Tracker eIoni
+    0     4.67     6.08 -2.43e+03    0.0228        0        0         0      Target initStep
+    1     4.67     6.08 -2.43e+03         0   0.0228  0.00251   0.00251      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 886,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 133,   Parent ID = 112
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    2e+03      258      829   0.00413        0        0         0     Tracker initStep
-    1    2e+03      258      829         0  0.00413    0.547     0.547     Tracker eIoni
+    0     4.52     5.27 -2.43e+03     0.231        0        0         0      Target initStep
+    1     4.53     5.27 -2.43e+03         0    0.231    0.101     0.101      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 885,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 111,   Parent ID = 73
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.97e+03      304      800   0.00121        0        0         0     Tracker initStep
-    1 1.97e+03      304      800         0  0.00121   0.0751    0.0751     Tracker eIoni
+    0  0.00427    0.846 -2.44e+03      2.05        0        0         0      Target initStep
+    1      4.3     5.14 -2.42e+03     0.894        0     20.8      20.8      Target compt
+    2     20.4      6.7 -2.41e+03     0.393        0     18.7      39.5      Target compt
+    3     22.8     2.96 -2.41e+03         0    0.088     4.58        44      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 884,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 139,   Parent ID = 111
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.84e+03      472      786   0.00144        0        0         0     Tracker initStep
-    1 1.84e+03      472      786         0  0.00144   0.0975    0.0975     Tracker eIoni
+    0     22.8     2.96 -2.41e+03     0.305        0        0         0      Target initStep
+    1     22.8     2.95 -2.41e+03         0    0.305    0.153     0.153      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 883,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 138,   Parent ID = 111
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.75e+03      622      843   0.00159        0        0         0     Chamber initStep
-    1 1.75e+03      622      843         0  0.00159   0.0762    0.0762     Chamber eIoni
+    0     20.4      6.7 -2.41e+03     0.501        0        0         0      Target initStep
+    1     20.4     6.71 -2.41e+03         0    0.501    0.306     0.306      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 882,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 137,   Parent ID = 111
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.74e+03      645      828   0.00155        0        0         0     Tracker initStep
-    1 1.74e+03      645      828   0.00105 0.000495   0.0521    0.0521     Tracker msc
-    2 1.74e+03      645      828   0.00048  0.00057   0.0521     0.104     Tracker msc
-    3 1.74e+03      645      828         0  0.00048   0.0218     0.126     Tracker eIoni
+    0      4.3     5.14 -2.42e+03      1.16        0        0         0      Target initStep
+    1     4.29     5.15 -2.42e+03         0     1.16    0.868     0.868      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 881,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 110,   Parent ID = 73
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.75e+03      650      825   0.00241        0        0         0     Tracker initStep
-    1 1.75e+03      650      826         0  0.00241    0.218     0.218     Tracker eIoni
+    0  -0.0463    0.662 -2.44e+03      4.07        0        0         0      Target initStep
+    1      3.6     7.75 -2.41e+03     0.949        0     26.6      26.6      Target compt
+    2     8.42     19.8 -2.41e+03     0.367        0     13.7      40.3      Target compt
+    3     4.79     20.4 -2.4e+03         0    0.088     6.52      46.8      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 880,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 142,   Parent ID = 110
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.75e+03      681      802   0.00145        0        0         0     Tracker initStep
-    1 1.75e+03      681      802         0  0.00145   0.0982    0.0982     Tracker eIoni
+    0     4.79     20.4 -2.4e+03     0.279        0        0         0      Target initStep
+    1     4.78     20.4 -2.4e+03         0    0.279    0.134     0.134      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 879,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 141,   Parent ID = 110
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.77e+03      705      774   0.00106        0        0         0     Tracker initStep
-    1 1.77e+03      705      774         0  0.00106   0.0622    0.0622     Tracker eIoni
+    0     8.42     19.8 -2.41e+03     0.581        0        0         0      Target initStep
+    1     8.43     19.8 -2.41e+03         0    0.581    0.372     0.372      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 878,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 140,   Parent ID = 110
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.8e+03      773      728   0.00251        0        0         0     Tracker initStep
-    1  1.8e+03      773      728         0  0.00251    0.233     0.233     Tracker eIoni
+    0      3.6     7.75 -2.41e+03      3.13        0        0         0      Target initStep
+    1     3.62     7.77 -2.41e+03     0.263    0.964    0.781     0.781      Target eBrem
+    2     3.61     7.77 -2.41e+03         0    0.263    0.123     0.904      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 877,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 143,   Parent ID = 140
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.9e+03      941      537   0.00234        0        0         0     Tracker initStep
-    1  1.9e+03      941      537         0  0.00234    0.208     0.208     Tracker eIoni
+    0     3.62     7.77 -2.41e+03       1.9        0        0         0      Target initStep
+    1    -9.54     23.1 -2.42e+03       1.9        0     20.5      20.5       World Transportation
+    2 -2.02e+03 2.36e+03 -2.94e+03       1.9        0 3.13e+03  3.15e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 876,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 109,   Parent ID = 73
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.9e+03      967      497    0.0017        0        0         0     Tracker initStep
-    1  1.9e+03      967      497         0   0.0017    0.126     0.126     Tracker eIoni
+    0   -0.211     0.46 -2.44e+03      3.01        0        0         0      Target initStep
+    1   -0.122    0.505 -2.44e+03         0        0     0.33      0.33      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 875,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 144,   Parent ID = 109
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.9e+03      968      496   0.00113        0        0         0     Tracker initStep
-    1  1.9e+03      968      496         0  0.00113   0.0677    0.0677     Tracker eIoni
+    0   -0.122    0.505 -2.44e+03     0.948        0        0         0      Target initStep
+    1  -0.0987    0.511 -2.44e+03     0.351     0.49    0.295     0.295      Target eBrem
+    2  -0.0938      0.5 -2.44e+03         0    0.351    0.187     0.481      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 874,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 146,   Parent ID = 144
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.91e+03      975      486   0.00997        0        0         0     Tracker initStep
-    1 1.91e+03      975      485   0.00514  0.00483     1.83      1.83     Tracker eIoni
-    2 1.91e+03      975      485   0.00338 0.000393     0.19      2.02     Tracker eIoni
-    3 1.91e+03      975      485         0  0.00338    0.386       2.4     Tracker eIoni
+    0  -0.0987    0.511 -2.44e+03     0.107        0        0         0      Target initStep
+    1  -0.0972    0.511 -2.44e+03         0    0.088  0.00171   0.00171      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 910,   Parent ID = 874
+* G4Track Information:   Particle = e-,   Track ID = 147,   Parent ID = 146
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.91e+03      975      485   0.00137        0        0         0     Tracker initStep
-    1 1.91e+03      975      485         0  0.00137     0.09      0.09     Tracker eIoni
+    0  -0.0972    0.511 -2.44e+03    0.0191        0        0         0      Target initStep
+    1  -0.0971    0.511 -2.44e+03         0   0.0191  0.00189   0.00189      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 873,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 108,   Parent ID = 73
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.91e+03      981      481   0.00166        0        0         0     Tracker initStep
-    1 1.91e+03      981      481         0  0.00166    0.121     0.121     Tracker eIoni
+    0   -0.219    0.455 -2.44e+03     0.309        0        0         0      Target initStep
+    1     1.98     1.53 -2.43e+03         0    0.088        8         8      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 872,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 148,   Parent ID = 108
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.87e+03 1.09e+03      368   0.00164        0        0         0     Tracker initStep
-    1 1.87e+03 1.09e+03      368         0  0.00164    0.119     0.119     Tracker eIoni
+    0     1.98     1.53 -2.43e+03     0.221        0        0         0      Target initStep
+    1     1.98     1.53 -2.43e+03         0    0.221    0.095     0.095      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 871,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 107,   Parent ID = 73
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.87e+03 1.12e+03      351   0.00231        0        0         0     Tracker initStep
-    1 1.87e+03 1.12e+03      352         0  0.00231    0.204     0.204     Tracker eIoni
+    0   -0.321    0.148 -2.44e+03     0.499        0        0         0      Target initStep
+    1  -0.0693      1.2 -2.43e+03         0    0.088     16.6      16.6      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 870,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 149,   Parent ID = 107
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.85e+03 1.18e+03      309   0.00109        0        0         0     Tracker initStep
-    1 1.85e+03 1.18e+03      309         0  0.00109   0.0647    0.0647     Tracker eIoni
+    0  -0.0693      1.2 -2.43e+03     0.411        0        0         0      Target initStep
+    1  -0.0747     1.21 -2.43e+03         0    0.411    0.233     0.233      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 869,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 106,   Parent ID = 73
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.84e+03  1.2e+03      291   0.00104        0        0         0     Tracker initStep
-    1 1.84e+03  1.2e+03      291         0  0.00104   0.0601    0.0601     Tracker eIoni
+    0   -0.292    0.153 -2.44e+03     0.224        0        0         0      Target initStep
+    1   -0.549   -0.012 -2.44e+03         0    0.088     3.03      3.03      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 868,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 150,   Parent ID = 106
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.81e+03 1.23e+03      255    0.0193        0        0         0     Tracker initStep
-    1 1.81e+03 1.23e+03      254    0.0167  0.00255     3.29      3.29     Tracker eIoni
-    2 1.81e+03 1.23e+03      253     0.014  0.00154     1.01      4.29     Tracker eIoni
-    3 1.81e+03 1.23e+03      253    0.0103 0.000695    0.489      4.78     Tracker eIoni
-    4 1.81e+03 1.23e+03      252   0.00569   0.0046     1.88      6.66     Tracker eIoni
-    5 1.81e+03 1.23e+03      251         0  0.00569    0.965      7.63     Tracker eIoni
+    0   -0.549   -0.012 -2.44e+03     0.136        0        0         0      Target initStep
+    1   -0.549  -0.0131 -2.44e+03         0    0.136   0.0446    0.0446      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 912,   Parent ID = 868
+* G4Track Information:   Particle = gamma,   Track ID = 105,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.81e+03 1.23e+03      253   0.00304        0        0         0     Tracker initStep
-    1 1.81e+03 1.23e+03      253         0  0.00304    0.323     0.323     Tracker eIoni
+    0     -8.4    0.722 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -8.86     0.41 -2.43e+03     0.343        0     1.57      1.57      Target compt
+    2    -10.5     2.92 -2.43e+03     0.226        0     3.58      5.15      Target compt
+    3    -9.39        4 -2.43e+03         0    0.088     1.56       6.7      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 911,   Parent ID = 868
+* G4Track Information:   Particle = e-,   Track ID = 153,   Parent ID = 105
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.81e+03 1.23e+03      253   0.00116        0        0         0     Tracker initStep
-    1 1.81e+03 1.23e+03      253         0  0.00116   0.0702    0.0702     Tracker eIoni
+    0    -9.39        4 -2.43e+03     0.138        0        0         0      Target initStep
+    1    -9.39        4 -2.43e+03         0    0.138   0.0457    0.0457      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 867,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 152,   Parent ID = 105
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.79e+03 1.25e+03      236   0.00229        0        0         0     Tracker initStep
-    1 1.79e+03 1.25e+03      236         0  0.00229    0.201     0.201     Tracker eIoni
+    0    -10.5     2.92 -2.43e+03     0.117        0        0         0      Target initStep
+    1    -10.5     2.92 -2.43e+03         0    0.117   0.0351    0.0351      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 866,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 151,   Parent ID = 105
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.77e+03 1.27e+03      218   0.00107        0        0         0     Tracker initStep
-    1 1.77e+03 1.27e+03      218         0  0.00107   0.0631    0.0631     Tracker eIoni
+    0    -8.86     0.41 -2.43e+03     0.168        0        0         0      Target initStep
+    1    -8.86    0.407 -2.43e+03         0    0.168   0.0624    0.0624      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 865,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 104,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.73e+03  1.3e+03      200   0.00312        0        0         0     Tracker initStep
-    1 1.73e+03  1.3e+03      200         0  0.00312    0.337     0.337     Tracker eIoni
+    0     -8.4    0.722 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -3.93     3.72 -2.45e+03     0.271        0       15        15      Target compt
+    2    -4.03     4.19 -2.45e+03         0    0.088    0.485      15.5      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 864,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 155,   Parent ID = 104
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.7e+03 1.33e+03      186    0.0111        0        0         0     Tracker initStep
-    1  1.7e+03 1.33e+03      186   0.00702  0.00408        2         2     Tracker eIoni
-    2  1.7e+03 1.33e+03      186   0.00255  0.00446     1.31      3.31     Tracker eIoni
-    3  1.7e+03 1.33e+03      186         0  0.00255     0.24      3.55     Tracker eIoni
+    0    -4.03     4.19 -2.45e+03     0.183        0        0         0      Target initStep
+    1    -4.03     4.19 -2.45e+03         0    0.183    0.071     0.071      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 863,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 154,   Parent ID = 104
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.69e+03 1.34e+03      181   0.00784        0        0         0     Tracker initStep
-    1 1.69e+03 1.34e+03      181   0.00333  0.00451     1.48      1.48     Tracker eIoni
-    2 1.69e+03 1.34e+03      181         0  0.00333    0.376      1.85     Tracker eIoni
+    0    -3.93     3.72 -2.45e+03      0.24        0        0         0      Target initStep
+    1    -3.93     3.71 -2.45e+03         0     0.24    0.107     0.107      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 862,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 103,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.64e+03 1.39e+03      152   0.00184        0        0         0     Tracker initStep
-    1 1.64e+03 1.39e+03      152         0  0.00184    0.142     0.142     Tracker eIoni
+    0    -8.41    0.783 -2.43e+03       1.3        0        0         0      Target initStep
+    1    -9.52    -2.67 -2.43e+03     0.721        0     4.09      4.09      Target compt
+    2    -23.9     -7.4 -2.44e+03     0.721        0     17.6      21.7       World Transportation
+    3     -813     -267 -2.94e+03     0.721        0      968       990  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 861,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 156,   Parent ID = 103
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.6e+03 1.45e+03      151   0.00209        0        0         0     Tracker initStep
-    1  1.6e+03 1.45e+03      152         0  0.00209    0.173     0.173     Tracker eIoni
+    0    -9.52    -2.67 -2.43e+03     0.579        0        0         0      Target initStep
+    1    -9.52     -2.7 -2.43e+03         0    0.579     0.37      0.37      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 860,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 102,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.58e+03 1.48e+03      155   0.00189        0        0         0     Tracker initStep
-    1 1.58e+03 1.48e+03      155         0  0.00189    0.148     0.148     Tracker eIoni
+    0    -8.58    0.652 -2.43e+03     0.967        0        0         0      Target initStep
+    1    -3.05     5.42 -2.43e+03     0.467        0      7.3       7.3      Target compt
+    2    -1.52     8.03 -2.44e+03         0    0.088     6.41      13.7      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 859,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 158,   Parent ID = 102
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.51e+03 1.63e+03      119   0.00728        0        0         0     Tracker initStep
-    1 1.52e+03 1.63e+03      119    0.0026  0.00468     1.37      1.37     Tracker eIoni
-    2 1.52e+03 1.63e+03      119         0   0.0026    0.247      1.61     Tracker eIoni
+    0    -1.52     8.03 -2.44e+03     0.379        0        0         0      Target initStep
+    1    -1.51     8.03 -2.44e+03         0    0.379    0.208     0.208      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 858,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 157,   Parent ID = 102
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.42e+03 1.71e+03     69.3   0.00126        0        0         0     Tracker initStep
-    1 1.42e+03 1.71e+03     69.3         0  0.00126   0.0793    0.0793     Tracker eIoni
+    0    -3.05     5.42 -2.43e+03     0.501        0        0         0      Target initStep
+    1    -3.04     5.44 -2.43e+03         0    0.501    0.305     0.305      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 857,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 101,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  1.2e+03 1.83e+03    -35.8    0.0107        0        0         0     Tracker initStep
-    1  1.2e+03 1.83e+03    -36.6   0.00546  0.00524     1.94      1.94     Tracker eIoni
-    2  1.2e+03 1.83e+03    -36.6         0  0.00546    0.897      2.84     Tracker eIoni
+    0    -8.65    0.505 -2.43e+03      0.85        0        0         0      Target initStep
+    1    -7.54      2.8 -2.43e+03         0    0.088     3.25      3.25      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 856,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 159,   Parent ID = 101
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.07e+03 1.84e+03    -60.2   0.00121        0        0         0     Tracker initStep
-    1 1.07e+03 1.84e+03    -60.2         0  0.00121   0.0748    0.0748     Tracker eIoni
+    0    -7.54      2.8 -2.43e+03     0.762        0        0         0      Target initStep
+    1    -7.51     2.81 -2.43e+03         0    0.762    0.525     0.525      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 855,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 100,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.05e+03 1.84e+03    -64.1    0.0035        0        0         0     Tracker initStep
-    1 1.05e+03 1.84e+03      -64         0   0.0035     0.41      0.41     Tracker eIoni
+    0    -8.39    0.525 -2.43e+03     0.351        0        0         0      Target initStep
+    1    -13.4     0.19 -2.44e+03         0    0.088     7.78      7.78      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 854,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 160,   Parent ID = 100
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.01e+03 1.83e+03    -79.5   0.00352        0        0         0     Tracker initStep
-    1 1.01e+03 1.83e+03    -79.6   0.00201 0.000374    0.128     0.128     Tracker eIoni
-    2 1.01e+03 1.83e+03    -79.6         0  0.00201    0.163     0.291     Tracker eIoni
+    0    -13.4     0.19 -2.44e+03     0.263        0        0         0      Target initStep
+    1    -13.4    0.191 -2.44e+03         0    0.263    0.123     0.123      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 913,   Parent ID = 854
+* G4Track Information:   Particle = gamma,   Track ID = 99,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 1.01e+03 1.83e+03    -79.6   0.00113        0        0         0     Tracker initStep
-    1 1.01e+03 1.83e+03    -79.6         0  0.00113    0.068     0.068     Tracker eIoni
+    0    -7.93    0.663 -2.43e+03     0.103        0        0         0      Target initStep
+    1    -7.93    0.662 -2.43e+03         0    0.088  0.00366   0.00366      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 853,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 161,   Parent ID = 99
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      846 1.78e+03    -65.8   0.00641        0        0         0     Tracker initStep
-    1      846 1.78e+03    -66.2   0.00156  0.00485     1.17      1.17     Tracker eIoni
-    2      846 1.78e+03    -66.2         0  0.00156     0.11      1.28     Tracker eIoni
+    0    -7.93    0.662 -2.43e+03    0.0145        0        0         0      Target initStep
+    1    -7.93    0.662 -2.43e+03         0   0.0145  0.00123   0.00123      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 852,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 98,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      764 1.74e+03    -46.7   0.00597        0        0         0     Tracker initStep
-    1      764 1.74e+03    -46.4  0.000239  0.00573     1.05      1.05     Tracker eIoni
-    2      764 1.74e+03    -46.4         0 0.000239   0.0105      1.06     Tracker eIoni
+    0    -7.23    0.395 -2.43e+03     0.652        0        0         0      Target initStep
+    1    -23.2     6.62 -2.43e+03         0    0.088     17.1      17.1      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 851,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 162,   Parent ID = 98
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      629 1.65e+03     5.55     0.028        0        0         0     Tracker initStep
-    1      628 1.66e+03     6.71    0.0237   0.0043     5.07      5.07     Tracker eIoni
-    2      628 1.66e+03     6.27    0.0177  0.00593     4.12      9.19     Tracker eIoni
-    3      628 1.66e+03     7.33    0.0155 0.000812     1.47      10.7     Tracker eIoni
-    4      628 1.66e+03     9.22    0.0111  0.00434     2.65      13.3     Tracker eIoni
-    5      629 1.66e+03     9.48   0.00549  0.00564        2      15.3     Tracker eIoni
-    6      628 1.66e+03     9.23         0  0.00549    0.903      16.2     Tracker eIoni
+    0    -23.2     6.62 -2.43e+03     0.564        0        0         0      Target initStep
+    1    -23.2     6.62 -2.43e+03         0    0.564    0.357     0.357      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 914,   Parent ID = 851
+* G4Track Information:   Particle = gamma,   Track ID = 97,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      628 1.66e+03     7.33   0.00145        0        0         0     Tracker initStep
-    1      628 1.66e+03     7.33         0  0.00145   0.0984    0.0984     Tracker eIoni
+    0    -7.08    0.313 -2.43e+03      6.73        0        0         0      Target initStep
+    1    -10.2     1.73 -2.43e+03      2.07        0     3.42      3.42      Target compt
+    2    -15.3     9.76 -2.43e+03         0        0     9.65      13.1      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 850,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 164,   Parent ID = 97
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      590 1.63e+03       19   0.00847        0        0         0     Tracker initStep
-    1      590 1.63e+03     19.1   0.00477   0.0037     1.59      1.59     Tracker eIoni
-    2      590 1.63e+03     19.3         0  0.00477    0.706       2.3     Tracker eIoni
+    0    -15.3     9.76 -2.43e+03     0.299        0        0         0      Target initStep
+    1    -15.3     9.77 -2.43e+03         0    0.299    0.149     0.149      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 849,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 163,   Parent ID = 97
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      590 1.63e+03     19.3   0.00218        0        0         0     Tracker initStep
-    1      590 1.63e+03     19.3         0  0.00218    0.186     0.186     Tracker eIoni
+    0    -10.2     1.73 -2.43e+03      4.66        0        0         0      Target initStep
+    1    -10.6     1.82 -2.43e+03      2.61    0.776    0.719     0.719      Target eBrem
+    2    -10.5     2.01 -2.43e+03     0.445     1.93     1.38       2.1      Target eBrem
+    3    -10.5        2 -2.43e+03         0    0.445     0.26      2.36      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 848,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 167,   Parent ID = 163
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      558  1.6e+03     40.7    0.0024        0        0         0     Tracker initStep
-    1      558  1.6e+03     40.6         0   0.0024    0.217     0.217     Tracker eIoni
+    0    -10.5     2.01 -2.43e+03     0.236        0        0         0      Target initStep
+    1    -12.6    0.155 -2.43e+03         0    0.088     3.19      3.19      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 847,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 168,   Parent ID = 167
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      552 1.59e+03     45.8   0.00162        0        0         0     Tracker initStep
-    1      552 1.59e+03     45.8         0  0.00162    0.116     0.116     Tracker eIoni
+    0    -12.6    0.155 -2.43e+03     0.148        0        0         0      Target initStep
+    1    -12.6    0.151 -2.43e+03         0    0.148   0.0512    0.0512      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 846,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 166,   Parent ID = 163
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      548 1.59e+03       49   0.00427        0        0         0     Tracker initStep
-    1      548 1.59e+03     49.2         0  0.00427    0.581     0.581     Tracker eIoni
+    0    -10.6     1.82 -2.43e+03      1.27        0        0         0      Target initStep
+    1     1.79     24.9 -2.42e+03      1.27        0     29.7      29.7       World Transportation
+    2       17     53.3 -2.4e+03      1.27        0     36.5      66.2     Tracker Transportation
+    3 1.13e+03 2.12e+03 -1.16e+03      1.27        0 2.65e+03  2.72e+03       World Transportation
+    4 1.57e+03 2.94e+03     -662      1.27        0 1.05e+03  3.78e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 845,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 96,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      534 1.57e+03     58.7   0.00107        0        0         0     Tracker initStep
-    1      534 1.57e+03     58.7         0  0.00107   0.0631    0.0631     Tracker eIoni
+    0    -6.36   0.0266 -2.43e+03      2.93        0        0         0      Target initStep
+    1    -11.4     1.82 -2.43e+03       2.4        0     5.47      5.47      Target compt
+    2      -23     9.87 -2.43e+03       2.4        0     14.9      20.4       World Transportation
+    3    -84.5     52.7 -2.4e+03       2.4        0     79.1      99.5     Tracker Transportation
+    4 -1.97e+03 1.37e+03 -1.63e+03       2.4        0 2.43e+03  2.53e+03       World Transportation
+    5 -2.94e+03 2.04e+03 -1.23e+03       2.4        0 1.24e+03  3.77e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 844,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 169,   Parent ID = 96
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      528 1.56e+03     62.8   0.00626        0        0         0     Tracker initStep
-    1      528 1.56e+03       63   0.00167  0.00329    0.646     0.646     Tracker eIoni
-    2      528 1.56e+03       63         0  0.00167    0.123     0.768     Tracker eIoni
+    0    -11.4     1.82 -2.43e+03     0.531        0        0         0      Target initStep
+    1    -11.4     1.81 -2.43e+03         0    0.531     0.33      0.33      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 915,   Parent ID = 844
+* G4Track Information:   Particle = gamma,   Track ID = 95,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      528 1.56e+03       63    0.0013        0        0         0     Tracker initStep
-    1      528 1.56e+03       63         0   0.0013   0.0833    0.0833     Tracker eIoni
+    0    -6.06  -0.0888 -2.43e+03     0.487        0        0         0      Target initStep
+    1    -15.4     3.35 -2.43e+03         0    0.088     10.3      10.3      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 843,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 170,   Parent ID = 95
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      472 1.51e+03     95.2   0.00229        0        0         0     Tracker initStep
-    1      472 1.51e+03     95.1         0  0.00229    0.201     0.201     Tracker eIoni
+    0    -15.4     3.35 -2.43e+03     0.399        0        0         0      Target initStep
+    1    -15.4     3.36 -2.43e+03         0    0.399    0.224     0.224      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 842,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 94,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      416 1.44e+03      118   0.00186        0        0         0     Tracker initStep
-    1      416 1.44e+03      117         0  0.00186    0.145     0.145     Tracker eIoni
+    0    -5.96   -0.117 -2.43e+03     0.677        0        0         0      Target initStep
+    1    -12.4     3.02 -2.43e+03     0.424        0     7.15      7.15      Target compt
+    2    -12.6     3.93 -2.43e+03         0    0.088     1.06      8.21      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 841,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 172,   Parent ID = 94
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      391  1.4e+03      133   0.00161        0        0         0     Tracker initStep
-    1      391  1.4e+03      133         0  0.00161    0.115     0.115     Tracker eIoni
+    0    -12.6     3.93 -2.43e+03     0.336        0        0         0      Target initStep
+    1    -12.6     3.94 -2.43e+03         0    0.336    0.176     0.176      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 840,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 171,   Parent ID = 94
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      370 1.36e+03      150   0.00126        0        0         0     Tracker initStep
-    1      370 1.36e+03      150         0  0.00126   0.0799    0.0799     Tracker eIoni
+    0    -12.4     3.02 -2.43e+03     0.253        0        0         0      Target initStep
+    1    -12.4     3.02 -2.43e+03         0    0.253    0.116     0.116      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 839,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 93,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      364 1.35e+03      154    0.0093        0        0         0     Tracker initStep
-    1      365 1.35e+03      155   0.00327  0.00603     1.73      1.73     Tracker eIoni
-    2      365 1.35e+03      155         0  0.00327    0.364      2.09     Tracker eIoni
+    0    -5.74   -0.223 -2.43e+03     0.286        0        0         0      Target initStep
+    1    -6.19  -0.0269 -2.43e+03         0    0.088    0.505     0.505      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 838,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 173,   Parent ID = 93
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      361 1.34e+03      156   0.00124        0        0         0     Tracker initStep
-    1      361 1.34e+03      156         0  0.00124   0.0783    0.0783     Tracker eIoni
+    0    -6.19  -0.0269 -2.43e+03     0.198        0        0         0      Target initStep
+    1     -6.2  -0.0265 -2.43e+03         0    0.198   0.0804    0.0804      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 837,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 92,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      346 1.32e+03      165   0.00122        0        0         0     Tracker initStep
-    1      346 1.32e+03      165         0  0.00122   0.0759    0.0759     Tracker eIoni
+    0     -5.3   -0.451 -2.43e+03      0.38        0        0         0      Target initStep
+    1    -5.83   -0.175 -2.43e+03      0.26        0    0.621     0.621      Target compt
+    2    -6.05    0.395 -2.43e+03     0.176        0    0.791      1.41      Target compt
+    3    -6.72     0.47 -2.43e+03         0    0.088    0.744      2.16      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 836,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 176,   Parent ID = 92
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      329 1.28e+03      178   0.00114        0        0         0     Tracker initStep
-    1      329 1.28e+03      178         0  0.00114   0.0693    0.0693     Tracker eIoni
+    0    -6.72     0.47 -2.43e+03    0.0885        0        0         0      Target initStep
+    1    -6.72    0.471 -2.43e+03         0   0.0885   0.0225    0.0225      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 835,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 175,   Parent ID = 92
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      316 1.25e+03      189   0.00286        0        0         0     Tracker initStep
-    1      316 1.25e+03      189         0  0.00286     0.29      0.29     Tracker eIoni
+    0    -6.05    0.395 -2.43e+03    0.0838        0        0         0      Target initStep
+    1    -6.05    0.396 -2.43e+03         0   0.0838   0.0206    0.0206      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 834,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 174,   Parent ID = 92
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      283 1.15e+03      232   0.00226        0        0         0     Tracker initStep
-    1      283 1.15e+03      232         0  0.00226    0.196     0.196     Tracker eIoni
+    0    -5.83   -0.175 -2.43e+03      0.12        0        0         0      Target initStep
+    1    -5.83   -0.175 -2.43e+03         0     0.12   0.0366    0.0366      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 833,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 91,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      270  1.1e+03      250   0.00141        0        0         0     Tracker initStep
-    1      270  1.1e+03      250         0  0.00141   0.0942    0.0942     Tracker eIoni
+    0    -4.41   -0.825 -2.43e+03     0.954        0        0         0      Target initStep
+    1    -14.7     7.42 -2.42e+03         0    0.088     14.9      14.9      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 832,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 177,   Parent ID = 91
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      257 1.04e+03      266   0.00692        0        0         0     Tracker initStep
-    1      257 1.04e+03      265    0.0019  0.00502     1.04      1.04     Tracker eIoni
-    2      257 1.04e+03      265         0   0.0019     0.15      1.19     Tracker eIoni
+    0    -14.7     7.42 -2.42e+03     0.866        0        0         0      Target initStep
+    1    -14.7     7.45 -2.42e+03         0    0.866    0.615     0.615      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 831,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 90,   Parent ID = 43
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      244      985      299   0.00178        0        0         0     Tracker initStep
-    1      244      985      299         0  0.00178    0.135     0.135     Tracker eIoni
+    0    -3.68   -0.873 -2.43e+03      2.19        0        0         0      Target initStep
+    1    -4.05   -0.871 -2.43e+03     0.907        0    0.771     0.771      Target compt
+    2    -21.7    -12.4 -2.42e+03     0.907        0     22.4      23.2       World Transportation
+    3    -79.7    -50.5 -2.4e+03     0.907        0     73.7      96.8     Tracker Transportation
+    4 -2.01e+03 -1.32e+03 -1.58e+03     0.907        0 2.45e+03  2.54e+03       World Transportation
+    5 -2.94e+03 -1.93e+03 -1.18e+03     0.907        0 1.18e+03  3.73e+03  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 830,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 178,   Parent ID = 90
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      229      931      330    0.0546        0        0         0     Tracker initStep
-    1      225      929      320      0.05   0.0046     13.5      13.5     Tracker eIoni
-    2      220      929      315    0.0425  0.00579     7.96      21.4     Tracker eIoni
-    3      214      925      313     0.035  0.00742     9.11      30.5     Tracker eIoni
-    4      211      924      311    0.0292  0.00479      3.9      34.4     Tracker eIoni
-    5      209      923      307    0.0233  0.00594     5.36      39.8     Tracker eIoni
-    6      207      925      306    0.0157  0.00595     3.47      43.3     Tracker eIoni
-    7      205      925      306    0.0106  0.00511     2.69        46     Tracker eIoni
-    8      204      925      307   0.00623  0.00441     1.93      47.9     Tracker eIoni
-    9      203      925      307         0  0.00623     1.12        49     Tracker eIoni
+    0    -4.05   -0.871 -2.43e+03      1.29        0        0         0      Target initStep
+    1    -4.06   -0.849 -2.43e+03     0.347    0.676    0.701     0.701      Target eBrem
+    2    -4.07   -0.837 -2.43e+03         0    0.347    0.184     0.885      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 918,   Parent ID = 830
+* G4Track Information:   Particle = gamma,   Track ID = 179,   Parent ID = 178
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      207      925      306   0.00156        0        0         0     Tracker initStep
-    1      207      925      306         0  0.00156     0.11      0.11     Tracker eIoni
+    0    -4.06   -0.849 -2.43e+03     0.263        0        0         0      Target initStep
+    1    -3.85   -0.664 -2.43e+03         0    0.088    0.313     0.313      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 917,   Parent ID = 830
+* G4Track Information:   Particle = e-,   Track ID = 180,   Parent ID = 179
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      211      924      311   0.00106        0        0         0     Tracker initStep
-    1      211      924      311         0  0.00106   0.0616    0.0616     Tracker eIoni
+    0    -3.85   -0.664 -2.43e+03     0.175        0        0         0      Target initStep
+    1    -3.85   -0.661 -2.43e+03         0    0.175   0.0662    0.0662      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 916,   Parent ID = 830
+* G4Track Information:   Particle = gamma,   Track ID = 89,   Parent ID = 56
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      220      929      315   0.00177        0        0         0     Tracker initStep
-    1      220      929      315         0  0.00177    0.134     0.134     Tracker eIoni
+    0    -0.93   0.0375 -2.44e+03     0.511        0        0         0      Target initStep
+    1   0.0394  -0.0666 -2.44e+03      0.51        0     1.47      1.47      Target compt
+    2     1.35   -0.095 -2.44e+03         0    0.088     2.08      3.56      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 829,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 182,   Parent ID = 89
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      223      879      357   0.00561        0        0         0     Tracker initStep
-    1      223      879      357   0.00366 0.000865    0.155     0.155     Tracker eIoni
-    2      223      879      357         0  0.00366    0.444     0.599     Tracker eIoni
+    0     1.35   -0.095 -2.44e+03     0.422        0        0         0      Target initStep
+    1     1.36   -0.103 -2.44e+03         0    0.422    0.242     0.242      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 919,   Parent ID = 829
+* G4Track Information:   Particle = e-,   Track ID = 181,   Parent ID = 89
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      223      879      357   0.00108        0        0         0     Tracker initStep
-    1      223      879      357         0  0.00108   0.0639    0.0639     Tracker eIoni
+    0   0.0394  -0.0666 -2.44e+03   0.00121        0        0         0      Target initStep
+    1   0.0394  -0.0666 -2.44e+03         0  0.00121 3.96e-05  3.96e-05      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 828,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 88,   Parent ID = 56
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      222      870      363   0.00103        0        0         0     Tracker initStep
-    1      222      870      363         0  0.00103   0.0598    0.0598     Tracker eIoni
+    0    -0.93   0.0375 -2.44e+03     0.511        0        0         0      Target initStep
+    1    -6.77    0.665 -2.43e+03     0.387        0     8.88      8.88      Target compt
+    2    -6.86    0.599 -2.43e+03     0.264        0    0.116         9      Target compt
+    3       -6    -1.87 -2.43e+03         0    0.088     4.53      13.5      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 827,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 185,   Parent ID = 88
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      219      826      387    0.0245        0        0         0     Tracker initStep
-    1      218      826      387    0.0206 0.000829     1.47      1.47     Tracker eIoni
-    2      215      827      386    0.0179  0.00274     3.53         5     Tracker eIoni
-    3      215      828      384    0.0151  0.00274     3.04      8.04     Tracker eIoni
-    4      216      828      383    0.0126 0.000569    0.559       8.6     Tracker eIoni
-    5      216      828      382   0.00651  0.00608     2.22      10.8     Tracker eIoni
-    6      216      829      382         0  0.00651     1.19        12     Tracker eIoni
+    0       -6    -1.87 -2.43e+03     0.176        0        0         0      Target initStep
+    1    -5.99    -1.87 -2.43e+03         0    0.176    0.067     0.067      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 921,   Parent ID = 827
+* G4Track Information:   Particle = e-,   Track ID = 184,   Parent ID = 88
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      216      828      383   0.00196        0        0         0     Tracker initStep
-    1      216      828      383         0  0.00196    0.156     0.156     Tracker eIoni
+    0    -6.86    0.599 -2.43e+03     0.123        0        0         0      Target initStep
+    1    -6.86    0.599 -2.43e+03         0    0.123    0.038     0.038      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 920,   Parent ID = 827
+* G4Track Information:   Particle = e-,   Track ID = 183,   Parent ID = 88
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      218      826      387   0.00307        0        0         0     Tracker initStep
-    1      218      826      386         0  0.00307    0.328     0.328     Tracker eIoni
+    0    -6.77    0.665 -2.43e+03     0.124        0        0         0      Target initStep
+    1    -6.77    0.666 -2.43e+03         0    0.124   0.0387    0.0387      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 826,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 87,   Parent ID = 56
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      216      802      404   0.00103        0        0         0     Tracker initStep
-    1      216      802      404         0  0.00103   0.0595    0.0595     Tracker eIoni
+    0   -0.963   0.0163 -2.44e+03      0.23        0        0         0      Target initStep
+    1   -0.373     0.26 -2.44e+03         0    0.088    0.668     0.668      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 825,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 186,   Parent ID = 87
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      217      781      418   0.00293        0        0         0     Tracker initStep
-    1      217      781      418         0  0.00293    0.302     0.302     Tracker eIoni
+    0   -0.373     0.26 -2.44e+03     0.142        0        0         0      Target initStep
+    1    -0.37    0.258 -2.44e+03         0    0.142   0.0481    0.0481      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 824,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 86,   Parent ID = 74
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      200      652      529   0.00221        0        0         0     Tracker initStep
-    1      200      652      529         0  0.00221     0.19      0.19     Tracker eIoni
+    0   -0.915    0.386 -2.44e+03     0.511        0        0         0      Target initStep
+    1      -10     9.93 -2.45e+03     0.511        0     16.3      16.3       World Transportation
+    2     -473      495 -2.94e+03     0.511        0      830       847  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 823,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 85,   Parent ID = 74
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      195      625      548   0.00236        0        0         0     Tracker initStep
-    1      195      625      548         0  0.00236    0.212     0.212     Tracker eIoni
+    0   -0.915    0.386 -2.44e+03     0.511        0        0         0      Target initStep
+    1     2.99    -3.71 -2.44e+03         0    0.088     7.01      7.01      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 822,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 187,   Parent ID = 85
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      162      402      707   0.00177        0        0         0     Chamber initStep
-    1      162      402      707         0  0.00177   0.0878    0.0878     Chamber eIoni
+    0     2.99    -3.71 -2.44e+03     0.423        0        0         0      Target initStep
+    1        3    -3.72 -2.44e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 820,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 84,   Parent ID = 74
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      163      326      757   0.00208        0        0         0     Chamber initStep
-    1      163      326      757         0  0.00208     0.11      0.11     Chamber eIoni
+    0   -0.826    0.403 -2.44e+03      34.5        0        0         0      Target initStep
+    1    -1.03    0.403 -2.44e+03         0        0    0.609     0.609      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 819,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 82,   Parent ID = 74
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      160      258      789    0.0178        0        0         0     Chamber initStep
-    1      160      258      789   0.00808  0.00975     2.02      2.02     Chamber eIoni
-    2      160      258      789         0  0.00808    0.857      2.88     Chamber eIoni
+    0   -0.485    0.332 -2.44e+03      19.9        0        0         0      Target initStep
+    1   -0.751    0.232 -2.44e+03         0        0     2.19      2.19      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 818,   Parent ID = 782
+* G4Track Information:   Particle = e+,   Track ID = 191,   Parent ID = 82
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      144      236      800   0.00462        0        0         0     Chamber initStep
-    1      144      236      800         0  0.00462    0.347     0.347     Chamber eIoni
+    0   -0.751    0.232 -2.44e+03      4.19        0        0         0      Target initStep
+    1   -0.794    0.241 -2.44e+03      2.25    0.265     0.23      0.23      Target eBrem
+    2   -0.648    0.467 -2.44e+03     0.326     1.92     1.54      1.77      Target eIoni
+    3   -0.664    0.463 -2.44e+03         0    0.326    0.165      1.93      Target eIoni
+    4   -0.664    0.463 -2.44e+03         0        0        0      1.93      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 817,   Parent ID = 782
+* G4Track Information:   Particle = e+,   Track ID = 189,   Parent ID = 84
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      111      207      777   0.00195        0        0         0     Chamber initStep
-    1      111      207      777         0  0.00195      0.1       0.1     Chamber eIoni
+    0    -1.03    0.403 -2.44e+03       8.2        0        0         0      Target initStep
+    1    -1.15    0.455 -2.44e+03      1.73    0.444    0.418     0.418      Target eBrem
+    2     -1.2    0.551 -2.44e+03         0     1.73      1.3      1.72      Target eIoni
+    3     -1.2    0.551 -2.44e+03         0        0        0      1.72      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 816,   Parent ID = 782
+* G4Track Information:   Particle = e+,   Track ID = 165,   Parent ID = 97
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     60.2      216      743   0.00173        0        0         0     Chamber initStep
-    1     60.2      216      743         0  0.00173    0.085     0.085     Chamber eIoni
+    0    -15.3     9.76 -2.43e+03     0.747        0        0         0      Target initStep
+    1    -15.3     9.81 -2.43e+03         0    0.747    0.514     0.514      Target eIoni
+    2    -15.3     9.81 -2.43e+03         0        0        0     0.514      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 815,   Parent ID = 782
+* G4Track Information:   Particle = e+,   Track ID = 145,   Parent ID = 109
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     52.7      215      739   0.00233        0        0         0     Chamber initStep
-    1     52.7      215      739         0  0.00233    0.128     0.128     Chamber eIoni
+    0   -0.122    0.505 -2.44e+03      1.04        0        0         0      Target initStep
+    1   -0.113    0.517 -2.44e+03     0.258    0.778    0.711     0.711      Target eBrem
+    2   -0.118    0.519 -2.44e+03         0    0.258    0.116     0.827      Target eIoni
+    3   -0.118    0.519 -2.44e+03         0        0        0     0.827      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 814,   Parent ID = 782
+* G4Track Information:   Particle = e+,   Track ID = 119,   Parent ID = 117
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -85.6      144      512    0.0184        0        0         0     Tracker initStep
-    1    -86.4      145      512    0.0157  0.00114     1.49      1.49     Tracker eIoni
-    2    -88.1      145      512    0.0114  0.00435     2.69      4.18     Tracker eIoni
-    3    -88.8      146      511   0.00631  0.00507     2.04      6.22     Tracker eIoni
-    4    -88.7      146      510         0  0.00631     1.06      7.28     Tracker eIoni
+    0     5.83     10.1 -2.43e+03      1.64        0        0         0      Target initStep
+    1     5.91     10.3 -2.43e+03     0.618    0.827    0.824     0.824      Target eBrem
+    2     5.87     10.3 -2.43e+03     0.254    0.364    0.366      1.19      Target eBrem
+    3     5.87     10.3 -2.43e+03         0    0.254    0.113       1.3      Target eIoni
+    4     5.87     10.3 -2.43e+03         0        0        0       1.3      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 922,   Parent ID = 814
+* G4Track Information:   Particle = e-,   Track ID = 190,   Parent ID = 82
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -86.4      145      512    0.0015        0        0         0     Tracker initStep
-    1    -86.4      145      512         0   0.0015    0.104     0.104     Tracker eIoni
+    0   -0.751    0.232 -2.44e+03      14.7        0        0         0      Target initStep
+    1   -0.753     0.23 -2.44e+03      8.12   0.0151   0.0123    0.0123      Target eBrem
+    2     -0.8    0.189 -2.44e+03      5.98    0.542    0.496     0.509      Target eBrem
+    3   -0.588    0.405 -2.44e+03      3.47     0.67     0.64      1.15      Target eBrem
+    4   -0.351    0.615 -2.44e+03    0.0287    0.657    0.651       1.8      Target eBrem
+    5   -0.351    0.615 -2.44e+03         0   0.0287  0.00363       1.8      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 813,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 188,   Parent ID = 84
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -135      112      326    0.0679        0        0         0     Tracker initStep
-    1     -137      107      328    0.0637  0.00299     6.22      6.22     Tracker eIoni
-    2     -141     98.9      332    0.0574  0.00518     10.3      16.5     Tracker eIoni
-    3     -145     88.4      337    0.0511  0.00635     14.6      31.1     Tracker eIoni
-    4     -151     81.9      342    0.0453  0.00582     12.1      43.2     Tracker eIoni
-    5     -159       80      344    0.0372  0.00806       10      53.3     Tracker eIoni
-    6     -157     74.9      347    0.0313  0.00593      7.5      60.8     Tracker eIoni
-    7     -153       73      347    0.0262  0.00505     5.88      66.7     Tracker eIoni
-    8     -152     72.8      347    0.0247 0.000564    0.498      67.2     Tracker eIoni
-    9     -149     71.6      348    0.0194  0.00526     4.34      71.5     Tracker eIoni
-   10     -149     71.6      348    0.0183        0   0.0134      71.5     Tracker eIoni
-   11     -148     71.5      350    0.0143  0.00394     3.11      74.6     Tracker eIoni
-   12     -147     70.6      351    0.0109  0.00343     2.48      77.1     Tracker eIoni
-   13     -147     70.6      351   0.00959 7.18e-05   0.0427      77.1     Tracker eIoni
-   14     -146     70.4      352    0.0052  0.00439     1.77      78.9     Tracker eIoni
-   15     -145     70.4      352   0.00238  0.00282    0.552      79.5     Tracker eIoni
-   16     -146     70.3      352         0  0.00238    0.214      79.7     Tracker eIoni
+    0    -1.03    0.403 -2.44e+03      25.3        0        0         0      Target initStep
+    1    -1.37    0.699 -2.44e+03      23.2     1.93     1.39      1.39      Target eBrem
+    2    -1.58    0.595 -2.44e+03      17.2    0.543    0.477      1.87      Target eBrem
+    3    -1.81    0.463 -2.44e+03      14.8    0.526    0.444      2.31      Target eBrem
+    4    -1.92    0.289 -2.44e+03      10.7    0.369     0.39       2.7      Target eBrem
+    5    -2.41   -0.546 -2.44e+03         5     3.35     2.78      5.48      Target eBrem
+    6    -2.47   -0.486 -2.44e+03       2.7      2.3     2.22       7.7      Target eIoni
+    7     -2.5   -0.327 -2.44e+03      2.12    0.576    0.385      8.09      Target eBrem
+    8    -2.44   -0.177 -2.44e+03       1.4    0.503    0.424      8.51      Target eBrem
+    9    -2.37   -0.178 -2.44e+03     0.207    0.964    0.909      9.42      Target eBrem
+   10    -2.37   -0.173 -2.44e+03         0    0.207   0.0861       9.5      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 927,   Parent ID = 813
+* G4Track Information:   Particle = gamma,   Track ID = 215,   Parent ID = 188
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -147     70.6      351   0.00125        0        0         0     Tracker initStep
-    1     -147     70.7      351         0  0.00125   0.0785    0.0785     Tracker eIoni
+    0    -2.37   -0.178 -2.44e+03     0.229        0        0         0      Target initStep
+    1    -1.99    0.994 -2.44e+03         0    0.088     1.23      1.23      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 926,   Parent ID = 813
+* G4Track Information:   Particle = e-,   Track ID = 216,   Parent ID = 215
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -149     71.6      348   0.00114        0        0         0     Tracker initStep
-    1     -149     71.6      348         0  0.00114   0.0688    0.0688     Tracker eIoni
+    0    -1.99    0.994 -2.44e+03     0.141        0        0         0      Target initStep
+    1    -1.99    0.995 -2.44e+03         0    0.141   0.0475    0.0475      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 925,   Parent ID = 813
+* G4Track Information:   Particle = gamma,   Track ID = 214,   Parent ID = 188
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -152     72.8      347     0.001        0        0         0     Tracker initStep
-    1     -152     72.7      347         0    0.001   0.0574    0.0574     Tracker eIoni
+    0    -2.44   -0.177 -2.44e+03     0.219        0        0         0      Target initStep
+    1    -2.43   -0.179 -2.44e+03         0    0.088  0.00547   0.00547      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 924,   Parent ID = 813
+* G4Track Information:   Particle = e-,   Track ID = 217,   Parent ID = 214
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -141     98.9      332   0.00105        0        0         0     Tracker initStep
-    1     -141     98.9      332         0  0.00105   0.0608    0.0608     Tracker eIoni
+    0    -2.43   -0.179 -2.44e+03     0.131        0        0         0      Target initStep
+    1    -2.43    -0.18 -2.44e+03         0    0.131   0.0419    0.0419      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 923,   Parent ID = 813
+* G4Track Information:   Particle = gamma,   Track ID = 213,   Parent ID = 188
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -137      107      328   0.00121        0        0         0     Tracker initStep
-    1     -137      107      328         0  0.00121   0.0753    0.0753     Tracker eIoni
+    0    -2.41   -0.546 -2.44e+03      2.35        0        0         0      Target initStep
+    1    -16.3    -1.62 -2.41e+03     0.259        0     27.5      27.5      Target compt
+    2    -15.9    0.285 -2.41e+03         0    0.088     3.06      30.6      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 812,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 219,   Parent ID = 213
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -154      113      238   0.00278        0        0         0     Tracker initStep
-    1     -154      113      238         0  0.00278    0.277     0.277     Tracker eIoni
+    0    -15.9    0.285 -2.41e+03     0.171        0        0         0      Target initStep
+    1    -15.9    0.289 -2.41e+03         0    0.171    0.064     0.064      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 811,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 218,   Parent ID = 213
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -189      113     88.2   0.00927        0        0         0     Chamber initStep
-    1     -189      113     88.2   0.00552        0  0.00922   0.00922     Chamber eIoni
-    2     -189      113     88.2         0  0.00552    0.461      0.47     Chamber eIoni
+    0    -16.3    -1.62 -2.41e+03      2.09        0        0         0      Target initStep
+    1    -16.4    -1.64 -2.41e+03         0     2.09     1.45      1.45      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 928,   Parent ID = 811
+* G4Track Information:   Particle = gamma,   Track ID = 212,   Parent ID = 188
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -189      113     88.2   0.00375        0        0         0     Chamber initStep
-    1     -189      113     88.1         0  0.00375    0.253     0.253     Chamber eIoni
+    0    -1.92    0.289 -2.44e+03      3.75        0        0         0      Target initStep
+    1    -6.04    -6.39 -2.43e+03         0        0     13.8      13.8      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 810,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 220,   Parent ID = 212
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -192      111     81.7   0.00162        0        0         0     Chamber initStep
-    1     -192      111     81.7         0  0.00162   0.0776    0.0776     Chamber eIoni
+    0    -6.04    -6.39 -2.43e+03      1.23        0        0         0      Target initStep
+    1     -6.1    -6.44 -2.43e+03     0.326     0.79    0.717     0.717      Target eBrem
+    2    -6.09    -6.44 -2.43e+03         0    0.326    0.168     0.885      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 809,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 222,   Parent ID = 220
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -199      106     55.6   0.00151        0        0         0     Chamber initStep
-    1     -199      106     55.6         0  0.00151   0.0708    0.0708     Chamber eIoni
+    0     -6.1    -6.44 -2.43e+03     0.115        0        0         0      Target initStep
+    1    -6.05    -6.44 -2.43e+03         0    0.088   0.0498    0.0498      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 808,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 223,   Parent ID = 222
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -195      106     35.5   0.00217        0        0         0     Chamber initStep
-    1     -195      106     35.5         0  0.00217    0.116     0.116     Chamber eIoni
+    0    -6.05    -6.44 -2.43e+03     0.027        0        0         0      Target initStep
+    1    -6.05    -6.44 -2.43e+03         0    0.027  0.00328   0.00328      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 807,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 211,   Parent ID = 188
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -196      110     13.4    0.0017        0        0         0     Chamber initStep
-    1     -196      110     13.4         0   0.0017   0.0834    0.0834     Chamber eIoni
+    0    -1.81    0.463 -2.44e+03      1.84        0        0         0      Target initStep
+    1    -2.76   -0.943 -2.43e+03     0.262        0     3.42      3.42      Target compt
+    2    -1.61     1.34 -2.44e+03     0.157        0     2.62      6.05      Target compt
+    3    -1.59     1.21 -2.44e+03         0    0.088    0.229      6.27      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 806,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 226,   Parent ID = 211
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -195      107  -0.0899   0.00221        0        0         0     Chamber initStep
-    1     -195      107  -0.0847         0  0.00221    0.119     0.119     Chamber eIoni
+    0    -1.59     1.21 -2.44e+03    0.0688        0        0         0      Target initStep
+    1    -1.59      1.2 -2.44e+03         0   0.0688    0.015     0.015      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 805,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 225,   Parent ID = 211
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -200      107    -32.2   0.00192        0        0         0     Chamber initStep
-    1     -200      107    -32.2         0  0.00192   0.0984    0.0984     Chamber eIoni
+    0    -1.61     1.34 -2.44e+03     0.105        0        0         0      Target initStep
+    1    -1.61     1.35 -2.44e+03         0    0.105   0.0297    0.0297      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 804,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 224,   Parent ID = 211
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -195      110    -52.8   0.00275        0        0         0     Chamber initStep
-    1     -195      110    -52.7         0  0.00275    0.161     0.161     Chamber eIoni
+    0    -2.76   -0.943 -2.43e+03      1.58        0        0         0      Target initStep
+    1    -2.79   -0.998 -2.43e+03     0.128     1.45     1.19      1.19      Target eIoni
+    2    -2.79   -0.999 -2.43e+03         0    0.128   0.0407      1.24      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 803,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 210,   Parent ID = 188
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -194      110    -55.9     0.288        0        0         0     Chamber initStep
-    1     -192      111    -54.2     0.284  0.00129     3.07      3.07     Chamber eIoni
-    2     -188      116    -51.6     0.281  0.00345     7.26      10.3     Chamber eIoni
-    3     -184      116    -52.1     0.277  0.00188     3.73      14.1     Chamber eIoni
-    4     -182      118    -53.2      0.27 0.000503     2.73      16.8     Chamber eIoni
-    5     -182      118    -53.4     0.267 0.000353    0.567      17.4     Chamber eIoni
-    6     -175      125    -72.7     0.241   0.0132     35.9      53.2     Chamber eIoni
-    7     -166      124    -73.4     0.154  0.00404       11      64.2     Chamber eIoni
-    8     -143      128    -80.4     0.131   0.0234     29.6      93.8     Chamber eIoni
-    9     -156      120    -84.1     0.113   0.0185     22.9       117     Chamber eIoni
-   10     -156      118    -85.2     0.109  0.00158     2.69       119     Chamber eIoni
-   11     -155      110      -85    0.0996  0.00577     9.34       129     Chamber eIoni
-   12     -152      112    -76.5    0.0858  0.00899     9.48       138     Chamber eIoni
-   13     -151      108    -67.4    0.0745   0.0113     11.9       150     Chamber eIoni
-   14     -145      110    -74.6    0.0616   0.0129     9.69       160     Chamber eIoni
-   15     -145      110    -71.6    0.0582  0.00343     3.41       163     Chamber eIoni
-   16     -144      112    -70.6    0.0482  0.00995     6.84       170     Chamber eIoni
-   17     -143      112    -69.7    0.0434  0.00327      1.8       172     Chamber eIoni
-   18     -144      112    -69.5    0.0375  0.00234     2.11       174     Chamber eIoni
-   19     -143      111    -69.8    0.0307  0.00684     3.98       178     Chamber eIoni
-   20     -143      111    -69.3    0.0252  0.00547     3.22       181     Chamber eIoni
-   21     -143      111    -69.3    0.0203 8.62e-05   0.0667       181     Chamber eIoni
-   22     -144      111    -69.3    0.0141  0.00483     1.34       183     Chamber eIoni
-   23     -144      111    -69.4    0.0122 0.000259    0.186       183     Chamber eIoni
-   24     -143      111    -69.5   0.00403  0.00813     1.47       184     Chamber eIoni
-   25     -143      111    -69.4         0  0.00403    0.281       185     Chamber eIoni
+    0    -1.58    0.595 -2.44e+03      5.48        0        0         0      Target initStep
+    1    -5.79    -0.62 -2.43e+03         0        0     8.36      8.36      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 942,   Parent ID = 803
+* G4Track Information:   Particle = e-,   Track ID = 227,   Parent ID = 210
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -144      111    -69.4   0.00163        0        0         0     Chamber initStep
-    1     -143      111    -69.4         0  0.00163   0.0786    0.0786     Chamber eIoni
+    0    -5.79    -0.62 -2.43e+03      3.43        0        0         0      Target initStep
+    1    -5.98   -0.675 -2.43e+03      1.51     1.92     1.87      1.87      Target eIoni
+    2     -5.9   -0.736 -2.43e+03         0     1.51     1.15      3.02      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 941,   Parent ID = 803
+* G4Track Information:   Particle = gamma,   Track ID = 209,   Parent ID = 188
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -144      111    -69.3   0.00145        0        0         0     Chamber initStep
-    1     -144      111    -69.3         0  0.00145   0.0672    0.0672     Chamber eIoni
+    0    -1.37    0.699 -2.44e+03      0.16        0        0         0      Target initStep
+    1    -1.45    0.692 -2.44e+03         0    0.088    0.189     0.189      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 940,   Parent ID = 803
+* G4Track Information:   Particle = e-,   Track ID = 229,   Parent ID = 209
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -143      111    -69.3   0.00481        0        0         0     Chamber initStep
-    1     -143      111    -69.3         0  0.00481     0.37      0.37     Chamber eIoni
+    0    -1.45    0.692 -2.44e+03    0.0719        0        0         0      Target initStep
+    1    -1.45    0.692 -2.44e+03         0   0.0719   0.0161    0.0161      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 939,   Parent ID = 803
+* G4Track Information:   Particle = gamma,   Track ID = 208,   Parent ID = 190
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -144      112    -69.5   0.00352        0        0         0     Chamber initStep
-    1     -144      112    -69.5         0  0.00352    0.229     0.229     Chamber eIoni
+    0   -0.351    0.615 -2.44e+03      2.78        0        0         0      Target initStep
+    1    -2.89    -8.05 -2.44e+03         0        0     9.38      9.38      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 938,   Parent ID = 803
+* G4Track Information:   Particle = e-,   Track ID = 230,   Parent ID = 208
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -143      112    -69.7   0.00154        0        0         0     Chamber initStep
-    1     -143      112    -69.7         0  0.00154   0.0729    0.0729     Chamber eIoni
+    0    -2.89    -8.05 -2.44e+03      1.01        0        0         0      Target initStep
+    1    -2.92    -8.09 -2.44e+03     0.503     0.34    0.303     0.303      Target eBrem
+    2    -2.93    -8.08 -2.44e+03         0    0.503    0.307     0.609      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 937,   Parent ID = 803
+* G4Track Information:   Particle = gamma,   Track ID = 232,   Parent ID = 230
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -152      112    -76.5    0.0048        0        0         0     Chamber initStep
-    1     -152      112    -76.5         0   0.0048    0.369     0.369     Chamber eIoni
+    0    -2.92    -8.09 -2.44e+03     0.164        0        0         0      Target initStep
+    1    -2.95    -8.07 -2.44e+03         0    0.088    0.118     0.118      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 936,   Parent ID = 803
+* G4Track Information:   Particle = e-,   Track ID = 233,   Parent ID = 232
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -155      110      -85    0.0036        0        0         0     Chamber initStep
-    1     -155      110      -85         0   0.0036    0.237     0.237     Chamber eIoni
+    0    -2.95    -8.07 -2.44e+03     0.076        0        0         0      Target initStep
+    1    -2.95    -8.07 -2.44e+03         0    0.076   0.0176    0.0176      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 935,   Parent ID = 803
+* G4Track Information:   Particle = gamma,   Track ID = 207,   Parent ID = 190
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -156      118    -85.2   0.00197        0        0         0     Chamber initStep
-    1     -156      118    -85.2         0  0.00197    0.102     0.102     Chamber eIoni
+    0   -0.588    0.405 -2.44e+03      1.85        0        0         0      Target initStep
+    1 -0.000595    0.912 -2.44e+03         0        0    0.777     0.777      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 934,   Parent ID = 803
+* G4Track Information:   Particle = e-,   Track ID = 234,   Parent ID = 207
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -166      124    -73.4    0.0828        0        0         0     Chamber initStep
-    1     -161      125    -71.5     0.077  0.00578     6.46      6.46     Chamber msc
-    2     -155      123      -71    0.0654   0.0116     8.54        15     Chamber msc
-    3     -156      124    -71.1    0.0637 0.000264    0.661      15.7     Chamber eIoni
-    4     -155      123    -76.7    0.0514   0.0107     7.38        23     Chamber eIoni
-    5     -153      124    -77.4    0.0437  0.00609     3.74      26.8     Chamber eIoni
-    6     -154      125    -77.6    0.0357  0.00806     4.75      31.5     Chamber eIoni
-    7     -153      124    -77.3    0.0277  0.00795     3.76      35.3     Chamber eIoni
-    8     -153      124    -76.8    0.0246  0.00157    0.937      36.2     Chamber eIoni
-    9     -153      124    -76.5    0.0167  0.00796     2.63      38.9     Chamber eIoni
-   10     -153      124    -76.4    0.0155  0.00118    0.365      39.2     Chamber eIoni
-   11     -153      125    -76.4   0.00772  0.00776     1.81        41     Chamber eIoni
-   12     -153      124    -76.4         0  0.00772    0.793      41.8     Chamber eIoni
+    0 -0.000595    0.912 -2.44e+03     0.388        0        0         0      Target initStep
+    1  0.00859    0.922 -2.44e+03         0    0.388    0.215     0.215      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 946,   Parent ID = 934
+* G4Track Information:   Particle = gamma,   Track ID = 206,   Parent ID = 190
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -153      124    -76.8   0.00152        0        0         0     Chamber initStep
-    1     -153      124    -76.8         0  0.00152   0.0715    0.0715     Chamber eIoni
+    0     -0.8    0.189 -2.44e+03      1.59        0        0         0      Target initStep
+    1     6.03     6.75 -2.43e+03     0.276        0     11.7      11.7      Target compt
+    2     5.89     4.79 -2.43e+03         0    0.088     1.97      13.7      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 945,   Parent ID = 934
+* G4Track Information:   Particle = e-,   Track ID = 237,   Parent ID = 206
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -153      124    -77.4   0.00159        0        0         0     Chamber initStep
-    1     -153      124    -77.5         0  0.00159   0.0762    0.0762     Chamber eIoni
+    0     5.89     4.79 -2.43e+03     0.188        0        0         0      Target initStep
+    1     5.89     4.79 -2.43e+03         0    0.188    0.074     0.074      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 944,   Parent ID = 934
+* G4Track Information:   Particle = e-,   Track ID = 236,   Parent ID = 206
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -155      123    -76.7    0.0016        0        0         0     Chamber initStep
-    1     -155      123    -76.7         0   0.0016   0.0763    0.0763     Chamber eIoni
+    0     6.03     6.75 -2.43e+03      1.32        0        0         0      Target initStep
+    1     6.07     6.81 -2.43e+03     0.575    0.635    0.642     0.642      Target eBrem
+    2      6.1      6.8 -2.43e+03         0    0.575    0.367      1.01      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 943,   Parent ID = 934
+* G4Track Information:   Particle = gamma,   Track ID = 238,   Parent ID = 236
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -156      124    -71.1   0.00151        0        0         0     Chamber initStep
-    1     -156      124    -71.1         0  0.00151    0.071     0.071     Chamber eIoni
+    0     6.07     6.81 -2.43e+03     0.107        0        0         0      Target initStep
+    1     6.21     6.76 -2.43e+03         0    0.088    0.165     0.165      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 933,   Parent ID = 803
+* G4Track Information:   Particle = e-,   Track ID = 239,   Parent ID = 238
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -175      125    -72.7     0.012        0        0         0     Chamber initStep
-    1     -175      126    -72.6    0.0088  0.00177    0.309     0.309     Chamber eIoni
-    2     -175      126    -72.6  0.000602   0.0082     0.91      1.22     Chamber eIoni
-    3     -175      126    -72.6         0 0.000602   0.0236      1.24     Chamber eIoni
+    0     6.21     6.76 -2.43e+03    0.0188        0        0         0      Target initStep
+    1     6.21     6.76 -2.43e+03         0   0.0188  0.00185   0.00185      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 947,   Parent ID = 933
+* G4Track Information:   Particle = gamma,   Track ID = 205,   Parent ID = 190
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -175      126    -72.6   0.00147        0        0         0     Chamber initStep
-    1     -175      126    -72.6         0  0.00147   0.0682    0.0682     Chamber eIoni
+    0   -0.753     0.23 -2.44e+03      6.58        0        0         0      Target initStep
+    1    -2.14    -2.21 -2.43e+03         0        0     12.1      12.1      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 932,   Parent ID = 803
+* G4Track Information:   Particle = e-,   Track ID = 240,   Parent ID = 205
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -182      118    -53.4   0.00268        0        0         0     Chamber initStep
-    1     -182      118    -53.4         0  0.00268    0.156     0.156     Chamber eIoni
+    0    -2.14    -2.21 -2.43e+03      3.34        0        0         0      Target initStep
+    1    -2.16    -2.34 -2.43e+03      1.47     1.74     1.77      1.77      Target eBrem
+    2    -2.17    -2.39 -2.43e+03     0.165      1.3     1.12       2.9      Target eIoni
+    3    -2.18    -2.38 -2.43e+03         0    0.165   0.0605      2.96      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 931,   Parent ID = 803
+* G4Track Information:   Particle = gamma,   Track ID = 242,   Parent ID = 240
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -182      118    -53.2   0.00694        0        0         0     Chamber initStep
-    1     -182      118    -53.2   0.00236  0.00291    0.286     0.286     Chamber eIoni
-    2     -182      118    -53.1         0  0.00236     0.13     0.416     Chamber eIoni
+    0    -2.16    -2.34 -2.43e+03     0.131        0        0         0      Target initStep
+    1    -2.53     -2.8 -2.43e+03         0    0.088     1.12      1.12      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 948,   Parent ID = 931
+* G4Track Information:   Particle = e-,   Track ID = 243,   Parent ID = 242
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -182      118    -53.2   0.00168        0        0         0     Chamber initStep
-    1     -182      118    -53.2         0  0.00168   0.0819    0.0819     Chamber eIoni
+    0    -2.53     -2.8 -2.43e+03    0.0434        0        0         0      Target initStep
+    1    -2.53     -2.8 -2.43e+03         0   0.0434  0.00708   0.00708      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 930,   Parent ID = 803
+* G4Track Information:   Particle = gamma,   Track ID = 204,   Parent ID = 119
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -184      116    -52.1    0.0018        0        0         0     Chamber initStep
-    1     -184      116    -52.1         0   0.0018   0.0903    0.0903     Chamber eIoni
+    0     5.87     10.3 -2.43e+03     0.511        0        0         0      Target initStep
+    1     6.46     10.6 -2.43e+03         0    0.088    0.815     0.815      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 929,   Parent ID = 803
+* G4Track Information:   Particle = e-,   Track ID = 244,   Parent ID = 204
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -192      111    -54.2   0.00212        0        0         0     Chamber initStep
-    1     -192      111    -54.2         0  0.00212    0.113     0.113     Chamber eIoni
+    0     6.46     10.6 -2.43e+03     0.423        0        0         0      Target initStep
+    1     6.48     10.6 -2.43e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 802,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 203,   Parent ID = 119
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -194      110      -61   0.00164        0        0         0     Chamber initStep
-    1     -194      110      -61         0  0.00164   0.0793    0.0793     Chamber eIoni
+    0     5.87     10.3 -2.43e+03     0.511        0        0         0      Target initStep
+    1     5.04     9.81 -2.43e+03         0    0.088     1.13      1.13      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 801,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 245,   Parent ID = 203
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -193      109    -65.1   0.00957        0        0         0     Chamber initStep
-    1     -193      109    -65.1         0  0.00957     1.12      1.12     Chamber eIoni
+    0     5.04     9.81 -2.43e+03     0.423        0        0         0      Target initStep
+    1     5.03      9.8 -2.43e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 800,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 202,   Parent ID = 119
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -187      111    -93.5   0.00142        0        0         0     Chamber initStep
-    1     -187      111    -93.5         0  0.00142   0.0653    0.0653     Chamber eIoni
+    0     5.91     10.3 -2.43e+03     0.197        0        0         0      Target initStep
+    1     5.71     10.2 -2.43e+03         0    0.088    0.207     0.207      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 799,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 246,   Parent ID = 202
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -174      102     -140  0.000999        0        0         0     Tracker initStep
-    1     -174      102     -140         0 0.000999    0.057     0.057     Tracker eIoni
+    0     5.71     10.2 -2.43e+03     0.109        0        0         0      Target initStep
+    1      5.7     10.2 -2.43e+03         0    0.109   0.0313    0.0313      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 798,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 201,   Parent ID = 145
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -164       98     -178   0.00235        0        0         0     Tracker initStep
-    1     -164     97.9     -178         0  0.00235    0.209     0.209     Tracker eIoni
+    0   -0.118    0.519 -2.44e+03     0.511        0        0         0      Target initStep
+    1     2.21   -0.531 -2.45e+03     0.511        0      9.9       9.9       World Transportation
+    2      122    -54.3 -2.94e+03     0.511        0      507       517  OutOfWorld Transportation
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 797,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 200,   Parent ID = 145
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -153     92.5     -225   0.00123        0        0         0     Tracker initStep
-    1     -153     92.5     -225         0  0.00123   0.0774    0.0774     Tracker eIoni
+    0   -0.118    0.519 -2.44e+03     0.511        0        0         0      Target initStep
+    1   -0.279    0.591 -2.44e+03     0.443        0    0.684     0.684      Target compt
+    2    -1.33    0.471 -2.44e+03         0    0.088     1.52       2.2      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 796,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 248,   Parent ID = 200
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -146     87.4     -254   0.00108        0        0         0     Tracker initStep
-    1     -146     87.4     -254         0  0.00108   0.0641    0.0641     Tracker eIoni
+    0    -1.33    0.471 -2.44e+03     0.355        0        0         0      Target initStep
+    1    -1.34    0.462 -2.44e+03         0    0.355     0.19      0.19      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 795,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 247,   Parent ID = 200
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -143     85.3     -267   0.00398        0        0         0     Tracker initStep
-    1     -143     85.5     -267         0  0.00398    0.512     0.512     Tracker eIoni
+    0   -0.279    0.591 -2.44e+03    0.0679        0        0         0      Target initStep
+    1   -0.278    0.592 -2.44e+03         0   0.0679   0.0147    0.0147      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 794,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 199,   Parent ID = 165
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -141     84.1     -274   0.00202        0        0         0     Tracker initStep
-    1     -141     84.1     -274         0  0.00202    0.164     0.164     Tracker eIoni
+    0    -15.3     9.81 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -17.6     10.3 -2.44e+03         0    0.088     3.88      3.88      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 793,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 249,   Parent ID = 199
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -128     75.7     -332   0.00125        0        0         0     Tracker initStep
-    1     -128     75.8     -332         0  0.00125   0.0791    0.0791     Tracker eIoni
+    0    -17.6     10.3 -2.44e+03     0.423        0        0         0      Target initStep
+    1    -17.6     10.3 -2.44e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 792,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 198,   Parent ID = 165
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -127     75.3     -336   0.00383        0        0         0     Tracker initStep
-    1     -127     75.1     -336         0  0.00383    0.481     0.481     Tracker eIoni
+    0    -15.3     9.81 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -13.2     9.37 -2.43e+03         0    0.088     3.64      3.64      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 791,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 250,   Parent ID = 198
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -119     72.3     -369    0.0142        0        0         0     Tracker initStep
-    1     -118       72     -369    0.0107  0.00346     2.45      2.45     Tracker eIoni
-    2     -118     71.9     -368   0.00891 0.000319     0.17      2.62     Tracker eIoni
-    3     -117     71.5     -368   0.00461   0.0043     1.66      4.29     Tracker eIoni
-    4     -117     71.6     -367         0  0.00461    0.663      4.95     Tracker eIoni
+    0    -13.2     9.37 -2.43e+03     0.423        0        0         0      Target initStep
+    1    -13.2     9.37 -2.43e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 949,   Parent ID = 791
+* G4Track Information:   Particle = gamma,   Track ID = 197,   Parent ID = 189
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     -118     71.9     -368   0.00149        0        0         0     Tracker initStep
-    1     -118     71.9     -368         0  0.00149    0.103     0.103     Tracker eIoni
+    0     -1.2    0.551 -2.44e+03     0.511        0        0         0      Target initStep
+    1     -1.2    0.566 -2.44e+03         0    0.088    0.019     0.019      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 790,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 251,   Parent ID = 197
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -80.9     53.9     -479     0.005        0        0         0     Tracker initStep
-    1    -80.6       54     -478         0    0.005    0.766     0.766     Tracker eIoni
+    0     -1.2    0.566 -2.44e+03     0.423        0        0         0      Target initStep
+    1    -1.21    0.576 -2.44e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 789,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 196,   Parent ID = 189
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -76.9     50.6     -493   0.00292        0        0         0     Tracker initStep
-    1    -76.9     50.7     -493         0  0.00292      0.3       0.3     Tracker eIoni
+    0     -1.2    0.551 -2.44e+03     0.511        0        0         0      Target initStep
+    1   -0.307    -2.67 -2.44e+03     0.386        0     4.11      4.11      Target compt
+    2     1.64     -3.1 -2.44e+03         0    0.088     2.72      6.83      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 788,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 253,   Parent ID = 196
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -60.6     35.1     -553   0.00117        0        0         0     Tracker initStep
-    1    -60.6     35.1     -553         0  0.00117   0.0719    0.0719     Tracker eIoni
+    0     1.64     -3.1 -2.44e+03     0.298        0        0         0      Target initStep
+    1     1.64     -3.1 -2.44e+03         0    0.298    0.148     0.148      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 787,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 252,   Parent ID = 196
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -53.1     28.4     -575   0.00112        0        0         0     Tracker initStep
-    1    -53.1     28.4     -575         0  0.00112   0.0669    0.0669     Tracker eIoni
+    0   -0.307    -2.67 -2.44e+03     0.125        0        0         0      Target initStep
+    1   -0.308    -2.67 -2.44e+03         0    0.125    0.039     0.039      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 786,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 195,   Parent ID = 189
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -20.8     6.49     -668     0.075        0        0         0     Tracker initStep
-    1    -40.6     12.5     -674    0.0652  0.00986     22.6      22.6     Tracker eIoni
-    2    -50.4     26.8     -672    0.0569  0.00825     17.9      40.5     Tracker eIoni
-    3    -50.8     29.8     -668    0.0522  0.00178     5.42      45.9     Tracker eIoni
-    4    -50.3     30.5     -666      0.05  0.00211     2.35      48.3     Tracker eIoni
-    5    -48.7     30.8     -656    0.0392  0.00565     10.1      58.4     Tracker eIoni
-    6    -46.3       30     -649    0.0359  0.00331     8.08      66.5     Tracker eIoni
-    7    -46.1     27.9     -646    0.0311  0.00373      4.3      70.8     Tracker eIoni
-    8    -47.5     27.3     -642    0.0266  0.00446     5.82      76.6     Tracker eIoni
-    9    -49.3     25.4     -639     0.022  0.00465     4.76      81.4     Tracker eIoni
-   10    -48.5     24.2     -636    0.0157  0.00425     3.73      85.1     Tracker eIoni
-   11    -49.6     22.7     -636    0.0103  0.00533     2.68      87.8     Tracker eIoni
-   12    -50.2     23.2     -637   0.00502  0.00531     1.88      89.7     Tracker eIoni
-   13    -50.1       23     -637         0  0.00502    0.772      90.4     Tracker eIoni
+    0    -1.15    0.455 -2.44e+03      6.03        0        0         0      Target initStep
+    1     -1.4      1.2 -2.44e+03         0        0      1.7       1.7      Target conv
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 953,   Parent ID = 786
+* G4Track Information:   Particle = e-,   Track ID = 254,   Parent ID = 195
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -48.5     24.2     -636   0.00205        0        0         0     Tracker initStep
-    1    -48.4     24.1     -636         0  0.00205    0.168     0.168     Tracker eIoni
+    0     -1.4      1.2 -2.44e+03      1.87        0        0         0      Target initStep
+    1    -1.44     1.26 -2.44e+03      0.28     1.59     1.36      1.36      Target eIoni
+    2    -1.45     1.27 -2.44e+03         0     0.28    0.135      1.49      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 952,   Parent ID = 786
+* G4Track Information:   Particle = gamma,   Track ID = 194,   Parent ID = 191
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -46.1     27.9     -646   0.00108        0        0         0     Tracker initStep
-    1    -46.1     27.9     -646         0  0.00108   0.0635    0.0635     Tracker eIoni
+    0   -0.664    0.463 -2.44e+03     0.511        0        0         0      Target initStep
+    1    -1.49    -0.81 -2.44e+03         0    0.088     2.17      2.17      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 951,   Parent ID = 786
+* G4Track Information:   Particle = e-,   Track ID = 256,   Parent ID = 194
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -48.7     30.8     -656   0.00523        0        0         0     Tracker initStep
-    1      -49     30.6     -656         0  0.00523    0.829     0.829     Tracker eIoni
+    0    -1.49    -0.81 -2.44e+03     0.423        0        0         0      Target initStep
+    1     -1.5    -0.82 -2.44e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 950,   Parent ID = 786
+* G4Track Information:   Particle = gamma,   Track ID = 193,   Parent ID = 191
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -50.8     29.8     -668   0.00298        0        0         0     Tracker initStep
-    1    -50.9     29.7     -668         0  0.00298    0.311     0.311     Tracker eIoni
+    0   -0.664    0.463 -2.44e+03     0.511        0        0         0      Target initStep
+    1   -0.371    0.913 -2.44e+03     0.184        0    0.765     0.765      Target compt
+    2   -0.425    0.888 -2.44e+03         0    0.088   0.0622     0.827      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 785,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 258,   Parent ID = 193
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -17.2     4.78     -677   0.00162        0        0         0     Tracker initStep
-    1    -17.2     4.83     -677         0  0.00162    0.117     0.117     Tracker eIoni
+    0   -0.425    0.888 -2.44e+03    0.0956        0        0         0      Target initStep
+    1   -0.426    0.889 -2.44e+03         0   0.0956   0.0255    0.0255      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 784,   Parent ID = 782
+* G4Track Information:   Particle = e-,   Track ID = 257,   Parent ID = 193
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -0.96    0.739     -716   0.00228        0        0         0     Chamber initStep
-    1   -0.951    0.727     -716         0  0.00228    0.124     0.124     Chamber eIoni
+    0   -0.371    0.913 -2.44e+03     0.327        0        0         0      Target initStep
+    1   -0.365    0.919 -2.44e+03         0    0.327    0.169     0.169      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 783,   Parent ID = 782
+* G4Track Information:   Particle = gamma,   Track ID = 192,   Parent ID = 191
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.32   -0.186     -725   0.00224        0        0         0     Chamber initStep
-    1     2.33   -0.199     -725         0  0.00224    0.121     0.121     Chamber eIoni
+    0   -0.794    0.241 -2.44e+03      1.68        0        0         0      Target initStep
+    1     1.96     5.93 -2.44e+03     0.449        0     6.35      6.35      Target compt
+    2     1.62     6.19 -2.44e+03         0    0.088    0.898      7.24      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 821,   Parent ID = 782
+* G4Track Information:   Particle = e+,   Track ID = 255,   Parent ID = 195
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      159      389      718     0.128        0        0         0     Chamber initStep
-    1      189      455      700     0.128        0     73.9      73.9     Tracker Transportation
-    2      972 2.19e+03      229     0.128        0 1.96e+03  2.04e+03       World Transportation
-    3 1.31e+03 2.94e+03     27.8     0.128        0      842  2.88e+03  OutOfWorld Transportation
+    0     -1.4      1.2 -2.44e+03      3.13        0        0         0      Target initStep
+    1     -1.4     1.25 -2.44e+03      2.34    0.129    0.123     0.123      Target eBrem
+    2    -1.62      1.4 -2.44e+03     0.617     1.72     1.57       1.7      Target eIoni
+    3    -1.66      1.4 -2.44e+03         0    0.617    0.401       2.1      Target eIoni
+    4    -1.66      1.4 -2.44e+03         0        0        0       2.1      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 122,   Parent ID = 6
+* G4Track Information:   Particle = e+,   Track ID = 241,   Parent ID = 205
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00251 0.000577 -2.41e+03  1.86e+03        0        0         0      Target initStep
-    1  0.00608  0.00688 -2.4e+03  1.86e+03        0      9.1       9.1     Tracker Transportation
-    2     0.28    0.492 -1.7e+03  1.86e+03        0      700       709     Chamber Transportation
-    3    0.359     0.63 -1.5e+03  1.86e+03        0      200       909     Tracker Transportation
-    4    0.594     1.05     -900  1.86e+03        0      600  1.51e+03     Chamber Transportation
-    5    0.672     1.18     -700  1.86e+03        0      200  1.71e+03     Tracker Transportation
-    6    0.907      1.6     -100  1.86e+03        0      600  2.31e+03     Chamber Transportation
-    7    0.986     1.74      100  1.86e+03        0      200  2.51e+03     Tracker Transportation
-    8     1.22     2.15      700  1.86e+03        0      600  3.11e+03     Chamber Transportation
-    9      1.3     2.29      900  1.86e+03        0      200  3.31e+03     Tracker Transportation
-   10     1.53     2.71  1.5e+03  1.86e+03        0      600  3.91e+03     Chamber Transportation
-   11     1.61     2.85  1.7e+03  1.86e+03        0      200  4.11e+03     Tracker Transportation
-   12     1.89     3.33  2.4e+03  1.86e+03        0      700  4.81e+03       World Transportation
-   13      2.1     3.71 2.94e+03  1.86e+03        0      540  5.35e+03  OutOfWorld Transportation
+    0    -2.14    -2.21 -2.43e+03      2.22        0        0         0      Target initStep
+    1    -2.17    -2.21 -2.43e+03      1.83    0.174    0.214     0.214      Target eBrem
+    2    -2.16    -2.18 -2.43e+03     0.654    0.331    0.351     0.565      Target eBrem
+    3    -2.17    -2.16 -2.43e+03         0    0.654    0.433     0.998      Target eIoni
+    4    -2.17    -2.16 -2.43e+03         0        0        0     0.998      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 718,   Parent ID = 716
+* G4Track Information:   Particle = e+,   Track ID = 235,   Parent ID = 207
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -12    -20.8 -2.45e+03     0.262        0        0         0      Target initStep
-    1      -12    -20.8 -2.45e+03         0    0.262    0.118     0.118      Target eIoni
-    2      -12    -20.8 -2.45e+03         0        0        0     0.118      Target annihil
+    0 -0.000595    0.912 -2.44e+03     0.438        0        0         0      Target initStep
+    1   0.0198    0.925 -2.44e+03         0    0.438    0.252     0.252      Target eIoni
+    2   0.0198    0.925 -2.44e+03         0        0        0     0.252      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 710,   Parent ID = 128
+* G4Track Information:   Particle = e+,   Track ID = 231,   Parent ID = 208
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00696 -0.000979 -2.41e+03      28.4        0        0         0      Target initStep
-    1  -0.0205   -0.138 -2.41e+03      26.2    0.928    0.743     0.743      Target eBrem
-    2   -0.594   -0.329 -2.4e+03      21.2     3.49     2.42      3.16      Target eBrem
-    3     0.31   -0.692 -2.4e+03      11.5     2.24     1.67      4.84      Target eBrem
-    4     0.98   -0.355 -2.4e+03      2.49     2.32     1.71      6.55      Target eBrem
-    5     1.18   -0.222 -2.4e+03       1.1     1.19    0.533      7.08      Target eBrem
-    6     1.27   -0.233 -2.4e+03         0      1.1     0.83      7.91      Target eIoni
-    7     1.27   -0.233 -2.4e+03         0        0        0      7.91      Target annihil
+    0    -2.89    -8.05 -2.44e+03     0.753        0        0         0      Target initStep
+    1    -2.89    -8.11 -2.44e+03         0    0.753    0.519     0.519      Target eIoni
+    2    -2.89    -8.11 -2.44e+03         0        0        0     0.519      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 615,   Parent ID = 132
+* G4Track Information:   Particle = e+,   Track ID = 228,   Parent ID = 210
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00866   0.0132 -2.4e+03       102        0        0         0      Target initStep
-    1  0.00917   0.0115 -2.4e+03      99.5    0.244    0.224     0.224      Target eBrem
-    2 -0.00154 -0.00729 -2.4e+03      93.7    0.459    0.352     0.576      Target eBrem
-    3  -0.0268  0.00908 -2.4e+03        93    0.449    0.396     0.972      Target eBrem
-    4   -0.022   0.0123 -2.4e+03      92.9   0.0552   0.0538      1.03     Tracker Transportation
-    5     4.35     1.64 -2.37e+03      92.9   0.0073     35.1      36.1     Tracker eIoni
-    6     13.9     5.45 -2.29e+03      92.9   0.0125     77.5       114     Tracker eIoni
-    7     21.4     8.36 -2.23e+03      92.9  0.00921     59.9       174     Tracker eIoni
-    8     33.3     12.7 -2.13e+03      92.9   0.0199     96.2       270     Tracker eIoni
-    9     45.5     17.4 -2.03e+03      92.9   0.0217      100       370     Tracker StepLimiter
-   10     56.1     21.4 -1.95e+03      92.8   0.0182     88.1       458     Tracker eIoni
-   11     68.1       26 -1.85e+03      92.8   0.0206      100       558     Tracker StepLimiter
-   12     79.9     30.2 -1.75e+03      92.8   0.0206      100       658     Tracker StepLimiter
-   13     85.7     32.4 -1.7e+03      92.8  0.00871     49.3       707     Chamber Transportation
-   14     85.8     32.5 -1.7e+03      92.8  0.00239     1.55       709     Chamber eIoni
-   15     92.5       35 -1.64e+03      92.7   0.0338     61.7       770     Chamber eIoni
-   16     92.6       35 -1.64e+03      92.7 0.000123    0.564       771     Chamber eIoni
-   17     95.9       36 -1.61e+03      92.7   0.0196     27.4       798     Chamber eIoni
-   18     98.9     36.9 -1.58e+03      92.7   0.0129     27.7       826     Chamber eIoni
-   19      102       38 -1.56e+03      92.6   0.0183     26.8       853     Chamber eIoni
-   20      102     38.1 -1.55e+03      92.6 0.000507     2.12       855     Chamber eIoni
-   21      103     38.4 -1.54e+03      92.6  0.00446     8.44       863     Chamber eIoni
-   22      108     39.8 -1.5e+03      92.6   0.0393     41.9       905     Chamber eIoni
-   23      108     39.9 -1.5e+03      92.6  0.00184      3.2       908     Tracker Transportation
-   24      114     41.3 -1.44e+03      92.6  0.00919     57.4       966     Tracker eIoni
-   25      118     42.3 -1.4e+03      92.6  0.00597     39.8  1.01e+03     Tracker eIoni
-   26      119     42.5 -1.39e+03      92.6 0.000496     8.42  1.01e+03     Tracker eIoni
-   27      123     43.6 -1.36e+03      92.6  0.00672     38.4  1.05e+03     Tracker eIoni
-   28      133     46.3 -1.26e+03      92.6   0.0161      100  1.15e+03     Tracker StepLimiter
-   29      140     48.1 -1.19e+03      92.5   0.0114     70.5  1.22e+03     Tracker eIoni
-   30      148     50.4 -1.1e+03      92.5   0.0134     88.5  1.31e+03     Tracker eIoni
-   31      151     51.1 -1.07e+03      92.5  0.00389     24.9  1.34e+03     Tracker eIoni
-   32      153     51.6 -1.05e+03      92.5  0.00596     19.5  1.36e+03     Tracker eIoni
-   33      155     52.3 -1.03e+03      92.5  0.00731     25.6  1.38e+03     Tracker eIoni
-   34      160     53.5     -984      92.5  0.00812     45.9  1.43e+03     Tracker eIoni
-   35      168     55.8     -900      92.5   0.0151       84  1.51e+03     Chamber Transportation
-   36      170     56.5     -876      92.5   0.0101     24.1  1.54e+03     Chamber eIoni
-   37      178     59.7     -790      92.4     0.05     86.8  1.62e+03     Chamber eIoni
-   38      179       60     -771      92.4  0.00809     18.2  1.64e+03     Chamber eIoni
-   39      183     60.2     -717      92.4   0.0227     54.6   1.7e+03     Chamber eIoni
-   40      183     60.2     -715      92.4  0.00126      2.2   1.7e+03     Chamber eIoni
-   41      184     60.2     -700      92.3  0.00549     14.8  1.71e+03     Tracker Transportation
-   42      185     60.3     -680      92.3  0.00307     20.2  1.73e+03     Tracker eIoni
-   43      191     60.4     -580      92.3   0.0182      100  1.83e+03     Tracker StepLimiter
-   44      193     60.4     -543      92.3  0.00673     36.9  1.87e+03     Tracker eIoni
-   45      199     60.5     -443      92.3   0.0169      100  1.97e+03     Tracker StepLimiter
-   46      205       61     -344      92.3   0.0208      100  2.07e+03     Tracker StepLimiter
-   47      207     61.1     -304      92.3  0.00588     39.1  2.11e+03     Tracker eIoni
-   48      213     61.3     -205      92.2   0.0191      100  2.21e+03     Tracker StepLimiter
-   49      213     61.3     -204      92.2 0.000206    0.739  2.21e+03     Tracker eIoni
-   50      217     61.6     -145      92.2  0.00893     58.7  2.27e+03     Tracker eIoni
-   51      219     61.7     -110      92.2  0.00489       35   2.3e+03     Tracker eIoni
-   52      219     61.7     -100      92.2  0.00207     10.3  2.31e+03     Chamber Transportation
-   53      224     62.4    -23.3      92.2   0.0327     76.8  2.39e+03     Chamber eIoni
-   54      225     62.6     2.42      92.2   0.0133     25.8  2.42e+03     Chamber eIoni
-   55      226     62.8     19.3      92.2  0.00912     16.9  2.43e+03     Chamber eIoni
-   56      226     62.8     23.6      92.2  0.00319      4.3  2.44e+03     Chamber eIoni
-   57      229     63.5      100      92.1   0.0484     76.5  2.51e+03     Tracker Transportation
-   58      231     64.2      142      92.1   0.0084     42.2  2.56e+03     Tracker eIoni
-   59      236     65.8      242      92.1   0.0195      100  2.66e+03     Tracker StepLimiter
-   60      236     65.9      248      92.1  0.00114     5.57  2.66e+03     Tracker eIoni
-   61      240     67.2      348        92   0.0194      100  2.76e+03     Tracker StepLimiter
-   62      244     68.7      447        92   0.0166      100  2.86e+03     Tracker StepLimiter
-   63      249     70.1      547        92   0.0203      100  2.96e+03     Tracker StepLimiter
-   64      250     70.5      574        92  0.00442     26.3  2.99e+03     Tracker eIoni
-   65      254     71.5      674        92   0.0197      100  3.09e+03     Tracker StepLimiter
-   66      255     71.8      700        92  0.00434     26.5  3.11e+03     Chamber Transportation
-   67      255     71.8      702      91.9  0.00075      1.8  3.12e+03     Chamber eIoni
-   68      256     71.8      705      91.9  0.00152     3.32  3.12e+03     Chamber eBrem
-   69      265     74.7      900      91.8    0.109      195  3.31e+03     Tracker Transportation
-   70      265       75      911      91.8  0.00193     10.5  3.33e+03     Tracker eIoni
-   71      268     76.8      969      91.8    0.014     58.5  3.38e+03     Tracker eIoni
-   72      268       77      976      91.8  0.00108     7.11  3.39e+03     Tracker eIoni
-   73      272     78.7 1.04e+03      91.8   0.0133     61.6  3.45e+03     Tracker eIoni
-   74      276     81.3 1.14e+03      91.8   0.0173      100  3.55e+03     Tracker StepLimiter
-   75      282     83.5 1.24e+03      91.8   0.0165      100  3.65e+03     Tracker StepLimiter
-   76      287     85.9 1.34e+03      91.7     0.02      100  3.75e+03     Tracker StepLimiter
-   77      288     86.2 1.35e+03      91.7  0.00302     12.7  3.77e+03     Tracker eIoni
-   78      289       87 1.38e+03      91.7  0.00635     30.2   3.8e+03     Tracker eIoni
-   79      294       89 1.46e+03      91.7   0.0171     79.1  3.87e+03     Tracker eIoni
-   80      296       90  1.5e+03      91.7   0.0076     41.2  3.92e+03     Chamber Transportation
-   81      298     90.6 1.54e+03      91.7   0.0164     38.3  3.95e+03     Chamber eIoni
-   82      305     92.9 1.66e+03      91.6   0.0605      120  4.07e+03     Chamber eIoni
-   83      307     93.8 1.69e+03      91.6   0.0136     27.1   4.1e+03     Chamber eIoni
-   84      308     94.4  1.7e+03      91.6   0.0106     14.8  4.12e+03     Tracker Transportation
-   85      315     99.2  1.8e+03      91.6     0.02      100  4.22e+03     Tracker StepLimiter
-   86      322      104  1.9e+03      91.5   0.0182      100  4.32e+03     Tracker StepLimiter
-   87      322      104 1.91e+03      91.5  0.00092     7.51  4.32e+03     Tracker eIoni
-   88      329      108 2.01e+03      91.5   0.0211      100  4.42e+03     Tracker StepLimiter
-   89      333      111 2.06e+03      91.5  0.00762     52.9  4.48e+03     Tracker eIoni
-   90      334      112 2.08e+03      91.5  0.00404     19.8   4.5e+03     Tracker eIoni
-   91      341      116 2.18e+03      91.5   0.0196      100   4.6e+03     Tracker StepLimiter
-   92      348      120 2.28e+03      91.5   0.0182      100   4.7e+03     Tracker StepLimiter
-   93      355      124 2.38e+03      91.5    0.022      100   4.8e+03     Tracker StepLimiter
-   94      356      124  2.4e+03      91.4  0.00441     22.1  4.82e+03       World Transportation
-   95      363      128 2.49e+03      91.4    0.014     90.8  4.91e+03       World eIoni
-   96      365      129 2.53e+03      91.4  0.00692     35.7  4.94e+03       World eIoni
-   97      373      133 2.63e+03      91.4   0.0213      107  5.05e+03       World eIoni
-   98      395      145 2.94e+03      91.3   0.0646      308  5.36e+03  OutOfWorld Transportation
+    0    -5.79    -0.62 -2.43e+03      1.03        0        0         0      Target initStep
+    1    -5.84   -0.632 -2.43e+03         0     1.03    0.766     0.766      Target eIoni
+    2    -5.84   -0.632 -2.43e+03         0        0        0     0.766      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1025,   Parent ID = 615
+* G4Track Information:   Particle = e+,   Track ID = 221,   Parent ID = 212
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      373      133 2.63e+03   0.00142        0        0         0       World initStep
-    1      373      133 2.63e+03         0  0.00142   0.0954    0.0954       World eIoni
+    0    -6.04    -6.39 -2.43e+03       1.5        0        0         0      Target initStep
+    1       -6     -6.4 -2.43e+03         0      1.5     1.16      1.16      Target eIoni
+    2       -6     -6.4 -2.43e+03         0        0        0      1.16      Target annihil
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1024,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 260,   Parent ID = 192
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      365      129 2.53e+03   0.00157        0        0         0       World initStep
-    1      365      129 2.53e+03         0  0.00157    0.111     0.111       World eIoni
+    0     1.62     6.19 -2.44e+03     0.361        0        0         0      Target initStep
+    1     1.62     6.19 -2.44e+03         0    0.361    0.194     0.194      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1023,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 259,   Parent ID = 192
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      363      128 2.49e+03   0.00258        0        0         0       World initStep
-    1      363      128 2.49e+03         0  0.00258    0.244     0.244       World eIoni
+    0     1.96     5.93 -2.44e+03      1.23        0        0         0      Target initStep
+    1        2        6 -2.44e+03         0     1.23     0.93      0.93      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1022,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 275,   Parent ID = 221
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      334      112 2.08e+03    0.0013        0        0         0     Tracker initStep
-    1      334      112 2.08e+03         0   0.0013   0.0835    0.0835     Tracker eIoni
+    0       -6     -6.4 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -7.36    -6.66 -2.43e+03     0.386        0     1.51      1.51      Target compt
+    2    -15.1    -8.61 -2.42e+03     0.216        0     8.62      10.1      Target compt
+    3    -15.1     -8.6 -2.42e+03         0    0.088   0.0365      10.2      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1021,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 278,   Parent ID = 275
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      333      111 2.06e+03   0.00148        0        0         0     Tracker initStep
-    1      333      111 2.06e+03         0  0.00148    0.101     0.101     Tracker eIoni
+    0    -15.1     -8.6 -2.42e+03     0.128        0        0         0      Target initStep
+    1    -15.1     -8.6 -2.42e+03         0    0.128   0.0407    0.0407      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1020,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 277,   Parent ID = 275
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      322      104 1.91e+03   0.00114        0        0         0     Tracker initStep
-    1      322      104 1.91e+03         0  0.00114   0.0693    0.0693     Tracker eIoni
+    0    -15.1    -8.61 -2.42e+03      0.17        0        0         0      Target initStep
+    1    -15.1    -8.61 -2.42e+03         0     0.17   0.0634    0.0634      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1019,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 276,   Parent ID = 275
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      307     93.8 1.69e+03   0.00143        0        0         0     Chamber initStep
-    1      307     93.8 1.69e+03         0  0.00143   0.0656    0.0656     Chamber eIoni
+    0    -7.36    -6.66 -2.43e+03     0.125        0        0         0      Target initStep
+    1    -7.36    -6.66 -2.43e+03         0    0.125   0.0391    0.0391      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1018,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 274,   Parent ID = 221
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      305     92.9 1.66e+03   0.00184        0        0         0     Chamber initStep
-    1      305     92.9 1.66e+03         0  0.00184   0.0927    0.0927     Chamber eIoni
+    0       -6     -6.4 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -1.57    -5.55 -2.42e+03         0    0.088     4.96      4.96      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1017,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 279,   Parent ID = 274
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      298     90.6 1.54e+03   0.00268        0        0         0     Chamber initStep
-    1      298     90.6 1.54e+03         0  0.00268    0.155     0.155     Chamber eIoni
+    0    -1.57    -5.55 -2.42e+03     0.423        0        0         0      Target initStep
+    1    -1.55    -5.56 -2.42e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1016,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 273,   Parent ID = 228
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      294       89 1.46e+03    0.0015        0        0         0     Tracker initStep
-    1      294     88.9 1.46e+03         0   0.0015    0.104     0.104     Tracker eIoni
+    0    -5.84   -0.632 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -5.94    -2.26 -2.43e+03     0.269        0     1.98      1.98      Target compt
+    2     -6.3     -2.6 -2.43e+03      0.15        0    0.648      2.63      Target compt
+    3    -6.34     -2.6 -2.43e+03         0    0.088    0.172       2.8      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1015,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 282,   Parent ID = 273
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      289       87 1.38e+03   0.00115        0        0         0     Tracker initStep
-    1      289       87 1.38e+03         0  0.00115   0.0695    0.0695     Tracker eIoni
+    0    -6.34     -2.6 -2.43e+03    0.0622        0        0         0      Target initStep
+    1    -6.34     -2.6 -2.43e+03         0   0.0622   0.0127    0.0127      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1014,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 281,   Parent ID = 273
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      288     86.2 1.35e+03   0.00175        0        0         0     Tracker initStep
-    1      288     86.3 1.35e+03         0  0.00175    0.131     0.131     Tracker eIoni
+    0     -6.3     -2.6 -2.43e+03     0.119        0        0         0      Target initStep
+    1     -6.3     -2.6 -2.43e+03         0    0.119    0.036     0.036      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1013,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 280,   Parent ID = 273
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      272     78.7 1.04e+03   0.00175        0        0         0     Tracker initStep
-    1      272     78.8 1.04e+03         0  0.00175    0.132     0.132     Tracker eIoni
+    0    -5.94    -2.26 -2.43e+03     0.242        0        0         0      Target initStep
+    1    -5.94    -2.26 -2.43e+03         0    0.242    0.109     0.109      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1012,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 272,   Parent ID = 228
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      268       77      976   0.00454        0        0         0     Tracker initStep
-    1      268     77.3      976         0  0.00454    0.647     0.647     Tracker eIoni
+    0    -5.84   -0.632 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -5.82   -0.415 -2.43e+03     0.275        0    0.265     0.265      Target compt
+    2    -8.92    -1.92 -2.43e+03     0.259        0     5.06      5.32      Target compt
+    3    -8.94    -1.93 -2.43e+03         0    0.088   0.0181      5.34      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1011,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 285,   Parent ID = 272
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      268     76.8      969   0.00158        0        0         0     Tracker initStep
-    1      268     76.8      969         0  0.00158    0.112     0.112     Tracker eIoni
+    0    -8.94    -1.93 -2.43e+03     0.171        0        0         0      Target initStep
+    1    -8.94    -1.94 -2.43e+03         0    0.171    0.064     0.064      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1010,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 284,   Parent ID = 272
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      265       75      911   0.00642        0        0         0     Tracker initStep
-    1      266       75      911         0  0.00642     1.17      1.17     Tracker eIoni
+    0    -8.92    -1.92 -2.43e+03    0.0154        0        0         0      Target initStep
+    1    -8.92    -1.92 -2.43e+03         0   0.0154  0.00136   0.00136      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1008,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 283,   Parent ID = 272
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      255     71.8      702    0.0171        0        0         0     Chamber initStep
-    1      256     71.3      701    0.0139  0.00327    0.817     0.817     Chamber msc
-    2      256     71.3      701    0.0122 9.61e-05   0.0302     0.847     Chamber eIoni
-    3      256     71.6      701    0.0108  0.00136    0.389      1.24     Chamber msc
-    4      256     71.7      701   0.00931  0.00152    0.376      1.61     Chamber msc
-    5      256     71.5      701   0.00834 0.000969    0.308      1.92     Chamber msc
-    6      256     71.5      701   0.00447  0.00193    0.472      2.39     Chamber eIoni
-    7      256     71.5      701         0  0.00447     0.33      2.72     Chamber eIoni
+    0    -5.82   -0.415 -2.43e+03     0.236        0        0         0      Target initStep
+    1    -5.82   -0.409 -2.43e+03         0    0.236    0.105     0.105      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1027,   Parent ID = 1008
+* G4Track Information:   Particle = gamma,   Track ID = 271,   Parent ID = 231
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      256     71.5      701   0.00194        0        0         0     Chamber initStep
-    1      256     71.5      701         0  0.00194   0.0998    0.0998     Chamber eIoni
+    0    -2.89    -8.11 -2.44e+03     0.511        0        0         0      Target initStep
+    1     2.71    -3.82 -2.43e+03     0.265        0     12.1      12.1      Target compt
+    2    0.843    -2.21 -2.43e+03     0.168        0     2.53      14.6      Target compt
+    3    0.925     -2.2 -2.43e+03         0    0.088    0.174      14.8      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1026,   Parent ID = 1008
+* G4Track Information:   Particle = e-,   Track ID = 288,   Parent ID = 271
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      256     71.3      701    0.0016        0        0         0     Chamber initStep
-    1      256     71.3      701         0   0.0016   0.0764    0.0764     Chamber eIoni
+    0    0.925     -2.2 -2.43e+03      0.08        0        0         0      Target initStep
+    1    0.924     -2.2 -2.43e+03         0     0.08   0.0192    0.0192      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1007,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 287,   Parent ID = 271
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      250     70.5      574    0.0216        0        0         0     Tracker initStep
-    1      247       70      574    0.0174  0.00424     3.72      3.72     Tracker eIoni
-    2      245       69      574    0.0126  0.00483     2.96      6.69     Tracker eIoni
-    3      244     69.3      573   0.00691  0.00565     2.21       8.9     Tracker eIoni
-    4      244     69.3      573   0.00514 6.07e-05   0.0736      8.97     Tracker eIoni
-    5      244     69.3      573         0  0.00514    0.806      9.78     Tracker eIoni
+    0    0.843    -2.21 -2.43e+03    0.0967        0        0         0      Target initStep
+    1    0.841     -2.2 -2.43e+03         0   0.0967    0.026     0.026      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1028,   Parent ID = 1007
+* G4Track Information:   Particle = e-,   Track ID = 286,   Parent ID = 271
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      244     69.3      573   0.00171        0        0         0     Tracker initStep
-    1      244     69.2      573         0  0.00171    0.127     0.127     Tracker eIoni
+    0     2.71    -3.82 -2.43e+03     0.246        0        0         0      Target initStep
+    1     2.71    -3.82 -2.43e+03         0    0.246    0.111     0.111      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1006,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 270,   Parent ID = 231
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      236     65.9      248   0.00148        0        0         0     Tracker initStep
-    1      236     65.9      248         0  0.00148    0.102     0.102     Tracker eIoni
+    0    -2.89    -8.11 -2.44e+03     0.511        0        0         0      Target initStep
+    1    -3.62    -8.66 -2.44e+03         0    0.088     1.56      1.56      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1005,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 289,   Parent ID = 270
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      231     64.2      142   0.00482        0        0         0     Tracker initStep
-    1      231     64.2      142         0  0.00482    0.718     0.718     Tracker eIoni
+    0    -3.62    -8.66 -2.44e+03     0.423        0        0         0      Target initStep
+    1    -3.62    -8.67 -2.44e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1004,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 269,   Parent ID = 235
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      226     62.8     23.6    0.0052        0        0         0     Chamber initStep
-    1      226     62.8     23.6         0   0.0052    0.419     0.419     Chamber eIoni
+    0   0.0198    0.925 -2.44e+03     0.511        0        0         0      Target initStep
+    1    -0.12        1 -2.44e+03         0    0.088    0.161     0.161      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1003,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 290,   Parent ID = 269
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      226     62.8     19.3   0.00391        0        0         0     Chamber initStep
-    1      226     62.8     19.3         0  0.00391    0.269     0.269     Chamber eIoni
+    0    -0.12        1 -2.44e+03     0.423        0        0         0      Target initStep
+    1    -0.13     1.02 -2.44e+03         0    0.423    0.243     0.243      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1002,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 268,   Parent ID = 235
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      225     62.6     2.42   0.00222        0        0         0     Chamber initStep
-    1      225     62.6     2.42         0  0.00222     0.12      0.12     Chamber eIoni
+    0   0.0198    0.925 -2.44e+03     0.511        0        0         0      Target initStep
+    1     18.9    -9.59 -2.44e+03     0.245        0     21.7      21.7      Target compt
+    2       19    -9.15 -2.44e+03         0    0.088    0.684      22.4      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1001,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 292,   Parent ID = 268
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      224     62.4    -23.3   0.00267        0        0         0     Chamber initStep
-    1      224     62.5    -23.3         0  0.00267    0.155     0.155     Chamber eIoni
+    0       19    -9.15 -2.44e+03     0.157        0        0         0      Target initStep
+    1       19    -9.15 -2.44e+03         0    0.157    0.056     0.056      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1000,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 291,   Parent ID = 268
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      219     61.7     -110   0.00307        0        0         0     Tracker initStep
-    1      219     61.8     -110         0  0.00307    0.328     0.328     Tracker eIoni
+    0     18.9    -9.59 -2.44e+03     0.266        0        0         0      Target initStep
+    1     18.9     -9.6 -2.44e+03         0    0.266    0.125     0.125      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 999,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 267,   Parent ID = 241
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      217     61.6     -145   0.00233        0        0         0     Tracker initStep
-    1      217     61.7     -145         0  0.00233    0.206     0.206     Tracker eIoni
+    0    -2.17    -2.16 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -5.41     1.25 -2.43e+03     0.333        0      4.8       4.8      Target compt
+    2    -8.92     0.44 -2.42e+03     0.244        0     6.03      10.8      Target compt
+    3    -6.72     1.17 -2.42e+03         0    0.088     5.07      15.9      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 998,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 295,   Parent ID = 267
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      213     61.3     -204   0.00209        0        0         0     Tracker initStep
-    1      213     61.3     -204         0  0.00209    0.174     0.174     Tracker eIoni
+    0    -6.72     1.17 -2.42e+03     0.156        0        0         0      Target initStep
+    1    -6.72     1.17 -2.42e+03         0    0.156   0.0554    0.0554      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 997,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 294,   Parent ID = 267
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      207     61.1     -304   0.00579        0        0         0     Tracker initStep
-    1      207       61     -304         0  0.00579    0.994     0.994     Tracker eIoni
+    0    -8.92     0.44 -2.42e+03    0.0888        0        0         0      Target initStep
+    1    -8.92    0.439 -2.42e+03         0   0.0888   0.0226    0.0226      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 996,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 293,   Parent ID = 267
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      193     60.4     -543     0.002        0        0         0     Tracker initStep
-    1      193     60.4     -543         0    0.002    0.161     0.161     Tracker eIoni
+    0    -5.41     1.25 -2.43e+03     0.178        0        0         0      Target initStep
+    1    -5.41     1.25 -2.43e+03         0    0.178   0.0683    0.0683      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 995,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 266,   Parent ID = 241
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      185     60.3     -680   0.00227        0        0         0     Tracker initStep
-    1      185     60.2     -680         0  0.00227    0.199     0.199     Tracker eIoni
+    0    -2.17    -2.16 -2.43e+03     0.511        0        0         0      Target initStep
+    1    -1.84    -2.51 -2.43e+03     0.231        0    0.489     0.489      Target compt
+    2    -1.12    -1.42 -2.43e+03         0    0.088     1.31       1.8      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 994,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 297,   Parent ID = 266
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      183     60.2     -715    0.0154        0        0         0     Chamber initStep
-    1      183       60     -715         0   0.0154      1.8       1.8     Chamber eIoni
+    0    -1.12    -1.42 -2.43e+03     0.143        0        0         0      Target initStep
+    1    -1.11    -1.42 -2.43e+03         0    0.143   0.0482    0.0482      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 993,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 296,   Parent ID = 266
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      183     60.2     -717   0.00347        0        0         0     Chamber initStep
-    1      183     60.2     -717         0  0.00347    0.224     0.224     Chamber eIoni
+    0    -1.84    -2.51 -2.43e+03      0.28        0        0         0      Target initStep
+    1    -1.83    -2.51 -2.43e+03         0     0.28    0.135     0.135      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 992,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 265,   Parent ID = 241
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      179       60     -771   0.00324        0        0         0     Chamber initStep
-    1      179       60     -771         0  0.00324    0.203     0.203     Chamber eIoni
+    0    -2.16    -2.18 -2.43e+03     0.847        0        0         0      Target initStep
+    1     -5.6     5.05 -2.42e+03     0.811        0     13.7      13.7      Target compt
+    2    -7.82     9.27 -2.41e+03         0    0.088     12.4      26.1      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 991,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 299,   Parent ID = 265
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      178     59.7     -790   0.00153        0        0         0     Chamber initStep
-    1      178     59.7     -790         0  0.00153   0.0723    0.0723     Chamber eIoni
+    0    -7.82     9.27 -2.41e+03     0.723        0        0         0      Target initStep
+    1    -7.81     9.27 -2.41e+03         0    0.723    0.492     0.492      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 990,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 298,   Parent ID = 265
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      170     56.5     -876   0.00166        0        0         0     Chamber initStep
-    1      170     56.5     -876         0  0.00166   0.0809    0.0809     Chamber eIoni
+    0     -5.6     5.05 -2.42e+03    0.0358        0        0         0      Target initStep
+    1     -5.6     5.05 -2.42e+03         0   0.0358  0.00519   0.00519      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 989,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 264,   Parent ID = 241
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      160     53.5     -984   0.00109        0        0         0     Tracker initStep
-    1      160     53.5     -984         0  0.00109   0.0642    0.0642     Tracker eIoni
+    0    -2.17    -2.21 -2.43e+03     0.211        0        0         0      Target initStep
+    1    -2.24     -2.7 -2.43e+03         0    0.088    0.737     0.737      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 988,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 300,   Parent ID = 264
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      155     52.3 -1.03e+03   0.00168        0        0         0     Tracker initStep
-    1      155     52.2 -1.03e+03         0  0.00168    0.123     0.123     Tracker eIoni
+    0    -2.24     -2.7 -2.43e+03     0.123        0        0         0      Target initStep
+    1    -2.24     -2.7 -2.43e+03         0    0.123   0.0384    0.0384      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 987,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 263,   Parent ID = 255
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      153     51.6 -1.05e+03   0.00118        0        0         0     Tracker initStep
-    1      153     51.6 -1.05e+03         0  0.00118   0.0727    0.0727     Tracker eIoni
+    0    -1.66      1.4 -2.44e+03     0.511        0        0         0      Target initStep
+    1   -0.791     1.52 -2.44e+03         0    0.088     2.12      2.12      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 986,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 301,   Parent ID = 263
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      151     51.1 -1.07e+03   0.00212        0        0         0     Tracker initStep
-    1      151     51.1 -1.07e+03         0  0.00212    0.178     0.178     Tracker eIoni
+    0   -0.791     1.52 -2.44e+03     0.423        0        0         0      Target initStep
+    1   -0.781     1.52 -2.44e+03    0.0289    0.193   0.0883    0.0883      Target eBrem
+    2   -0.782     1.52 -2.44e+03         0   0.0289  0.00367     0.092      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 985,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 302,   Parent ID = 301
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      148     50.4 -1.1e+03   0.00332        0        0         0     Tracker initStep
-    1      148     50.3 -1.1e+03         0  0.00332    0.375     0.375     Tracker eIoni
+    0   -0.781     1.52 -2.44e+03     0.201        0        0         0      Target initStep
+    1    -1.53    0.915 -2.44e+03         0    0.088     0.97      0.97      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 984,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 303,   Parent ID = 302
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      140     48.1 -1.19e+03   0.00449        0        0         0     Tracker initStep
-    1      140     48.2 -1.19e+03         0  0.00449    0.633     0.633     Tracker eIoni
+    0    -1.53    0.915 -2.44e+03     0.113        0        0         0      Target initStep
+    1    -1.53    0.916 -2.44e+03         0    0.113   0.0332    0.0332      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 983,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 262,   Parent ID = 255
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      123     43.6 -1.36e+03   0.00216        0        0         0     Tracker initStep
-    1      123     43.6 -1.36e+03         0  0.00216    0.183     0.183     Tracker eIoni
+    0    -1.66      1.4 -2.44e+03     0.511        0        0         0      Target initStep
+    1    -5.98    0.786 -2.45e+03     0.193        0     10.5      10.5      Target compt
+    2    -6.22     1.08 -2.45e+03         0    0.088    0.687      11.2      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 982,   Parent ID = 615
+* G4Track Information:   Particle = gamma,   Track ID = 261,   Parent ID = 255
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      119     42.5 -1.39e+03   0.00105        0        0         0     Tracker initStep
-    1      119     42.5 -1.39e+03         0  0.00105    0.061     0.061     Tracker eIoni
+    0     -1.4     1.25 -2.44e+03     0.661        0        0         0      Target initStep
+    1    -6.72        4 -2.43e+03     0.217        0     7.12      7.12      Target compt
+    2    -6.72        4 -2.43e+03         0    0.088 0.000107      7.12      Target phot
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 981,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 307,   Parent ID = 261
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      118     42.3 -1.4e+03   0.00331        0        0         0     Tracker initStep
-    1      118     42.5 -1.4e+03         0  0.00331    0.372     0.372     Tracker eIoni
+    0    -6.72        4 -2.43e+03     0.129        0        0         0      Target initStep
+    1    -6.72        4 -2.43e+03         0    0.129   0.0411    0.0411      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 980,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 306,   Parent ID = 261
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      114     41.3 -1.44e+03   0.00163        0        0         0     Tracker initStep
-    1      114     41.3 -1.44e+03         0  0.00163    0.118     0.118     Tracker eIoni
+    0    -6.72        4 -2.43e+03     0.444        0        0         0      Target initStep
+    1    -6.73     4.01 -2.43e+03         0    0.444    0.259     0.259      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 979,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 305,   Parent ID = 262
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      108     39.8 -1.5e+03   0.00208        0        0         0     Chamber initStep
-    1      108     39.8 -1.5e+03         0  0.00208     0.11      0.11     Chamber eIoni
+    0    -6.22     1.08 -2.45e+03     0.105        0        0         0      Target initStep
+    1    -6.22     1.08 -2.45e+03         0    0.105   0.0298    0.0298      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 978,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 304,   Parent ID = 262
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      103     38.4 -1.54e+03   0.00166        0        0         0     Chamber initStep
-    1      103     38.4 -1.54e+03         0  0.00166   0.0807    0.0807     Chamber eIoni
+    0    -5.98    0.786 -2.45e+03     0.318        0        0         0      Target initStep
+    1    -5.98    0.784 -2.45e+03         0    0.318    0.162     0.162      Target eIoni
+>>> Event: 0
+    0 hits stored in this event
+### Run 1 starts.
+--> Event 0 starts.
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 977,   Parent ID = 615
+* G4Track Information:   Particle = mu+,   Track ID = 1,   Parent ID = 0
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      102     38.1 -1.55e+03   0.00171        0        0         0     Chamber initStep
-    1      102     38.1 -1.55e+03         0  0.00171    0.084     0.084     Chamber eIoni
+    0        0        0 -2.94e+03     1e+06        0        0         0       World initStep
+    1 -4.87e-06  2.9e-06 -2.83e+03     1e+06   0.0217      113       113       World muIoni
+    2 -6.17e-06 3.05e-06 -2.82e+03     1e+06  0.00157     7.54       121       World muIoni
+    3 -2.12e-05 4.47e-06 -2.72e+03     1e+06   0.0245      100       221       World muIoni
+    4 -2.21e-05 4.32e-05 -2.55e+03     1e+06   0.0339      166       387       World muIoni
+    5 -2.66e-05  4.6e-05 -2.53e+03     1e+06   0.0047     26.7       414       World muIoni
+    6 -2.81e-05  4.9e-05 -2.49e+03     1e+06  0.00668       35       449       World muIoni
+    7 -2.78e-05 5.55e-05 -2.45e+03     1e+06  0.00827     41.1       490      Target Transportation
+    8 -0.000501 0.000278 -2.42e+03     1e+06     38.1     27.8       518      Target muIoni
+    9 -0.00137 0.000677 -2.4e+03     1e+06     28.2       21       539      Target muIoni
+   10 -0.00143 0.000693 -2.4e+03     1e+06     1.27     1.19       540     Tracker Transportation
+   11 -0.00315  0.00118 -2.36e+03     1e+06  0.00685     37.4       577     Tracker muIoni
+   12 -0.00775  0.00247 -2.26e+03     1e+06   0.0194      100       677     Tracker StepLimiter
+   13  -0.0123  0.00376 -2.16e+03     1e+06   0.0185      100       777     Tracker StepLimiter
+   14  -0.0169  0.00505 -2.06e+03     1e+06   0.0222      100       877     Tracker StepLimiter
+   15   -0.019  0.00563 -2.02e+03     1e+06   0.0105     45.1       923     Tracker muIoni
+   16  -0.0208  0.00613 -1.98e+03     1e+06  0.00592     39.2       962     Tracker muIoni
+   17  -0.0231  0.00676 -1.93e+03     1e+06  0.00994     49.5  1.01e+03     Tracker muIoni
+   18  -0.0253  0.00737 -1.88e+03     1e+06  0.00976     48.7  1.06e+03     Tracker muIoni
+   19  -0.0284  0.00821 -1.81e+03     1e+06   0.0129     66.7  1.13e+03     Tracker muIoni
+   20  -0.0285  0.00823 -1.81e+03     1e+06 0.000192     1.59  1.13e+03     Tracker muIoni
+   21  -0.0331  0.00948 -1.71e+03     1e+06   0.0165      100  1.23e+03     Tracker StepLimiter
+   22  -0.0337  0.00963 -1.7e+03     1e+06  0.00206     11.7  1.24e+03     Chamber Transportation
+   23  -0.0341  0.00975 -1.69e+03     1e+06  0.00641     9.53  1.25e+03     Chamber muIoni
+   24  -0.0344  0.00983 -1.68e+03     1e+06  0.00312     6.83  1.26e+03     Chamber muIoni
+   25  -0.0378   0.0108 -1.61e+03     1e+06   0.0495     73.1  1.33e+03     Chamber muIoni
+   26  -0.0419    0.012 -1.52e+03     1e+06   0.0684     89.5  1.42e+03     Chamber muIoni
+   27  -0.0429   0.0122 -1.5e+03     1e+06   0.0121     21.1  1.44e+03     Tracker Transportation
+   28  -0.0463   0.0131 -1.43e+03     1e+06    0.013     73.4  1.51e+03     Tracker muIoni
+   29   -0.051   0.0144 -1.33e+03     1e+06    0.018      100  1.61e+03     Tracker StepLimiter
+   30  -0.0557   0.0156 -1.23e+03     1e+06   0.0224      100  1.71e+03     Tracker StepLimiter
+   31  -0.0604   0.0168 -1.13e+03     1e+06   0.0222      100  1.81e+03     Tracker StepLimiter
+   32  -0.0648    0.018 -1.03e+03     1e+06   0.0162     93.7  1.91e+03     Tracker muIoni
+   33  -0.0654   0.0182 -1.02e+03     1e+06  0.00251     13.2  1.92e+03     Tracker muIoni
+   34  -0.0692   0.0192     -939     1e+06   0.0153     80.6     2e+03     Tracker muIoni
+   35   -0.071   0.0196     -900     1e+06  0.00708     39.1  2.04e+03     Chamber Transportation
+   36  -0.0721   0.0199     -876     1e+06   0.0149     23.9  2.06e+03     Chamber muIoni
+   37  -0.0738   0.0204     -841     1e+06    0.019     34.8   2.1e+03     Chamber muIoni
+   38  -0.0763    0.021     -787     1e+06   0.0361       54  2.15e+03     Chamber muIoni
+   39  -0.0791   0.0217     -726     1e+06   0.0361     61.1  2.21e+03     Chamber muIoni
+   40  -0.0792   0.0217     -725     1e+06  0.00169     1.52  2.22e+03     Chamber muIoni
+   41  -0.0804   0.0219     -700     1e+06    0.016     24.6  2.24e+03     Tracker Transportation
+   42  -0.0823   0.0224     -658     1e+06  0.00732     41.7  2.28e+03     Tracker muIoni
+   43  -0.0863   0.0235     -574     1e+06   0.0172     84.4  2.37e+03     Tracker muIoni
+   44   -0.091   0.0247     -474     1e+06   0.0213      100  2.47e+03     Tracker StepLimiter
+   45  -0.0939   0.0255     -411     1e+06   0.0122       63  2.53e+03     Tracker muIoni
+   46  -0.0986   0.0267     -311     1e+06   0.0195      100  2.63e+03     Tracker StepLimiter
+   47   -0.103    0.028     -211     1e+06   0.0201      100  2.73e+03     Tracker StepLimiter
+   48   -0.104   0.0281     -200     1e+06  0.00175     10.7  2.74e+03     Tracker muIoni
+   49   -0.108   0.0294     -100     1e+06   0.0221      100  2.84e+03     Tracker StepLimiter
+   50   -0.108   0.0294     -100     1e+06 4.92e-05    0.165  2.84e+03     Chamber Transportation
+   51   -0.111   0.0302    -34.9     1e+06   0.0484     65.1  2.91e+03     Chamber muIoni
+   52   -0.112   0.0304    -24.3     1e+06  0.00642     10.7  2.92e+03     Chamber muIoni
+   53   -0.116   0.0314     55.4     1e+06   0.0474     79.6     3e+03     Chamber muIoni
+   54   -0.116   0.0315       66     1e+06  0.00916     10.7  3.01e+03     Chamber muIoni
+   55   -0.118    0.032      100     1e+06   0.0345       34  3.04e+03     Tracker Transportation
+   56    -0.12   0.0326      147     1e+06   0.0127     47.4  3.09e+03     Tracker muIoni
+   57   -0.125   0.0338      247     1e+06   0.0204      100  3.19e+03     Tracker StepLimiter
+   58   -0.129   0.0351      347     1e+06   0.0199      100  3.29e+03     Tracker StepLimiter
+   59    -0.13   0.0354      370     1e+06  0.00434       23  3.31e+03     Tracker muIoni
+   60   -0.132    0.036      415     1e+06  0.00541     44.9  3.36e+03     Tracker muIoni
+   61   -0.133   0.0361      423     1e+06  0.00206        8  3.36e+03     Tracker muIoni
+   62   -0.137   0.0373      515     1e+06   0.0184     91.7  3.46e+03     Tracker muIoni
+   63   -0.142   0.0386      615     1e+06   0.0192      100  3.56e+03     Tracker StepLimiter
+   64   -0.143   0.0389      638     1e+06  0.00413     23.3  3.58e+03     Tracker muIoni
+   65   -0.146   0.0397      700     1e+06   0.0117     61.6  3.64e+03     Chamber Transportation
+   66   -0.147     0.04      730     1e+06   0.0279       30  3.67e+03     Chamber muIoni
+   67    -0.15   0.0409      801     1e+06   0.0445     70.5  3.74e+03     Chamber muIoni
+   68   -0.151   0.0409      801     1e+06 0.000803    0.848  3.74e+03     Chamber muIoni
+   69   -0.154   0.0417      872     1e+06    0.046     70.7  3.81e+03     Chamber muIoni
+   70   -0.155   0.0419      891     1e+06   0.0108     18.4  3.83e+03     Chamber muIoni
+   71   -0.155    0.042      898     1e+06  0.00237     7.92  3.84e+03     Chamber muIoni
+   72   -0.155    0.042      900     1e+06  0.00115     1.56  3.84e+03     Tracker Transportation
+   73   -0.155   0.0421      905     1e+06  0.00171     4.95  3.84e+03     Tracker muIoni
+   74   -0.155   0.0421      905     1e+06  2.4e-05    0.283  3.85e+03     Tracker muIoni
+   75   -0.159    0.043      989     1e+06   0.0157     83.8  3.93e+03     Tracker muIoni
+   76   -0.163   0.0442 1.09e+03     1e+06   0.0177      100  4.03e+03     Tracker StepLimiter
+   77   -0.168   0.0454 1.19e+03     1e+06   0.0231      100  4.13e+03     Tracker StepLimiter
+   78   -0.172   0.0465 1.29e+03     1e+06   0.0215      100  4.23e+03     Tracker StepLimiter
+   79   -0.173   0.0468 1.31e+03     1e+06  0.00376       19  4.25e+03     Tracker muIoni
+   80   -0.178   0.0479 1.41e+03     1e+06   0.0205      100  4.35e+03     Tracker StepLimiter
+   81   -0.179   0.0482 1.43e+03     1e+06  0.00385     22.4  4.37e+03     Tracker muIoni
+   82   -0.179   0.0483 1.44e+03     1e+06  0.00291     12.5  4.38e+03     Tracker muIoni
+   83    -0.18   0.0486 1.47e+03     1e+06  0.00337     26.2  4.41e+03     Tracker muIoni
+   84   -0.182    0.049  1.5e+03     1e+06  0.00697     30.8  4.44e+03     Chamber Transportation
+   85   -0.183   0.0494 1.53e+03     1e+06   0.0198     34.1  4.47e+03     Chamber muIoni
+   86   -0.183   0.0494 1.54e+03     1e+06  0.00228      3.8  4.48e+03     Chamber muIoni
+   87   -0.184   0.0495 1.55e+03     1e+06  0.00799      7.3  4.49e+03     Chamber muIoni
+   88   -0.187   0.0504 1.62e+03     1e+06   0.0638     78.9  4.56e+03     Chamber muIoni
+   89   -0.189   0.0507 1.65e+03     1e+06   0.0227     26.7  4.59e+03     Chamber muIoni
+   90   -0.191   0.0513  1.7e+03     1e+06   0.0326     49.2  4.64e+03     Tracker Transportation
+   91   -0.191   0.0514 1.71e+03     1e+06  0.00116     8.99  4.65e+03     Tracker muIoni
+   92   -0.191   0.0514 1.71e+03     1e+06 0.000609     3.26  4.65e+03     Tracker muIoni
+   93   -0.196   0.0525 1.81e+03     1e+06   0.0191      100  4.75e+03     Tracker StepLimiter
+   94   -0.197   0.0528 1.84e+03     1e+06  0.00543     28.5  4.78e+03     Tracker muIoni
+   95   -0.201   0.0539 1.94e+03     1e+06   0.0178      100  4.88e+03     Tracker StepLimiter
+   96   -0.204   0.0548 2.02e+03     1e+06    0.012     74.7  4.96e+03     Tracker muIoni
+   97   -0.209   0.0559 2.12e+03     1e+06   0.0184      100  5.06e+03     Tracker StepLimiter
+   98   -0.211   0.0565 2.17e+03     1e+06   0.0103     51.6  5.11e+03     Tracker muIoni
+   99   -0.211   0.0566 2.17e+03     1e+06 0.000702     6.52  5.11e+03     Tracker muIoni
+  100   -0.214   0.0574 2.25e+03     1e+06   0.0113     78.2  5.19e+03     Tracker muIoni
+  101   -0.217   0.0582 2.32e+03     1e+06   0.0148     69.2  5.26e+03     Tracker muIoni
+  102   -0.219   0.0586 2.35e+03     1e+06  0.00723       31  5.29e+03     Tracker muIoni
+  103   -0.221   0.0592  2.4e+03     1e+06   0.0104       48  5.34e+03       World Transportation
+  104   -0.233   0.0625 2.69e+03     1e+06   0.0495      288  5.63e+03       World muIoni
+  105   -0.235    0.063 2.73e+03     1e+06  0.00761       41  5.67e+03       World muIoni
+  106   -0.237   0.0636 2.78e+03     1e+06    0.011     48.7  5.72e+03       World muIoni
+  107   -0.239    0.064 2.82e+03     1e+06   0.0108     39.8  5.76e+03       World muIoni
+  108   -0.241   0.0647 2.87e+03     1e+06  0.00933     53.7  5.81e+03       World muIoni
+  109   -0.241   0.0647 2.87e+03     1e+06  0.00051     2.37  5.81e+03       World muIoni
+  110   -0.244   0.0655 2.94e+03     1e+06   0.0123     66.8  5.88e+03  OutOfWorld Transportation
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 76,   Parent ID = 1
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0   -0.241   0.0647 2.87e+03  0.000995        0        0         0       World initStep
+    1   -0.237   0.0872 2.87e+03         0 0.000995   0.0566    0.0566       World eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 75,   Parent ID = 1
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0   -0.241   0.0647 2.87e+03   0.00131        0        0         0       World initStep
+    1   -0.253   0.0979 2.87e+03         0  0.00131   0.0844    0.0844       World eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 74,   Parent ID = 1
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0   -0.239    0.064 2.82e+03   0.00113        0        0         0       World initStep
+    1   -0.242   0.0362 2.82e+03         0  0.00113   0.0682    0.0682       World eIoni
+
+*********************************************************************************************************
+* G4Track Information:   Particle = e-,   Track ID = 73,   Parent ID = 1
+*********************************************************************************************************
+
+Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
+    0   -0.237   0.0636 2.78e+03   0.00174        0        0         0       World initStep
+    1   -0.247    0.119 2.78e+03         0  0.00174    0.131     0.131       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 976,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 72,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      102       38 -1.56e+03    0.0146        0        0         0     Chamber initStep
-    1      102     37.9 -1.56e+03   0.00728   0.0073     1.72      1.72     Chamber eIoni
-    2      102     37.9 -1.56e+03         0  0.00728     0.72      2.44     Chamber eIoni
+    0   -0.235    0.063 2.73e+03   0.00338        0        0         0       World initStep
+    1   -0.402   0.0244 2.73e+03         0  0.00338    0.386     0.386       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 975,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 71,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     98.9     36.9 -1.58e+03   0.00192        0        0         0     Chamber initStep
-    1     98.9     36.9 -1.58e+03         0  0.00192   0.0982    0.0982     Chamber eIoni
+    0   -0.233   0.0625 2.69e+03   0.00147        0        0         0       World initStep
+    1   -0.194   0.0801 2.69e+03         0  0.00147    0.101     0.101       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 974,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 70,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     95.9       36 -1.61e+03   0.00658        0        0         0     Chamber initStep
-    1     95.9       36 -1.61e+03         0  0.00658    0.611     0.611     Chamber eIoni
+    0   -0.219   0.0586 2.35e+03   0.00162        0        0         0     Tracker initStep
+    1   -0.258   0.0289 2.35e+03         0  0.00162    0.116     0.116     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 973,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 69,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     92.6       35 -1.64e+03    0.0192        0        0         0     Chamber initStep
-    1     92.3     35.2 -1.64e+03    0.0112   0.0064     1.94      1.94     Chamber eIoni
-    2     92.4     35.1 -1.64e+03   0.00364  0.00551    0.649      2.58     Chamber eIoni
-    3     92.4     35.1 -1.64e+03         0  0.00364    0.241      2.83     Chamber eIoni
+    0   -0.217   0.0582 2.32e+03   0.00136        0        0         0     Tracker initStep
+    1    -0.18   0.0542 2.32e+03         0  0.00136   0.0897    0.0897     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1030,   Parent ID = 973
+* G4Track Information:   Particle = e-,   Track ID = 68,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     92.4     35.1 -1.64e+03     0.002        0        0         0     Chamber initStep
-    1     92.4     35.1 -1.64e+03         0    0.002    0.104     0.104     Chamber eIoni
+    0   -0.214   0.0574 2.25e+03   0.00355        0        0         0     Tracker initStep
+    1   -0.319   -0.098 2.25e+03         0  0.00355    0.421     0.421     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1029,   Parent ID = 973
+* G4Track Information:   Particle = e-,   Track ID = 67,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     92.3     35.2 -1.64e+03   0.00163        0        0         0     Chamber initStep
-    1     92.2     35.1 -1.64e+03         0  0.00163   0.0789    0.0789     Chamber eIoni
+    0   -0.211   0.0566 2.17e+03   0.00233        0        0         0     Tracker initStep
+    1   -0.121   0.0684 2.17e+03         0  0.00233    0.206     0.206     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 972,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 66,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     92.5       35 -1.64e+03   0.00331        0        0         0     Chamber initStep
-    1     92.5       35 -1.64e+03         0  0.00331     0.21      0.21     Chamber eIoni
+    0   -0.211   0.0565 2.17e+03   0.00109        0        0         0     Tracker initStep
+    1   -0.192   0.0385 2.17e+03         0  0.00109   0.0642    0.0642     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 971,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 65,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     85.8     32.5 -1.7e+03   0.00194        0        0         0     Chamber initStep
-    1     85.8     32.5 -1.7e+03         0  0.00194   0.0999    0.0999     Chamber eIoni
+    0   -0.204   0.0548 2.02e+03    0.0047        0        0         0     Tracker initStep
+    1   0.0996   0.0292 2.02e+03         0   0.0047    0.686     0.686     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 970,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 64,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     56.1     21.4 -1.95e+03   0.00149        0        0         0     Tracker initStep
-    1       56     21.4 -1.95e+03         0  0.00149    0.102     0.102     Tracker eIoni
+    0   -0.197   0.0528 1.84e+03    0.0012        0        0         0     Tracker initStep
+    1   -0.175   0.0311 1.84e+03         0   0.0012   0.0742    0.0742     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 969,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 63,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     33.3     12.7 -2.13e+03   0.00103        0        0         0     Tracker initStep
-    1     33.3     12.7 -2.13e+03         0  0.00103   0.0592    0.0592     Tracker eIoni
+    0   -0.191   0.0514 1.71e+03    0.0018        0        0         0     Tracker initStep
+    1    -0.25   0.0422 1.71e+03         0   0.0018    0.138     0.138     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 968,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 62,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     21.4     8.36 -2.23e+03   0.00257        0        0         0     Tracker initStep
-    1     21.3     8.39 -2.23e+03         0  0.00257    0.243     0.243     Tracker eIoni
+    0   -0.191   0.0514 1.71e+03   0.00122        0        0         0     Tracker initStep
+    1   -0.209    0.025 1.71e+03         0  0.00122   0.0764    0.0764     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 967,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 61,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     13.9     5.45 -2.29e+03   0.00149        0        0         0     Tracker initStep
-    1     13.8     5.42 -2.29e+03         0  0.00149    0.103     0.103     Tracker eIoni
+    0   -0.189   0.0507 1.65e+03   0.00208        0        0         0     Chamber initStep
+    1   -0.176   0.0567 1.65e+03         0  0.00208    0.109     0.109     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 966,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 60,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     4.35     1.64 -2.37e+03   0.00363        0        0         0     Tracker initStep
-    1     4.38     1.45 -2.37e+03         0  0.00363    0.436     0.436     Tracker eIoni
+    0   -0.187   0.0504 1.62e+03   0.00257        0        0         0     Chamber initStep
+    1   -0.197   0.0666 1.62e+03         0  0.00257    0.147     0.147     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 1009,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 59,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      256     71.8      705   0.00168        0        0         0     Chamber initStep
-    1      256     71.9      706         0  0.00115     1.15      1.15     Chamber phot
+    0   -0.184   0.0495 1.55e+03    0.0253        0        0         0     Chamber initStep
+    1   -0.568   -0.358 1.55e+03    0.0168  0.00854     2.69      2.69     Chamber eIoni
+    2   -0.721   -0.346 1.55e+03    0.0103  0.00652     1.93      4.62     Chamber eIoni
+    3   -0.783    -0.32 1.55e+03   0.00288  0.00741     1.23      5.86     Chamber eIoni
+    4   -0.777   -0.318 1.55e+03         0  0.00288    0.172      6.03     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1031,   Parent ID = 1009
+* G4Track Information:   Particle = e-,   Track ID = 58,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      256     71.9      706   0.00053        0        0         0     Chamber initStep
-    1      256     71.9      706         0  0.00053   0.0208    0.0208     Chamber eIoni
+    0   -0.183   0.0494 1.54e+03   0.00633        0        0         0     Chamber initStep
+    1   -0.176  -0.0164 1.54e+03         0  0.00633    0.573     0.573     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 965,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 57,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0268  0.00908 -2.4e+03     0.308        0        0         0      Target initStep
-    1   -0.022   0.0122 -2.4e+03     0.308        0   0.0538    0.0538     Tracker Transportation
-    2     62.4     40.5 -1.7e+03     0.308        0      704       704     Chamber Transportation
-    3     80.3     52.1 -1.5e+03     0.308        0      201       905     Tracker Transportation
-    4      134     86.8     -900     0.308        0      603  1.51e+03     Chamber Transportation
-    5      139     90.2     -842         0   0.0346     58.4  1.57e+03     Chamber phot
+    0   -0.183   0.0494 1.53e+03   0.00201        0        0         0     Chamber initStep
+    1   -0.193     0.04 1.53e+03         0  0.00201    0.104     0.104     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1032,   Parent ID = 965
+* G4Track Information:   Particle = e-,   Track ID = 56,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      139     90.2     -842     0.273        0        0         0     Chamber initStep
-    1      113     99.5     -829     0.242   0.0312     54.1      54.1     Chamber msc
-    2      111     92.5     -835     0.236  0.00374     9.41      63.5     Chamber eIoni
-    3       84       88     -848     0.204   0.0279       42       105     Chamber eIoni
-    4     53.5      119     -843     0.168    0.036     45.7       151     Chamber eIoni
-    5     53.6      119     -843     0.162 5.68e-05    0.234       151     Chamber eIoni
-    6     59.3      129     -839     0.151  0.00894     16.1       167     Chamber eIoni
-    7     62.7      130     -840     0.147  0.00243     3.81       171     Chamber eIoni
-    8     73.2      133     -837     0.129   0.0133     17.5       189     Chamber eIoni
-    9       85      119     -831      0.11   0.0192     22.3       211     Chamber eIoni
-   10     83.2      116     -830     0.101  0.00561     4.65       216     Chamber eIoni
-   11     81.1      115     -832    0.0739  0.00262     4.57       220     Chamber eIoni
-   12       83      117     -832    0.0638   0.0102     9.59       230     Chamber eIoni
-   13     83.3      116     -832    0.0577  0.00213     1.05       231     Chamber eIoni
-   14       83      115     -833    0.0547  0.00293     2.21       233     Chamber eIoni
-   15     82.8      116     -834     0.049  0.00574     6.31       239     Chamber eIoni
-   16     82.4      116     -834    0.0473 0.000276    0.423       240     Chamber eIoni
-   17       81      116     -835    0.0385  0.00886     5.23       245     Chamber eIoni
-   18     81.3      117     -835    0.0236  0.00731     3.45       248     Chamber eIoni
-   19     81.5      117     -835    0.0154  0.00272    0.448       249     Chamber eIoni
-   20     81.7      117     -835   0.00925  0.00616      1.8       251     Chamber eIoni
-   21     81.8      117     -835   0.00395   0.0053    0.731       251     Chamber eIoni
-   22     81.8      117     -835         0  0.00395    0.273       252     Chamber eIoni
+    0    -0.18   0.0486 1.47e+03     0.001        0        0         0     Tracker initStep
+    1    -0.16   0.0387 1.47e+03         0    0.001   0.0571    0.0571     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1044,   Parent ID = 1032
+* G4Track Information:   Particle = e-,   Track ID = 55,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     81.5      117     -835   0.00545        0        0         0     Chamber initStep
-    1     81.5      117     -835         0  0.00545    0.452     0.452     Chamber eIoni
+    0   -0.179   0.0483 1.44e+03   0.00203        0        0         0     Tracker initStep
+    1   -0.174  -0.0237 1.44e+03         0  0.00203    0.166     0.166     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1043,   Parent ID = 1032
+* G4Track Information:   Particle = e-,   Track ID = 54,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     81.3      117     -835   0.00757        0        0         0     Chamber initStep
-    1     81.3      117     -835         0  0.00757    0.768     0.768     Chamber eIoni
+    0   -0.179   0.0482 1.43e+03   0.00214        0        0         0     Tracker initStep
+    1   -0.115   0.0935 1.43e+03         0  0.00214     0.18      0.18     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1042,   Parent ID = 1032
+* G4Track Information:   Particle = e-,   Track ID = 53,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     82.4      116     -834    0.0014        0        0         0     Chamber initStep
-    1     82.4      116     -834         0   0.0014   0.0641    0.0641     Chamber eIoni
+    0   -0.173   0.0468 1.31e+03   0.00108        0        0         0     Tracker initStep
+    1   -0.169   0.0723 1.31e+03         0  0.00108   0.0635    0.0635     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1041,   Parent ID = 1032
+* G4Track Information:   Particle = e-,   Track ID = 52,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     83.3      116     -832   0.00396        0        0         0     Chamber initStep
-    1     83.3      116     -832         0  0.00396    0.274     0.274     Chamber eIoni
+    0   -0.159    0.043      989   0.00301        0        0         0     Tracker initStep
+    1  -0.0225  0.00844      989         0  0.00301    0.318     0.318     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1040,   Parent ID = 1032
+* G4Track Information:   Particle = e-,   Track ID = 51,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     81.1      115     -832    0.0247        0        0         0     Chamber initStep
-    1     81.4      115     -832    0.0125  0.00178    0.718     0.718     Chamber eIoni
-    2     81.4      115     -832   0.00546  0.00705     1.51      2.23     Chamber eIoni
-    3     81.4      115     -832         0  0.00546    0.453      2.68     Chamber eIoni
+    0   -0.155   0.0421      905   0.00205        0        0         0     Tracker initStep
+    1  -0.0837   0.0276      905         0  0.00205    0.168     0.168     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1045,   Parent ID = 1040
+* G4Track Information:   Particle = e-,   Track ID = 50,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     81.4      115     -832    0.0104        0        0         0     Chamber initStep
-    1     81.5      115     -832    0.0041  0.00417     1.23      1.23     Chamber eIoni
-    2     81.5      115     -832         0   0.0041    0.288      1.52     Chamber eIoni
+    0   -0.155   0.0421      905   0.00145        0        0         0     Tracker initStep
+    1   -0.191    0.063      905         0  0.00145   0.0988    0.0988     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1046,   Parent ID = 1045
+* G4Track Information:   Particle = e-,   Track ID = 49,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     81.5      115     -832   0.00216        0        0         0     Chamber initStep
-    1     81.5      115     -832         0  0.00216    0.115     0.115     Chamber eIoni
+    0   -0.155    0.042      898   0.00148        0        0         0     Chamber initStep
+    1   -0.148   0.0486      898         0  0.00148   0.0687    0.0687     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1039,   Parent ID = 1032
+* G4Track Information:   Particle = e-,   Track ID = 48,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     83.2      116     -830   0.00277        0        0         0     Chamber initStep
-    1     83.2      116     -830         0  0.00277    0.163     0.163     Chamber eIoni
+    0   -0.155   0.0419      891    0.0023        0        0         0     Chamber initStep
+    1    -0.17   0.0478      891         0   0.0023    0.126     0.126     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1038,   Parent ID = 1032
+* G4Track Information:   Particle = e-,   Track ID = 47,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     73.2      133     -837   0.00503        0        0         0     Chamber initStep
-    1     73.2      133     -837         0  0.00503    0.397     0.397     Chamber eIoni
+    0   -0.154   0.0417      872   0.00264        0        0         0     Chamber initStep
+    1    -0.17    0.052      872         0  0.00264    0.152     0.152     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1037,   Parent ID = 1032
+* G4Track Information:   Particle = e-,   Track ID = 46,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     62.7      130     -840   0.00149        0        0         0     Chamber initStep
-    1     62.7      130     -840         0  0.00149   0.0699    0.0699     Chamber eIoni
+    0   -0.151   0.0409      801   0.00608        0        0         0     Chamber initStep
+    1   -0.173   0.0942      801   0.00271  0.00195     0.14      0.14     Chamber eIoni
+    2   -0.167    0.103      801         0  0.00271    0.158     0.298     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1036,   Parent ID = 1032
+* G4Track Information:   Particle = e-,   Track ID = 77,   Parent ID = 46
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     59.3      129     -839   0.00223        0        0         0     Chamber initStep
-    1     59.3      129     -839         0  0.00223    0.121     0.121     Chamber eIoni
+    0   -0.173   0.0942      801   0.00142        0        0         0     Chamber initStep
+    1   -0.167   0.0881      801         0  0.00142   0.0652    0.0652     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1035,   Parent ID = 1032
+* G4Track Information:   Particle = e-,   Track ID = 45,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     53.6      119     -843   0.00591        0        0         0     Chamber initStep
-    1     53.6      119     -843         0  0.00591    0.513     0.513     Chamber eIoni
+    0    -0.15   0.0409      801   0.00814        0        0         0     Chamber initStep
+    1   -0.074   0.0978      801         0  0.00814    0.867     0.867     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1034,   Parent ID = 1032
+* G4Track Information:   Particle = e-,   Track ID = 44,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0       84       88     -848   0.00431        0        0         0     Chamber initStep
-    1       84     88.1     -848         0  0.00431    0.312     0.312     Chamber eIoni
+    0   -0.147     0.04      730   0.00337        0        0         0     Chamber initStep
+    1   -0.131   0.0615      730         0  0.00337    0.215     0.215     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1033,   Parent ID = 1032
+* G4Track Information:   Particle = e-,   Track ID = 43,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      111     92.5     -835   0.00154        0        0         0     Chamber initStep
-    1      111     92.5     -835         0  0.00154   0.0726    0.0726     Chamber eIoni
+    0   -0.143   0.0389      638   0.00122        0        0         0     Tracker initStep
+    1   -0.166   0.0171      638         0  0.00122   0.0757    0.0757     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 964,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 42,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0 -0.00154 -0.00729 -2.4e+03      5.28        0        0         0      Target initStep
-    1  -0.0336  0.00597 -2.4e+03      5.28        0     0.45      0.45     Tracker Transportation
-    2    -50.2     20.7 -1.7e+03      5.28        0      702       703     Chamber Transportation
-    3    -64.5     26.6 -1.5e+03      5.28        0      201       903     Tracker Transportation
-    4     -107     44.3     -900      5.28        0      602   1.5e+03     Chamber Transportation
-    5     -122     50.3     -700      5.28        0      201  1.71e+03     Tracker Transportation
-    6     -165       68     -100      5.28        0      602  2.31e+03     Chamber Transportation
-    7     -179     73.9      100      5.28        0      201  2.51e+03     Tracker Transportation
-    8     -222     91.6      700      5.28        0      602  3.11e+03     Chamber Transportation
-    9     -236     97.6      900      5.28        0      201  3.31e+03     Tracker Transportation
-   10     -279      115  1.5e+03      5.28        0      602  3.91e+03     Chamber Transportation
-   11     -294      121  1.7e+03      5.28        0      201  4.11e+03     Tracker Transportation
-   12     -344      142  2.4e+03      5.28        0      702  4.81e+03       World Transportation
-   13     -382      158 2.94e+03      5.28        0      542  5.36e+03  OutOfWorld Transportation
+    0   -0.137   0.0373      515   0.00277        0        0         0     Tracker initStep
+    1   -0.241      0.1      515         0  0.00277    0.275     0.275     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 963,   Parent ID = 615
+* G4Track Information:   Particle = e-,   Track ID = 41,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  0.00917   0.0115 -2.4e+03      2.73        0        0         0      Target initStep
-    1   0.0128  -0.0213 -2.4e+03      2.73        0      0.8       0.8     Tracker Transportation
-    2     3.15    -28.7 -1.7e+03      2.73        0      701       701     Chamber Transportation
-    3     4.05    -36.9 -1.5e+03      2.73        0      200       902     Tracker Transportation
-    4     6.74    -61.5     -900      2.73        0      601   1.5e+03     Chamber Transportation
-    5     7.63    -69.7     -700      2.73        0      200   1.7e+03     Tracker Transportation
-    6     10.3    -94.3     -100      2.73        0      601   2.3e+03     Chamber Transportation
-    7     11.2     -103      100      2.73        0      200   2.5e+03     Tracker Transportation
-    8     13.9     -127      700      2.73        0      601   3.1e+03     Chamber Transportation
-    9     14.8     -135      900      2.73        0      200   3.3e+03     Tracker Transportation
-   10     17.5     -160  1.5e+03      2.73        0      601   3.9e+03     Chamber Transportation
-   11     18.4     -168  1.7e+03      2.73        0      200   4.1e+03     Tracker Transportation
-   12     21.5     -197  2.4e+03      2.73        0      701   4.8e+03       World Transportation
-   13     23.9     -219 2.94e+03      2.73        0      540  5.35e+03  OutOfWorld Transportation
+    0   -0.133   0.0361      423   0.00147        0        0         0     Tracker initStep
+    1   -0.117 -0.00336      423         0  0.00147      0.1       0.1     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 962,   Parent ID = 710
+* G4Track Information:   Particle = e-,   Track ID = 40,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.27   -0.233 -2.4e+03     0.511        0        0         0      Target initStep
-    1     1.32   -0.351 -2.4e+03     0.511        0    0.129     0.129     Tracker Transportation
-    2      900 -2.22e+03 -2.04e+03     0.511        0 2.43e+03  2.43e+03       World Transportation
-    3 1.19e+03 -2.94e+03 -1.93e+03     0.511        0      780  3.21e+03  OutOfWorld Transportation
+    0   -0.132    0.036      415   0.00293        0        0         0     Tracker initStep
+    1  -0.0571    0.147      415         0  0.00293    0.303     0.303     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 961,   Parent ID = 710
+* G4Track Information:   Particle = e-,   Track ID = 39,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.27   -0.233 -2.4e+03     0.511        0        0         0      Target initStep
-    1     1.11    0.156 -2.4e+03       0.5        0    0.424     0.424      Target compt
-    2    -2.99     6.89 -2.4e+03         0    0.088     7.88      8.31      Target phot
+    0    -0.13   0.0354      370    0.0401        0        0         0     Tracker initStep
+    1     3.94     5.62      372     0.035  0.00505     8.36      8.36     Tracker eIoni
+    2     4.19     8.05      371    0.0308  0.00174     2.67        11     Tracker eIoni
+    3     5.15     12.6      370    0.0264  0.00436     5.75      16.8     Tracker eIoni
+    4      2.7     9.88      371    0.0226  0.00385     4.72      21.5     Tracker eIoni
+    5     1.08     9.24      374    0.0181  0.00447     3.91      25.4     Tracker eIoni
+    6    0.362     8.39      376     0.014  0.00409     3.08      28.5     Tracker eIoni
+    7     1.96     8.04      377    0.0106  0.00344     2.43      30.9     Tracker eIoni
+    8     1.99     8.05      377   0.00914 1.28e-05   0.0282      30.9     Tracker eIoni
+    9     2.78     8.16      377   0.00473  0.00332     1.15      32.1     Tracker eIoni
+   10     3.02      8.3      377         0  0.00473    0.694      32.8     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1048,   Parent ID = 961
+* G4Track Information:   Particle = e-,   Track ID = 80,   Parent ID = 39
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0    -2.99     6.89 -2.4e+03     0.412        0        0         0      Target initStep
-    1    -2.94     6.96 -2.4e+03      0.32   0.0924    0.104     0.104      Target msc
-    2    -2.94     6.96 -2.4e+03         0     0.32    0.164     0.267      Target eIoni
+    0     2.78     8.16      377   0.00109        0        0         0     Tracker initStep
+    1      2.8     8.15      377         0  0.00109   0.0642    0.0642     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1047,   Parent ID = 961
+* G4Track Information:   Particle = e-,   Track ID = 79,   Parent ID = 39
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.11    0.156 -2.4e+03    0.0108        0        0         0      Target initStep
-    1     1.11    0.156 -2.4e+03         0   0.0108 0.000788  0.000788      Target eIoni
+    0     1.99     8.05      377   0.00144        0        0         0     Tracker initStep
+    1     1.98     8.05      377         0  0.00144   0.0972    0.0972     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 960,   Parent ID = 710
+* G4Track Information:   Particle = e-,   Track ID = 78,   Parent ID = 39
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.18   -0.222 -2.4e+03     0.198        0        0         0      Target initStep
-    1     1.24    -0.26 -2.4e+03     0.198        0   0.0952    0.0952     Tracker Transportation
-    2 2.06e+03 -1.23e+03     -484     0.198        0 3.07e+03  3.07e+03       World Transportation
-    3 2.94e+03 -1.76e+03      337     0.198        0 1.32e+03  4.39e+03  OutOfWorld Transportation
+    0     4.19     8.05      371   0.00249        0        0         0     Tracker initStep
+    1     4.28     8.02      371         0  0.00249    0.231     0.231     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 959,   Parent ID = 710
+* G4Track Information:   Particle = e-,   Track ID = 38,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.98   -0.355 -2.4e+03      6.67        0        0         0      Target initStep
-    1      1.9     2.04 -2.4e+03      3.41        0     2.56      2.56      Target compt
-    2     2.18     2.71 -2.4e+03         0        0    0.782      3.34      Target conv
+    0    -0.12   0.0326      147   0.00184        0        0         0     Tracker initStep
+    1   -0.148   0.0869      147         0  0.00184    0.141     0.141     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1050,   Parent ID = 959
+* G4Track Information:   Particle = e-,   Track ID = 37,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.18     2.71 -2.4e+03      2.26        0        0         0      Target initStep
-    1     2.23     2.75 -2.4e+03     0.539   0.0768    0.071     0.071      Target eBrem
-    2     2.25     2.79 -2.4e+03     0.456   0.0829   0.0721     0.143      Target msc
-    3     2.28     2.85 -2.4e+03     0.402   0.0549   0.0721     0.215      Target msc
-    4     2.25     2.82 -2.4e+03     0.323   0.0782   0.0721     0.287      Target msc
-    5     2.26      2.8 -2.4e+03     0.214    0.109   0.0721     0.359      Target msc
-    6     2.26      2.8 -2.4e+03         0    0.214   0.0904      0.45      Target eIoni
+    0   -0.116   0.0315       66   0.00772        0        0         0     Chamber initStep
+    1   -0.114     0.12       66         0  0.00772    0.794     0.794     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1049,   Parent ID = 959
+* G4Track Information:   Particle = e-,   Track ID = 36,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      1.9     2.04 -2.4e+03      3.27        0        0         0      Target initStep
-    1     1.87     2.14 -2.4e+03      3.14    0.125     0.12      0.12      Target msc
-    2     1.87     2.21 -2.4e+03     0.737   0.0873   0.0905     0.211      Target eBrem
-    3     1.84     2.21 -2.4e+03     0.584    0.152    0.136     0.347      Target msc
-    4     1.82     2.19 -2.4e+03         0    0.584    0.374     0.722      Target eIoni
+    0   -0.116   0.0314     55.4    0.0272        0        0         0     Chamber initStep
+    1    0.313   -0.427     55.5    0.0196  0.00763     2.87      2.87     Chamber eIoni
+    2    0.421  -0.0692     55.5    0.0132  0.00643     2.18      5.05     Chamber eIoni
+    3    0.601  -0.0192     55.4   0.00456  0.00861     1.58      6.63     Chamber eIoni
+    4     0.61  -0.0291     55.4         0  0.00456    0.341      6.97     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 1053,   Parent ID = 1049
+* G4Track Information:   Particle = e-,   Track ID = 35,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     1.87     2.21 -2.4e+03      2.32        0        0         0      Target initStep
-    1     1.18     7.51 -2.4e+03      2.32        0     5.37      5.37     Tracker Transportation
-    2     -307 2.38e+03 -2.2e+03      2.32        0  2.4e+03  2.41e+03       World Transportation
-    3     -380 2.94e+03 -2.15e+03      2.32        0      566  2.97e+03  OutOfWorld Transportation
+    0   -0.112   0.0304    -24.3   0.00286        0        0         0     Chamber initStep
+    1   -0.123   0.0118    -24.3         0  0.00286     0.17      0.17     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 1052,   Parent ID = 1050
+* G4Track Information:   Particle = e-,   Track ID = 34,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.23     2.75 -2.4e+03      1.64        0        0         0      Target initStep
-    1       25   0.0861 -2.41e+03      1.64        0     23.6      23.6       World Transportation
-    2 2.28e+03     -263 -2.94e+03      1.64        0 2.33e+03  2.35e+03  OutOfWorld Transportation
+    0   -0.111   0.0302    -34.9   0.00231        0        0         0     Chamber initStep
+    1   -0.097   0.0376    -34.9         0  0.00231    0.127     0.127     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 958,   Parent ID = 710
+* G4Track Information:   Particle = e-,   Track ID = 33,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     0.31   -0.692 -2.4e+03      7.53        0        0         0      Target initStep
-    1     1.39   -0.752 -2.4e+03      7.53        0     1.81      1.81     Tracker Transportation
-    2  2.4e+03     -134      811      7.53        0 4.01e+03  4.01e+03       World Transportation
-    3 2.94e+03     -165 1.54e+03      7.53        0      910  4.92e+03  OutOfWorld Transportation
+    0   -0.104   0.0281     -200   0.00873        0        0         0     Tracker initStep
+    1   -0.842   0.0547     -200    0.0039  0.00309     1.07      1.07     Tracker eIoni
+    2    -0.92  -0.0433     -200   0.00202  0.00187    0.307      1.38     Tracker eIoni
+    3   -0.981  -0.0147     -200         0  0.00202    0.165      1.54     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 957,   Parent ID = 710
+* G4Track Information:   Particle = e-,   Track ID = 81,   Parent ID = 33
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0   -0.594   -0.329 -2.4e+03      1.44        0        0         0      Target initStep
-    1    0.182   -0.996 -2.4e+03      1.44        0     2.94      2.94     Tracker Transportation
-    2      422     -363     -900      1.44        0  1.6e+03   1.6e+03     Chamber Transportation
-    3      478     -412     -700      1.44        0      213  1.82e+03     Tracker Transportation
-    4      647     -557     -100      1.44        0      640  2.46e+03     Chamber Transportation
-    5      703     -605      100      1.44        0      213  2.67e+03     Tracker Transportation
-    6      872     -750      700      1.44        0      640  3.31e+03     Chamber Transportation
-    7      928     -798      900      1.44        0      213  3.52e+03     Tracker Transportation
-    8  1.1e+03     -943  1.5e+03      1.44        0      640  4.16e+03     Chamber Transportation
-    9 1.15e+03     -992  1.7e+03      1.44        0      213  4.38e+03     Tracker Transportation
-   10 1.35e+03 -1.16e+03  2.4e+03      1.44        0      747  5.12e+03       World Transportation
-   11  1.5e+03 -1.29e+03 2.94e+03      1.44        0      576   5.7e+03  OutOfWorld Transportation
+    0   -0.842   0.0547     -200   0.00174        0        0         0     Tracker initStep
+    1   -0.884   0.0918     -200         0  0.00174     0.13      0.13     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 956,   Parent ID = 710
+* G4Track Information:   Particle = e-,   Track ID = 32,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0  -0.0205   -0.138 -2.41e+03      1.24        0        0         0      Target initStep
-    1   0.0343    -1.02 -2.4e+03      1.24        0     5.12      5.12     Tracker Transportation
-    2     7.63     -123 -1.7e+03      1.24        0      711       716     Chamber Transportation
-    3     9.81     -158 -1.5e+03      1.24        0      203       919     Tracker Transportation
-    4     16.3     -262     -900      1.24        0      609  1.53e+03     Chamber Transportation
-    5     18.5     -297     -700      1.24        0      203  1.73e+03     Tracker Transportation
-    6       25     -402     -100      1.24        0      609  2.34e+03     Chamber Transportation
-    7     27.2     -436      100      1.24        0      203  2.54e+03     Tracker Transportation
-    8     33.7     -541      700      1.24        0      609  3.15e+03     Chamber Transportation
-    9     35.9     -576      900      1.24        0      203  3.35e+03     Tracker Transportation
-   10     42.4     -680  1.5e+03      1.24        0      609  3.96e+03     Chamber Transportation
-   11     44.5     -715  1.7e+03      1.24        0      203  4.17e+03     Tracker Transportation
-   12     52.1     -837  2.4e+03      1.24        0      711  4.88e+03       World Transportation
-   13       58     -931 2.94e+03      1.24        0      548  5.43e+03  OutOfWorld Transportation
+    0  -0.0939   0.0255     -411   0.00171        0        0         0     Tracker initStep
+    1   -0.063  -0.0193     -411         0  0.00171    0.127     0.127     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 955,   Parent ID = 718
+* G4Track Information:   Particle = e-,   Track ID = 31,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -12    -20.8 -2.45e+03     0.511        0        0         0      Target initStep
-    1      -11    -20.6 -2.45e+03         0    0.088     1.06      1.06      Target phot
+    0  -0.0863   0.0235     -574    0.0307        0        0         0     Tracker initStep
+    1    -2.85     3.77     -573    0.0257  0.00496     5.72      5.72     Tracker eIoni
+    2    -5.04     1.49     -571    0.0229  0.00277     4.56      10.3     Tracker eIoni
+    3    -6.63   0.0654     -574    0.0177  0.00527     3.98      14.3     Tracker eIoni
+    4    -7.28   -0.273     -576    0.0119  0.00579     3.01      17.3     Tracker eIoni
+    5    -7.81   -0.748     -577   0.00612  0.00366     1.95      19.2     Tracker eIoni
+    6    -7.87   -0.816     -577   0.00139  0.00473    0.998      20.2     Tracker eIoni
+    7    -7.89   -0.826     -577         0  0.00139   0.0925      20.3     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = gamma,   Track ID = 954,   Parent ID = 718
+* G4Track Information:   Particle = e-,   Track ID = 82,   Parent ID = 31
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      -12    -20.8 -2.45e+03     0.511        0        0         0      Target initStep
-    1    -12.4    -20.9 -2.45e+03         0    0.088    0.404     0.404      Target phot
+    0    -7.81   -0.748     -577    0.0021        0        0         0     Tracker initStep
+    1    -7.83    -0.82     -577         0   0.0021    0.175     0.175     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 1051,   Parent ID = 959
+* G4Track Information:   Particle = e-,   Track ID = 30,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0     2.18     2.71 -2.4e+03      0.13        0        0         0      Target initStep
-    1     2.18     2.71 -2.4e+03         0     0.13   0.0391    0.0391      Target eIoni
-    2     2.18     2.71 -2.4e+03         0        0        0    0.0391      Target annihil
+    0  -0.0823   0.0224     -658   0.00354        0        0         0     Tracker initStep
+    1   0.0853   -0.058     -658         0  0.00354    0.419     0.419     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e+,   Track ID = 507,   Parent ID = 429
+* G4Track Information:   Particle = e-,   Track ID = 29,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      436      862    -89.9      42.2        0        0         0     Chamber initStep
-    1      443      876    -52.1      42.2   0.0196     40.9      40.9     Chamber eIoni
-    2      465      916     48.4      42.1   0.0668      110       151     Chamber eIoni
-    3      470      924     68.5      42.1   0.0107       22       173     Chamber eIoni
-    4      477      936      100      42.1   0.0315     34.5       208     Tracker Transportation
-    5      483      945      126      42.1  0.00448     28.6       236     Tracker eIoni
-    6      489      956      154        42  0.00495       30       266     Tracker eIoni
-    7      492      961      167        42  0.00235     14.4       281     Tracker eIoni
-    8      512      994      256        42   0.0174       97       378     Tracker eIoni
-    9      533 1.03e+03      348        42   0.0178      100       478     Tracker StepLimiter
-   10      553 1.06e+03      439        42   0.0204      100       578     Tracker StepLimiter
-   11      562 1.08e+03      482        42  0.00835     46.1       624     Tracker eIoni
-   12      568 1.09e+03      507        42  0.00512     27.6       651     Tracker eIoni
-   13      576  1.1e+03      540      41.9  0.00668     35.9       687     Tracker eIoni
-   14      582 1.11e+03      565      41.9  0.00364     27.4       715     Tracker eIoni
-   15      582 1.11e+03      568      41.9 0.000567     3.96       719     Tracker eIoni
-   16      603 1.15e+03      660      41.9   0.0179      100       819     Tracker StepLimiter
-   17      612 1.16e+03      700      41.9  0.00682       44       863     Chamber Transportation
-   18      617 1.17e+03      719      40.4   0.0119     20.5       883     Chamber eIoni
-   19      628 1.19e+03      776      40.4   0.0379     62.5       946     Chamber eIoni
-   20      641 1.22e+03      853      40.3   0.0478     83.8  1.03e+03     Chamber eIoni
-   21      649 1.24e+03      900      40.3   0.0228     51.4  1.08e+03     Tracker Transportation
-   22      665 1.28e+03      991      40.3   0.0172      100  1.18e+03     Tracker StepLimiter
-   23      681 1.31e+03 1.08e+03      40.3   0.0164      100  1.28e+03     Tracker StepLimiter
-   24      698 1.35e+03 1.17e+03      40.3   0.0175      100  1.38e+03     Tracker StepLimiter
-   25      714 1.39e+03 1.27e+03      40.2   0.0181      100  1.48e+03     Tracker StepLimiter
-   26      730 1.43e+03 1.36e+03      40.2   0.0163      100  1.58e+03     Tracker StepLimiter
-   27      738 1.45e+03 1.42e+03      40.2   0.0102     63.6  1.64e+03     Tracker eIoni
-   28      745 1.47e+03 1.46e+03      40.2  0.00814     54.3   1.7e+03     Tracker eIoni
-   29      750 1.48e+03  1.5e+03      40.2  0.00643     38.2  1.74e+03     Chamber Transportation
-   30      755  1.5e+03 1.54e+03      40.2   0.0204     47.3  1.78e+03     Chamber eIoni
-   31      763 1.53e+03 1.61e+03      40.1   0.0414     73.7  1.86e+03     Chamber eIoni
-   32      763 1.53e+03 1.62e+03      40.1    0.003     8.71  1.87e+03     Chamber eBrem
-   33      771 1.56e+03  1.7e+03      40.1   0.0366     85.4  1.95e+03     Tracker Transportation
-   34      771 1.56e+03 1.71e+03      40.1 0.000768     6.81  1.96e+03     Tracker eIoni
-   35      772 1.57e+03 1.71e+03        40  0.00103     6.91  1.97e+03     Tracker eIoni
-   36      779  1.6e+03 1.81e+03        40   0.0176      100  2.07e+03     Tracker StepLimiter
-   37      780 1.61e+03 1.82e+03        40  0.00289     15.4  2.08e+03     Tracker eIoni
-   38      781 1.61e+03 1.84e+03        40  0.00275     16.3   2.1e+03     Tracker eIoni
-   39      783 1.62e+03 1.86e+03        40   0.0049     29.3  2.13e+03     Tracker eIoni
-   40      783 1.62e+03 1.87e+03      39.9 0.000366     4.39  2.13e+03     Tracker eIoni
-   41      790 1.66e+03 1.96e+03      39.9   0.0165      100  2.23e+03     Tracker StepLimiter
-   42      796 1.69e+03 2.05e+03      39.9   0.0206     99.1  2.33e+03     Tracker eIoni
-   43      800 1.72e+03 2.12e+03      39.9   0.0129     70.2   2.4e+03     Tracker eIoni
-   44      804 1.74e+03 2.19e+03      39.9    0.013     77.4  2.48e+03     Tracker eIoni
-   45      804 1.74e+03 2.19e+03      39.9 0.000217      1.4  2.48e+03     Tracker eIoni
-   46      809 1.77e+03 2.26e+03      39.9   0.0108     67.5  2.55e+03     Tracker eIoni
-   47      815  1.8e+03 2.35e+03      39.8   0.0184      100  2.65e+03     Tracker StepLimiter
-   48      817 1.81e+03 2.37e+03      39.8  0.00275     18.5  2.67e+03     Tracker eIoni
-   49      819 1.82e+03 2.39e+03      39.8  0.00429     26.6  2.69e+03     Tracker eIoni
-   50      820 1.82e+03  2.4e+03      39.8 0.000995     9.32   2.7e+03       World Transportation
-   51      828 1.86e+03  2.5e+03      39.8   0.0229      107  2.81e+03       World eIoni
-   52      838 1.91e+03 2.62e+03      39.8   0.0218      134  2.94e+03       World eIoni
-   53      847 1.95e+03 2.73e+03      39.7   0.0171      114  3.06e+03       World eIoni
-   54      858 1.99e+03 2.84e+03      39.7   0.0214      120  3.18e+03       World eIoni
-   55      867 2.03e+03 2.94e+03      39.7    0.017      106  3.28e+03  OutOfWorld Transportation
+    0  -0.0792   0.0217     -725   0.00187        0        0         0     Chamber initStep
+    1  -0.0797  0.00932     -725         0  0.00187   0.0951    0.0951     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1094,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 28,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      858 1.99e+03 2.84e+03   0.00159        0        0         0       World initStep
-    1      858 1.99e+03 2.84e+03         0  0.00159    0.113     0.113       World eIoni
+    0  -0.0791   0.0217     -726   0.00315        0        0         0     Chamber initStep
+    1  -0.0946  0.00222     -726         0  0.00315    0.195     0.195     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1093,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 27,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      847 1.95e+03 2.73e+03   0.00218        0        0         0       World initStep
-    1      847 1.95e+03 2.73e+03         0  0.00218    0.185     0.185       World eIoni
+    0  -0.0763    0.021     -787    0.0066        0        0         0     Chamber initStep
+    1  -0.0927   0.0894     -787         0   0.0066    0.613     0.613     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1092,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 26,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      838 1.91e+03 2.62e+03    0.0015        0        0         0       World initStep
-    1      838 1.91e+03 2.62e+03         0   0.0015    0.104     0.104       World eIoni
+    0  -0.0738   0.0204     -841   0.00436        0        0         0     Chamber initStep
+    1  -0.0394  0.00591     -841   0.00247   0.0005    0.106     0.106     Chamber eIoni
+    2   -0.046 4.47e-05     -841         0  0.00247    0.139     0.245     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1091,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 83,   Parent ID = 26
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      828 1.86e+03  2.5e+03   0.00681        0        0         0       World initStep
-    1      828 1.86e+03  2.5e+03   0.00227   0.0024    0.597     0.597       World eIoni
-    2      828 1.86e+03  2.5e+03         0  0.00227    0.198     0.795       World eIoni
+    0  -0.0394  0.00591     -841    0.0014        0        0         0     Chamber initStep
+    1  -0.0473  0.00946     -841         0   0.0014   0.0638    0.0638     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1095,   Parent ID = 1091
+* G4Track Information:   Particle = e-,   Track ID = 25,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      828 1.86e+03  2.5e+03   0.00214        0        0         0       World initStep
-    1      828 1.86e+03  2.5e+03         0  0.00214     0.18      0.18       World eIoni
+    0  -0.0721   0.0199     -876   0.00166        0        0         0     Chamber initStep
+    1  -0.0747   0.0095     -876         0  0.00166   0.0804    0.0804     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1090,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 24,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      819 1.82e+03 2.39e+03    0.0137        0        0         0     Tracker initStep
-    1      817 1.82e+03 2.39e+03   0.00982  0.00279     1.85      1.85     Tracker eIoni
-    2      818 1.82e+03 2.39e+03    0.0069  0.00167     1.01      2.87     Tracker eIoni
-    3      819 1.82e+03 2.39e+03   0.00196  0.00494     1.28      4.15     Tracker eIoni
-    4      819 1.82e+03 2.39e+03         0  0.00196    0.157      4.31     Tracker eIoni
+    0  -0.0692   0.0192     -939   0.00124        0        0         0     Tracker initStep
+    1  -0.0639   0.0511     -939         0  0.00124   0.0777    0.0777     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1097,   Parent ID = 1090
+* G4Track Information:   Particle = e-,   Track ID = 23,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      818 1.82e+03 2.39e+03   0.00125        0        0         0     Tracker initStep
-    1      818 1.82e+03 2.39e+03         0  0.00125    0.079     0.079     Tracker eIoni
+    0  -0.0654   0.0182 -1.02e+03   0.00352        0        0         0     Tracker initStep
+    1   -0.207    0.136 -1.02e+03         0  0.00352    0.415     0.415     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1096,   Parent ID = 1090
+* G4Track Information:   Particle = e-,   Track ID = 22,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      817 1.82e+03 2.39e+03   0.00114        0        0         0     Tracker initStep
-    1      817 1.82e+03 2.39e+03         0  0.00114   0.0685    0.0685     Tracker eIoni
+    0  -0.0648    0.018 -1.03e+03   0.00222        0        0         0     Tracker initStep
+    1   -0.143   -0.012 -1.03e+03         0  0.00222    0.191     0.191     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1089,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 21,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      817 1.81e+03 2.37e+03   0.00292        0        0         0     Tracker initStep
-    1      817 1.81e+03 2.37e+03         0  0.00292    0.301     0.301     Tracker eIoni
+    0  -0.0463   0.0131 -1.43e+03   0.00108        0        0         0     Tracker initStep
+    1  -0.0242  -0.0005 -1.43e+03         0  0.00108   0.0636    0.0636     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1088,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 20,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      809 1.77e+03 2.26e+03   0.00256        0        0         0     Tracker initStep
-    1      809 1.77e+03 2.26e+03         0  0.00256    0.241     0.241     Tracker eIoni
+    0  -0.0419    0.012 -1.52e+03   0.00154        0        0         0     Chamber initStep
+    1  -0.0516   0.0105 -1.52e+03         0  0.00154   0.0726    0.0726     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1087,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 19,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      804 1.74e+03 2.19e+03   0.00446        0        0         0     Tracker initStep
-    1      805 1.74e+03 2.19e+03         0  0.00446    0.627     0.627     Tracker eIoni
+    0  -0.0378   0.0108 -1.61e+03   0.00335        0        0         0     Chamber initStep
+    1  -0.0647   0.0118 -1.61e+03         0  0.00335    0.214     0.214     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1086,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 18,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      804 1.74e+03 2.19e+03   0.00106        0        0         0     Tracker initStep
-    1      804 1.74e+03 2.19e+03         0  0.00106   0.0617    0.0617     Tracker eIoni
+    0  -0.0344  0.00983 -1.68e+03   0.00172        0        0         0     Chamber initStep
+    1  -0.0324 -0.00118 -1.68e+03         0  0.00172   0.0844    0.0844     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1085,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 17,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      800 1.72e+03 2.12e+03   0.00137        0        0         0     Tracker initStep
-    1      800 1.72e+03 2.12e+03         0  0.00137   0.0901    0.0901     Tracker eIoni
+    0  -0.0341  0.00975 -1.69e+03    0.0016        0        0         0     Chamber initStep
+    1  -0.0441  0.00714 -1.69e+03         0   0.0016   0.0763    0.0763     Chamber eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1084,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 16,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      796 1.69e+03 2.05e+03   0.00145        0        0         0     Tracker initStep
-    1      796 1.69e+03 2.05e+03         0  0.00145   0.0982    0.0982     Tracker eIoni
+    0  -0.0285  0.00823 -1.81e+03   0.00239        0        0         0     Tracker initStep
+    1     0.06  -0.0262 -1.81e+03         0  0.00239    0.216     0.216     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1083,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 15,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      783 1.62e+03 1.87e+03    0.0573        0        0         0     Tracker initStep
-    1      796 1.63e+03 1.87e+03    0.0492  0.00812     14.6      14.6     Tracker eIoni
-    2      805 1.63e+03 1.87e+03    0.0416  0.00766     11.4        26     Tracker eIoni
-    3      805 1.63e+03 1.86e+03    0.0401 0.000312      1.7      27.7     Tracker eIoni
-    4      806 1.63e+03 1.86e+03    0.0367  0.00198     1.93      29.6     Tracker eIoni
-    5      806 1.63e+03 1.86e+03     0.033 0.000903     1.73      31.4     Tracker eIoni
-    6      807 1.63e+03 1.86e+03    0.0286  0.00289     4.31      35.7     Tracker eIoni
-    7      807 1.62e+03 1.85e+03    0.0241   0.0045     5.22      40.9     Tracker eIoni
-    8      807 1.62e+03 1.85e+03    0.0225 0.000186    0.241      41.1     Tracker eIoni
-    9      808 1.62e+03 1.85e+03    0.0178   0.0047     3.89        45     Tracker eIoni
-   10      809 1.62e+03 1.85e+03    0.0149  0.00144     1.18      46.2     Tracker eIoni
-   11      810 1.62e+03 1.85e+03    0.0115  0.00349     2.57      48.8     Tracker eIoni
-   12      811 1.62e+03 1.85e+03   0.00628  0.00517     2.05      50.8     Tracker eIoni
-   13      812 1.62e+03 1.85e+03    0.0004  0.00588     1.13        52     Tracker eIoni
-   14      812 1.62e+03 1.85e+03         0   0.0004   0.0177        52     Tracker eIoni
+    0  -0.0284  0.00821 -1.81e+03   0.00507        0        0         0     Tracker initStep
+    1    0.223  -0.0941 -1.81e+03   0.00255 0.000749    0.382     0.382     Tracker eIoni
+    2    0.308  -0.0454 -1.81e+03         0  0.00255     0.24     0.622     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1103,   Parent ID = 1083
+* G4Track Information:   Particle = e-,   Track ID = 84,   Parent ID = 15
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      809 1.62e+03 1.85e+03    0.0014        0        0         0     Tracker initStep
-    1      809 1.62e+03 1.85e+03         0   0.0014   0.0938    0.0938     Tracker eIoni
+    0    0.223  -0.0941 -1.81e+03   0.00177        0        0         0     Tracker initStep
+    1    0.245  -0.0906 -1.81e+03         0  0.00177    0.134     0.134     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1102,   Parent ID = 1083
+* G4Track Information:   Particle = e-,   Track ID = 14,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      807 1.62e+03 1.85e+03   0.00145        0        0         0     Tracker initStep
-    1      807 1.62e+03 1.85e+03         0  0.00145   0.0989    0.0989     Tracker eIoni
+    0  -0.0253  0.00737 -1.88e+03   0.00233        0        0         0     Tracker initStep
+    1   0.0653   0.0151 -1.88e+03         0  0.00233    0.207     0.207     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1101,   Parent ID = 1083
+* G4Track Information:   Particle = e-,   Track ID = 13,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      807 1.63e+03 1.86e+03   0.00152        0        0         0     Tracker initStep
-    1      807 1.63e+03 1.86e+03         0  0.00152    0.106     0.106     Tracker eIoni
+    0  -0.0231  0.00676 -1.93e+03   0.00467        0        0         0     Tracker initStep
+    1    -0.13     0.29 -1.93e+03         0  0.00467     0.68      0.68     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1100,   Parent ID = 1083
+* G4Track Information:   Particle = e-,   Track ID = 12,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      806 1.63e+03 1.86e+03   0.00281        0        0         0     Tracker initStep
-    1      806 1.63e+03 1.86e+03         0  0.00281    0.282     0.282     Tracker eIoni
+    0  -0.0208  0.00613 -1.98e+03   0.00131        0        0         0     Tracker initStep
+    1  -0.0437  -0.0207 -1.98e+03         0  0.00131   0.0843    0.0843     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1099,   Parent ID = 1083
+* G4Track Information:   Particle = e-,   Track ID = 11,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      806 1.63e+03 1.86e+03   0.00138        0        0         0     Tracker initStep
-    1      806 1.63e+03 1.86e+03         0  0.00138   0.0913    0.0913     Tracker eIoni
+    0   -0.019  0.00563 -2.02e+03   0.00113        0        0         0     Tracker initStep
+    1  -0.0338   -0.018 -2.02e+03         0  0.00113   0.0677    0.0677     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1098,   Parent ID = 1083
+* G4Track Information:   Particle = e-,   Track ID = 10,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      805 1.63e+03 1.86e+03   0.00117        0        0         0     Tracker initStep
-    1      805 1.63e+03 1.86e+03         0  0.00117   0.0713    0.0713     Tracker eIoni
+    0 -0.00315  0.00118 -2.36e+03   0.00733        0        0         0     Tracker initStep
+    1   -0.442    -0.18 -2.36e+03   0.00388  0.00237    0.635     0.635     Tracker eIoni
+    2   -0.574   -0.216 -2.36e+03         0  0.00388    0.491      1.13     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1082,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 85,   Parent ID = 10
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      783 1.62e+03 1.86e+03   0.00359        0        0         0     Tracker initStep
-    1      783 1.62e+03 1.86e+03         0  0.00359    0.428     0.428     Tracker eIoni
+    0   -0.442    -0.18 -2.36e+03   0.00108        0        0         0     Tracker initStep
+    1   -0.421   -0.186 -2.36e+03         0  0.00108   0.0639    0.0639     Tracker eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1081,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 9,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      781 1.61e+03 1.84e+03   0.00276        0        0         0     Tracker initStep
-    1      781 1.61e+03 1.84e+03         0  0.00276    0.274     0.274     Tracker eIoni
+    0 -0.00137 0.000677 -2.4e+03      1.24        0        0         0      Target initStep
+    1   0.0493  -0.0139 -2.4e+03         0     1.24    0.939     0.939      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1080,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 8,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      780 1.61e+03 1.82e+03   0.00688        0        0         0     Tracker initStep
-    1      780  1.6e+03 1.82e+03   0.00168   0.0052     1.28      1.28     Tracker eIoni
-    2      780  1.6e+03 1.82e+03         0  0.00168    0.123       1.4     Tracker eIoni
+    0 -0.000501 0.000278 -2.42e+03      1.91        0        0         0      Target initStep
+    1   0.0796    0.037 -2.42e+03     0.339     1.57     1.37      1.37      Target eIoni
+    2   0.0884   0.0441 -2.42e+03         0    0.339    0.178      1.55      Target eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1079,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 7,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      772 1.57e+03 1.71e+03   0.00777        0        0         0     Tracker initStep
-    1      772 1.56e+03 1.71e+03   0.00253  0.00525     1.46      1.46     Tracker eIoni
-    2      772 1.56e+03 1.71e+03         0  0.00253    0.236       1.7     Tracker eIoni
+    0 -2.81e-05  4.9e-05 -2.49e+03   0.00123        0        0         0       World initStep
+    1 -0.00482  -0.0314 -2.49e+03         0  0.00123   0.0767    0.0767       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1078,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 6,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      771 1.56e+03 1.71e+03   0.00127        0        0         0     Tracker initStep
-    1      771 1.56e+03 1.71e+03         0  0.00127   0.0809    0.0809     Tracker eIoni
+    0 -2.66e-05  4.6e-05 -2.53e+03    0.0074        0        0         0       World initStep
+    1   -0.639    0.239 -2.53e+03   0.00116  0.00624     1.39      1.39       World eIoni
+    2   -0.617    0.249 -2.53e+03         0  0.00116   0.0708      1.46       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1076,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 5,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      763 1.53e+03 1.61e+03   0.00222        0        0         0     Chamber initStep
-    1      763 1.53e+03 1.61e+03         0  0.00222     0.12      0.12     Chamber eIoni
+    0 -2.21e-05 4.32e-05 -2.55e+03   0.00142        0        0         0       World initStep
+    1   0.0378  -0.0134 -2.55e+03         0  0.00142   0.0952    0.0952       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1075,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 4,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      755  1.5e+03 1.54e+03   0.00554        0        0         0     Chamber initStep
-    1      755  1.5e+03 1.54e+03         0  0.00554    0.386     0.386     Chamber eIoni
+    0 -2.12e-05 4.47e-06 -2.72e+03   0.00131        0        0         0       World initStep
+    1   0.0262   0.0237 -2.72e+03         0  0.00131   0.0845    0.0845       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1074,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 3,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      745 1.47e+03 1.46e+03   0.00147        0        0         0     Tracker initStep
-    1      745 1.47e+03 1.46e+03         0  0.00147      0.1       0.1     Tracker eIoni
+    0 -6.17e-06 3.05e-06 -2.82e+03   0.00138        0        0         0       World initStep
+    1   -0.018   0.0341 -2.82e+03         0  0.00138   0.0914    0.0914       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1073,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 2,   Parent ID = 1
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      738 1.45e+03 1.42e+03   0.00172        0        0         0     Tracker initStep
-    1      738 1.45e+03 1.42e+03         0  0.00172    0.128     0.128     Tracker eIoni
+    0 -4.87e-06  2.9e-06 -2.83e+03   0.00646        0        0         0       World initStep
+    1    0.421    -0.27 -2.83e+03   0.00231  0.00231    0.845     0.845       World eIoni
+    2    0.376   -0.322 -2.83e+03         0  0.00231    0.204      1.05       World eIoni
 
 *********************************************************************************************************
-* G4Track Information:   Particle = e-,   Track ID = 1072,   Parent ID = 507
+* G4Track Information:   Particle = e-,   Track ID = 86,   Parent ID = 2
 *********************************************************************************************************
 
 Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
-    0      641 1.22e+03      853   0.00195        0        0         0     Chamber initStep
-    1      641 1.22e+03      853         0  0.00195      0.1       0.1     Chamber eIoni
-
-**************
-============================================================================================
-================= lines above cut to keep file within limits ===============================
-============================================================================================
-
-    459 hits stored in this event
+    0    0.421    -0.27 -2.83e+03   0.00183        0        0         0       World initStep
+    1    0.455    -0.25 -2.83e+03         0  0.00183    0.141     0.141       World eIoni
+>>> Event: 0
+    63 hits stored in this event
+### Run 2 starts.
+--> Event 0 starts.
+>>> Event: 0
+    39 hits stored in this event
+>>> Event: 1
+    0 hits stored in this event
+>>> Event: 2
+    0 hits stored in this event
+>>> Event: 3
+    0 hits stored in this event
+>>> Event: 4
+    0 hits stored in this event
+>>> Event: 5
+    0 hits stored in this event
+>>> Event: 6
+    0 hits stored in this event
+>>> Event: 7
+    0 hits stored in this event
+>>> Event: 8
+    0 hits stored in this event
+>>> Event: 9
+    0 hits stored in this event
+>>> Event: 10
+    0 hits stored in this event
+>>> Event: 11
+    0 hits stored in this event
+>>> Event: 12
+    82 hits stored in this event
+>>> Event: 13
+    0 hits stored in this event
+>>> Event: 14
+    10 hits stored in this event
+>>> Event: 15
+    0 hits stored in this event
+>>> Event: 16
+    0 hits stored in this event
+>>> Event: 17
+    0 hits stored in this event
+>>> Event: 18
+    0 hits stored in this event
+>>> Event: 19
+    0 hits stored in this event
+>>> Event: 20
+    0 hits stored in this event
+>>> Event: 21
+    0 hits stored in this event
+>>> Event: 22
+    0 hits stored in this event
+>>> Event: 23
+    0 hits stored in this event
+>>> Event: 24
+    0 hits stored in this event
+>>> Event: 25
+    0 hits stored in this event
+>>> Event: 26
+    0 hits stored in this event
+>>> Event: 27
+    0 hits stored in this event
+>>> Event: 28
+    5 hits stored in this event
+>>> Event: 29
+    0 hits stored in this event
+>>> Event: 30
+    0 hits stored in this event
+>>> Event: 31
+    0 hits stored in this event
+>>> Event: 32
+    0 hits stored in this event
+>>> Event: 33
+    0 hits stored in this event
+>>> Event: 34
+    0 hits stored in this event
+>>> Event: 35
+    0 hits stored in this event
+>>> Event: 36
+    0 hits stored in this event
+>>> Event: 37
+    124 hits stored in this event
+>>> Event: 38
+    149 hits stored in this event
+>>> Event: 39
+    0 hits stored in this event
+>>> Event: 40
+    0 hits stored in this event
+>>> Event: 41
+    0 hits stored in this event
+>>> Event: 42
+    0 hits stored in this event
+>>> Event: 43
+    0 hits stored in this event
+>>> Event: 44
+    0 hits stored in this event
+>>> Event: 45
+    28 hits stored in this event
+>>> Event: 46
+    0 hits stored in this event
+>>> Event: 47
+    0 hits stored in this event
+>>> Event: 48
+    0 hits stored in this event
+>>> Event: 49
+    0 hits stored in this event
+>>> Event: 50
+    0 hits stored in this event
+>>> Event: 51
+    0 hits stored in this event
+>>> Event: 52
+    0 hits stored in this event
+>>> Event: 53
+    0 hits stored in this event
+>>> Event: 54
+    60 hits stored in this event
+>>> Event: 55
+    161 hits stored in this event
+>>> Event: 56
+    0 hits stored in this event
+>>> Event: 57
+    0 hits stored in this event
+>>> Event: 58
+    23 hits stored in this event
+>>> Event: 59
+    0 hits stored in this event
+>>> Event: 60
+    0 hits stored in this event
+>>> Event: 61
+    0 hits stored in this event
+>>> Event: 62
+    0 hits stored in this event
+>>> Event: 63
+    0 hits stored in this event
+>>> Event: 64
+    0 hits stored in this event
+>>> Event: 65
+    0 hits stored in this event
+>>> Event: 66
+    0 hits stored in this event
+>>> Event: 67
+    0 hits stored in this event
+>>> Event: 68
+    9 hits stored in this event
+>>> Event: 69
+    0 hits stored in this event
+>>> Event: 70
+    0 hits stored in this event
+>>> Event: 71
+    0 hits stored in this event
+>>> Event: 72
+    0 hits stored in this event
+>>> Event: 73
+    0 hits stored in this event
+>>> Event: 74
+    0 hits stored in this event
+>>> Event: 75
+    0 hits stored in this event
+>>> Event: 76
+    0 hits stored in this event
+>>> Event: 77
+    0 hits stored in this event
+>>> Event: 78
+    0 hits stored in this event
+>>> Event: 79
+    0 hits stored in this event
+>>> Event: 80
+    0 hits stored in this event
+>>> Event: 81
+    0 hits stored in this event
+>>> Event: 82
+    0 hits stored in this event
+>>> Event: 83
+    0 hits stored in this event
+>>> Event: 84
+    0 hits stored in this event
+>>> Event: 85
+    0 hits stored in this event
+>>> Event: 86
+    0 hits stored in this event
+>>> Event: 87
+    0 hits stored in this event
+>>> Event: 88
+    0 hits stored in this event
 >>> Event: 89
-    89 hits stored in this event
+    0 hits stored in this event
 >>> Event: 90
-    167 hits stored in this event
+    0 hits stored in this event
 >>> Event: 91
-    83 hits stored in this event
+    0 hits stored in this event
 >>> Event: 92
-    64 hits stored in this event
+    0 hits stored in this event
 >>> Event: 93
-    70 hits stored in this event
+    0 hits stored in this event
 >>> Event: 94
+    0 hits stored in this event
+>>> Event: 95
+    0 hits stored in this event
+>>> Event: 96
+    20 hits stored in this event
+>>> Event: 97
+    0 hits stored in this event
+>>> Event: 98
+    42 hits stored in this event
+>>> Event: 99
+    0 hits stored in this event
+### Run 3 starts.
+--> Event 0 starts.
+>>> Event: 0
+    5730 hits stored in this event
+>>> Event: 1
+    85 hits stored in this event
+>>> Event: 2
+    60 hits stored in this event
+>>> Event: 3
+    97 hits stored in this event
+>>> Event: 4
+    191 hits stored in this event
+>>> Event: 5
+    149 hits stored in this event
+>>> Event: 6
+    5559 hits stored in this event
+>>> Event: 7
+    194 hits stored in this event
+>>> Event: 8
+    175 hits stored in this event
+>>> Event: 9
+    80 hits stored in this event
+>>> Event: 10
+    83 hits stored in this event
+>>> Event: 11
+    403 hits stored in this event
+>>> Event: 12
+    654 hits stored in this event
+>>> Event: 13
+    180 hits stored in this event
+>>> Event: 14
+    137 hits stored in this event
+>>> Event: 15
     56 hits stored in this event
+>>> Event: 16
+    267 hits stored in this event
+>>> Event: 17
+    74 hits stored in this event
+>>> Event: 18
+    80 hits stored in this event
+>>> Event: 19
+    1216 hits stored in this event
+>>> Event: 20
+    361 hits stored in this event
+>>> Event: 21
+    51 hits stored in this event
+>>> Event: 22
+    62 hits stored in this event
+>>> Event: 23
+    172 hits stored in this event
+>>> Event: 24
+    59 hits stored in this event
+>>> Event: 25
+    84 hits stored in this event
+>>> Event: 26
+    77 hits stored in this event
+>>> Event: 27
+    112 hits stored in this event
+>>> Event: 28
+    105 hits stored in this event
+>>> Event: 29
+    79 hits stored in this event
+>>> Event: 30
+    78 hits stored in this event
+>>> Event: 31
+    93 hits stored in this event
+>>> Event: 32
+    195 hits stored in this event
+>>> Event: 33
+    82 hits stored in this event
+>>> Event: 34
+    212 hits stored in this event
+>>> Event: 35
+    121 hits stored in this event
+>>> Event: 36
+    83 hits stored in this event
+>>> Event: 37
+    188 hits stored in this event
+>>> Event: 38
+    89 hits stored in this event
+>>> Event: 39
+    4775 hits stored in this event
+>>> Event: 40
+    65 hits stored in this event
+>>> Event: 41
+    842 hits stored in this event
+>>> Event: 42
+    111 hits stored in this event
+>>> Event: 43
+    87 hits stored in this event
+>>> Event: 44
+    311 hits stored in this event
+>>> Event: 45
+    55 hits stored in this event
+>>> Event: 46
+    74 hits stored in this event
+>>> Event: 47
+    173 hits stored in this event
+>>> Event: 48
+    78 hits stored in this event
+>>> Event: 49
+    45 hits stored in this event
+>>> Event: 50
+    156 hits stored in this event
+>>> Event: 51
+    75 hits stored in this event
+>>> Event: 52
+    83 hits stored in this event
+>>> Event: 53
+    101 hits stored in this event
+>>> Event: 54
+    184 hits stored in this event
+>>> Event: 55
+    116 hits stored in this event
+>>> Event: 56
+    78 hits stored in this event
+>>> Event: 57
+    97 hits stored in this event
+>>> Event: 58
+    97 hits stored in this event
+>>> Event: 59
+    139 hits stored in this event
+>>> Event: 60
+    68 hits stored in this event
+>>> Event: 61
+    86 hits stored in this event
+>>> Event: 62
+    80 hits stored in this event
+>>> Event: 63
+    1123 hits stored in this event
+>>> Event: 64
+    251 hits stored in this event
+>>> Event: 65
+    133 hits stored in this event
+>>> Event: 66
+    107 hits stored in this event
+>>> Event: 67
+    64 hits stored in this event
+>>> Event: 68
+    81 hits stored in this event
+>>> Event: 69
+    61 hits stored in this event
+>>> Event: 70
+    64 hits stored in this event
+>>> Event: 71
+    173 hits stored in this event
+>>> Event: 72
+    95 hits stored in this event
+>>> Event: 73
+    95 hits stored in this event
+>>> Event: 74
+    68 hits stored in this event
+>>> Event: 75
+    74 hits stored in this event
+>>> Event: 76
+    987 hits stored in this event
+>>> Event: 77
+    61 hits stored in this event
+>>> Event: 78
+    22111 hits stored in this event
+>>> Event: 79
+    92 hits stored in this event
+>>> Event: 80
+    192 hits stored in this event
+>>> Event: 81
+    267 hits stored in this event
+>>> Event: 82
+    59 hits stored in this event
+>>> Event: 83
+    61 hits stored in this event
+>>> Event: 84
+    1228 hits stored in this event
+>>> Event: 85
+    427 hits stored in this event
+>>> Event: 86
+    151 hits stored in this event
+>>> Event: 87
+    1356 hits stored in this event
+>>> Event: 88
+    99 hits stored in this event
+>>> Event: 89
+    2258 hits stored in this event
+>>> Event: 90
+    39 hits stored in this event
+>>> Event: 91
+    232 hits stored in this event
+>>> Event: 92
+    110 hits stored in this event
+>>> Event: 93
+    100 hits stored in this event
+>>> Event: 94
+    226 hits stored in this event
 >>> Event: 95
-    123 hits stored in this event
+    310 hits stored in this event
 >>> Event: 96
-    50 hits stored in this event
+    73 hits stored in this event
 >>> Event: 97
-    1194 hits stored in this event
+    115 hits stored in this event
 >>> Event: 98
-    710 hits stored in this event
+    107 hits stored in this event
 >>> Event: 99
-    1145 hits stored in this event
+    143 hits stored in this event
 Graphics systems deleted.
 Visualization Manager deleting...
diff --git a/examples/basic/B3/exampleB3.out b/examples/basic/B3/exampleB3.out
index 67f9766c7b5..cf7247dab69 100644
--- a/examples/basic/B3/exampleB3.out
+++ b/examples/basic/B3/exampleB3.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/basic/B4/B4a/exampleB4a.out b/examples/basic/B4/B4a/exampleB4a.out
index 78fd0a9c87c..5b5950bd55f 100644
--- a/examples/basic/B4/B4a/exampleB4a.out
+++ b/examples/basic/B4/B4a/exampleB4a.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -773,15 +773,15 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 ... open Root analysis file : B4.root - done
 --> Event 0 starts.
 ---> End of event: 0
-   Absorber: total energy:   290.5 MeV       total track length: 20.7236 cm 
-        Gap: total energy: 6.15149 MeV       total track length: 2.96967 cm 
+   Absorber: total energy: 272.899 MeV       total track length: 19.3313 cm 
+        Gap: total energy: 12.0254 MeV       total track length: 6.08496 cm 
 
  ----> print histograms statistic for the entire run 
 
- EAbs : mean = 290.5 MeV rms = 0 eV 
- EGap : mean = 6.15149 MeV rms = 0 eV 
- LAbs : mean = 20.7236 cm  rms = 0 fm 
- LGap : mean = 2.96967 cm  rms = 0 fm 
+ EAbs : mean = 272.899 MeV rms = 0 eV 
+ EGap : mean = 12.0254 MeV rms = 0 eV 
+ LAbs : mean = 19.3313 cm  rms = 0 fm 
+ LGap : mean = 6.08496 cm  rms = 0 fm 
 ... write Root file : B4.root - done
      Transportation,                msc,              hIoni,            ionIoni
              hBrems,          hPairProd,        CoulombScat,              eIoni
@@ -1162,15 +1162,15 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 ... open Root analysis file : B4.root - done
 --> Event 0 starts.
 ---> End of event: 0
-   Absorber: total energy: 275.856 MeV       total track length: 20.0621 cm 
-        Gap: total energy: 16.9134 MeV       total track length: 8.51208 cm 
+   Absorber: total energy: 273.389 MeV       total track length: 19.4746 cm 
+        Gap: total energy: 17.6505 MeV       total track length:   8.609 cm 
 
  ----> print histograms statistic for the entire run 
 
- EAbs : mean = 275.856 MeV rms = 0 eV 
- EGap : mean = 16.9134 MeV rms = 0 eV 
- LAbs : mean = 20.0621 cm  rms = 0 fm 
- LGap : mean = 8.51208 cm  rms = 0 fm 
+ EAbs : mean = 273.389 MeV rms = 0 eV 
+ EGap : mean = 17.6505 MeV rms = 0 eV 
+ LAbs : mean = 19.4746 cm  rms = 0 fm 
+ LGap : mean = 8.609 cm  rms = 0 fm 
 ... write Root file : B4.root - done
 
 phot:   for  gamma    SubType= 12  BuildTable= 0
@@ -1536,15 +1536,15 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 ... open Root analysis file : B4.root - done
 --> Event 0 starts.
 ---> End of event: 0
-   Absorber: total energy: 460.354 MeV       total track length: 32.6238 cm 
-        Gap: total energy: 17.3833 MeV       total track length:  8.5537 cm 
+   Absorber: total energy: 461.718 MeV       total track length: 32.8224 cm 
+        Gap: total energy:  28.007 MeV       total track length: 13.5479 cm 
 
  ----> print histograms statistic for the entire run 
 
- EAbs : mean = 460.354 MeV rms = 0 eV 
- EGap : mean = 17.3833 MeV rms = 0 eV 
- LAbs : mean = 32.6238 cm  rms = 0 fm 
- LGap : mean = 8.5537 cm  rms = 0 fm 
+ EAbs : mean = 461.718 MeV rms = 0 eV 
+ EGap : mean = 28.007 MeV rms = 0 eV 
+ LAbs : mean = 32.8224 cm  rms = 0 fm 
+ LGap : mean = 13.5479 cm  rms = 0 fm 
 ... write Root file : B4.root - done
 Graphics systems deleted.
 Visualization Manager deleting...
diff --git a/examples/basic/B4/B4b/exampleB4b.out b/examples/basic/B4/B4b/exampleB4b.out
index 17c78514e92..c37e8883d84 100644
--- a/examples/basic/B4/B4b/exampleB4b.out
+++ b/examples/basic/B4/B4b/exampleB4b.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -774,15 +774,15 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 ... open Root analysis file : B4.root - done
 --> Event 0 starts.
 ---> End of event: 0
-   Absorber: total energy:   290.5 MeV       total track length: 20.7236 cm 
-        Gap: total energy: 6.15149 MeV       total track length: 2.96967 cm 
+   Absorber: total energy: 272.899 MeV       total track length: 19.3313 cm 
+        Gap: total energy: 12.0254 MeV       total track length: 6.08496 cm 
 
  ----> print histograms statistic for the entire run 
 
- EAbs : mean = 290.5 MeV rms = 0 eV 
- EGap : mean = 6.15149 MeV rms = 0 eV 
- LAbs : mean = 20.7236 cm  rms = 0 fm 
- LGap : mean = 2.96967 cm  rms = 0 fm 
+ EAbs : mean = 272.899 MeV rms = 0 eV 
+ EGap : mean = 12.0254 MeV rms = 0 eV 
+ LAbs : mean = 19.3313 cm  rms = 0 fm 
+ LGap : mean = 6.08496 cm  rms = 0 fm 
 ... write Root file : B4.root - done
      Transportation,                msc,              hIoni,            ionIoni
              hBrems,          hPairProd,        CoulombScat,              eIoni
@@ -1164,15 +1164,15 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 ... open Root analysis file : B4.root - done
 --> Event 0 starts.
 ---> End of event: 0
-   Absorber: total energy: 275.856 MeV       total track length: 20.0621 cm 
-        Gap: total energy: 16.9134 MeV       total track length: 8.51208 cm 
+   Absorber: total energy: 273.389 MeV       total track length: 19.4746 cm 
+        Gap: total energy: 17.6505 MeV       total track length:   8.609 cm 
 
  ----> print histograms statistic for the entire run 
 
- EAbs : mean = 275.856 MeV rms = 0 eV 
- EGap : mean = 16.9134 MeV rms = 0 eV 
- LAbs : mean = 20.0621 cm  rms = 0 fm 
- LGap : mean = 8.51208 cm  rms = 0 fm 
+ EAbs : mean = 273.389 MeV rms = 0 eV 
+ EGap : mean = 17.6505 MeV rms = 0 eV 
+ LAbs : mean = 19.4746 cm  rms = 0 fm 
+ LGap : mean = 8.609 cm  rms = 0 fm 
 ... write Root file : B4.root - done
 
 phot:   for  gamma    SubType= 12  BuildTable= 0
@@ -1539,15 +1539,15 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 ... open Root analysis file : B4.root - done
 --> Event 0 starts.
 ---> End of event: 0
-   Absorber: total energy: 460.354 MeV       total track length: 32.6238 cm 
-        Gap: total energy: 17.3833 MeV       total track length:  8.5537 cm 
+   Absorber: total energy: 461.718 MeV       total track length: 32.8224 cm 
+        Gap: total energy:  28.007 MeV       total track length: 13.5479 cm 
 
  ----> print histograms statistic for the entire run 
 
- EAbs : mean = 460.354 MeV rms = 0 eV 
- EGap : mean = 17.3833 MeV rms = 0 eV 
- LAbs : mean = 32.6238 cm  rms = 0 fm 
- LGap : mean = 8.5537 cm  rms = 0 fm 
+ EAbs : mean = 461.718 MeV rms = 0 eV 
+ EGap : mean = 28.007 MeV rms = 0 eV 
+ LAbs : mean = 32.8224 cm  rms = 0 fm 
+ LGap : mean = 13.5479 cm  rms = 0 fm 
 ... write Root file : B4.root - done
 Graphics systems deleted.
 Visualization Manager deleting...
diff --git a/examples/basic/B4/B4c/exampleB4c.out b/examples/basic/B4/B4c/exampleB4c.out
index 78fd0a9c87c..5b5950bd55f 100644
--- a/examples/basic/B4/B4c/exampleB4c.out
+++ b/examples/basic/B4/B4c/exampleB4c.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -773,15 +773,15 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 ... open Root analysis file : B4.root - done
 --> Event 0 starts.
 ---> End of event: 0
-   Absorber: total energy:   290.5 MeV       total track length: 20.7236 cm 
-        Gap: total energy: 6.15149 MeV       total track length: 2.96967 cm 
+   Absorber: total energy: 272.899 MeV       total track length: 19.3313 cm 
+        Gap: total energy: 12.0254 MeV       total track length: 6.08496 cm 
 
  ----> print histograms statistic for the entire run 
 
- EAbs : mean = 290.5 MeV rms = 0 eV 
- EGap : mean = 6.15149 MeV rms = 0 eV 
- LAbs : mean = 20.7236 cm  rms = 0 fm 
- LGap : mean = 2.96967 cm  rms = 0 fm 
+ EAbs : mean = 272.899 MeV rms = 0 eV 
+ EGap : mean = 12.0254 MeV rms = 0 eV 
+ LAbs : mean = 19.3313 cm  rms = 0 fm 
+ LGap : mean = 6.08496 cm  rms = 0 fm 
 ... write Root file : B4.root - done
      Transportation,                msc,              hIoni,            ionIoni
              hBrems,          hPairProd,        CoulombScat,              eIoni
@@ -1162,15 +1162,15 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 ... open Root analysis file : B4.root - done
 --> Event 0 starts.
 ---> End of event: 0
-   Absorber: total energy: 275.856 MeV       total track length: 20.0621 cm 
-        Gap: total energy: 16.9134 MeV       total track length: 8.51208 cm 
+   Absorber: total energy: 273.389 MeV       total track length: 19.4746 cm 
+        Gap: total energy: 17.6505 MeV       total track length:   8.609 cm 
 
  ----> print histograms statistic for the entire run 
 
- EAbs : mean = 275.856 MeV rms = 0 eV 
- EGap : mean = 16.9134 MeV rms = 0 eV 
- LAbs : mean = 20.0621 cm  rms = 0 fm 
- LGap : mean = 8.51208 cm  rms = 0 fm 
+ EAbs : mean = 273.389 MeV rms = 0 eV 
+ EGap : mean = 17.6505 MeV rms = 0 eV 
+ LAbs : mean = 19.4746 cm  rms = 0 fm 
+ LGap : mean = 8.609 cm  rms = 0 fm 
 ... write Root file : B4.root - done
 
 phot:   for  gamma    SubType= 12  BuildTable= 0
@@ -1536,15 +1536,15 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 ... open Root analysis file : B4.root - done
 --> Event 0 starts.
 ---> End of event: 0
-   Absorber: total energy: 460.354 MeV       total track length: 32.6238 cm 
-        Gap: total energy: 17.3833 MeV       total track length:  8.5537 cm 
+   Absorber: total energy: 461.718 MeV       total track length: 32.8224 cm 
+        Gap: total energy:  28.007 MeV       total track length: 13.5479 cm 
 
  ----> print histograms statistic for the entire run 
 
- EAbs : mean = 460.354 MeV rms = 0 eV 
- EGap : mean = 17.3833 MeV rms = 0 eV 
- LAbs : mean = 32.6238 cm  rms = 0 fm 
- LGap : mean = 8.5537 cm  rms = 0 fm 
+ EAbs : mean = 461.718 MeV rms = 0 eV 
+ EGap : mean = 28.007 MeV rms = 0 eV 
+ LAbs : mean = 32.8224 cm  rms = 0 fm 
+ LGap : mean = 13.5479 cm  rms = 0 fm 
 ... write Root file : B4.root - done
 Graphics systems deleted.
 Visualization Manager deleting...
diff --git a/examples/basic/B4/B4d/exampleB4d.out b/examples/basic/B4/B4d/exampleB4d.out
index 65366936dca..286f2262820 100644
--- a/examples/basic/B4/B4d/exampleB4d.out
+++ b/examples/basic/B4/B4d/exampleB4d.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -779,15 +779,15 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 ... open Root analysis file : B4.root - done
 --> Event 0 starts.
 ---> End of event: 0
-   Absorber: total energy:   290.5 MeV       total track length: 20.7236 cm 
-        Gap: total energy: 6.15149 MeV       total track length: 2.96967 cm 
+   Absorber: total energy: 272.899 MeV       total track length: 19.3313 cm 
+        Gap: total energy: 12.0254 MeV       total track length: 6.08496 cm 
 
  ----> print histograms statistic for the entire run 
 
- EAbs : mean = 290.5 MeV rms = 0 eV 
- EGap : mean = 6.15149 MeV rms = 0 eV 
- LAbs : mean = 20.7236 cm  rms = 0 fm 
- LGap : mean = 2.96967 cm  rms = 0 fm 
+ EAbs : mean = 272.899 MeV rms = 0 eV 
+ EGap : mean = 12.0254 MeV rms = 0 eV 
+ LAbs : mean = 19.3313 cm  rms = 0 fm 
+ LGap : mean = 6.08496 cm  rms = 0 fm 
 ... write Root file : B4.root - done
      Transportation,                msc,              hIoni,            ionIoni
              hBrems,          hPairProd,        CoulombScat,              eIoni
@@ -1168,15 +1168,15 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 ... open Root analysis file : B4.root - done
 --> Event 0 starts.
 ---> End of event: 0
-   Absorber: total energy: 275.856 MeV       total track length: 20.0621 cm 
-        Gap: total energy: 16.9134 MeV       total track length: 8.51208 cm 
+   Absorber: total energy: 273.389 MeV       total track length: 19.4746 cm 
+        Gap: total energy: 17.6505 MeV       total track length:   8.609 cm 
 
  ----> print histograms statistic for the entire run 
 
- EAbs : mean = 275.856 MeV rms = 0 eV 
- EGap : mean = 16.9134 MeV rms = 0 eV 
- LAbs : mean = 20.0621 cm  rms = 0 fm 
- LGap : mean = 8.51208 cm  rms = 0 fm 
+ EAbs : mean = 273.389 MeV rms = 0 eV 
+ EGap : mean = 17.6505 MeV rms = 0 eV 
+ LAbs : mean = 19.4746 cm  rms = 0 fm 
+ LGap : mean = 8.609 cm  rms = 0 fm 
 ... write Root file : B4.root - done
 
 phot:   for  gamma    SubType= 12  BuildTable= 0
@@ -1542,15 +1542,15 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 ... open Root analysis file : B4.root - done
 --> Event 0 starts.
 ---> End of event: 0
-   Absorber: total energy: 460.354 MeV       total track length: 32.6238 cm 
-        Gap: total energy: 17.3833 MeV       total track length:  8.5537 cm 
+   Absorber: total energy: 461.718 MeV       total track length: 32.8224 cm 
+        Gap: total energy:  28.007 MeV       total track length: 13.5479 cm 
 
  ----> print histograms statistic for the entire run 
 
- EAbs : mean = 460.354 MeV rms = 0 eV 
- EGap : mean = 17.3833 MeV rms = 0 eV 
- LAbs : mean = 32.6238 cm  rms = 0 fm 
- LGap : mean = 8.5537 cm  rms = 0 fm 
+ EAbs : mean = 461.718 MeV rms = 0 eV 
+ EGap : mean = 28.007 MeV rms = 0 eV 
+ LAbs : mean = 32.8224 cm  rms = 0 fm 
+ LGap : mean = 13.5479 cm  rms = 0 fm 
 ... write Root file : B4.root - done
 Graphics systems deleted.
 Visualization Manager deleting...
diff --git a/examples/basic/B5/exampleB5.out b/examples/basic/B5/exampleB5.out
index 816a4f9ae81..d34402d2c4f 100644
--- a/examples/basic/B5/exampleB5.out
+++ b/examples/basic/B5/exampleB5.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -872,23 +872,23 @@ 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.9870028712629 (nsec)
+  Hodoscope[7] 4.9870028709953 (nsec)
 Hodoscope 2 has 1 hits.
-  Hodoscope[9] 43.187444464523 (nsec)
+  Hodoscope[9] 43.187615731814 (nsec)
 Drift Chamber 1 has 5 hits.
-  Layer[0] : time 6.6712421741153 (nsec) --- local (x,y) -0.018055993581656, -0.030579643919826
-  Layer[1] : time 8.3391361166254 (nsec) --- local (x,y) -0.029029061328876, -0.032923127319307
-  Layer[2] : time 10.007030059373 (nsec) --- local (x,y) -0.040736791572932, -0.03431052366537
-  Layer[3] : time 11.674924002297 (nsec) --- local (x,y) -0.052772715113419, -0.037424322431283
-  Layer[4] : time 13.342817945645 (nsec) --- local (x,y) -0.067627464690477, -0.041063444356612
+  Layer[0] : time 6.671242175571 (nsec) --- local (x,y) -0.02306421205646, -0.039876913765224
+  Layer[1] : time 8.3391361202029 (nsec) --- local (x,y) -0.037777441424913, -0.062516370125356
+  Layer[2] : time 10.007030065344 (nsec) --- local (x,y) -0.051318415994777, -0.087740554849281
+  Layer[3] : time 11.674924010884 (nsec) --- local (x,y) -0.063581616036159, -0.11508278192981
+  Layer[4] : time 13.342817956992 (nsec) --- local (x,y) -0.073393761398242, -0.14566853696996
 Drift Chamber 2 has 5 hits.
-  Layer[0] : time 34.849810370171 (nsec) --- local (x,y) -147.90625166464, -0.15079550658379
-  Layer[1] : time 36.520612152637 (nsec) --- local (x,y) -177.44384093753, -0.15132452750056
-  Layer[2] : time 38.191413802723 (nsec) --- local (x,y) -206.98075639013, -0.15083670992921
-  Layer[3] : time 39.862215587132 (nsec) --- local (x,y) -236.51835374628, -0.14961440938822
-  Layer[4] : time 41.533016999882 (nsec) --- local (x,y) -266.05406105987, -0.14839916224833
-EM Calorimeter has 46 hits. Total Edep is 549.95317926417 (MeV)
-Hadron Calorimeter has 14 hits. Total Edep is 3544.103565215 (MeV)
+  Layer[0] : time 34.849996574401 (nsec) --- local (x,y) -147.72929363316, -0.59898049431774
+  Layer[1] : time 36.520795035886 (nsec) --- local (x,y) -177.24996965857, -0.63957174566982
+  Layer[2] : time 38.191593643556 (nsec) --- local (x,y) -206.77139042282, -0.67865428682806
+  Layer[3] : time 39.862392338774 (nsec) --- local (x,y) -236.29325524186, -0.71804526386686
+  Layer[4] : time 41.533190995733 (nsec) --- local (x,y) -265.81492340307, -0.75834361335697
+EM Calorimeter has 39 hits. Total Edep is 356.90367679193 (MeV)
+Hadron Calorimeter has 19 hits. Total Edep is 4209.6461800617 (MeV)
 ... write Root file : B5.root - done
 ### Run 1 starts.
 ... open Root analysis file : B5.root - done
@@ -896,23 +896,33 @@ Hadron Calorimeter has 14 hits. Total Edep is 3544.103565215 (MeV)
 
 >>> Event 0 >>> Simulation truth : pi+ (-0,0,100000)
 Hodoscope 1 has 1 hits.
-  Hodoscope[7] 4.9867880840961 (nsec)
-Hodoscope 2 has 1 hits.
-  Hodoscope[10] 42.694730870148 (nsec)
+  Hodoscope[7] 4.9867880839613 (nsec)
+Hodoscope 2 has 6 hits.
+  Hodoscope[10] 42.694238715201 (nsec)
+  Hodoscope[15] 57.816051264574 (nsec)
+  Hodoscope[23] 637.26955183134 (nsec)
+  Hodoscope[4] 1494.3399592566 (nsec)
+  Hodoscope[16] 1205.1627889517 (nsec)
+  Hodoscope[14] 574.42233837711 (nsec)
 Drift Chamber 1 has 5 hits.
-  Layer[0] : time 6.6709548435058 (nsec) --- local (x,y) 0.026061399539789, -0.015025755297838
-  Layer[1] : time 8.3387769463809 (nsec) --- local (x,y) 0.042309797175892, -0.024208768483875
-  Layer[2] : time 10.006599049404 (nsec) --- local (x,y) 0.058569948533586, -0.035477603209132
-  Layer[3] : time 11.674421152408 (nsec) --- local (x,y) 0.075098296239079, -0.046015363732102
-  Layer[4] : time 13.342243255482 (nsec) --- local (x,y) 0.091268975783472, -0.057964457462419
-Drift Chamber 2 has 5 hits.
-  Layer[0] : time 34.367389022606 (nsec) --- local (x,y) -82.668531634738, -0.21233495016888
-  Layer[1] : time 36.036127773364 (nsec) --- local (x,y) -99.248025803025, -0.22075609433262
-  Layer[2] : time 37.704866786657 (nsec) --- local (x,y) -115.82989507569, -0.22832224401631
-  Layer[3] : time 39.373605970858 (nsec) --- local (x,y) -132.41331006575, -0.23586503612154
-  Layer[4] : time 41.042345247453 (nsec) --- local (x,y) -148.99755767388, -0.24827189365475
-EM Calorimeter has 60 hits. Total Edep is 665.00998417825 (MeV)
-Hadron Calorimeter has 17 hits. Total Edep is 4778.1920786212 (MeV)
+  Layer[0] : time 6.6709548422931 (nsec) --- local (x,y) -0.001292145940088, 0.0043682637518606
+  Layer[1] : time 8.3387769440292 (nsec) --- local (x,y) -0.0014975826100924, 0.0036298246615778
+  Layer[2] : time 10.006599045774 (nsec) --- local (x,y) 0.00043800913620273, 0.0029889574541734
+  Layer[3] : time 11.674421147521 (nsec) --- local (x,y) 0.0016540952433192, 0.0038303827673654
+  Layer[4] : time 13.342243249279 (nsec) --- local (x,y) 0.0039216773719178, 0.0040664424270661
+Drift Chamber 2 has 10 hits.
+  Layer[0] : time 34.366919356236 (nsec) --- local (x,y) -82.659236018565, 0.034753474892637
+  Layer[0] : time 70.043932289605 (nsec) --- local (x,y) 1047.3825491797, -265.82727638492
+  Layer[1] : time 36.035654159996 (nsec) --- local (x,y) -99.202987753318, 0.041281780676579
+  Layer[1] : time 67.599781836991 (nsec) --- local (x,y) 898.87049699854, -242.36558785416
+  Layer[2] : time 37.704388771891 (nsec) --- local (x,y) -115.74500063805, 0.045951187760244
+  Layer[2] : time 65.155631995814 (nsec) --- local (x,y) 748.91035403508, -219.68397680498
+  Layer[3] : time 39.373123075003 (nsec) --- local (x,y) -132.28421400489, 0.049141801935932
+  Layer[3] : time 62.713146512756 (nsec) --- local (x,y) 599.05395313214, -194.86085568646
+  Layer[4] : time 41.041857567874 (nsec) --- local (x,y) -148.82514786537, 0.053011336875585
+  Layer[4] : time 60.273632661905 (nsec) --- local (x,y) 449.97300299141, -169.7837314661
+EM Calorimeter has 60 hits. Total Edep is 59195.154916116 (MeV)
+Hadron Calorimeter has 18 hits. Total Edep is 1097.2458414219 (MeV)
 ... write Root file : B5.root - done
 ### Run 2 starts.
 ... open Root analysis file : B5.root - done
@@ -920,105 +930,99 @@ Hadron Calorimeter has 17 hits. Total Edep is 4778.1920786212 (MeV)
 
 >>> Event 0 >>> Simulation truth : e+ (0,0,100000)
 Hodoscope 1 has 1 hits.
-  Hodoscope[7] 4.9867832232882 (nsec)
+  Hodoscope[7] 4.9867832233382 (nsec)
 Hodoscope 2 has 2 hits.
-  Hodoscope[9] 43.186247594818 (nsec)
-  Hodoscope[24] 1788.2621205611 (nsec)
-Drift Chamber 1 has 8 hits.
-  Layer[0] : time 6.6709483401436 (nsec) --- local (x,y) 0.013298708942911, 0.0072561166675734
-  Layer[1] : time 8.3387688165041 (nsec) --- local (x,y) 0.023165179137512, 0.010913840306431
-  Layer[2] : time 10.006589292844 (nsec) --- local (x,y) 0.031919936003719, 0.016091676607147
-  Layer[2] : time 10.472436314675 (nsec) --- local (x,y) -100.35810308287, 4.1715529810766
-  Layer[2] : time 11.140109120026 (nsec) --- local (x,y) -117.26877260036, 55.767872972576
-  Layer[2] : time 11.183428679825 (nsec) --- local (x,y) -121.01702488801, 58.516974586752
-  Layer[3] : time 11.674409769446 (nsec) --- local (x,y) 0.043855158977037, 0.022201177430674
-  Layer[4] : time 13.342230246243 (nsec) --- local (x,y) 0.058605211431769, 0.027023196896536
+  Hodoscope[9] 43.186863014541 (nsec)
+  Hodoscope[6] 280.64561706083 (nsec)
+Drift Chamber 1 has 5 hits.
+  Layer[0] : time 6.6709483400411 (nsec) --- local (x,y) 0.0052107642897418, 0.003216915618441
+  Layer[1] : time 8.3387688160364 (nsec) --- local (x,y) 0.0053781491565289, 0.0024914261238828
+  Layer[2] : time 10.006589292069 (nsec) --- local (x,y) 0.0028184525563181, 0.00025443400687984
+  Layer[3] : time 11.674409768139 (nsec) --- local (x,y) -0.0010270331184745, -0.0026818000936864
+  Layer[4] : time 13.342230244241 (nsec) --- local (x,y) -0.0050095386121826, -0.0068335858676117
 Drift Chamber 2 has 5 hits.
-  Layer[0] : time 34.849009377821 (nsec) --- local (x,y) -147.32858963925, 0.050322536948878
-  Layer[1] : time 36.519732205768 (nsec) --- local (x,y) -176.83893197106, 0.049795156522758
-  Layer[2] : time 38.190454800228 (nsec) --- local (x,y) -206.34808620341, 0.048744625396411
-  Layer[3] : time 39.861177178055 (nsec) --- local (x,y) -235.85613808113, 0.050560889152317
-  Layer[4] : time 41.531899105106 (nsec) --- local (x,y) -265.36189585361, 0.054073119196818
-EM Calorimeter has 51 hits. Total Edep is 85183.034428677 (MeV)
-Hadron Calorimeter has 11 hits. Total Edep is 81.496986909724 (MeV)
+  Layer[0] : time 34.84814500819 (nsec) --- local (x,y) -154.93586414784, -0.080781788252115
+  Layer[1] : time 36.519163693723 (nsec) --- local (x,y) -185.91518461705, -0.090694558211807
+  Layer[2] : time 38.190182155988 (nsec) --- local (x,y) -216.8934228296, -0.10017549059886
+  Layer[3] : time 39.861200914644 (nsec) --- local (x,y) -247.87309685553, -0.11263033145129
+  Layer[4] : time 41.532219909256 (nsec) --- local (x,y) -278.85391391988, -0.12698877619703
+EM Calorimeter has 47 hits. Total Edep is 85166.968374214 (MeV)
+Hadron Calorimeter has 9 hits. Total Edep is 103.3804808416 (MeV)
 ... write 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.0086956790784 (nsec)
-Hodoscope 2 has 1 hits.
-  Hodoscope[9] 43.375423125878 (nsec)
-Drift Chamber 1 has 10 hits.
-  Layer[0] : time 6.700268890385 (nsec) --- local (x,y) -0.074785767747041, 0.2099559049373
-  Layer[0] : time 6.8018706876691 (nsec) --- local (x,y) -160.02821779704, 25.938091812934
-  Layer[1] : time 8.3754257718315 (nsec) --- local (x,y) -0.071339486346967, 0.36461423892171
-  Layer[1] : time 8.5207612686589 (nsec) --- local (x,y) -256.91553953022, 26.407782655958
-  Layer[2] : time 10.050582771571 (nsec) --- local (x,y) -0.099488103492461, 0.50289675595452
-  Layer[2] : time 10.2628257389 (nsec) --- local (x,y) -384.60798147152, 35.254709088955
-  Layer[3] : time 11.725739890232 (nsec) --- local (x,y) -0.11870787519165, 0.65409697246998
-  Layer[3] : time 11.9697043462 (nsec) --- local (x,y) -446.68686568114, 68.838965536798
-  Layer[4] : time 13.40089716271 (nsec) --- local (x,y) -0.13916311449412, 0.80781914634555
-  Layer[4] : time 13.782717775732 (nsec) --- local (x,y) -641.05561944312, 64.392707139814
+  Hodoscope[7] 5.0086956583209 (nsec)
+Hodoscope 2 has 3 hits.
+  Hodoscope[9] 43.378927900314 (nsec)
+  Hodoscope[6] 141.12280930295 (nsec)
+  Hodoscope[7] 139.60036844055 (nsec)
+Drift Chamber 1 has 5 hits.
+  Layer[0] : time 6.700263828926 (nsec) --- local (x,y) 0.097463348711629, -0.087268291698737
+  Layer[1] : time 8.3754156827654 (nsec) --- local (x,y) 0.19054324387957, -0.19818874780534
+  Layer[2] : time 10.050568225942 (nsec) --- local (x,y) 0.30307257039799, -0.25843375110917
+  Layer[3] : time 11.725721012749 (nsec) --- local (x,y) 0.43142434600448, -0.29538812793973
+  Layer[4] : time 13.400873931378 (nsec) --- local (x,y) 0.57796014387401, -0.31922496515619
 Drift Chamber 2 has 5 hits.
-  Layer[0] : time 35.001313194841 (nsec) --- local (x,y) -148.74680743794, 2.9459436899468
-  Layer[1] : time 36.679418274104 (nsec) --- local (x,y) -178.41180796254, 3.1145954017826
-  Layer[2] : time 38.357528042633 (nsec) --- local (x,y) -208.09976863106, 3.2796938065205
-  Layer[3] : time 40.035642036253 (nsec) --- local (x,y) -237.80807945015, 3.4294152635681
-  Layer[4] : time 41.713753541539 (nsec) --- local (x,y) -267.50287347873, 3.5674964871807
-EM Calorimeter has 42 hits. Total Edep is 1231.3783089019 (MeV)
-Hadron Calorimeter has 12 hits. Total Edep is 363.14328142531 (MeV)
+  Layer[0] : time 35.005038495967 (nsec) --- local (x,y) -145.71295853712, -0.83112374220371
+  Layer[1] : time 36.683106135709 (nsec) --- local (x,y) -175.21272586316, -0.8750368404378
+  Layer[2] : time 38.361173912698 (nsec) --- local (x,y) -204.71253530802, -0.87339249213234
+  Layer[3] : time 40.0392404291 (nsec) --- local (x,y) -234.20467985919, -0.86837454785656
+  Layer[4] : time 41.717306522003 (nsec) --- local (x,y) -263.69334968693, -0.83173467361103
+EM Calorimeter has 49 hits. Total Edep is 2935.0692314501 (MeV)
+Hadron Calorimeter has 14 hits. Total Edep is 204.70934536523 (MeV)
 ... write 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.9872692020731 (nsec)
-Hodoscope 2 has 2 hits.
-  Hodoscope[10] 42.691550274068 (nsec)
-  Hodoscope[11] 57.038835847135 (nsec)
+  Hodoscope[7] 4.9872692007677 (nsec)
+Hodoscope 2 has 1 hits.
+  Hodoscope[10] 42.690103292866 (nsec)
 Drift Chamber 1 has 5 hits.
-  Layer[0] : time 6.6715985998559 (nsec) --- local (x,y) -0.2470553115187, 0.19979414986978
-  Layer[1] : time 8.3395817776688 (nsec) --- local (x,y) -0.40590902904369, 0.28603133247113
-  Layer[2] : time 10.007564963893 (nsec) --- local (x,y) -0.57268245074298, 0.36306575046032
-  Layer[3] : time 11.675548160758 (nsec) --- local (x,y) -0.72904311187481, 0.46959545151637
-  Layer[4] : time 13.343531359199 (nsec) --- local (x,y) -0.88749294720031, 0.57070681381815
-Drift Chamber 2 has 5 hits.
-  Layer[0] : time 34.363596792559 (nsec) --- local (x,y) -83.242262197585, 2.4297601912594
-  Layer[1] : time 36.032457926557 (nsec) --- local (x,y) -99.467277068611, 2.5399672069326
-  Layer[2] : time 37.701318665895 (nsec) --- local (x,y) -115.68866459376, 2.6412720310091
-  Layer[3] : time 39.370180750978 (nsec) --- local (x,y) -131.92242318927, 2.7472889491757
-  Layer[4] : time 41.039043238567 (nsec) --- local (x,y) -148.15971775104, 2.8746383710168
-EM Calorimeter has 36 hits. Total Edep is 2004.6322552103 (MeV)
-Hadron Calorimeter has 10 hits. Total Edep is 365.34917842727 (MeV)
+  Layer[0] : time 6.6715985354606 (nsec) --- local (x,y) -0.24626446648468, 0.053693089245651
+  Layer[1] : time 8.3395816315885 (nsec) --- local (x,y) -0.33333190520005, 0.10162591635451
+  Layer[2] : time 10.00756473802 (nsec) --- local (x,y) -0.43767057564798, 0.13324865838158
+  Layer[3] : time 11.675547873467 (nsec) --- local (x,y) -0.57257329021756, 0.14635599625076
+  Layer[4] : time 13.343531085154 (nsec) --- local (x,y) -0.76900096781016, 0.1047558309369
+Drift Chamber 2 has 6 hits.
+  Layer[0] : time 34.362226504295 (nsec) --- local (x,y) -83.390359303096, -0.9675157697952
+  Layer[1] : time 36.031079125877 (nsec) --- local (x,y) -99.536515997256, -1.0829041435034
+  Layer[2] : time 37.699927069396 (nsec) --- local (x,y) -115.63866132016, -1.2333728330948
+  Layer[2] : time 38.207151051019 (nsec) --- local (x,y) -282.14580325381, 122.2154600736
+  Layer[3] : time 39.368771692731 (nsec) --- local (x,y) -131.70977841945, -1.3863957446221
+  Layer[4] : time 41.03761508228 (nsec) --- local (x,y) -147.76934789669, -1.5387866110615
+EM Calorimeter has 30 hits. Total Edep is 315.08438240904 (MeV)
+Hadron Calorimeter has 12 hits. Total Edep is 332.51029367076 (MeV)
 ... write 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.9867832261631 (nsec)
+  Hodoscope[7] 4.9867832352579 (nsec)
 Hodoscope 2 has 1 hits.
-  Hodoscope[9] 43.185195363593 (nsec)
+  Hodoscope[9] 43.183767349426 (nsec)
 Drift Chamber 1 has 5 hits.
-  Layer[0] : time 6.6709484564892 (nsec) --- local (x,y) -0.046460017522408, -0.21602522672986
-  Layer[1] : time 8.3387690793456 (nsec) --- local (x,y) -0.088892224301003, -0.42130600007589
-  Layer[2] : time 10.006589722359 (nsec) --- local (x,y) -0.12027922856759, -0.6428021498862
-  Layer[3] : time 11.674410370612 (nsec) --- local (x,y) -0.15614254868342, -0.8671327268055
-  Layer[4] : time 13.342231076147 (nsec) --- local (x,y) -0.19810782943568, -1.1258876545572
+  Layer[0] : time 6.6709484201774 (nsec) --- local (x,y) -0.18326083937915, -0.077484812628341
+  Layer[1] : time 8.3387689523929 (nsec) --- local (x,y) -0.26685335924594, -0.17674199543296
+  Layer[2] : time 10.006589491487 (nsec) --- local (x,y) -0.34658428907654, -0.28869907883163
+  Layer[3] : time 11.674410039837 (nsec) --- local (x,y) -0.44190821489237, -0.40064192967233
+  Layer[4] : time 13.342230629252 (nsec) --- local (x,y) -0.57764296697841, -0.52506162246302
 Drift Chamber 2 has 5 hits.
-  Layer[0] : time 34.847811752 (nsec) --- local (x,y) -148.73896130682, -3.7619925800548
-  Layer[1] : time 36.51856437932 (nsec) --- local (x,y) -178.39995660973, -3.9487446040712
-  Layer[2] : time 38.189313684627 (nsec) --- local (x,y) -208.04405596817, -4.1465511714154
-  Layer[3] : time 39.860066187437 (nsec) --- local (x,y) -237.70412113711, -4.3760076629403
-  Layer[4] : time 41.530818354362 (nsec) --- local (x,y) -267.3624320464, -4.6122322652349
-EM Calorimeter has 18 hits. Total Edep is 9516.6687213657 (MeV)
-Hadron Calorimeter has 1 hits. Total Edep is 0.27138221842304 (MeV)
+  Layer[0] : time 34.846439522242 (nsec) --- local (x,y) -149.12860733476, -2.9337424180943
+  Layer[1] : time 36.517176602615 (nsec) --- local (x,y) -178.71085722699, -3.1079271605646
+  Layer[2] : time 38.187914086795 (nsec) --- local (x,y) -208.29491793163, -3.3202676617322
+  Layer[3] : time 39.858654207836 (nsec) --- local (x,y) -237.89255271457, -3.5038406282486
+  Layer[4] : time 41.529397984573 (nsec) --- local (x,y) -267.50857197543, -3.7110331405857
+EM Calorimeter has 20 hits. Total Edep is 9380.4582587462 (MeV)
+Hadron Calorimeter has 4 hits. Total Edep is 1.4838526845281 (MeV)
 ... write Root file : B5.root - done
 ### Run 6 starts.
 ... open Root analysis file : B5.root - done
@@ -1026,24 +1030,22 @@ Hadron Calorimeter has 1 hits. Total Edep is 0.27138221842304 (MeV)
 
 >>> Event 0 >>> Simulation truth : proton (-0,0,1000)
 Hodoscope 1 has 1 hits.
-  Hodoscope[7] 6.8392424061189 (nsec)
+  Hodoscope[7] 6.8395886460829 (nsec)
 Hodoscope 2 has 1 hits.
-  Hodoscope[9] 59.404001399731 (nsec)
-Drift Chamber 1 has 7 hits.
-  Layer[0] : time 9.1535622737731 (nsec) --- local (x,y) 1.3964910192771, -1.3902138009384
-  Layer[1] : time 11.445754493691 (nsec) --- local (x,y) 1.6463533450213, -2.8058333255568
-  Layer[2] : time 13.738541923769 (nsec) --- local (x,y) 1.8013649096967, -3.8531498320062
-  Layer[2] : time 13.582277042171 (nsec) --- local (x,y) -43.613580826491, -62.937140042052
-  Layer[3] : time 16.032035895689 (nsec) --- local (x,y) 2.2534329694577, -4.5906799924819
-  Layer[3] : time 15.558769862627 (nsec) --- local (x,y) -110.76425076827, -199.9258891847
-  Layer[4] : time 18.325723282393 (nsec) --- local (x,y) 2.6469357666462, -5.335923593373
+  Hodoscope[9] 59.353195441317 (nsec)
+Drift Chamber 1 has 5 hits.
+  Layer[0] : time 9.1542871247936 (nsec) --- local (x,y) -1.4993588318431, 0.84157919756522
+  Layer[1] : time 11.446885935508 (nsec) --- local (x,y) -2.0639255403146, 2.4040433493706
+  Layer[2] : time 13.739664922685 (nsec) --- local (x,y) -2.2991016018688, 3.9236557912451
+  Layer[3] : time 16.032645132349 (nsec) --- local (x,y) -2.831905464198, 5.7008670106193
+  Layer[4] : time 18.325789258322 (nsec) --- local (x,y) -3.8112316428859, 7.7125738117237
 Drift Chamber 2 has 5 hits.
-  Layer[0] : time 47.918639162982 (nsec) --- local (x,y) -158.22901276647, -3.8656671718911
-  Layer[1] : time 50.21989782387 (nsec) --- local (x,y) -189.7011062903, -2.7199959723969
-  Layer[2] : time 52.5213390815 (nsec) --- local (x,y) -221.16055688327, -1.6062334101207
-  Layer[3] : time 54.822904537694 (nsec) --- local (x,y) -252.34742651992, -0.29101522086034
-  Layer[4] : time 57.124622804865 (nsec) --- local (x,y) -283.32473671957, 1.0771923063039
-EM Calorimeter has 8 hits. Total Edep is 381.32644020199 (MeV)
+  Layer[0] : time 47.86917108581 (nsec) --- local (x,y) -178.10581394288, 33.820921008515
+  Layer[1] : time 50.170082483024 (nsec) --- local (x,y) -209.06465042263, 35.644861608441
+  Layer[2] : time 52.471100406905 (nsec) --- local (x,y) -239.34691601352, 37.412894283116
+  Layer[3] : time 54.772384166512 (nsec) --- local (x,y) -269.70719801783, 39.034206197779
+  Layer[4] : time 57.073898128016 (nsec) --- local (x,y) -300.10644305892, 40.612492835198
+EM Calorimeter has 2 hits. Total Edep is 294.42161759694 (MeV)
 Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
 ... write Root file : B5.root - done
 ### Run 7 starts.
@@ -1052,23 +1054,23 @@ Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
 
 >>> Event 0 >>> Simulation truth : pi+ (-0,0,1000)
 Hodoscope 1 has 1 hits.
-  Hodoscope[7] 5.035159656197 (nsec)
+  Hodoscope[7] 5.0351626365595 (nsec)
 Hodoscope 2 has 1 hits.
-  Hodoscope[10] 43.069933624164 (nsec)
+  Hodoscope[10] 43.119924315827 (nsec)
 Drift Chamber 1 has 5 hits.
-  Layer[0] : time 6.7357200486249 (nsec) --- local (x,y) -0.095176532992966, -0.61924395133925
-  Layer[1] : time 8.4197801573214 (nsec) --- local (x,y) -0.29720547396492, -1.5261281767143
-  Layer[2] : time 10.103846277013 (nsec) --- local (x,y) -0.62225529252308, -2.8513386293046
-  Layer[3] : time 11.787922078897 (nsec) --- local (x,y) -1.2054233341289, -4.7239166192816
-  Layer[4] : time 13.472004663282 (nsec) --- local (x,y) -1.8822623051259, -6.8193961404665
+  Layer[0] : time 6.7357293127386 (nsec) --- local (x,y) 0.47508662528343, -0.99510240274001
+  Layer[1] : time 8.419795815589 (nsec) --- local (x,y) 0.70218835891726, -1.6494213123294
+  Layer[2] : time 10.103866412711 (nsec) --- local (x,y) 0.78674854117423, -2.4332161960061
+  Layer[3] : time 11.787942063595 (nsec) --- local (x,y) 0.35312055974939, -3.2393333540265
+  Layer[4] : time 13.47202678703 (nsec) --- local (x,y) 0.17210785336338, -4.5152796329811
 Drift Chamber 2 has 5 hits.
-  Layer[0] : time 34.661463097872 (nsec) --- local (x,y) -93.642762560073, -20.998813187081
-  Layer[1] : time 36.346473254337 (nsec) --- local (x,y) -109.91683892071, -21.498728474704
-  Layer[2] : time 38.031471221344 (nsec) --- local (x,y) -126.04367636371, -22.169828683641
-  Layer[3] : time 39.71646087241 (nsec) --- local (x,y) -142.05184564609, -22.896211454815
-  Layer[4] : time 41.401450308167 (nsec) --- local (x,y) -158.01356831189, -23.65370854445
-EM Calorimeter has 1 hits. Total Edep is 171.44209343458 (MeV)
-Hadron Calorimeter has 4 hits. Total Edep is 29.709342373302 (MeV)
+  Layer[0] : time 34.709405477493 (nsec) --- local (x,y) -89.576363000005, -26.546119528752
+  Layer[1] : time 36.394777522591 (nsec) --- local (x,y) -108.65981782339, -28.944341802222
+  Layer[2] : time 38.080144528372 (nsec) --- local (x,y) -127.6907494835, -31.215381580874
+  Layer[3] : time 39.765537053431 (nsec) --- local (x,y) -146.91747336845, -33.311586632349
+  Layer[4] : time 41.450995963826 (nsec) --- local (x,y) -166.63332898043, -35.364709836421
+EM Calorimeter has 31 hits. Total Edep is 613.67292135809 (MeV)
+Hadron Calorimeter has 8 hits. Total Edep is 5.30832207792 (MeV)
 ... write Root file : B5.root - done
 ### Run 8 starts.
 ... open Root analysis file : B5.root - done
@@ -1076,22 +1078,16 @@ Hadron Calorimeter has 4 hits. Total Edep is 29.709342373302 (MeV)
 
 >>> Event 0 >>> Simulation truth : e+ (-0,0,1000)
 Hodoscope 1 has 1 hits.
-  Hodoscope[7] 4.9867859528131 (nsec)
-Hodoscope 2 has 1 hits.
-  Hodoscope[9] 43.138849612522 (nsec)
+  Hodoscope[7] 4.9867852884868 (nsec)
+Hodoscope 2 has 0 hits.
 Drift Chamber 1 has 5 hits.
-  Layer[0] : time 6.6709669807723 (nsec) --- local (x,y) -3.280662518597, 1.4396664510953
-  Layer[1] : time 8.3388003722516 (nsec) --- local (x,y) -5.0457703102869, 2.3046978592499
-  Layer[2] : time 10.00663273073 (nsec) --- local (x,y) -6.7225453818777, 3.1623187970402
-  Layer[3] : time 11.674466882551 (nsec) --- local (x,y) -8.5896147829023, 3.9449835651911
-  Layer[4] : time 13.342300520433 (nsec) --- local (x,y) -10.406242837445, 4.7471637637746
-Drift Chamber 2 has 5 hits.
-  Layer[0] : time 34.800198679162 (nsec) --- local (x,y) -183.24686305694, 31.879587787658
-  Layer[1] : time 36.471233643386 (nsec) --- local (x,y) -214.21699028693, 34.215730970084
-  Layer[2] : time 38.142264098196 (nsec) --- local (x,y) -245.17734894653, 36.385658718497
-  Layer[3] : time 39.81328565459 (nsec) --- local (x,y) -276.08956591638, 38.62429786522
-  Layer[4] : time 41.484243515686 (nsec) --- local (x,y) -306.70444164291, 40.667045708857
-EM Calorimeter has 10 hits. Total Edep is 972.92308152641 (MeV)
+  Layer[0] : time 6.6710180214026 (nsec) --- local (x,y) 3.7575037676499, -3.0153172294605
+  Layer[1] : time 8.3389751756144 (nsec) --- local (x,y) 7.8969194295101, -7.6633832604526
+  Layer[2] : time 10.007036407662 (nsec) --- local (x,y) 14.975051448896, -12.122834298569
+  Layer[3] : time 11.6750497785 (nsec) --- local (x,y) 20.945392558351, -16.555876005536
+  Layer[4] : time 13.343117720666 (nsec) --- local (x,y) 26.913472211157, -22.514342008006
+Drift Chamber 2 has 0 hits.
+EM Calorimeter has 0 hits. Total Edep is 0 (MeV)
 Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
 ... write Root file : B5.root - done
 Graphics systems deleted.
diff --git a/examples/extended/analysis/AnaEx01/AnaEx01.out b/examples/extended/analysis/AnaEx01/AnaEx01.out
index 22151939a62..65148f5d561 100644
--- a/examples/extended/analysis/AnaEx01/AnaEx01.out
+++ b/examples/extended/analysis/AnaEx01/AnaEx01.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -757,20 +757,20 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 
 --------------------End of Run------------------------------
 
- mean Energy in Absorber : 453.339 MeV +- 14.5813 MeV
- mean Energy in Gap      : 23.591 MeV +- 7.0809 MeV
+ mean Energy in Absorber : 453.651 MeV +- 15.5761 MeV
+ mean Energy in Gap      : 23.7522 MeV +- 7.11944 MeV
 
- mean trackLength in Absorber : 32.4232 cm  +- 1.14085 cm 
- mean trackLength in Gap      : 11.6974 cm  +- 3.62573 cm 
+ mean trackLength in Absorber : 32.4525 cm  +- 1.25106 cm 
+ mean trackLength in Gap      : 11.7458 cm  +- 3.65031 cm 
 ------------------------------------------------------------
 
 
  ----> print histograms statistic 
 
- EAbs : mean = 453.339 MeV rms = 14.5813 MeV
- EGap : mean = 23.591 MeV rms = 7.0809 MeV
- LAbs : mean = 32.4232 cm  rms = 1.14085 cm 
- LGap : mean = 11.6974 cm  rms = 3.62573 cm 
+ EAbs : mean = 453.651 MeV rms = 15.5761 MeV
+ EGap : mean = 23.7522 MeV rms = 7.11944 MeV
+ LAbs : mean = 32.4525 cm  rms = 1.25106 cm 
+ LGap : mean = 11.7458 cm  rms = 3.65031 cm 
 ... write Root file : AnaEx01.root - done
 
 ----> Histogram Tree is saved in AnaEx01.root
diff --git a/examples/extended/analysis/AnaEx02/AnaEx02.out b/examples/extended/analysis/AnaEx02/AnaEx02.out
index 01aefb28035..217ac878794 100644
--- a/examples/extended/analysis/AnaEx02/AnaEx02.out
+++ b/examples/extended/analysis/AnaEx02/AnaEx02.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -744,20 +744,20 @@ CoulombScat:   for  pi-, integral: 1     SubType= 1  BuildTable= 1
 
 --------------------End of Run------------------------------
 
- mean Energy in Absorber : 453.339 MeV +- 14.5813 MeV
- mean Energy in Gap      : 23.591 MeV +- 7.0809 MeV
+ mean Energy in Absorber : 453.651 MeV +- 15.5761 MeV
+ mean Energy in Gap      : 23.7522 MeV +- 7.11944 MeV
 
- mean trackLength in Absorber : 32.4232 cm  +- 1.14085 cm 
- mean trackLength in Gap      : 11.6974 cm  +- 3.62573 cm 
+ mean trackLength in Absorber : 32.4525 cm  +- 1.25106 cm 
+ mean trackLength in Gap      : 11.7458 cm  +- 3.65031 cm 
 ------------------------------------------------------------
 
 
  ----> print histograms statistic 
 
- EAbs : mean = 453.339 MeV rms = 14.5813 MeV
- EGap : mean = 23.591 MeV rms = 7.0809 MeV
- LAbs : mean = 32.4232 cm  rms = 1.14085 cm 
- LGap : mean = 11.6974 cm  rms = 3.62573 cm 
+ EAbs : mean = 453.651 MeV rms = 15.5761 MeV
+ EGap : mean = 23.7522 MeV rms = 7.11944 MeV
+ LAbs : mean = 32.4525 cm  rms = 1.25106 cm 
+ LGap : mean = 11.7458 cm  rms = 3.65031 cm 
 
 ----> Histogram Tree is saved 
 
diff --git a/examples/extended/biasing/B01/exampleB01.out b/examples/extended/biasing/B01/exampleB01.out
index ce083424d5a..958a8f10667 100644
--- a/examples/extended/biasing/B01/exampleB01.out
+++ b/examples/extended/biasing/B01/exampleB01.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -773,26 +773,26 @@ 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 |            51 |           143 |            51 |            51 |     0.0733004 |       2.55347 |             1 |       7852.78 |       7852.78 |       9294.15 |       20051.8 |       681.265 |
-       cell_01 |           175 |           193 |           812 |           812 |     0.0875924 |       3.43262 |             1 |       30823.4 |       30823.4 |       34828.9 |        105805 |       3050.74 |
-       cell_02 |           220 |           306 |          2026 |          1013 |     0.0118199 |        2.1238 |           0.5 |       62004.9 |       31002.5 |        177957 |       65843.1 |       2103.44 |
-       cell_03 |           285 |           397 |          2842 |         710.5 |     0.0079721 |       1.54951 |          0.25 |       85649.5 |       21412.4 |        138859 |       33178.6 |          1107 |
-       cell_04 |           331 |           470 |          3023 |       377.875 |    0.00697999 |       1.38143 |         0.125 |       92335.3 |       11541.9 |       79669.8 |       15944.4 |       556.095 |
-       cell_05 |           363 |           488 |          3222 |       201.375 |    0.00663764 |       1.40662 |        0.0625 |       96778.4 |       6048.65 |       45653.8 |       8508.17 |       303.034 |
-       cell_06 |           455 |           577 |          4004 |       125.125 |    0.00616944 |       1.36679 |       0.03125 |        115079 |       3596.21 |       27380.7 |       4915.25 |       168.924 |
-       cell_07 |           500 |           644 |          5159 |       80.6094 |    0.00491745 |       1.01885 |      0.015625 |        141644 |       2213.19 |       17496.7 |       2254.91 |       86.0392 |
-       cell_08 |           510 |           665 |          4665 |       36.4453 |    0.00466116 |       0.96936 |     0.0078125 |        131231 |       1025.24 |          8348 |       993.828 |       38.9114 |
-       cell_09 |           496 |           658 |          5210 |       20.3516 |    0.00389819 |       0.94343 |    0.00390625 |        146169 |       570.973 |       5374.07 |       538.673 |       20.9492 |
-       cell_10 |           477 |           633 |          4708 |       9.19531 |    0.00543811 |      0.948636 |    0.00195312 |        136496 |       266.595 |       1950.17 |       252.901 |       10.6052 |
-       cell_11 |           480 |           640 |          4910 |       4.79492 |    0.00423384 |      0.955599 |   0.000976562 |        139568 |       136.297 |       1275.33 |       130.245 |       5.39953 |
-       cell_12 |           462 |           576 |          4996 |       2.43945 |    0.00376545 |      0.697786 |   0.000488281 |        136718 |       66.7569 |       572.867 |        46.582 |        2.1571 |
-       cell_13 |           391 |           524 |          4525 |       1.10474 |     0.0031951 |      0.644791 |   0.000244141 |        120998 |       29.5405 |       262.405 |       19.0475 |       0.83841 |
-       cell_14 |           298 |           420 |          3023 |      0.369019 |    0.00371785 |      0.804239 |    0.00012207 |       85172.7 |       10.3971 |       97.7382 |       8.36172 |      0.363376 |
-       cell_15 |           299 |           400 |          3513 |      0.214417 |    0.00271016 |       0.61478 |   6.10352e-05 |       95791.1 |       5.84662 |         61.26 |       3.59439 |      0.166024 |
-       cell_16 |           271 |           371 |          2720 |     0.0830078 |    0.00333913 |      0.654537 |   3.05176e-05 |       75828.7 |       2.31411 |       20.5126 |       1.51467 |     0.0684945 |
-       cell_17 |           215 |           325 |          2612 |      0.039856 |    0.00375492 |      0.691274 |   1.52588e-05 |       71181.1 |       1.08614 |       9.32444 |      0.750819 |     0.0350125 |
-       cell_18 |           112 |           205 |          1465 |     0.0111771 |    0.00384359 |      0.695444 |   7.62939e-06 |         40733 |      0.310768 |        2.6351 |      0.216122 |     0.0101282 |
-       cell_19 |            64 |            64 |            64 |   0.000488281 |     0.0118254 |       1.11079 |   7.62939e-06 |       9302.44 |      0.070972 |      0.270671 |     0.0788349 |    0.00320079 |
+       cell_00 |            42 |           132 |            42 |            42 |     0.0300641 |       2.28415 |             1 |       7722.35 |       7722.35 |       21826.8 |         17639 |       656.202 |
+       cell_01 |           157 |           177 |           677 |           677 |     0.0335944 |       3.66358 |             1 |         25385 |         25385 |         78199 |       92999.9 |       2627.05 |
+       cell_02 |           207 |           293 |          1650 |           825 |     0.0134396 |       2.22572 |           0.5 |         54684 |         27342 |        139447 |       60855.7 |       1874.11 |
+       cell_03 |           297 |           408 |          2639 |        659.75 |    0.00734351 |       1.70229 |          0.25 |       79838.6 |       19959.7 |        150001 |       33977.1 |       1101.54 |
+       cell_04 |           351 |           488 |          3137 |       392.125 |    0.00782583 |       1.59004 |         0.125 |       92125.2 |       11515.7 |       78515.1 |       18310.4 |       614.446 |
+       cell_05 |           390 |           525 |          3673 |       229.562 |    0.00711001 |       1.42437 |        0.0625 |        110941 |        6933.8 |       49343.8 |       9876.27 |       350.835 |
+       cell_06 |           440 |           582 |          4467 |       139.594 |     0.0058215 |       1.22407 |       0.03125 |        127116 |       3972.36 |       31745.2 |       4862.45 |       184.804 |
+       cell_07 |           453 |           606 |          4582 |       71.5938 |    0.00489769 |      0.983147 |      0.015625 |        130313 |       2036.14 |       16334.3 |       2001.83 |       80.0004 |
+       cell_08 |           460 |           600 |          4727 |       36.9297 |    0.00412309 |      0.774603 |     0.0078125 |        131099 |       1024.21 |       8262.85 |       793.355 |       34.0685 |
+       cell_09 |           454 |           604 |          4822 |       18.8359 |    0.00350969 |      0.742484 |    0.00390625 |        132764 |       518.611 |       4799.03 |        385.06 |       16.8431 |
+       cell_10 |           408 |           536 |          4422 |       8.63672 |    0.00343435 |      0.688997 |    0.00195312 |        122199 |        238.67 |       2145.09 |       164.443 |         7.367 |
+       cell_11 |           355 |           456 |          3668 |       3.58203 |    0.00319016 |      0.642832 |   0.000976562 |       99761.5 |       97.4233 |       849.093 |       62.6268 |       2.70874 |
+       cell_12 |           307 |           404 |          2905 |       1.41846 |    0.00366615 |      0.786991 |   0.000488281 |       79278.3 |       38.7101 |       353.138 |       30.4645 |       1.29466 |
+       cell_13 |           261 |           343 |          2885 |      0.704346 |    0.00430406 |      0.829055 |   0.000244141 |       79017.2 |       19.2913 |        159.35 |       15.9935 |       0.68585 |
+       cell_14 |           253 |           337 |          2755 |      0.336304 |    0.00314271 |       0.77537 |    0.00012207 |       77025.7 |       9.40255 |       97.2379 |       7.29045 |      0.305591 |
+       cell_15 |           208 |           293 |          2509 |      0.153137 |    0.00296867 |      0.586857 |   6.10352e-05 |       67813.9 |       4.13903 |       38.4231 |       2.42902 |      0.114065 |
+       cell_16 |           166 |           222 |          1585 |     0.0483704 |    0.00237999 |      0.586911 |   3.05176e-05 |       44150.7 |       1.34737 |       15.8433 |      0.790789 |      0.037707 |
+       cell_17 |           130 |           167 |          1367 |     0.0208588 |    0.00286881 |      0.571395 |   1.52588e-05 |       35470.2 |      0.541232 |       5.09877 |      0.309258 |     0.0146274 |
+       cell_18 |            69 |           115 |           964 |    0.00735474 |    0.00210053 |      0.425005 |   7.62939e-06 |       25272.4 |      0.192813 |       2.03682 |     0.0819466 |    0.00427841 |
+       cell_19 |            33 |            33 |            33 |    0.00025177 |    0.00336035 |      0.563944 |   7.62939e-06 |       6018.04 |      0.045914 |      0.376909 |     0.0258929 |    0.00126655 |
 =============================================
 === G4ProcessPlacer::RemoveProcess: for: neutron
   ProcessName: ImportanceProcess, will be removed!
diff --git a/examples/extended/biasing/B03/exampleB03.out b/examples/extended/biasing/B03/exampleB03.out
index 55e4da20b2e..a981fdc7d09 100644
--- a/examples/extended/biasing/B03/exampleB03.out
+++ b/examples/extended/biasing/B03/exampleB03.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/extended/biasing/GB01/exampleGB01.out b/examples/extended/biasing/GB01/exampleGB01.out
index de0e3c334ba..7a7298eee85 100644
--- a/examples/extended/biasing/GB01/exampleGB01.out
+++ b/examples/extended/biasing/GB01/exampleGB01.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/extended/biasing/GB02/exampleGB02.out b/examples/extended/biasing/GB02/exampleGB02.out
index 8f8ac692283..f2d3aa69209 100644
--- a/examples/extended/biasing/GB02/exampleGB02.out
+++ b/examples/extended/biasing/GB02/exampleGB02.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/extended/biasing/GB03/exampleGB03.out b/examples/extended/biasing/GB03/exampleGB03.out
index 5d0f78d39d5..f97eaf4c84f 100644
--- a/examples/extended/biasing/GB03/exampleGB03.out
+++ b/examples/extended/biasing/GB03/exampleGB03.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -799,7 +799,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.24s Real=0.25s Sys=0s
+  User=0.27s Real=0.27s Sys=0s
 
 Region <DefaultRegionForTheWorld> --  -- appears in <World> world volume
  This region is in the mass world.
@@ -859,7 +859,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.48s Real=0.47s Sys=0s
+  User=0.35s Real=0.35s Sys=0s
 Graphics systems deleted.
 Visualization Manager deleting...
 G4 kernel has come to Quit state.
@@ -871,7 +871,7 @@ RunManager is deleting RunManagerKernel.
 G4SDManager deleted.
 EventManager deleted.
 Units table cleared.
-Total navigation history collections cleaned: 86
+Total navigation history collections cleaned: 83
 ================== Deleting memory pools ===================
 Number of memory pools allocated: 12 of which, static: 0
 Dynamic pools deleted: 12 / Total memory freed: 0.16 Mb
diff --git a/examples/extended/biasing/GB04/exampleGB04.out b/examples/extended/biasing/GB04/exampleGB04.out
index f581782eed9..9038771f791 100644
--- a/examples/extended/biasing/GB04/exampleGB04.out
+++ b/examples/extended/biasing/GB04/exampleGB04.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -1116,7 +1116,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.01s Real=0.01s Sys=0s
+  User=0s Real=0.01s Sys=0.01s
 
 Region <DefaultRegionForTheWorld> --  -- appears in <World> world volume
  This region is in the mass world.
@@ -2514,7 +2514,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.02s Real=0.04s Sys=0s
+  User=0.01s Real=0.01s Sys=0s
 
 Region <DefaultRegionForTheWorld> --  -- appears in <World> world volume
  This region is in the mass world.
@@ -5247,7 +5247,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.03s Real=0.06s Sys=0.01s
+  User=0.02s Real=0.02s Sys=0s
 Graphics systems deleted.
 Visualization Manager deleting...
 G4 kernel has come to Quit state.
diff --git a/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out b/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out
index 50004766ddc..53a74830d5b 100644
--- a/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out
+++ b/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -389,7 +389,7 @@ nb event 445000
  Run terminated.
 Run Summary
   Run Aborted after 449720 events processed.
-  User=634.75s Real=636.7s Sys=0.05s
+  User=480.12s Real=489.85s Sys=0.03s
 Results of reverse/adjoint simulation!
 normalised edep [MeV] = 0.00158921
 error[MeV] = 1.58921e-05
diff --git a/examples/extended/electromagnetic/TestEm0/TestEm0.out b/examples/extended/electromagnetic/TestEm0/TestEm0.out
index e0d7d0baa80..ea68565fb1c 100644
--- a/examples/extended/electromagnetic/TestEm0/TestEm0.out
+++ b/examples/extended/electromagnetic/TestEm0/TestEm0.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/extended/electromagnetic/TestEm1/TestEm1.out b/examples/extended/electromagnetic/TestEm1/TestEm1.out
index c2c19793c5b..2b0e8be0e2e 100644
--- a/examples/extended/electromagnetic/TestEm1/TestEm1.out
+++ b/examples/extended/electromagnetic/TestEm1/TestEm1.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -324,7 +324,7 @@ Index : 0     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 2000
-  User=4.18s Real=4.2s Sys=0s
+  User=2.71s Real=2.87s Sys=0s
 
  ======================== run summary ======================
 
diff --git a/examples/extended/electromagnetic/TestEm10/TestEm10.out b/examples/extended/electromagnetic/TestEm10/TestEm10.out
index 76a856dd84d..2a16c248902 100644
--- a/examples/extended/electromagnetic/TestEm10/TestEm10.out
+++ b/examples/extended/electromagnetic/TestEm10/TestEm10.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -140,7 +140,7 @@ Lorentz Factor	XTR photon number
 8.085e+04	3.149
 9.283e+04	3.149
 
-total time for build X-ray TR energy loss tables = 0.09 s
+total time for build X-ray TR energy loss tables = 0.06 s
 
 SynRad:  Incoherent Synchrotron Radiation
       good description for long magnets at all energies
@@ -224,7 +224,7 @@ Lorentz Factor	XTR photon number
 8.085e+04	3.149
 9.283e+04	3.149
 
-total time for build X-ray TR energy loss tables = 0.09 s
+total time for build X-ray TR energy loss tables = 0.06 s
 
 msc:   for proton    SubType= 10
       RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
@@ -396,26 +396,26 @@ Index : 2     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 1000
-  User=1.18s Real=1.18s Sys=0s
+  User=0.96s Real=1.09s Sys=0s
  ================== run summary =====================
  end of Run TotNbofEvents = 1000
-    mean charged track length   in absorber=45.2012 +- 0.667544  mm  
+    mean charged track length   in absorber=44.7767 +- 0.57994  mm  
 
-            mean energy deposit in absorber=0.054333 +- 0.000915753  MeV 
+            mean energy deposit in absorber=0.0530733 +- 0.000897743  MeV 
 
- mean number of steps in absorber (charged) =8.886 +- 0.24323      
- mean number of steps in absorber (neutral) =2.903 +- 0.0533628      
+ mean number of steps in absorber (charged) =8.646 +- 0.22123      
+ mean number of steps in absorber (neutral) =2.796 +- 0.0519652      
 
-   mean number of charged secondaries = 3.521 +- 0.071983
+   mean number of charged secondaries = 3.481 +- 0.072977
 
-   mean number of neutral secondaries = 0.035 +- 0.00598122
+   mean number of neutral secondaries = 0.042 +- 0.00634319
 
-   mean number of e-s =3.521  and e+s =0
+   mean number of e-s =3.481  and e+s =0
 
-(number) transmission coeff=0.224  reflection coeff=0
+(number) transmission coeff=0.2  reflection coeff=0
 
  energy deposit distribution 
-#entries=1000    #underflows=0    #overflows=57
+#entries=1000    #underflows=0    #overflows=50
  bin nb      Elow      entries     normalized 
     0         0           0           0
     1   1.53846           0           0
@@ -425,70 +425,70 @@ Run Summary
     5   7.69231           0           0
     6   9.23077           0           0
     7   10.7692           0           0
-    8   12.3077           3       0.003
-    9   13.8462           6       0.006
-   10   15.3846           9       0.009
-   11   16.9231           7       0.007
-   12   18.4615          20        0.02
-   13        20          22       0.022
-   14   21.5385          15       0.015
-   15   23.0769          13       0.013
-   16   24.6154          22       0.022
-   17   26.1538          22       0.022
-   18   27.6923          19       0.019
-   19   29.2308          18       0.018
-   20   30.7692          23       0.023
-   21   32.3077          23       0.023
+    8   12.3077           2       0.002
+    9   13.8462           3       0.003
+   10   15.3846           4       0.004
+   11   16.9231          10        0.01
+   12   18.4615           8       0.008
+   13        20          14       0.014
+   14   21.5385          18       0.018
+   15   23.0769          19       0.019
+   16   24.6154          18       0.018
+   17   26.1538          29       0.029
+   18   27.6923          23       0.023
+   19   29.2308          40        0.04
+   20   30.7692          19       0.019
+   21   32.3077          28       0.028
    22   33.8462          30        0.03
-   23   35.3846          20        0.02
-   24   36.9231          29       0.029
-   25   38.4615          31       0.031
-   26        40          31       0.031
-   27   41.5385          25       0.025
-   28   43.0769          35       0.035
-   29   44.6154          25       0.025
-   30   46.1538          25       0.025
-   31   47.6923          34       0.034
-   32   49.2308          33       0.033
-   33   50.7692          21       0.021
-   34   52.3077          26       0.026
-   35   53.8462          28       0.028
-   36   55.3846          15       0.015
-   37   56.9231          22       0.022
-   38   58.4615          24       0.024
-   39        60          25       0.025
-   40   61.5385          16       0.016
-   41   63.0769          13       0.013
-   42   64.6154          12       0.012
-   43   66.1538          18       0.018
-   44   67.6923           7       0.007
-   45   69.2308          18       0.018
-   46   70.7692          13       0.013
-   47   72.3077          16       0.016
-   48   73.8462          10        0.01
-   49   75.3846          12       0.012
-   50   76.9231          14       0.014
-   51   78.4615           6       0.006
-   52        80          11       0.011
-   53   81.5385           7       0.007
-   54   83.0769           7       0.007
-   55   84.6154          10        0.01
-   56   86.1538           9       0.009
-   57   87.6923           6       0.006
-   58   89.2308           6       0.006
-   59   90.7692           4       0.004
+   23   35.3846          29       0.029
+   24   36.9231          28       0.028
+   25   38.4615          29       0.029
+   26        40          26       0.026
+   27   41.5385          39       0.039
+   28   43.0769          38       0.038
+   29   44.6154          31       0.031
+   30   46.1538          31       0.031
+   31   47.6923          27       0.027
+   32   49.2308          28       0.028
+   33   50.7692          26       0.026
+   34   52.3077          25       0.025
+   35   53.8462          26       0.026
+   36   55.3846          19       0.019
+   37   56.9231          15       0.015
+   38   58.4615          18       0.018
+   39        60          23       0.023
+   40   61.5385          17       0.017
+   41   63.0769          19       0.019
+   42   64.6154          22       0.022
+   43   66.1538          13       0.013
+   44   67.6923          15       0.015
+   45   69.2308          10        0.01
+   46   70.7692          10        0.01
+   47   72.3077           9       0.009
+   48   73.8462           8       0.008
+   49   75.3846           8       0.008
+   50   76.9231           8       0.008
+   51   78.4615          11       0.011
+   52        80           5       0.005
+   53   81.5385           6       0.006
+   54   83.0769           9       0.009
+   55   84.6154          11       0.011
+   56   86.1538           6       0.006
+   57   87.6923           8       0.008
+   58   89.2308           2       0.002
+   59   90.7692           6       0.006
    60   92.3077           6       0.006
-   61   93.8462           6       0.006
-   62   95.3846           8       0.008
-   63   96.9231           4       0.004
-   64   98.4615           3       0.003
+   61   93.8462           0           0
+   62   95.3846          10        0.01
+   63   96.9231           3       0.003
+   64   98.4615           5       0.005
 
- Emp =       0.0430769   width=      0.0507692  MeV 
+ Emp =       0.0292308   width=      0.0384615  MeV 
 
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 0
- Current couple of seeds = 821884987, 1714530142
+ Current couple of seeds = 323104550, 1556024145
 ----------------------------------------
 
 ========= Table of registered couples ==============================
@@ -519,6 +519,6 @@ Index : 2     used in the geometry : Yes
 G4 kernel has come to Quit state.
 ================== Deleting memory pools ===================
 Number of memory pools allocated: 12 of which, static: 1
-Dynamic pools deleted: 11 / Total memory freed: 0.034 Mb
+Dynamic pools deleted: 11 / Total memory freed: 0.036 Mb
 ============================================================
 RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/electromagnetic/TestEm11/TestEm11.out b/examples/extended/electromagnetic/TestEm11/TestEm11.out
index 389f63cc943..dd9ac83cfb7 100644
--- a/examples/extended/electromagnetic/TestEm11/TestEm11.out
+++ b/examples/extended/electromagnetic/TestEm11/TestEm11.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -443,7 +443,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 20000
-  User=4.92s Real=4.92s Sys=0s
+  User=3.13s Real=3.17s Sys=0s
 
  ======================== run summary =====================
 
diff --git a/examples/extended/electromagnetic/TestEm12/TestEm12.out b/examples/extended/electromagnetic/TestEm12/TestEm12.out
index 1de78c7ddce..3f5c67ddf04 100644
--- a/examples/extended/electromagnetic/TestEm12/TestEm12.out
+++ b/examples/extended/electromagnetic/TestEm12/TestEm12.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -117,24 +117,24 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 10000
-  User=3.88s Real=3.87s Sys=0s
+  User=4.03s Real=4.04s Sys=0s
 
  ======================== run summary =====================
 
  The run is 10000 e- of 4.00 MeV through 3.00 cm  of G4_WATER (density: 1.00 g/cm3 )
 
- Total Energy deposited        = 3.944 MeV +- 215.513 keV
+ Total Energy deposited        = 3.944 MeV +- 216.308 keV
 
- Track length of primary track = 2.036 cm  +- 2.802 mm 
+ Track length of primary track = 2.036 cm  +- 2.819 mm 
  Range from EmCalculator = 2.037 cm  (from full dE/dx)
 
- Projected range               = 1.319 cm  +- 3.579 mm 
+ Projected range               = 1.320 cm  +- 3.593 mm 
 
- Nb of steps of primary track  = 16.25 +- 3.00	 Step size= 1.290 mm  +- 277.210 um 
+ Nb of steps of primary track  = 16.28 +- 3.04	 Step size= 1.288 mm  +- 280.257 um 
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 0
- Current couple of seeds = 23083363, 2018357790
+ Current couple of seeds = 2114011852, 414965008
 ----------------------------------------
 G4 kernel has come to Quit state.
 UserDetectorConstruction deleted.
diff --git a/examples/extended/electromagnetic/TestEm13/TestEm13.out b/examples/extended/electromagnetic/TestEm13/TestEm13.out
index 983f91dd0be..6805b4f1978 100644
--- a/examples/extended/electromagnetic/TestEm13/TestEm13.out
+++ b/examples/extended/electromagnetic/TestEm13/TestEm13.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -426,7 +426,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 1000000
-  User=10.42s Real=10.46s Sys=0s
+  User=5.63s Real=5.73s Sys=0s
 
  ======================== run summary ======================
 
@@ -493,7 +493,7 @@ Index : 0     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 1000000
-  User=10.84s Real=10.92s Sys=0s
+  User=6.57s Real=6.73s Sys=0s
 
  ======================== run summary ======================
 
diff --git a/examples/extended/electromagnetic/TestEm14/TestEm14.out b/examples/extended/electromagnetic/TestEm14/TestEm14.out
index 7d17a4e9773..02135781ba9 100644
--- a/examples/extended/electromagnetic/TestEm14/TestEm14.out
+++ b/examples/extended/electromagnetic/TestEm14/TestEm14.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -465,7 +465,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 1000000
-  User=16.25s Real=16.28s Sys=0.01s
+  User=12.41s Real=12.63s Sys=0s
 
  ======================== run summary ======================
 
@@ -534,7 +534,7 @@ Index : 0     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 1000000
-  User=14.94s Real=14.97s Sys=0s
+  User=10.73s Real=10.95s Sys=0s
 
  ======================== run summary ======================
 
diff --git a/examples/extended/electromagnetic/TestEm15/TestEm15.out b/examples/extended/electromagnetic/TestEm15/TestEm15.out
index a4e0bfec970..66d67c4f5d5 100644
--- a/examples/extended/electromagnetic/TestEm15/TestEm15.out
+++ b/examples/extended/electromagnetic/TestEm15/TestEm15.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -488,7 +488,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 10000
-  User=0.26s Real=0.26s Sys=0s
+  User=0.15s Real=0.16s Sys=0s
 
  The run consists of 10000 e- of 5 MeV through 100 m   of Water (density: 1 g/cm3 )
 
@@ -558,7 +558,7 @@ Index : 1     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 10000
-  User=0.32s Real=0.32s Sys=0s
+  User=0.2s Real=0.19s Sys=0s
 
  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 738892a9b78..e8033447f47 100644
--- a/examples/extended/electromagnetic/TestEm16/TestEm16.out
+++ b/examples/extended/electromagnetic/TestEm16/TestEm16.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -268,7 +268,7 @@ G4SynchrotronRadiation::GetRandomEnergySR :
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=0.77s Real=0.77s Sys=0s
+  User=0.4s Real=0.4s Sys=0s
 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 6df657f61c2..20420783174 100644
--- a/examples/extended/electromagnetic/TestEm17/TestEm17.out
+++ b/examples/extended/electromagnetic/TestEm17/TestEm17.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -187,18 +187,18 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 10000
-  User=4.93s Real=4.95s Sys=0s
+  User=4.79s Real=4.82s Sys=0s
 
  The run consists of 10000 mu+ of 10 TeV through 1 m   of Iron (density: 7.9 g/cm3 )
 
- Number of process calls --->	muIoni : 462331	muPairProd : 63528	muBrems : 636	CoulombScat : 5663
+ Number of process calls --->	muIoni : 462906	muPairProd : 63968	muBrems : 714	CoulombScat : 5414
 
- Simulation: total CrossSection = 0.53216 /cm	 MeanFreePath = 1.8791 cm 	 massicCrossSection = 0.067619 cm2/g
+ Simulation: total CrossSection = 0.533 /cm	 MeanFreePath = 1.8762 cm 	 massicCrossSection = 0.067726 cm2/g
  Theory:     total CrossSection = 0.53938 /cm	 MeanFreePath = 1.854 cm 	 massicCrossSection = 0.068536 cm2/g
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 0
- Current couple of seeds = 2008814643, 184536882
+ Current couple of seeds = 1552255521, 1752515224
 ----------------------------------------
 #
 /gun/particle pi+
@@ -233,7 +233,7 @@ Index : 0     used in the geometry : Yes
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 0
- Current couple of seeds = 2008814643, 184536882
+ Current couple of seeds = 1552255521, 1752515224
 ----------------------------------------
 --> Event 0 starts.
 
@@ -250,17 +250,17 @@ Index : 0     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 10000
-  User=4.85s Real=5.01s Sys=0s
+  User=3.3s Real=3.31s Sys=0s
 
  The run consists of 10000 pi+ of 10 TeV through 1 m   of Iron (density: 7.9 g/cm3 )
 
- Number of process calls --->	hIoni : 433951	hPairProd : 59640	CoulombScat : 5532	hBrems : 370
+ Number of process calls --->	hIoni : 434638	CoulombScat : 5707	hPairProd : 59449	hBrems : 341
 
- Simulation: total CrossSection = 0.49949 /cm	 MeanFreePath = 2.002 cm 	 massicCrossSection = 0.063468 cm2/g
+ Simulation: total CrossSection = 0.50013 /cm	 MeanFreePath = 1.9995 cm 	 massicCrossSection = 0.06355 cm2/g
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 0
- Current couple of seeds = 1574244970, 1420150899
+ Current couple of seeds = 819747716, 37073470
 ----------------------------------------
 #
 /gun/particle proton
@@ -295,7 +295,7 @@ Index : 0     used in the geometry : Yes
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 0
- Current couple of seeds = 1574244970, 1420150899
+ Current couple of seeds = 819747716, 37073470
 ----------------------------------------
 --> Event 0 starts.
 
@@ -312,17 +312,17 @@ Index : 0     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 10000
-  User=4.1s Real=4.11s Sys=0s
+  User=3.14s Real=3.23s Sys=0s
 
  The run consists of 10000 proton of 10 TeV through 1 m   of Iron (density: 7.9 g/cm3 )
 
- Number of process calls --->	hIoni : 434125	hPairProd : 34066	CoulombScat : 5548	hBrems : 10
+ Number of process calls --->	hIoni : 434063	CoulombScat : 5453	hPairProd : 33855	hBrems : 10
 
- Simulation: total CrossSection = 0.47375 /cm	 MeanFreePath = 2.1108 cm 	 massicCrossSection = 0.060197 cm2/g
+ Simulation: total CrossSection = 0.47338 /cm	 MeanFreePath = 2.1125 cm 	 massicCrossSection = 0.06015 cm2/g
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 0
- Current couple of seeds = 1606888756, 1920299008
+ Current couple of seeds = 667041111, 1575612926
 ----------------------------------------
 #
 G4 kernel has come to Quit state.
@@ -336,7 +336,7 @@ Units table cleared.
 Total navigation history collections cleaned: 6
 ================== Deleting memory pools ===================
 Number of memory pools allocated: 9 of which, static: 0
-Dynamic pools deleted: 9 / Total memory freed: 0.056 Mb
+Dynamic pools deleted: 9 / Total memory freed: 0.054 Mb
 ============================================================
 G4Allocator objects are deleted.
 UImanager deleted.
diff --git a/examples/extended/electromagnetic/TestEm18/TestEm18.out b/examples/extended/electromagnetic/TestEm18/TestEm18.out
index 05ab995c9cd..318a4859ad8 100644
--- a/examples/extended/electromagnetic/TestEm18/TestEm18.out
+++ b/examples/extended/electromagnetic/TestEm18/TestEm18.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -435,7 +435,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 100000
-  User=2.61s Real=2.62s Sys=0s
+  User=1.92s Real=1.92s Sys=0s
 
  ======================== run summary ======================
 
diff --git a/examples/extended/electromagnetic/TestEm2/TestEm2.out b/examples/extended/electromagnetic/TestEm2/TestEm2.out
index 38165cd05de..43ae7a238fc 100644
--- a/examples/extended/electromagnetic/TestEm2/TestEm2.out
+++ b/examples/extended/electromagnetic/TestEm2/TestEm2.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -558,35 +558,35 @@ Index : 0     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=8.39s Real=8.4s Sys=0.01s
+  User=5.39s Real=5.52s Sys=0s
 
  ===== SUMMARY ===== 
 
  Total number of events:        100
- Mean number of charged steps:  7253.87
- Mean number of neutral steps:  3909.81
+ Mean number of charged steps:  7267.28
+ Mean number of neutral steps:  3909.90
 
- energy deposit :   94.88 % E0 +-    1.36 % E0
- charged traklen:  481.58 radl +-    7.03 radl
- neutral traklen: 4219.44 radl +-  127.62 radl
+ energy deposit :   94.98 % E0 +-    1.03 % E0
+ charged traklen:  482.29 radl +-    5.39 radl
+ neutral traklen: 4223.15 radl +-  116.92 radl
 
  90.00 % confinement: radius = 2.95 radl  (2.63 cm )
 
 
 <<<<ACCEPTANCE>>>> 100 events for Total Energy in Absorber
-Edep: 0.948799  delEdep= -0.000201018 nrms= -0.245143
-Erms: 0.0136215  delErms= 0.00542154 nrms= 6.61163
-<<<<END>>>>   IS NOT ACCEPTED
+Edep: 0.949826  delEdep= 0.000825984 nrms= 1.0073
+Erms: 0.0103363  delErms= 0.00213634 nrms= 2.60529
+<<<<END>>>>   IS ACCEPTED
 
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 0
- Current couple of seeds = 288803869, 1875579769
+ Current couple of seeds = 323177789, 1421127619
 ----------------------------------------
 ... write Root file : testem2.root - done
 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.23 Mb
+Dynamic pools deleted: 9 / Total memory freed: 0.2 Mb
 ============================================================
 RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/electromagnetic/TestEm3/TestEm3.out b/examples/extended/electromagnetic/TestEm3/TestEm3.out
index d15a590072a..c488ee00fc3 100644
--- a/examples/extended/electromagnetic/TestEm3/TestEm3.out
+++ b/examples/extended/electromagnetic/TestEm3/TestEm3.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -507,35 +507,35 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=6.14s Real=6.14s Sys=0s
+  User=5.17s Real=5.45s Sys=0.01s
 
 ------------------------------------------------------------
       material   Edep       RMS         sqrt(E0(GeV))*rmsE/Emean     total tracklen 
  
-          Lead: 775.61 MeV :  16.66 MeV     2.148 +- 0.2148 %      54.3 cm  +- 1.21 cm 
-   liquidArgon: 214.92 MeV :  16.86 MeV     7.843 +- 0.7843 %      1.06 m   +- 8.53 cm 
+          Lead: 778.24 MeV :  19.29 MeV     2.479 +- 0.2479 %      54.5 cm  +- 1.43 cm 
+   liquidArgon: 211.26 MeV :   17.4 MeV     8.235 +- 0.8235 %      1.05 m   +- 9.01 cm 
 
 ------------------------------------------------------------
  Beam particle e-  E = 1 GeV
- Mean number of gamma       508
- Mean number of e-          868
- Mean number of e+          53.5
- Mean number of charged steps  4618.66
- Mean number of neutral steps  3647.09
+ Mean number of gamma       510
+ Mean number of e-          875
+ Mean number of e+          53.2
+ Mean number of charged steps  4605.49
+ Mean number of neutral steps  3680.4
 ------------------------------------------------------------
 
  Energy deposition from Energy flow balance : 
   material 	 Total Edep 
  
-      Lead:	 775.608 MeV
-liquidArgon:	 214.819 MeV
+      Lead:	 778.234 MeV
+liquidArgon:	 211.249 MeV
 
 ------------------------------------------------------------
 
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 0
- Current couple of seeds = 667551838, 1565497027
+ Current couple of seeds = 2118776774, 2079416596
 ----------------------------------------
 #
 /process/em/setSecBiasing eIoni World 0.3 2 MeV
@@ -955,42 +955,42 @@ Index : 2     used in the geometry : Yes
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 0
- Current couple of seeds = 667551838, 1565497027
+ Current couple of seeds = 2118776774, 2079416596
 ----------------------------------------
 --> Event 0 starts.
 --> Event 50 starts.
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=5.21s Real=5.21s Sys=0s
+  User=3.62s Real=3.86s Sys=0s
 
 ------------------------------------------------------------
       material   Edep       RMS         sqrt(E0(GeV))*rmsE/Emean     total tracklen 
  
-          Lead: 778.12 MeV :  18.97 MeV     2.438 +- 0.2438 %      52.1 cm  +-  1.2 cm 
-   liquidArgon: 210.53 MeV :  16.68 MeV     7.922 +- 0.7922 %       100 cm  +- 7.73 cm 
+          Lead: 778.91 MeV :  21.98 MeV     2.822 +- 0.2822 %      51.9 cm  +- 1.18 cm 
+   liquidArgon: 210.62 MeV :  15.18 MeV      7.21 +- 0.721 %      99.9 cm  +- 7.11 cm 
 
 ------------------------------------------------------------
  Beam particle e-  E = 1 GeV
- Mean number of gamma       294
+ Mean number of gamma       292
  Mean number of e-          560
- Mean number of e+          54.3
- Mean number of charged steps  3926.05
- Mean number of neutral steps  2928.94
+ Mean number of e+          53.6
+ Mean number of charged steps  3952.86
+ Mean number of neutral steps  2899.33
 ------------------------------------------------------------
 
  Energy deposition from Energy flow balance : 
   material 	 Total Edep 
  
-      Lead:	 778.099 MeV
-liquidArgon:	 212.636 MeV
+      Lead:	 777.358 MeV
+liquidArgon:	 212.191 MeV
 
 ------------------------------------------------------------
 
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 0
- Current couple of seeds = 1395465908, 2090053554
+ Current couple of seeds = 321872100, 1755928378
 ----------------------------------------
 #
 G4 kernel has come to Quit state.
@@ -1002,7 +1002,7 @@ UserPrimaryGenerator deleted.
 RunManager is deleting RunManagerKernel.
 EventManager deleted.
 Units table cleared.
-Total navigation history collections cleaned: 142
+Total navigation history collections cleaned: 145
 ================== Deleting memory pools ===================
 Number of memory pools allocated: 9 of which, static: 0
 Dynamic pools deleted: 9 / Total memory freed: 0.19 Mb
diff --git a/examples/extended/electromagnetic/TestEm4/TestEm4.out b/examples/extended/electromagnetic/TestEm4/TestEm4.out
index 2f42eabfbec..22d8ed29c60 100644
--- a/examples/extended/electromagnetic/TestEm4/TestEm4.out
+++ b/examples/extended/electromagnetic/TestEm4/TestEm4.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -140,7 +140,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 100000
-  User=2.52s Real=2.6s Sys=0s
+  User=1.74s Real=1.75s Sys=0s
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 0
diff --git a/examples/extended/electromagnetic/TestEm5/TestEm5.out b/examples/extended/electromagnetic/TestEm5/TestEm5.out
index d5d60553af1..eb5e4b50e24 100644
--- a/examples/extended/electromagnetic/TestEm5/TestEm5.out
+++ b/examples/extended/electromagnetic/TestEm5/TestEm5.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -420,7 +420,7 @@ Index : 1     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 100000
-  User=3.93s Real=3.94s Sys=0s
+  User=3.12s Real=3.13s Sys=0s
 
  ======================== run summary ======================
 
@@ -855,7 +855,7 @@ Index : 2     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 50000
-  User=3.18s Real=3.17s Sys=0s
+  User=2.73s Real=2.74s Sys=0s
 
  ======================== run summary ======================
 
@@ -1301,7 +1301,7 @@ Index : 3     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 50000
-  User=7.56s Real=7.56s Sys=0s
+  User=4.93s Real=4.97s Sys=0s
 
  ======================== run summary ======================
 
@@ -1746,7 +1746,7 @@ Index : 4     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 50000
-  User=2.3s Real=2.3s Sys=0s
+  User=1.49s Real=1.51s Sys=0s
 
  ======================== run summary ======================
 
@@ -2195,7 +2195,7 @@ Index : 5     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 50000
-  User=26.11s Real=26.12s Sys=0s
+  User=23.15s Real=23.53s Sys=0s
 
  ======================== run summary ======================
 
diff --git a/examples/extended/electromagnetic/TestEm6/TestEm6.out b/examples/extended/electromagnetic/TestEm6/TestEm6.out
index b53ca166641..3310e1e7575 100644
--- a/examples/extended/electromagnetic/TestEm6/TestEm6.out
+++ b/examples/extended/electromagnetic/TestEm6/TestEm6.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -192,7 +192,7 @@ Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng
  Run terminated.
 Run Summary
   Number of events processed : 5
-  User=0.01s Real=0s Sys=0s
+  User=0s Real=0.02s Sys=0s
 
  Number of process calls --->	GammaToMuPair : 5... write Root file : testem6_0.root - done
 
@@ -297,7 +297,7 @@ Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng
  Run terminated.
 Run Summary
   Number of events processed : 5
-  User=0s Real=0s Sys=0s
+  User=0s Real=0.01s Sys=0s
 
  Number of process calls --->	ee2hadr : 5	AnnihiToMuPair : 1... write Root file : testem6_1.root - done
 
diff --git a/examples/extended/electromagnetic/TestEm7/TestEm7.out b/examples/extended/electromagnetic/TestEm7/TestEm7.out
index 297f6bc3aaa..28c4f7aee15 100644
--- a/examples/extended/electromagnetic/TestEm7/TestEm7.out
+++ b/examples/extended/electromagnetic/TestEm7/TestEm7.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -502,7 +502,7 @@ Index : 1     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 10000
-  User=16.62s Real=16.63s Sys=0s
+  User=11.25s Real=11.75s Sys=0.01s
 
  The run consists of 10000 proton of 160 MeV through 20 cm  of G4_WATER (density: 1 g/cm3 )
 
@@ -560,7 +560,7 @@ Index : 1     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 1000
-  User=7.57s Real=7.57s Sys=0s
+  User=4.83s Real=4.84s Sys=0s
 
  The run consists of 1000 C12 of 3.5 GeV through 20 cm  of G4_WATER (density: 1 g/cm3 )
 
@@ -1047,7 +1047,7 @@ Index : 2     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 1000
-  User=3.48s Real=3.48s Sys=0s
+  User=2.16s Real=2.16s Sys=0s
 
  The run consists of 1000 kaon+ of 100 MeV through 20 cm  of G4_Cu (density: 8.96 g/cm3 )
 
@@ -2009,7 +2009,7 @@ Index : 3     used in the geometry : No
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=0.04s Real=0.04s Sys=0s
+  User=0.02s Real=0.02s Sys=0s
 
  The run consists of 100 alpha of 100 MeV through 20 cm  of G4_WATER (density: 1 g/cm3 )
 
@@ -2394,7 +2394,7 @@ Index : 4     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=9.03s Real=9.05s Sys=0.02s
+  User=5.74s Real=6.21s Sys=0.01s
 
  The run consists of 10 Xe131 of 1.217 GeV through 20 cm  of G4_Si (density: 2.33 g/cm3 )
 
@@ -2787,7 +2787,7 @@ Index : 5     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 1000
-  User=1.58s Real=1.58s Sys=0s
+  User=0.93s Real=0.94s Sys=0s
 
  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 35b3baaec31..4547f3a0218 100644
--- a/examples/extended/electromagnetic/TestEm8/History
+++ b/examples/extended/electromagnetic/TestEm8/History
@@ -1,4 +1,4 @@
-$Id: History 89039 2015-03-18 09:28:24Z gcosmo $
+$Id: History 90770 2015-06-09 12:12:47Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -15,6 +15,12 @@ track of all tags.
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+24-04-15 V.Ivant (testem8-V10-00-09)
+- PhysicsList - fixed problem #1731 in configuration of models per 
+                G4Region in MT mode
+- Run - added protection against numerical exception for run with 
+        0 or 1 events
+
 04-02-15 V.Ivant (testem8-V10-00-08)
 - DetectorConstruction - removed local pointer to sensitive detector
     in order to avoid race condition 
diff --git a/examples/extended/electromagnetic/TestEm8/TestEm8.out b/examples/extended/electromagnetic/TestEm8/TestEm8.out
index 381df28a8fc..3d83be6a4e7 100644
--- a/examples/extended/electromagnetic/TestEm8/TestEm8.out
+++ b/examples/extended/electromagnetic/TestEm8/TestEm8.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -829,36 +829,36 @@ Index : 2     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 1000
-  User=0.27s Real=0.27s Sys=0s
-RunAction: End of run actions are started 1  Nevt=  1000  Edep= 0.0156616
+  User=0.22s Real=0.24s Sys=0s
+RunAction: End of run actions are started 1  Nevt=  1000  Edep= 0.0162494
  ================== run summary =====================
    End of Run TotNbofEvents    = 1000
    Energy(keV) per ADC channel = 3.0769
 
-   Mean energy deposit in absorber = 15.662 +- 0.55154 keV    RMS/Emean = 1.1136
-   Mean number of steps in absorber= 1.242  mean number of ion-clusters = 782.78 MeanCluster= 783.03
+   Mean energy deposit in absorber = 16.249 +- 0.63843 keV    RMS/Emean = 1.2424
+   Mean number of steps in absorber= 1.217  mean number of ion-clusters = 811.81 MeanCluster= 812.15
 
- ====== Energy deposit distribution   Noverflows= 0.01 ====== 
+ ====== Energy deposit distribution   Noverflows= 0.018 ====== 
  bin nb      Elow      entries     normalized 
     0         0           0           0
-    1         3          10        0.01
-    2         6          90        0.09
-    3         9         281       0.281
-    4        12         252       0.252
-    5        15         141       0.141
-    6        18          83       0.083
-    7        21          47       0.047
-    8        24          32       0.032
-    9        27          20        0.02
-   10        30          10        0.01
-   11        33           3       0.003
-   12        36           4       0.004
+    1         3           2       0.002
+    2         6         106       0.106
+    3         9         263       0.263
+    4        12         250        0.25
+    5        15         152       0.152
+    6        18          87       0.087
+    7        21          54       0.054
+    8        24          23       0.023
+    9        27          11       0.011
+   10        30           6       0.006
+   11        33           9       0.009
+   12        36           1       0.001
    13        39           3       0.003
-   14        42           6       0.006
+   14        42           2       0.002
    15        45           3       0.003
    16        48           2       0.002
-   17        51           2       0.002
-   18        54           0           0
+   17        51           4       0.004
+   18        54           3       0.003
    19        57           1       0.001
  ================== run end ==========================
 ... write Root file : testem8.root - done
diff --git a/examples/extended/electromagnetic/TestEm8/include/PhysicsList.hh b/examples/extended/electromagnetic/TestEm8/include/PhysicsList.hh
index a8e9723b943..228c7a12760 100644
--- a/examples/extended/electromagnetic/TestEm8/include/PhysicsList.hh
+++ b/examples/extended/electromagnetic/TestEm8/include/PhysicsList.hh
@@ -26,7 +26,7 @@
 /// \file electromagnetic/TestEm8/include/PhysicsList.hh
 /// \brief Definition of the PhysicsList class
 //
-// $Id: PhysicsList.hh 82219 2014-06-12 09:38:27Z gcosmo $
+// $Id: PhysicsList.hh 90770 2015-06-09 12:12:47Z gcosmo $
 //
 //---------------------------------------------------------------------------
 //
@@ -44,7 +44,6 @@
 
 #include "G4VModularPhysicsList.hh"
 #include "globals.hh"
-#include "G4EmConfigurator.hh"
 
 class G4VPhysicsConstructor;
 class StepMax;
@@ -74,8 +73,6 @@ private:
   void  NewPAIModel(const G4ParticleDefinition*, const G4String& modname, 
                     const G4String& procname);
 
-  G4EmConfigurator* fConfig;
-
   G4VPhysicsConstructor*  fEmPhysicsList;
   G4VPhysicsConstructor*  fDecayPhysicsList;
   std::vector<G4VPhysicsConstructor*> fHadronPhys;
@@ -84,6 +81,7 @@ private:
   StepMax* fStepMaxProcess;
     
   PhysicsListMessenger* fMessenger;
+  G4bool fPAI;
 
 };
 
diff --git a/examples/extended/electromagnetic/TestEm8/src/PhysicsList.cc b/examples/extended/electromagnetic/TestEm8/src/PhysicsList.cc
index 646ef3f222a..f37dcaceed6 100644
--- a/examples/extended/electromagnetic/TestEm8/src/PhysicsList.cc
+++ b/examples/extended/electromagnetic/TestEm8/src/PhysicsList.cc
@@ -26,7 +26,7 @@
 /// \file electromagnetic/TestEm8/src/PhysicsList.cc
 /// \brief Implementation of the PhysicsList class
 //
-// $Id: PhysicsList.cc 82219 2014-06-12 09:38:27Z gcosmo $
+// $Id: PhysicsList.cc 90770 2015-06-09 12:12:47Z gcosmo $
 //
 //---------------------------------------------------------------------------
 //
@@ -67,6 +67,8 @@
 #include "G4SystemOfUnits.hh"
 #include "G4LossTableManager.hh"
 #include "G4ProductionCutsTable.hh"
+#include "G4EmConfigurator.hh"
+#include "G4EmParameters.hh"
 
 #include "StepMax.hh"
 
@@ -77,14 +79,13 @@
 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 
 PhysicsList::PhysicsList() : G4VModularPhysicsList(),
-  fConfig(0),
   fEmPhysicsList(0),
   fDecayPhysicsList(0),
   fStepMaxProcess(0),
-  fMessenger(0)
+  fMessenger(0),
+  fPAI(false)
 {
-  fConfig = G4LossTableManager::Instance()->EmConfigurator();
-  G4LossTableManager::Instance()->SetVerbose(1);
+  G4EmParameters::Instance()->SetVerbose(1);
 
   SetDefaultCutValue(1*mm);
  
@@ -126,9 +127,11 @@ void PhysicsList::ConstructProcess()
 {
   AddTransportation();
   fEmPhysicsList->ConstructProcess();
+  if(fPAI) { AddPAIModel(fEmName); }
   fDecayPhysicsList->ConstructProcess();
   for(size_t i=0; i<fHadronPhys.size(); ++i) { 
-    fHadronPhys[i]->ConstructProcess(); }
+    fHadronPhys[i]->ConstructProcess(); 
+  }
   AddStepMax();
 }
 
@@ -188,12 +191,12 @@ void PhysicsList::AddPhysicsList(const G4String& name)
   } else if (name == "pai") {
 
     fEmName = name;
-    AddPAIModel(name);
+    fPAI = true;
 
   } else if (name == "pai_photon") { 
 
     fEmName = name;
-    AddPAIModel(name);
+    fPAI = true;
 
   } else {
 
@@ -260,15 +263,16 @@ void PhysicsList::NewPAIModel(const G4ParticleDefinition* part,
                               const G4String& modname,
                               const G4String& procname)
 {
+  G4EmConfigurator* config = G4LossTableManager::Instance()->EmConfigurator();
   G4String partname = part->GetParticleName();
   if(modname == "pai") {
     G4PAIModel* pai = new G4PAIModel(part,"PAIModel");
-    fConfig->SetExtraEmModel(partname,procname,pai,"GasDetector",
-                              0.0,100.*TeV,pai);
+    config->SetExtraEmModel(partname,procname,pai,"GasDetector",
+                            0.0,100.*TeV,pai);
   } else if(modname == "pai_photon") {
     G4PAIPhotModel* pai = new G4PAIPhotModel(part,"PAIPhotModel");
-    fConfig->SetExtraEmModel(partname,procname,pai,"GasDetector",
-                              0.0,100.*TeV,pai);
+    config->SetExtraEmModel(partname,procname,pai,"GasDetector",
+                            0.0,100.*TeV,pai);
   }
 }
 
diff --git a/examples/extended/electromagnetic/TestEm8/src/Run.cc b/examples/extended/electromagnetic/TestEm8/src/Run.cc
index ca8e54ae95e..9502d36c93a 100644
--- a/examples/extended/electromagnetic/TestEm8/src/Run.cc
+++ b/examples/extended/electromagnetic/TestEm8/src/Run.cc
@@ -95,13 +95,14 @@ void Run::EndOfRun()
   fOverflow    *= norm;
 
   G4double y1 = fEdep.mean();
-  G4double y2 = std::sqrt(fEdep.rms());
+  G4double y2 = fEdep.rms();
+  if(y2 > 0.0) { y2 = std::sqrt(y2); }
 
   G4double de = fMaxEnergy/G4double(fNbins);  
   G4double x1 = -de*0.5; 
 
   fFactorALICE = fParam->GetFactorALICE();
-  
+
   G4cout << " ================== run summary =====================" << G4endl;
   G4int prec = G4cout.precision(5);
   G4cout << "   End of Run TotNbofEvents    = " 
diff --git a/examples/extended/electromagnetic/TestEm9/TestEm9.out b/examples/extended/electromagnetic/TestEm9/TestEm9.out
index 6e446f20d93..ce32e323346 100644
--- a/examples/extended/electromagnetic/TestEm9/TestEm9.out
+++ b/examples/extended/electromagnetic/TestEm9/TestEm9.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -465,39 +465,39 @@ Index : 7     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=2.41s Real=2.41s Sys=0s
+  User=1.79s Real=1.8s Sys=0s
 RunAction: End of run actions are started
 HistoManager: End of run actions are started   RunID# 0
 =================================================================
 Number of events             100
-Average number of e-         398.5
-Average number of gamma      633.5
-Average number of e+         47.79
-Average number of steps      2911
-Edep 1x1 =                   0.8289 +- 0.002738  res=  3.303 %   100
-Edep 3x3 =                   0.9566 +- 0.00172  res=  1.798 %   100
-Edep 5x5 =                   0.9789 +- 0.001448  res=  1.479 %   100
+Average number of e-         401.3
+Average number of gamma      630.3
+Average number of e+         47.13
+Average number of steps      2908
+Edep 1x1 =                   0.8298 +- 0.003246  res=  3.912 %   100
+Edep 3x3 =                   0.9564 +- 0.001461  res=  1.528 %   100
+Edep 5x5 =                   0.9782 +- 0.001154  res=  1.18 %   100
 ===========  Ratios without trancating ===========================
-  E1/E9  =                   0.8665 +- 0.002559
-  E1/E25 =                   0.8468 +- 0.002615
-  E9/E25 =                   0.9773 +- 0.0008951
+  E1/E9  =                   0.8676 +- 0.003039
+  E1/E25 =                   0.8483 +- 0.003203
+  E9/E25 =                   0.9778 +- 0.0009463
 Beam Energy                  1 GeV
 ==================================================================
 
 
 <<<<<ACCEPTANCE>>>>> 100 events for Crystal Calorimeter
-Edep1x1: 0.8289  delEdep1x1= -0.1711 nrms= -1.711
-Erms1x1: 0.02738  delErms1x1= -0.9726 nrms= -9.726
-Edep3x3: 0.9566  delEdep3x3= -0.04338 nrms= -0.4338
-Erms3x3: 0.0172  delErms3x3= -0.9828 nrms= -9.828
-Edep5x5: 0.9789  delEdep5x5= -0.02114 nrms= -0.2114
-Erms5x5: 0.01448  delErms5x5= -0.9855 nrms= -9.855
+Edep1x1: 0.8298  delEdep1x1= -0.1702 nrms= -1.702
+Erms1x1: 0.03246  delErms1x1= -0.9675 nrms= -9.675
+Edep3x3: 0.9564  delEdep3x3= -0.04359 nrms= -0.4359
+Erms3x3: 0.01461  delErms3x3= -0.9854 nrms= -9.854
+Edep5x5: 0.9782  delEdep5x5= -0.02184 nrms= -0.2184
+Erms5x5: 0.01154  delErms5x5= -0.9885 nrms= -9.885
 <<<<<END>>>>>   IS ACCEPTED
 
    Z  bremsstrahlung photoeffect  compton    conversion
   13           0           0         155           0
-  53         260          41           0          46
-  55         276          47           0          47
+  53         251          41           0          44
+  55         283          48           0          47
 #
 /testem/det/acceptance1 0.0136 0.0001 500
 /testem/det/acceptance9 0.0139 0.0001 500
@@ -575,22 +575,22 @@ Index : 7     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 1000
-  User=3.3s Real=3.3s Sys=0s
+  User=2.84s Real=2.84s Sys=0s
 RunAction: End of run actions are started
 HistoManager: End of run actions are started   RunID# 1
 =================================================================
 Number of events             1000
-Average number of e-         68.41
-Average number of gamma      60.14
-Average number of e+         3.252
-Average number of steps      383.5
-Edep 1x1 =                   0.01417 +- 0.00018
-Edep 3x3 =                   0.01452 +- 0.0002046
-Edep 5x5 =                   0.01458 +- 0.0002085
+Average number of e-         73.67
+Average number of gamma      67.97
+Average number of e+         3.871
+Average number of steps      421.5
+Edep 1x1 =                   0.01478 +- 0.000402
+Edep 3x3 =                   0.0152 +- 0.0004576
+Edep 5x5 =                   0.01526 +- 0.0004654
 ===========  Ratios without trancating ===========================
-  E1/E9  =                   0.9833 +- 0.000747
-  E1/E25 =                   0.9804 +- 0.0008415
-  E9/E25 =                   0.997 +- 0.000193
+  E1/E9  =                   0.9836 +- 0.0007306
+  E1/E25 =                   0.9812 +- 0.0008092
+  E9/E25 =                   0.9975 +- 0.0001539
 Beam Energy                  20 GeV
 ==================================================================
 
@@ -1052,22 +1052,22 @@ Index : 7     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=1.79s Real=1.8s Sys=0s
+  User=1.38s Real=1.39s Sys=0s
 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.9
-Average number of gamma      219.8
-Average number of e+         47.14
-Average number of steps      1802
-Edep 1x1 =                   0.8299 +- 0.003661  res=  4.411 %   100
-Edep 3x3 =                   0.9592 +- 0.003155  res=  3.289 %   100
-Edep 5x5 =                   0.9821 +- 0.003137  res=  3.194 %   100
+Average number of e-         172.8
+Average number of gamma      221.1
+Average number of e+         47.36
+Average number of steps      1822
+Edep 1x1 =                   0.8206 +- 0.003923  res=  4.78 %   100
+Edep 3x3 =                   0.9515 +- 0.003314  res=  3.483 %   100
+Edep 5x5 =                   0.9777 +- 0.002989  res=  3.057 %   100
 ===========  Ratios without trancating ===========================
-  E1/E9  =                   0.8655 +- 0.003294
-  E1/E25 =                   0.8453 +- 0.003527
-  E9/E25 =                   0.9766 +- 0.001138
+  E1/E9  =                   0.8625 +- 0.00326
+  E1/E25 =                   0.8395 +- 0.003668
+  E9/E25 =                   0.9732 +- 0.001616
 Beam Energy                  1 GeV
 ==================================================================
 
@@ -1532,22 +1532,22 @@ Index : 7     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=2.79s Real=2.78s Sys=0s
+  User=2.25s Real=2.26s Sys=0s
 RunAction: End of run actions are started
 HistoManager: End of run actions are started   RunID# 3
 =================================================================
 Number of events             100
-Average number of e-         169.7
-Average number of gamma      519.7
-Average number of e+         47.14
-Average number of steps      2098
-Edep 1x1 =                   0.8308 +- 0.003802  res=  4.576 %   100
-Edep 3x3 =                   0.9555 +- 0.003624  res=  3.793 %   100
-Edep 5x5 =                   0.9767 +- 0.003585  res=  3.67 %   100
+Average number of e-         170.7
+Average number of gamma      515.9
+Average number of e+         46.43
+Average number of steps      2102
+Edep 1x1 =                   0.8288 +- 0.004372  res=  5.275 %   100
+Edep 3x3 =                   0.9573 +- 0.003659  res=  3.822 %   100
+Edep 5x5 =                   0.9814 +- 0.003561  res=  3.629 %   100
 ===========  Ratios without trancating ===========================
-  E1/E9  =                   0.8696 +- 0.002771
-  E1/E25 =                   0.8508 +- 0.002863
-  E9/E25 =                   0.9783 +- 0.0009687
+  E1/E9  =                   0.8659 +- 0.003445
+  E1/E25 =                   0.8448 +- 0.003767
+  E9/E25 =                   0.9755 +- 0.001367
 Beam Energy                  1 GeV
 ==================================================================
 
@@ -1555,6 +1555,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.11 Mb
+Dynamic pools deleted: 9 / Total memory freed: 0.14 Mb
 ============================================================
 RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/errorpropagation/errorprop.out b/examples/extended/errorpropagation/errorprop.out
index f408181cda9..39fba2b670b 100644
--- a/examples/extended/errorpropagation/errorprop.out
+++ b/examples/extended/errorpropagation/errorprop.out
@@ -4,13 +4,13 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
 *************************************************************
 
- creating G4RunManagerKernel 0xe38f70
+ creating G4RunManagerKernel 0x22b6010
 
 The materials defined are : 
 
@@ -79,15 +79,15 @@ List of instantiated particles ============================================
 e+ e- gamma geantino mu+ mu- pi+ pi- proton 
 physicsList->Construct() start.
  G4Transportation constructor> set fShortStepOptimisation to false
-0x103d280G4ErrorPhysicsList:: particle process manager e+ = 0x103f9a0
-0x103d0f0G4ErrorPhysicsList:: particle process manager e- = 0x1041030
-0x103ce30G4ErrorPhysicsList:: particle process manager gamma = 0x10412a0
-0x103e850G4ErrorPhysicsList:: particle process manager geantino = 0x10414f0
-0x103d490G4ErrorPhysicsList:: particle process manager mu+ = 0x1041740
-0x103d910G4ErrorPhysicsList:: particle process manager mu- = 0x1041990
-0x103dd90G4ErrorPhysicsList:: particle process manager pi+ = 0x1041be0
-0x103e1c0G4ErrorPhysicsList:: particle process manager pi- = 0x1041e30
-0x103e5f0G4ErrorPhysicsList:: particle process manager proton = 0x1042080
+0x24bc490G4ErrorPhysicsList:: particle process manager e+ = 0x24bebb0
+0x24bc300G4ErrorPhysicsList:: particle process manager e- = 0x24c0240
+0x24bc040G4ErrorPhysicsList:: particle process manager gamma = 0x24c04b0
+0x24bda60G4ErrorPhysicsList:: particle process manager geantino = 0x24c0700
+0x24bc6a0G4ErrorPhysicsList:: particle process manager mu+ = 0x24c0950
+0x24bcb20G4ErrorPhysicsList:: particle process manager mu- = 0x24c0ba0
+0x24bcfa0G4ErrorPhysicsList:: particle process manager pi+ = 0x24c0df0
+0x24bd3d0G4ErrorPhysicsList:: particle process manager pi- = 0x24c1040
+0x24bd800G4ErrorPhysicsList:: particle process manager proton = 0x24c1290
 physicsList->CheckParticleList() start.
 physicsList->setCut() start.
 
diff --git a/examples/extended/eventgenerator/exgps/exgps_batch.out b/examples/extended/eventgenerator/exgps/exgps_batch.out
index a5c686878ef..33c9049bd5e 100644
--- a/examples/extended/eventgenerator/exgps/exgps_batch.out
+++ b/examples/extended/eventgenerator/exgps/exgps_batch.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -57,7 +57,6 @@ Some /vis commands (optionally) take a string to specify colour.
 Available colours:
   black, blue, brown, cyan, gray, green, grey, magenta, red, white, yellow
 
-Verbosity Set to: 0
 Set file name: exgps
 ### Run 0 starts.
 ... open Root analysis file : exgps.root - done
diff --git a/examples/extended/exoticphysics/monopole/monopole.out b/examples/extended/exoticphysics/monopole/monopole.out
index 6c34aa419dd..6ee263a4998 100644
--- a/examples/extended/exoticphysics/monopole/monopole.out
+++ b/examples/extended/exoticphysics/monopole/monopole.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -19,7 +19,7 @@ G4PhysListFactory::GetReferencePhysList <FTFP_BERT>  EMoption= 0
 
 /monopole/setup 
 Monopole is created: m(GeV)= 100 Qel= 0 Qmag= 68.518
-/control/execute /ec/G4-builds/release/slc6-gcc49-RelWithDebInfo/geant4-10-01-patch-01_cand-02/examples/extended/exoticphysics/monopole/monopole.in
+/control/execute /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/geant4-10-01-patches_branch/examples/extended/exoticphysics/monopole/monopole.in
 /control/verbose 1
 /run/verbose 0
 /testex/run/verbose 1
diff --git a/examples/extended/exoticphysics/ucn/ExUCN.out b/examples/extended/exoticphysics/ucn/ExUCN.out
index 2a79f5c0d80..331267cc1e6 100644
--- a/examples/extended/exoticphysics/ucn/ExUCN.out
+++ b/examples/extended/exoticphysics/ucn/ExUCN.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/extended/field/field01/field01.out b/examples/extended/field/field01/field01.out
index 37c75dc0e96..b1371270bf9 100644
--- a/examples/extended/field/field01/field01.out
+++ b/examples/extended/field/field01/field01.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -450,7 +450,7 @@ Step#          X             Y             Z    Direction x      dir y      dir
  Run terminated.
 Run Summary
   Number of events processed : 1
-  User=0.01s Real=0s Sys=0s
+  User=0s Real=0s Sys=0s
 WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
 
 ========= Table of registered couples ==============================
@@ -516,7 +516,7 @@ Step#          X             Y             Z    Direction x      dir y      dir
  Run terminated.
 Run Summary
   Number of events processed : 1
-  User=0s Real=0s Sys=0s
+  User=0s Real=0s Sys=0.01s
 WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
 
 ========= Table of registered couples ==============================
@@ -664,6 +664,6 @@ Visualization Manager deleting...
 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.012 Mb
+Dynamic pools deleted: 12 / Total memory freed: 0.013 Mb
 ============================================================
 RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/field/field02/field02.out b/examples/extended/field/field02/field02.out
index 707838237ca..e686a6ae42e 100644
--- a/examples/extended/field/field02/field02.out
+++ b/examples/extended/field/field02/field02.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -4595,7 +4595,7 @@ Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng  Ne
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=0.08s Real=0.13s Sys=0.02s
+  User=0.05s Real=0.07s Sys=0.01s
 WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
 Graphics systems deleted.
 Visualization Manager deleting...
diff --git a/examples/extended/field/field03/field03.out b/examples/extended/field/field03/field03.out
index 2a389cafa1f..33012314b7c 100644
--- a/examples/extended/field/field03/field03.out
+++ b/examples/extended/field/field03/field03.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -209,7 +209,7 @@ G4ClassicalRK4 (default) is called
 The minimal step is equal to 0.25 mm
 F03PhysicsList::SetCuts:CutLength : 1 mm 
 
-total time(SetCuts)=0 s 
+total time(SetCuts)=0.01 s 
 Visualization Manager instantiating with verbosity "warnings (3)"...
 Visualization Manager initialising...
 Registering graphics systems...
@@ -490,7 +490,7 @@ WARNING: Scene "none" not found.
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=0.03s Real=0.03s Sys=0s
+  User=0.02s Real=0.02s Sys=0s
 WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
 Set field value to (0,0,1000) Gauss 
 
diff --git a/examples/extended/field/field04/field04.out b/examples/extended/field/field04/field04.out
index 460aa5ada4a..9143a59908a 100644
--- a/examples/extended/field/field04/field04.out
+++ b/examples/extended/field/field04/field04.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -1039,7 +1039,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.787508(mm),3.2675601(mm),78.803019(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.388013(mm),0.40884967(mm),78.168153(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1048,7 +1048,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.388013(mm),0.40884967(mm),78.168153(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.288534(mm),-1.6602199(mm),78.714675(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1057,7 +1057,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.466372(mm),3.5241235(mm),78.859644(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.242781(mm),1.4270503(mm),79.251723(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1066,7 +1066,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.059052(mm),-2.2358168(mm),78.402485(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.004623(mm),-3.7517662(mm),78.588409(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1075,7 +1075,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.378981(mm),-1.7234981(mm),79.404035(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.111146(mm),-2.376916(mm),79.098607(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1086,7 +1086,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 10
-G4PrimaryTransformer::PrimaryVertex (-11.029061(mm),2.218837(mm),79.289408(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.546377(mm),-0.055618256(mm),78.140229(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1095,7 +1095,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.650113(mm),-2.7515493(mm),78.474592(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.468883(mm),-0.45889674(mm),79.211855(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1104,7 +1104,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.787955(mm),-0.99435134(mm),78.979268(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.217152(mm),0.47956422(mm),79.256242(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1113,7 +1113,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.466095(mm),-3.0265913(mm),78.683366(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.403119(mm),-0.48274326(mm),79.047124(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1122,7 +1122,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.291255(mm),-1.0264971(mm),79.243176(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.634715(mm),1.7861972(mm),79.182615(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1131,7 +1131,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.180779(mm),3.302962(mm),78.733675(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.8976(mm),-3.2487297(mm),78.959934(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1140,7 +1140,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.896799(mm),2.2235854(mm),78.431094(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.422293(mm),-0.62000011(mm),79.043744(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1149,7 +1149,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.739459(mm),2.7566372(mm),78.282511(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.484142(mm),-2.2436965(mm),79.209165(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1158,7 +1158,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.548035(mm),-1.2288156(mm),78.492591(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.166823(mm),0.17548463(mm),78.207155(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1167,7 +1167,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.879969(mm),0.79791608(mm),79.13937(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.597162(mm),-2.4141231(mm),79.189236(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1178,7 +1178,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 20
-G4PrimaryTransformer::PrimaryVertex (-12.442956(mm),-2.5135585(mm),79.0401(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.03062(mm),-0.60430393(mm),78.407498(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1187,7 +1187,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.035319(mm),-3.2329697(mm),78.582997(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.23585(mm),-2.0388159(mm),79.252945(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1196,7 +1196,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.082554(mm),1.6052453(mm),79.103649(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.47415(mm),2.0033398(mm),78.505619(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1205,7 +1205,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.10322(mm),3.3171987(mm),78.747351(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.396046(mm),-2.0327865(mm),78.695718(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1214,7 +1214,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.112082(mm),-1.0617843(mm),79.274769(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.808042(mm),-0.5318632(mm),79.152052(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1223,7 +1223,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.060699(mm),-1.1031475(mm),78.931175(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.607581(mm),0.016135195(mm),79.011072(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1232,7 +1232,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.233235(mm),2.9757894(mm),78.548099(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.469833(mm),0.20033064(mm),79.211688(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1241,7 +1241,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.619514(mm),3.241116(mm),79.008968(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.877661(mm),0.024018335(mm),78.434469(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1250,7 +1250,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.706306(mm),1.648803(mm),79.346318(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.256981(mm),-0.64130379(mm),78.367585(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1259,7 +1259,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.604506(mm),-1.1909426(mm),79.187942(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.192786(mm),-2.6346661(mm),78.731558(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1270,7 +1270,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 30
-G4PrimaryTransformer::PrimaryVertex (-17.309229(mm),0.73813558(mm),78.182045(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.070386(mm),-2.2958301(mm),78.576813(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1279,7 +1279,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.080236(mm),1.5392688(mm),78.92773(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.387168(mm),-0.87158498(mm),78.87361(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1288,7 +1288,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.075561(mm),-0.57828608(mm),79.281209(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.549048(mm),-2.0303227(mm),79.374047(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1297,7 +1297,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.868481(mm),-2.3724417(mm),78.612415(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.137663(mm),0.2284039(mm),79.446585(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1306,7 +1306,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.501852(mm),1.4510703(mm),79.029715(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.722371(mm),-3.3768098(mm),78.461851(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1315,7 +1315,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.502265(mm),-0.12525524(mm),78.148007(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.525178(mm),0.38206531(mm),78.320294(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1324,7 +1324,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.904127(mm),1.1076929(mm),78.782456(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.582978(mm),-0.90727507(mm),78.662756(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1333,7 +1333,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.748865(mm),-0.48036815(mm),78.633506(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.597204(mm),2.8125396(mm),78.660248(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1342,7 +1342,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.62056(mm),-2.36688(mm),79.185111(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.890972(mm),1.3561466(mm),78.784776(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1351,7 +1351,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.678295(mm),-3.2196856(mm),79.174931(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.864975(mm),1.4519043(mm),79.142014(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1362,7 +1362,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 40
-G4PrimaryTransformer::PrimaryVertex (-16.205332(mm),2.8957291(mm),78.376692(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.135962(mm),0.71681419(mm),78.741578(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1371,7 +1371,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.419928(mm),1.7947077(mm),79.396815(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.282147(mm),-0.91160805(mm),78.18682(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1380,7 +1380,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.351513(mm),-2.6733905(mm),79.232551(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.574979(mm),-0.7022761(mm),79.016821(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1389,7 +1389,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.179342(mm),0.063059561(mm),79.439236(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.551933(mm),-1.2980871(mm),78.13925(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1398,7 +1398,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.91905(mm),1.1111097(mm),79.308806(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.231467(mm),-0.46587932(mm),78.372083(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1407,7 +1407,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.339756(mm),0.051527772(mm),78.529316(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.18353(mm),-0.91237563(mm),79.262171(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1416,7 +1416,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.087994(mm),-0.30438101(mm),78.926363(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.809099(mm),-2.0147855(mm),78.799212(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1425,7 +1425,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.638328(mm),3.0862513(mm),79.005651(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.242667(mm),-2.5099451(mm),79.251743(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1434,7 +1434,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.020582(mm),-0.28621372(mm),79.46723(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.805766(mm),0.43842123(mm),78.7998(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1443,7 +1443,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.429482(mm),-3.8073491(mm),78.866149(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.259247(mm),2.5084214(mm),79.24882(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1454,7 +1454,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 50
-G4PrimaryTransformer::PrimaryVertex (-16.368407(mm),-2.6497191(mm),78.347937(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.982748(mm),2.7943848(mm),78.94492(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1463,7 +1463,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.449302(mm),3.5921399(mm),78.686327(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.561973(mm),0.19285202(mm),78.490133(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1472,7 +1472,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.284779(mm),-3.1666579(mm),78.891664(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.212605(mm),0.32078982(mm),78.728063(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1481,7 +1481,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.922265(mm),-0.86431939(mm),79.131912(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.591426(mm),1.7833439(mm),79.366575(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1490,7 +1490,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.936989(mm),-1.3982442(mm),78.424008(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.574785(mm),3.255049(mm),79.016855(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1499,7 +1499,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.809785(mm),2.5158211(mm),79.151745(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.097098(mm),-0.0050871697(mm),78.572103(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1508,7 +1508,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.014756(mm),2.650068(mm),79.29193(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.454567(mm),-2.0922359(mm),78.861726(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1517,7 +1517,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.783078(mm),2.7862045(mm),79.156454(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.089945(mm),-2.4548047(mm),78.397038(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1526,7 +1526,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.468801(mm),1.4600109(mm),78.682889(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.858985(mm),-1.1014536(mm),78.966743(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1535,7 +1535,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.236871(mm),2.2035711(mm),78.723785(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.773883(mm),-3.4259874(mm),78.452768(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1546,7 +1546,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 60
-G4PrimaryTransformer::PrimaryVertex (-14.277631(mm),2.5927281(mm),78.716597(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.184849(mm),2.2666986(mm),78.380303(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1555,7 +1555,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.876201(mm),-0.72057719(mm),78.611053(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.97093(mm),1.2095441(mm),78.947004(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1564,7 +1564,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.890111(mm),1.8459229(mm),78.961255(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.183273(mm),2.2142527(mm),79.262216(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1573,7 +1573,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.028051(mm),-0.88965782(mm),78.584278(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.012533(mm),2.4797852(mm),78.587014(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1582,7 +1582,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.286808(mm),-2.4246381(mm),78.891306(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.224207(mm),2.4887561(mm),78.902345(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1591,7 +1591,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.781311(mm),-1.5163061(mm),78.451458(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.052133(mm),-1.7884663(mm),79.109013(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1600,7 +1600,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.934897(mm),0.56391394(mm),79.129685(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.487577(mm),0.86188918(mm),78.150597(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1609,7 +1609,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.453891(mm),2.4232377(mm),79.038172(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.201276(mm),-2.3237809(mm),78.906388(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1618,7 +1618,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.992268(mm),0.27692183(mm),79.119568(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.47125(mm),1.1642387(mm),78.50613(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1627,7 +1627,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.651034(mm),-1.7252566(mm),79.179737(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.041279(mm),2.5709323(mm),79.287254(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1638,7 +1638,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 70
-G4PrimaryTransformer::PrimaryVertex (-14.751688(mm),2.240507(mm),78.633008(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.058982(mm),3.6326425(mm),78.578824(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1647,7 +1647,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.433696(mm),1.1960677(mm),79.21806(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.584703(mm),0.96069455(mm),79.36776(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1656,7 +1656,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.086148(mm),1.3471938(mm),78.22138(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.433466(mm),-0.59777859(mm),79.2181(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1665,7 +1665,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.288925(mm),1.174062(mm),79.243587(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.167979(mm),1.1425028(mm),79.264913(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1674,7 +1674,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.821567(mm),3.1555819(mm),78.620687(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.662043(mm),1.403343(mm),79.177796(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1683,7 +1683,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.455189(mm),-0.68993606(mm),79.037943(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.952573(mm),0.19737824(mm),78.244933(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1692,7 +1692,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.011882(mm),-0.21835273(mm),78.410802(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.499212(mm),0.12845149(mm),78.853854(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1701,7 +1701,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.397924(mm),-0.32872116(mm),78.166406(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.240103(mm),-2.1652311(mm),78.899542(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1710,7 +1710,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.409168(mm),1.6395284(mm),78.164423(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.782147(mm),-0.14870137(mm),78.980292(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1719,7 +1719,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.548193(mm),-2.960395(mm),79.021544(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.571796(mm),1.6402354(mm),79.017382(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1730,7 +1730,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 80
-G4PrimaryTransformer::PrimaryVertex (-11.708079(mm),-0.80130663(mm),79.169679(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.499368(mm),2.6087083(mm),78.853826(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1739,7 +1739,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.707638(mm),2.9480196(mm),78.993429(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.88237(mm),2.5613898(mm),78.96262(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1748,7 +1748,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.612682(mm),-0.32409569(mm),78.833846(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.00269(mm),1.1745937(mm),78.941404(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1757,7 +1757,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.786147(mm),-0.2823864(mm),78.979586(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.633023(mm),3.5040538(mm),79.006586(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1766,7 +1766,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.428314(mm),2.9103259(mm),79.219009(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.737065(mm),3.2154458(mm),78.988241(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1775,7 +1775,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.576694(mm),-1.5573853(mm),78.311211(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.319374(mm),2.8860208(mm),79.061891(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1784,7 +1784,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.854978(mm),2.577254(mm),78.438469(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.522879(mm),0.79567042(mm),78.3207(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1793,7 +1793,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.570851(mm),-0.10917063(mm),79.370203(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.208874(mm),-2.4130439(mm),79.257702(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1802,7 +1802,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.127449(mm),1.557507(mm),78.214098(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.5358(mm),-3.0028779(mm),78.847402(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1811,7 +1811,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.94107(mm),3.6898943(mm),78.599615(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.367167(mm),2.9453863(mm),78.348156(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1822,7 +1822,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 90
-G4PrimaryTransformer::PrimaryVertex (-14.445022(mm),1.4316381(mm),78.687082(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.145875(mm),-1.6452324(mm),78.387176(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1831,7 +1831,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.246617(mm),-2.2392074(mm),78.369412(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.409467(mm),1.6830562(mm),79.398659(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1840,7 +1840,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.339592(mm),2.476443(mm),78.705672(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.197047(mm),-0.98073627(mm),78.730807(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1849,7 +1849,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.108026(mm),-0.52872242(mm),79.275484(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.537732(mm),1.7253751(mm),79.199715(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1858,7 +1858,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.705892(mm),1.1454605(mm),78.288429(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.592439(mm),3.540633(mm),78.484761(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1867,7 +1867,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.246134(mm),-0.18878809(mm),79.427459(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.615191(mm),2.2551653(mm),78.304422(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1876,7 +1876,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.777444(mm),2.198674(mm),78.275813(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.750318(mm),-3.0267692(mm),78.456923(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1885,7 +1885,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.342098(mm),-2.7821261(mm),79.057884(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.09264(mm),-2.2071736(mm),79.278197(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1894,7 +1894,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.711714(mm),1.7182042(mm),78.46373(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.954325(mm),0.21589494(mm),78.420951(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1903,7 +1903,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.137778(mm),-0.6706167(mm),79.270238(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.374525(mm),-0.089398518(mm),78.170531(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1914,7 +1914,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 100
-G4PrimaryTransformer::PrimaryVertex (-12.684947(mm),3.8028499(mm),78.99743(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.239711(mm),-0.65127485(mm),79.075938(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1923,7 +1923,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.857732(mm),-3.3109674(mm),79.143291(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.745476(mm),0.517677(mm),78.634104(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1932,7 +1932,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.270592(mm),-3.2937008(mm),78.541512(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.432489(mm),-0.28298744(mm),79.218273(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1941,7 +1941,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.967002(mm),0.56798852(mm),78.947697(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.654887(mm),-1.679518(mm),79.355385(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1950,7 +1950,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.636768(mm),-0.097897627(mm),79.35858(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.893633(mm),0.076347246(mm),78.784307(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1959,7 +1959,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.220454(mm),-1.4521152(mm),79.25566(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.743065(mm),-1.601929(mm),78.987183(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1968,7 +1968,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.455411(mm),0.051965143(mm),79.390558(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.245895(mm),0.88721487(mm),78.193212(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1977,7 +1977,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.745476(mm),0.517677(mm),78.634104(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-9.9784377(mm),-0.2244268(mm),79.474661(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1986,7 +1986,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.105047(mm),-2.7718018(mm),78.394375(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.712063(mm),0.23870507(mm),79.168976(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -1995,7 +1995,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.697602(mm),0.45431377(mm),78.289891(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.97911(mm),0.30037943(mm),79.298216(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2006,7 +2006,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 110
-G4PrimaryTransformer::PrimaryVertex (-11.159703(mm),1.1138635(mm),79.266372(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.576645(mm),2.065417(mm),78.311219(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2015,7 +2015,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.894717(mm),-3.2856021(mm),78.960442(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.733477(mm),1.3900981(mm),78.459892(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2024,7 +2024,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.373694(mm),-3.7212225(mm),78.875986(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.976007(mm),1.5120523(mm),78.417128(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2033,7 +2033,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.963843(mm),0.77010566(mm),79.300908(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.48576(mm),2.9186784(mm),78.503572(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2042,7 +2042,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.973905(mm),-0.74486684(mm),79.122806(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.888073(mm),-2.5547122(mm),79.137941(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2051,7 +2051,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.337882(mm),-1.7077248(mm),78.529647(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.808296(mm),0.24657712(mm),78.094046(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2060,7 +2060,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.866723(mm),-0.71315(mm),79.318032(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.824094(mm),-1.6579416(mm),79.149222(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2069,7 +2069,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.395417(mm),1.4756722(mm),79.048482(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.194177(mm),-1.3180024(mm),78.90764(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2078,7 +2078,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.545921(mm),2.2860597(mm),79.198272(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.902649(mm),-1.1415238(mm),79.135371(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2087,10 +2087,141 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.460251(mm),-1.6147296(mm),78.50807(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.909868(mm),-3.5904922(mm),78.605117(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = pi+,   Track ID = 2,   Parent ID = 1
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0   -1.3 cm  -3.75 mm   6.82 cm    177 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1 -1.4478114 cm  584.60661 um  5.9321729 cm  154.13494 MeV 22.834742 MeV  1.005349 cm   1.005349 cm     Target  Transportation
+    2  21.952403 cm -1.3809928 cm         -2 m   154.13495 MeV7.2107105e-17 eV  2.4352512 m   2.4453047 m  CaptureMgnt  Transportation
+    3  19.707198 cm -3.1986311 cm  -2.045764 m    154.1168 MeV  7.766105 keV 5.4118602 cm  2.4994233 m       World       hIoni
+    4    19.3783 cm -3.4646503 cm -2.0524757 m   154.11517 MeV 624.65648 eV  7.9335211 mm  2.5073568 m       World       hIoni
+    5  18.789822 cm -3.9399395 cm -2.0644837 m   154.00202 MeV  2.532323 keV 1.4191952 cm  2.5215488 m       World       hIoni
+    6  15.834066 cm -6.3363586 cm -2.1246765 m   153.98272 MeV 13.003174 keV 7.1211744 cm  2.5927605 m       World       hIoni
+    7  12.558744 cm -8.9955366 cm -2.1913301 m   153.96676 MeV 10.584502 keV 7.8883455 cm   2.671644 m       World       hIoni
+    8  11.250388 cm -10.057277 cm  -2.217855 m    153.9604 MeV 4.9438168 keV 3.1424163 cm  2.7030681 m       World       hIoni
+    9  8.7548144 cm -12.080244 cm -2.2683751 m   153.94825 MeV 10.318971 keV 5.9869108 cm  2.7629372 m       World       hIoni
+   10  7.4937255 cm -13.102585 cm -2.2939099 m    153.9413 MeV 5.2216859 keV 3.0258513 cm  2.7931958 m       World       hIoni
+   11   4.989133 cm -15.127925 cm -2.3446405 m   153.92631 MeV  10.14937 keV 6.0092421 cm  2.8532882 m       World       hIoni
+   12 -9.0798457 mm -19.880049 cm -2.4641223 m   153.90125 MeV 23.902799 keV 14.146302 cm  2.9947512 m       World       hIoni
+   13 -2.6285703 cm -21.265467 cm -2.4989508 m   153.89405 MeV  4.986838 keV 4.1243165 cm  3.0359944 m       World       hIoni
+   14 -3.1632075 cm -21.696018 cm -2.5097704 m   153.88858 MeV 5.4690575 keV 1.2813525 cm  3.0488079 m       World       hIoni
+   15 -3.9719764 cm -22.347395 cm -2.5261512 m   153.88329 MeV 3.5180431 keV 1.9395059 cm   3.068203 m       World       hIoni
+   16 -5.5275752 cm -23.600947 cm -2.5576876 m   153.86625 MeV 4.1376676 keV 3.7331945 cm  3.1055349 m       World       hIoni
+   17 -16.712968 cm -32.584095 cm -2.7845577 m    153.8251 MeV 40.134847 keV 26.842344 cm  3.3739583 m       World       hIoni
+   18 -29.621457 cm -42.960211 cm -3.0460982 m   153.77894 MeV 46.157234 keV 30.956884 cm  3.6835272 m       World       hIoni
+   19 -32.503923 cm -45.265801 cm -3.1044759 m    153.7675 MeV 9.5601883 keV 6.9068042 cm  3.7525952 m       World       hIoni
+   20 -33.582528 cm -46.128327 cm -3.1263628 m   153.75699 MeV 2.6991906 keV 2.5879924 cm  3.7784751 m       World       hIoni
+   21 -44.321576 cm  -54.68258 cm -3.3444455 m   153.71414 MeV 41.492267 keV 25.770212 cm  4.0361773 m       World       hIoni
+   22 -45.614815 cm -55.709236 cm -3.3707376 m   153.70516 MeV 5.9281445 keV 3.1047145 cm  4.0672244 m       World       hIoni
+   23 -51.705201 cm -60.522282 cm  -3.494255 m   153.67954 MeV 21.660372 keV  14.58848 cm  4.2131092 m       World       hIoni
+   24 -60.539345 cm -67.476524 cm -3.6730923 m   153.64633 MeV 30.644198 keV 21.124202 cm  4.4243512 m       World       hIoni
+   25 -61.757064 cm -68.437452 cm -3.6977922 m   153.64095 MeV 2.8156798 keV 2.9166893 cm  4.4535181 m       World       hIoni
+   26 -63.415124 cm -69.745524 cm -3.7314565 m   153.63257 MeV 6.3665642 keV 3.9740509 cm  4.4932586 m       World       hIoni
+   27 -67.005284 cm -72.581247 cm -3.8043855 m   153.61705 MeV 11.599788 keV 8.6091166 cm  4.5793498 m       World       hIoni
+   28 -69.391362 cm -74.457988 cm -3.8527838 m   153.60908 MeV  6.707927 keV 5.7130971 cm  4.6364808 m       World       hIoni
+   29 -73.686438 cm -77.831526 cm -3.9398684 m   153.58819 MeV 13.965794 keV 10.279392 cm  4.7392747 m       World       hIoni
+   30 -75.383877 cm -79.164902 cm -3.9742733 m   153.54636 MeV 7.0271433 keV 4.0615451 cm  4.7798901 m       World       hIoni
+   31  -75.93282 cm -79.595339 cm -3.9853974 m   153.54236 MeV 1.8300815 keV 1.3130364 cm  4.7930205 m       World       hIoni
+   32 -79.063038 cm -82.052845 cm -4.0488135 m   153.52962 MeV 11.677809 keV 7.4868997 cm  4.8678895 m       World       hIoni
+   33 -88.003727 cm -89.088182 cm -4.2300132 m   153.50092 MeV 28.696215 keV 21.395455 cm   5.081844 m       World       hIoni
+   34 -93.545493 cm -93.460454 cm -4.3425017 m   153.48233 MeV 18.598212 keV 13.280235 cm  5.2146464 m       World       hIoni
+   35 -99.777148 cm -98.375794 cm -4.4689611 m   153.43952 MeV 18.245504 keV 14.930313 cm  5.3639495 m       World       hIoni
+   36 -1.0704645 m  -1.0409213 m  -4.6165998 m   153.41547 MeV 22.671408 keV 17.421001 cm  5.5381595 m       World       hIoni
+   37 -1.0974996 m  -1.0621467 m   -4.671439 m   153.40712 MeV 7.1066902 keV 6.4720521 cm    5.60288 m       World       hIoni
+   38 -1.1009878 m  -1.0648831 m   -4.678508 m    153.4049 MeV 777.86395 eV  8.3442699 mm  5.6112243 m       World       hIoni
+   39 -1.1168895 m  -1.0773549 m   -4.710728 m   153.39888 MeV  4.549235 keV 3.8033328 cm  5.6492576 m       World       hIoni
+   40 -1.1514553 m  -1.1045093 m  -4.7808104 m   153.37835 MeV 12.673214 keV 8.2726702 cm  5.7319843 m       World       hIoni
+   41 -1.1591311 m  -1.1105376 m  -4.7963879 m   153.37409 MeV  3.128012 keV 1.8382592 cm  5.7503669 m       World       hIoni
+   42 -1.2655691 m  -1.1941711 m  -5.0123675 m   153.33161 MeV 40.065739 keV 25.489379 cm  6.0052607 m       World       hIoni
+   43 -1.2789943 m  -1.2047207 m  -5.0395873 m   153.32688 MeV 2.9216913 keV 3.2131729 cm  6.0373925 m       World       hIoni
+   44 -1.3183411 m   -1.235711 m  -5.1194731 m   153.31483 MeV 12.054049 keV 9.4288496 cm   6.131681 m       World       hIoni
+   45 -1.3596488 m  -1.2682454 m  -5.2032694 m   153.29943 MeV 15.396226 keV 9.8927389 cm  6.2306083 m       World       hIoni
+   46 -1.3938935 m  -1.2951515 m  -5.2727947 m   153.28689 MeV  10.62861 keV 8.2039104 cm  6.3126474 m       World       hIoni
+   47 -1.4074131 m  -1.3057424 m  -5.3002226 m    153.2817 MeV 5.1894948 keV 3.2360995 cm  6.3450084 m       World       hIoni
+   48 -1.4241262 m   -1.318825 m  -5.3341421 m   153.27341 MeV 6.6998795 keV 4.0012667 cm  6.3850211 m       World       hIoni
+   49 -1.4366518 m  -1.3285986 m  -5.3595521 m   153.26526 MeV 4.1597816 keV 2.9968039 cm  6.4149891 m       World       hIoni
+   50 -1.4788447 m  -1.3614455 m  -5.4448831 m   153.25048 MeV 13.467929 keV 10.070029 cm  6.5156894 m       World       hIoni
+   51 -1.5198514 m  -1.3932965 m  -5.5274893 m    153.2338 MeV  15.28845 keV 9.7569569 cm   6.613259 m       World       hIoni
+   52  -1.559993 m  -1.4243964 m  -5.6081162 m    153.2162 MeV 14.650274 keV 9.5285135 cm  6.7085441 m       World       hIoni
+   53 -1.5790426 m   -1.439178 m  -5.6463932 m   153.20533 MeV 7.0204546 keV  4.523838 cm  6.7537825 m       World       hIoni
+   54 -1.5863008 m  -1.4448128 m  -5.6609782 m   153.20049 MeV 1.5949099 keV 1.7238198 cm  6.7710207 m       World       hIoni
+   55 -1.6069045 m  -1.4608018 m  -5.7023836 m   153.18719 MeV 10.073842 keV 4.8934312 cm   6.819955 m       World       hIoni
+   56 -1.6276198 m  -1.4768992 m  -5.7440116 m   153.17565 MeV 4.9405838 keV 4.9205071 cm  6.8691601 m       World       hIoni
+   57 -1.6878894 m  -1.5236547 m  -5.8650094 m   153.15523 MeV 20.420056 keV 14.303485 cm   7.012195 m       World       hIoni
+   58 -1.7074919 m  -1.5388738 m  -5.9043057 m   153.14747 MeV 6.4019798 keV 4.6476722 cm  7.0586717 m       World       hIoni
+   59 -1.8330005 m  -1.6358885 m  -6.1555273 m   153.10146 MeV 44.411853 keV 29.711393 cm  7.3557856 m       World       hIoni
+   60 -1.8369005 m  -1.6389015 m  -6.1633438 m   153.09739 MeV 2.1333921 keV 9.2403546 mm   7.365026 m       World       hIoni
+   61  -1.851695 m  -1.6503119 m  -6.1929696 m   153.09276 MeV 3.2606202 keV 3.5025223 cm  7.4000512 m       World       hIoni
+   62 -1.8811664 m  -1.6730496 m  -6.2520237 m   153.07611 MeV 9.4700988 keV 6.9806551 cm  7.4698577 m       World       hIoni
+   63 -1.8959515 m  -1.6844667 m  -6.2816584 m   153.06851 MeV 5.2610044 keV 3.5030904 cm  7.5048886 m       World       hIoni
+   64 -1.9050826 m  -1.6915317 m  -6.2999746 m   153.06227 MeV 2.5306364 keV 2.1651224 cm  7.5265399 m       World       hIoni
+   65 -1.9059396 m   -1.692195 m  -6.3016941 m   153.06027 MeV 66.859877 eV  2.0325378 mm  7.5285724 m       World       hIoni
+   66  -1.913549 m   -1.698086 m  -6.3169664 m    153.0491 MeV 2.8944846 keV 1.8051285 cm  7.5466237 m       World       hIoni
+   67 -1.9192464 m  -1.7025004 m  -6.3283933 m   152.97513 MeV 600.55307 eV  1.3510035 cm  7.5601337 m       World       hIoni
+   68 -1.9221425 m  -1.7047514 m   -6.334201 m   152.96998 MeV 640.91274 eV  6.8690501 mm  7.5670028 m       World       hIoni
+   69 -1.9807504 m  -1.7503581 m   -6.451884 m   152.95016 MeV 18.463216 keV 13.915519 cm   7.706158 m       World       hIoni
+   70 -2.0195659 m  -1.7805643 m  -6.5298254 m   152.93713 MeV 13.034411 keV 9.2162464 cm  7.7983204 m       World       hIoni
+   71  -2.078558 m  -1.8258175 m  -6.6477735 m   152.91284 MeV 18.217846 keV 13.942661 cm   7.937747 m       World       hIoni
+   72 -2.1061217 m  -1.8468991 m  -6.7028403 m   152.89598 MeV 12.524501 keV 6.5088786 cm  8.0028358 m       World       hIoni
+   73  -2.136444 m  -1.8700825 m  -6.7634132 m   152.88473 MeV 9.2464858 keV 7.1596015 cm  8.0744318 m       World       hIoni
+   74  -2.158233 m  -1.8867335 m  -6.8069536 m   152.87223 MeV 10.724445 keV 5.1456563 cm  8.1258884 m       World       hIoni
+   75 -2.1669058 m  -1.8933646 m  -6.8242844 m   152.86268 MeV 3.2337297 keV 2.0482829 cm  8.1463712 m       World       hIoni
+   76 -2.2628399 m  -1.9663924 m  -7.0158633 m   152.82731 MeV 34.144024 keV 22.636022 cm  8.3727314 m       World       hIoni
+   77 -2.2889779 m   -1.986239 m  -7.0679902 m   152.48737 MeV 6.7848335 keV 6.1597848 cm  8.4343293 m       World       hIoni
+   78  -2.300288 m  -1.9948188 m  -7.0906271 m   152.48355 MeV 2.5451003 keV 2.6720011 cm  8.4610493 m       World       hIoni
+   79 -2.3465954 m  -2.0298904 m   -7.183281 m   152.46549 MeV 16.073789 keV 10.935791 cm  8.5704072 m       World       hIoni
+   80 -2.3603023 m  -2.0402489 m  -7.2107059 m   152.45701 MeV 6.7593601 keV 3.2361999 cm  8.6027692 m       World       hIoni
+   81 -2.4119294 m  -2.0795054 m  -7.3142536 m   152.44051 MeV 15.413067 keV 12.218254 cm  8.7249518 m       World       hIoni
+   82 -2.4126511 m  -2.0800549 m  -7.3157049 m   152.43829 MeV 650.62314 eV  1.7114608 mm  8.7266632 m       World       hIoni
+   83 -2.5010169 m  -2.1472677 m  -7.4929271 m   152.41079 MeV  26.44505 keV 20.912629 cm  8.9357895 m       World       hIoni
+   84 -2.5198111 m    -2.16156 m  -7.5305956 m    152.4058 MeV 3.7742143 keV 4.4456795 cm  8.9802463 m       World       hIoni
+   85 -2.5892907 m  -2.2145921 m  -7.6701618 m   152.38167 MeV 22.424857 keV 16.467718 cm  9.1449235 m       World       hIoni
+   86 -2.6001438 m   -2.222897 m  -7.6919498 m   152.37452 MeV  4.665589 keV 2.5719245 cm  9.1706427 m       World       hIoni
+   87 -2.6055017 m  -2.2270029 m  -7.7027079 m    152.3248 MeV 2.2115718 keV 1.2700494 cm  9.1833432 m       World       hIoni
+   88 -2.6873594 m  -2.2895133 m   -7.866502 m   152.29687 MeV 26.709278 keV 19.348584 cm  9.3768291 m       World       hIoni
+   89 -2.7149283 m  -2.3105989 m  -7.9217031 m   152.28518 MeV 10.025879 keV 6.5205896 cm   9.442035 m       World       hIoni
+   90 -2.7804048 m  -2.3606833 m  -8.0526222 m   152.26193 MeV 23.245965 keV 15.471089 cm  9.5967458 m       World       hIoni
+   91 -2.8064661 m  -2.3805892 m  -8.1046181 m   152.25134 MeV 8.5228286 keV 6.1473624 cm  9.6582195 m       World       hIoni
+   92 -2.8176497 m  -2.3891373 m  -8.1269176 m    152.2408 MeV 2.5991274 keV 2.6370637 cm  9.6845901 m       World       hIoni
+   93 -2.9037051 m  -2.4549335 m  -8.2987457 m   152.21146 MeV 26.872676 keV 20.312458 cm  9.8877147 m       World       hIoni
+   94 -2.9142359 m  -2.4629855 m   -8.319781 m   152.20044 MeV 4.8196203 keV 2.4863963 cm  9.9125787 m       World       hIoni
+   95 -2.9489628 m  -2.4895237 m   -8.388991 m   152.18489 MeV  11.71512 keV 8.1855155 cm  9.9944338 m       World       hIoni
+   96 -2.9971737 m  -2.5264635 m  -8.4851427 m   152.16382 MeV 17.457228 keV 11.372773 cm  10.108162 m       World       hIoni
+   97 -3.0374451 m  -2.5573659 m  -8.5655073 m   152.14634 MeV 16.154331 keV 9.5053727 cm  10.203215 m       World       hIoni
+   98 -3.0465988 m  -2.5644102 m  -8.5837865 m   152.13257 MeV 2.6880697 keV  2.162271 cm  10.224838 m       World       hIoni
+   99 -3.1675765 m    -2.65745 m    -8.82519 m   152.09319 MeV  38.15175 keV 28.560077 cm  10.510439 m       World       hIoni
+  100 -3.2652111 m  -2.7326185 m  -9.0198798 m   152.05851 MeV 32.309989 keV 23.040607 cm  10.740845 m       World       hIoni
+  101 -3.2683584 m  -2.7350288 m  -9.0261366 m   152.05135 MeV 768.48649 eV   7.406985 mm  10.748252 m       World       hIoni
+  102 -3.2849834 m  -2.7477758 m  -9.0592031 m   152.04611 MeV 5.2430336 keV 3.9144244 cm  10.787396 m       World       hIoni
+  103 -3.3228035 m  -2.7767518 m  -9.1343472 m   152.02608 MeV 14.914186 keV 8.8975288 cm  10.876371 m       World       hIoni
+  104 -3.3411186 m  -2.7907771 m  -9.1706412 m   152.01587 MeV 6.8881927 keV  4.300478 cm  10.919376 m       World       hIoni
+  105 -3.3759362 m   -2.817406 m   -9.239626 m   152.00262 MeV 12.145665 keV 8.1732865 cm  11.001109 m       World       hIoni
+  106  -3.463941 m  -2.8847176 m  -9.4140117 m   151.97144 MeV 27.293338 keV 20.660627 cm  11.207715 m       World       hIoni
+  107 -3.4826285 m  -2.8991562 m  -9.4512671 m   151.95892 MeV 8.3251873 keV 4.4109601 cm  11.251825 m       World       hIoni
+  108 -3.4845729 m  -2.9006582 m  -9.4551386 m   151.95157 MeV  529.0532 eV  4.5853281 mm   11.25641 m       World       hIoni
+  109 -3.4901688 m  -2.9049816 m  -9.4662745 m   151.92906 MeV  2.605362 keV 1.3191503 cm  11.269602 m       World       hIoni
+  110 -3.5020426 m  -2.9141307 m  -9.4898867 m   151.92312 MeV 4.9075132 keV 2.7968368 cm   11.29757 m       World       hIoni
+  111 -3.5090273 m  -2.9195152 m  -9.5037766 m    151.9187 MeV 3.0584991 keV 1.6453181 cm  11.314023 m       World       hIoni
+  112 -3.5526339 m   -2.953193 m  -9.5907797 m   151.90194 MeV 15.032287 keV 10.298196 cm  11.417005 m       World       hIoni
+  113   -3.58181 m  -2.9756885 m  -9.6490472 m   151.87448 MeV 11.395575 keV 6.8937539 cm  11.485943 m       World       hIoni
+  114 -3.5903637 m  -2.9822854 m  -9.6661474 m   151.86947 MeV 3.8341066 keV 2.0226281 cm  11.506169 m       World       hIoni
+  115  -3.698563 m  -3.0661343 m  -9.8825997 m   151.82553 MeV 41.693863 keV 25.610428 cm  11.762273 m       World       hIoni
+  116  -3.727612 m   -3.088683 m  -9.9406061 m   151.81235 MeV 11.450788 keV 6.8680657 cm  11.830954 m       World       hIoni
+  117 -3.7412205 m  -3.0992442 m  -9.9677594 m   151.80496 MeV 6.0578381 keV 3.2156436 cm   11.86311 m       World       hIoni
+  118 -3.7496232 m  -3.1057688 m  -9.9845153 m   151.80067 MeV 2.8237623 keV 1.9847749 cm  11.882958 m       World       hIoni
+  119 -3.7644925 m  -3.1173352 m   -10.01419 m   151.79302 MeV 4.5700266 keV 3.5148931 cm  11.918107 m       World       hIoni
+  120 -3.8046289 m  -3.1485283 m  -10.094316 m   151.77891 MeV  12.72621 keV  9.489075 cm  12.012998 m       World       hIoni
+  121 -3.8257062 m   -3.164917 m  -10.136433 m   151.77067 MeV  7.081561 keV 4.9866022 cm  12.062864 m       World       hIoni
+  122 -3.8267726 m   -3.165747 m  -10.138564 m   151.76859 MeV 142.21097 eV   2.523377 mm  12.065387 m       World       hIoni
+  123 -3.8532161 m  -3.1863342 m  -10.191434 m   151.76116 MeV 7.4331647 keV 6.2596982 cm  12.127984 m  OutOfWorld  Transportation
+Track (trackID 2, parentID 1) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
@@ -2098,7 +2229,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 120
-G4PrimaryTransformer::PrimaryVertex (-11.506631(mm),2.5356823(mm),79.205199(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.995924360148(mm),-1.9532236602146(mm),78.413615904794(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2107,7 +2238,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.482545(mm),3.6765458(mm),78.680466(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.289659(mm),2.1602371(mm),79.067131(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2116,7 +2247,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.206082(mm),-1.9866707(mm),78.552886(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.123341(mm),1.0140014(mm),79.449111(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2125,7 +2256,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.855064(mm),3.2280415(mm),78.438453(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.30496(mm),2.1082755(mm),78.535451(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2134,7 +2265,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.583896(mm),-0.20354218(mm),78.838922(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.807505(mm),1.6987844(mm),79.328474(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2143,7 +2274,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.110384(mm),0.40939058(mm),78.393434(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.931446(mm),2.1871731(mm),78.953966(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2152,7 +2283,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.938727(mm),1.9674115(mm),78.247374(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.265571(mm),-2.5912896(mm),78.36607(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2161,7 +2292,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.165925(mm),-1.7573895(mm),78.559967(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.331446(mm),-2.9420027(mm),78.354454(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2170,7 +2301,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.202304(mm),3.7480653(mm),78.553553(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.814716(mm),2.2035274(mm),78.269241(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2179,7 +2310,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.384177(mm),-1.2088161(mm),78.16883(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.000018(mm),-3.2265534(mm),78.941875(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2190,7 +2321,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 130
-G4PrimaryTransformer::PrimaryVertex (-13.292008(mm),3.8544437(mm),78.890389(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.305461(mm),0.34617167(mm),78.182709(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2199,7 +2330,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.112222(mm),-1.2025914(mm),79.098417(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.375504(mm),0.67835658(mm),78.170359(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2208,7 +2339,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.732217(mm),0.34239705(mm),78.107461(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.460445(mm),-0.75987772(mm),78.155381(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2217,7 +2348,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.687548(mm),-0.089408147(mm),78.644318(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.057696(mm),-3.3867323(mm),78.931705(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2226,7 +2357,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.439763(mm),2.9579634(mm),78.511682(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.837761(mm),-1.0840889(mm),78.794158(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2235,7 +2366,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.229265(mm),0.36179631(mm),79.07778(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.72114(mm),-3.7332847(mm),78.814722(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2244,7 +2375,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.781303(mm),-1.2996657(mm),79.333094(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.669689(mm),-2.7562028(mm),78.294813(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2253,7 +2384,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.532617(mm),2.4202117(mm),79.200617(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.850914(mm),3.419532(mm),78.615512(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2262,7 +2393,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.032871(mm),-3.2217556(mm),78.759755(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.138734(mm),2.1998325(mm),78.388435(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2271,7 +2402,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.442522(mm),3.1027268(mm),78.511196(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.633096(mm),2.4466265(mm),79.006573(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2282,7 +2413,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 140
-G4PrimaryTransformer::PrimaryVertex (-14.046811(mm),-0.15408269(mm),78.757297(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.168983(mm),-1.7472579(mm),78.383101(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2291,7 +2422,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.609202(mm),0.42615733(mm),78.305478(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.157607(mm),-1.6115661(mm),78.914088(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2300,7 +2431,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.788592(mm),0.0028308596(mm),78.626501(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.959272(mm),-0.54513161(mm),78.596406(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2309,7 +2440,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.211231(mm),2.9787164(mm),78.375651(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.614686(mm),0.52671902(mm),79.009819(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2318,7 +2449,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.782572(mm),-2.2875324(mm),79.156544(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.438135(mm),-2.7223617(mm),78.511969(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2327,7 +2458,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.001016(mm),2.9033085(mm),78.412718(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.664696(mm),2.5552779(mm),78.648347(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2336,7 +2467,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.32416(mm),2.2819382(mm),78.355739(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.246007(mm),0.80935606(mm),78.545847(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2345,7 +2476,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.897156(mm),-3.4470365(mm),78.783685(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.531475(mm),-2.2022982(mm),79.200819(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2354,7 +2485,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.076883(mm),-0.31950008(mm),78.575668(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.687619(mm),-1.0006291(mm),78.820632(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2363,7 +2494,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.560692(mm),-0.62047827(mm),78.314032(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.639119(mm),-0.72786021(mm),78.829184(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2374,7 +2505,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 150
-G4PrimaryTransformer::PrimaryVertex (-14.095403(mm),0.97896577(mm),78.748729(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-9.9761853(mm),-0.13975803(mm),79.475058(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2383,7 +2514,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.188285(mm),1.8108752(mm),78.556024(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.448181(mm),1.2351205(mm),79.039179(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2392,7 +2523,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.005046(mm),-0.02995718(mm),79.293642(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.274248(mm),2.2586975(mm),79.246175(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2401,7 +2532,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.534433(mm),-0.072562417(mm),78.494989(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.62172(mm),-1.5139202(mm),78.303271(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2410,7 +2541,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.227104(mm),-2.3798331(mm),78.372853(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.167854(mm),-2.53613(mm),78.735954(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2419,7 +2550,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.966936(mm),-0.063934335(mm),78.418727(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.970086(mm),-0.23217084(mm),78.770826(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2428,7 +2559,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.946932(mm),2.3251002(mm),78.951236(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.512622(mm),-2.5071787(mm),78.322508(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2437,7 +2568,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.846563(mm),3.1640886(mm),78.616279(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.256397(mm),3.4626981(mm),79.072995(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2446,7 +2577,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.770648(mm),-2.6027234(mm),78.629665(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.476848(mm),-0.73407996(mm),78.857797(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2455,7 +2586,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.394603(mm),1.4758629(mm),78.166991(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.051439(mm),-1.2067107(mm),78.2275(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2466,7 +2597,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 160
-G4PrimaryTransformer::PrimaryVertex (-15.661032(mm),1.1167975(mm),78.472666(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.022512(mm),-3.1231139(mm),78.408928(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2475,7 +2606,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.960143(mm),-0.67427751(mm),78.419925(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.622747(mm),3.7028735(mm),78.655744(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2484,7 +2615,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.820705(mm),1.0516742(mm),79.14982(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.524878(mm),-3.9377479(mm),78.673001(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2493,7 +2624,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.048028(mm),-3.7455821(mm),78.757083(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.566641(mm),-1.3624005(mm),78.841964(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2502,7 +2633,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.905706(mm),-1.2538497(mm),78.958505(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.698507(mm),-0.64162004(mm),78.818713(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2511,7 +2642,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.648237(mm),0.12359549(mm),78.65125(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.089417(mm),-2.6834213(mm),78.926112(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2520,7 +2651,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.750174(mm),2.1065185(mm),78.456948(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.653146(mm),-1.9510569(mm),78.29773(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2529,7 +2660,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.434388(mm),1.3224823(mm),79.394265(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.101483(mm),-3.2385136(mm),78.923984(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2538,7 +2669,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.892565(mm),-2.1913153(mm),79.137149(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.596398(mm),1.9923426(mm),78.836717(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2547,7 +2678,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.268451(mm),-0.82159245(mm),78.365562(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.24588(mm),2.369145(mm),79.07485(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2558,7 +2689,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 170
-G4PrimaryTransformer::PrimaryVertex (-12.748274(mm),-3.0986121(mm),78.986264(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.651186(mm),-1.5571752(mm),78.474403(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2567,7 +2698,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.644921(mm),-0.33910025(mm),79.004488(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.868788(mm),3.1569615(mm),78.965014(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2576,7 +2707,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.457317(mm),-2.3931265(mm),78.684914(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.239054(mm),-0.97773303(mm),79.076053(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2585,7 +2716,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.938634(mm),-1.9571654(mm),79.305353(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.214482(mm),-0.73253542(mm),79.43304(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2594,7 +2725,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.041466(mm),0.060163288(mm),79.110894(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.323456(mm),3.0997222(mm),79.061171(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2603,7 +2734,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.616975(mm),-1.2908865(mm),79.36207(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.015489(mm),0.88485109(mm),79.115474(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2612,7 +2743,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.772625(mm),-1.3782253(mm),78.981971(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.057362(mm),2.9154014(mm),78.755437(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2621,7 +2752,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.028433(mm),2.2573542(mm),79.113192(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.760538(mm),0.11144035(mm),79.160429(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2630,7 +2761,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.071239(mm),1.5962572(mm),79.105644(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.582398(mm),1.0487033(mm),79.19184(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2639,7 +2770,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.090459(mm),0.18313454(mm),79.102255(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.685375(mm),-2.676666(mm),78.821028(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2650,7 +2781,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 180
-G4PrimaryTransformer::PrimaryVertex (-11.546294(mm),-1.6230458(mm),79.198206(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.366214(mm),0.90067249(mm),78.524651(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2659,7 +2790,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.357394(mm),3.7012538(mm),78.526206(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.49553(mm),-2.7204914(mm),78.678176(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2668,7 +2799,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.623993(mm),-2.1548915(mm),79.184505(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.523136(mm),-3.5246814(mm),79.025962(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2677,7 +2808,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.698128(mm),0.29617552(mm),78.466125(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.794644(mm),-3.0281744(mm),79.154415(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2686,7 +2817,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.613368(mm),2.4078169(mm),78.481071(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.918426(mm),-0.37759958(mm),79.132589(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2695,7 +2826,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.070006(mm),-1.0655912(mm),78.929534(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.661192(mm),3.0496007(mm),78.472638(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2704,7 +2835,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.907785(mm),-2.5738852(mm),78.429157(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.384459(mm),-0.77778124(mm),79.050415(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2713,7 +2844,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.476633(mm),2.6078508(mm),78.328854(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.242735(mm),-0.097583631(mm),78.19377(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2722,7 +2853,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.817987(mm),-2.5754404(mm),78.797645(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.429934(mm),-3.7032708(mm),79.042396(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2731,7 +2862,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.032294(mm),1.3425756(mm),78.936184(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.695874(mm),0.51111167(mm),78.819177(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2742,7 +2873,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 190
-G4PrimaryTransformer::PrimaryVertex (-10.06758(mm),0.50663105(mm),79.458943(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.099544(mm),0.18285787(mm),79.27698(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2751,7 +2882,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.445033(mm),-1.110343(mm),79.392388(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.837169(mm),3.4647896(mm),78.441609(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2760,7 +2891,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.53867(mm),-0.085845992(mm),79.023223(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.788287(mm),-3.599243(mm),78.626555(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2769,7 +2900,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.906523(mm),1.0106187(mm),78.42938(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.480978(mm),2.1969882(mm),78.328088(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2778,7 +2909,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.420556(mm),0.74297504(mm),79.396704(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.138202(mm),-0.56799524(mm),79.270163(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2787,7 +2918,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.86601(mm),-1.7273424(mm),78.61285(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.798546(mm),-0.86291761(mm),78.624746(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2796,7 +2927,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.785319(mm),-1.5988339(mm),78.803405(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.074804(mm),1.6799925(mm),78.22338(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2805,7 +2936,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.292527(mm),1.3864547(mm),79.242952(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.913334(mm),-2.7908204(mm),78.428179(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2814,7 +2945,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.255914(mm),0.093121213(mm),79.425735(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.060218(mm),1.5389678(mm),79.283914(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2823,7 +2954,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.769172(mm),-1.0259253(mm),78.982579(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.853475(mm),-1.2033711(mm),78.262407(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2834,7 +2965,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 200
-G4PrimaryTransformer::PrimaryVertex (-17.456902(mm),1.0848825(mm),78.156006(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.352783(mm),3.4158375(mm),78.703346(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2843,7 +2974,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.863393(mm),0.21701237(mm),78.436985(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.130755(mm),0.63058108(mm),79.447803(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2852,7 +2983,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.739537(mm),-2.2332995(mm),79.164132(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.76878(mm),1.0687599(mm),78.806322(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2861,7 +2992,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.920654(mm),0.65930643(mm),78.955869(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.864432(mm),-0.061458048(mm),78.436802(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2870,7 +3001,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.150774(mm),-0.031507631(mm),78.562639(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.520403(mm),1.9133021(mm),79.202771(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2879,7 +3010,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.412658(mm),-3.6568676(mm),78.692788(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.082078(mm),0.47631582(mm),78.574752(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2888,7 +3019,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.127422(mm),-2.4985075(mm),78.743083(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.057125(mm),3.4562474(mm),78.931805(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2897,7 +3028,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.260838(mm),-0.83059054(mm),78.719558(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.736841(mm),2.7555141(mm),78.98828(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2906,7 +3037,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.079387(mm),2.6565449(mm),78.575226(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.401688(mm),0.040816614(mm),79.047377(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2915,7 +3046,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.202903(mm),2.0937638(mm),78.906101(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.085277(mm),-1.9182174(mm),79.103168(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2926,7 +3057,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 210
-G4PrimaryTransformer::PrimaryVertex (-11.779586(mm),-0.868085(mm),79.15707(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.489254(mm),-0.2331512(mm),79.031937(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2935,7 +3066,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.392917(mm),-1.0569156(mm),79.22525(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.235432(mm),-2.8248223(mm),78.900365(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2944,7 +3075,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.996255(mm),1.9927767(mm),79.118865(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.479088(mm),-0.55967632(mm),79.210056(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2953,7 +3084,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.423134(mm),-0.53885742(mm),79.043595(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.032625(mm),1.2976822(mm),79.112453(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2962,7 +3093,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.249937(mm),2.6098052(mm),79.250462(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.996487(mm),-0.79268269(mm),79.295152(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2971,7 +3102,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.983918(mm),3.3325482(mm),78.944714(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.401955(mm),-1.8755376(mm),78.518349(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2980,7 +3111,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.388198(mm),1.8054775(mm),78.697101(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.945858(mm),-2.9037244(mm),78.775098(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2989,7 +3120,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.1769(mm),0.34050281(mm),79.26334(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.83396(mm),3.6838988(mm),78.971155(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -2998,7 +3129,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.752421(mm),-3.6423716(mm),78.809206(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.420108(mm),3.0048733(mm),79.044129(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3007,7 +3138,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.970662(mm),-0.37668356(mm),78.770724(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.554655(mm),-0.26922338(mm),78.844078(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3018,7 +3149,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 220
-G4PrimaryTransformer::PrimaryVertex (-17.497704(mm),0.4206513(mm),78.148812(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.122017(mm),-1.4181578(mm),79.273017(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3027,7 +3158,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.305302(mm),2.596711(mm),78.359064(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.313545(mm),-2.9967558(mm),78.886592(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3036,7 +3167,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.824128(mm),-2.5218407(mm),78.443908(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.998106(mm),-0.46083273(mm),79.118539(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3045,7 +3176,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.126944(mm),2.0978272(mm),78.566841(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.302778(mm),0.16782032(mm),79.417471(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3054,7 +3185,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.097174(mm),-0.3699437(mm),78.748417(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.124119(mm),-2.3350628(mm),79.272647(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3063,7 +3194,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.460629(mm),0.87403804(mm),79.389638(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.42484(mm),-0.16520373(mm),78.866968(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3072,7 +3203,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.71548(mm),-2.7936385(mm),78.463066(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.148344(mm),2.7912091(mm),78.38674(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3081,7 +3212,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.527084(mm),1.9436029(mm),78.319958(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.006875(mm),-2.4546598(mm),79.29332(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3090,7 +3221,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.675672(mm),0.83633169(mm),78.117431(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.849501(mm),-1.0591519(mm),78.439434(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3099,7 +3230,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.772558(mm),3.156164(mm),78.629328(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.323171(mm),-0.88225008(mm),79.413875(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3110,7 +3241,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 230
-G4PrimaryTransformer::PrimaryVertex (-10.936575(mm),-1.0138517(mm),79.305716(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.508261(mm),0.98585331(mm),78.675931(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3119,7 +3250,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.529207(mm),0.64785306(mm),79.377546(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.601361(mm),-1.8418957(mm),78.659515(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3128,7 +3259,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.522453(mm),1.3467281(mm),78.320775(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.485555(mm),0.10661774(mm),78.150954(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3137,7 +3268,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.681084(mm),-3.0151905(mm),78.998112(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.751314(mm),0.27760877(mm),79.162055(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3146,7 +3277,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.965445(mm),-2.6829497(mm),78.771644(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.696211(mm),-1.7245048(mm),78.995444(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3155,7 +3286,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.163731(mm),3.6617535(mm),78.913008(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.54364(mm),-0.79358163(mm),79.375001(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3164,7 +3295,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.64899(mm),1.9618023(mm),79.356425(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.119617(mm),-2.7796988(mm),79.27344(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3173,7 +3304,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.589405(mm),1.4718187(mm),79.014277(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.42792(mm),2.6910046(mm),78.51377(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3182,7 +3313,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.228408(mm),-2.0419216(mm),78.196296(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.981582(mm),-0.53843829(mm),79.29778(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3191,7 +3322,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.191335(mm),-3.9676429(mm),78.731814(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.070334(mm),-3.2403626(mm),78.576822(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3202,7 +3333,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 240
-G4PrimaryTransformer::PrimaryVertex (-10.118118(mm),0.98848627(mm),79.450032(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.047382(mm),3.2784498(mm),78.404542(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3211,7 +3342,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.491391(mm),-0.58537542(mm),78.678906(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.768044(mm),1.1076223(mm),78.982778(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3220,7 +3351,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.24047(mm),1.8784362(mm),79.252131(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.969402(mm),2.4453145(mm),78.241966(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3229,7 +3360,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.347009(mm),-1.0960964(mm),79.409672(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.954884(mm),1.1789699(mm),79.12616(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3238,7 +3369,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.520348(mm),-2.5448014(mm),78.497473(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.550336(mm),0.48103229(mm),78.315858(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3247,7 +3378,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.590891(mm),-0.77565974(mm),79.190342(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.288501(mm),3.2334383(mm),78.538354(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3256,7 +3387,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.221189(mm),-2.8702776(mm),78.373896(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.742335(mm),-1.259655(mm),78.458331(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3265,7 +3396,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.982319(mm),-0.25497325(mm),78.592342(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.672434(mm),-2.1361524(mm),79.175964(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3274,7 +3405,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.679183(mm),-0.12786035(mm),78.82212(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.653666(mm),1.2494883(mm),78.473965(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3283,7 +3414,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.309134(mm),1.9226235(mm),79.240023(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.153589(mm),-1.355506(mm),78.738469(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3294,7 +3425,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 250
-G4PrimaryTransformer::PrimaryVertex (-10.377444(mm),-0.30666188(mm),79.404306(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.884902(mm),3.8455574(mm),78.609519(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3303,7 +3434,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.060259(mm),0.46970954(mm),78.931253(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.747435(mm),0.1098424(mm),78.810085(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3312,7 +3443,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.668409(mm),1.4213195(mm),79.176674(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.102506(mm),3.2191854(mm),78.923804(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3321,7 +3452,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.232035(mm),2.4422905(mm),79.253618(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.298544(mm),-2.0218397(mm),78.536583(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3330,7 +3461,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.590766(mm),0.63776041(mm),78.661383(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.815476(mm),-1.1277797(mm),79.327069(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3339,7 +3470,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.658417(mm),-0.44332327(mm),78.296801(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.371941(mm),-0.55261727(mm),78.170987(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3348,7 +3479,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.536117(mm),0.4960888(mm),79.2(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.559182(mm),1.9439707(mm),78.843279(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3357,7 +3488,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.485964(mm),2.2035268(mm),78.503536(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.661041(mm),-2.910545(mm),78.825319(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3366,7 +3497,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.583734(mm),-0.45612532(mm),79.015277(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.009001(mm),0.19164351(mm),79.292945(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3375,7 +3506,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.303452(mm),-0.71956259(mm),79.241025(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.07189(mm),-2.5143622(mm),78.400221(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3386,44 +3517,16 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 260
-G4PrimaryTransformer::PrimaryVertex (-14.120501(mm),1.7472845(mm),78.744304(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.925958(mm),-1.4867571(mm),78.778607(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
-
-*********************************************************************************************************
-* G4Track Information:   Particle = pi+,   Track ID = 4,   Parent ID = 1
-*********************************************************************************************************
-
-Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
-    0  -9.06 mm   2.86 mm   4.46 cm   16.8 MeV     0 eV      0 fm      0 fm     Target    initStep
-    1 -8.9679011 mm  2.5400409 mm  4.4291333 cm  13.223181 MeV 3.5558221 MeV 456.42706 um  456.42706 um     Target       hIoni
-    2 -8.8641969 mm  2.2565349 mm  4.4117134 cm  10.312556 MeV 2.9106249 MeV 353.21189 um  809.63894 um     Target       hIoni
-    3 -8.7664885 mm  2.0568269 mm  4.3955606 cm  7.3271754 MeV 2.9853808 MeV 279.34703 um   1.088986 mm     Target       hIoni
-    4 -8.6867224 mm   1.928131 mm  4.3815616 cm  4.4539852 MeV 2.8731903 MeV 211.14989 um  1.3001359 mm     Target       hIoni
-    5 -8.6598031 mm  1.8403654 mm  4.3716928 cm  1.3498966 MeV 3.1040886 MeV 140.29884 um  1.4404347 mm     Target       hIoni
-    6 -8.6522999 mm  1.8368238 mm  4.3704102 cm   106.5627 keV 1.2433339 MeV 21.811282 um   1.462246 mm     Target       hIoni
-    7 -8.6520075 mm  1.8367553 mm  4.3704062 cm          0 eV   106.5627 keV 620.43887 nm  1.4628664 mm     Target       hIoni
-    8 -8.6520075 mm  1.8367553 mm  4.3704062 cm          0 eV          0 eV          0 fm  1.4628664 mm     Target  Scintillation
-Track (trackID 4, parentID 1) is processed with stopping code 2
-
-*********************************************************************************************************
-* G4Track Information:   Particle = mu+,   Track ID = 21,   Parent ID = 4
-*********************************************************************************************************
-
-Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
-    0  -8.65 mm   1.84 mm   4.37 cm   4.12 MeV     0 eV      0 fm      0 fm     Target    initStep
-    1 -8.5640488 mm  1.8949902 mm  4.3636668 cm  384.38081 keV 3.7354319 MeV 164.72433 um  164.72433 um     Target      muIoni
-    2 -8.5647371 mm  1.8968767 mm  4.3635126 cm  48.096924 keV 336.28388 keV  3.717792 um  168.44212 um     Target      muIoni
-    3 -8.5647078 mm   1.896945 mm  4.3635083 cm          0 eV  48.096924 keV 260.10092 nm  168.70222 um     Target      muIoni
-    4 -8.5647078 mm   1.896945 mm  4.3635083 cm          0 eV          0 eV          0 fm  168.70222 um     Target  Scintillation
-Track (trackID 21, parentID 4) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.474852(mm),-1.2278873(mm),78.329168(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.127032(mm),0.87485098(mm),78.214171(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3432,7 +3535,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.052317(mm),-1.9398955(mm),78.403672(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.27059(mm),3.7506247(mm),78.717839(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3441,7 +3544,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.67532(mm),0.44468604(mm),79.351782(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.420361(mm),1.196524(mm),78.69143(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3450,7 +3553,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.573895(mm),2.801802(mm),78.840685(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.763378(mm),1.5041954(mm),78.807274(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3459,7 +3562,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.376977(mm),-1.6634927(mm),78.875407(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.979121(mm),3.3488318(mm),78.416579(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3468,7 +3571,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.678156(mm),2.6407466(mm),78.998628(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.321889(mm),-3.7589435(mm),78.708794(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3477,7 +3580,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.726957(mm),-1.2959663(mm),79.342677(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.367516(mm),2.632674(mm),78.877075(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3486,7 +3589,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.950813(mm),-1.5304017(mm),79.126878(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.946398(mm),0.46336554(mm),78.775003(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3495,7 +3598,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.247216(mm),0.023917156(mm),79.250941(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.41283(mm),-0.79992377(mm),78.163777(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3506,7 +3609,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 270
-G4PrimaryTransformer::PrimaryVertex (-17.037806(mm),1.4763351(mm),78.229904(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.572928(mm),-0.73393208(mm),78.488202(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3515,7 +3618,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.043207(mm),1.3997834(mm),78.228952(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.156693(mm),-2.2898858(mm),79.266903(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3524,7 +3627,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.026674(mm),-0.21129323(mm),79.113502(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.439984(mm),-2.9913497(mm),79.040624(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3533,7 +3636,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.322645(mm),-1.8303598(mm),78.884987(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.898303(mm),-1.5842142(mm),78.783483(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3542,7 +3645,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.12377(mm),-2.345821(mm),78.391073(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.77109(mm),1.9768431(mm),79.158568(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3551,7 +3654,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.651361(mm),1.8072249(mm),78.474372(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.098881(mm),1.8494396(mm),79.10077(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3560,16 +3663,46 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.506394(mm),0.11545154(mm),78.323606(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.817687(mm),1.8368273(mm),78.974025(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = pi+,   Track ID = 3,   Parent ID = 1
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -7.43 mm    836 um   5.32 cm   26.7 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1 -6.8851893 mm  945.11606 um  5.2583426 cm  22.948914 MeV  3.747326 MeV 817.32584 um  817.32584 um     Target       hIoni
+    2 -6.4726138 mm   1.032928 mm  5.2072101 cm   18.67715 MeV 4.2717637 MeV 669.01499 um  1.4863408 mm     Target       hIoni
+    3 -6.1428684 mm  1.1764225 mm  5.1707547 cm  14.856362 MeV 3.8207878 MeV 517.44237 um  2.0037832 mm     Target       hIoni
+    4 -5.8890695 mm  1.1771324 mm   5.140632 cm  11.658471 MeV 3.1978907 MeV  398.8012 um  2.4025844 mm     Target       hIoni
+    5 -5.6478248 mm   1.163735 mm  5.1215671 cm  8.4953258 MeV 3.1631457 MeV 312.38375 um  2.7149681 mm     Target       hIoni
+    6 -5.4386957 mm  1.1655851 mm  5.1114049 cm  5.6183233 MeV 2.8770025 MeV  237.2569 um  2.9522251 mm     Target       hIoni
+    7 -5.2815997 mm  1.1451028 mm  5.1063031 cm  2.4147003 MeV  3.203623 MeV 171.88681 um  3.1241119 mm     Target       hIoni
+    8 -5.2408376 mm  1.1408145 mm  5.1041994 cm  148.90639 keV 2.2657939 MeV 55.823796 um  3.1799357 mm     Target       hIoni
+    9 -5.2405428 mm  1.1411101 mm  5.1041737 cm  34.529038 keV 114.37735 keV 919.49833 nm  3.1808552 mm     Target       hIoni
+   10 -5.2405228 mm  1.1411262 mm  5.1041699 cm          0 eV  34.529038 keV 196.94947 nm  3.1810521 mm     Target       hIoni
+   11 -5.2405228 mm  1.1411262 mm  5.1041699 cm          0 eV          0 eV          0 fm  3.1810521 mm     Target  Scintillation
+Track (trackID 3, parentID 1) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = mu+,   Track ID = 23,   Parent ID = 3
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -5.24 mm   1.14 mm    5.1 cm   4.12 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1 -5.2434043 mm  1.0261873 mm  5.0976353 cm  181.07772 keV 3.9387349 MeV 164.72433 um  164.72433 um     Target      muIoni
+    2 -5.2430946 mm  1.0255436 mm  5.0976463 cm          0 eV  181.07772 keV  1.300119 um  166.02445 um     Target      muIoni
+    3 -5.2430946 mm  1.0255436 mm  5.0976463 cm          0 eV          0 eV          0 fm  166.02445 um     Target  Scintillation
+Track (trackID 23, parentID 3) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.304102(mm),0.87999796(mm),79.064584(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.77008(mm),-0.33606841(mm),78.277111(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3578,7 +3711,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.7752(mm),-3.4180191(mm),78.452536(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.925614(mm),-2.6524377(mm),78.954994(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3587,7 +3720,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.124785(mm),0.93724092(mm),79.448856(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.128187(mm),-2.9893998(mm),78.390294(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3598,7 +3731,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 280
-G4PrimaryTransformer::PrimaryVertex (-13.122697(mm),0.31278183(mm),78.920243(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.507301(mm),1.351543(mm),79.205081(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3607,7 +3740,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.39497(mm),1.7705464(mm),79.048561(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.7288(mm),-0.72948509(mm),79.166025(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3616,7 +3749,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.103489(mm),1.2609148(mm),79.276284(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.754488(mm),-0.31006662(mm),78.279861(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3625,7 +3758,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.699455(mm),-1.0898599(mm),79.171199(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.567443(mm),2.3465692(mm),78.489169(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3634,7 +3767,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.315234(mm),1.1379675(mm),78.180986(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.175449(mm),0.68564952(mm),79.439923(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3643,7 +3776,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.87341(mm),-2.6019296(mm),79.140526(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.120619(mm),-0.53896198(mm),79.449591(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3652,7 +3785,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.629656(mm),0.18416864(mm),78.125545(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.612925(mm),3.1001955(mm),78.657476(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3661,7 +3794,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.838739(mm),1.5186696(mm),79.14664(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.429531(mm),-1.3640194(mm),78.160832(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3670,7 +3803,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.657101(mm),-1.9203031(mm),79.354995(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.594149(mm),0.30096248(mm),78.48446(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3679,7 +3812,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.125521(mm),-1.6233978(mm),78.567091(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.606246(mm),-2.1614202(mm),79.363962(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3690,7 +3823,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 290
-G4PrimaryTransformer::PrimaryVertex (-11.053632(mm),-2.3789079(mm),79.285075(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.282476(mm),-1.5435767(mm),79.244724(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3699,7 +3832,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.356955(mm),-1.5874603(mm),78.526283(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.095644(mm),2.6017278(mm),78.925014(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3708,7 +3841,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.043614(mm),-0.73385624(mm),78.757861(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.999459(mm),3.3548255(mm),78.941974(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3717,7 +3850,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.122532(mm),0.13975293(mm),79.0966(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.484731(mm),0.52289446(mm),78.503753(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3726,7 +3859,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.980518(mm),-0.95494399(mm),79.12164(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.757836(mm),-2.3178984(mm),78.631924(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3735,7 +3868,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.518779(mm),-2.8060261(mm),78.674076(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.745073(mm),2.1872653(mm),79.163156(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3744,7 +3877,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.442737(mm),0.92826922(mm),79.040139(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.246847(mm),-1.682816(mm),78.898352(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3753,7 +3886,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.53471(mm),0.046552969(mm),79.376575(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.098841(mm),3.0538988(mm),79.100777(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3762,7 +3895,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.877901(mm),2.5635924(mm),79.139735(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.676039(mm),-0.37773247(mm),78.646347(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3771,7 +3904,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.837628(mm),0.82005487(mm),79.146836(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.094755(mm),-2.3137904(mm),79.277824(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3782,7 +3915,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 300
-G4PrimaryTransformer::PrimaryVertex (-14.916642(mm),-0.45701584(mm),78.603923(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.395623(mm),-2.5420214(mm),78.343138(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3791,7 +3924,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.671239(mm),0.40615685(mm),78.470867(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.104702(mm),0.38836236(mm),79.099743(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3800,7 +3933,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.211009(mm),0.25288316(mm),78.375691(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.011296(mm),2.455028(mm),78.410905(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3809,7 +3942,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.993706(mm),-0.55787481(mm),78.766661(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.240398(mm),-0.59730229(mm),78.723163(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3818,16 +3951,46 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.935134(mm),2.8883496(mm),78.424335(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.74374(mm),-0.65920558(mm),79.163391(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = pi+,   Track ID = 5,   Parent ID = 1
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -1.15 cm   -673 um   7.77 cm     23 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1 -1.1076402 cm -958.44443 um  7.7291336 cm   19.50481 MeV 3.5341769 MeV 672.41613 um  672.41613 um     Target       hIoni
+    2 -1.0831668 cm -1.1746293 mm  7.6861617 cm  16.055443 MeV  3.449367 MeV 545.29356 um  1.2177097 mm     Target       hIoni
+    3  -1.068947 cm -1.3456532 mm  7.6494512 cm  13.404699 MeV 2.6507446 MeV 434.24074 um  1.6519504 mm     Target       hIoni
+    4 -1.0590877 cm -1.5025964 mm  7.6193524 cm  10.609659 MeV 2.7950393 MeV 358.12667 um  2.0100771 mm     Target       hIoni
+    5 -1.0529172 cm -1.6099435 mm   7.594032 cm   7.843545 MeV 2.7661144 MeV 286.48636 um  2.2965635 mm     Target       hIoni
+    6 -1.0516326 cm -1.6961603 mm  7.5740739 cm  5.0390267 MeV 2.8045183 MeV  222.6524 um  2.5192159 mm     Target       hIoni
+    7 -1.0506531 cm -1.6741687 mm   7.559106 cm  1.6648105 MeV 3.3742162 MeV 157.09415 um    2.67631 mm     Target       hIoni
+    8  -1.049821 cm -1.6633398 mm  7.5570466 cm  152.17314 keV 1.5126373 MeV 30.439911 um  2.7067499 mm     Target       hIoni
+    9 -1.0498048 cm  -1.663014 mm  7.5570171 cm  37.750201 keV 114.42294 keV 944.41033 nm  2.7076943 mm     Target       hIoni
+   10 -1.0498085 cm -1.6629793 mm  7.5570191 cm          0 eV  37.750201 keV 211.61069 nm  2.7079059 mm     Target       hIoni
+   11 -1.0498085 cm -1.6629793 mm  7.5570191 cm          0 eV          0 eV          0 fm  2.7079059 mm     Target  Scintillation
+Track (trackID 5, parentID 1) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = mu+,   Track ID = 16,   Parent ID = 5
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -1.05 cm  -1.66 mm   7.56 cm   4.12 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1 -1.0597114 cm -1.7054931 mm   7.563438 cm  231.49787 keV 3.8883148 MeV 164.72433 um  164.72433 um     Target      muIoni
+    2 -1.0597641 cm -1.7063289 mm  7.5633898 cm          0 eV  231.49787 keV 1.8119893 um  166.53632 um     Target      muIoni
+    3 -1.0597641 cm -1.7063289 mm  7.5633898 cm          0 eV          0 eV          0 fm  166.53632 um     Target  Scintillation
+Track (trackID 16, parentID 5) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.161269(mm),1.5133118(mm),78.560788(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.975135(mm),-0.027623268(mm),78.240955(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3836,7 +3999,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.406377(mm),2.7065315(mm),78.693896(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.483223(mm),-2.6571852(mm),78.327692(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3845,7 +4008,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.836665(mm),-0.68326811(mm),78.794352(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.030305(mm),2.9242955(mm),78.407554(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3854,7 +4017,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.594775(mm),-1.6634291(mm),78.837003(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.391053(mm),-0.55595023(mm),79.049252(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3863,7 +4026,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.762353(mm),-2.4482675(mm),78.983782(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.523435(mm),2.8588829(mm),79.025909(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3874,7 +4037,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 310
-G4PrimaryTransformer::PrimaryVertex (-12.31753(mm),2.0345585(mm),79.062216(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.649117(mm),1.1755996(mm),78.651094(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3883,7 +4046,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.4136(mm),1.9587413(mm),78.692622(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.83295(mm),1.8203644(mm),78.61868(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3892,7 +4055,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.676718(mm),-3.3656704(mm),78.469901(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.691296(mm),1.2302618(mm),79.172638(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3901,7 +4064,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.643124(mm),-2.613849(mm),79.181132(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.46179(mm),-3.4958777(mm),78.860452(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3910,7 +4073,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.005336(mm),0.16164139(mm),78.411956(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.483078(mm),1.3271242(mm),78.327717(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3919,7 +4082,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.29771(mm),2.575789(mm),78.889384(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.325531(mm),1.5736234(mm),78.355497(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3928,7 +4091,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.999784(mm),-2.4782092(mm),78.941916(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.046225(mm),3.3505538(mm),79.110054(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3937,7 +4100,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.9413(mm),-3.6513103(mm),78.775902(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.30989(mm),-2.9628507(mm),78.534582(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3946,7 +4109,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.782827(mm),3.2660123(mm),78.451191(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.486033(mm),0.18919376(mm),78.150869(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3955,7 +4118,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.873773(mm),0.31303317(mm),79.140462(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.583151(mm),1.4676879(mm),79.368034(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3966,7 +4129,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 320
-G4PrimaryTransformer::PrimaryVertex (-12.625389(mm),-2.4256722(mm),79.007932(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.892999(mm),1.8825953(mm),78.255438(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3975,7 +4138,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.894144(mm),-0.26825908(mm),78.60789(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.451192(mm),-2.7662346(mm),79.038648(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3984,7 +4147,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.152834(mm),-3.4482226(mm),78.738602(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.970356(mm),-1.3175798(mm),78.594451(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -3993,7 +4156,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.256592(mm),-1.4602026(mm),79.072961(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.274374(mm),-2.8905257(mm),78.540845(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4002,7 +4165,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.182025(mm),-1.1664332(mm),79.262436(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.861447(mm),3.7477796(mm),78.613655(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4011,7 +4174,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.857269(mm),1.7644177(mm),78.438065(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.068694(mm),-0.092979484(mm),78.753439(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4020,7 +4183,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.090377(mm),-3.110241(mm),78.396961(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.019756(mm),-2.2332153(mm),78.762068(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4029,7 +4192,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.859818(mm),2.71715(mm),78.613942(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.249484(mm),-1.2506216(mm),79.074214(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4038,7 +4201,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.465669(mm),3.2456992(mm),78.859768(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.554861(mm),-1.9318314(mm),78.667714(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4047,7 +4210,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.771091(mm),3.1366077(mm),78.805914(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.638906(mm),-0.56475266(mm),78.300241(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4058,7 +4221,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 330
-G4PrimaryTransformer::PrimaryVertex (-12.059357(mm),2.1228229(mm),79.107739(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.072693(mm),-3.2829276(mm),78.92906(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4067,7 +4230,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.047807(mm),-2.5553418(mm),78.933449(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.238803(mm),1.5153288(mm),78.547117(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4076,7 +4239,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.86491(mm),1.2066489(mm),78.613044(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.486835(mm),1.5989143(mm),78.679709(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4085,7 +4248,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.689237(mm),2.0058814(mm),78.996674(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.600735(mm),-1.8702178(mm),78.483299(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4094,7 +4257,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.02182(mm),-3.5095206(mm),78.585377(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.102937(mm),0.83988202(mm),78.21842(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4103,7 +4266,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.935457(mm),-1.2580366(mm),78.953259(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.12952(mm),2.17913(mm),79.095367(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4112,7 +4275,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.588811(mm),-1.3368799(mm),78.309074(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.564294(mm),-3.3834663(mm),78.489724(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4121,16 +4284,47 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.069259(mm),2.2340367(mm),78.224358(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.24665(mm),-0.086323237(mm),79.251041(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = pi+,   Track ID = 4,   Parent ID = 1
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -7.67 mm    589 um   5.78 cm   29.8 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1  -8.099937 mm  -228.4305 um  5.7958437 cm  25.228879 MeV 4.5709205 MeV 950.25216 um  950.25216 um     Target       hIoni
+    2 -8.2810791 mm -757.05486 um  5.8129743 cm  21.896009 MeV 3.3328701 MeV 588.38272 um  1.5386349 mm     Target  CoulombScat
+    3 -8.4440948 mm -1.3341439 mm  5.7958468 cm  18.488323 MeV 3.4076855 MeV 629.87474 um  2.1685096 mm     Target       hIoni
+    4 -8.6257249 mm -1.7916322 mm  5.7841553 cm  15.119275 MeV 3.3690489 MeV 511.19295 um  2.6797026 mm     Target       hIoni
+    5 -8.7878586 mm  -2.155714 mm  5.7793058 cm  11.977553 MeV 3.1417213 MeV 406.42926 um  3.0861318 mm     Target       hIoni
+    6 -8.8702958 mm -2.4575409 mm  5.7749098 cm  9.0147252 MeV  2.962828 MeV 320.49015 um   3.406622 mm     Target       hIoni
+    7 -8.9228705 mm -2.6915911 mm  5.7718837 cm  6.2959686 MeV 2.7187566 MeV 249.04354 um  3.6556655 mm     Target       hIoni
+    8 -9.0036771 mm -2.8393073 mm  5.7789591 cm  3.0881315 MeV 3.2078371 MeV 187.91223 um  3.8435778 mm     Target       hIoni
+    9 -9.0229625 mm -2.8452447 mm  5.7856507 cm  107.36576 keV 2.9807658 MeV 84.108534 um  3.9276863 mm     Target       hIoni
+   10 -9.0229437 mm -2.8451891 mm  5.7856808 cm          0 eV  107.36576 keV 626.13438 nm  3.9283124 mm     Target       hIoni
+   11 -9.0229437 mm -2.8451891 mm  5.7856808 cm          0 eV          0 eV          0 fm  3.9283124 mm     Target  Scintillation
+Track (trackID 4, parentID 1) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = mu+,   Track ID = 12,   Parent ID = 4
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -9.02 mm  -2.85 mm   5.79 cm   4.12 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1  -9.086177 mm -2.8350603 mm   5.775802 cm  364.17173 keV 3.7556409 MeV 164.72433 um  164.72433 um     Target      muIoni
+    2 -9.0858106 mm -2.8350155 mm   5.775574 cm  15.618549 keV 348.55318 keV 3.4368749 um   168.1612 um     Target      muIoni
+    3 -9.0858097 mm -2.8350177 mm  5.7755728 cm          0 eV  15.618549 keV 103.35704 nm  168.26456 um     Target      muIoni
+    4 -9.0858097 mm -2.8350177 mm  5.7755728 cm          0 eV          0 eV          0 fm  168.26456 um     Target  Scintillation
+Track (trackID 12, parentID 4) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.1543(mm),-0.21960401(mm),78.38569(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.622095(mm),-0.39700638(mm),79.361167(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4139,7 +4333,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.197719(mm),-2.8470398(mm),78.554361(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.674208(mm),1.9765216(mm),79.351978(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4150,7 +4344,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 340
-G4PrimaryTransformer::PrimaryVertex (-12.379855(mm),2.4344146(mm),79.051227(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.520702(mm),-0.4438243(mm),79.379045(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4159,7 +4353,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.952318(mm),-3.4024834(mm),78.773959(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.665708(mm),1.811597(mm),78.648169(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4168,7 +4362,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.647591(mm),2.0037055(mm),79.180344(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.443837(mm),1.724202(mm),78.510964(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4177,7 +4371,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.746153(mm),0.28224962(mm),78.105003(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.094906(mm),-0.97825174(mm),79.454125(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4186,7 +4380,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.948622(mm),2.6445822(mm),79.303591(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.630358(mm),-3.5849945(mm),78.654402(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4195,7 +4389,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.389707(mm),1.2864319(mm),79.225816(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.389103(mm),-1.8976868(mm),78.873269(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4204,7 +4398,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.116599(mm),0.11528826(mm),78.744992(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.19538(mm),-3.4361479(mm),78.554773(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4213,7 +4407,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.474506(mm),1.1872409(mm),79.210864(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.487136(mm),-0.34627669(mm),78.150675(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4222,7 +4416,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.935966(mm),-0.22208474(mm),78.424188(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.358349(mm),1.7602195(mm),78.526038(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4231,7 +4425,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.698474(mm),2.9801892(mm),79.171372(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.234759(mm),2.0640038(mm),78.724157(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4242,7 +4436,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 350
-G4PrimaryTransformer::PrimaryVertex (-13.888345(mm),1.6358735(mm),78.785239(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.440732(mm),-0.30526524(mm),79.040492(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4251,7 +4445,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.236554(mm),-0.10346011(mm),78.900167(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.044625(mm),-0.34126498(mm),78.757683(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4260,7 +4454,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.345311(mm),0.0061211226(mm),79.233645(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.208915(mm),2.9135065(mm),79.081368(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4269,7 +4463,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.066689(mm),0.86861263(mm),78.224811(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.143324(mm),2.8325724(mm),78.916606(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4278,7 +4472,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.140764(mm),1.3058477(mm),79.093385(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.459024(mm),-2.978955(mm),79.213594(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4287,7 +4481,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.251641(mm),-2.2371727(mm),78.897507(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.171489(mm),-1.0644547(mm),79.264294(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4296,7 +4490,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.863571(mm),1.8639955(mm),78.436953(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.842167(mm),-3.0252114(mm),78.793381(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4305,7 +4499,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.378061(mm),1.713744(mm),79.404197(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.588334(mm),1.3175122(mm),78.661812(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4314,7 +4508,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.875615(mm),-3.1097733(mm),78.787484(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.998506(mm),-0.19668567(mm),78.236834(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4323,7 +4517,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.115464(mm),-3.3348868(mm),78.921519(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.065361(mm),1.8168876(mm),79.283007(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4334,7 +4528,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 360
-G4PrimaryTransformer::PrimaryVertex (-16.163637(mm),2.53054(mm),78.384044(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.563746(mm),-0.20505582(mm),79.195128(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4343,7 +4537,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.613622(mm),1.9920835(mm),79.010007(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.755651(mm),0.39468828(mm),79.161291(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4352,7 +4546,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.34421(mm),1.2951455(mm),79.057512(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.141647(mm),3.2569604(mm),78.387921(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4361,7 +4555,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.327512(mm),1.05638(mm),79.41311(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.626422(mm),2.0374853(mm),78.302442(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4370,7 +4564,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.122163(mm),2.5207606(mm),79.272991(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.316454(mm),-0.28378612(mm),78.886079(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4379,7 +4573,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.252356(mm),-1.7426897(mm),78.3684(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.150477(mm),-1.6346831(mm),78.562691(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4388,7 +4582,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.328029(mm),-3.142321(mm),78.355057(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.622005(mm),0.48829785(mm),78.655875(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4397,7 +4591,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.7512(mm),0.23691788(mm),78.456767(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.052016(mm),-0.93537183(mm),79.109033(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4406,7 +4600,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.419896(mm),-3.3681363(mm),79.044166(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.742154(mm),-1.7543273(mm),79.16367(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4415,7 +4609,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.773726(mm),-3.8241002(mm),78.629122(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.00367(mm),1.6014984(mm),79.117558(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4426,7 +4620,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 370
-G4PrimaryTransformer::PrimaryVertex (-14.042377(mm),1.8870341(mm),78.758079(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.535365(mm),1.1318588(mm),78.847479(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4435,7 +4629,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.076543(mm),-1.0434183(mm),78.928382(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.073307(mm),1.4423424(mm),78.928952(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4444,7 +4638,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.456206(mm),-3.4985118(mm),78.861437(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.479116(mm),2.0483685(mm),79.033724(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4453,7 +4647,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.548803(mm),-0.47418337(mm),79.021436(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.402208(mm),1.0453121(mm),78.341977(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4462,7 +4656,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.252659(mm),-0.96902504(mm),78.368347(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.306187(mm),0.39600522(mm),78.358908(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4471,7 +4665,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.903242(mm),0.85128182(mm),78.606285(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.598272(mm),1.1692725(mm),79.365368(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4480,7 +4674,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.778929(mm),-2.2906636(mm),78.275551(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.526127(mm),2.5185671(mm),79.025435(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4489,7 +4683,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.657384(mm),-0.17381626(mm),78.649637(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.546254(mm),-1.9176598(mm),79.37454(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4498,7 +4692,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.19301(mm),-0.29593148(mm),78.907845(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.810547(mm),1.4449251(mm),78.798957(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4507,7 +4701,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.152211(mm),1.8762793(mm),78.738712(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.349874(mm),-0.41730613(mm),79.056513(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4518,7 +4712,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 380
-G4PrimaryTransformer::PrimaryVertex (-11.000163(mm),-0.54496545(mm),79.294503(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.409365(mm),-0.63623602(mm),78.340715(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4527,7 +4721,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.007687(mm),2.7606826(mm),78.764196(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.951264(mm),-2.4644045(mm),78.245164(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4536,7 +4730,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.359286(mm),1.1047592(mm),79.407507(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.16553(mm),-3.8061655(mm),78.912691(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4545,7 +4739,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.460246(mm),-0.80633025(mm),78.331743(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.371947(mm),2.9670274(mm),78.876294(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4554,7 +4748,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.823722(mm),3.004881(mm),78.44398(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.274769(mm),0.039480037(mm),78.540775(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4563,7 +4757,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.649754(mm),2.0746497(mm),79.35629(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.057988(mm),1.8829362(mm),78.402672(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4572,7 +4766,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.593581(mm),2.9357407(mm),78.48456(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.064658(mm),0.56948313(mm),78.225169(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4581,7 +4775,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.601081(mm),2.9713056(mm),78.659564(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.435069(mm),-3.1575689(mm),79.041491(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4590,7 +4784,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.472944(mm),2.1111469(mm),78.682158(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.787021(mm),-0.97887368(mm),78.274124(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4599,7 +4793,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.900965(mm),0.19894489(mm),78.959341(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.63527(mm),1.1434925(mm),79.358844(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4610,7 +4804,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 390
-G4PrimaryTransformer::PrimaryVertex (-11.017929(mm),1.043857(mm),79.291371(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.576859(mm),0.33136574(mm),78.134854(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4619,7 +4813,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.604264(mm),-1.601575(mm),79.011657(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.278988(mm),-2.946535(mm),78.892685(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4628,7 +4822,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.096261(mm),1.8773161(mm),78.219597(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.024299(mm),1.5205696(mm),78.58494(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4637,7 +4831,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.423225(mm),-0.84211941(mm),78.161944(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.511149(mm),-2.583314(mm),78.499095(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4646,7 +4840,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.88719(mm),0.44503289(mm),79.314424(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.695379(mm),0.010795463(mm),78.995591(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4655,7 +4849,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.609038(mm),-3.7826263(mm),78.658161(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.607657(mm),-0.45539575(mm),79.363713(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4664,7 +4858,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.364197(mm),1.3344626(mm),79.053987(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.67049(mm),-2.5403577(mm),78.647326(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4673,7 +4867,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.265242(mm),3.1356917(mm),78.542455(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.392036(mm),-2.9964129(mm),78.696425(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4682,7 +4876,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.069763(mm),2.0064932(mm),78.576923(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.09963(mm),-1.9247245(mm),78.924311(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4691,7 +4885,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.719607(mm),0.63667813(mm),78.462338(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.514156(mm),-0.017484063(mm),78.498565(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4702,7 +4896,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 400
-G4PrimaryTransformer::PrimaryVertex (-14.354425(mm),2.3381739(mm),78.703056(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.639921(mm),2.7077353(mm),79.181697(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4711,7 +4905,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.577724(mm),-1.1001496(mm),78.487356(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.550239(mm),1.0155555(mm),79.373837(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4720,7 +4914,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.090228(mm),-1.578739(mm),78.220661(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.520537(mm),-3.049443(mm),78.850093(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4729,7 +4923,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.802315(mm),-2.3483045(mm),79.329389(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.401582(mm),-0.1964381(mm),79.400049(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4738,7 +4932,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.458932(mm),-0.75119358(mm),78.331975(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.923733(mm),0.45959308(mm),78.602672(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4747,7 +4941,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.910743(mm),-0.80619309(mm),78.957617(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.892548(mm),2.264303(mm),78.255517(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4756,177 +4950,16 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.483416(mm),3.0781049(mm),78.503985(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.157946(mm),1.9870916(mm),78.914028(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
-
-*********************************************************************************************************
-* G4Track Information:   Particle = pi+,   Track ID = 4,   Parent ID = 1
-*********************************************************************************************************
-
-Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
-    0  -1.48 cm   3.11 mm   7.45 cm   49.3 MeV     0 eV      0 fm      0 fm     Target    initStep
-    1 -1.2935142 cm  3.7419948 mm  7.4363776 cm  42.161335 MeV 7.1081296 MeV 1.9591215 mm  1.9591215 mm     Target       hIoni
-    2 -1.2379033 cm  3.9358377 mm  7.4314271 cm  39.955927 MeV  2.205408 MeV 592.58947 um   2.551711 mm     Target  Transportation
-    3 -4.1803722 cm -20.051778 cm -61.677439 cm  39.955947 MeV2.0809812e-16 eV  3.9250379 m   3.9275896 m  CaptureMgnt       Decay
-Track (trackID 4, parentID 1) is processed with stopping code 2
-
-*********************************************************************************************************
-* G4Track Information:   Particle = mu+,   Track ID = 22,   Parent ID = 4
-*********************************************************************************************************
-
-Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
-    0  -4.18 cm  -20.1 cm  -61.7 cm   36.7 MeV     0 eV      0 fm      0 fm CaptureMgnt    initStep
-    1 -7.2878509 mm -6.2673771 cm         -2 m   36.653438 MeV3.2799853e-16 eV  6.9350746 m   6.9350746 m  CaptureMgnt  Transportation
-    2  2.2638261 cm -5.2999379 cm -2.0064219 m   36.646684 MeV 5.3657307 keV 3.2099984 cm  6.9671746 m       World      muIoni
-    3  10.246898 cm -2.7165185 cm -2.0234478 m   36.622144 MeV 20.205083 keV 8.5616965 cm  7.0527916 m       World      muIoni
-    4  15.202956 cm -1.1043268 cm -2.0340923 m   36.605619 MeV 13.477531 keV 5.3192862 cm  7.1059845 m       World      muIoni
-    5   15.57307 cm -9.8461651 mm -2.0348915 m   36.603352 MeV 797.40756 eV  3.9711834 mm  7.1099556 m       World      muIoni
-    6  21.305524 cm  8.7895777 mm -2.0473449 m   36.586412 MeV  15.89226 keV 6.1550725 cm  7.1715064 m       World      muIoni
-    7  22.337367 cm   1.213783 cm -2.0495949 m    36.57798 MeV 3.9695815 keV 1.1078961 cm  7.1825853 m       World      muIoni
-    8  22.497742 cm  1.2659291 cm -2.0499452 m   36.529812 MeV 221.57187 eV  1.7224123 mm  7.1843077 m       World      muIoni
-    9  26.483167 cm  2.5710845 cm -2.0585455 m    36.51928 MeV 10.531872 keV 4.2809716 cm  7.2271175 m       World      muIoni
-   10  26.880605 cm  2.7013714 cm -2.0593968 m   36.370329 MeV  1.238182 keV 4.2682443 mm  7.2313857 m       World      muIoni
-   11  29.376601 cm  3.5111534 cm -2.0646905 m   36.365756 MeV 4.5736835 keV 2.6769371 cm  7.2581551 m       World      muIoni
-   12  39.122026 cm  6.6743572 cm -2.0852895 m   36.284898 MeV 24.200975 keV 10.450981 cm  7.3626649 m       World      muIoni
-   13  42.133957 cm  7.6417001 cm -2.0917126 m   36.278001 MeV 6.8970295 keV 3.2280115 cm   7.394945 m       World      muIoni
-   14  44.462945 cm  8.3851246 cm -2.0966684 m   36.271433 MeV 5.1177234 keV 2.4944889 cm  7.4198899 m       World      muIoni
-   15  44.597524 cm  8.4280385 cm -2.0969543 m   36.245712 MeV 257.80744 eV  1.4411949 mm  7.4213311 m       World      muIoni
-   16  46.216755 cm  8.9419318 cm -2.1004093 m   36.239846 MeV 5.8656528 keV 1.7335992 cm  7.4386671 m       World      muIoni
-   17  49.310677 cm  9.9249858 cm -2.1070513 m   36.228114 MeV 5.8905003 keV 3.3135973 cm   7.471803 m       World      muIoni
-   18  55.344455 cm  11.837224 cm  -2.119936 m   36.213299 MeV 13.695912 keV 6.4593697 cm  7.5363967 m       World      muIoni
-   19  59.499611 cm   13.15424 cm -2.1288113 m   36.199415 MeV 12.889607 keV 4.4483269 cm    7.58088 m       World      muIoni
-   20  60.415913 cm  13.445173 cm -2.1307744 m   36.196932 MeV 2.4829671 keV 9.8121711 mm  7.5906922 m       World      muIoni
-   21  64.822602 cm  14.841683 cm -2.1402622 m      36.185 MeV 11.931492 keV 4.7190458 cm  7.6378826 m       World      muIoni
-   22  65.379921 cm  15.018591 cm -2.1414667 m   36.179502 MeV 1.7048298 keV 5.9699881 mm  7.6438526 m       World      muIoni
-   23  69.711875 cm  16.391852 cm  -2.150739 m   36.166377 MeV 11.873909 keV 4.6380461 cm  7.6902331 m       World      muIoni
-   24  74.612389 cm  17.943211 cm -2.1611714 m   36.140299 MeV 13.650169 keV  5.245016 cm  7.7426832 m       World      muIoni
-   25  83.664785 cm  20.826742 cm -2.1806629 m   36.111997 MeV 21.956728 keV 9.6984707 cm   7.839668 m       World      muIoni
-   26  86.136782 cm  21.616588 cm -2.1859918 m   36.102913 MeV 7.6147122 keV 2.6492668 cm  7.8661606 m       World      muIoni
-   27  87.772595 cm  22.142059 cm -2.1895027 m   36.092456 MeV 6.9516032 keV 1.7536439 cm  7.8836971 m       World      muIoni
-   28   88.02436 cm  22.222907 cm -2.1900439 m   36.092263 MeV 193.24493 eV   2.699107 mm  7.8863962 m       World      muIoni
-   29  89.500991 cm  22.698513 cm -2.1932158 m   36.085986 MeV 2.8443067 keV 1.5834291 cm  7.9022305 m       World      muIoni
-   30  94.045941 cm     24.166 cm -2.2029985 m   36.070235 MeV 15.750912 keV 4.8751582 cm   7.950982 m       World      muIoni
-   31  95.476081 cm  24.629585 cm -2.2060956 m   36.067503 MeV 2.7318832 keV 1.5349702 cm  7.9663317 m       World      muIoni
-   32   98.63873 cm  25.655833 cm -2.2129289 m   36.058601 MeV 7.6232218 keV 3.3944794 cm  8.0002765 m       World      muIoni
-   33  1.0045922 m   26.249084 cm -2.2168513 m   36.052618 MeV  4.891406 keV 1.9544744 cm  8.0198213 m       World      muIoni
-   34  1.0365427 m    27.29022 cm -2.2237464 m   36.043651 MeV  6.612051 keV 3.4304195 cm  8.0541255 m       World      muIoni
-   35  1.0476226 m   27.650257 cm -2.2261395 m   36.039474 MeV 3.1162114 keV 1.1893445 cm  8.0660189 m       World      muIoni
-   36  1.0648355 m   28.207522 cm  -2.229857 m   36.033037 MeV 5.3654985 keV 1.8470456 cm  8.0844894 m       World      muIoni
-   37  1.1252203 m   30.178894 cm -2.2429398 m   36.018184 MeV 14.852586 keV  6.485473 cm  8.1493441 m       World      muIoni
-   38  1.1457072 m   30.850732 cm  -2.247367 m    36.00557 MeV 6.2573769 keV 2.2010239 cm  8.1713543 m       World      muIoni
-   39   1.183606 m    32.08755 cm -2.2555101 m   35.992556 MeV 13.014083 keV 4.0689091 cm  8.2120434 m       World      muIoni
-   40  1.3549053 m   37.697485 cm -2.2920084 m   35.946049 MeV 45.102511 keV 18.391062 cm  8.3959541 m       World      muIoni
-   41  1.4481066 m   40.781068 cm -2.3121796 m   35.922186 MeV 22.748255 keV 10.022112 cm  8.4961752 m       World      muIoni
-   42  1.5565733 m   44.389344 cm -2.3363652 m   35.890617 MeV 27.827647 keV 11.684188 cm  8.6130171 m       World      muIoni
-   43  1.5643298 m   44.649332 cm  -2.338127 m   35.886515 MeV  3.105452 keV 8.3681906 mm  8.6213852 m       World      muIoni
-   44   1.648624 m   47.469761 cm -2.3571539 m   35.863804 MeV 21.231118 keV 9.0901374 cm  8.7122866 m       World      muIoni
-   45  1.6850542 m   48.685139 cm -2.3652351 m    35.85351 MeV 9.2880358 keV 3.9245198 cm  8.7515318 m       World      muIoni
-   46   1.745063 m   50.684017 cm  -2.378449 m   35.837836 MeV 14.474489 keV 6.4615994 cm  8.8161478 m       World      muIoni
-   47  1.7473444 m   50.759861 cm -2.3789489 m   35.834797 MeV 789.12054 eV  2.4555882 mm  8.8186034 m       World      muIoni
-   48  1.8161921 m   53.059993 cm -2.3940388 m   35.816478 MeV 16.357995 keV 7.4140359 cm  8.8927438 m       World      muIoni
-   49  1.8296511 m   53.510578 cm -2.3969999 m   35.812846 MeV 3.6325223 keV 1.4498824 cm  8.9072426 m       World      muIoni
-   50  1.9073713 m    56.13225 cm -2.4141216 m   35.790986 MeV  21.85956 keV 8.3791013 cm  8.9910336 m       World      muIoni
-   51  1.9590554 m   57.873591 cm -2.4255145 m   35.776457 MeV 13.093093 keV  5.571613 cm  9.0467497 m       World      muIoni
-   52  1.9742362 m   58.383413 cm  -2.428875 m   35.771386 MeV 3.4352235 keV 1.6362768 cm  9.0631125 m       World      muIoni
-   53  2.0050976 m   59.419435 cm -2.4356913 m   35.761754 MeV 8.0225054 keV 3.3259982 cm  9.0963725 m       World      muIoni
-   54  2.0323216 m   60.338132 cm -2.4415738 m   35.751214 MeV 8.7169433 keV 2.9328326 cm  9.1257008 m       World      muIoni
-   55  2.0343621 m   60.406756 cm  -2.442013 m   35.748469 MeV 1.1636178 keV 2.1971239 mm  9.1278979 m       World      muIoni
-   56  2.0584947 m   61.216856 cm -2.4471945 m   35.738339 MeV 7.1262277 keV 2.5977994 cm  9.1538759 m       World      muIoni
-   57  2.0971941 m   62.515577 cm -2.4554941 m    35.72546 MeV 11.107892 keV 4.1655789 cm  9.1955317 m       World      muIoni
-   58  2.1398513 m   63.945301 cm -2.4646409 m   35.702801 MeV 11.681883 keV 4.5909901 cm  9.2414416 m       World      muIoni
-   59  2.1765242 m    65.17305 cm -2.4724973 m   35.693297 MeV 8.1414758 keV 3.9463397 cm   9.280905 m       World      muIoni
-   60  2.1995512 m   65.944518 cm -2.4774508 m   35.686858 MeV 4.5260205 keV 2.4785065 cm  9.3056901 m       World      muIoni
-   61  2.2279817 m   66.899371 cm -2.4835868 m   35.674271 MeV  6.910672 keV 3.0612404 cm  9.3363025 m       World      muIoni
-   62    2.23882 m   67.263883 cm -2.4859452 m   35.663126 MeV 2.9537096 keV 1.1675506 cm   9.347978 m       World      muIoni
-   63  2.2527266 m   67.732177 cm -2.4889915 m   35.659434 MeV 2.6719613 keV 1.4986767 cm  9.3629647 m       World      muIoni
-   64  2.2647583 m   68.136405 cm -2.4916346 m   35.649631 MeV 3.7476796 keV 1.2964887 cm  9.3759296 m       World      muIoni
-   65  2.2811961 m   68.691952 cm -2.4952456 m   35.645152 MeV 3.4316875 keV 1.7722959 cm  9.3936526 m       World      muIoni
-   66  2.2897759 m   68.981846 cm   -2.49712 m   35.639764 MeV 3.0157314 keV 9.2482918 mm  9.4029009 m       World      muIoni
-   67   2.299558 m   69.311474 cm  -2.499256 m   35.630278 MeV 3.8329373 keV 1.0541226 cm  9.4134421 m       World      muIoni
-   68    2.34126 m   70.714932 cm -2.5083602 m   35.619158 MeV 9.8197056 keV 4.4932344 cm  9.4583745 m       World      muIoni
-   69  2.3431319 m   70.777823 cm -2.5087723 m   35.617319 MeV 649.20087 eV  2.0172541 mm  9.4603917 m       World      muIoni
-   70  2.3606217 m   71.364995 cm  -2.512624 m   35.612842 MeV 4.4772846 keV 1.8846896 cm  9.4792386 m       World      muIoni
-   71  2.4915311 m   75.768932 cm -2.5414481 m   35.580018 MeV 31.623211 keV 14.109482 cm  9.6203334 m       World      muIoni
-   72  2.5912301 m      79.157 cm -2.5634528 m   35.547612 MeV 24.595694 keV  10.75736 cm   9.727907 m       World      muIoni
-   73  2.6775073 m   82.117017 cm -2.5823925 m   35.521363 MeV 23.461359 keV 9.3159456 cm  9.8210665 m       World      muIoni
-   74    2.72672 m   83.801871 cm -2.5931501 m   35.507647 MeV 12.359271 keV 5.3117781 cm  9.8741843 m       World      muIoni
-   75  2.7376983 m   84.176841 cm -2.5955544 m   35.486416 MeV 3.6435439 keV 1.1847548 cm  9.8860318 m       World      muIoni
-   76   2.750554 m    84.61413 cm -2.5983793 m   35.480621 MeV 3.2452166 keV 1.3869778 cm  9.8999016 m       World      muIoni
-   77  2.7931819 m   86.066855 cm -2.6077925 m   35.463405 MeV  11.54634 keV 4.6008639 cm  9.9459102 m       World      muIoni
-   78  2.8716408 m   88.750749 cm  -2.625088 m   35.436072 MeV 22.790409 keV 8.4707137 cm  10.030617 m       World      muIoni
-   79  2.8881128 m   89.315884 cm -2.6286974 m   35.430299 MeV 4.5800753 keV 1.7784553 cm  10.048402 m       World      muIoni
-   80  2.9852081 m   92.648837 cm  -2.650204 m   35.397651 MeV 25.152238 keV 10.488548 cm  10.153287 m       World      muIoni
-   81  3.0148092 m   93.663246 cm -2.6567856 m   35.390067 MeV 6.0309212 keV 3.1975706 cm  10.185263 m       World      muIoni
-   82  3.0430507 m   94.634543 cm -2.6630575 m   35.380374 MeV 7.7884583 keV 3.0516634 cm   10.21578 m       World      muIoni
-   83  3.0469221 m   94.767506 cm -2.6639172 m    35.35772 MeV 610.34754 eV  4.1826934 mm  10.219962 m       World      muIoni
-   84  3.1687365 m   98.980762 cm -2.6908511 m   35.328849 MeV 26.867076 keV 13.167947 cm  10.351642 m       World      muIoni
-   85  3.2197142 m   1.0074571 m  -2.7020122 m   35.312504 MeV 14.874143 keV 5.5089053 cm  10.406731 m       World      muIoni
-   86  3.2653499 m   1.0231348 m  -2.7119127 m   35.300935 MeV  10.55857 keV 4.9258849 cm   10.45599 m       World      muIoni
-   87  3.4000342 m   1.0692865 m  -2.7410806 m   35.266428 MeV 33.153918 keV 14.532999 cm   10.60132 m       World      muIoni
-   88  3.4108056 m   1.0729766 m  -2.7434327 m   35.238498 MeV 1.1310903 keV 1.1626375 cm  10.612946 m       World      muIoni
-   89  3.4198239 m   1.0760746 m  -2.7454093 m    35.23193 MeV 4.5977212 keV 9.7382934 mm  10.622684 m       World      muIoni
-   90  3.4500344 m   1.0863634 m  -2.7520817 m   35.211898 MeV 7.8481951 keV 3.2604554 cm  10.655289 m       World      muIoni
-   91  3.4539072 m   1.0876831 m  -2.7529416 m   35.210946 MeV 952.67127 eV   4.180834 mm   10.65947 m       World      muIoni
-   92  3.5064261 m   1.1055694 m  -2.7646185 m    35.19521 MeV 14.650794 keV  5.669673 cm  10.716167 m       World      muIoni
-   93  3.5068487 m   1.1057134 m  -2.7647132 m   35.195142 MeV 68.486737 eV   456.3823 um  10.716623 m       World      muIoni
-   94   3.545192 m   1.1187669 m  -2.7732883 m     35.1828 MeV 10.466655 keV 4.1402159 cm  10.758025 m       World      muIoni
-   95  3.5578549 m   1.1230825 m  -2.7761235 m   35.179125 MeV 2.2295941 keV 1.3675207 cm    10.7717 m       World      muIoni
-   96   3.580619 m   1.1308487 m  -2.7812004 m   35.170666 MeV 5.5311418 keV 2.4582455 cm  10.796283 m       World      muIoni
-   97  3.5996882 m   1.1373465 m  -2.7854399 m   35.164438 MeV 4.9196759 keV 2.0587099 cm   10.81687 m       World      muIoni
-   98  3.6021575 m   1.1381875 m   -2.785991 m   35.162318 MeV 954.53744 eV  2.6661283 mm  10.819536 m       World      muIoni
-   99  3.6239773 m   1.1456061 m   -2.790841 m   35.155345 MeV 5.7806299 keV 2.3551279 cm  10.843087 m       World      muIoni
-  100  3.6326657 m   1.1485653 m   -2.792771 m   35.153827 MeV  1.517508 keV 9.3792821 mm  10.852467 m       World      muIoni
-  101  3.6838225 m   1.1660983 m  -2.8044766 m   35.094877 MeV 12.887907 keV 5.5331431 cm  10.907798 m       World      muIoni
-  102  3.6954936 m   1.1701141 m  -2.8072052 m   35.091006 MeV 2.7032523 keV  1.264066 cm  10.920439 m       World      muIoni
-  103  3.7087488 m   1.1746773 m  -2.8102967 m   35.087094 MeV 3.9123872 keV 1.4355531 cm  10.934794 m       World      muIoni
-  104  3.7150975 m   1.1768623 m  -2.8117759 m   35.085754 MeV 1.3394706 keV 6.8751802 mm  10.941669 m       World      muIoni
-  105  3.7363342 m   1.1841601 m  -2.8167315 m   35.078476 MeV 5.6989323 keV 2.2995906 cm  10.964665 m       World      muIoni
-  106  3.8395042 m   1.2193524 m  -2.8407596 m    35.04987 MeV 24.035868 keV 11.162432 cm   11.07629 m       World      muIoni
-  107  3.8482903 m   1.2223418 m   -2.842794 m   35.033814 MeV 2.1344211 keV 9.5011647 mm  11.085791 m       World      muIoni
-  108  3.8811351 m   1.2335827 m  -2.8503785 m   35.025105 MeV 7.2880512 keV 3.5533939 cm  11.121325 m       World      muIoni
-  109  3.9218451 m   1.2475255 m  -2.8597552 m   35.012177 MeV 11.747439 keV 4.4041317 cm  11.165366 m       World      muIoni
-  110  3.9288844 m   1.2499412 m  -2.8613668 m   35.008536 MeV 1.9148234 keV 7.6147404 mm  11.172981 m       World      muIoni
-  111  3.9798742 m   1.2673634 m  -2.8729129 m   34.985434 MeV 12.229105 keV 5.5107268 cm  11.228088 m       World      muIoni
-  112   4.076257 m   1.3000694 m  -2.8946966 m   34.957306 MeV 26.911635 keV 10.408615 cm  11.332174 m       World      muIoni
-  113  4.0768151 m   1.3002567 m  -2.8948221 m   34.955953 MeV 237.21723 eV  601.91016 um  11.332776 m       World      muIoni
-  114  4.0813102 m   1.3017657 m  -2.8958339 m   34.953234 MeV 1.4153219 keV 4.8483721 mm  11.337624 m       World      muIoni
-  115  4.0943144 m   1.3061244 m  -2.8987748 m   34.950743 MeV 2.4905321 keV 1.4027088 cm  11.351652 m       World      muIoni
-  116  4.1090646 m   1.3110856 m  -2.9021133 m    34.94575 MeV 3.7953652 keV 1.5916208 cm  11.367568 m       World      muIoni
-  117  4.1677592 m   1.3309107 m  -2.9153261 m   34.930231 MeV  15.51828 keV 6.3345773 cm  11.430914 m       World      muIoni
-  118  4.1784335 m   1.3345002 m  -2.9177237 m   34.925575 MeV 1.9690029 keV 1.1514017 cm  11.442428 m       World      muIoni
-  119   4.194655 m   1.3399287 m  -2.9213593 m   34.920034 MeV 3.6874747 keV 1.7487851 cm  11.459915 m       World      muIoni
-  120  4.2439404 m    1.356409 m  -2.9323883 m   34.898445 MeV  15.93072 keV 5.3125262 cm  11.513041 m       World      muIoni
-  121  4.2506226 m   1.3586323 m  -2.9338825 m   34.895193 MeV 1.9696769 keV 7.1991703 mm   11.52024 m       World      muIoni
-  122  4.2529142 m   1.3593955 m  -2.9343949 m    34.89174 MeV 292.10717 eV  2.4691304 mm  11.522709 m       World      muIoni
-  123  4.2676611 m   1.3642989 m  -2.9376842 m   34.883588 MeV 3.2275029 keV 1.5885044 cm  11.538594 m       World      muIoni
-  124  4.2977827 m   1.3742972 m  -2.9443698 m   34.874143 MeV 7.6287444 keV 3.2434169 cm  11.571028 m       World      muIoni
-  125  4.5366011 m   1.4537045 m  -2.9968757 m   34.808332 MeV 64.813917 keV 25.709498 cm  11.828123 m       World      muIoni
-  126  4.6266629 m   1.4834076 m  -3.0168416 m   34.784584 MeV 21.564594 keV 9.6912858 cm  11.925036 m       World      muIoni
-  127  4.6446779 m   1.4893192 m  -3.0208597 m    34.77709 MeV 4.0740628 keV 1.9381268 cm  11.944417 m       World      muIoni
-  128  4.6656652 m   1.4962205 m  -3.0255587 m   34.770436 MeV 5.3465235 keV 2.2587046 cm  11.967004 m       World      muIoni
-  129  4.6707092 m    1.497884 m  -3.0266868 m   34.767821 MeV 1.6051571 keV 5.4297164 mm  11.972434 m       World      muIoni
-  130  4.6778903 m   1.5002527 m  -3.0282875 m   34.760624 MeV 2.4171375 keV 7.7292551 mm  11.980163 m       World      muIoni
-  131  4.7186151 m   1.5137099 m  -3.0373448 m   34.748228 MeV  10.06512 keV 4.3836565 cm     12.024 m       World      muIoni
-  132  4.7470532 m   1.5231463 m  -3.0437355 m   34.742437 MeV 5.7910292 keV 3.0636842 cm  12.054637 m       World      muIoni
-  133  4.7608865 m   1.5277302 m   -3.046838 m   34.739434 MeV  3.002882 keV 1.4899561 cm  12.069536 m  OutOfWorld  Transportation
-Track (trackID 22, parentID 4) is processed with stopping code 2
-NULL returned from G4StackManager.
-Terminate current event processing.
-=====================================
-  G4EventManager::ProcessOneEvent()  
-=====================================
-G4PrimaryTransformer::PrimaryVertex (-16.166464824675(mm),1.3817878964852(mm),78.383545019595(mm),0(nsec))
-1 primaries are passed from G4EventTransformer.
-!!!!!!! Now start processing an event !!!!!!!
-Track (trackID 1, parentID 0) is processed with stopping code 2
-NULL returned from G4StackManager.
+NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.383278(mm),3.1631761(mm),79.050623(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.503938(mm),-1.0538282(mm),79.029347(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4935,7 +4968,16 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.75355(mm),-2.1008689(mm),78.809007(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.586286(mm),3.1456681(mm),78.8385(mm),0(nsec))
+1 primaries are passed from G4EventTransformer.
+!!!!!!! Now start processing an event !!!!!!!
+Track (trackID 1, parentID 0) is processed with stopping code 2
+NULL returned from G4StackManager.
+Terminate current event processing.
+=====================================
+  G4EventManager::ProcessOneEvent()  
+=====================================
+G4PrimaryTransformer::PrimaryVertex (-14.578873(mm),-0.83170194(mm),78.66348(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4946,7 +4988,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 410
-G4PrimaryTransformer::PrimaryVertex (-14.572954(mm),1.2006449(mm),78.664524(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.371603(mm),-2.1829305(mm),78.523701(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4955,7 +4997,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.803161(mm),2.5295419(mm),78.271278(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.061343(mm),2.8552694(mm),78.931062(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4964,7 +5006,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.807078(mm),-0.12675572(mm),78.270588(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.008799(mm),0.52524358(mm),78.235019(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4973,7 +5015,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.167642(mm),-1.6066054(mm),78.912318(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.45321(mm),-0.93504412(mm),78.861965(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4982,7 +5024,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.981044(mm),-1.36986(mm),78.592567(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.653777(mm),0.2834788(mm),78.473946(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -4991,7 +5033,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.437166(mm),2.9373175(mm),78.335813(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.670596(mm),-1.6390782(mm),78.823634(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5000,7 +5042,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.585488(mm),2.1640703(mm),78.30966(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.651918(mm),-2.5430822(mm),79.003255(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5009,16 +5051,148 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.776832(mm),-0.7580173(mm),78.452248(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.78475(mm),0.1767251(mm),78.098198(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = pi+,   Track ID = 2,   Parent ID = 1
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -1.71 cm    152 um   7.41 cm    137 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1 -1.3294902 cm  3.3156903 mm  6.7468621 cm  119.03023 MeV 18.459026 MeV 8.3597355 mm  8.3597355 mm     Target         msc
+    2 -1.2685567 cm  3.8922737 mm  6.6633459 cm  115.89932 MeV  3.130913 MeV 1.1848395 mm  9.5445751 mm     Target  Transportation
+    3  23.371088 cm   -19.0158 cm         -2 m    115.8995 MeV9.6346853e-17 eV  3.0099441 m   3.0194886 m  CaptureMgnt  Transportation
+    4  22.209274 cm -20.421439 cm -2.0172035 m    115.8971 MeV 2.3950291 keV 2.5070347 cm   3.044559 m       World       hIoni
+    5   20.29396 cm -22.741466 cm -2.0455844 m   115.89173 MeV 5.3695186 keV 4.1359073 cm  3.0859181 m       World       hIoni
+    6  14.418083 cm -29.842938 cm -2.1323451 m   115.86804 MeV 22.645776 keV 12.658247 cm  3.2125005 m       World       hIoni
+    7  14.161056 cm -30.152626 cm -2.1361311 m   115.86669 MeV  289.5532 eV  5.5254484 mm   3.218026 m       World       hIoni
+    8  12.875946 cm -31.701474 cm -2.1550826 m   115.85957 MeV 5.8979674 keV 2.7644256 cm  3.2456702 m       World       hIoni
+    9  11.712406 cm -33.104035 cm -2.1722453 m   115.85454 MeV 3.6742876 keV 2.5033103 cm  3.2707033 m       World       hIoni
+   10  10.312126 cm -34.791711 cm -2.1928785 m   115.84902 MeV  4.494473 keV 3.0110336 cm  3.3008137 m       World       hIoni
+   11  4.1808199 cm  -42.18213 cm -2.2831241 m   115.82419 MeV 19.499032 keV 13.177789 cm  3.4325916 m       World       hIoni
+   12 -2.1021971 cm -49.747798 cm -2.3753753 m   115.79765 MeV 24.987672 keV 13.484015 cm  3.5674317 m       World       hIoni
+   13 -2.3521197 cm -50.047721 cm -2.3790339 m   115.79595 MeV 519.15535 eV  5.3503938 mm  3.5727821 m       World       hIoni
+   14 -4.9955996 cm -53.220216 cm  -2.417734 m    115.7782 MeV 11.320341 keV 5.6594827 cm  3.6293769 m       World       hIoni
+   15 -5.1289451 cm -53.380271 cm -2.4196831 m   115.77524 MeV 608.35342 eV  2.8528659 mm  3.6322298 m       World       hIoni
+   16 -6.5992605 cm -55.144783 cm -2.4411726 m   115.76384 MeV 5.2412984 keV 3.1453606 cm  3.6636834 m       World       hIoni
+   17 -9.8580154 cm  -59.05629 cm -2.4888281 m   115.68591 MeV 11.226302 keV 6.9735131 cm  3.7334185 m       World       hIoni
+   18 -11.711473 cm -61.273885 cm -2.5158852 m   115.67879 MeV  5.897517 keV 3.9590294 cm  3.7730088 m       World       hIoni
+   19 -19.006517 cm -70.014497 cm -2.6224275 m    115.6542 MeV 23.594307 keV 15.592589 cm  3.9289347 m       World       hIoni
+   20 -25.144551 cm -77.320951 cm -2.7115397 m   115.63084 MeV 21.668346 keV 13.056404 cm  4.0594988 m       World       hIoni
+   21 -26.903909 cm -79.412085 cm -2.7370541 m   115.62382 MeV 5.6852041 keV 3.7387198 cm   4.096886 m       World       hIoni
+   22 -27.705515 cm -80.365408 cm -2.7486872 m   115.61867 MeV 2.9198269 keV 1.7043169 cm  4.1139291 m       World       hIoni
+   23 -43.481566 cm -99.225807 cm -2.9761358 m   115.56282 MeV 53.556286 keV 33.495343 cm  4.4488826 m       World       hIoni
+   24 -43.753775 cm  -99.55139 cm -2.9800476 m   115.55914 MeV 1.5290252 keV 5.7716953 mm  4.4546543 m       World       hIoni
+   25 -54.484175 cm -1.1236252 m  -3.1340854 m   115.52221 MeV 34.225945 keV 22.727602 cm  4.6819303 m       World       hIoni
+   26 -58.583627 cm  -1.172572 m  -3.1929015 m   115.50683 MeV 13.637376 keV 8.6808273 cm  4.7687386 m       World       hIoni
+   27 -59.982164 cm -1.1892738 m   -3.212939 m   115.50195 MeV 2.6658143 keV 2.9598036 cm  4.7983366 m       World       hIoni
+   28 -61.550936 cm -1.2080306 m  -3.2354244 m   115.49572 MeV 4.8355536 keV 3.3219196 cm  4.8315558 m       World       hIoni
+   29 -62.623413 cm -1.2208588 m  -3.2508016 m   115.45937 MeV 3.0567632 keV 2.2716576 cm  4.8542724 m       World       hIoni
+   30 -74.167253 cm -1.3584872 m  -3.4161842 m   115.42015 MeV 37.577527 keV 24.417026 cm  5.0984426 m       World       hIoni
+   31 -74.435136 cm -1.3616794 m  -3.4200268 m   115.41632 MeV 953.28607 eV  5.6684722 mm  5.1041111 m       World       hIoni
+   32 -77.813375 cm -1.4019939 m  -3.4686167 m   115.40144 MeV 11.024875 keV  7.160652 cm  5.1757176 m       World       hIoni
+   33 -80.199984 cm  -1.430485 m  -3.5029095 m   115.39259 MeV 7.8150618 keV 5.0570037 cm  5.2262876 m       World       hIoni
+   34  -85.92079 cm -1.4988975 m  -3.5849423 m   115.37346 MeV 17.443688 keV 12.117103 cm  5.3474587 m       World       hIoni
+   35 -86.273335 cm -1.5031151 m  -3.5899953 m   115.36881 MeV 1.2752263 keV 7.4665568 mm  5.3549252 m       World       hIoni
+   36 -86.346554 cm -1.5039912 m  -3.5910445 m   115.35535 MeV 132.54712 eV  1.5507243 mm   5.356476 m       World       hIoni
+   37 -87.551916 cm -1.5184322 m  -3.6083483 m   115.34954 MeV 1.9592976 keV 2.5558764 cm  5.3820347 m       World       hIoni
+   38 -89.104569 cm -1.5370198 m  -3.6306576 m   115.33646 MeV 4.8855996 keV 3.2928372 cm  5.4149631 m       World       hIoni
+   39 -91.512727 cm -1.5658248 m  -3.6652565 m   115.32878 MeV   4.12556 keV 5.1056197 cm  5.4660193 m       World       hIoni
+   40 -92.332725 cm -1.5756297 m  -3.6770259 m   115.32421 MeV 3.4345187 keV 1.7375124 cm  5.4833944 m       World       hIoni
+   41 -93.790524 cm -1.5930828 m  -3.6979517 m   115.31937 MeV 3.7700656 keV 3.0903355 cm  5.5142978 m       World       hIoni
+   42 -94.812205 cm -1.6053174 m  -3.7126131 m   115.31249 MeV 4.0035351 keV  2.165701 cm  5.5359548 m       World       hIoni
+   43 -1.0408301 m  -1.7161672 m  -3.8454295 m    115.2793 MeV 30.122661 keV 19.627201 cm  5.7322268 m       World       hIoni
+   44 -1.0427488 m  -1.7184592 m   -3.848177 m   115.27364 MeV 634.10047 eV  4.0600529 mm  5.7362869 m       World       hIoni
+   45 -1.0922187 m  -1.7777187 m  -3.9190227 m   115.25598 MeV 16.339006 keV 10.477628 cm  5.8410631 m       World       hIoni
+   46 -1.1038002 m  -1.7916488 m  -3.9356265 m   115.24866 MeV 4.9172902 keV 2.4573687 cm  5.8656368 m       World       hIoni
+   47  -1.105813 m  -1.7940791 m  -3.9385192 m   115.24664 MeV 627.62413 eV  4.2807689 mm  5.8699176 m       World       hIoni
+   48 -1.1884285 m  -1.8936239 m  -4.0572548 m   115.21739 MeV 28.227485 keV 17.559235 cm  6.0455099 m       World       hIoni
+   49 -1.1935077 m  -1.8997379 m  -4.0645581 m   115.21259 MeV 2.6258276 keV 1.0794341 cm  6.0563043 m       World       hIoni
+   50  -1.223125 m  -1.9354086 m  -4.1071839 m   115.20288 MeV 9.7165224 keV 6.2980547 cm  6.1192848 m       World       hIoni
+   51 -1.2358882 m  -1.9508173 m  -4.1255947 m    115.1968 MeV 2.5940687 keV 2.7189751 cm  6.1464746 m       World       hIoni
+   52 -1.2454993 m  -1.9624326 m  -4.1395019 m   115.19444 MeV  2.355809 keV 2.0511007 cm  6.1669856 m       World       hIoni
+   53 -1.2622789 m  -1.9827205 m  -4.1637826 m   115.18735 MeV 5.6459412 keV  3.581484 cm  6.2028004 m       World       hIoni
+   54 -1.3024476 m  -2.0313696 m  -4.2219386 m   115.11496 MeV 17.224074 keV 8.5804346 cm  6.2886048 m       World       hIoni
+   55 -1.3907675 m  -2.1384457 m  -4.3499865 m   115.08402 MeV 29.277904 keV 18.884389 cm  6.4774487 m       World       hIoni
+   56 -1.4716713 m  -2.2364938 m   -4.467304 m   115.05677 MeV 25.588086 keV  17.29806 cm  6.6504293 m       World       hIoni
+   57 -1.5232881 m  -2.2990469 m  -4.5420351 m   115.03114 MeV 19.308509 keV 11.028119 cm  6.7607105 m       World       hIoni
+   58  -1.528865 m   -2.305784 m   -4.550079 m   115.02872 MeV 1.2676558 keV 1.1882459 cm  6.7725929 m       World       hIoni
+   59 -1.5498802 m  -2.3312154 m  -4.5804412 m   115.01111 MeV 5.8323243 keV 4.4835964 cm  6.8174289 m       World       hIoni
+   60 -1.5860982 m   -2.375127 m  -4.6328387 m   114.99872 MeV 12.387003 keV  7.736579 cm  6.8947947 m       World       hIoni
+   61 -1.6232975 m  -2.4199615 m  -4.6863884 m   114.98442 MeV 9.7381825 keV 7.9129616 cm  6.9739243 m       World       hIoni
+   62  -1.627282 m  -2.4247574 m  -4.6921257 m   114.97872 MeV 1.8238174 keV  8.473071 mm  6.9823974 m       World       hIoni
+   63 -1.7001774 m  -2.5128465 m  -4.7975374 m   114.94989 MeV 25.062427 keV  15.55156 cm   7.137913 m       World       hIoni
+   64 -1.7014735 m  -2.5144168 m  -4.7994168 m   114.94723 MeV 429.99555 eV  2.7708802 mm  7.1406838 m       World       hIoni
+   65 -1.7113227 m  -2.5263371 m  -4.8136794 m   114.94077 MeV 5.3074219 keV 2.1036193 cm    7.16172 m       World       hIoni
+   66 -1.7206349 m  -2.5375918 m  -4.8271485 m    114.9372 MeV 2.4247291 keV 1.9869629 cm  7.1815897 m       World       hIoni
+   67 -1.7440853 m  -2.5659338 m   -4.861082 m   114.92894 MeV 5.5617274 keV 5.0046694 cm  7.2316364 m       World       hIoni
+   68 -1.7686633 m  -2.5956317 m    -4.89665 m   114.92016 MeV 8.7806689 keV 5.2451168 cm  7.2840875 m       World       hIoni
+   69 -1.7839562 m  -2.6141459 m   -4.918772 m   114.91461 MeV 3.2597313 keV 3.2650206 cm  7.3167377 m       World       hIoni
+   70 -1.8243392 m  -2.6630445 m  -4.9771492 m   114.89984 MeV 12.938467 keV  8.619604 cm  7.4029338 m       World       hIoni
+   71 -1.8466733 m  -2.6901407 m  -5.0094545 m   114.89191 MeV 6.7508573 keV 4.7714258 cm   7.450648 m       World       hIoni
+   72 -1.8789663 m  -2.7293453 m  -5.0561597 m    114.8803 MeV  8.738982 keV 6.9001577 cm  7.5196496 m       World       hIoni
+   73 -1.8993106 m  -2.7540698 m  -5.0855967 m   114.87205 MeV 7.0715943 keV 4.3493989 cm  7.5631436 m       World       hIoni
+   74 -1.9075105 m   -2.764041 m  -5.0974537 m   114.86637 MeV 3.9297656 keV 1.7528622 cm  7.5806722 m       World       hIoni
+   75 -1.9632919 m  -2.8318273 m  -5.1781455 m   114.84774 MeV 17.564963 keV 11.923808 cm  7.6999103 m       World       hIoni
+   76 -1.9652689 m   -2.834225 m  -5.1810008 m   114.84455 MeV 1.3850252 keV   4.22024 mm  7.7041305 m       World       hIoni
+   77  -1.986819 m  -2.8603365 m  -5.2121453 m   114.83642 MeV 6.7220998 keV 4.6002116 cm  7.7501327 m       World       hIoni
+   78 -1.9912106 m  -2.8656516 m  -5.2184845 m   114.83355 MeV 1.6588311 keV 9.3659567 mm  7.7594986 m       World       hIoni
+   79 -2.0177973 m  -2.8978904 m  -5.2569059 m   114.82398 MeV 8.5176098 keV 5.6766159 cm  7.8162648 m       World       hIoni
+   80 -2.0602809 m  -2.9494941 m  -5.3183798 m   114.80557 MeV 16.651051 keV  9.081221 cm   7.907077 m       World       hIoni
+   81 -2.0790335 m  -2.9722977 m  -5.3455035 m    114.7817 MeV  6.625162 keV 4.0091892 cm  7.9471689 m       World       hIoni
+   82 -2.1010901 m  -2.9991133 m  -5.3773849 m   114.77089 MeV  9.392621 keV 4.7138016 cm  7.9943069 m       World       hIoni
+   83 -2.1025988 m  -3.0009448 m  -5.3795629 m   114.76898 MeV  334.4213 eV  3.2208849 mm  7.9975278 m       World       hIoni
+   84 -2.1082397 m  -3.0077897 m  -5.3877034 m   114.76596 MeV 1.3662304 keV  1.203915 cm  8.0095669 m       World       hIoni
+   85  -2.119402 m  -3.0213374 m  -5.4038286 m   114.74804 MeV 3.4612036 keV 2.3836049 cm   8.033403 m       World       hIoni
+   86 -2.1560812 m  -3.0658223 m  -5.4567364 m   114.73119 MeV 14.491788 keV 7.8252937 cm  8.1116559 m       World       hIoni
+   87 -2.1640022 m   -3.075408 m  -5.4681238 m   114.72747 MeV 2.5792588 keV 1.6861096 cm   8.128517 m       World       hIoni
+   88 -2.1692194 m  -3.0817251 m  -5.4756245 m   114.72433 MeV 1.5160745 keV 1.1107961 cm   8.139625 m       World       hIoni
+   89 -2.2246775 m  -3.1494249 m  -5.5557981 m   114.70278 MeV 18.749358 keV 11.868736 cm  8.2583123 m       World       hIoni
+   90  -2.270246 m  -3.2051634 m  -5.6217805 m   114.68367 MeV 17.927082 keV 9.7657367 cm  8.3559697 m       World       hIoni
+   91 -2.3037358 m   -3.246223 m  -5.6703102 m   114.67315 MeV 9.3662403 keV 7.1851183 cm  8.4278209 m       World       hIoni
+   92 -2.3060237 m  -3.2490289 m  -5.6736214 m   113.73042 MeV 398.80397 eV  4.9062527 mm  8.4327271 m       World  hadElastic
+   93 -2.3438936 m  -3.2468408 m  -5.6976123 m   113.65661 MeV 6.2230248 keV 4.4883003 cm  8.4776101 m       World       hIoni
+   94 -2.3615174 m  -3.2458101 m  -5.7088099 m    113.6519 MeV 3.5548378 keV 2.0905686 cm  8.4985158 m       World       hIoni
+   95 -2.3876305 m  -3.2442796 m  -5.7254121 m   113.63405 MeV 4.9764768 keV 3.0981708 cm  8.5294975 m       World       hIoni
+   96 -2.4101871 m   -3.242983 m  -5.7397585 m   113.62741 MeV 4.1648831 keV 2.6763747 cm  8.5562613 m       World       hIoni
+   97 -2.5126131 m  -3.2369566 m   -5.804977 m   113.60557 MeV  20.84479 keV 12.157671 cm   8.677838 m       World       hIoni
+   98 -2.5693836 m  -3.2335876 m  -5.8411251 m   113.59442 MeV 10.000538 keV 6.7386357 cm  8.7452243 m       World       hIoni
+   99 -2.6912423 m  -3.2264016 m  -5.9188096 m   113.55118 MeV 25.193289 keV 14.469305 cm  8.8899174 m       World       hIoni
+  100 -2.6999427 m  -3.2259059 m  -5.9243514 m   113.54662 MeV 1.3916246 keV 1.0327368 cm  8.9002448 m       World       hIoni
+  101 -2.7525547 m  -3.2229084 m  -5.9578254 m   113.53242 MeV 13.200439 keV 6.2430077 cm  8.9626748 m       World       hIoni
+  102 -2.8079743 m  -3.2197381 m  -5.9931013 m   113.52094 MeV  9.730491 keV  6.577062 cm  9.0284455 m       World       hIoni
+  103 -2.8271897 m   -3.218648 m  -6.0053323 m   113.51623 MeV  3.663943 keV 2.2803917 cm  9.0512494 m       World       hIoni
+  104 -2.8546003 m  -3.2171088 m  -6.0227845 m   113.50687 MeV 5.1794199 keV  3.253135 cm  9.0837807 m       World       hIoni
+  105 -3.0038963 m  -3.2088032 m  -6.1180054 m   113.47576 MeV 28.898238 keV 17.727198 cm  9.2610527 m       World       hIoni
+  106 -3.0318174 m  -3.2072641 m  -6.1358511 m   113.46874 MeV 3.6973731 keV  3.317264 cm  9.2942253 m       World       hIoni
+  107 -3.0364862 m  -3.2070077 m   -6.138837 m   113.46802 MeV 721.51156 eV  5.5479035 mm  9.2997732 m       World       hIoni
+  108 -3.1034235 m  -3.2033598 m  -6.1816012 m   113.43735 MeV 14.671402 keV 7.9515287 cm  9.3792885 m       World       hIoni
+  109 -3.1440133 m  -3.2011515 m  -6.2075321 m   113.42741 MeV 7.3352835 keV 4.8216461 cm   9.427505 m       World       hIoni
+  110 -3.2457918 m  -3.1956809 m  -6.2723882 m   113.39019 MeV 20.784385 keV 12.081027 cm  9.5483153 m       World       hIoni
+  111 -3.2477493 m  -3.1955741 m  -6.2736345 m   113.38886 MeV  335.1534 eV  2.3229618 mm  9.5506382 m       World       hIoni
+  112 -3.2841994 m  -3.1936016 m  -6.2968655 m   113.37731 MeV 8.7839737 keV 4.3268728 cm  9.5939069 m       World       hIoni
+  113  -3.347169 m  -3.1902445 m  -6.3369819 m   113.36498 MeV 10.926322 keV 7.4738022 cm   9.668645 m       World       hIoni
+  114 -3.4908677 m  -3.1827783 m  -6.4283311 m   113.33707 MeV 26.380427 keV 17.043997 cm  9.8390849 m       World       hIoni
+  115 -3.4910439 m  -3.1827691 m  -6.4284434 m   113.33472 MeV 983.99819 eV   209.1313 um  9.8392941 m       World       hIoni
+  116 -3.5441873 m  -3.1800102 m  -6.4623231 m   113.32244 MeV 11.175857 keV 6.3084527 cm  9.9023786 m       World       hIoni
+  117 -3.5545289 m  -3.1794708 m  -6.4689208 m   113.31916 MeV 2.0838768 keV  1.227888 cm  9.9146575 m       World       hIoni
+  118 -3.5787021 m   -3.178205 m  -6.4843446 m   113.31292 MeV 3.5472897 keV 2.8702624 cm  9.9433601 m       World       hIoni
+  119  -3.639101 m  -3.1750415 m  -6.5228879 m   113.29771 MeV 13.537331 keV 7.1718971 cm  10.015079 m       World       hIoni
+  120 -3.6485418 m  -3.1745454 m  -6.5289109 m   113.29473 MeV 2.9801204 keV 1.1209491 cm  10.026289 m       World       hIoni
+  121 -3.6681264 m  -3.1735234 m   -6.541402 m   113.28318 MeV 4.4010577 keV 2.3251415 cm   10.04954 m       World       hIoni
+  122 -3.6808556 m  -3.1728689 m  -6.5495229 m   113.27738 MeV 1.2477297 keV  1.511319 cm  10.064653 m       World       hIoni
+  123 -3.7535103 m  -3.1691452 m  -6.5958493 m   113.26084 MeV 12.760111 keV 8.6248058 cm  10.150901 m       World       hIoni
+  124 -3.8722576 m  -3.1631663 m  -6.6715551 m   113.23692 MeV 23.920529 keV  14.09541 cm  10.291855 m  OutOfWorld  Transportation
+Track (trackID 2, parentID 1) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.098563(mm),3.5401385(mm),78.748172(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.005487491751(mm),2.3872941609442(mm),78.411929666672(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5027,7 +5201,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.278051(mm),-0.84061428(mm),79.421831(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.488662(mm),2.6061509(mm),78.326733(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5038,7 +5212,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 420
-G4PrimaryTransformer::PrimaryVertex (-12.339761(mm),-0.0088499405(mm),79.058296(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.005551(mm),1.9353889(mm),78.411918(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5047,7 +5221,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.474346(mm),-2.2361789(mm),78.681911(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.670654(mm),0.63923696(mm),79.176278(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5056,7 +5230,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.312639(mm),0.3225224(mm),79.063078(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.182405(mm),-2.5940451(mm),78.557061(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5065,7 +5239,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.890089(mm),-1.0633851(mm),78.961258(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.503207(mm),0.25374207(mm),79.205803(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5074,7 +5248,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.114869(mm),2.8234802(mm),79.274278(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.64309(mm),0.80186161(mm),78.299503(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5083,7 +5257,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.903239(mm),1.1334381(mm),78.253632(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.793155(mm),0.76131699(mm),78.802024(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5092,7 +5266,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.445571(mm),2.1804037(mm),78.686985(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.789128(mm),-3.4462637(mm),78.626407(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5101,7 +5275,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.514854(mm),3.6413786(mm),78.674769(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.902122(mm),-0.11636975(mm),79.135464(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5110,7 +5284,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.838748(mm),1.9123088(mm),78.265003(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.413028(mm),-2.0143339(mm),79.045377(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5119,7 +5293,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.948974(mm),1.2483159(mm),78.774548(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.512208(mm),0.91483418(mm),78.146254(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5130,7 +5304,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 430
-G4PrimaryTransformer::PrimaryVertex (-10.870093(mm),-1.9478395(mm),79.317438(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.029062(mm),1.3365431(mm),78.936754(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5139,7 +5313,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.185674(mm),0.32708842(mm),78.380158(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.139334(mm),3.1253215(mm),78.91731(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5148,7 +5322,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.027001(mm),-3.8484539(mm),78.76079(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.099589(mm),2.3761024(mm),78.747991(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5157,7 +5331,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.734042(mm),-3.8316029(mm),78.63612(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.503109(mm),-3.317624(mm),78.500513(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5166,7 +5340,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.991816(mm),-1.3952871(mm),78.766994(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.595273(mm),-2.9838544(mm),78.836915(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5175,7 +5349,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.137573(mm),0.13586513(mm),78.91762(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.746354(mm),-1.723763(mm),79.16293(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5184,7 +5358,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.196801(mm),2.5218125(mm),78.907177(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.667072(mm),2.2861427(mm),78.471601(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5193,7 +5367,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.241081(mm),-0.96560404(mm),79.42835(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.506416(mm),0.77372462(mm),78.676256(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5202,7 +5376,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.048334(mm),-2.0697051(mm),79.109683(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.342025(mm),-2.9044119(mm),79.057897(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5211,7 +5385,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.766855(mm),-0.42658301(mm),78.27768(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.51223(mm),-3.2968105(mm),78.851558(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5222,7 +5396,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 440
-G4PrimaryTransformer::PrimaryVertex (-14.408363(mm),0.56679016(mm),78.693546(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.010538(mm),1.3239994(mm),79.292674(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5231,7 +5405,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.255069(mm),-3.7601457(mm),78.896903(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.849364(mm),1.3548157(mm),79.321093(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5240,7 +5414,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.395731(mm),-0.9727333(mm),78.166792(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.034881(mm),-0.63133263(mm),78.935728(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5249,7 +5423,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.96469(mm),2.973981(mm),79.124431(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.766566(mm),3.1217674(mm),78.806712(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5258,7 +5432,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.704085(mm),2.0695971(mm),78.994056(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.7575(mm),2.7626079(mm),79.160964(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5267,7 +5441,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.022086(mm),-3.005681(mm),78.409003(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.924033(mm),-0.25757724(mm),78.955273(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5276,7 +5450,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.262101(mm),0.20681008(mm),79.424644(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.480734(mm),0.64518039(mm),78.680785(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5285,7 +5459,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.272251(mm),-3.4059304(mm),79.0702(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.027001(mm),-3.8484539(mm),78.76079(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5294,7 +5468,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.754265(mm),0.51780278(mm),78.456227(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.734042(mm),-3.8316029(mm),78.63612(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5303,7 +5477,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.745948(mm),2.1758266(mm),78.63402(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.991816(mm),-1.3952871(mm),78.766994(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5314,7 +5488,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 450
-G4PrimaryTransformer::PrimaryVertex (-13.661858(mm),1.064482(mm),78.825175(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.137573(mm),0.13586513(mm),78.91762(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5323,7 +5497,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.663485(mm),-2.0682871(mm),78.472234(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.196801(mm),2.5218125(mm),78.907177(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5332,7 +5506,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.686274(mm),1.9368041(mm),79.173524(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.328037(mm),-0.41638089(mm),78.531382(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5341,7 +5515,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.663917(mm),3.2994036(mm),78.648485(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.332738(mm),3.7906238(mm),78.706881(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5350,7 +5524,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.641901(mm),2.1199888(mm),79.005021(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.483565(mm),1.991953(mm),79.03294(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5359,7 +5533,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.76905(mm),1.3935433(mm),79.335255(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.81057(mm),0.83399753(mm),78.622626(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5368,7 +5542,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.09749(mm),1.2353953(mm),78.748361(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.558924(mm),3.2407087(mm),78.843325(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5377,7 +5551,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.852489(mm),2.0253416(mm),78.26258(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.288861(mm),2.5172877(mm),78.890944(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5386,7 +5560,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.388903(mm),-3.6825147(mm),78.873304(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.614472(mm),3.7210667(mm),78.83353(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5395,7 +5569,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.303834(mm),-2.0645623(mm),78.711977(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.867702(mm),3.3174616(mm),78.788879(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5406,7 +5580,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 460
-G4PrimaryTransformer::PrimaryVertex (-11.262694(mm),-1.7526856(mm),79.248212(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.877322(mm),0.95468358(mm),78.434529(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5415,7 +5589,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.906622(mm),2.4706585(mm),79.13467(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.843297(mm),-2.6477427(mm),78.440528(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5424,7 +5598,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.346512(mm),0.6961803(mm),79.40976(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.071698(mm),0.97586596(mm),78.400255(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5433,7 +5607,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.77032(mm),-2.5533036(mm),79.158704(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.696742(mm),0.97198581(mm),78.819024(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5442,7 +5616,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.634348(mm),3.5224634(mm),78.477372(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.377942(mm),-3.1946297(mm),78.522583(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5451,7 +5625,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.877999(mm),0.72885148(mm),78.787063(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.039691(mm),-0.11419172(mm),78.582226(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5460,7 +5634,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.479485(mm),3.2748072(mm),78.681005(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.227802(mm),-0.60668442(mm),79.078038(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5469,7 +5643,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.551563(mm),-0.65349611(mm),79.197277(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.509507(mm),0.2135352(mm),78.852038(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5478,7 +5652,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.903329(mm),-1.3361656(mm),78.958924(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.38862(mm),1.7625758(mm),78.5207(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5487,7 +5661,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.132474(mm),2.2109219(mm),78.742192(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.355934(mm),0.752101(mm),78.17381(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5498,7 +5672,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 470
-G4PrimaryTransformer::PrimaryVertex (-10.780586(mm),0.62752973(mm),79.333221(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.623604(mm),2.5419774(mm),78.655593(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5507,7 +5681,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.832666(mm),2.79347(mm),78.442403(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.616125(mm),-0.82757299(mm),79.36222(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5516,7 +5690,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.630438(mm),1.0600101(mm),78.478061(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.364156(mm),2.9060246(mm),78.525014(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5525,7 +5699,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.131499(mm),0.72099143(mm),78.918691(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.930693(mm),-2.5896046(mm),79.306753(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5534,7 +5708,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.800451(mm),-2.6138345(mm),79.153391(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.802752(mm),-2.6213892(mm),78.624004(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5543,7 +5717,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.416135(mm),2.700721(mm),78.339521(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.302112(mm),-0.14559784(mm),78.712281(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5552,7 +5726,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.754117(mm),-3.1386969(mm),78.808907(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.713069(mm),-1.6206086(mm),79.345126(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5561,7 +5735,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.400993(mm),-1.2812999(mm),78.871172(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.569078(mm),0.42253791(mm),78.665207(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5570,7 +5744,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.37724(mm),1.6267364(mm),79.228015(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.172997(mm),-2.3552974(mm),79.264028(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5579,7 +5753,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.59604(mm),0.82179863(mm),79.013107(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.769564(mm),-3.6342538(mm),78.98251(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5590,7 +5764,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 480
-G4PrimaryTransformer::PrimaryVertex (-12.023785(mm),0.22597773(mm),79.114011(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.835668(mm),-1.9641493(mm),79.147181(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5599,7 +5773,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.617399(mm),2.5055716(mm),79.009341(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.1103(mm),-3.4049954(mm),78.922429(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5608,99 +5782,16 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.391031(mm),0.71604835(mm),78.520275(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.158752(mm),-1.9794824(mm),78.913886(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
-
-*********************************************************************************************************
-* G4Track Information:   Particle = pi+,   Track ID = 2,   Parent ID = 1
-*********************************************************************************************************
-
-Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
-    0  -1.52 cm    712 um   7.76 cm    196 MeV     0 eV      0 fm      0 fm     Target    initStep
-    1 -8.4382531 mm  54.610827 um  6.9844106 cm  175.49571 MeV  20.22619 MeV 1.0368137 cm  1.0368137 cm     Target  hadElastic
-    2 -8.2190596 mm  6.6467042 um  6.9647654 cm  174.95584 MeV 539.87234 keV 298.26676 um  1.0666403 cm     Target  Transportation
-    3  3.8769362 mm -15.020695 cm         -2 m   174.95585 MeV9.2649456e-17 eV  3.2151078 m   3.2257742 m  CaptureMgnt  Transportation
-    4  2.0071439 cm -15.567865 cm -2.0143774 m   174.94955 MeV 3.6669491 keV 2.2336338 cm  3.2481106 m       World       hIoni
-    5  2.2601394 cm -15.653377 cm -2.0166234 m   174.94721 MeV 135.94923 eV  3.4894354 mm     3.2516 m       World       hIoni
-    6  10.712738 cm  -18.52701 cm -2.0917143 m   174.93165 MeV 14.242403 keV 11.665804 cm   3.368258 m       World       hIoni
-    7  11.811491 cm -18.903116 cm -2.1014745 m   174.92862 MeV 1.9859264 keV 1.5170176 cm  3.3834282 m       World       hIoni
-    8  17.018597 cm -20.683113 cm -2.1477047 m   174.91531 MeV  11.30873 keV 7.1871158 cm  3.4552994 m       World       hIoni
-    9  17.496711 cm   -20.8461 cm -2.1519455 m   174.91438 MeV 933.79391 eV  6.5954704 mm  3.4618948 m       World       hIoni
-   10  31.953596 cm -25.765221 cm -2.2802909 m   174.87825 MeV  30.10439 keV 19.948058 cm  3.6613754 m       World       hIoni
-   11  33.578673 cm -26.317959 cm -2.2947115 m   174.87313 MeV 3.9217669 keV 2.2418602 cm   3.683794 m       World       hIoni
-   12  34.041245 cm -26.475304 cm  -2.298818 m    174.8709 MeV 531.01602 eV  6.3824586 mm  3.6901765 m       World       hIoni
-   13  41.483327 cm -29.008386 cm -2.3649354 m   174.85187 MeV 16.656155 keV 10.272113 cm  3.7928976 m       World       hIoni
-   14  42.168479 cm -29.241391 cm -2.3710211 m    174.8486 MeV 2.0321392 keV 9.4555754 mm  3.8023532 m       World       hIoni
-   15  43.226452 cm -29.600626 cm -2.3804129 m    174.8452 MeV 2.3696058 keV 1.4595964 cm  3.8169491 m       World       hIoni
-   16  61.561701 cm -35.826877 cm -2.5431794 m   174.81047 MeV 32.920629 keV 25.295798 cm  4.0699071 m       World       hIoni
-   17  69.423337 cm -38.484838 cm -2.6131144 m   174.79387 MeV 16.597966 keV 10.852609 cm  4.1784332 m       World       hIoni
-   18  70.111984 cm -38.717355 cm -2.6192389 m   174.79239 MeV 391.87125 eV  9.5047399 mm   4.187938 m       World       hIoni
-   19  72.816681 cm -39.629023 cm -2.6433035 m   174.78583 MeV 5.0442079 keV 3.7333056 cm   4.225271 m       World       hIoni
-   20  74.902998 cm -40.332116 cm -2.6618714 m   174.77979 MeV 4.3226576 keV 2.8800545 cm  4.2540716 m       World       hIoni
-   21  1.1552482 m  -54.131434 cm -3.0241535 m   174.68648 MeV 91.462855 keV 56.151976 cm  4.8155913 m       World       hIoni
-   22  1.2065976 m  -55.882645 cm -3.0699906 m   174.67293 MeV  11.29166 keV  7.102448 cm  4.8866158 m       World       hIoni
-   23  1.2108392 m  -56.027213 cm -3.0737738 m   174.67038 MeV 822.47839 eV  5.8645814 mm  4.8924804 m       World       hIoni
-   24  1.2513071 m  -57.406569 cm -3.1098868 m   174.66154 MeV 7.1122108 keV 5.5964868 cm  4.9484453 m       World       hIoni
-   25  1.4757707 m  -65.069761 cm -3.3099727 m   174.61672 MeV 43.294014 keV  31.03077 cm   5.258753 m       World       hIoni
-   26  1.4773699 m  -65.124347 cm -3.3113963 m   174.61257 MeV 298.36491 eV   2.209485 mm  5.2609624 m       World       hIoni
-   27  1.6694564 m  -71.690401 cm  -3.481963 m   174.57526 MeV 36.031227 keV 26.514448 cm  5.5261069 m       World       hIoni
-   28  1.7094473 m  -73.058769 cm -3.5174161 m   174.56528 MeV 8.9071042 keV 5.5167385 cm  5.5812743 m       World       hIoni
-   29   1.777437 m  -75.382861 cm -3.5777228 m    174.5455 MeV 14.567796 keV 9.3806411 cm  5.6750807 m       World       hIoni
-   30  1.8308633 m  -77.215634 cm  -3.625097 m   174.53255 MeV 10.655962 keV 7.3719718 cm  5.7488004 m       World       hIoni
-   31  1.9212253 m  -80.308649 cm -3.7052605 m   174.50785 MeV 19.301417 keV 12.469223 cm  5.8734927 m       World       hIoni
-   32  1.9863639 m  -82.547182 cm -3.7631855 m   174.48917 MeV 14.245271 keV 8.9996941 cm  5.9634896 m       World       hIoni
-   33  2.0041345 m  -83.158607 cm  -3.778984 m   174.48649 MeV 2.6790806 keV 2.4551348 cm   5.988041 m       World       hIoni
-   34  2.0541768 m  -84.881815 cm -3.8234952 m   174.47578 MeV 9.2144318 keV 6.9155168 cm  6.0571961 m       World       hIoni
-   35  2.0815704 m  -85.825992 cm -3.8478792 m   174.46738 MeV 5.6940229 keV 3.7870012 cm  6.0950661 m       World       hIoni
-   36   2.102743 m  -86.556287 cm -3.8667264 m    174.4614 MeV 4.7654549 keV 2.9271612 cm  6.1243378 m       World       hIoni
-   37  2.1203533 m   -87.16399 cm -3.8824017 m   174.45554 MeV  4.232129 keV 2.4346781 cm  6.1486845 m       World       hIoni
-   38  2.1407441 m  -87.868209 cm -3.9005663 m   174.45001 MeV 4.5127816 keV 2.8201605 cm  6.1768861 m       World       hIoni
-   39  2.1789367 m  -89.188019 cm -3.9346285 m   174.43797 MeV 11.041319 keV 5.2849767 cm  6.2297359 m       World       hIoni
-   40  2.2479604 m  -91.570048 cm -3.9961973 m   174.42191 MeV 14.670446 keV 9.5511195 cm  6.3252471 m       World       hIoni
-   41  2.2641723 m  -92.128026 cm -4.0106634 m   174.41093 MeV  5.326048 keV 2.2432815 cm  6.3476799 m       World       hIoni
-   42   2.431281 m  -97.841793 cm -4.1595636 m   174.37804 MeV 31.758802 keV 23.100076 cm  6.5786807 m       World       hIoni
-   43  2.4426253 m  -98.230091 cm  -4.169651 m   174.37471 MeV 1.2291335 keV 1.5669257 cm  6.5943499 m       World       hIoni
-   44  2.4684747 m  -99.113339 cm  -4.192627 m   174.35017 MeV 4.3207442 keV 3.5694546 cm  6.6300445 m       World       hIoni
-   45  2.4700404 m  -99.166827 cm -4.1940207 m   174.34868 MeV 123.37919 eV  2.1633083 mm  6.6322078 m       World       hIoni
-   46   2.609495 m  -1.0393222 m  -4.3179554 m    174.3178 MeV 28.313147 keV 19.255738 cm  6.8247652 m       World       hIoni
-   47  2.7190651 m  -1.0767633 m  -4.4153502 m   174.29443 MeV 21.003637 keV 15.130489 cm  6.9760701 m       World       hIoni
-   48  2.7673226 m  -1.0932395 m   -4.458222 m   174.28219 MeV 8.2181497 keV 6.6620172 cm  7.0426902 m       World       hIoni
-   49  2.7821458 m  -1.0982977 m   -4.471404 m   174.27744 MeV 2.9206591 keV 2.0471455 cm  7.0631617 m       World       hIoni
-   50  2.9838586 m  -1.1672179 m   -4.650464 m   174.23114 MeV 41.482695 keV 27.838924 cm  7.3415509 m       World       hIoni
-   51  3.0211742 m  -1.1800029 m  -4.6835664 m   174.22101 MeV 8.9734823 keV 5.1494527 cm  7.3930454 m       World       hIoni
-   52  3.0423873 m  -1.1872824 m  -4.7023877 m   174.21671 MeV 2.8468676 keV 2.9278457 cm  7.4223239 m       World       hIoni
-   53  3.3763055 m  -1.3014539 m  -4.9978098 m   174.14677 MeV 68.811908 keV 46.022941 cm  7.8825533 m       World       hIoni
-   54  3.4627459 m  -1.3313187 m  -5.0744871 m   174.13074 MeV 13.828404 keV 11.934556 cm  8.0018989 m       World       hIoni
-   55  3.5593754 m  -1.3648541 m   -5.160155 m    174.1054 MeV 17.942368 keV 13.341988 cm  8.1353187 m       World       hIoni
-   56  3.6505558 m  -1.3965674 m  -5.2411249 m   174.08417 MeV 19.804492 keV   12.5999 cm  8.2613178 m       World       hIoni
-   57  3.7799438 m  -1.4416293 m  -5.3563037 m   174.03997 MeV 24.240852 keV 17.899157 cm  8.4403093 m       World       hIoni
-   58  3.8144494 m  -1.4536855 m  -5.3870442 m   174.03247 MeV 5.8312913 keV 4.7759493 cm  8.4880688 m       World       hIoni
-   59  3.8207995 m  -1.4559068 m   -5.392702 m   174.02913 MeV 1.8265019 keV 8.7902237 mm   8.496859 m       World       hIoni
-   60  3.8815525 m  -1.4772764 m  -5.4468738 m   174.01485 MeV 11.918432 keV 8.4155688 cm  8.5810147 m       World       hIoni
-   61  3.9379233 m  -1.4971231 m   -5.497169 m   173.99936 MeV 8.1200509 keV  7.810997 cm  8.6591247 m       World       hIoni
-   62  4.0721524 m  -1.5445348 m  -5.6172523 m   173.97395 MeV 24.262428 keV 18.624001 cm  8.8453647 m       World       hIoni
-   63  4.1096042 m  -1.5577922 m  -5.6507215 m   173.96477 MeV 7.8513243 keV 5.1947908 cm  8.8973126 m       World       hIoni
-   64  4.1296095 m   -1.564865 m  -5.6686048 m   173.95857 MeV  2.865603 keV 2.7749732 cm  8.9250623 m       World       hIoni
-   65    4.13762 m  -1.5677017 m  -5.6757672 m   173.95548 MeV 1.7650523 keV  1.111373 cm  8.9361761 m       World       hIoni
-   66  4.2480292 m  -1.6067659 m  -5.7743954 m   173.92801 MeV 24.406636 keV 15.311345 cm  9.0892895 m       World       hIoni
-   67  4.2745742 m  -1.6161545 m  -5.7980546 m   173.92345 MeV 3.5135087 keV 3.6776934 cm  9.1260665 m       World       hIoni
-   68  4.3357755 m  -1.6378352 m  -5.8525974 m   173.91109 MeV 10.909702 keV 8.4797245 cm  9.2108637 m       World       hIoni
-   69  4.3759794 m  -1.6520912 m  -5.8884517 m     173.902 MeV 7.0211632 keV 5.5723605 cm  9.2665873 m       World       hIoni
-   70   4.408382 m  -1.6635171 m  -5.9172695 m   173.88924 MeV 6.5714981 keV 4.4843602 cm  9.3114309 m       World       hIoni
-   71  4.5812546 m  -1.7243861 m  -6.0711199 m    173.8515 MeV 36.253084 keV 23.929054 cm  9.5507214 m       World       hIoni
-   72  4.5905594 m  -1.7276633 m  -6.0794152 m   173.84429 MeV  2.752259 keV 1.2889147 cm  9.5636106 m       World       hIoni
-   73  4.6337019 m  -1.7428138 m  -6.1178562 m   173.83596 MeV 6.8839667 keV  5.973714 cm  9.6233477 m       World       hIoni
-   74  4.6357656 m  -1.7435372 m  -6.1196942 m   173.83446 MeV 209.90374 eV  2.8566685 mm  9.6262044 m       World       hIoni
-   75  4.6803174 m  -1.7591557 m  -6.1593852 m   173.82515 MeV 9.3111772 keV 6.1678022 cm  9.6878824 m  OutOfWorld  Transportation
-Track (trackID 2, parentID 1) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.913405864539(mm),-0.5156926891835(mm),78.428166141977(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.834529(mm),2.162197(mm),79.323709(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5709,7 +5800,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.357322(mm),3.1211827(mm),79.0552(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.070099(mm),-2.4581846(mm),78.753191(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5718,7 +5809,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.390291(mm),1.0276397(mm),78.167752(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.118634(mm),2.6324(mm),79.273614(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5727,7 +5818,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.438607(mm),0.55207842(mm),78.688213(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.939492(mm),0.52748266(mm),78.952547(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5736,7 +5827,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.998235(mm),-1.5301109(mm),78.942189(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.874141(mm),-1.0517478(mm),78.43509(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5745,7 +5836,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.034435(mm),0.63829164(mm),78.406825(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.292397(mm),2.4415178(mm),79.066648(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5754,7 +5845,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.264756(mm),-1.465696(mm),78.542541(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.345613(mm),-2.6649287(mm),78.70461(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5765,7 +5856,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 490
-G4PrimaryTransformer::PrimaryVertex (-11.857366(mm),3.3489708(mm),79.143355(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.373004(mm),-0.9086343(mm),78.347127(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5774,7 +5865,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.132165(mm),0.11239883(mm),78.389593(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.616567(mm),-0.51170627(mm),79.362142(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5783,7 +5874,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.174895(mm),3.6929727(mm),78.911039(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.633654(mm),-0.81423002(mm),78.830148(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5792,7 +5883,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.92412(mm),-1.3145924(mm),78.602604(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.675667(mm),0.20142767(mm),78.999067(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5801,7 +5892,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.37464(mm),2.6806905(mm),78.875819(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.095654(mm),1.8238212(mm),78.219704(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5810,7 +5901,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.115484(mm),-2.4492931(mm),78.745188(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.564895(mm),-3.8608947(mm),78.842272(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5819,7 +5910,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.370788(mm),-2.6467251(mm),78.523844(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.005247(mm),-0.94203626(mm),78.588299(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5828,7 +5919,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.699827(mm),3.3476731(mm),78.994807(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.450244(mm),0.96205724(mm),78.333507(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5837,7 +5928,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.019926(mm),2.3499242(mm),79.114692(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.917428(mm),-2.4000294(mm),79.132765(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5846,7 +5937,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.854841(mm),-2.1958849(mm),78.262166(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.678167(mm),-1.9668316(mm),78.822299(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5857,7 +5948,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 500
-G4PrimaryTransformer::PrimaryVertex (-16.507678(mm),2.5843887(mm),78.32338(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.86942(mm),1.3853329(mm),78.259595(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5866,7 +5957,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.508493(mm),1.3889449(mm),79.028544(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.302791(mm),-2.6734133(mm),78.888488(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5875,7 +5966,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.668312(mm),-3.5046448(mm),78.471383(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.020751(mm),2.8577653(mm),78.585565(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5884,7 +5975,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.600618(mm),0.56543378(mm),78.659646(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.59701(mm),-0.7039302(mm),78.483955(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5893,7 +5984,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.047469(mm),-0.15175034(mm),78.2282(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.328755(mm),-2.9116033(mm),78.354929(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5902,7 +5993,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.283751(mm),-0.59975194(mm),79.420826(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.878246(mm),1.1295492(mm),78.434366(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5911,7 +6002,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.705597(mm),3.1859107(mm),78.464808(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.379383(mm),2.3022731(mm),79.05131(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5920,7 +6011,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.416227(mm),-0.94085676(mm),79.044813(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.508553(mm),1.1273292(mm),79.028534(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5929,7 +6020,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.062704(mm),-0.037869652(mm),79.283476(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.282808(mm),-0.97658691(mm),78.892011(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5938,7 +6029,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.850299(mm),-1.3047778(mm),78.262967(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.119765(mm),-2.6451678(mm),78.744433(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5949,7 +6040,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 510
-G4PrimaryTransformer::PrimaryVertex (-13.515382(mm),-2.254863(mm),78.851002(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.648154(mm),0.14292039(mm),78.29861(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5958,7 +6049,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.755759(mm),2.825769(mm),78.632291(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.989527(mm),-1.9827993(mm),78.591071(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5967,7 +6058,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.945797(mm),2.492662(mm),78.951436(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.141614(mm),0.50104893(mm),79.445889(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5976,7 +6067,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.327872(mm),1.8644461(mm),78.707738(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.761153(mm),1.9787363(mm),78.807666(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5985,7 +6076,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.131349(mm),-1.0520625(mm),78.918718(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.128753(mm),-0.43983666(mm),79.271829(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -5994,7 +6085,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.08785(mm),-0.68890675(mm),78.750061(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.231508(mm),3.5853898(mm),78.548403(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6003,7 +6094,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.545996(mm),-3.0528913(mm),79.198258(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.884885(mm),-1.8718479(mm),78.433195(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6012,7 +6103,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.856811(mm),-0.1349802(mm),78.438145(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.796553(mm),2.4716681(mm),78.625097(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6021,7 +6112,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.183889(mm),1.3131547(mm),79.438434(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.2028(mm),2.4254406(mm),78.906119(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6030,7 +6121,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.847538(mm),-2.6536131(mm),78.616107(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.570642(mm),-0.15057466(mm),79.193913(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6041,7 +6132,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 520
-G4PrimaryTransformer::PrimaryVertex (-16.539387(mm),-0.67060165(mm),78.317789(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.959356(mm),1.0587993(mm),79.125372(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6050,7 +6141,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.252494(mm),-2.5992405(mm),79.250011(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.535529(mm),3.4806485(mm),79.023777(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6059,7 +6150,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.145839(mm),1.4191503(mm),79.268817(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.395887(mm),-2.7947392(mm),78.519419(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6068,7 +6159,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.518774(mm),1.6622061(mm),78.321423(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.189952(mm),1.6698991(mm),78.379404(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6077,7 +6168,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.679378(mm),2.1709158(mm),78.293105(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.645723(mm),1.3176538(mm),78.82802(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6086,7 +6177,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.71572(mm),2.262466(mm),78.992004(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.974502(mm),-1.5182767(mm),78.946374(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6095,7 +6186,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.640942(mm),-1.8826991(mm),78.828863(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.211264(mm),1.2590856(mm),78.199319(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6104,7 +6195,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.394521(mm),2.3270939(mm),79.224967(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.89352(mm),-0.16516901(mm),78.784327(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6113,7 +6204,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.146217(mm),0.68662275(mm),79.092423(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.40926(mm),2.1088669(mm),78.693388(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6122,7 +6213,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.031357(mm),-0.49892761(mm),79.112676(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.216389(mm),2.989264(mm),78.374742(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6133,7 +6224,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 530
-G4PrimaryTransformer::PrimaryVertex (-11.817591(mm),-3.343794(mm),79.150369(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.589745(mm),0.67575736(mm),79.014217(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6142,7 +6233,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.686671(mm),3.063119(mm),78.997127(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.197589(mm),3.6702178(mm),78.907038(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6151,7 +6242,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.069522(mm),2.5766526(mm),78.753293(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.726743(mm),-0.52721307(mm),78.46108(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6160,7 +6251,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.090495(mm),-2.740217(mm),78.396941(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.946694(mm),-1.2406728(mm),78.951278(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6169,7 +6260,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.399016(mm),0.35514563(mm),78.518867(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.875094(mm),2.9927255(mm),78.434922(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6178,7 +6269,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.620196(mm),1.219658(mm),79.185175(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.481595(mm),-2.3729375(mm),78.680633(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6187,7 +6278,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.163265(mm),2.6532362(mm),79.089417(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.464804(mm),-0.71349863(mm),78.154613(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6196,7 +6287,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.868436(mm),0.12011183(mm),78.436096(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.904291(mm),-1.4286178(mm),78.782427(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6205,7 +6296,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.095498(mm),3.2945224(mm),78.396058(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.320335(mm),-2.6665542(mm),78.356413(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6214,7 +6305,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.655066(mm),-0.86252313(mm),79.179026(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.056811(mm),1.6842561(mm),78.931861(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6225,7 +6316,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 540
-G4PrimaryTransformer::PrimaryVertex (-17.4574(mm),-1.0136462(mm),78.155918(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.389124(mm),0.41137371(mm),79.402246(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6234,7 +6325,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.030771(mm),3.5740951(mm),78.760126(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.352866(mm),1.9193174(mm),79.232312(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6243,7 +6334,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.018606(mm),0.55427552(mm),78.585943(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.151466(mm),1.4153118(mm),78.738844(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6252,7 +6343,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.558362(mm),3.7293648(mm),78.667097(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.665009(mm),1.2429931(mm),78.824619(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6261,7 +6352,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.592759(mm),-3.6489408(mm),78.661032(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.210014(mm),0.81453752(mm),79.081174(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6270,7 +6361,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.489925(mm),2.2262699(mm),78.679164(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.089564(mm),-3.2850087(mm),78.926086(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6279,7 +6370,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.884891(mm),-0.38014444(mm),79.314829(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.012177(mm),-1.6852642(mm),79.292385(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6288,7 +6379,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.784247(mm),-2.5848604(mm),78.45094(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.816215(mm),-0.69088646(mm),78.974284(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6297,7 +6388,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.61734(mm),2.6978513(mm),78.833024(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.077092(mm),1.0365907(mm),78.928285(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6306,7 +6397,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.773444(mm),-1.270114(mm),79.158153(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.634273(mm),3.2265885(mm),78.830039(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6317,7 +6408,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 550
-G4PrimaryTransformer::PrimaryVertex (-16.074679(mm),0.49808889(mm),78.399729(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.921488(mm),-1.6484614(mm),78.779395(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6326,7 +6417,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.146209(mm),1.0578193(mm),78.739771(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.095295(mm),1.565985(mm),78.925075(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6335,7 +6426,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.195226(mm),2.9821219(mm),78.378474(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.492337(mm),0.60066835(mm),79.031393(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6344,7 +6435,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.931075(mm),-2.2438931(mm),78.601378(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.00601(mm),-2.1604449(mm),78.235511(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6353,7 +6444,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.914001(mm),-2.0336489(mm),78.957042(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.777554(mm),-0.27339604(mm),78.981101(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6362,7 +6453,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.811963(mm),1.7279655(mm),78.62238(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.462761(mm),-3.9161044(mm),78.683954(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6371,7 +6462,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.882787(mm),1.4788097(mm),78.609892(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.74288(mm),0.036472485(mm),78.987215(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6380,7 +6471,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.960784(mm),0.18214781(mm),78.243485(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.862504(mm),-2.1701634(mm),79.142449(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6389,7 +6480,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.445457(mm),3.3918645(mm),79.039659(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.189967(mm),3.7596611(mm),78.732055(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6398,7 +6489,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.89049(mm),0.17400537(mm),78.432207(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.452255(mm),1.2068098(mm),79.214787(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6409,7 +6500,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 560
-G4PrimaryTransformer::PrimaryVertex (-12.290662(mm),-1.054462(mm),79.066954(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.1926(mm),-1.7871375(mm),78.731591(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6418,7 +6509,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.921654(mm),-0.8243549(mm),78.955693(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.89603(mm),-3.1415638(mm),78.960211(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6427,7 +6518,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.967657(mm),1.8595243(mm),78.242273(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.826289(mm),1.7433802(mm),79.148835(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6436,7 +6527,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.773635(mm),-0.087352312(mm),79.334446(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.604268(mm),2.1909949(mm),78.306349(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6445,7 +6536,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.40734(mm),1.4651638(mm),78.870053(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.479821(mm),1.2346879(mm),79.386254(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6454,7 +6545,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.689298(mm),-0.048195119(mm),78.115028(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.872491(mm),-0.63338004(mm),79.317015(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6463,7 +6554,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.875224(mm),-1.0546549(mm),78.434899(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.304205(mm),-1.9563271(mm),78.182931(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6472,7 +6563,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.889464(mm),-0.69829161(mm),78.432388(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.830207(mm),2.7642745(mm),78.79549(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6481,7 +6572,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.726173(mm),1.9415101(mm),78.637507(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.641871(mm),3.2680003(mm),78.476045(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6490,7 +6581,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.592011(mm),2.4810432(mm),79.013818(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.423076(mm),-1.5160903(mm),78.514624(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6501,7 +6592,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 570
-G4PrimaryTransformer::PrimaryVertex (-16.388614(mm),-0.26911317(mm),78.344374(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.73499(mm),0.50865658(mm),79.164934(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6510,7 +6601,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.188333(mm),3.7480758(mm),78.556016(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.357762(mm),-1.3433668(mm),79.055122(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6519,7 +6610,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.025863(mm),-1.1128903(mm),79.289972(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.925173(mm),-2.1509191(mm),78.955072(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6528,7 +6619,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.323273(mm),2.8319355(mm),78.884876(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.616075(mm),-2.3581271(mm),79.009575(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6537,7 +6628,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.083219(mm),-0.24264627(mm),79.456185(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.913152(mm),-1.8716238(mm),78.251884(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6546,7 +6637,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.06717(mm),-2.9638754(mm),78.753707(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.213889(mm),-2.7715525(mm),78.904164(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6555,7 +6646,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.39681(mm),-0.1594942(mm),78.166602(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.754484(mm),-3.9673146(mm),78.808842(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6564,7 +6655,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.072467(mm),-2.3243359(mm),79.281754(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.212369(mm),-2.7540129(mm),78.728105(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6573,7 +6664,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.064353(mm),-2.18188(mm),79.106858(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.638438(mm),3.8077798(mm),78.652977(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6582,7 +6673,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.595136(mm),0.032240595(mm),78.83694(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.172803(mm),-1.1856721(mm),79.087735(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6593,7 +6684,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 580
-G4PrimaryTransformer::PrimaryVertex (-12.127537(mm),-0.64220789(mm),79.095717(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.004099(mm),-2.5133212(mm),79.293809(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6602,7 +6693,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.572015(mm),3.8426836(mm),78.841017(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.271238(mm),-3.3529574(mm),78.541398(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6611,7 +6702,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.728652(mm),-2.1918729(mm),79.166051(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.207785(mm),-0.49953371(mm),78.90524(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6620,16 +6711,192 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.863787(mm),-2.734354(mm),78.613242(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.952697(mm),0.83254988(mm),78.950219(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = pi+,   Track ID = 3,   Parent ID = 1
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -1.18 cm    537 um    7.3 cm   79.3 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1 -1.1333854 cm -2.9268875 mm  7.1260896 cm  68.560724 MeV 10.738314 MeV 3.9322222 mm  3.9322222 mm     Target       hIoni
+    2 -1.1262955 cm  -3.811502 mm  7.0863353 cm  66.027752 MeV 2.5329725 MeV 974.31895 um  4.9065412 mm     Target  Transportation
+    3 -28.313289 cm  1.9443537 cm         -2 m   66.027841 MeV2.2611152e-16 eV  5.6344329 m   5.6393394 m  CaptureMgnt  Transportation
+    4 -26.857048 cm  4.3888565 cm -2.0112315 m   66.021332 MeV  5.418496 keV 3.0590358 cm  5.6699298 m       World       hIoni
+    5 -25.235978 cm  7.1141216 cm -2.0237492 m   66.013083 MeV 8.2491843 keV 3.4090856 cm  5.7040206 m       World       hIoni
+    6 -22.707388 cm   11.34934 cm -2.0432185 m   65.990578 MeV 9.2157701 keV 5.3029623 cm  5.7570502 m       World       hIoni
+    7 -22.343346 cm  11.957213 cm -2.0460205 m   65.987277 MeV 1.6224674 keV 7.6193809 mm  5.7646696 m       World       hIoni
+    8  -18.39258 cm  18.541706 cm -2.0764327 m   65.968214 MeV   15.7666 keV 8.2591308 cm  5.8472609 m       World       hIoni
+    9 -16.479317 cm  21.738309 cm -2.0911707 m    65.95906 MeV 8.0260993 keV 4.0063623 cm  5.8873246 m       World       hIoni
+   10 -13.731463 cm  26.325024 cm -2.1123473 m   65.945417 MeV 10.901685 keV 5.7509286 cm  5.9448338 m       World       hIoni
+   11 -10.780408 cm    31.2439 cm -2.1351546 m       65.93 MeV 9.5949129 keV 6.1729904 cm  6.0065638 m       World       hIoni
+   12 -10.158059 cm  32.282971 cm -2.1399481 m   65.914406 MeV 2.3392857 keV 1.3025998 cm  6.0195897 m       World       hIoni
+   13 -9.5207498 cm  33.347744 cm -2.1448428 m   65.899166 MeV 3.7719384 keV 1.3339719 cm  6.0329295 m       World       hIoni
+   14 -6.8716547 cm  37.767931 cm -2.1651801 m   65.889432 MeV 8.7410462 keV 5.5400238 cm  6.0883297 m       World       hIoni
+   15 -6.3806419 cm  38.586502 cm -2.1689361 m   65.885051 MeV 2.9141106 keV 1.0257809 cm  6.0985875 m       World       hIoni
+   16 -6.3673901 cm  38.608582 cm -2.1690375 m    65.88063 MeV 21.480625 eV  276.76298 um  6.0988643 m       World       hIoni
+   17 -5.5010938 cm  40.051217 cm -2.1756716 m   65.874447 MeV  3.779194 keV 1.8088054 cm  6.1169523 m       World       hIoni
+   18 -4.9841052 cm  40.912303 cm -2.1796277 m   65.869735 MeV 2.3436462 keV 1.0794696 cm   6.127747 m       World       hIoni
+   19  5.3685622 mm  50.112031 cm -2.2220542 m   65.847269 MeV 20.793045 keV 11.537606 cm  6.2431231 m       World       hIoni
+   20  3.7363022 cm  55.450379 cm -2.2466422 m   65.835056 MeV  11.17647 keV 6.6918006 cm  6.3100411 m       World       hIoni
+   21  17.322036 cm  78.160574 cm -2.3511132 m   65.785148 MeV 49.907765 keV  28.45122 cm  6.5945533 m       World       Decay
+Track (trackID 3, parentID 1) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = mu+,   Track ID = 33,   Parent ID = 3
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0   17.3 cm   78.2 cm  -2.35 m      27 MeV     0 eV      0 fm      0 fm      World    initStep
+    1  18.080544 cm  80.082984 cm -2.3609389 m    27.01302 MeV 7.6423372 keV   2.28833 cm    2.28833 cm      World      muIoni
+    2  18.186479 cm  80.352776 cm -2.3623132 m   27.005069 MeV  905.1135 eV  3.2077387 mm  2.6091038 cm      World      muIoni
+    3  19.730693 cm  84.257157 cm -2.3821898 m   26.996704 MeV 8.3653584 keV 4.6454425 cm  7.2545464 cm      World      muIoni
+    4  20.304249 cm  85.673496 cm  -2.389426 m    26.98406 MeV 4.6144195 keV 1.6907444 cm  8.9452907 cm      World      muIoni
+    5  20.453759 cm  86.042573 cm -2.3913165 m   26.982252 MeV 392.11432 eV  4.4080891 mm  9.3860996 cm      World      muIoni
+    6  21.050547 cm  87.521539 cm -2.3988858 m   26.976549 MeV 4.5835989 keV 1.7653448 cm  11.151444 cm      World      muIoni
+    7  22.019861 cm  89.925854 cm -2.4110453 m   26.965989 MeV 8.8034016 keV 2.8633731 cm  14.014818 cm      World      muIoni
+    8  23.042641 cm   92.45569 cm -2.4237404 m    26.95606 MeV  8.352818 keV 3.0096207 cm  17.024438 cm      World      muIoni
+    9    23.8539 cm  94.449086 cm -2.4337629 m   26.946618 MeV 7.3745533 keV 2.3740873 cm  19.398526 cm      World      muIoni
+   10  24.415895 cm  95.826166 cm -2.4406955 m   26.940787 MeV 4.0801337 keV 1.6409745 cm    21.0395 cm      World      muIoni
+   11  26.458521 cm  1.0079675 m  -2.4656239 m   26.921383 MeV 16.863788 keV 5.9240225 cm  26.963523 cm      World      muIoni
+   12  28.367398 cm  1.0539733 m  -2.4884374 m   26.906048 MeV 13.566314 keV 5.4784888 cm  32.442011 cm      World      muIoni
+   13  28.533184 cm  1.0579918 m  -2.4904281 m   26.903354 MeV 1.2143927 keV 4.7812106 mm  32.920132 cm      World      muIoni
+   14  29.234723 cm  1.0749354 m  -2.4988245 m    26.89675 MeV  6.604757 keV 2.0169285 cm  34.937061 cm      World      muIoni
+   15  30.759105 cm  1.1112566 m  -2.5173811 m   26.884264 MeV 12.485208 keV 4.3543285 cm   39.29139 cm      World      muIoni
+   16  31.052191 cm  1.1182614 m  -2.5209959 m    26.87781 MeV 1.6762828 keV 8.4098092 mm   40.13237 cm      World      muIoni
+   17  33.045216 cm  1.1658624 m  -2.5456789 m   26.861241 MeV 16.568924 keV 5.7204292 cm    45.8528 cm      World      muIoni
+   18  38.308758 cm  1.2912869 m  -2.6110905 m   26.819417 MeV 41.823253 keV 15.093332 cm  60.946132 cm      World      muIoni
+   19  39.687886 cm  1.3243261 m  -2.6283097 m   26.798276 MeV 13.054162 keV 3.9727764 cm  64.918908 cm      World      muIoni
+   20  39.798973 cm  1.3269873 m  -2.6296909 m   26.796384 MeV 572.59117 eV  3.1974019 mm  65.238648 cm      World      muIoni
+   21  43.086522 cm   1.406341 m  -2.6707415 m   26.769955 MeV 25.391201 keV  9.520004 cm  74.758652 cm      World      muIoni
+   22  44.968781 cm  1.4516971 m   -2.694008 m    26.72583 MeV 13.316047 keV 5.4339817 cm  80.192634 cm      World      muIoni
+   23  47.529464 cm  1.5131164 m   -2.725759 m   26.704012 MeV 20.308526 keV 7.3730657 cm    87.5657 cm      World      muIoni
+   24  47.709088 cm  1.5174795 m  -2.7279874 m   26.696529 MeV 1.3993068 keV 5.2180927 mm  88.087509 cm      World      muIoni
+   25  48.858072 cm  1.5454227 m  -2.7422551 m   26.686738 MeV 8.5261827 keV 3.3412741 cm  91.428783 cm      World      muIoni
+   26  49.144255 cm  1.5523805 m  -2.7458275 m   26.684404 MeV 1.3176641 keV  8.328444 mm  92.261627 cm      World      muIoni
+   27  49.232599 cm  1.5545306 m  -2.7469299 m   26.681489 MeV 1.5478775 keV 2.5727346 mm  92.518901 cm      World      muIoni
+   28  50.550077 cm   1.586647 m  -2.7634169 m   26.669734 MeV 8.9424447 keV 3.8429919 cm  96.361893 cm      World      muIoni
+   29  51.583776 cm  1.6118748 m   -2.776413 m   26.663033 MeV 6.7007351 keV 3.0202571 cm   99.38215 cm      World      muIoni
+   30  51.608719 cm  1.6124833 m  -2.7767271 m   26.660422 MeV 145.38909 eV  728.87825 um  99.455038 cm      World      muIoni
+   31  53.735564 cm  1.6645173 m  -2.8036465 m   26.641585 MeV 18.837069 keV 6.2326218 cm  1.0568766 m       World      muIoni
+   32  53.858726 cm  1.6675328 m  -2.8052145 m   26.639195 MeV 1.3065853 keV 3.6150146 mm  1.0604916 m       World      muIoni
+   33  54.120787 cm  1.6739466 m  -2.8085523 m   26.637067 MeV  2.128452 keV 7.6906574 mm  1.0681823 m       World      muIoni
+   34   56.25501 cm  1.7259308 m  -2.8356836 m   26.617194 MeV 19.872655 keV 6.2401709 cm   1.130584 m       World      muIoni
+   35  57.753299 cm   1.762542 m  -2.8546293 m    26.59482 MeV 14.969177 keV 4.3861381 cm  1.1744454 m       World      muIoni
+   36  57.784907 cm  1.7633165 m  -2.8550298 m   26.589238 MeV 1.0519928 keV 927.41863 um  1.1753728 m       World      muIoni
+   37  58.664484 cm  1.7848064 m  -2.8661656 m   26.576722 MeV 9.3980994 keV 2.5752423 cm  1.2011252 m       World      muIoni
+   38  59.401453 cm  1.8028525 m   -2.875527 m    26.56865 MeV 6.8942153 keV 2.1624342 cm  1.2227495 m       World      muIoni
+   39  60.216826 cm  1.8227478 m  -2.8858772 m   26.561279 MeV 6.1108523 keV 2.3862856 cm  1.2466124 m       World      muIoni
+   40  61.312738 cm  1.8495684 m   -2.899868 m    26.55329 MeV 6.7571265 keV 3.2174392 cm  1.2787868 m       World      muIoni
+   41  62.778752 cm   1.885337 m  -2.9185345 m   26.540372 MeV  12.91873 keV 4.2927356 cm  1.3217141 m       World      muIoni
+   42  63.404153 cm  1.9005222 m  -2.9264544 m   26.534497 MeV  3.682812 keV 1.8232563 cm  1.3399467 m       World      muIoni
+   43  65.268293 cm  1.9462857 m  -2.9503541 m   26.510897 MeV 16.078373 keV 5.4890958 cm  1.3948377 m       World      muIoni
+   44  69.721505 cm  2.0578492 m  -3.0091965 m   26.471489 MeV 39.408754 keV 13.376179 cm  1.5285995 m       World      muIoni
+   45  72.804921 cm  2.1359853 m  -3.0504838 m   26.438184 MeV 27.658743 keV 9.3598725 cm  1.6221982 m       World      muIoni
+   46  73.590944 cm  2.1559457 m   -3.060962 m   26.430144 MeV 6.1555044 keV 2.3874563 cm  1.6460727 m       World      muIoni
+   47   76.32497 cm  2.2251121 m  -3.0971644 m   26.400473 MeV 27.092712 keV 8.2717334 cm  1.7287901 m       World      muIoni
+   48   77.27409 cm  2.2490262 m  -3.1096179 m   26.391596 MeV 7.8099145 keV 2.8584243 cm  1.7573743 m       World      muIoni
+   49  78.393622 cm   2.277361 m  -3.1243638 m   26.378041 MeV 11.314782 keV 3.3847311 cm  1.7912216 m       World      muIoni
+   50  78.978177 cm  2.2921816 m  -3.1320817 m   26.371158 MeV 5.0916046 keV 1.7702763 cm  1.8089244 m       World      muIoni
+   51  79.471293 cm  2.3046867 m  -3.1385632 m   26.363518 MeV 5.4872671 keV 1.4923223 cm  1.8238476 m       World      muIoni
+   52  80.068278 cm   2.319782 m  -3.1463631 m   26.356031 MeV 5.3512497 keV 1.8009616 cm  1.8418572 m       World      muIoni
+   53  80.787958 cm  2.3379891 m   -3.155797 m   26.347676 MeV 7.1818327 keV 2.1732306 cm  1.8635895 m       World      muIoni
+   54  80.798871 cm  2.3382652 m  -3.1559405 m   26.339948 MeV 26.490582 eV  329.71631 um  1.8639193 m       World      muIoni
+   55  82.200117 cm  2.3732959 m   -3.174058 m   26.325164 MeV 10.326134 keV 4.1854442 cm  1.9057737 m       World      muIoni
+   56  82.436256 cm  2.3790797 m  -3.1770211 m    26.32454 MeV 623.69423 eV  6.9144311 mm  1.9126881 m       World      muIoni
+   57  82.757225 cm  2.3869457 m   -3.181049 m   26.320253 MeV 3.2590343 keV 9.4021116 mm  1.9220902 m       World      muIoni
+   58  83.580655 cm  2.4071146 m  -3.1914014 m   26.309251 MeV 8.7168927 keV 2.4119741 cm    1.94621 m       World      muIoni
+   59  84.618958 cm  2.4330909 m  -3.2047274 m   26.297622 MeV 9.9037038 keV  3.098651 cm  1.9771965 m       World      muIoni
+   60  85.198325 cm  2.4476437 m    -3.21216 m    26.29423 MeV 2.2622895 keV 1.7337667 cm  1.9945342 m       World      muIoni
+   61  87.599526 cm  2.5078347 m  -3.2428833 m   26.271907 MeV 19.986375 keV 7.1718099 cm  2.0662523 m       World      muIoni
+   62  87.971807 cm  2.5172542 m  -3.2476919 m   26.269632 MeV 2.2745927 keV 1.1212032 cm  2.0774643 m       World      muIoni
+   63  90.051764 cm  2.5704761 m  -3.2747048 m   26.252134 MeV 15.704718 keV 6.3205344 cm  2.1406696 m       World      muIoni
+   64  91.541196 cm  2.6089619 m  -3.2940745 m   26.237245 MeV 13.161845 keV 4.5587191 cm  2.1862568 m       World      muIoni
+   65  92.116975 cm  2.6238364 m  -3.3015573 m   26.232093 MeV 3.9337133 keV 1.7618079 cm  2.2038749 m       World      muIoni
+   66  93.508678 cm  2.6596774 m  -3.3195628 m   26.201106 MeV 10.935377 keV 4.2455455 cm  2.2463304 m       World      muIoni
+   67  95.553322 cm  2.7121305 m  -3.3459515 m    26.18269 MeV   18.4154 keV 6.2175316 cm  2.3085057 m       World      muIoni
+   68   98.32101 cm  2.7833307 m  -3.3817149 m   26.156201 MeV  25.39121 keV  8.434789 cm  2.3928536 m       World      muIoni
+   69  98.519743 cm  2.7884548 m  -3.3842968 m   26.152593 MeV 2.4689612 keV  6.072255 mm  2.3989258 m       World      muIoni
+   70  99.020399 cm  2.8013639 m  -3.3908207 m   26.137945 MeV 6.7531898 keV 1.5305906 cm  2.4142317 m       World      muIoni
+   71  99.579994 cm  2.8157088 m  -3.3980986 m   26.134492 MeV 3.4524582 keV 1.7031149 cm  2.4312629 m       World      muIoni
+   72  1.0006554 m   2.8281397 m  -3.4044247 m   26.129112 MeV  5.380688 keV 1.4768969 cm  2.4460318 m       World      muIoni
+   73  1.0082753 m   2.8476252 m  -3.4143007 m    26.12022 MeV 7.2486951 keV 2.3136165 cm   2.469168 m       World      muIoni
+   74  1.0244397 m   2.8890699 m  -3.4351277 m   26.105156 MeV  13.78284 keV 4.9119509 cm  2.5182875 m       World      muIoni
+   75  1.0319616 m   2.9082939 m  -3.4447547 m   26.097558 MeV 5.9725481 keV 2.2777664 cm  2.5410652 m       World      muIoni
+   76  1.0427959 m   2.9358753 m  -3.4585741 m   26.088474 MeV   6.91067 keV 3.2697041 cm  2.5737622 m       World      muIoni
+   77  1.0431081 m   2.9366675 m  -3.4589718 m   26.088326 MeV 147.91619 eV  939.74129 um   2.574702 m       World      muIoni
+   78  1.0523157 m   2.9600165 m   -3.470663 m   26.075915 MeV 9.7579093 keV 2.7688317 cm  2.6023903 m       World      muIoni
+   79  1.0555006 m    2.968042 m  -3.4746698 m   26.069788 MeV 3.4749059 keV  9.518745 mm   2.611909 m       World      muIoni
+   80  1.0754157 m   3.0181732 m  -3.4997201 m   26.042687 MeV 16.643625 keV 5.9475143 cm  2.6713842 m       World      muIoni
+   81  1.0787813 m   3.0267138 m  -3.5040042 m   26.038506 MeV 2.1083696 keV 1.0130288 cm  2.6815145 m       World      muIoni
+   82  1.0794981 m   3.0285353 m  -3.5049213 m   26.036247 MeV  1.149749 keV 2.1616276 mm  2.6836761 m       World      muIoni
+   83  1.1023553 m   3.0866089 m  -3.5340376 m   26.009571 MeV 21.490868 keV 6.8867907 cm   2.752544 m       World      muIoni
+   84  1.1029324 m   3.0880747 m  -3.5347677 m   26.007826 MeV 314.89223 eV  1.7362605 mm  2.7542803 m       World      muIoni
+   85  1.1156323 m   3.1203368 m  -3.5508357 m   25.993167 MeV  13.51007 keV 3.8214084 cm  2.7924943 m       World      muIoni
+   86  1.1271736 m   3.1495639 m  -3.5652789 m   25.977128 MeV  9.059652 keV 3.4583796 cm  2.8270781 m       World      muIoni
+   87  1.1449941 m   3.1942742 m  -3.5875212 m   25.954197 MeV 13.422948 keV 5.3021817 cm  2.8800999 m       World      muIoni
+   88  1.1650338 m    3.244363 m   -3.612743 m   25.938418 MeV 14.755322 keV 5.9553703 cm  2.9396537 m       World      muIoni
+   89   1.180577 m   3.2830837 m  -3.6322701 m    25.92401 MeV 13.351704 keV 4.6067359 cm   2.985721 m       World      muIoni
+   90  1.2096997 m   3.3543178 m  -3.6684172 m   25.894243 MeV 22.770367 keV 8.5024108 cm  3.0707451 m       World      muIoni
+   91  1.2151632 m   3.3675031 m  -3.6751217 m    25.89026 MeV 2.8176622 keV 1.5768685 cm  3.0865138 m       World      muIoni
+   92  1.2352546 m    3.415965 m  -3.6999309 m   25.873955 MeV 13.702288 keV 5.8032235 cm   3.144546 m       World      muIoni
+   93  1.2401513 m   3.4277945 m  -3.7059949 m   25.866298 MeV 3.6109651 keV 1.4166415 cm  3.1587125 m       World      muIoni
+   94  1.2439677 m   3.4370229 m  -3.7107244 m   25.859962 MeV 3.5224966 keV 1.1049736 cm  3.1697622 m       World      muIoni
+   95  1.2625971 m   3.4820775 m   -3.733766 m   25.843222 MeV 13.162942 keV 5.3925019 cm  3.2236872 m       World      muIoni
+   96  1.3215051 m   3.6249709 m   -3.808169 m   25.771968 MeV 54.229107 keV 17.153734 cm  3.3952245 m       World      muIoni
+   97  1.3257117 m   3.6351634 m  -3.8134798 m   25.762475 MeV 4.8086948 keV 1.2238802 cm  3.4074634 m       World      muIoni
+   98  1.3297429 m   3.6448345 m  -3.8185407 m   25.757938 MeV 2.7108698 keV 1.1635912 cm  3.4190993 m       World      muIoni
+   99   1.335136 m    3.657729 m  -3.8252932 m   25.736539 MeV 3.6049283 keV 1.5522554 cm  3.4346218 m       World      muIoni
+  100  1.3442868 m   3.6795584 m  -3.8367115 m   25.726937 MeV 7.8151836 keV 2.6280045 cm  3.4609019 m       World      muIoni
+  101  1.3601078 m   3.7173666 m  -3.8564658 m   25.708478 MeV 13.531463 keV 4.5497239 cm  3.5063991 m       World      muIoni
+  102  1.3636772 m   3.7259008 m  -3.8609297 m   25.702735 MeV 3.3665656 keV 1.0271318 cm  3.5166704 m       World      muIoni
+  103  1.3684387 m   3.7373309 m  -3.8668986 m   25.694206 MeV 3.9851769 keV 1.3745817 cm  3.5304162 m       World      muIoni
+  104  1.3700066 m   3.7410814 m  -3.8688568 m   25.692234 MeV  946.3338 eV  4.5121252 mm  3.5349284 m       World      muIoni
+  105  1.3769523 m   3.7577337 m   -3.877545 m   25.682495 MeV  5.823582 keV 2.0025617 cm   3.554954 m       World      muIoni
+  106  1.3972054 m   3.8059984 m  -3.9028006 m   25.664657 MeV 16.517719 keV 5.8116611 cm  3.6130706 m       World      muIoni
+  107  1.4010163 m   3.8150306 m  -3.9075361 m   25.659595 MeV 3.0402321 keV 1.0887083 cm  3.6239577 m       World      muIoni
+  108  1.4402986 m   3.9082675 m   -3.956294 m   25.616658 MeV 30.915975 keV 11.231081 cm  3.7362685 m       World      muIoni
+  109  1.4535366 m   3.9396304 m  -3.9726962 m   25.601355 MeV 13.939482 keV 3.7787697 cm  3.7740562 m       World      muIoni
+  110  1.4678693 m   3.9734105 m  -3.9902875 m   25.589552 MeV 11.802802 keV 4.0693821 cm    3.81475 m       World      muIoni
+  111  1.4716907 m   3.9824469 m  -3.9949868 m   25.585476 MeV 4.0761241 keV 1.0878576 cm  3.8256286 m       World      muIoni
+  112   1.523455 m   4.1055231 m  -4.0586659 m   25.541448 MeV 41.094504 keV 14.792804 cm  3.9735566 m       World      muIoni
+  113  1.5264711 m   4.1126454 m  -4.0623313 m   25.538143 MeV 2.2343039 keV 8.5592055 mm  3.9821158 m       World      muIoni
+  114  1.5304399 m   4.1220463 m  -4.0671679 m   25.532901 MeV 3.6056225 keV 1.1292471 cm  3.9934083 m       World      muIoni
+  115  1.5337727 m   4.1299449 m  -4.0712248 m   25.528438 MeV 2.0788109 keV 9.4844064 mm  4.0028927 m       World      muIoni
+  116  1.5338045 m   4.1300199 m  -4.0712634 m   25.525897 MeV         0 eV  90.138376 um  4.0029828 m       World      muIoni
+  117  1.5435885 m   4.1532016 m  -4.0832301 m    25.51499 MeV 8.8522372 keV 2.7862581 cm  4.0308454 m       World      muIoni
+  118   1.558989 m   4.1897776 m  -4.1021362 m   25.501346 MeV 11.578013 keV 4.3959424 cm  4.0748048 m       World      muIoni
+  119  1.5599194 m   4.1920038 m  -4.1032806 m   25.500593 MeV 752.73241 eV  2.6703877 mm  4.0774752 m       World      muIoni
+  120  1.5815657 m   4.2436251 m  -4.1300102 m   25.484008 MeV 15.573864 keV 6.2030844 cm  4.1395061 m       World      muIoni
+  121  1.5900512 m   4.2636971 m   -4.140412 m   25.473103 MeV 6.8248773 keV 2.4147175 cm  4.1636533 m       World      muIoni
+  122  1.5945511 m   4.2743338 m  -4.1459386 m   25.467769 MeV 4.2901686 keV  1.280353 cm  4.1764568 m       World      muIoni
+  123  1.6027858 m   4.2939375 m  -4.1561283 m   25.460648 MeV 5.9852857 keV 2.3578538 cm  4.2000353 m       World      muIoni
+  124  1.6199415 m   4.3346236 m  -4.1774707 m   25.442194 MeV 16.115537 keV 4.9042677 cm   4.249078 m       World      muIoni
+  125  1.6248604 m   4.3462701 m   -4.183547 m   25.436643 MeV 4.1214849 keV 1.4027167 cm  4.2631052 m       World      muIoni
+  126  1.6521608 m   4.4105546 m   -4.217068 m   25.411219 MeV 21.062058 keV 7.7469398 cm  4.3405746 m       World      muIoni
+  127  1.6544778 m   4.4160362 m  -4.2199349 m   25.402854 MeV 1.1100807 keV 6.6057348 mm  4.3471803 m       World      muIoni
+  128  1.6550979 m   4.4175058 m  -4.2207058 m   25.395061 MeV 517.35398 eV   1.771583 mm  4.3489519 m       World      muIoni
+  129  1.6793423 m   4.4747315 m  -4.2510015 m   25.373659 MeV   18.8163 keV 6.9140686 cm  4.4180926 m       World      muIoni
+  130  1.6886839 m   4.4967053 m  -4.2626285 m   25.365121 MeV 7.0532143 keV 2.6557599 cm  4.4446502 m       World      muIoni
+  131  1.6908777 m   4.5019048 m  -4.2653807 m   25.362132 MeV 1.8517559 keV 6.2786418 mm  4.4509288 m       World      muIoni
+  132   1.713531 m    4.555394 m  -4.2939436 m   25.341927 MeV 18.818776 keV 6.4731322 cm  4.5156601 m       World      muIoni
+  133  1.7172654 m   4.5641958 m  -4.2986583 m   25.336604 MeV 3.7182307 keV 1.0660489 cm  4.5263206 m       World      muIoni
+  134  1.7274306 m   4.5882048 m   -4.311543 m   25.327721 MeV 8.8835312 keV 2.9082237 cm  4.5554029 m       World      muIoni
+  135  1.7289882 m   4.5918807 m  -4.3135112 m   25.324596 MeV 920.15275 eV  4.4511572 mm   4.559854 m       World      muIoni
+  136   1.731469 m   4.5977302 m  -4.3166415 m   25.321224 MeV 2.1041302 keV 7.0830219 mm   4.566937 m       World      muIoni
+  137  1.7344111 m   4.6046609 m  -4.3203486 m   25.308847 MeV 3.6602005 keV 8.3924614 mm  4.5753295 m       World      muIoni
+  138  1.7562756 m   4.6559409 m  -4.3477984 m   25.287573 MeV 18.140243 keV 6.2138669 cm  4.6374682 m       World      muIoni
+  139  1.7655885 m   4.6778945 m  -4.3595649 m   25.280607 MeV 6.9658934 keV  2.659215 cm  4.6640603 m  OutOfWorld  Transportation
+Track (trackID 33, parentID 3) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.961319(mm),-3.2433522(mm),78.596045(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.709590927529(mm),-0.77112963325333(mm),78.993085156569(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6638,7 +6905,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.433592(mm),-2.7019462(mm),78.336443(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.749871(mm),-1.3556878(mm),79.16231(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6647,7 +6914,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.269872(mm),2.6517744(mm),78.894292(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.666169(mm),1.9721048(mm),78.648088(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6656,7 +6923,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.618747(mm),-1.5760295(mm),78.303796(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.329096(mm),-1.1077042(mm),79.412831(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6665,7 +6932,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.950753(mm),-2.3718161(mm),78.421581(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.634958(mm),2.0439249(mm),78.477264(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6674,7 +6941,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.839439(mm),-1.8872265(mm),78.617536(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.173703(mm),1.4370436(mm),78.205942(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6685,7 +6952,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 590
-G4PrimaryTransformer::PrimaryVertex (-13.443629(mm),-2.2391513(mm),78.863655(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.179624(mm),-3.490084(mm),79.086533(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6694,7 +6961,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.190427(mm),-2.6427041(mm),79.084628(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.186331(mm),-2.1967161(mm),78.556369(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6703,7 +6970,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.834066(mm),-1.1873173(mm),78.971137(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.381522(mm),1.361918(mm),78.698279(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6712,7 +6979,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.798332(mm),2.6147157(mm),78.624784(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.170368(mm),-2.1597103(mm),78.382857(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6721,7 +6988,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.459054(mm),-0.232388(mm),78.860935(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.21587(mm),1.9103285(mm),79.256468(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6730,7 +6997,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.781771(mm),0.64313269(mm),78.451377(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.4484(mm),0.55220905(mm),78.333832(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6739,7 +7006,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.175152(mm),1.6747392(mm),78.55834(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.761986(mm),1.9947427(mm),78.983846(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6748,7 +7015,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.871828(mm),-1.9167045(mm),79.140805(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.036838(mm),1.3456769(mm),78.582729(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6757,7 +7024,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.245155(mm),-0.78430029(mm),79.074978(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.868508(mm),-1.5957363(mm),79.141391(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6766,7 +7033,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.39119(mm),1.6109254(mm),79.049228(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.57685(mm),-0.19563012(mm),78.663837(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6777,7 +7044,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 600
-G4PrimaryTransformer::PrimaryVertex (-11.69644(mm),1.8509988(mm),79.171731(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.778298(mm),2.5203601(mm),78.451989(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6786,7 +7053,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.626053(mm),-2.0550411(mm),78.655161(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.588861(mm),-0.14523867(mm),79.1907(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6795,7 +7062,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.553326(mm),-0.027492482(mm),78.491658(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.57062(mm),-2.8231621(mm),79.01759(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6804,7 +7071,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.013735(mm),3.2816559(mm),78.939456(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.687628(mm),3.0903806(mm),78.467977(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6813,7 +7080,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.833623(mm),-3.3978059(mm),78.971215(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.859864(mm),1.1939593(mm),78.437607(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6822,7 +7089,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.349589(mm),-0.80113344(mm),78.351255(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.839289(mm),-2.5572769(mm),78.441235(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6831,7 +7098,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.10706(mm),3.2280203(mm),78.746674(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.664904(mm),2.4148814(mm),78.648311(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6840,7 +7107,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.239578(mm),-3.254472(mm),78.54698(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.99446(mm),-2.2670367(mm),78.237547(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6849,7 +7116,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.182118(mm),-1.943168(mm),78.204458(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.877975(mm),2.5431727(mm),79.139722(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6858,7 +7125,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.255667(mm),-3.1751068(mm),78.896797(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.279437(mm),-1.9018525(mm),79.24526(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6869,7 +7136,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 610
-G4PrimaryTransformer::PrimaryVertex (-15.714587(mm),-3.3267832(mm),78.463223(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.659376(mm),-2.3303237(mm),78.649285(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6878,7 +7145,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.808534(mm),-0.2410171(mm),78.270331(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.829892(mm),-0.091627888(mm),78.090238(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6887,7 +7154,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.457226(mm),1.6720428(mm),78.155949(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.146907(mm),1.0584609(mm),79.444955(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6896,7 +7163,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.398068(mm),2.0308908(mm),78.519034(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.085509(mm),-2.691176(mm),78.574147(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6905,7 +7172,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.062165(mm),1.2920419(mm),79.107244(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.853053(mm),0.66654091(mm),78.791462(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6914,7 +7181,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.660774(mm),1.2647565(mm),79.354347(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.217057(mm),0.35807359(mm),79.079932(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6923,7 +7190,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.834155(mm),2.6566227(mm),78.618467(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.868198(mm),0.78473525(mm),78.965118(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6932,7 +7199,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.661569(mm),0.89584513(mm),79.001553(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.489554(mm),-2.6680348(mm),79.208211(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6941,7 +7208,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.739357(mm),0.49163875(mm),78.635183(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.548553(mm),2.7782975(mm),78.668827(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6950,7 +7217,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.06367(mm),1.7609844(mm),78.401671(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.632969(mm),-1.9663542(mm),78.301288(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6961,7 +7228,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 620
-G4PrimaryTransformer::PrimaryVertex (-16.374506(mm),1.6320572(mm),78.346862(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.618747(mm),-1.5760295(mm),78.303796(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6970,7 +7237,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.806385(mm),-1.6854858(mm),79.328672(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.950753(mm),-2.3718161(mm),78.421581(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6979,7 +7246,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.868313(mm),2.1561159(mm),79.317752(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.839439(mm),-1.8872265(mm),78.617536(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6988,7 +7255,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.539508(mm),-0.18173122(mm),78.494094(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.461072(mm),-0.47003146(mm),78.331598(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -6997,7 +7264,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.216114(mm),3.3184242(mm),78.727444(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.262803(mm),-2.2882151(mm),79.071866(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7006,7 +7273,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.286439(mm),0.33638027(mm),78.36239(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.803926(mm),-1.4536996(mm),78.271143(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7015,7 +7282,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.974894(mm),0.7080685(mm),79.122632(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.929015(mm),-0.4887053(mm),79.130722(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7024,7 +7291,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.962778(mm),1.6644031(mm),79.124768(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.286686(mm),-0.12221183(mm),79.243982(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7033,7 +7300,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.53068(mm),0.45942266(mm),78.495651(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.002535(mm),2.0567257(mm),78.941431(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7042,7 +7309,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.184977(mm),-0.59224948(mm),78.380281(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.88517(mm),0.26513751(mm),78.785799(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7053,7 +7320,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 630
-G4PrimaryTransformer::PrimaryVertex (-14.190997(mm),0.093805885(mm),78.731873(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.77702(mm),-2.1905816(mm),79.33385(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7062,7 +7329,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.299846(mm),-2.1979429(mm),78.71268(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.565954(mm),-0.010794906(mm),78.489431(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7071,7 +7338,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.614724(mm),-1.6350444(mm),78.833486(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.482674(mm),0.14935373(mm),79.033097(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7080,7 +7347,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.877103(mm),-0.12059873(mm),78.25824(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.175787(mm),0.96619244(mm),78.558228(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7089,7 +7356,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.589665(mm),-0.041010162(mm),78.132596(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.858222(mm),1.2301828(mm),78.26157(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7098,7 +7365,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.522356(mm),-1.7902023(mm),79.378754(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.237956(mm),-0.75590749(mm),78.194612(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7107,7 +7374,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.449795(mm),3.7180489(mm),78.68624(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.422193(mm),-3.4481772(mm),79.043761(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7116,7 +7383,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.115705(mm),1.7020608(mm),78.568822(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.992427(mm),-0.41634078(mm),78.59056(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7125,7 +7392,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.697677(mm),-2.4547402(mm),78.466205(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.841156(mm),1.8110195(mm),78.440906(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7134,7 +7401,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.261281(mm),0.4834413(mm),79.248461(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.012754(mm),-1.7319673(mm),78.586975(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7145,7 +7412,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 640
-G4PrimaryTransformer::PrimaryVertex (-10.927806(mm),-2.6051119(mm),79.307262(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.799209(mm),1.9471195(mm),79.15361(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7154,7 +7421,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.269761(mm),-0.52642616(mm),78.894312(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.358422(mm),1.8010471(mm),78.526025(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7163,7 +7430,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.267416(mm),-0.10994865(mm),79.071052(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.322373(mm),-2.5342773(mm),78.708708(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7172,7 +7439,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.78858(mm),3.1038226(mm),78.626503(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.879082(mm),-2.8874794(mm),79.139526(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7181,7 +7448,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.071462(mm),-0.063779809(mm),78.576624(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.731172(mm),-0.27808962(mm),78.812953(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7190,7 +7457,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.344082(mm),-0.57709275(mm),78.352226(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.647247(mm),2.4872212(mm),78.29877(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7199,7 +7466,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.626798(mm),3.3839158(mm),78.65503(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.227343(mm),0.24523993(mm),78.549138(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7208,7 +7475,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.076043(mm),2.5730301(mm),78.575816(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.650054(mm),1.1806994(mm),78.298275(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7217,7 +7484,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.393949(mm),2.3949003(mm),78.872414(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.996404(mm),2.7380981(mm),78.766185(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7226,7 +7493,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.991479(mm),0.32835436(mm),79.119708(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.18813(mm),0.75869155(mm),79.085033(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7237,7 +7504,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 650
-G4PrimaryTransformer::PrimaryVertex (-11.860419(mm),-1.5411938(mm),79.142817(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.58103(mm),-1.619614(mm),78.310446(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7246,7 +7513,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.669277(mm),2.5491386(mm),79.176521(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.130658(mm),-0.9633977(mm),79.271494(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7255,16 +7522,41 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.417649(mm),0.5532849(mm),79.220889(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.051706(mm),-2.8905558(mm),79.109088(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = pi+,   Track ID = 11,   Parent ID = 1
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -1.18 cm   -2.9 mm   7.76 cm   5.84 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1 -1.1768306 cm -2.8230786 mm   7.744837 cm  2.8245291 MeV 3.0115489 MeV 177.14818 um  177.14818 um     Target       hIoni
+    2 -1.1773763 cm -2.7660998 mm  7.7436883 cm  432.21937 keV 2.3923097 MeV 72.440423 um   249.5886 um     Target       hIoni
+    3 -1.1772099 cm -2.7663375 mm  7.7436934 cm  40.814616 keV 391.40475 keV 3.8934794 um  253.48208 um     Target       hIoni
+    4 -1.1772089 cm -2.7663985 mm  7.7436939 cm          0 eV  40.814616 keV 225.89602 nm  253.70798 um     Target       hIoni
+    5 -1.1772089 cm -2.7663985 mm  7.7436939 cm          0 eV          0 eV          0 fm  253.70798 um     Target  Scintillation
+Track (trackID 11, parentID 1) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = mu+,   Track ID = 29,   Parent ID = 11
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -1.18 cm  -2.77 mm   7.74 cm   4.12 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1 -1.1702842 cm -2.6844607 mm  7.7386009 cm  175.53431 keV 3.9442783 MeV 164.72433 um  164.72433 um     Target      muIoni
+    2 -1.1702749 cm -2.6845488 mm  7.7385416 cm  98.300395 keV 77.233916 keV 1.2478097 um  165.97214 um     Target      muIoni
+    3 -1.1702749 cm  -2.684524 mm  7.7385137 cm          0 eV  98.300395 keV 599.76384 nm   166.5719 um     Target      muIoni
+    4 -1.1702749 cm  -2.684524 mm  7.7385137 cm          0 eV          0 eV          0 fm   166.5719 um     Target  Scintillation
+Track (trackID 29, parentID 11) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.528638(mm),0.36745338(mm),79.377646(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.387947(mm),0.9727639(mm),78.520819(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7273,7 +7565,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.653091(mm),2.1662914(mm),78.29774(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.497708(mm),0.67427049(mm),79.3831(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7282,7 +7574,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.883251(mm),1.2187421(mm),78.962464(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.173884(mm),1.144733(mm),78.911218(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7291,7 +7583,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.786398(mm),-0.96643669(mm),79.155869(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.476361(mm),2.0456633(mm),78.505229(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7300,7 +7592,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.141255(mm),-1.4458867(mm),79.269625(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.107986(mm),0.66268368(mm),79.451818(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7309,7 +7601,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.770075(mm),0.92116833(mm),78.98242(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.291268(mm),1.7799293(mm),78.537866(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7318,7 +7610,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.250287(mm),-1.9841503(mm),78.545092(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.053849(mm),-1.6428343(mm),78.403402(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7329,7 +7621,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 660
-G4PrimaryTransformer::PrimaryVertex (-15.500403(mm),3.6300811(mm),78.50099(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.550001(mm),2.6002221(mm),78.668571(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7338,7 +7630,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.345931(mm),-0.16717089(mm),79.233535(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.254881(mm),2.6753704(mm),79.24959(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7347,7 +7639,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.528667(mm),0.6673872(mm),78.672333(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.564356(mm),0.3625988(mm),78.137059(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7356,7 +7648,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.987358(mm),0.47124473(mm),78.415126(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.485338(mm),-1.6626703(mm),78.503646(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7365,7 +7657,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.010314(mm),0.082999031(mm),78.763733(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.291369(mm),-2.3558391(mm),78.361521(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7374,7 +7666,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.206402(mm),2.008775(mm),79.081811(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.267654(mm),0.06743026(mm),78.894684(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7383,7 +7675,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.346964(mm),-2.5296323(mm),78.351718(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.276583(mm),0.65358825(mm),78.540455(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7392,7 +7684,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.214716(mm),2.0677728(mm),78.375037(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.879414(mm),3.608438(mm),78.786814(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7401,7 +7693,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.32685(mm),-1.8188946(mm),78.884246(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.234613(mm),2.7518084(mm),78.371529(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7410,40 +7702,10 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.774982(mm),-2.2397669(mm),78.981555(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.72347(mm),-1.9117054(mm),79.166965(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
-
-*********************************************************************************************************
-* G4Track Information:   Particle = pi+,   Track ID = 3,   Parent ID = 1
-*********************************************************************************************************
-
-Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
-    0  -8.26 mm  -2.52 mm   5.62 cm     26 MeV     0 eV      0 fm      0 fm     Target    initStep
-    1 -8.7094964 mm -1.8840766 mm  5.6151724 cm  21.753856 MeV  4.234109 MeV 788.24519 um  788.24519 um     Target       hIoni
-    2 -9.0334739 mm  -1.356934 mm  5.6154513 cm  17.886875 MeV 3.8669811 MeV 624.67817 um  1.4129234 mm     Target       hIoni
-    3 -9.3029105 mm  -953.8514 um  5.6193083 cm   14.82162 MeV 3.0652552 MeV 491.54987 um  1.9044732 mm     Target       hIoni
-    4 -9.5597945 mm -657.70032 um  5.6221494 cm  11.298008 MeV 3.5236117 MeV 397.79919 um  2.3022724 mm     Target       hIoni
-    5 -9.6732656 mm  -384.1695 um  5.6259401 cm  8.6354479 MeV   2.66256 MeV 303.35633 um  2.6056287 mm     Target       hIoni
-    6 -9.7110654 mm -151.87162 um  5.6272144 cm  5.4246354 MeV 3.2108125 MeV 240.42111 um  2.8460498 mm     Target       hIoni
-    7  -9.746618 mm  3.3448131 um  5.6300147 cm  2.1711849 MeV 3.2534505 MeV 167.08726 um  3.0131371 mm     Target       hIoni
-    8 -9.7417676 mm   36.35554 um  5.6311418 cm  166.56732 keV 2.0046176 MeV 46.843599 um  3.0599807 mm     Target       hIoni
-    9 -9.7415476 mm  36.145295 um  5.6311243 cm          0 eV  166.56732 keV 1.0574898 um  3.0610382 mm     Target       hIoni
-   10 -9.7415476 mm  36.145295 um  5.6311243 cm          0 eV          0 eV          0 fm  3.0610382 mm     Target  Scintillation
-Track (trackID 3, parentID 1) is processed with stopping code 2
-
-*********************************************************************************************************
-* G4Track Information:   Particle = mu+,   Track ID = 16,   Parent ID = 3
-*********************************************************************************************************
-
-Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
-    0  -9.74 mm   36.1 um   5.63 cm   4.12 MeV     0 eV      0 fm      0 fm     Target    initStep
-    1 -9.7170761 mm  143.99129 um  5.6238837 cm  283.49785 keV 3.8363148 MeV 164.72433 um  164.72433 um     Target      muIoni
-    2 -9.7161962 mm   144.4861 um  5.6237725 cm  19.013185 keV 264.48466 keV 2.4029417 um  167.12727 um     Target      muIoni
-    3 -9.7161868 mm  144.47432 um  5.6237717 cm          0 eV  19.013185 keV 117.87936 nm  167.24515 um     Target      muIoni
-    4 -9.7161868 mm  144.47432 um  5.6237717 cm          0 eV          0 eV          0 fm  167.24515 um     Target  Scintillation
-Track (trackID 16, parentID 3) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
@@ -7451,7 +7713,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 670
-G4PrimaryTransformer::PrimaryVertex (-12.287051(mm),1.4676272(mm),79.06759(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.682474(mm),-0.021132473(mm),78.468886(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7460,7 +7722,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.304135(mm),-2.048687(mm),78.535597(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.047086(mm),-3.0003197(mm),78.933576(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7469,16 +7731,548 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.710702(mm),2.3481806(mm),78.640235(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.710543(mm),1.3975012(mm),78.463936(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = pi+,   Track ID = 2,   Parent ID = 1
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -1.28 cm    948 um   5.57 cm   26.6 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1 -1.2429574 cm  1.6130276 mm  5.5428944 cm  22.197577 MeV 4.4185327 MeV 814.01192 um  814.01192 um     Target       hIoni
+    2 -1.2226454 cm  2.1193226 mm  5.5103946 cm  18.276826 MeV 3.9207504 MeV 640.96833 um  1.4549802 mm     Target       hIoni
+    3 -1.2134098 cm  2.5468361 mm  5.4863685 cm  15.328318 MeV 2.9485085 MeV 504.23984 um  1.9592201 mm     Target       hIoni
+    4 -1.2099334 cm   2.908618 mm  5.4679106 cm  12.637655 MeV 2.6906631 MeV 412.55157 um  2.3717717 mm     Target       hIoni
+    5 -1.2039694 cm   3.210219 mm  5.4551313 cm  10.052737 MeV 2.5849171 MeV 337.61393 um  2.7093856 mm     Target       hIoni
+    6  -1.203926 cm  3.2120757 mm  5.4550201 cm   9.977729 MeV 75.008432 keV 2.2078791 um  2.7115935 mm     Target  Transportation
+    7  6.7310062 cm  1.4118776 cm         -2 m   9.9787457 MeV5.9789455e-16 eV  4.0325082 m   4.0352198 m  CaptureMgnt  Transportation
+    8  8.9149938 cm -1.6415418 mm -2.0159362 m   9.9540553 MeV 22.623765 keV 3.1294559 cm  4.0665144 m       World       hIoni
+    9   9.228481 cm -3.9010637 mm -2.0182197 m   9.9498625 MeV 3.0876096 keV 4.4885994 mm   4.071003 m       World       hIoni
+   10  9.3924823 cm -5.0802523 mm -2.0194146 m    9.946974 MeV 1.1107309 keV  2.346894 mm  4.0733498 m       World       hIoni
+   11  10.348687 cm -1.1840552 cm -2.0263702 m   9.9334071 MeV 11.876538 keV 1.3620593 cm  4.0869704 m       World       hIoni
+   12  11.106083 cm -1.7155379 cm -2.0318397 m   9.9111338 MeV  9.685328 keV   1.07484 cm  4.0977188 m       World       hIoni
+   13  14.405587 cm -4.0119756 cm -2.0555651 m   9.8704046 MeV  31.17545 keV 4.6679761 cm  4.1443986 m       World       hIoni
+   14   15.72089 cm -4.9256878 cm  -2.064973 m   9.7541413 MeV 15.055031 keV 1.8574223 cm  4.1629728 m       World       hIoni
+   15  16.787193 cm -5.6691618 cm -2.0726612 m   9.7373222 MeV 11.048146 keV 1.5102502 cm  4.1780753 m       World       hIoni
+   16    17.3294 cm  -6.044072 cm -2.0765847 m   9.7309039 MeV 3.3804378 keV 7.6712657 mm  4.1857466 m       World       hIoni
+   17  19.522256 cm -7.5530893 cm -2.0924813 m   9.7061364 MeV 20.806972 keV 3.1004837 cm  4.2167514 m       World       hIoni
+   18  22.243944 cm  -9.402744 cm -2.1118866 m   9.6747023 MeV 29.454299 keV 3.8203208 cm  4.2549546 m       World       hIoni
+   19  22.446978 cm -9.5402981 cm -2.1133369 m    9.670702 MeV 2.3823879 keV  2.849164 mm  4.2578038 m       World       hIoni
+   20  24.280405 cm -10.798761 cm -2.1266923 m   9.6479315 MeV 19.969394 keV 2.5940612 cm  4.2837444 m       World       hIoni
+   21  25.163146 cm -11.407116 cm -2.1332107 m   9.6354589 MeV 11.264198 keV 1.2546846 cm  4.2962913 m       World       hIoni
+   22  25.676192 cm -11.764635 cm  -2.137025 m   9.6276123 MeV 6.4719549 keV 7.3248227 mm  4.3036161 m       World       hIoni
+   23  26.384718 cm -12.257344 cm -2.1422879 m   9.6231284 MeV 4.4838895 keV 1.0108202 cm  4.3137243 m       World       hIoni
+   24  26.425668 cm -12.286029 cm -2.1425934 m   9.6202453 MeV 180.03567 eV  585.90007 um  4.3143102 m       World       hIoni
+   25  27.413849 cm -12.979931 cm -2.1500009 m   9.6059009 MeV 12.954531 keV 1.4165905 cm  4.3284761 m       World       hIoni
+   26   29.41383 cm -14.379721 cm -2.1650042 m   9.5797541 MeV 22.216958 keV 2.8653993 cm  4.3571301 m       World       hIoni
+   27  30.024335 cm -14.805326 cm -2.1696132 m   9.5616889 MeV 6.4664614 keV 8.7537693 mm  4.3658838 m       World       hIoni
+   28  30.294963 cm -14.993167 cm -2.1716671 m   9.5585877 MeV 3.1011129 keV 3.8821458 mm   4.369766 m       World       hIoni
+   29  31.179535 cm -15.606512 cm -2.1783919 m   9.5445364 MeV 12.626294 keV 1.2692127 cm  4.3824581 m       World       hIoni
+   30  32.037465 cm  -16.20029 cm -2.1848867 m   9.5330346 MeV 9.0945295 keV  1.229004 cm  4.3947482 m       World       hIoni
+   31  32.075373 cm -16.226566 cm  -2.185174 m   9.5317665 MeV 271.03607 eV  543.39369 um  4.3952916 m       World       hIoni
+   32  34.014769 cm -17.599531 cm -2.2000941 m   9.5049793 MeV 20.000495 keV 2.8058672 cm  4.4233502 m       World       hIoni
+   33   34.47842 cm -17.930737 cm -2.2037033 m   9.4999266 MeV 3.7591827 keV 6.7448978 mm  4.4300951 m       World       hIoni
+   34  35.473611 cm -18.644508 cm -2.2115121 m    9.486977 MeV 8.3898195 keV 1.4524675 cm  4.4446198 m       World       hIoni
+   35   36.02129 cm -19.040785 cm -2.2158474 m   9.4794724 MeV 6.2883891 keV 8.0308064 mm  4.4526506 m       World       hIoni
+   36  36.423132 cm -19.330392 cm -2.2190243 m   9.4710983 MeV 4.1226892 keV 5.8845616 mm  4.4585352 m       World       hIoni
+   37  38.857002 cm -21.080467 cm -2.2383315 m   9.4493038 MeV 21.794469 keV 3.5657406 cm  4.4941926 m       World       hIoni
+   38  38.914661 cm -21.121574 cm -2.2387917 m   9.4399903 MeV 423.79846 eV  844.50499 um  4.4950371 m       World       hIoni
+   39  40.276978 cm -22.095063 cm -2.2496341 m   9.3619095 MeV 15.333484 keV 1.9947945 cm   4.514985 m       World       hIoni
+   40  40.607135 cm -22.328823 cm -2.2522484 m   9.3584467 MeV 2.4456204 keV 4.8165956 mm  4.5198016 m       World       hIoni
+   41  43.479218 cm -24.340513 cm -2.2745958 m   9.3201239 MeV 33.992151 keV 4.1581708 cm  4.5613833 m       World       hIoni
+   42  44.628738 cm -25.140306 cm -2.2834925 m    9.305733 MeV 11.054055 keV 1.6590936 cm  4.5779743 m       World       hIoni
+   43  45.993118 cm -26.084122 cm -2.2941159 m   9.2922085 MeV  11.94346 keV 1.9700129 cm  4.5976744 m       World       hIoni
+   44  46.912519 cm -26.716643 cm -2.3012921 m   9.2822422 MeV 8.6004655 keV 1.3267913 cm  4.6109423 m       World       hIoni
+   45  47.737509 cm -27.285174 cm -2.3076991 m   9.2626287 MeV 9.6913102 keV 1.1892588 cm  4.6228349 m       World       hIoni
+   46  48.977972 cm -28.137951 cm -2.3173857 m    9.251394 MeV 11.234753 keV 1.7900647 cm  4.6407355 m       World       hIoni
+   47  48.991372 cm -28.147212 cm -2.3174911 m   9.2490353 MeV 140.18336 eV  194.02958 um  4.6409296 m       World       hIoni
+   48  50.720498 cm -29.350429 cm  -2.331119 m   9.2283438 MeV 18.442104 keV 2.5089668 cm  4.6660192 m       World       hIoni
+   49  51.403374 cm  -29.82624 cm -2.3364317 m   9.2162489 MeV 9.7285912 keV 9.8740507 mm  4.6758933 m       World       hIoni
+   50  52.299302 cm  -30.44869 cm -2.3433548 m   9.2001265 MeV 16.122409 keV 1.2920649 cm  4.6888139 m       World       hIoni
+   51   53.41397 cm -31.220951 cm -2.3518772 m   9.1890231 MeV 11.103402 keV 1.6016311 cm  4.7048303 m       World       hIoni
+   52  54.475036 cm  -31.96508 cm -2.3599808 m   9.1783298 MeV 9.6322258 keV 1.5284944 cm  4.7201152 m       World       hIoni
+   53  54.694922 cm  -32.12043 cm -2.3616625 m   9.1747956 MeV 1.9507594 keV 3.1743162 mm  4.7232895 m       World       hIoni
+   54  55.652051 cm -32.803199 cm -2.3690095 m   9.1637835 MeV 9.5891174 keV 1.3863865 cm  4.7371534 m       World       hIoni
+   55  55.892968 cm -32.976226 cm -2.3708802 m   9.1612309 MeV  2.552637 keV 3.5068167 mm  4.7406602 m       World       hIoni
+   56  56.027177 cm -33.072476 cm -2.3719229 m   9.1576654 MeV 1.3101992 keV 1.9531276 mm  4.7426133 m       World       hIoni
+   57  56.962876 cm -33.740996 cm -2.3791709 m   9.1443877 MeV 12.063174 keV 1.3593439 cm  4.7562068 m       World       hIoni
+   58  57.120114 cm -33.853911 cm -2.3803891 m   9.1392265 MeV 920.38128 eV  2.2871662 mm  4.7584939 m       World       hIoni
+   59  57.692271 cm -34.264955 cm -2.3848378 m   9.1328162 MeV  6.410271 keV 8.3320722 mm   4.766826 m       World       hIoni
+   60   57.73528 cm -34.295854 cm -2.3851726 m   9.1304079 MeV 338.43053 eV  626.53932 um  4.7674525 m       World       hIoni
+   61  57.973806 cm -34.466664 cm -2.3870339 m   9.1069874 MeV 3.4200834 keV  3.474445 mm   4.770927 m       World       hIoni
+   62  58.051607 cm -34.522665 cm -2.3876407 m   9.0976211 MeV  524.8367 eV  1.1344799 mm  4.7720615 m       World       hIoni
+   63  58.367105 cm -34.749858 cm -2.3901058 m   9.0820153 MeV 3.7251455 keV 4.6035528 mm   4.776665 m       World       hIoni
+   64  58.729927 cm -35.010771 cm -2.3929234 m   9.0683579 MeV 3.9110198 keV 5.2830294 mm   4.781948 m       World       hIoni
+   65  58.767215 cm -35.037524 cm -2.3932138 m   9.0655428 MeV 202.26188 eV  543.08043 um  4.7824911 m       World       hIoni
+   66  60.935227 cm -36.591897 cm -2.4102025 m   9.0405305 MeV 20.291149 keV  3.162712 cm  4.8141182 m       World       hIoni
+   67  61.042929 cm -36.668543 cm -2.4110515 m   9.0383065 MeV 925.61871 eV   1.571052 mm  4.8156893 m       World       hIoni
+   68   61.52403 cm -37.010096 cm  -2.414846 m   9.0319168 MeV 5.1854253 keV 7.0150267 mm  4.8227043 m       World       hIoni
+   69  61.635015 cm -37.088813 cm -2.4157248 m   9.0290807 MeV 1.5691724 keV  1.619747 mm  4.8243241 m       World       hIoni
+   70  61.709233 cm -37.141443 cm -2.4163125 m    9.026598 MeV 788.57565 eV  1.0831934 mm  4.8254073 m       World       hIoni
+   71  61.944543 cm -37.308044 cm -2.4181761 m   9.0057681 MeV 3.9175683 keV  3.432991 mm  4.8288403 m       World       hIoni
+   72  62.703375 cm  -37.84604 cm -2.4241804 m   8.9987169 MeV 5.6062927 keV 1.1071552 cm  4.8399118 m       World       hIoni
+   73  62.840801 cm   -37.9435 cm -2.4252749 m    8.994983 MeV 775.28819 eV  2.0090556 mm  4.8419209 m       World       hIoni
+   74  62.948833 cm -38.019966 cm -2.4261352 m    8.992473 MeV 1.4479606 keV 1.5786108 mm  4.8434995 m       World       hIoni
+   75  63.176998 cm -38.181188 cm  -2.427952 m   8.9866221 MeV 4.4959631 keV 3.3325625 mm   4.846832 m       World       hIoni
+   76  64.325483 cm -38.993409 cm  -2.437083 m   8.9713979 MeV 13.771644 keV 1.6770533 cm  4.8636026 m       World       hIoni
+   77  64.400661 cm -39.047101 cm   -2.43768 m   8.9694912 MeV 587.86267 eV  1.0999271 mm  4.8647025 m       World       hIoni
+   78  65.568248 cm -39.875886 cm -2.4469453 m   8.9485616 MeV 15.122049 keV 1.7054711 cm  4.8817572 m       World       hIoni
+   79  65.591077 cm -39.891858 cm -2.4471238 m   8.9484473 MeV 114.34611 eV  330.93214 um  4.8820881 m       World       hIoni
+   80   65.59179 cm -39.892357 cm -2.4471294 m   8.9412744 MeV 7.9119131 eV  10.337629 um  4.8820985 m       World       hIoni
+   81   68.52257 cm -41.949512 cm -2.4701288 m   8.9104301 MeV 30.844316 keV  4.255787 cm  4.9246563 m       World       hIoni
+   82   69.05656 cm  -42.32386 cm -2.4743006 m   8.8985266 MeV 8.1084066 keV 7.7415785 mm  4.9323979 m       World       hIoni
+   83  72.009622 cm -44.329915 cm -2.4978124 m   8.8601792 MeV  34.19648 keV 4.2756271 cm  4.9751542 m       World       hIoni
+   84  72.612041 cm -44.710528 cm  -2.502737 m   8.8536568 MeV 5.3209447 keV  8.661952 mm  4.9838161 m       World       hIoni
+   85  73.847918 cm  -45.50241 cm -2.5127549 m   8.8406736 MeV 10.990275 keV 1.7771029 cm  5.0015872 m       World       hIoni
+   86  73.946585 cm -45.566538 cm -2.5135525 m    8.829849 MeV 977.46081 eV  1.4215975 mm  5.0030088 m       World       hIoni
+   87  74.133703 cm -45.687915 cm -2.5150564 m   8.8283245 MeV 1.5245305 keV 2.6900268 mm  5.0056988 m       World       hIoni
+   88  75.515058 cm -46.581997 cm -2.5261245 m   8.8096843 MeV 17.584166 keV 1.9830775 cm  5.0255296 m       World       hIoni
+   89  76.657981 cm -47.326431 cm -2.5352568 m   8.7812153 MeV 12.229732 keV 1.6414897 cm  5.0419445 m       World       hIoni
+   90  78.067447 cm -48.255123 cm -2.5465288 m   8.7577015 MeV 18.776881 keV 2.0297061 cm  5.0622415 m       World       hIoni
+   91  79.220647 cm -49.024933 cm -2.5557569 m   8.7325839 MeV 15.390132 keV 1.6655586 cm  5.0788971 m       World       hIoni
+   92  79.283919 cm -49.067209 cm -2.5562622 m   8.7300477 MeV 874.77363 eV   913.4529 um  5.0798106 m       World       hIoni
+   93  80.007061 cm -49.550952 cm -2.5620274 m   8.7154099 MeV 8.2150745 keV 1.0437082 cm  5.0902477 m       World       hIoni
+   94  80.976348 cm -50.196665 cm -2.5697898 m   8.6946147 MeV 9.9223292 keV 1.3996532 cm  5.1042442 m       World       hIoni
+   95  82.695721 cm -51.333943 cm -2.5832863 m   8.6758362 MeV 17.771751 keV 2.4640081 cm  5.1288843 m       World       hIoni
+   96  84.483721 cm -52.539146 cm -2.5973661 m   8.6540805 MeV 18.191979 keV 2.5752648 cm  5.1546369 m       World       hIoni
+   97  84.936809 cm  -52.85151 cm -2.6009627 m   8.6435159 MeV  4.882751 keV 6.5743314 mm  5.1612112 m       World       hIoni
+   98  85.057919 cm -52.934803 cm -2.6019237 m   8.6424208 MeV 1.0950271 keV 1.7561313 mm  5.1629674 m       World       hIoni
+   99  85.386014 cm  -53.15978 cm -2.6045275 m   8.6369514 MeV 4.2446366 keV 4.7546013 mm   5.167722 m       World       hIoni
+  100  86.578422 cm -53.979598 cm -2.6140119 m   8.6236588 MeV  13.29262 keV 1.7301757 cm  5.1850237 m       World       hIoni
+  101  88.484197 cm -55.277389 cm -2.6290084 m   8.5986774 MeV 23.335019 keV 2.7505242 cm   5.212529 m       World       hIoni
+  102  89.098968 cm -55.694831 cm -2.6338455 m   8.5906588 MeV 4.9841779 keV 8.8666463 mm  5.2213956 m       World       hIoni
+  103  89.373276 cm -55.880762 cm -2.6360078 m   8.5849492 MeV 4.2760071 keV 3.9569576 mm  5.2253526 m       World       hIoni
+  104  89.492747 cm -55.962231 cm -2.6369553 m   8.5820483 MeV 1.2543147 keV 1.7287819 mm  5.2270814 m       World       hIoni
+  105  90.298199 cm  -56.51487 cm -2.6433872 m   8.5707645 MeV 9.7554749 keV 1.1695603 cm   5.238777 m       World       hIoni
+  106  90.673874 cm -56.772955 cm -2.6463748 m   8.5657104 MeV 3.4137343 keV 5.4497657 mm  5.2442267 m       World       hIoni
+  107  91.092918 cm -57.060974 cm -2.6497215 m   8.5537714 MeV 5.9650826 keV 6.0873542 mm  5.2503141 m       World       hIoni
+  108  91.153296 cm -57.102479 cm -2.6502095 m   8.5495519 MeV 635.36981 eV  880.30969 um  5.2511944 m       World       hIoni
+  109  91.200937 cm -57.135281 cm -2.6505959 m   8.5488116 MeV 740.27727 eV  695.61971 um    5.25189 m       World       hIoni
+  110   91.88161 cm -57.603706 cm -2.6561175 m    8.539805 MeV 9.0065808 keV 9.9378948 mm  5.2618279 m       World       hIoni
+  111  92.259758 cm -57.863082 cm -2.6591948 m   8.5348253 MeV 3.7965821 keV 5.5224453 mm  5.2673504 m       World       hIoni
+  112  93.546801 cm -58.745882 cm -2.6696775 m   8.5154622 MeV 17.734604 keV  1.880092 cm  5.2861513 m       World       hIoni
+  113  93.939835 cm -59.016425 cm -2.6728681 m   8.5064097 MeV 3.9022181 keV 5.7399441 mm  5.2918912 m       World       hIoni
+  114  94.560739 cm -59.439585 cm -2.6778899 m   8.4985758 MeV 6.4525291 keV 9.0375402 mm  5.3009288 m       World       hIoni
+  115  95.904567 cm -60.359116 cm -2.6888267 m   8.4801725 MeV 17.330293 keV 1.9615324 cm  5.3205441 m       World       hIoni
+  116  96.548108 cm -60.800884 cm -2.6940777 m   8.4700374 MeV 10.135118 keV 9.4076377 mm  5.3299517 m       World       hIoni
+  117  96.885476 cm -61.032931 cm -2.6968254 m   8.4642718 MeV 3.9786363 keV 4.9311966 mm  5.3348829 m       World       hIoni
+  118  98.125408 cm -61.885552 cm -2.7069278 m   8.4506325 MeV 12.552432 keV 1.8124616 cm  5.3530075 m       World       hIoni
+  119  99.073985 cm -62.542004 cm -2.7146902 m    8.436358 MeV 10.595858 keV 1.3904313 cm  5.3669118 m       World       hIoni
+  120  1.0053079 m  -63.557362 cm -2.7267135 m   8.4162157 MeV 16.191689 keV 2.1445084 cm  5.3883569 m       World       hIoni
+  121  1.0057992 m  -63.591588 cm -2.7271207 m   8.4112861 MeV 574.45847 eV  724.13272 um  5.3890811 m       World       hIoni
+  122  1.0083711 m  -63.771105 cm -2.7292551 m   8.4002774 MeV 2.5679813 keV 3.7937772 mm  5.3928748 m       World       hIoni
+  123  1.0163576 m  -64.328508 cm -2.7359204 m   8.3822803 MeV  10.12578 keV  1.180181 cm  5.4046767 m       World       hIoni
+  124  1.0179025 m  -64.434665 cm -2.7371978 m   8.3747885 MeV 2.0688589 keV 2.2682753 mm  5.4069449 m       World       hIoni
+  125  1.0215367 m  -64.684458 cm -2.7402219 m   8.3652506 MeV 4.9931391 keV 5.3472273 mm  5.4122922 m       World       hIoni
+  126  1.0340222 m  -65.550044 cm -2.7506417 m   8.3428218 MeV 18.482502 keV 1.8422512 cm  5.4307147 m       World       hIoni
+  127  1.0415694 m  -66.079272 cm -2.7569053 m   8.3293364 MeV 8.4080301 keV 1.1144588 cm  5.4418593 m       World       hIoni
+  128  1.0496202 m  -66.644115 cm -2.7636138 m   8.3162629 MeV 10.679576 keV 1.1904879 cm  5.4537641 m       World       hIoni
+  129  1.0498441 m  -66.659919 cm -2.7638005 m   8.3161445 MeV 118.40549 eV  331.61267 um  5.4540957 m       World       hIoni
+  130  1.0559147 m  -67.086308 cm -2.7688807 m   8.3104677 MeV 5.6768548 keV 8.9911564 mm  5.4630869 m       World       hIoni
+  131  1.0571484 m  -67.172878 cm -2.7699144 m    8.307558 MeV 1.7685329 keV  1.827616 mm  5.4649145 m       World       hIoni
+  132  1.0622996 m  -67.534842 cm -2.7742344 m   8.2975934 MeV 8.7282398 keV 7.6353826 mm  5.4725499 m       World       hIoni
+  133  1.0653288 m  -67.749659 cm -2.7767751 m   8.2929115 MeV 3.6745347 keV 4.4995388 mm  5.4770494 m       World       hIoni
+  134  1.0656724 m     -67.774 cm -2.7770629 m   8.2908647 MeV 356.59398 eV  510.07565 um  5.4775595 m       World       hIoni
+  135  1.0835839 m  -69.019362 cm -2.7921597 m   8.2668586 MeV 22.649009 keV 2.6530036 cm  5.5040896 m       World       hIoni
+  136  1.0857123 m  -69.165554 cm -2.7939416 m   8.2487201 MeV 1.7750374 keV 3.1372653 mm  5.5072268 m       World       hIoni
+  137  1.1014803 m  -70.242688 cm -2.8071279 m   8.2269557 MeV 17.585707 keV 2.3206466 cm  5.5304333 m       World       hIoni
+  138  1.1020729 m  -70.283033 cm -2.8076237 m   8.2249822 MeV 420.79024 eV  871.66617 um  5.5313049 m       World       hIoni
+  139  1.1037127 m  -70.394388 cm -2.8089897 m   8.2205634 MeV 2.3576702 keV 2.4072881 mm  5.5337122 m       World       hIoni
+  140  1.1079269 m  -70.680075 cm  -2.812482 m   8.2170818 MeV 3.4815737 keV 6.1739131 mm  5.5398862 m       World       hIoni
+  141  1.1096872 m    -70.7997 cm -2.8139368 m   8.2114594 MeV 2.6406202 keV 2.5780361 mm  5.5424642 m       World       hIoni
+  142  1.1107096 m   -70.86949 cm -2.8147865 m   8.2040014 MeV 838.07064 eV  1.5013943 mm  5.5439656 m       World       hIoni
+  143  1.1185783 m  -71.402684 cm -2.8213167 m   8.1913838 MeV 11.342786 keV 1.1532208 cm  5.5554978 m       World       hIoni
+  144  1.1194058 m  -71.459069 cm -2.8220018 m   8.1882688 MeV 1.3745308 keV 1.2132682 mm  5.5567111 m       World       hIoni
+  145  1.1303868 m  -72.206916 cm  -2.831116 m    8.173152 MeV  13.92943 keV 1.6111535 cm  5.5728226 m       World       hIoni
+  146  1.1369221 m  -72.652809 cm -2.8365178 m   8.1664465 MeV 6.7054433 keV 9.5798389 mm  5.5824024 m       World       hIoni
+  147  1.1456667 m   -73.25399 cm  -2.843763 m   8.1556655 MeV 9.7430956 keV 1.2849283 cm  5.5952517 m       World       hIoni
+  148  1.1476217 m  -73.388455 cm -2.8453638 m   8.1535424 MeV 2.1230601 keV 2.8622397 mm   5.598114 m       World       hIoni
+  149  1.1502672 m  -73.572169 cm  -2.847536 m    8.148716 MeV 2.8080387 keV 3.8849138 mm  5.6019989 m       World       hIoni
+  150  1.1538523 m  -73.821679 cm -2.8504779 m   8.1419593 MeV 4.1866754 keV  5.266235 mm  5.6072651 m       World       hIoni
+  151  1.1571801 m  -74.051882 cm  -2.853208 m   8.1339682 MeV 6.3260401 keV 4.8812858 mm  5.6121464 m       World       hIoni
+  152  1.1618918 m  -74.377427 cm -2.8570701 m   8.1122758 MeV 6.0257992 keV 6.9075504 mm  5.6190539 m       World       hIoni
+  153  1.1685607 m  -74.836445 cm -2.8625567 m   8.1033493 MeV  7.573991 keV 9.7800031 mm  5.6288339 m       World       hIoni
+  154  1.2087558 m   -77.58104 cm -2.8954765 m   8.0537042 MeV 47.068036 keV 5.8760944 cm  5.6875949 m       World       hIoni
+  155  1.2147496 m  -77.992855 cm -2.9004024 m   8.0449547 MeV 6.6204253 keV 8.7835066 mm  5.6963784 m       World       hIoni
+  156  1.2153264 m  -78.033037 cm -2.9008788 m   8.0409225 MeV 454.26603 eV  849.25095 um  5.6972276 m       World       hIoni
+  157  1.2175611 m  -78.187657 cm -2.9027246 m   8.0354494 MeV 2.7135233 keV 3.2850291 mm  5.7005127 m       World       hIoni
+  158  1.2221756 m  -78.505884 cm -2.9065482 m   8.0285114 MeV 6.9380228 keV 6.7853393 mm   5.707298 m       World       hIoni
+  159  1.2222812 m   -78.51317 cm -2.9066354 m   8.0272528 MeV 41.487521 eV  155.08311 um  5.7074531 m       World       hIoni
+  160  1.2332143 m   -79.27392 cm -2.9156624 m   8.0134156 MeV 12.310459 keV  1.609034 cm  5.7235434 m       World       hIoni
+  161  1.2415318 m  -79.845615 cm -2.9225299 m   8.0016376 MeV 10.486042 keV 1.2207703 cm  5.7357511 m       World       hIoni
+  162  1.2454696 m  -80.111288 cm -2.9257664 m   7.9951574 MeV 4.7623699 keV 5.7480369 mm  5.7414992 m       World       hIoni
+  163  1.2481637 m  -80.293169 cm -2.9279722 m   7.9910184 MeV 2.4961635 keV 3.9283027 mm  5.7454275 m       World       hIoni
+  164  1.2600647 m  -81.102602 cm -2.9376554 m   7.9730736 MeV 15.504884 keV 1.7347068 cm  5.7627745 m       World       hIoni
+  165  1.2646578 m  -81.413607 cm -2.9413994 m   7.9569483 MeV 3.6202801 keV 6.6923313 mm  5.7694669 m       World       hIoni
+  166  1.2656629 m  -81.483068 cm -2.9422304 m   7.9528251 MeV  921.3997 eV  1.4775844 mm  5.7709445 m       World       hIoni
+  167  1.2711366 m  -81.861867 cm -2.9467501 m   7.9472367 MeV 5.5884217 keV 8.0459838 mm  5.7789904 m       World       hIoni
+  168  1.2713942 m  -81.879683 cm -2.9469628 m   7.9448528 MeV  614.2206 eV  378.62791 um  5.7793691 m       World       hIoni
+  169  1.2714224 m  -81.881632 cm  -2.946986 m   7.9432846 MeV 105.93348 eV  41.374238 um  5.7794104 m       World       hIoni
+  170  1.2731276 m  -81.999641 cm -2.9483954 m   7.9398145 MeV 2.2113551 keV 2.5073915 mm  5.7819178 m       World       hIoni
+  171  1.2739417 m   -82.05595 cm -2.9490702 m   7.9308791 MeV 1.0624339 keV 1.1979434 mm  5.7831158 m       World       hIoni
+  172  1.2860987 m   -82.89349 cm -2.9592117 m     7.91517 MeV 15.709155 keV 1.7910826 cm  5.8010266 m       World       hIoni
+  173  1.2974928 m  -83.671942 cm -2.9685779 m   7.8658924 MeV 18.597003 keV 1.6677921 cm  5.8177045 m       World       hIoni
+  174  1.2991456 m  -83.785726 cm -2.9699457 m   7.8632803 MeV 2.6121231 keV 2.4284807 mm   5.820133 m       World       hIoni
+  175  1.3053488 m   -84.21249 cm -2.9750665 m   7.8542451 MeV 7.2037624 keV 9.1057416 mm  5.8292388 m       World       hIoni
+  176   1.311483 m   -84.63111 cm -2.9801118 m   7.8457161 MeV 7.1410642 keV 8.9782383 mm   5.838217 m       World       hIoni
+  177  1.3130696 m  -84.738571 cm -2.9814054 m   7.8378451 MeV 2.4202298 keV 2.3120549 mm   5.840529 m       World       hIoni
+  178  1.3179036 m  -85.068356 cm -2.9853542 m   7.8307859 MeV 5.2186167 keV 7.0595115 mm  5.8475886 m       World       hIoni
+  179  1.3238052 m  -85.474604 cm -2.9902214 m   7.8231259 MeV 6.0817913 keV 8.6615032 mm  5.8562501 m       World       hIoni
+  180  1.3361641 m   -86.32242 cm -3.0005152 m   7.8055741 MeV  15.86425 keV 1.8182169 cm  5.8744322 m       World       hIoni
+  181  1.3395169 m  -86.553632 cm -3.0033154 m    7.800936 MeV 2.8093882 keV 4.9425465 mm  5.8793748 m       World       hIoni
+  182  1.3421807 m  -86.737239 cm -3.0055329 m   7.7931008 MeV 3.1506603 keV 3.9222696 mm   5.883297 m       World       hIoni
+  183  1.3439114 m  -86.856559 cm -3.0069791 m   7.7892956 MeV 2.0371128 keV 2.5515421 mm  5.8858486 m       World       hIoni
+  184  1.3446247 m  -86.905283 cm  -3.007572 m   7.7867878 MeV 773.18975 eV  1.0477449 mm  5.8868963 m       World       hIoni
+  185  1.3591769 m  -87.888402 cm -3.0196125 m   7.7681084 MeV 16.075771 keV 2.1293209 cm  5.9081895 m       World       hIoni
+  186   1.361559 m  -88.046737 cm -3.0215803 m   7.7632837 MeV 3.4152567 keV 3.4718328 mm  5.9116614 m       World       hIoni
+  187   1.372795 m  -88.798255 cm -3.0308458 m   7.7427856 MeV 14.724132 keV  1.638845 cm  5.9280498 m       World       hIoni
+  188  1.3739582 m  -88.877431 cm -3.0318033 m   7.7391236 MeV  2.535978 keV 1.7019603 mm  5.9297518 m       World       hIoni
+  189  1.3777425 m  -89.133872 cm -3.0349139 m   7.7329702 MeV 5.1449116 keV 5.5293303 mm  5.9352811 m       World       hIoni
+  190  1.3832807 m  -89.507541 cm -3.0394529 m    7.726117 MeV 6.8532128 keV 8.0768777 mm   5.943358 m       World       hIoni
+  191  1.3837118 m  -89.536667 cm -3.0398073 m   7.7236313 MeV 482.97965 eV  629.55451 um  5.9439875 m       World       hIoni
+  192  1.3921601 m  -90.107375 cm -3.0467697 m   7.7101422 MeV 12.295904 keV 1.2345896 cm  5.9563334 m       World       hIoni
+  193  1.4026972 m  -90.824492 cm -3.0554235 m   7.6931081 MeV  14.50399 keV 1.5406113 cm  5.9717396 m       World       hIoni
+  194  1.4035273 m  -90.881314 cm -3.0561019 m   7.6907138 MeV 760.23349 eV  1.2133456 mm  5.9729529 m       World       hIoni
+  195  1.4061855 m  -91.062637 cm -3.0582727 m   7.6878866 MeV 2.8272059 keV 3.8815043 mm  5.9768344 m       World       hIoni
+  196  1.4087033 m  -91.233929 cm  -3.060327 m   7.6824533 MeV 4.4085523 keV 3.6734205 mm  5.9805078 m       World       hIoni
+  197  1.4099536 m  -91.318997 cm -3.0613445 m   7.6680936 MeV 593.70191 eV  1.8226228 mm  5.9823304 m       World       hIoni
+  198  1.4162651 m  -91.745201 cm -3.0664764 m   7.6555244 MeV     10.03 keV 9.1835546 mm   5.991514 m       World       hIoni
+  199  1.4181939 m  -91.874484 cm -3.0680488 m   7.6371635 MeV 1.5543925 keV 2.8043104 mm  5.9943183 m       World       hIoni
+  200  1.4260411 m  -92.407592 cm -3.0744392 m   7.6267291 MeV 8.9433116 keV 1.1438402 cm  6.0057567 m       World       hIoni
+  201  1.4329897 m  -92.883864 cm -3.0801096 m   7.6156003 MeV 8.5035664 keV 1.0154883 cm  6.0159116 m       World       hIoni
+  202  1.4463569 m  -93.801976 cm -3.0911103 m    7.594267 MeV 16.571005 keV 1.9595878 cm  6.0355075 m       World       hIoni
+  203  1.4581534 m  -94.614533 cm -3.1008565 m    7.564167 MeV 16.317712 keV 1.7325576 cm  6.0528331 m       World       hIoni
+  204  1.4589291 m  -94.668668 cm -3.1014971 m   7.5621605 MeV 757.15586 eV  1.1424184 mm  6.0539755 m       World       hIoni
+  205  1.4631302 m  -94.960799 cm  -3.104962 m   7.5542574 MeV 4.3040999 keV 6.1797628 mm  6.0601552 m       World       hIoni
+  206  1.4679502 m  -95.296137 cm -3.1089442 m   7.5421633 MeV 5.0203143 keV 7.0947635 mm    6.06725 m       World       hIoni
+  207  1.4680476 m  -95.302969 cm -3.1090247 m   7.5419387 MeV 224.54066 eV  143.60461 um  6.0673936 m       World       hIoni
+  208  1.4708455 m  -95.499026 cm -3.1113504 m   7.5357601 MeV 4.8920814 keV 4.1329647 mm  6.0715266 m       World       hIoni
+  209  1.4709338 m  -95.505209 cm -3.1114242 m    7.534218 MeV 110.87949 eV  130.61002 um  6.0716572 m       World       hIoni
+  210  1.4744757 m  -95.752964 cm -3.1143963 m   7.5301556 MeV 4.0624624 keV 5.2456629 mm  6.0769028 m       World       hIoni
+  211  1.4765051 m   -95.89416 cm -3.1161019 m   7.5241141 MeV 2.2383808 keV 3.0035048 mm  6.0799063 m       World       hIoni
+  212   1.483982 m  -96.409435 cm -3.1223984 m   7.5036755 MeV 10.927118 keV  1.104998 cm  6.0909563 m       World       hIoni
+  213  1.4853809 m  -96.505159 cm -3.1235762 m   7.4802394 MeV 1.8710287 keV 2.0640868 mm  6.0930204 m       World       hIoni
+  214  1.4863327 m   -96.57043 cm -3.1243812 m   7.4772402 MeV  1.904986 keV 1.4071485 mm  6.0944276 m       World       hIoni
+  215  1.4912436 m  -96.907168 cm -3.1285264 m   7.4646054 MeV 6.3215486 keV 7.2552563 mm  6.1016828 m       World       hIoni
+  216  1.4948544 m  -97.155622 cm -3.1315917 m   7.4568506 MeV 4.5109724 keV  5.348566 mm  6.1070314 m       World       hIoni
+  217  1.5049153 m  -97.855731 cm -3.1402077 m    7.438208 MeV 17.325656 keV 1.4982572 cm   6.122014 m       World       hIoni
+  218  1.5141249 m  -98.491212 cm -3.1480938 m   7.4235588 MeV 12.843295 keV 1.3689102 cm  6.1357031 m       World       hIoni
+  219  1.5147187 m  -98.532348 cm -3.1486073 m    7.414002 MeV 773.59406 eV  886.33168 um  6.1365894 m       World       hIoni
+  220  1.5189541 m  -98.827154 cm -3.1522711 m   7.4029728 MeV 6.2910248 keV 6.3286903 mm  6.1429181 m       World       hIoni
+  221  1.5410357 m  -1.0035365 m  -3.1712892 m    7.372282 MeV 28.811223 keV 3.2899081 cm  6.1758172 m       World       hIoni
+  222  1.5419478 m  -1.0041693 m  -3.1720737 m   7.3710771 MeV 1.2048407 keV  1.359347 mm  6.1771765 m       World       hIoni
+  223  1.5468244 m  -1.0075678 m  -3.1762836 m    7.363511 MeV 6.4828525 keV 7.2838787 mm  6.1844604 m       World       hIoni
+  224  1.5468804 m  -1.0076072 m  -3.1763322 m   7.3621957 MeV 28.502224 eV   83.96103 um  6.1845443 m       World       hIoni
+  225  1.5475878 m  -1.0081043 m  -3.1769466 m   7.3615537 MeV  641.9837 eV   1.060678 mm   6.185605 m       World       hIoni
+  226  1.5475967 m  -1.0081106 m  -3.1769543 m   7.3587853 MeV         0 eV  13.322117 um  6.1856183 m       World       hIoni
+  227  1.5499495 m  -1.0097665 m  -3.1789989 m   7.3545958 MeV 2.6089492 keV 3.5296219 mm   6.189148 m       World       hIoni
+  228  1.5673509 m  -1.0218616 m  -3.1940406 m   7.3269431 MeV 26.616657 keV 2.5987897 cm  6.2151359 m       World       hIoni
+  229  1.5730703 m  -1.0258478 m  -3.1989889 m   7.3188245 MeV 7.0031928 keV 8.5491531 mm   6.223685 m       World       hIoni
+  230  1.5832188 m  -1.0328148 m  -3.2077862 m   7.3049746 MeV 13.849848 keV 1.5130328 cm  6.2388153 m       World       hIoni
+  231  1.5845003 m   -1.033691 m  -3.2088999 m   7.3012557 MeV 2.1202343 keV 1.9105625 mm  6.2407259 m       World       hIoni
+  232  1.5899031 m   -1.037375 m  -3.2135758 m   7.2920556 MeV 7.2615801 keV 8.0391068 mm   6.248765 m       World       hIoni
+  233   1.608826 m  -1.0502009 m  -3.2300604 m   7.2643139 MeV  26.24212 keV 2.8184261 cm  6.2769493 m       World       hIoni
+  234   1.620971 m   -1.058463 m   -3.240709 m   7.2479327 MeV 15.364543 keV  1.814281 cm  6.2950921 m       World       hIoni
+  235  1.6211698 m  -1.0585992 m  -3.2408852 m   7.2455361 MeV 319.63451 eV  298.44693 um  6.2953905 m       World       hIoni
+  236  1.6325105 m  -1.0662869 m   -3.250917 m   7.2294178 MeV 16.118278 keV  1.698101 cm  6.3123715 m       World       hIoni
+  237  1.6360942 m  -1.0686902 m  -3.2540888 m   7.2237233 MeV 4.6745899 keV 5.3553392 mm  6.3177269 m       World       hIoni
+  238  1.6434298 m   -1.073578 m  -3.2606243 m   7.2099168 MeV 12.113388 keV 1.0973384 cm  6.3287003 m       World       hIoni
+  239  1.6440785 m   -1.074008 m   -3.261204 m   7.2053381 MeV  774.4178 eV  970.46597 um  6.3296707 m       World       hIoni
+  240  1.6506984 m  -1.0783838 m  -3.2670981 m   7.1950069 MeV 9.3321178 keV 9.8849814 mm  6.3395557 m       World       hIoni
+  241  1.6650341 m  -1.0879295 m  -3.2797568 m   7.1734108 MeV 18.516002 keV 2.1374878 cm  6.3609306 m       World       hIoni
+  242  1.6662088 m  -1.0887167 m  -3.2807985 m   7.1719215 MeV 1.4892987 keV  1.756326 mm  6.3626869 m       World       hIoni
+  243   1.666819 m  -1.0891253 m  -3.2813397 m   7.1703068 MeV 362.90311 eV  912.21958 um  6.3635991 m       World       hIoni
+  244  1.6728031 m  -1.0931499 m  -3.2866618 m   7.1587178 MeV 6.5063091 keV 8.9628625 mm   6.372562 m       World       hIoni
+  245  1.6784323 m  -1.0969594 m  -3.2916882 m   7.1471898 MeV 8.4094204 keV 8.4537853 mm  6.3810158 m       World       hIoni
+  246   1.684456 m    -1.10105 m  -3.2970528 m   7.1366597 MeV 8.1520758 keV 9.0441926 mm    6.39006 m       World       hIoni
+  247  1.6888286 m  -1.1040012 m    -3.30095 m   7.1256437 MeV 8.8466048 keV 6.5587952 mm  6.3966188 m       World       hIoni
+  248  1.6902915 m  -1.1049869 m  -3.3022581 m   7.1215996 MeV 2.1368198 keV 2.1960814 mm  6.3988149 m       World       hIoni
+  249  1.6950328 m  -1.1081955 m  -3.3064988 m   7.1116172 MeV 8.9462408 keV 7.1244933 mm  6.4059393 m       World       hIoni
+  250  1.6981939 m  -1.1103459 m  -3.3093274 m   7.1077498 MeV 3.8674178 keV 4.7558335 mm  6.4106952 m       World       hIoni
+  251  1.7062213 m  -1.1157594 m  -3.3164152 m   7.0954616 MeV 12.288197 keV 1.1999324 cm  6.4226945 m       World       hIoni
+  252  1.7076142 m  -1.1166922 m  -3.3176285 m   7.0922444 MeV 1.6394795 keV 2.0694483 mm   6.424764 m       World       hIoni
+  253  1.7113292 m  -1.1191875 m  -3.3208581 m   7.0838738 MeV 6.5533207 keV 5.5188446 mm  6.4302828 m       World       hIoni
+  254   1.712485 m  -1.1199589 m  -3.3218651 m   7.0823863 MeV 1.4874537 keV 1.7161619 mm   6.431999 m       World       hIoni
+  255  1.7169368 m  -1.1229188 m  -3.3257296 m   7.0731229 MeV 4.3561082 keV 6.5964572 mm  6.4385954 m       World       hIoni
+  256  1.7184053 m  -1.1238929 m  -3.3269986 m   7.0694801 MeV 2.6209111 keV 2.1715498 mm   6.440767 m       World       hIoni
+  257  1.7263502 m  -1.1291576 m  -3.3338586 m   7.0590774 MeV 10.402683 keV 1.1743124 cm  6.4525101 m       World       hIoni
+  258   1.727451 m  -1.1298846 m  -3.3348035 m   7.0570326 MeV 965.25642 eV  1.6226913 mm  6.4541328 m       World       hIoni
+  259  1.7373236 m   -1.136334 m  -3.3432455 m   7.0420294 MeV 10.658455 keV 1.4502878 cm  6.4686357 m       World       hIoni
+  260  1.7382754 m  -1.1369532 m  -3.3440596 m   7.0367436 MeV 316.80269 eV  1.3972212 mm  6.4700329 m       World       hIoni
+  261  1.7459221 m  -1.1419602 m  -3.3506105 m   7.0231407 MeV 11.671006 keV 1.1245315 cm  6.4812782 m       World       hIoni
+  262  1.7508322 m  -1.1451522 m  -3.3547837 m   7.0130696 MeV 7.8892255 keV 7.1912579 mm  6.4884695 m       World       hIoni
+  263  1.7553119 m  -1.1480467 m  -3.3586177 m   6.9927164 MeV 5.4831941 keV 6.5685733 mm   6.495038 m       World       hIoni
+  264  1.7560685 m  -1.1485359 m  -3.3592676 m   6.9883973 MeV 851.87747 eV   1.110819 mm  6.4961488 m       World       hIoni
+  265  1.7652095 m   -1.154442 m  -3.3671123 m   6.9231779 MeV 13.760034 keV  1.341577 cm  6.5095646 m       World       hIoni
+  266  1.7706325 m  -1.1579607 m  -3.3718055 m   6.9139063 MeV 8.2799989 keV 7.9885543 mm  6.5175532 m       World       hIoni
+  267   1.773155 m  -1.1595862 m   -3.373974 m   6.9093425 MeV 3.4227144 keV 3.7023822 mm  6.5212556 m       World       hIoni
+  268  1.7747108 m  -1.1605874 m  -3.3753098 m   6.9064078 MeV 2.9347487 keV 2.2819717 mm  6.5235375 m       World       hIoni
+  269  1.7778253 m  -1.1625975 m  -3.3779744 m   6.9007339 MeV 4.2438306 keV 4.5651498 mm  6.5281027 m       World       hIoni
+  270  1.7927812 m  -1.1723625 m   -3.390854 m   6.8796467 MeV 20.072746 keV 2.2021169 cm  6.5501238 m       World       hIoni
+  271  1.7946521 m  -1.1735817 m  -3.3924701 m   6.8749086 MeV 1.9200698 keV 2.7565625 mm  6.5528804 m       World       hIoni
+  272  1.7962388 m  -1.1746216 m  -3.3938532 m   6.8721846 MeV 1.6858364 keV 2.3477555 mm  6.5552282 m       World       hIoni
+  273  1.8063094 m  -1.1812559 m  -3.4026806 m   6.8503122 MeV 17.230128 keV 1.4945124 cm  6.5701733 m       World       hIoni
+  274  1.8091415 m  -1.1831072 m  -3.4051713 m   6.8444262 MeV  4.468235 keV 4.2014416 mm  6.5743747 m       World       hIoni
+  275  1.8114571 m  -1.1846139 m  -3.4072103 m   6.8310473 MeV 2.6405893 keV 3.4335732 mm  6.5778083 m       World       hIoni
+  276  1.8163171 m  -1.1877671 m  -3.4115242 m   6.8222692 MeV  7.496425 keV 7.2230925 mm  6.5850314 m       World       hIoni
+  277  1.8170476 m  -1.1882383 m  -3.4121748 m   6.8199682 MeV 1.2331118 keV 1.0858376 mm  6.5861172 m       World       hIoni
+  278   1.828421 m  -1.1955669 m  -3.4222442 m   6.8026442 MeV 16.282888 keV 1.6865967 cm  6.6029832 m       World       hIoni
+  279  1.8297176 m  -1.1964075 m  -3.4233885 m    6.801322 MeV 1.3221771 keV 1.9227734 mm   6.604906 m       World       hIoni
+  280  1.8347388 m  -1.1998699 m  -3.4280573 m   6.7930902 MeV 6.6880544 keV  7.681362 mm  6.6125873 m       World       hIoni
+  281  1.8371458 m  -1.2015208 m  -3.4303025 m   6.7871814 MeV 3.7042575 keV 3.6824447 mm  6.6162698 m       World       hIoni
+  282  1.8429514 m  -1.2055239 m  -3.4357196 m   6.7757651 MeV 10.364333 keV  8.892377 mm  6.6251622 m       World       hIoni
+  283  1.8455705 m  -1.2073362 m  -3.4381556 m   6.7708852 MeV 4.8799141 keV 4.0097728 mm  6.6291719 m       World       hIoni
+  284  1.8533441 m  -1.2127113 m  -3.4453857 m   6.7555241 MeV 12.922204 keV 1.1899519 cm  6.6410714 m       World       hIoni
+  285  1.8539041 m  -1.2130957 m  -3.4459133 m   6.7498721 MeV 521.02656 eV   859.9939 um  6.6419314 m       World       hIoni
+  286  1.8558212 m  -1.2144138 m  -3.4477109 m   6.7453488 MeV 2.3520173 keV 2.9401383 mm  6.6448716 m       World       hIoni
+  287  1.8599791 m  -1.2172724 m  -3.4516242 m    6.737322 MeV 4.4471056 keV 6.3854379 mm   6.651257 m       World       hIoni
+  288  1.8681174 m  -1.2228502 m  -3.4592434 m   6.7096117 MeV 15.376678 keV  1.246587 cm  6.6637229 m       World       hIoni
+  289  1.8738202 m  -1.2267735 m  -3.4645994 m    6.699921 MeV 8.0327753 keV 8.7522226 mm  6.6724751 m       World       hIoni
+  290  1.8782977 m  -1.2298301 m  -3.4687733 m   6.6859831 MeV  6.359234 keV 6.8419758 mm  6.6793171 m       World       hIoni
+  291  1.8823809 m  -1.2326356 m  -3.4725923 m   6.6736325 MeV 4.1906305 keV 6.2552858 mm  6.6855724 m       World       hIoni
+  292  1.8861512 m  -1.2352382 m  -3.4761521 m   6.6543076 MeV 7.0856239 keV   5.80184 mm  6.6913742 m       World       hIoni
+  293  1.8917636 m  -1.2391195 m  -3.4814414 m   6.6478204 MeV 6.4872239 keV 8.6336687 mm  6.7000079 m       World       hIoni
+  294  1.9062593 m  -1.2492104 m  -3.4953119 m   6.6223235 MeV 24.294702 keV 2.2457913 cm  6.7224658 m       World       hIoni
+  295  1.9156188 m  -1.2557676 m  -3.5044009 m   6.6038441 MeV 17.472096 keV  1.460179 cm  6.7370676 m       World       hIoni
+  296  1.9216125 m  -1.2599218 m  -3.5102224 m   6.5868632 MeV 8.6423444 keV 9.3312766 mm  6.7463989 m       World       hIoni
+  297  1.9216889 m  -1.2599745 m  -3.5102962 m   6.5854214 MeV 96.500684 eV  118.52945 um  6.7465174 m       World       hIoni
+  298  1.9269961 m  -1.2636473 m  -3.5154461 m   6.5714105 MeV 7.2764411 keV 8.2570294 mm  6.7547744 m       World       hIoni
+  299    1.93934 m  -1.2722236 m  -3.5274974 m    6.549478 MeV 21.932514 keV 1.9265719 cm  6.7740401 m       World       hIoni
+  300  1.9433167 m  -1.2750015 m  -3.5313819 m   6.5423594 MeV 7.1185485 keV  6.214567 mm  6.7802547 m       World       hIoni
+  301  1.9440326 m  -1.2755033 m  -3.5320795 m   6.5374878 MeV 985.57894 eV  1.1184779 mm  6.7813732 m       World       hIoni
+  302   1.964504 m  -1.2897866 m  -3.5519929 m   6.5026734 MeV 32.477069 keV 3.1932483 cm  6.8133057 m       World       hIoni
+  303  1.9665331 m  -1.2911913 m  -3.5539572 m   6.4972368 MeV 4.0645686 keV 3.1542144 mm  6.8164599 m       World       hIoni
+  304  1.9763714 m  -1.2979542 m  -3.5635033 m   6.4642207 MeV 16.514213 keV 1.5285983 cm  6.8317459 m       World       hIoni
+  305  1.9791333 m  -1.2998404 m  -3.5661809 m   6.4581297 MeV 3.0091035 keV 4.2843641 mm  6.8360302 m       World       hIoni
+  306  1.9794813 m  -1.3000765 m  -3.5665177 m   6.4565218 MeV 500.73317 eV  538.67724 um  6.8365689 m       World       hIoni
+  307  1.9797027 m  -1.3002271 m  -3.5667321 m   6.4541997 MeV 171.16941 eV  343.04438 um  6.8369119 m       World       hIoni
+  308  1.9869887 m  -1.3051975 m  -3.5737487 m   6.4419999 MeV 11.206735 keV 1.1270566 cm  6.8481825 m       World       hIoni
+  309  1.9907112 m  -1.3077676 m  -3.5773475 m   6.4356578 MeV 6.3420981 keV 5.7804604 mm   6.853963 m       World       hIoni
+  310  1.9996222 m  -1.3137985 m  -3.5858857 m   6.4172289 MeV  16.06359 keV 1.3736266 cm  6.8676992 m       World       hIoni
+  311  2.0040869 m  -1.3167939 m  -3.5901456 m   6.4071948 MeV  6.966036 keV 6.8594534 mm  6.8745587 m       World       hIoni
+  312  2.0111012 m  -1.3215197 m  -3.5968348 m   6.3954545 MeV 11.740253 keV   1.07833 cm   6.885342 m       World       hIoni
+  313  2.0140145 m   -1.323491 m  -3.5996283 m   6.3867891 MeV 4.3899896 keV 4.4919611 mm   6.889834 m       World       hIoni
+  314  2.0163643 m  -1.3250736 m  -3.6018889 m   6.3798951 MeV 4.7229888 keV 3.6244255 mm  6.8934584 m       World       hIoni
+  315  2.0252927 m  -1.3311089 m  -3.6104901 m   6.3638333 MeV 16.061723 keV 1.3788666 cm   6.907247 m       World       Decay
+Track (trackID 2, parentID 1) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = mu+,   Track ID = 276,   Parent ID = 2
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0   2.03 m   -1.33 m   -3.61 m    10.4 MeV     0 eV      0 fm      0 fm      World    initStep
+    1  2.0350922 m   -1.340981 m   -3.610971 m   10.353448 MeV 7.2837311 keV 1.3918331 cm  1.3918331 cm      World      muIoni
+    2  2.0392884 m  -1.3452018 m  -3.6111941 m   10.347407 MeV 4.7595101 keV 5.9558856 mm  1.9874217 cm      World      muIoni
+    3   2.041392 m  -1.3473195 m  -3.6113083 m   10.344384 MeV 1.7886709 keV 2.9871741 mm  2.2861391 cm      World      muIoni
+    4  2.0761587 m  -1.3823027 m  -3.6132409 m   10.311613 MeV 29.717416 keV 4.9359459 cm   7.222085 cm      World      muIoni
+    5  2.0975409 m  -1.4038108 m  -3.6143238 m   10.293809 MeV 15.263945 keV 3.0347716 cm  10.256857 cm      World      muIoni
+    6  2.1077735 m  -1.4141684 m  -3.6148218 m   10.287076 MeV 6.7326584 keV 1.4568362 cm  11.713693 cm      World      muIoni
+    7   2.116453 m  -1.4230473 m  -3.6152087 m    10.27689 MeV 8.8374363 keV 1.2422623 cm  12.955955 cm      World      muIoni
+    8  2.1165398 m  -1.4231362 m  -3.6152123 m   10.276805 MeV 84.359792 eV  124.29382 um  12.968384 cm      World      muIoni
+    9  2.1179917 m  -1.4246267 m  -3.6152726 m   10.274379 MeV 646.18286 eV  2.0816423 mm  13.176549 cm      World      muIoni
+   10  2.1206652 m  -1.4273775 m  -3.6153769 m   10.269504 MeV 3.8459032 keV 3.8373701 mm  13.560286 cm      World      muIoni
+   11  2.1251143 m  -1.4319609 m  -3.6155537 m   10.263247 MeV 4.1693997 keV 6.3901413 mm    14.1993 cm      World      muIoni
+   12  2.1394056 m  -1.4465709 m  -3.6162095 m   10.255272 MeV 7.9750801 keV 2.0448187 cm  16.244119 cm      World      muIoni
+   13  2.1588282 m  -1.4663937 m  -3.6172727 m   10.238749 MeV 16.522715 keV 2.7772687 cm  19.021387 cm      World      muIoni
+   14  2.1672418 m  -1.4749503 m  -3.6177758 m   10.231478 MeV 7.2707462 keV 1.2010747 cm  20.222462 cm      World      muIoni
+   15  2.1755546 m  -1.4834137 m   -3.618264 m    10.22004 MeV 8.4348492 keV 1.1873099 cm  21.409772 cm      World      muIoni
+   16  2.1819534 m  -1.4899464 m  -3.6186464 m   10.212815 MeV  5.312915 keV 9.1524684 mm  22.325019 cm      World      muIoni
+   17  2.1934147 m   -1.501681 m  -3.6192994 m   10.203283 MeV 8.4540509 keV 1.6416185 cm  23.966637 cm      World      muIoni
+   18  2.2492572 m  -1.5591952 m  -3.6223069 m   10.152554 MeV 47.789585 keV  8.022259 cm  31.988896 cm      World      muIoni
+   19  2.2525596 m  -1.5626361 m  -3.6225015 m   10.145923 MeV 2.4454872 keV 4.7732216 mm  32.466218 cm      World      muIoni
+   20  2.2637864 m  -1.5742462 m  -3.6231518 m   10.132411 MeV 7.5420042 keV 1.6163602 cm  34.082578 cm      World      muIoni
+   21  2.2723975 m  -1.5830648 m  -3.6236802 m   10.124115 MeV 6.4162439 keV 1.2336856 cm  35.316264 cm      World      muIoni
+   22  2.2766599 m  -1.5874416 m  -3.6239594 m   10.121596 MeV 2.5191519 keV  6.115704 mm  35.927834 cm      World      muIoni
+   23  2.2810149 m  -1.5919224 m  -3.6242352 m   10.115125 MeV 4.2360884 keV 6.2546133 mm  36.553296 cm      World      muIoni
+   24  2.2835382 m  -1.5945196 m   -3.624394 m   10.110175 MeV 2.5934353 keV 3.6245656 mm  36.915752 cm      World      muIoni
+   25  2.2842835 m  -1.5952857 m  -3.6244404 m   10.109804 MeV 371.20512 eV  1.0698778 mm   37.02274 cm      World      muIoni
+   26  2.2886748 m   -1.599805 m  -3.6247132 m   10.104109 MeV 4.5025385 keV 6.3072727 mm  37.653467 cm      World      muIoni
+   27  2.2949057 m  -1.6062062 m  -3.6251068 m   10.097727 MeV  4.053031 keV 8.9417886 mm  38.547646 cm      World      muIoni
+   28  2.2952175 m  -1.6065255 m  -3.6251265 m   10.096431 MeV 113.60313 eV  446.76831 um  38.592323 cm      World      muIoni
+   29  2.3007398 m  -1.6121783 m  -3.6254549 m    10.09081 MeV 3.2873699 keV 7.9093338 mm  39.383256 cm      World      muIoni
+   30  2.3026679 m  -1.6141491 m   -3.625562 m   10.088476 MeV 1.0495485 keV 2.7590946 mm  39.659166 cm      World      muIoni
+   31  2.3031377 m  -1.6146289 m  -3.6255886 m   10.086951 MeV 224.38183 eV  672.07634 um  39.726373 cm      World      muIoni
+   32  2.3154802 m  -1.6271659 m  -3.6263316 m   10.066504 MeV  11.03924 keV 1.7608764 cm   41.48725 cm      World      muIoni
+   33  2.3183417 m   -1.630065 m  -3.6264945 m   10.061275 MeV 1.8013039 keV 4.0767075 mm  41.894921 cm      World      muIoni
+   34  2.3213474 m  -1.6331067 m  -3.6266618 m   10.058342 MeV 1.1772524 keV 4.2795657 mm  42.322877 cm      World      muIoni
+   35  2.3248344 m  -1.6366268 m  -3.6268614 m   10.056652 MeV 1.6904005 keV 4.9588004 mm  42.818757 cm      World      muIoni
+   36   2.351461 m  -1.6635803 m  -3.6285287 m   10.029675 MeV 21.623096 keV 3.7924746 cm  46.611232 cm      World      muIoni
+   37  2.3569917 m  -1.6692298 m  -3.6288528 m   10.026367 MeV 3.3073496 keV 7.9126266 mm  47.402494 cm      World      muIoni
+   38  2.3631981 m  -1.6755677 m   -3.629197 m    10.00885 MeV 4.8606808 keV 8.8773584 mm   48.29023 cm      World      muIoni
+   39  2.3677448 m  -1.6802285 m  -3.6294564 m   10.005959 MeV 2.8906923 keV 6.5163587 mm  48.941866 cm      World      muIoni
+   40  2.3721441 m   -1.684751 m   -3.629714 m   10.001175 MeV 3.2517518 keV 6.3145439 mm  49.573321 cm      World      muIoni
+   41  2.3836865 m  -1.6966157 m   -3.630435 m   9.9925236 MeV 8.6514518 keV 1.6568666 cm  51.230187 cm      World      muIoni
+   42  2.3922747 m  -1.7054392 m  -3.6309609 m   9.9833331 MeV 8.1681252 keV 1.2324306 cm  52.462618 cm      World      muIoni
+   43  2.3945932 m  -1.7078093 m   -3.631107 m   9.9801068 MeV  2.197013 keV 3.3188109 mm  52.794499 cm      World      muIoni
+   44   2.426041 m  -1.7398363 m  -3.6331517 m   9.9514838 MeV  27.58257 keV 4.4932449 cm  57.287744 cm      World      muIoni
+   45  2.4618969 m  -1.7762408 m  -3.6351843 m   9.9167128 MeV 33.429413 keV 5.1138629 cm  62.401607 cm      World      muIoni
+   46  2.4844533 m  -1.7994137 m  -3.6363166 m   9.8972695 MeV 19.443355 keV 3.2358591 cm  65.637466 cm      World      muIoni
+   47  2.4938604 m  -1.8091119 m  -3.6367833 m   9.8902516 MeV 7.0178542 keV 1.3519228 cm  66.989389 cm      World      muIoni
+   48  2.5036158 m  -1.8191372 m  -3.6372924 m   9.8803748 MeV 8.7310213 keV 1.3997618 cm   68.38915 cm      World      muIoni
+   49  2.5195492 m  -1.8355385 m  -3.6380751 m   9.8655553 MeV 14.819469 keV 2.2880069 cm  70.677157 cm      World      muIoni
+   50  2.5322589 m  -1.8486496 m  -3.6386627 m   9.8559776 MeV 8.4933461 keV 1.8269795 cm  72.504137 cm      World      muIoni
+   51  2.5399112 m  -1.8565374 m  -3.6390289 m   9.8473022 MeV  5.585999 keV 1.0995912 cm  73.603728 cm      World      muIoni
+   52  2.5487243 m   -1.865583 m  -3.6394775 m   9.8379936 MeV 7.5278455 keV 1.2637017 cm   74.86743 cm      World      muIoni
+   53  2.5593575 m  -1.8764293 m  -3.6400335 m   9.8283656 MeV 8.2435196 keV 1.5199322 cm  76.387362 cm      World      muIoni
+   54  2.5661321 m  -1.8832952 m  -3.6403889 m    9.819928 MeV 7.1356394 keV 9.6521074 mm  77.352573 cm      World      muIoni
+   55  2.5897272 m  -1.9070654 m  -3.6416182 m   9.7995583 MeV 17.346733 keV 3.3515462 cm  80.704119 cm      World      muIoni
+   56  2.6023104 m  -1.9197134 m  -3.6422888 m   9.7887908 MeV 7.7394496 keV 1.7853876 cm  82.489506 cm      World      muIoni
+   57  2.6099671 m  -1.9274082 m  -3.6426641 m   9.7817925 MeV 5.9180048 keV 1.0861783 cm  83.575685 cm      World      muIoni
+   58  2.6252545 m  -1.9426788 m   -3.643304 m   9.7696659 MeV 12.126667 keV 2.1617429 cm  85.737427 cm      World      muIoni
+   59  2.6456128 m   -1.962909 m  -3.6441245 m   9.7309152 MeV 16.011244 keV 2.8712476 cm  88.608675 cm      World      muIoni
+   60    2.65566 m  -1.9727037 m  -3.6445308 m    9.721571 MeV 7.9805312 keV 1.4037447 cm   90.01242 cm      World      muIoni
+   61  2.6595157 m  -1.9764452 m  -3.6446965 m   9.7168141 MeV 3.2948895 keV 5.3751947 mm  90.549939 cm      World      muIoni
+   62  2.6797866 m  -1.9960672 m  -3.6456864 m   9.6978389 MeV 17.862935 keV 2.8229945 cm  93.372934 cm      World      muIoni
+   63  2.6933887 m   -2.009152 m  -3.6464462 m   9.6861769 MeV 10.313467 keV 1.8889393 cm  95.261873 cm      World      muIoni
+   64  2.7135764 m    -2.02839 m  -3.6475164 m   9.6709383 MeV 14.133279 keV 2.7907099 cm  98.052583 cm      World      muIoni
+   65  2.7161533 m  -2.0308119 m    -3.64764 m   9.6649085 MeV 3.2910204 keV 3.5384873 mm  98.406432 cm      World      muIoni
+   66  2.7253551 m  -2.0394955 m  -3.6480658 m   9.6560783 MeV 7.0045576 keV 1.2659449 cm  99.672377 cm      World      muIoni
+   67   2.733808 m  -2.0474686 m  -3.6484505 m   9.6274446 MeV  4.506508 keV 1.1626295 cm  1.0083501 m       World      muIoni
+   68  2.7424076 m  -2.0554945 m  -3.6488454 m   9.6199742 MeV 6.4035556 keV 1.1769576 cm  1.0201196 m       World      muIoni
+   69  2.7477138 m  -2.0604633 m  -3.6491071 m   9.6136823 MeV 4.3766451 keV 7.2742255 mm  1.0273939 m       World      muIoni
+   70   2.750891 m  -2.0634431 m  -3.6492595 m    9.609761 MeV  3.921279 keV 4.3585517 mm  1.0317524 m       World      muIoni
+   71  2.7701812 m  -2.0815447 m  -3.6501768 m   9.5872838 MeV 15.156424 keV 2.6469488 cm  1.0582219 m       World      muIoni
+   72  2.7823358 m  -2.0929522 m   -3.650701 m   9.4798241 MeV 7.8327915 keV 1.6677643 cm  1.0748995 m       World      muIoni
+   73   2.786132 m   -2.096467 m  -3.6508726 m   9.4721657 MeV 4.2940083 keV 5.1763554 mm  1.0800759 m       World      muIoni
+   74  2.8044265 m  -2.1134031 m  -3.6516248 m    9.455951 MeV 14.565877 keV 2.4941807 cm  1.1050177 m       World      muIoni
+   75  2.8084318 m   -2.117107 m  -3.6517989 m    9.310155 MeV 3.4013224 keV 5.4581301 mm  1.1104758 m       World      muIoni
+   76  2.8268003 m  -2.1343232 m  -3.6525626 m   9.2948377 MeV 13.716696 keV 2.5187258 cm  1.1356631 m       World      muIoni
+   77   2.833738 m  -2.1408604 m  -3.6528868 m     9.28441 MeV 6.0357173 keV 9.5378734 mm   1.145201 m       World      muIoni
+   78  2.8425951 m  -2.1491561 m  -3.6533082 m   9.2776028 MeV 6.8072239 keV 1.2142747 cm  1.1573437 m       World      muIoni
+   79  2.8456421 m  -2.1520044 m  -3.6534649 m   9.2698266 MeV 1.5182302 keV 4.1739737 mm  1.1615177 m       World      muIoni
+   80  2.8498518 m  -2.1559477 m  -3.6536896 m   9.2656119 MeV  2.849894 keV 5.7724403 mm  1.1672901 m       World      muIoni
+   81  2.8539757 m  -2.1598047 m   -3.653918 m   9.2624769 MeV 3.1350653 keV 5.6511989 mm  1.1729413 m       World      muIoni
+   82  2.8549214 m  -2.1606902 m  -3.6539719 m   9.2608356 MeV 392.93754 eV  1.2966301 mm   1.174238 m       World      muIoni
+   83  2.8712156 m  -2.1758293 m  -3.6549296 m    9.247362 MeV 12.086132 keV 2.2262461 cm  1.1965004 m       World      muIoni
+   84  2.8819206 m  -2.1857725 m   -3.655541 m   9.2350922 MeV 8.4067644 keV 1.4623292 cm  1.2111237 m       World      muIoni
+   85  2.8900823 m  -2.1933105 m  -3.6559579 m   9.2265401 MeV 7.3102826 keV 1.1118006 cm  1.2222417 m       World      muIoni
+   86  2.9046749 m  -2.2067817 m  -3.6565856 m   9.2063899 MeV 15.731672 keV 1.9869895 cm  1.2421116 m       World      muIoni
+   87   2.906281 m   -2.208267 m  -3.6566556 m    9.204081 MeV 1.2883858 keV 2.1888177 mm  1.2443004 m       World      muIoni
+   88  2.9238853 m  -2.2246102 m    -3.65739 m   9.1901224 MeV 13.958586 keV 2.4032505 cm  1.2683329 m       World      muIoni
+   89  2.9349116 m  -2.2348753 m  -3.6579086 m   9.1796094 MeV 8.8760714 keV 1.5073844 cm  1.2834068 m       World      muIoni
+   90  2.9547849 m   -2.253574 m  -3.6588988 m    9.163874 MeV 14.143583 keV  2.730549 cm  1.3107123 m       World      muIoni
+   91  2.9584112 m  -2.2569949 m  -3.6590816 m   9.1585486 MeV 3.8646845 keV 4.9885175 mm  1.3157008 m       World      muIoni
+   92  2.9599561 m  -2.2584551 m  -3.6591567 m     9.15483 MeV 805.14161 eV  2.1271168 mm  1.3178279 m       World      muIoni
+   93  2.9607465 m  -2.2592034 m  -3.6591921 m   9.1428381 MeV 442.26014 eV  1.0890118 mm  1.3189169 m       World      muIoni
+   94  2.9640154 m  -2.2622813 m  -3.6593351 m   9.1399161 MeV 2.9220404 keV 4.4921637 mm  1.3234091 m       World      muIoni
+   95     2.9942 m  -2.2905719 m  -3.6604879 m   9.1156392 MeV 22.541833 keV 4.1386656 cm  1.3647957 m       World      muIoni
+   96  3.0178802 m  -2.3126572 m  -3.6613896 m   9.0978136 MeV 17.825561 keV 3.2393694 cm  1.3971894 m       World      muIoni
+   97  3.0226003 m  -2.3171061 m  -3.6615762 m   9.0925953 MeV 4.0904613 keV 6.4889749 mm  1.4036784 m       World      muIoni
+   98  3.0292867 m  -2.3234489 m  -3.6618355 m   9.0853065 MeV 6.0290126 keV 9.2198888 mm  1.4128983 m       World      muIoni
+   99    3.03396 m  -2.3278807 m  -3.6620144 m   9.0801531 MeV 5.1534703 keV 6.4430404 mm  1.4193413 m       World      muIoni
+  100  3.0385762 m  -2.3322583 m  -3.6621876 m   9.0745923 MeV 3.4177489 keV 6.3641813 mm  1.4257055 m       World      muIoni
+  101  3.0403454 m  -2.3339321 m  -3.6622576 m   9.0705502 MeV 2.6611892 keV 2.4365443 mm  1.4281421 m       World      muIoni
+  102  3.0462827 m  -2.3395536 m  -3.6624885 m    9.062161 MeV 4.7801246 keV 8.1796529 mm  1.4363217 m       World      muIoni
+  103  3.0604863 m  -2.3529811 m  -3.6630104 m   9.0486678 MeV 13.493179 keV 1.9552885 cm  1.4558746 m       World      muIoni
+  104  3.0853919 m  -2.3763344 m  -3.6640926 m   8.9791506 MeV 19.062552 keV  3.415949 cm  1.4900341 m       World      muIoni
+  105  3.0879688 m  -2.3787486 m  -3.6642023 m   8.9735419 MeV 3.8001828 keV 3.5328503 mm  1.4935669 m       World      muIoni
+  106  3.1123012 m  -2.4019557 m  -3.6651531 m   8.9499047 MeV  23.63721 keV 3.3638813 cm  1.5272057 m       World      muIoni
+  107  3.1154406 m  -2.4049627 m  -3.6652776 m   8.9461908 MeV 2.5479435 keV 4.3489342 mm  1.5315547 m       World      muIoni
+  108  3.1169956 m  -2.4064566 m  -3.6653366 m   8.9437877 MeV 1.2167861 keV 2.1571578 mm  1.5337118 m       World      muIoni
+  109  3.1278397 m  -2.4168853 m  -3.6657103 m   8.9305364 MeV 8.5890185 keV 1.5049642 cm  1.5487615 m       World      muIoni
+  110  3.1284451 m  -2.4174712 m  -3.6657334 m   8.9302549 MeV 281.52248 eV  842.89495 um  1.5496044 m       World      muIoni
+  111  3.1388354 m  -2.4277975 m  -3.6661164 m   8.9211067 MeV 7.5174508 keV 1.4654397 cm  1.5642588 m       World      muIoni
+  112  3.1433446 m  -2.4323045 m  -3.6662988 m   8.9136991 MeV 4.5710061 keV 6.3781013 mm  1.5706369 m       World      muIoni
+  113  3.1583702 m  -2.4473871 m  -3.6669629 m   8.8976726 MeV 12.922391 keV 2.1300263 cm  1.5919371 m       World      muIoni
+  114  3.1584154 m  -2.4474326 m  -3.6669651 m   8.8951781 MeV 66.881501 eV   64.18185 um  1.5920013 m       World      muIoni
+  115  3.1814018 m  -2.4707381 m  -3.6681188 m    8.875523 MeV 19.655167 keV 3.2754816 cm  1.6247561 m       World      muIoni
+  116  3.1829129 m  -2.4722755 m  -3.6681952 m   8.8720124 MeV 2.1111031 keV 2.1570263 mm  1.6269132 m       World      muIoni
+  117  3.1884552 m  -2.4779469 m  -3.6684776 m    8.866806 MeV 3.4266327 keV 7.9348995 mm  1.6348481 m       World      muIoni
+  118  3.1886318 m  -2.4781286 m   -3.668487 m   8.8650305 MeV 201.58563 eV  253.60914 um  1.6351017 m       World      muIoni
+  119  3.1895098 m  -2.4790313 m   -3.668533 m   8.8632252 MeV 391.15869 eV  1.2600806 mm  1.6363618 m       World      muIoni
+  120  3.2081067 m   -2.498126 m  -3.6696383 m   8.8438669 MeV 16.468588 keV 2.6677511 cm  1.6630393 m       World      muIoni
+  121  3.2084528 m  -2.4984767 m  -3.6696589 m   8.8437915 MeV 75.392162 eV  493.06853 um  1.6635323 m       World      muIoni
+  122  3.2125672 m  -2.5026441 m  -3.6699059 m   8.8297539 MeV 3.5758429 keV 5.8615254 mm  1.6693939 m       World      muIoni
+  123  3.2165486 m   -2.506669 m  -3.6701497 m   8.8245449 MeV 3.7717554 keV 5.6665715 mm  1.6750604 m       World      muIoni
+  124  3.2228237 m  -2.5130563 m  -3.6705202 m   8.8188279 MeV 4.4909418 keV 8.9617027 mm  1.6840221 m       World      muIoni
+  125  3.2404558 m  -2.5312759 m  -3.6714947 m   8.8001327 MeV 15.742097 keV 2.5373406 cm  1.7093955 m       World      muIoni
+  126  3.2428592 m  -2.5337646 m  -3.6716169 m   8.7972637 MeV 1.8350681 keV 3.4618848 mm  1.7128574 m       World      muIoni
+  127  3.2433468 m  -2.5342694 m  -3.6716417 m   8.7971356 MeV 128.05717 eV  702.26876 um  1.7135597 m       World      muIoni
+  128  3.2436777 m  -2.5346114 m  -3.6716583 m   8.7914431 MeV 1.0529688 keV 476.19941 um  1.7140359 m       World      muIoni
+  129   3.245584 m  -2.5365843 m  -3.6717496 m    8.788294 MeV  1.421956 keV  2.744895 mm  1.7167808 m       World      muIoni
+  130  3.2462918 m  -2.5373174 m  -3.6717819 m   8.7789834 MeV 1.5017532 keV 1.0195879 mm  1.7178004 m       World      muIoni
+  131  3.2516751 m  -2.5428674 m  -3.6720059 m   8.7731205 MeV 3.6998884 keV 7.7351472 mm  1.7255355 m       World      muIoni
+  132  3.2554428 m  -2.5467356 m  -3.6721527 m   8.7673298 MeV 3.7936134 keV 5.4019176 mm  1.7309374 m       World      muIoni
+  133  3.2570584 m  -2.5483942 m  -3.6722117 m   8.7616579 MeV 2.6357959 keV   2.31612 mm  1.7332536 m       World      muIoni
+  134  3.2590617 m  -2.5504659 m  -3.6723007 m    8.760006 MeV 1.6518577 keV 2.8832885 mm  1.7361368 m       World      muIoni
+  135  3.2642398 m  -2.5558222 m  -3.6725652 m   8.7539117 MeV 4.8762046 keV 7.4547112 mm  1.7435916 m       World      muIoni
+  136  3.2811119 m  -2.5731373 m   -3.673399 m   8.7335601 MeV 18.968397 keV 2.4190641 cm  1.7677822 m       World      muIoni
+  137  3.2815989 m  -2.5736364 m  -3.6734224 m   8.7057378 MeV  252.2666 eV  697.69075 um  1.7684799 m       World      muIoni
+  138  3.2836062 m  -2.5757066 m  -3.6735102 m   8.7003301 MeV  1.359314 keV 2.8849526 mm  1.7713648 m       World      muIoni
+  139  3.2910496 m  -2.5834325 m  -3.6738052 m    8.690514 MeV 7.3730427 keV  1.073229 cm  1.7820971 m       World      muIoni
+  140  3.3030052 m  -2.5958646 m  -3.6742731 m   8.6810177 MeV 9.4962596 keV 1.7254422 cm  1.7993516 m       World      muIoni
+  141  3.3056902 m  -2.5986645 m  -3.6743988 m   8.6724979 MeV 1.7191866 keV  3.881309 mm  1.8032329 m       World      muIoni
+  142  3.3076186 m  -2.6006675 m  -3.6744875 m   8.6679266 MeV 2.0941638 keV 2.7818107 mm  1.8060147 m       World      muIoni
+  143  3.3163571 m  -2.6096976 m   -3.674943 m   8.6585323 MeV 8.2970818 keV 1.2574313 cm   1.818589 m       World      muIoni
+  144  3.3246852 m  -2.6182039 m  -3.6754439 m   8.6502437 MeV  5.800023 keV 1.1914905 cm  1.8305039 m       World      muIoni
+  145  3.3333851 m  -2.6270679 m  -3.6760322 m   8.6392157 MeV 9.4205643 keV 1.2434109 cm   1.842938 m       World      muIoni
+  146  3.3355316 m  -2.6292659 m  -3.6761719 m   8.6375546 MeV 1.6610993 keV 3.0754556 mm  1.8460135 m       World      muIoni
+  147  3.3433668 m   -2.637287 m  -3.6766351 m   8.6313706 MeV 6.1840043 keV 1.1222474 cm  1.8572359 m       World      muIoni
+  148  3.3934539 m  -2.6886053 m  -3.6800534 m    8.583479 MeV 46.803698 keV 7.1793562 cm  1.9290295 m       World      muIoni
+  149  3.3955129 m   -2.690689 m  -3.6802105 m   8.5801481 MeV 2.2614876 keV 2.9335882 mm  1.9319631 m       World      muIoni
+  150  3.4097538 m  -2.7050975 m  -3.6813309 m   8.5681251 MeV 12.022944 keV 2.0289666 cm  1.9522527 m       World      muIoni
+  151  3.4185085 m  -2.7138886 m  -3.6820671 m   8.5627537 MeV 5.3714719 keV 1.2428627 cm  1.9646814 m       World      muIoni
+  152  3.4196591 m  -2.7150344 m   -3.682165 m   8.5605158 MeV 530.12203 eV  1.6267471 mm  1.9663081 m       World      muIoni
+  153   3.428222 m  -2.7235895 m  -3.6828853 m   8.5535809 MeV 6.9348812 keV 1.2125831 cm   1.978434 m       World      muIoni
+  154  3.4359049 m  -2.7312609 m  -3.6835626 m   8.5360537 MeV 6.3402392 keV 1.0878222 cm  1.9893122 m       World      muIoni
+  155  3.4403804 m  -2.7356924 m  -3.6839037 m   8.5300218 MeV 4.6623923 keV 6.3075653 mm  1.9956197 m       World      muIoni
+  156  3.4467422 m   -2.741974 m  -3.6843674 m    8.523605 MeV 3.5353694 keV  8.952455 mm  2.0045722 m       World      muIoni
+  157  3.4503577 m   -2.745529 m  -3.6846371 m   8.5158756 MeV  4.571013 keV 5.0776504 mm  2.0096498 m       World      muIoni
+  158  3.4634253 m  -2.7583721 m  -3.6856291 m   8.5041126 MeV 10.083013 keV 1.8349295 cm  2.0279991 m       World      muIoni
+  159  3.4697395 m   -2.764578 m  -3.6861226 m   8.4943884 MeV 5.5966039 keV 8.8672573 mm  2.0368664 m       World      muIoni
+  160  3.4864884 m  -2.7811434 m  -3.6875538 m    8.480174 MeV 12.770394 keV 2.3600779 cm  2.0604672 m       World      muIoni
+  161  3.4903704 m  -2.7849642 m  -3.6878792 m   8.4684433 MeV 4.3228825 keV  5.456593 mm  2.0659238 m       World      muIoni
+  162  3.4979015 m  -2.7923015 m  -3.6885288 m     8.45776 MeV 6.7670297 keV 1.0534533 cm  2.0764583 m       World      muIoni
+  163  3.5090464 m   -2.803112 m  -3.6896131 m   8.4444014 MeV 10.800018 keV 1.5564528 cm  2.0920228 m       World      muIoni
+  164  3.5140265 m   -2.807933 m  -3.6901304 m   8.4354692 MeV 3.6280834 keV 6.9506309 mm  2.0989735 m       World      muIoni
+  165  3.5293296 m  -2.8226734 m  -3.6917473 m   8.4214952 MeV 12.703254 keV 2.1309307 cm  2.1202828 m       World      muIoni
+  166  3.5316572 m  -2.8249095 m  -3.6919938 m   8.4185707 MeV 1.5958715 keV 3.2371263 mm  2.1235199 m       World      muIoni
+  167   3.532575 m  -2.8257903 m  -3.6920886 m   8.4154471 MeV 533.24455 eV  1.2755402 mm  2.1247954 m       World      muIoni
+  168  3.5405654 m  -2.8334215 m  -3.6928948 m   8.4048473 MeV  9.088345 keV 1.1078539 cm   2.135874 m       World      muIoni
+  169  3.5441666 m   -2.836855 m  -3.6932597 m   8.4002325 MeV 3.5918388 keV 4.9890319 mm   2.140863 m       World      muIoni
+  170  3.5573929 m  -2.8494065 m  -3.6946179 m   8.3852366 MeV 13.215556 keV 1.8284596 cm  2.1591476 m       World      muIoni
+  171  3.5763074 m   -2.867529 m  -3.6965634 m   8.3655828 MeV 17.534069 keV 2.6267533 cm  2.1854151 m       World      muIoni
+  172  3.5825073 m  -2.8735027 m  -3.6971928 m   8.3579189 MeV  4.331769 keV  8.632576 mm  2.1940477 m       World      muIoni
+  173  3.5865124 m  -2.8773624 m  -3.6976075 m   8.3531959 MeV 3.1614543 keV  5.577594 mm  2.1996253 m       World      muIoni
+  174  3.5866476 m  -2.8774926 m  -3.6976215 m   8.3515485 MeV 89.097816 eV  188.24427 um  2.1998135 m       World      muIoni
+  175  3.6113138 m  -2.9012573 m  -3.6999578 m   8.3238688 MeV 21.724392 keV 3.4331868 cm  2.2341454 m       World      muIoni
+  176  3.6207411 m  -2.9103166 m    -3.70084 m   8.3107516 MeV 10.194065 keV 1.3104388 cm  2.2472498 m       World      muIoni
+  177  3.6230053 m  -2.9125019 m  -3.7010596 m   8.3086439 MeV 1.0997329 keV 3.1544499 mm  2.2504043 m       World      muIoni
+  178  3.6238303 m     -2.9133 m  -3.7011394 m   8.2999452 MeV 783.91352 eV  1.1505826 mm  2.2515548 m       World      muIoni
+  179  3.6453641 m  -2.9339914 m  -3.7031481 m   8.2773901 MeV 21.439704 keV 2.9931596 cm  2.2814864 m       World      muIoni
+  180  3.6515416 m  -2.9398866 m  -3.7036929 m    8.270392 MeV 5.9642949 keV 8.5563529 mm  2.2900428 m       World      muIoni
+  181  3.6683163 m  -2.9560687 m  -3.7051576 m   8.2552737 MeV 15.118291 keV 2.3353987 cm  2.3133968 m       World      muIoni
+  182  3.6797006 m  -2.9672052 m  -3.7061251 m   8.1258291 MeV 11.009991 keV 1.5955057 cm  2.3293518 m       World      muIoni
+  183  3.7141002 m  -3.0010441 m  -3.7087331 m   8.0946587 MeV 29.634976 keV 4.8325086 cm  2.3776769 m       World      muIoni
+  184  3.7398028 m  -3.0265387 m  -3.7104926 m   8.0679218 MeV 24.865093 keV 3.6245621 cm  2.4139225 m       World      muIoni
+  185  3.7405957 m  -3.0273281 m  -3.7105399 m     8.06602 MeV 537.45852 eV  1.1198365 mm  2.4150424 m       World      muIoni
+  186  3.7529054 m  -3.0395665 m  -3.7111839 m   8.0538778 MeV 10.269936 keV 1.7370274 cm  2.4324126 m       World      muIoni
+  187  3.7551883 m  -3.0418352 m  -3.7113022 m   8.0496763 MeV 3.1731997 keV 3.2206457 mm  2.4356333 m       World      muIoni
+  188  3.7695179 m  -3.0566685 m  -3.7122047 m   8.0337667 MeV 14.316958 keV 2.0644523 cm  2.4562778 m       World      muIoni
+  189  3.7730014 m  -3.0603297 m  -3.7124521 m   8.0038339 MeV 4.7641378 keV 5.0596791 mm  2.4613375 m       World      muIoni
+  190   3.778785 m  -3.0664612 m  -3.7128395 m   7.9981995 MeV 3.8608922 keV 8.4378052 mm  2.4697753 m       World      muIoni
+  191  3.7813753 m  -3.0692135 m  -3.7130124 m   7.9938299 MeV 3.0896982 keV 3.7834528 mm  2.4735588 m       World      muIoni
+  192  3.7829746 m  -3.0709155 m  -3.7131321 m   7.9907549 MeV 1.3197612 keV 2.3386519 mm  2.4758974 m       World      muIoni
+  193  3.7839368 m  -3.0719407 m  -3.7132081 m   7.9884694 MeV  1.138885 keV 1.4080025 mm  2.4773054 m       World      muIoni
+  194  3.8126982 m  -3.1021941 m  -3.7152149 m   7.9589216 MeV 28.493911 keV 4.1792217 cm  2.5190976 m       World      muIoni
+  195   3.829681 m  -3.1199214 m   -3.716321 m   7.9418019 MeV 17.119754 keV 2.4574598 cm  2.5436722 m       World      muIoni
+  196  3.8305107 m  -3.1207859 m  -3.7163767 m   7.9413039 MeV 497.97402 eV  1.1994906 mm  2.5448717 m       World      muIoni
+  197  3.8347719 m  -3.1252204 m  -3.7166704 m    7.934378 MeV 5.8622708 keV 6.1570548 mm  2.5510288 m       World      muIoni
+  198  3.8351235 m  -3.1255846 m  -3.7166955 m   7.9285859 MeV 457.97679 eV   506.8629 um  2.5515356 m       World      muIoni
+  199  3.8367004 m  -3.1272173 m  -3.7168128 m   7.9274738 MeV 1.1120809 keV 2.2729078 mm  2.5538085 m       World      muIoni
+  200  3.8630077 m  -3.1546716 m  -3.7190118 m   7.8994837 MeV 25.693632 keV 3.8088177 cm  2.5918967 m       World      muIoni
+  201  3.8716934 m  -3.1638569 m  -3.7198317 m   7.8924004 MeV 7.0832422 keV 1.2668199 cm  2.6045649 m  OutOfWorld  Transportation
+Track (trackID 276, parentID 2) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.451582(mm),-1.367253(mm),78.509598(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.41494760397(mm),1.9378315476806(mm),79.221365704906(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7487,7 +8281,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.576632(mm),0.22838971(mm),79.192856(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.524494(mm),0.018441128(mm),79.20205(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7496,7 +8290,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.474468(mm),-3.3307995(mm),78.505563(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.502856(mm),1.8330076(mm),79.205865(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7505,7 +8299,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.623826(mm),3.2052283(mm),78.479227(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.207795(mm),3.8200551(mm),78.905238(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7514,7 +8308,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.236336(mm),-1.3915178(mm),78.900206(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.221997(mm),-0.65953794(mm),78.902734(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7523,7 +8317,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.931555(mm),-0.17152281(mm),78.953947(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.079768(mm),-2.7310437(mm),78.927813(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7532,7 +8326,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.694015(mm),-0.20755933(mm),79.172159(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.566305(mm),-1.254574(mm),78.136715(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7543,7 +8337,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 680
-G4PrimaryTransformer::PrimaryVertex (-12.907835(mm),-1.9523967(mm),78.958129(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.812272(mm),0.90637565(mm),79.151307(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7552,7 +8346,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.748242(mm),-1.3919802(mm),78.633616(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.564521(mm),2.9221368(mm),79.018665(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7561,7 +8355,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.205416(mm),-1.678566(mm),78.729331(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.895363(mm),2.0933391(mm),78.784002(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7570,7 +8364,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.530466(mm),1.5884405(mm),78.848343(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.57077(mm),2.0309257(mm),78.488582(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7579,7 +8373,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.33874(mm),1.5850716(mm),79.234803(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.017197(mm),-0.12711642(mm),79.115173(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7588,7 +8382,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.483443(mm),-0.045577738(mm),78.327653(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.173165(mm),-0.99753159(mm),78.558691(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7597,7 +8391,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.555835(mm),0.99037468(mm),79.020196(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.169146(mm),-1.1668451(mm),78.206745(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7606,7 +8400,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.453875(mm),0.079556984(mm),78.509194(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.226204(mm),-2.6876821(mm),78.373011(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7615,7 +8409,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.205793(mm),1.1462906(mm),78.729264(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.25595(mm),-1.502655(mm),78.72042(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7624,7 +8418,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.590879(mm),0.64822323(mm),78.132382(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.008356(mm),1.3375234(mm),79.293059(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7635,7 +8429,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 690
-G4PrimaryTransformer::PrimaryVertex (-12.00193(mm),1.9984028(mm),79.117865(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.901375(mm),0.90265805(mm),78.606614(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7644,7 +8438,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.908427(mm),2.508249(mm),78.429044(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.687686(mm),0.51182995(mm),79.173275(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7653,7 +8447,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.060891(mm),-0.67307468(mm),78.754815(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.835166(mm),3.232225(mm),78.970943(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7662,7 +8456,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.750234(mm),2.499096(mm),79.162246(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.045278(mm),3.33016(mm),78.757568(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7671,7 +8465,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.189917(mm),-1.7047586(mm),78.203083(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.55102(mm),-0.62858471(mm),78.139411(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7680,7 +8474,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.076819(mm),-1.6664896(mm),78.752006(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.375563(mm),1.0130205(mm),78.875656(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7689,7 +8483,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.718851(mm),1.1324296(mm),78.462472(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.823967(mm),1.5375558(mm),79.149245(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7698,7 +8492,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.670115(mm),-0.70547873(mm),78.294738(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.115372(mm),-2.4232362(mm),78.921535(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7707,7 +8501,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.296458(mm),-2.9298289(mm),79.242259(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.796383(mm),-3.5880138(mm),78.625127(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7716,7 +8510,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.144825(mm),2.6309297(mm),78.740015(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.8007(mm),0.10292555(mm),78.271712(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7727,7 +8521,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 700
-G4PrimaryTransformer::PrimaryVertex (-12.365826(mm),-0.45196935(mm),79.0537(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.456743(mm),2.5154199(mm),79.037669(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7736,7 +8530,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.892891(mm),1.730793(mm),78.960764(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.319594(mm),3.0823249(mm),78.356544(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7745,7 +8539,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.601807(mm),-1.3264974(mm),78.306783(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.975557(mm),-0.61665305(mm),78.24088(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7754,7 +8548,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.664833(mm),2.1189542(mm),79.000977(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.352597(mm),-0.80099992(mm),79.056033(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7763,7 +8557,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.498265(mm),3.5702426(mm),79.030348(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.998793(mm),0.031564265(mm),79.294745(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -7772,529 +8566,16 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.97335(mm),-0.36804309(mm),79.122904(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.067964(mm),-3.8604802(mm),78.929894(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
-
-*********************************************************************************************************
-* G4Track Information:   Particle = pi+,   Track ID = 4,   Parent ID = 1
-*********************************************************************************************************
-
-Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
-    0  -1.18 cm   -362 um   7.81 cm   20.4 MeV     0 eV      0 fm      0 fm     Target    initStep
-    1  -1.183075 cm -500.25906 um   7.867585 cm  17.378621 MeV 2.9909939 MeV 575.18324 um  575.18324 um     Target       hIoni
-    2 -1.1852976 cm -625.35494 um  7.9127749 cm  14.381448 MeV 2.9971724 MeV  475.2649 um  1.0504481 mm     Target       hIoni
-    3 -1.1853135 cm -628.19905 um  7.9144101 cm  14.304201 MeV 77.247618 keV 16.605358 um  1.0670535 mm     Target  Transportation
-    4 -2.7391399 cm  1.4911594 cm  1.5152646 m   14.304202 MeV1.607154e-16 eV  1.4522763 m   1.4533433 m  CaptureMgnt       Decay
-Track (trackID 4, parentID 1) is processed with stopping code 2
-
-*********************************************************************************************************
-* G4Track Information:   Particle = mu+,   Track ID = 16,   Parent ID = 4
-*********************************************************************************************************
-
-Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
-    0  -2.74 cm   1.49 cm   1.52 m      21 MeV     0 eV      0 fm      0 fm CaptureMgnt    initStep
-    1 -9.7036204 mm  2.5151716 cm          2 m   20.979635 MeV3.376308e-17 eV   50.06438 cm   50.06438 cm CaptureMgnt  Transportation
-    2 -1.0297758 cm   2.427195 cm  2.0041073 m   20.977199 MeV 1.2055117 keV 4.2422407 mm  50.488604 cm      World      muIoni
-    3 -1.3886602 cm  1.9001031 cm  2.0288899 m   20.964918 MeV 10.091507 keV 2.5589893 cm  53.047593 cm      World      muIoni
-    4   -2.26316 cm  6.4713445 mm  2.0885671 m   20.928588 MeV 18.212208 keV  6.160257 cm   59.20785 cm      World      muIoni
-    5 -3.5967492 cm -1.1808425 cm  2.1774272 m   20.895016 MeV 33.571613 keV  9.169648 cm  68.377498 cm      World      muIoni
-    6  -4.935519 cm -3.0034684 cm   2.265181 m   20.865609 MeV 26.355946 keV 9.0621641 cm  77.439662 cm      World      muIoni
-    7 -5.1471007 cm -3.2947854 cm  2.2791776 m   20.859798 MeV 4.2181516 keV 1.4452293 cm  78.884892 cm      World      muIoni
-    8 -5.2670835 cm -3.4602263 cm    2.28712 m   20.852478 MeV 2.6115363 keV 8.2010748 mm  79.704999 cm      World      muIoni
-    9 -5.3165302 cm -3.5285015 cm  2.2904111 m   20.849174 MeV 775.06874 eV  3.3973564 mm  80.044735 cm      World      muIoni
-   10 -6.9174604 cm -5.6776231 cm  2.3945159 m   20.808933 MeV 33.037285 keV 10.749976 cm   90.79471 cm      World      muIoni
-   11 -7.3752047 cm   -6.28297 cm  2.4238792 m   20.795297 MeV 7.0905155 keV 3.0328244 cm  93.827535 cm      World      muIoni
-   12 -7.7062859 cm -6.7226334 cm  2.4452897 m   20.786406 MeV 7.5780453 keV 2.2106655 cm    96.0382 cm      World      muIoni
-   13 -7.7557322 cm -6.7884235 cm  2.4485053 m    20.78443 MeV 516.20788 eV  3.3192862 mm  96.370129 cm      World      muIoni
-   14 -8.1239239 cm -7.2757207 cm  2.4723323 m   20.772943 MeV 10.303108 keV  2.459732 cm  98.829861 cm      World      muIoni
-   15 -8.6136634 cm -7.9151788 cm  2.5038703 m   20.760054 MeV 10.175265 keV  3.255036 cm   1.020849 m       World      muIoni
-   16 -10.395445 cm -10.238307 cm  2.6191983 m   20.723275 MeV  36.77984 keV 11.898742 cm  1.1398364 m       World      muIoni
-   17 -11.285044 cm -11.379032 cm  2.6763593 m   20.696914 MeV 24.919146 keV 5.8963394 cm  1.1987998 m       World      muIoni
-   18 -11.812194 cm -12.068459 cm  2.7105334 m   20.683355 MeV 12.264509 keV 3.5258935 cm  1.2340587 m       World      muIoni
-   19 -12.452276 cm -12.904417 cm  2.7514741 m    20.67092 MeV 11.416254 keV 4.2273036 cm  1.2763318 m       World      muIoni
-   20 -12.474878 cm -12.933472 cm  2.7528936 m    20.67078 MeV 140.07414 eV  1.4663785 mm  1.2777981 m       World      muIoni
-   21 -13.053244 cm -13.646276 cm  2.7876656 m   20.653584 MeV 10.231971 keV 3.5963541 cm  1.3137617 m       World      muIoni
-   22  -13.23828 cm -13.872461 cm  2.7986908 m   20.649783 MeV 3.8005767 keV 1.1405935 cm  1.3251676 m       World      muIoni
-   23 -13.564648 cm -14.265072 cm  2.8178727 m   20.642591 MeV  5.699377 keV  1.984971 cm  1.3450173 m       World      muIoni
-   24 -13.986257 cm -14.772104 cm  2.8427668 m   20.634397 MeV 8.1937929 keV 2.5752767 cm  1.3707701 m       World      muIoni
-   25 -15.627882 cm -16.806137 cm  2.9417298 m   20.597205 MeV 35.274278 keV 10.235761 cm  1.4731277 m       World      muIoni
-   26 -16.082227 cm -17.380503 cm  2.9693885 m   20.587559 MeV 7.8713242 keV 2.8611905 cm  1.5017396 m       World      muIoni
-   27  -16.61818 cm -18.064729 cm  3.0020793 m   20.576628 MeV 9.4276803 keV 3.3826531 cm  1.5355661 m       World      muIoni
-   28 -16.811829 cm -18.307753 cm  3.0138537 m   20.571242 MeV 4.3931858 keV 1.2177593 cm  1.5477437 m       World      muIoni
-   29 -16.979746 cm  -18.51563 cm  3.0240409 m   20.562754 MeV 5.1637448 keV  1.053179 cm  1.5582755 m       World      muIoni
-   30 -17.132812 cm -18.708461 cm  3.0334202 m   20.551626 MeV 2.7249142 keV 9.6970744 mm  1.5679726 m       World      muIoni
-   31 -18.079275 cm -19.908544 cm  3.0918249 m   20.519473 MeV 18.666378 keV 6.0371737 cm  1.6283443 m       World      muIoni
-   32 -18.309115 cm -20.195068 cm  3.1060307 m   20.514336 MeV 3.7419277 keV 1.4672976 cm  1.6430173 m       World      muIoni
-   33 -18.524257 cm -20.463743 cm  3.1193653 m    20.50845 MeV 4.4539282 keV 1.3771654 cm   1.656789 m       World      muIoni
-   34  -18.99122 cm -21.046121 cm  3.1487284 m   20.500453 MeV 7.9970515 keV 3.0297164 cm  1.6870861 m       World      muIoni
-   35 -19.274777 cm -21.399648 cm  3.1667764 m    20.49385 MeV 5.5551197 keV 1.8608325 cm  1.7056944 m       World      muIoni
-   36 -19.787773 cm -22.036236 cm  3.1993569 m   20.483525 MeV 10.324481 keV 3.3590757 cm  1.7392852 m       World      muIoni
-   37 -20.857214 cm -23.365568 cm  3.2675584 m   20.456623 MeV 26.902242 keV 7.0303498 cm  1.8095887 m       World      muIoni
-   38 -21.743598 cm   -24.4747 cm  3.3256039 m   20.437703 MeV 17.770847 keV 5.9757015 cm  1.8693457 m       World      muIoni
-   39 -21.799531 cm -24.544391 cm  3.3293128 m   20.436282 MeV 1.4208908 keV 3.8150278 mm  1.8731607 m       World      muIoni
-   40 -22.335679 cm -25.219166 cm  3.3650073 m   20.421041 MeV 12.579737 keV 3.6720317 cm  1.9098811 m       World      muIoni
-   41 -22.498958 cm -25.420725 cm  3.3757226 m   20.417209 MeV 2.3667014 keV 1.1024838 cm  1.9209059 m       World      muIoni
-   42 -22.525195 cm -25.453009 cm  3.3774427 m   20.411701 MeV 1.3900703 keV 1.7697011 mm  1.9226756 m       World      muIoni
-   43 -23.112559 cm -26.181925 cm  3.4157538 m   20.298249 MeV 12.769129 keV 3.9438273 cm  1.9621139 m       World      muIoni
-   44 -23.513055 cm -26.671858 cm  3.4418461 m   20.282517 MeV 11.774514 keV 2.6849244 cm  1.9889631 m       World      muIoni
-   45  -23.64739 cm -26.825754 cm  3.4503942 m   20.257837 MeV 5.3830154 keV 8.7887233 mm  1.9977518 m       World      muIoni
-   46 -23.671384 cm -26.852731 cm  3.4518988 m    20.25693 MeV 907.46479 eV  1.5473622 mm  1.9992992 m       World      muIoni
-   47 -23.840027 cm -27.044084 cm  3.4624897 m   20.254008 MeV 2.9222673 keV 1.0893707 cm  2.0101929 m       World      muIoni
-   48  -24.02879 cm  -27.25649 cm  3.4743241 m   20.245334 MeV 4.1982587 keV 1.2170756 cm  2.0223637 m       World      muIoni
-   49 -24.126547 cm -27.367268 cm  3.4805022 m   20.235515 MeV 2.6160416 keV  6.352308 mm   2.028716 m       World      muIoni
-   50 -24.217916 cm -27.471978 cm  3.4862966 m   20.232584 MeV  1.798607 keV 5.9587167 mm  2.0346747 m       World      muIoni
-   51 -24.230651 cm -27.486609 cm  3.4871096 m   20.232499 MeV 85.368989 eV  835.83834 um  2.0355105 m       World      muIoni
-   52 -24.259281 cm -27.519466 cm  3.4889321 m   20.228077 MeV 340.95095 eV  1.8739185 mm  2.0373844 m       World      muIoni
-   53 -24.529874 cm -27.826858 cm  3.5061155 m   20.219968 MeV 7.0549651 keV 1.7664679 cm  2.0550491 m       World      muIoni
-   54 -24.868171 cm -28.216972 cm  3.5278436 m   20.213219 MeV 5.6657012 keV 2.2333283 cm  2.0773824 m       World      muIoni
-   55 -24.984839 cm -28.351833 cm  3.5353713 m   20.210506 MeV 2.7135831 keV 7.7359573 mm  2.0851184 m       World      muIoni
-   56 -25.182044 cm -28.581451 cm  3.5482179 m   20.202344 MeV 7.1671196 keV 1.3198371 cm  2.0983167 m       World      muIoni
-   57 -26.527255 cm  -30.19203 cm  3.6374437 m   20.173258 MeV 27.043428 keV  9.166102 cm  2.1899778 m       World      muIoni
-   58 -27.086008 cm -30.874363 cm  3.6751424 m   20.157468 MeV 14.152327 keV 3.8716694 cm  2.2286944 m       World      muIoni
-   59 -27.200911 cm -31.014527 cm  3.6828711 m   20.151988 MeV 2.9029216 keV  7.938322 mm  2.2366328 m       World      muIoni
-   60 -27.399056 cm -31.256221 cm  3.6961728 m   20.146894 MeV 5.0938624 keV 1.3663917 cm  2.2502967 m       World      muIoni
-   61 -28.520252 cm -32.600934 cm  3.7703585 m   20.119559 MeV 25.818955 keV 7.6224198 cm  2.3265209 m       World      muIoni
-   62 -28.879437 cm -33.016528 cm  3.7932807 m   20.110705 MeV 8.8539367 keV 2.3571239 cm  2.3500921 m       World      muIoni
-   63 -29.454332 cm -33.695445 cm  3.8306501 m   20.097063 MeV 11.573591 keV 3.8413849 cm   2.388506 m       World      muIoni
-   64 -29.727894 cm -34.014648 cm  3.8485104 m    20.08967 MeV  3.820676 keV 1.8348451 cm  2.4068544 m       World      muIoni
-   65  -30.02129 cm -34.355441 cm  3.8676865 m   20.081581 MeV 6.8837537 keV 1.9696357 cm  2.4265508 m       World      muIoni
-   66 -30.432137 cm -34.843251 cm  3.8950017 m   20.063394 MeV 7.6131223 keV 2.8049916 cm  2.4546007 m       World      muIoni
-   67 -30.721473 cm -35.194596 cm  3.9147111 m    20.05295 MeV 6.0087722 keV 2.0228129 cm  2.4748288 m       World      muIoni
-   68 -30.826449 cm -35.320699 cm  3.9218653 m   20.035985 MeV 2.4266127 keV 7.3399863 mm  2.4821688 m       World      muIoni
-   69 -30.894736 cm -35.403973 cm  3.9265303 m   20.030817 MeV 2.8982653 keV 4.7876885 mm  2.4869565 m       World      muIoni
-   70 -31.137433 cm -35.701396 cm  3.9429318 m   20.024469 MeV  6.347238 keV 1.6844745 cm  2.5038012 m       World      muIoni
-   71 -31.291638 cm -35.889172 cm  3.9532274 m   20.020547 MeV 3.9226097 keV 1.0578435 cm  2.5143797 m       World      muIoni
-   72 -32.140352 cm -36.937925 cm  4.0100659 m   19.997653 MeV 19.789341 keV 5.8418058 cm  2.5727977 m       World      muIoni
-   73 -32.185606 cm  -36.99526 cm  4.0131194 m   19.976876 MeV  692.4675 eV  3.1396733 mm  2.5759374 m       World      muIoni
-   74 -32.590324 cm  -37.51596 cm  4.0405583 m   19.968204 MeV  7.542125 keV 2.8220375 cm  2.6041578 m       World      muIoni
-   75 -33.165213 cm -38.283355 cm  4.0802745 m   19.955189 MeV 13.015122 keV 4.0857317 cm  2.6450151 m       World      muIoni
-   76 -33.328907 cm -38.501856 cm  4.0916416 m   19.950925 MeV 4.2642048 keV 1.1690387 cm  2.6567055 m       World      muIoni
-   77 -34.242415 cm -39.708377 cm  4.1560212 m   19.929361 MeV 20.563011 keV 6.6134803 cm  2.7228403 m       World      muIoni
-   78 -34.782314 cm -40.424966 cm  4.1951282 m   19.912815 MeV 14.820938 keV 4.0123115 cm  2.7629634 m       World      muIoni
-   79 -35.506525 cm -41.391686 cm  4.2469307 m   19.887291 MeV 19.523681 keV 5.3192395 cm  2.8161558 m       World      muIoni
-   80  -36.02599 cm -42.098928 cm  4.2841244 m   19.871215 MeV 13.448073 keV 3.8215174 cm   2.854371 m       World      muIoni
-   81 -36.584809 cm -42.887462 cm  4.3249491 m   19.854466 MeV 15.735377 keV 4.1953241 cm  2.8963242 m       World      muIoni
-   82 -36.915639 cm -43.355624 cm  4.3493238 m   19.844459 MeV 8.9240899 keV 2.5039803 cm   2.921364 m       World      muIoni
-   83 -37.356774 cm -43.977197 cm  4.3814733 m   19.833318 MeV 9.9526391 keV 3.3040727 cm  2.9544047 m       World      muIoni
-   84 -37.546855 cm -44.243699 cm  4.3952841 m   19.827997 MeV 4.0927951 keV 1.4193514 cm  2.9685983 m       World      muIoni
-   85  -37.66161 cm -44.403243 cm   4.403595 m   19.824747 MeV 2.1437522 keV 8.5401142 mm  2.9771384 m       World      muIoni
-   86 -37.972236 cm -44.829943 cm  4.4260086 m   19.812127 MeV 8.5457269 keV 2.3026651 cm   3.000165 m       World      muIoni
-   87 -38.870058 cm -46.040549 cm  4.4896156 m   19.787841 MeV 22.211148 keV 6.5368622 cm  3.0655336 m       World      muIoni
-   88 -39.085664 cm -46.326411 cm   4.504618 m   19.783832 MeV 4.0083778 keV 1.5423802 cm  3.0809575 m       World      muIoni
-   89 -39.469904 cm  -46.83512 cm  4.5315141 m   19.774475 MeV 9.3578158 keV  2.764138 cm  3.1085988 m       World      muIoni
-   90 -39.889517 cm -47.390281 cm  4.5610977 m   19.759866 MeV 12.062571 keV 3.0391136 cm    3.13899 m       World      muIoni
-   91 -40.112568 cm -47.683273 cm  4.5767513 m   19.752195 MeV 6.1715897 keV 1.6080898 cm  3.1550709 m       World      muIoni
-   92 -41.161178 cm -49.064865 cm  4.6502419 m   19.719138 MeV 27.490034 keV 7.5510218 cm  3.2305811 m       World      muIoni
-   93 -41.332301 cm -49.296567 cm  4.6625096 m   19.713705 MeV 4.1075904 keV 1.2601337 cm  3.2431824 m       World      muIoni
-   94 -41.525037 cm -49.557883 cm  4.6763256 m   19.708497 MeV 3.7584572 keV 1.4192366 cm  3.2573748 m       World      muIoni
-   95 -41.572243 cm -49.622303 cm  4.6797088 m   19.699535 MeV 1.6650525 keV 3.4762537 mm   3.260851 m       World      muIoni
-   96 -41.590578 cm  -49.64755 cm   4.681024 m   19.689183 MeV 675.46844 eV  1.3516839 mm  3.2622027 m       World      muIoni
-   97 -41.877786 cm -50.046083 cm  4.7015037 m   19.682837 MeV 6.3454127 keV 2.1060621 cm  3.2832633 m       World      muIoni
-   98 -41.883535 cm -50.053953 cm  4.7019097 m   19.680809 MeV  743.0457 eV  417.57967 um  3.2836809 m       World      muIoni
-   99 -42.194521 cm  -50.48611 cm  4.7238885 m   19.672662 MeV 7.0505472 keV 2.2614499 cm  3.3062954 m       World      muIoni
-  100 -42.489165 cm -50.900085 cm  4.7447236 m   19.664501 MeV 6.4598934 keV 2.1445807 cm  3.3277412 m       World      muIoni
-  101 -42.697511 cm  -51.18913 cm  4.7592978 m   19.656583 MeV 5.7318625 keV 1.5003469 cm  3.3427447 m       World      muIoni
-  102 -42.756198 cm -51.269846 cm  4.7634095 m    19.65537 MeV 1.2130723 keV 4.2310353 mm  3.3469757 m       World      muIoni
-  103 -43.302808 cm -52.013959 cm  4.8016403 m   19.637514 MeV 13.723578 keV 3.9330087 cm  3.3863058 m       World      muIoni
-  104  -43.81758 cm -52.741301 cm  4.8386879 m    19.49868 MeV 12.432914 keV  3.810448 cm  3.4244103 m       World      muIoni
-  105 -45.515802 cm -55.256388 cm  4.9684283 m   19.442734 MeV 53.260541 keV 13.324418 cm  3.5576545 m       World      muIoni
-  106 -45.761223 cm  -55.60868 cm  4.9868217 m    19.43809 MeV 4.6442595 keV 1.8887955 cm  3.5765424 m       World      muIoni
-  107 -46.113674 cm -56.118992 cm  5.0133455 m   19.406994 MeV 8.6683528 keV 2.7239257 cm  3.6037817 m       World      muIoni
-  108 -46.876753 cm -57.214764 cm  5.0709932 m   19.383859 MeV 19.798427 keV 5.9174246 cm  3.6629559 m       World      muIoni
-  109 -47.118885 cm -57.551049 cm  5.0889967 m   19.377014 MeV  6.844736 keV 1.8474287 cm  3.6814302 m       World      muIoni
-  110 -49.167596 cm -60.317807 cm  5.2370448 m    19.32657 MeV 46.577251 keV  15.20006 cm  3.8334308 m       World      muIoni
-  111 -50.101572 cm  -61.59348 cm  5.3033735 m   19.298804 MeV 25.316124 keV 6.8187471 cm  3.9016183 m       World      muIoni
-  112 -51.057319 cm -62.885381 cm  5.3700164 m    19.27677 MeV 20.880782 keV 6.8553505 cm  3.9701718 m       World      muIoni
-  113 -51.364603 cm -63.287819 cm  5.3910068 m   19.270322 MeV 5.1375101 keV 2.1592492 cm  3.9917643 m       World      muIoni
-  114 -51.724939 cm  -63.76965 cm  5.4156931 m   19.263482 MeV 6.8399361 keV 2.5408932 cm  4.0171732 m       World      muIoni
-  115 -52.298201 cm -64.559995 cm  5.4556446 m   19.216125 MeV 13.867281 keV 4.1127399 cm  4.0583006 m       World      muIoni
-  116  -52.97305 cm -65.467956 cm    5.50133 m   19.194301 MeV 19.548843 keV 4.7065416 cm   4.105366 m       World      muIoni
-  117  -53.40817 cm -66.038547 cm  5.5305493 m    19.18248 MeV 9.8929144 keV 3.0087671 cm  4.1354537 m       World      muIoni
-  118 -53.489719 cm -66.144208 cm   5.536006 m   19.179934 MeV 1.2106286 keV 5.6175127 mm  4.1410712 m       World      muIoni
-  119 -54.119084 cm  -66.96221 cm  5.5779861 m   19.162637 MeV 15.799453 keV 4.3230388 cm  4.1843016 m       World      muIoni
-  120 -54.228716 cm -67.103964 cm  5.5853086 m   19.157747 MeV 2.7229584 keV 7.5386343 mm  4.1918403 m       World      muIoni
-  121 -54.588885 cm  -67.57305 cm  5.6092609 m   19.148832 MeV 7.6224585 keV 2.4671589 cm  4.2165118 m       World      muIoni
-  122 -54.974473 cm -68.067286 cm  5.6342636 m   19.139574 MeV 6.9342483 keV 2.5776841 cm  4.2422887 m       World      muIoni
-  123 -55.957857 cm -69.279213 cm  5.6944403 m    19.12012 MeV 18.435455 keV 6.2168014 cm  4.3044567 m       World      muIoni
-  124 -56.571801 cm -70.052892 cm  5.7324488 m   19.058434 MeV 15.230668 keV 3.9270954 cm  4.3437277 m       World      muIoni
-  125  -57.73371 cm -71.583701 cm  5.8049326 m   19.027006 MeV 26.706805 keV   7.49888 cm  4.4187165 m       World      muIoni
-  126 -57.770519 cm -71.632815 cm  5.8072423 m   19.025454 MeV 343.12545 eV  2.3898525 mm  4.4211063 m       World      muIoni
-  127 -58.010988 cm -71.951083 cm  5.8223507 m    19.01703 MeV 7.1502313 keV 1.5626174 cm  4.4367325 m       World      muIoni
-  128 -58.322809 cm -72.361636 cm  5.8417821 m    19.00951 MeV 6.3112206 keV 2.0103709 cm  4.4568362 m       World      muIoni
-  129 -58.541237 cm -72.646397 cm  5.8552284 m   19.004871 MeV 4.6383076 keV 1.3916964 cm  4.4707532 m       World      muIoni
-  130  -58.91832 cm -73.137062 cm  5.8781775 m    18.99329 MeV 8.6538797 keV 2.3768876 cm   4.494522 m       World      muIoni
-  131 -59.553406 cm -73.983822 cm  5.9174074 m   18.978157 MeV 13.799087 keV 4.0632863 cm  4.5351549 m       World      muIoni
-  132 -60.549369 cm -75.330954 cm  5.9791249 m   18.955487 MeV 20.081928 keV 6.3951374 cm  4.5991063 m       World      muIoni
-  133 -60.569226 cm -75.358545 cm  5.9803732 m   18.952098 MeV 395.51051 eV  1.2937387 mm     4.6004 m       World      muIoni
-  134 -60.640234 cm -75.457973 cm   5.984872 m   18.945706 MeV 1.8101646 keV 4.6617805 mm  4.6050618 m       World      muIoni
-  135 -60.797347 cm -75.680126 cm  5.9948583 m   18.924157 MeV 3.4574432 keV 1.0350341 cm  4.6154121 m       World      muIoni
-  136 -60.895867 cm -75.818192 cm  6.0010551 m   18.921366 MeV 1.4912857 keV 6.4246878 mm  4.6218368 m       World      muIoni
-  137 -61.205094 cm -76.262642 cm  6.0208299 m   18.911622 MeV 6.8230597 keV 2.0502796 cm  4.6423396 m       World      muIoni
-  138 -61.424523 cm -76.582518 cm  6.0350967 m   18.904982 MeV 3.5997579 keV 1.4784772 cm  4.6571244 m       World      muIoni
-  139 -61.772055 cm -77.077535 cm  6.0574638 m   18.895553 MeV 6.8445766 keV 2.3170486 cm  4.6802949 m       World      muIoni
-  140 -61.801816 cm -77.119201 cm    6.05936 m   18.894012 MeV 549.77462 eV  1.9640706 mm  4.6822589 m       World      muIoni
-  141 -62.100195 cm -77.544685 cm  6.0786684 m   18.884516 MeV 5.8826368 keV   1.99956 cm  4.7022545 m       World      muIoni
-  142 -62.408706 cm -77.981231 cm  6.0985787 m   18.876279 MeV 6.7435088 keV 2.0615371 cm  4.7228699 m       World      muIoni
-  143 -62.670578 cm  -78.34583 cm   6.115357 m   18.865185 MeV 5.7387936 keV 1.7368519 cm  4.7402384 m       World      muIoni
-  144 -62.844129 cm   -78.5894 cm  6.1264156 m   18.860919 MeV 4.2658442 keV 1.1455835 cm  4.7516943 m       World      muIoni
-  145  -62.89217 cm -78.656407 cm  6.1294647 m   18.858916 MeV 798.18615 eV  3.1586589 mm  4.7548529 m       World      muIoni
-  146 -63.203569 cm -79.086446 cm  6.1490876 m   18.848596 MeV 7.7783983 keV  2.032855 cm  4.7751815 m       World      muIoni
-  147 -63.602978 cm -79.641259 cm  6.1743961 m   18.830135 MeV 6.4215237 keV 2.6215582 cm  4.8013971 m       World      muIoni
-  148 -64.324277 cm -80.658574 cm   6.220408 m   18.811636 MeV 16.977804 keV 4.7672163 cm  4.8490692 m       World      muIoni
-  149 -64.327052 cm -80.662571 cm  6.2205878 m   18.810129 MeV 57.771307 eV  186.26675 um  4.8492555 m       World      muIoni
-  150 -64.781287 cm -81.304792 cm  6.2496862 m   18.796629 MeV   11.4734 keV 3.0142971 cm  4.8793985 m       World      muIoni
-  151 -64.931751 cm  -81.51793 cm  6.2592868 m   18.783105 MeV 3.5780177 keV 9.9487861 mm  4.8893472 m       World      muIoni
-  152 -65.120533 cm -81.790239 cm   6.271457 m   18.778375 MeV 3.5092955 keV 1.2613222 cm  4.9019605 m       World      muIoni
-  153   -65.7801 cm -82.731629 cm  6.3138889 m   18.759966 MeV 16.521651 keV 4.3961412 cm  4.9459219 m       World      muIoni
-  154 -65.998926 cm -83.042595 cm  6.3279207 m   18.750863 MeV 7.7021547 keV 1.4537948 cm  4.9604598 m       World      muIoni
-  155 -66.043738 cm -83.105886 cm  6.3307686 m    18.74863 MeV 621.49031 eV  2.9515443 mm  4.9634114 m       World      muIoni
-  156  -66.76571 cm -84.120137 cm  6.3767173 m   18.730263 MeV  17.20754 keV  4.760562 cm   5.011017 m       World      muIoni
-  157 -66.810682 cm -84.182421 cm  6.3795594 m   18.725058 MeV 816.96425 eV  2.9441012 mm  5.0139611 m       World      muIoni
-  158 -67.057459 cm -84.520063 cm  6.3950486 m   18.716715 MeV  6.959834 keV 1.6043883 cm   5.030005 m       World      muIoni
-  159 -67.113144 cm -84.596343 cm  6.3985539 m   18.715137 MeV 1.5778019 keV 3.6303621 mm  5.0336353 m       World      muIoni
-  160 -67.494007 cm -85.114638 cm  6.4224471 m   18.703423 MeV 6.3469457 keV 2.4743822 cm  5.0583792 m       World      muIoni
-  161 -67.708585 cm  -85.40617 cm   6.435912 m   18.699447 MeV 3.9756336 keV 1.3942977 cm  5.0723221 m       World      muIoni
-  162 -67.820842 cm -85.558504 cm  6.4429383 m   18.695758 MeV 1.8828438 keV 7.2766036 mm  5.0795987 m       World      muIoni
-  163  -68.03372 cm -85.851428 cm   6.456349 m   18.689726 MeV 3.9629432 keV 1.3891041 cm  5.0934898 m       World      muIoni
-  164 -69.060249 cm -87.261367 cm  6.5216276 m   18.664159 MeV 25.566574 keV 6.7568634 cm  5.1610584 m       World      muIoni
-  165 -69.210127 cm -87.470641 cm  6.5312949 m    18.65946 MeV  4.699069 keV 1.0004209 cm  5.1710626 m       World      muIoni
-  166 -69.874133 cm -88.394507 cm  6.5738323 m    18.64202 MeV 15.924423 keV 4.4032816 cm  5.2150954 m       World      muIoni
-  167 -69.979756 cm -88.542051 cm   6.580601 m   18.638551 MeV 3.4684885 keV 7.0076667 mm  5.2221031 m       World      muIoni
-  168 -71.817024 cm -90.994438 cm  6.6948378 m   18.594412 MeV 41.185659 keV 11.827676 cm  5.3403799 m       World      muIoni
-  169 -71.992121 cm -91.219233 cm  6.7055368 m   18.588592 MeV 3.6934613 keV 1.1071909 cm  5.3514518 m       World      muIoni
-  170 -72.095113 cm -91.351544 cm  6.7118211 m   18.583372 MeV 3.7106466 keV 6.5041594 mm  5.3579559 m       World      muIoni
-  171 -72.123776 cm -91.388341 cm  6.7135642 m   18.582554 MeV 817.66553 eV  1.8043901 mm  5.3597603 m       World      muIoni
-  172 -72.297679 cm -91.610399 cm  6.7241346 m   18.500118 MeV 2.7196633 keV 1.0940272 cm  5.3707006 m       World      muIoni
-  173 -72.443089 cm -91.786412 cm  6.7327022 m   18.492429 MeV 2.2437487 keV 8.8666019 mm  5.3795672 m       World      muIoni
-  174 -72.466329 cm -91.814747 cm  6.7340748 m   18.491134 MeV 1.2951394 keV 1.4206559 mm  5.3809879 m       World      muIoni
-  175 -72.596385 cm -91.975203 cm  6.7394359 m   18.489119 MeV 934.47613 eV  5.8139735 mm  5.3868018 m       World      muIoni
-  176 -72.964315 cm   -92.4358 cm   6.748266 m   18.482572 MeV 5.2516887 keV 1.0617179 cm   5.397419 m       World      muIoni
-  177 -73.538304 cm -93.155021 cm  6.7620143 m   18.476043 MeV 5.5329128 keV 1.6543591 cm  5.4139626 m       World      muIoni
-  178 -73.776053 cm -93.454668 cm  6.7677177 m   18.473087 MeV  1.516892 keV 6.8672844 mm  5.4208299 m       World      muIoni
-  179  -74.22813 cm -94.025849 cm   6.778562 m   18.464107 MeV 5.6051266 keV 1.3063721 cm  5.4338936 m       World      muIoni
-  180 -74.266485 cm -94.074327 cm   6.779481 m    18.46285 MeV 121.80437 eV  1.1075553 mm  5.4350012 m       World      muIoni
-  181 -74.326057 cm -94.149748 cm  6.7809097 m   18.461391 MeV 456.70968 eV  1.7219545 mm  5.4367231 m       World      muIoni
-  182 -74.929292 cm -94.923446 cm  6.7954846 m   18.455918 MeV 4.3094002 keV 1.7569256 cm  5.4542924 m       World      muIoni
-  183 -75.894666 cm -96.167502 cm  6.8189368 m   18.444139 MeV 10.629905 keV 2.8248384 cm  5.4825408 m       World      muIoni
-  184 -78.692581 cm -99.733704 cm   6.886666 m   18.415091 MeV  26.69506 keV  8.149829 cm   5.564039 m       World      muIoni
-  185 -78.869287 cm -99.959128 cm  6.8909347 m   18.413596 MeV 1.4954682 keV 5.1405693 mm  5.5691796 m       World      muIoni
-  186 -79.034902 cm -1.0017046 m   6.8949396 m   18.399406 MeV  1.739859 keV 4.8216489 mm  5.5740013 m       World      muIoni
-  187 -79.547454 cm -1.0081758 m   6.9072688 m    18.39372 MeV  4.628841 keV 1.4837717 cm   5.588839 m       World      muIoni
-  188 -80.401134 cm -1.0189653 m   6.9278059 m   18.382027 MeV 10.227588 keV 2.4719752 cm  5.6135587 m       World      muIoni
-  189 -80.514849 cm -1.0204082 m    6.930548 m   18.379146 MeV 1.4486825 keV 3.3005937 mm  5.6168593 m       World      muIoni
-  190 -81.068225 cm  -1.027463 m    6.943961 m    18.36508 MeV 7.6070511 keV 1.6133963 cm  5.6329933 m       World      muIoni
-  191 -81.079602 cm -1.0276124 m    6.944244 m   18.363205 MeV 98.820211 eV  339.67693 um   5.633333 m       World      muIoni
-  192 -82.842974 cm -1.0509005 m   6.9885318 m   18.344052 MeV 16.974503 keV  5.305398 cm  5.6863869 m       World      muIoni
-  193 -83.374892 cm -1.0579104 m   7.0017997 m   18.334905 MeV 6.5557107 keV 1.5920686 cm  5.7023076 m       World      muIoni
-  194  -83.68143 cm -1.0619511 m   7.0094454 m   18.330856 MeV 2.4966171 keV 9.1751036 mm  5.7114827 m       World      muIoni
-  195 -84.798555 cm -1.0768116 m   7.0375484 m    18.32037 MeV 8.9038226 keV 3.3695919 cm  5.7451787 m       World      muIoni
-  196 -85.020876 cm -1.0798002 m   7.0432023 m   18.316097 MeV 2.2409427 keV 6.7705937 mm  5.7519492 m       World      muIoni
-  197 -86.028219 cm -1.0933882 m   7.0689877 m   18.303225 MeV 11.576135 keV 3.0838266 cm  5.7827875 m       World      muIoni
-  198 -86.367096 cm -1.0979318 m   7.0776545 m   18.298434 MeV 3.5381011 keV  1.035574 cm  5.7931433 m       World      muIoni
-  199  -89.54524 cm -1.1406827 m   7.1587923 m   18.267883 MeV 28.414993 keV 9.7063132 cm  5.8902064 m       World      muIoni
-  200 -90.110185 cm -1.1482174 m   7.1731343 m   18.252823 MeV 5.9187564 keV 1.7157524 cm  5.9073639 m       World      muIoni
-  201 -90.570721 cm -1.1543331 m   7.1848045 m   18.236888 MeV 5.6158446 keV 1.3957287 cm  5.9213212 m       World      muIoni
-  202 -90.727328 cm  -1.156411 m   7.1887729 m   18.234108 MeV 1.6429705 keV 4.7453419 mm  5.9260665 m       World      muIoni
-  203 -91.635999 cm -1.1684538 m   7.2116724 m   18.222159 MeV 11.948715 keV 2.7422373 cm  5.9534889 m       World      muIoni
-  204 -91.763743 cm -1.1701441 m   7.2148878 m   18.221278 MeV 881.43358 eV  3.8507506 mm  5.9573397 m       World      muIoni
-  205 -93.075701 cm -1.1876084 m   7.2479999 m   18.205762 MeV 15.515943 keV 3.9667916 cm  5.9970076 m       World      muIoni
-  206 -93.590096 cm -1.1944842 m   7.2610629 m   18.199936 MeV 4.7341865 keV 1.5632648 cm  6.0126402 m       World      muIoni
-  207 -94.458273 cm -1.2062009 m   7.2831882 m   18.187109 MeV 11.346987 keV 2.6498781 cm   6.039139 m       World      muIoni
-  208 -94.709963 cm -1.2096153 m   7.2895814 m   18.182405 MeV 2.6054792 keV 7.6724799 mm  6.0468115 m       World      muIoni
-  209 -96.867199 cm  -1.238834 m    7.344229 m   18.156593 MeV 23.266287 keV  6.561645 cm  6.1124279 m       World      muIoni
-  210 -97.040913 cm -1.2412026 m   7.3486948 m   18.151551 MeV 1.2774391 keV 5.3452282 mm  6.1177732 m       World      muIoni
-  211 -97.543506 cm -1.2480235 m   7.3615929 m   18.143852 MeV  6.685532 keV 1.5431966 cm  6.1332051 m       World      muIoni
-  212 -98.648624 cm -1.2630837 m    7.390171 m   18.129916 MeV 12.339748 keV  3.414169 cm  6.1673468 m       World      muIoni
-  213 -98.694641 cm -1.2637105 m   7.3913726 m   18.126858 MeV 759.24971 eV  1.4312661 mm  6.1687781 m       World      muIoni
-  214 -99.703253 cm -1.2773904 m    7.417675 m   18.112229 MeV 9.8481479 keV 3.1315955 cm   6.200094 m       World      muIoni
-  215  -99.72156 cm -1.2776401 m   7.4181569 m   18.112062 MeV 166.44783 eV  572.78136 um  6.2006668 m       World      muIoni
-  216 -99.724372 cm -1.2776785 m   7.4182309 m   18.111003 MeV 43.604428 eV  87.953857 um  6.2007548 m       World      muIoni
-  217 -1.0072657 m  -1.2913441 m   7.4445917 m    18.08597 MeV 11.869097 keV 3.1338339 cm  6.2320931 m       World      muIoni
-  218 -1.0317919 m  -1.3250888 m   7.5096912 m   18.060876 MeV 23.746966 keV 7.7319385 cm  6.3094125 m       World      muIoni
-  219  -1.034435 m  -1.3287187 m    7.516665 m   18.057029 MeV 2.8294354 keV 8.2942722 mm  6.3177068 m       World      muIoni
-  220 -1.0483309 m  -1.3476825 m   7.5530347 m   18.040509 MeV 16.519311 keV 4.3307005 cm  6.3610138 m       World      muIoni
-  221 -1.0606646 m  -1.3645471 m   7.5852447 m   18.025813 MeV 13.451577 keV 3.8393071 cm  6.3994068 m       World      muIoni
-  222 -1.0626379 m   -1.367212 m   7.5903405 m   18.023547 MeV 959.21281 eV  6.0797295 mm  6.4054866 m       World      muIoni
-  223 -1.0670426 m  -1.3731241 m   7.6017017 m   18.017079 MeV 4.8019611 keV 1.3543792 cm  6.4190304 m       World      muIoni
-  224 -1.0712108 m  -1.3785942 m   7.6123186 m   18.012282 MeV  4.796376 keV 1.2649649 cm    6.43168 m       World      muIoni
-  225 -1.0921835 m  -1.4061775 m   7.6656126 m   17.984297 MeV 26.595202 keV 6.3568813 cm  6.4952488 m       World      muIoni
-  226   -1.09463 m  -1.4093947 m   7.6717954 m   17.980298 MeV 2.3136187 keV 7.3867478 mm  6.5026356 m       World      muIoni
-  227 -1.0960201 m  -1.4112226 m   7.6753121 m    17.97507 MeV 1.5988336 keV  4.200008 mm  6.5068356 m       World      muIoni
-  228 -1.0966466 m  -1.4120478 m   7.6769037 m   17.963769 MeV 271.22146 eV  1.8991635 mm  6.5087347 m       World      muIoni
-  229 -1.0981094 m  -1.4139708 m   7.6806151 m   17.960482 MeV 1.5742998 keV 4.4285631 mm  6.5131633 m       World      muIoni
-  230 -1.1006367 m  -1.4172871 m    7.687024 m   17.958577 MeV 1.9045892 keV 7.6458638 mm  6.5208092 m       World      muIoni
-  231  -1.106897 m  -1.4254905 m   7.7028734 m   17.949274 MeV 7.9359612 keV 1.8912745 cm  6.5397219 m       World      muIoni
-  232 -1.1559733 m  -1.4893849 m   7.8275375 m   17.888625 MeV 59.553477 keV 14.843484 cm  6.6881568 m       World      muIoni
-  233   -1.17322 m  -1.5120442 m   7.8717636 m   17.871088 MeV 16.521208 keV 5.2601076 cm  6.7407578 m       World      muIoni
-  234 -1.1797957 m  -1.5207647 m   7.8888327 m   17.861131 MeV 8.4205112 keV  2.026429 cm  6.7610221 m       World      muIoni
-  235 -1.1905849 m  -1.5350991 m   7.9168244 m   17.847601 MeV 10.995367 keV 3.3247881 cm    6.79427 m       World      muIoni
-  236 -1.1959893 m  -1.5422516 m   7.9308267 m   17.835378 MeV 6.3443853 keV 1.6626336 cm  6.8108963 m       World      muIoni
-  237 -1.2032301 m  -1.5518195 m   7.9496307 m   17.824561 MeV 8.7837956 keV 2.2306096 cm  6.8332024 m       World      muIoni
-  238 -1.2037808 m  -1.5525498 m   7.9510573 m   17.821821 MeV 799.78392 eV  1.6946388 mm  6.8348971 m       World      muIoni
-  239 -1.2257088 m  -1.5814395 m   8.0077119 m   17.792479 MeV 22.719776 keV 6.7270082 cm  6.9021672 m       World      muIoni
-  240 -1.2426295 m  -1.6036077 m   8.0517438 m   17.771137 MeV 18.652343 keV 5.2120839 cm   6.954288 m       World      muIoni
-  241 -1.2473122 m  -1.6097368 m   8.0639497 m   17.763143 MeV 5.0900447 keV 1.4438757 cm  6.9687268 m       World      muIoni
-  242 -1.2531977 m  -1.6174516 m   8.0792395 m   17.753016 MeV 7.8024212 keV 1.8108967 cm  6.9868357 m       World      muIoni
-  243 -1.2554547 m  -1.6204191 m   8.0851014 m    17.74983 MeV 2.0144749 keV 6.9471231 mm  6.9937828 m       World      muIoni
-  244  -1.263914 m  -1.6314517 m   8.1069127 m   17.738628 MeV 8.3193528 keV 2.5865318 cm  7.0196482 m       World      muIoni
-  245 -1.2661651 m   -1.634392 m   8.1127162 m   17.716475 MeV 2.0158316 keV 6.8842533 mm  7.0265324 m       World      muIoni
-  246 -1.2705564 m  -1.6401508 m   8.1240091 m   17.711423 MeV 3.7422882 keV 1.3415617 cm   7.039948 m       World      muIoni
-  247  -1.271521 m  -1.6414214 m   8.1264904 m   17.707106 MeV 1.4597921 keV 2.9498793 mm  7.0428979 m       World      muIoni
-  248  -1.286233 m  -1.6610933 m   8.1646494 m   17.687593 MeV 16.966652 keV 4.5382299 cm  7.0882802 m       World      muIoni
-  249 -1.2922168 m  -1.6691949 m   8.1803322 m   17.674816 MeV 8.4337363 keV 1.8638487 cm  7.1069187 m       World      muIoni
-  250 -1.2939366 m  -1.6715288 m   8.1848325 m   17.671553 MeV 1.8036056 keV 5.3532967 mm   7.112272 m       World      muIoni
-  251 -1.2974166 m  -1.6762312 m   8.1939067 m    17.66607 MeV 4.0401574 keV 1.0796444 cm  7.1230684 m       World      muIoni
-  252 -1.3114182 m  -1.6950468 m   8.2306012 m   17.647548 MeV 17.516689 keV  4.354972 cm  7.1666182 m       World      muIoni
-  253 -1.3154251 m  -1.7004066 m   8.2411198 m   17.640119 MeV 4.8839052 keV 1.2466886 cm   7.179085 m       World      muIoni
-  254 -1.3206028 m   -1.707311 m   8.2546464 m   17.632044 MeV 5.8362184 keV 1.6045254 cm  7.1951303 m       World      muIoni
-  255 -1.3241892 m   -1.712087 m   8.2639844 m   17.623364 MeV 3.9348253 keV 1.1084706 cm   7.206215 m       World      muIoni
-  256 -1.3257639 m  -1.7141932 m   8.2681095 m   17.619297 MeV 2.7532614 keV 4.8920698 mm  7.2111071 m       World      muIoni
-  257 -1.3310224 m    -1.72124 m   8.2818775 m   17.609786 MeV 8.0641466 keV 1.6336009 cm  7.2274431 m       World      muIoni
-  258 -1.3417492 m  -1.7355902 m   8.3098127 m   17.597458 MeV 10.749203 keV 3.3187057 cm  7.2606301 m       World      muIoni
-  259 -1.3426764 m  -1.7368338 m   8.3122329 m   17.595423 MeV  888.3562 eV  2.8746613 mm  7.2635048 m       World      muIoni
-  260 -1.3427687 m  -1.7369578 m   8.3124744 m   17.592294 MeV 144.14354 eV  286.65405 um  7.2637915 m       World      muIoni
-  261 -1.3633647 m  -1.7648681 m   8.3670035 m    17.56676 MeV  24.45212 keV 6.4627188 cm  7.3284186 m       World      muIoni
-  262 -1.3667123 m  -1.7693342 m   8.3757693 m   17.562918 MeV 2.7564155 keV 1.0391898 cm  7.3388105 m       World      muIoni
-  263  -1.372538 m  -1.7770414 m   8.3909501 m   17.552559 MeV 8.1779405 keV 1.7994426 cm   7.356805 m       World      muIoni
-  264 -1.3901336 m  -1.8002325 m   8.4365678 m   17.530549 MeV 20.654111 keV 5.4115057 cm    7.41092 m       World      muIoni
-  265 -1.3921882 m  -1.8029372 m   8.4418895 m   17.526891 MeV 2.2869575 keV 6.3131888 mm  7.4172332 m       World      muIoni
-  266 -1.3966817 m  -1.8089017 m   8.4536188 m   17.518604 MeV 5.3544259 keV 1.3904911 cm  7.4311381 m       World      muIoni
-  267 -1.4228674 m  -1.8440947 m   8.5222295 m   17.485662 MeV 30.614668 keV 8.1435789 cm  7.5125739 m       World      muIoni
-  268 -1.4308256 m  -1.8549003 m    8.543072 m   17.474452 MeV 9.9633509 keV 2.4789233 cm  7.5373631 m       World      muIoni
-  269 -1.4309318 m  -1.8550448 m   8.5433502 m   17.471709 MeV 49.508716 eV  330.92306 um  7.5376941 m       World      muIoni
-  270 -1.4326489 m  -1.8573814 m   8.5478357 m   17.463217 MeV 1.1238988 keV 5.3412158 mm  7.5430353 m       World      muIoni
-  271  -1.441459 m  -1.8693088 m   8.5707314 m   17.452062 MeV 9.0327054 keV 2.7278175 cm  7.5703135 m       World      muIoni
-  272 -1.4423545 m  -1.8705151 m   8.5730464 m   17.434186 MeV 741.83485 eV  2.7597511 mm  7.5730732 m       World      muIoni
-  273 -1.4466623 m  -1.8762669 m   8.5841107 m   17.427812 MeV 4.7341961 keV 1.3193114 cm  7.5862663 m       World      muIoni
-  274 -1.4479308 m   -1.877942 m    8.587331 m   17.424395 MeV 972.53405 eV  3.8451761 mm  7.5901115 m       World      muIoni
-  275 -1.4515495 m  -1.8826787 m   8.5964375 m   17.417393 MeV 5.9710633 keV 1.0883958 cm  7.6009955 m       World      muIoni
-  276 -1.4556932 m  -1.8880815 m   8.6068438 m   17.342301 MeV 2.3487214 keV 1.2435879 cm  7.6134313 m       World      muIoni
-  277 -1.4699993 m   -1.907263 m    8.642984 m   17.325432 MeV 15.535947 keV 4.3344981 cm  7.6567763 m       World      muIoni
-  278 -1.4746882 m  -1.9136988 m   8.6549301 m   17.316918 MeV 5.7735387 keV  1.435667 cm   7.671133 m       World      muIoni
-  279 -1.4957971 m  -1.9423712 m   8.7085341 m   17.294896 MeV 22.022719 keV 6.4351716 cm  7.7354847 m       World      muIoni
-  280 -1.5096443 m  -1.9611854 m   8.7435544 m    17.28104 MeV 13.855311 keV 4.2096942 cm  7.7775816 m       World      muIoni
-  281 -1.5161776 m  -1.9701632 m   8.7601176 m   17.269651 MeV 10.143698 keV 1.9940607 cm  7.7975223 m       World      muIoni
-  282 -1.5264257 m   -1.984401 m    8.786275 m   17.255397 MeV 12.269862 keV 3.1495268 cm  7.8290175 m       World      muIoni
-  283 -1.5271649 m  -1.9854332 m   8.7881739 m   17.254378 MeV 1.0187671 keV 2.2843272 mm  7.8313019 m       World      muIoni
-  284 -1.5575509 m  -2.0273043 m   8.8659808 m   17.218154 MeV 35.145088 keV 9.3437634 cm  7.9247395 m       World      muIoni
-  285 -1.5616401 m  -2.0328726 m   8.8763549 m   17.210129 MeV 5.9551666 keV 1.2463995 cm  7.9372035 m       World      muIoni
-  286 -1.5744773 m  -2.0502413 m     8.90891 m   17.174453 MeV 15.661886 keV 3.9068047 cm  7.9762715 m       World      muIoni
-  287  -1.582299 m  -2.0607045 m   8.9285851 m   17.162696 MeV 10.618301 keV 2.3617175 cm  7.9998887 m       World      muIoni
-  288 -1.5894318 m  -2.0702424 m   8.9466398 m   17.151392 MeV 5.6061379 keV 2.1629181 cm  8.0215179 m       World      muIoni
-  289 -1.5943359 m   -2.076808 m    8.959096 m   17.145282 MeV 6.1094285 keV 1.4910219 cm  8.0364281 m       World      muIoni
-  290 -1.5961275 m  -2.0792177 m   8.9636485 m   17.142106 MeV 1.9188251 keV 5.4535802 mm  8.0418817 m       World      muIoni
-  291 -1.6232772 m  -2.1160615 m   9.0329624 m   17.106314 MeV 32.694345 keV 8.3060985 cm  8.1249427 m       World      muIoni
-  292 -1.6620371 m  -2.1679939 m   9.1308621 m     17.0561 MeV 47.684304 keV 11.740567 cm  8.2423483 m       World      muIoni
-  293 -1.6848293 m  -2.1985629 m   9.1880973 m   17.023522 MeV 26.856947 keV 6.8774185 cm  8.3111225 m       World      muIoni
-  294 -1.6853923 m  -2.1993115 m    9.189504 m   17.023032 MeV 489.40616 eV  1.6900289 mm  8.3128125 m       World      muIoni
-  295 -1.6899134 m  -2.2053409 m   9.2007916 m   17.016651 MeV 3.9249685 keV 1.3572185 cm  8.3263847 m       World      muIoni
-  296 -1.6913485 m  -2.2072591 m   9.2043755 m   17.012968 MeV 1.5849379 keV  4.310837 mm  8.3306956 m       World      muIoni
-  297 -1.6930791 m  -2.2095475 m   9.2086232 m   17.009833 MeV 2.1262052 keV 5.1259245 mm  8.3358215 m       World      muIoni
-  298 -1.6995508 m  -2.2181922 m   9.2245416 m   17.000872 MeV 5.2472944 keV 1.9235673 cm  8.3550572 m       World      muIoni
-  299 -1.7133856 m  -2.2365469 m    9.258325 m   16.979186 MeV  19.33157 keV 4.0861117 cm  8.3959183 m       World      muIoni
-  300 -1.7254053 m  -2.2520519 m   9.2869593 m   16.966178 MeV 11.795786 keV 3.4710373 cm  8.4306287 m       World      muIoni
-  301 -1.7284919 m  -2.2560033 m   9.2942561 m   16.959805 MeV 1.8830215 keV 8.8534558 mm  8.4394821 m       World      muIoni
-  302 -1.7304299 m  -2.2584776 m   9.2988412 m   16.953487 MeV 3.1885884 keV 5.5588288 mm  8.4450409 m       World      muIoni
-  303 -1.7382293 m  -2.2683791 m   9.3172457 m   16.938585 MeV 11.909002 keV 2.2306921 cm  8.4673479 m       World      muIoni
-  304 -1.7396513 m  -2.2701849 m   9.3205973 m   16.936396 MeV 657.43888 eV  4.0640647 mm  8.4714119 m       World      muIoni
-  305 -1.7431334 m  -2.2746246 m   9.3288334 m   16.933234 MeV 3.1621191 keV 9.9834647 mm  8.4813954 m       World      muIoni
-  306 -1.7440431 m  -2.2757891 m   9.3309905 m   16.910027 MeV 543.57607 eV  2.6146527 mm    8.48401 m       World      muIoni
-  307 -1.7561661 m  -2.2914205 m   9.3601229 m   16.892086 MeV 13.646981 keV 3.5213864 cm  8.5192239 m       World      muIoni
-  308  -1.759606 m  -2.2957794 m   9.3683203 m   16.880823 MeV 4.7647086 keV 9.9010658 mm   8.529125 m       World      muIoni
-  309 -1.7662837 m  -2.3041972 m   9.3842308 m    16.87202 MeV 7.4240356 keV 1.9198802 cm  8.5483238 m       World      muIoni
-  310 -1.7682097 m  -2.3065995 m   9.3887941 m   16.865813 MeV 2.8172805 keV  5.504947 mm  8.5538287 m       World      muIoni
-  311 -1.7773013 m  -2.3180419 m   9.4104725 m     16.8538 MeV 10.085775 keV 2.6144705 cm  8.5799734 m       World      muIoni
-  312 -1.7814698 m   -2.323339 m   9.4204595 m   16.846369 MeV 5.1257494 keV 1.2048896 cm  8.5920223 m       World      muIoni
-  313 -1.7951724 m  -2.3408738 m   9.4535675 m   16.831624 MeV 13.383268 keV 3.9892122 cm  8.6319144 m       World      muIoni
-  314 -1.7979425 m  -2.3444118 m   9.4602281 m   16.825716 MeV 2.6444515 keV  8.034586 mm   8.639949 m       World      muIoni
-  315 -1.7980776 m  -2.3445842 m   9.4605528 m   16.824512 MeV 66.312662 eV  391.64826 um  8.6403407 m       World      muIoni
-  316 -1.8003326 m  -2.3474735 m   9.4659748 m   16.817636 MeV 971.24802 eV  6.5445507 mm  8.6468852 m       World      muIoni
-  317 -1.8052303 m  -2.3537485 m   9.4777736 m   16.809673 MeV 4.8279337 keV 1.4232936 cm  8.6611182 m       World      muIoni
-  318 -1.8090597 m  -2.3585788 m   9.4868827 m   16.802958 MeV 4.9856907 keV 1.0998683 cm  8.6721168 m       World      muIoni
-  319 -1.8181218 m  -2.3699644 m   9.5083528 m   16.788872 MeV 12.197143 keV 2.5936966 cm  8.6980538 m       World      muIoni
-  320  -1.829124 m  -2.3838609 m   9.5344977 m    16.77331 MeV 12.866303 keV 3.1586689 cm  8.7296405 m       World      muIoni
-  321 -1.8431624 m  -2.4016413 m   9.5677409 m   16.756713 MeV  14.37379 keV 4.0228656 cm  8.7698692 m       World      muIoni
-  322 -1.8520198 m  -2.4128692 m   9.5887307 m   16.746566 MeV 9.0690635 keV 2.5398782 cm  8.7952679 m       World      muIoni
-  323 -1.8542179 m  -2.4156521 m   9.5939485 m   16.742945 MeV 1.9899568 keV  6.308819 mm  8.8015768 m       World      muIoni
-  324 -1.8579947 m  -2.4204361 m   9.6029439 m   16.727941 MeV 7.0583961 keV 1.0865884 cm  8.8124426 m       World      muIoni
-  325 -1.8630989 m  -2.4269026 m   9.6151834 m   16.720382 MeV  5.446852 keV 1.4753817 cm  8.8271965 m       World      muIoni
-  326 -1.8680465 m  -2.4332176 m   9.6271547 m    16.70473 MeV 4.0449992 keV  1.441078 cm  8.8416072 m       World      muIoni
-  327 -1.8704933 m  -2.4363359 m   9.6330907 m   16.699954 MeV 2.7357377 keV 7.1376967 mm  8.8487449 m       World      muIoni
-  328 -1.8707511 m  -2.4366635 m   9.6337138 m   16.696627 MeV 47.651058 eV  749.73665 um  8.8494947 m       World      muIoni
-  329 -1.8854599 m  -2.4552317 m   9.6688427 m   16.678464 MeV 16.175859 keV 4.2369575 cm  8.8918643 m       World      muIoni
-  330 -1.8977858 m  -2.4709479 m   9.6984876 m   16.663296 MeV 13.188239 keV 3.5745756 cm    8.92761 m       World      muIoni
-  331 -1.9046137 m  -2.4797235 m   9.7149162 m   16.653768 MeV 8.5098762 keV 1.9837682 cm  8.9474477 m       World      muIoni
-  332 -1.9166713 m  -2.4953347 m   9.7440574 m   16.640013 MeV 13.754389 keV 3.5189652 cm  8.9826373 m       World      muIoni
-  333 -1.9237915 m  -2.5046455 m   9.7612959 m   16.631019 MeV 7.0920597 keV 2.0845974 cm  9.0034833 m       World      muIoni
-  334 -1.9284588 m  -2.5107593 m   9.7725829 m   16.620428 MeV 6.4628916 keV 1.3658668 cm   9.017142 m       World      muIoni
-  335 -1.9290072 m  -2.5114804 m   9.7739077 m   16.619811 MeV 617.50019 eV  1.6049503 mm  9.0187469 m       World      muIoni
-  336 -1.9327542 m  -2.5164153 m   9.7829678 m   16.614781 MeV 3.7955162 keV 1.0976288 cm  9.0297232 m       World      muIoni
-  337 -1.9339851 m  -2.5180448 m   9.7859579 m   16.610496 MeV 2.5906353 keV 3.6209101 mm  9.0333441 m       World      muIoni
-  338 -1.9350898 m  -2.5195122 m   9.7886536 m   16.605358 MeV 1.2786587 keV 3.2619618 mm  9.0366061 m       World      muIoni
-  339 -1.9350987 m  -2.5195241 m   9.7886753 m   16.605358 MeV         0 eV  26.341066 um  9.0366324 m       World      muIoni
-  340 -1.9432463 m  -2.5304541 m    9.808656 m   16.595794 MeV 7.3879105 keV 2.4188396 cm  9.0608208 m       World      muIoni
-  341 -1.9479245 m  -2.5367261 m    9.820123 m   16.586953 MeV 5.7445432 keV 1.3882233 cm  9.0747031 m       World      muIoni
-  342 -1.9522933 m   -2.542626 m   9.8309087 m   16.579388 MeV 6.2360884 keV 1.3047104 cm  9.0877502 m       World      muIoni
-  343  -1.972928 m  -2.5707675 m   9.8822675 m   16.545385 MeV 22.509548 keV 6.2092866 cm   9.149843 m       World      muIoni
-  344 -1.9761608 m  -2.5752074 m   9.8903349 m   16.542662 MeV 2.7224364 keV 9.7594601 mm  9.1596025 m       World      muIoni
-  345 -1.9789855 m  -2.5790817 m   9.8973806 m   16.539853 MeV 2.8093149 keV 8.5223379 mm  9.1681248 m       World      muIoni
-  346 -1.9917966 m  -2.5967861 m   9.9292703 m    16.51584 MeV 17.442314 keV 3.8659244 cm  9.2067841 m       World      muIoni
-  347 -1.9967051 m  -2.6035528 m   9.9414842 m   16.510126 MeV 4.6719997 keV 1.4800747 cm  9.2215848 m       World      muIoni
-  348 -2.0053129 m  -2.6154268 m   9.9628404 m    16.49627 MeV 10.197177 keV 2.5907145 cm   9.247492 m       World      muIoni
-  349 -2.0105343 m  -2.6226476 m   9.9757657 m   16.489036 MeV 5.1378768 keV 1.5699208 cm  9.2631912 m       World      muIoni
-  350 -2.0254013 m  -2.6432956 m   10.012428 m   16.472529 MeV 16.506721 keV  4.462631 cm  9.3078175 m       World      muIoni
-  351 -2.0351539 m  -2.6569451 m    10.03684 m   16.460397 MeV 12.131775 keV 2.9620638 cm  9.3374381 m       World      muIoni
-  352 -2.0420355 m   -2.666574 m   10.054148 m   16.450272 MeV 9.0291666 keV  2.096759 cm  9.3584057 m       World      muIoni
-  353 -2.0453354 m  -2.6712018 m   10.062428 m    16.43712 MeV 3.7918771 keV 1.0042715 cm  9.3684484 m       World      muIoni
-  354 -2.0456746 m  -2.6716813 m   10.063279 m   16.435566 MeV  256.1487 eV  1.0341154 mm  9.3694825 m       World      muIoni
-  355 -2.0477728 m  -2.6746368 m   10.068529 m   16.416071 MeV 2.4632874 keV 6.3798203 mm  9.3758624 m       World      muIoni
-  356 -2.0504919 m  -2.6784655 m   10.075346 m   16.412665 MeV 2.2080285 keV 8.2780624 mm  9.3841404 m       World      muIoni
-  357 -2.0589367 m  -2.6904406 m   10.096715 m   16.399926 MeV 8.7031477 keV 2.5910308 cm  9.4100507 m       World      muIoni
-  358 -2.0607756 m  -2.6930507 m   10.101387 m   16.392305 MeV 1.4109892 keV 5.6591725 mm  9.4157099 m       World      muIoni
-  359 -2.0622321 m   -2.695122 m   10.105089 m   16.388846 MeV 1.4719703 keV 4.4851811 mm  9.4201951 m       World      muIoni
-  360 -2.0668291 m  -2.7017487 m   10.116953 m   16.368204 MeV 5.1304482 keV 1.4345333 cm  9.4345404 m       World      muIoni
-  361 -2.0673012 m  -2.7024322 m   10.118176 m   16.360072 MeV 1.0389325 keV  1.478628 mm   9.436019 m       World      muIoni
-  362 -2.0694003 m  -2.7054565 m   10.123589 m    16.34162 MeV 2.8004307 keV 6.5463591 mm  9.4425654 m       World      muIoni
-  363 -2.0738845 m  -2.7119558 m   10.135204 m   16.330293 MeV 4.7291953 keV 1.4044991 cm  9.4566104 m       World      muIoni
-  364 -2.0743002 m  -2.7125596 m   10.136278 m   16.326887 MeV 1.2468806 keV 1.3002747 mm  9.4579107 m       World      muIoni
-  365 -2.0761482 m  -2.7152515 m   10.141065 m   16.325234 MeV 1.6528637 keV 5.7945263 mm  9.4637052 m       World      muIoni
-  366 -2.0790569 m  -2.7194837 m   10.148578 m    16.31183 MeV 3.5472572 keV 9.0999569 mm  9.4728052 m       World      muIoni
-  367 -2.0963914 m  -2.7448487 m   10.193444 m   16.292289 MeV 17.575633 keV 5.4376922 cm  9.5271821 m       World      muIoni
-  368 -2.1055302 m  -2.7582397 m   10.216933 m   16.272541 MeV 12.929323 keV 2.8541274 cm  9.5557234 m       World      muIoni
-  369 -2.1067037 m  -2.7599765 m   10.219977 m   16.270244 MeV 982.61868 eV  3.6956521 mm   9.559419 m       World      muIoni
-  370 -2.1191416 m  -2.7784819 m   10.252317 m    16.25551 MeV 13.438454 keV  3.928171 cm  9.5987007 m       World      muIoni
-  371 -2.1216162 m  -2.7822027 m    10.25881 m   16.245226 MeV 3.9654191 keV 7.8820889 mm  9.6065828 m       World      muIoni
-  372 -2.1365915 m  -2.8047281 m   10.298347 m   16.225975 MeV 19.251449 keV 4.7904439 cm  9.6544872 m       World      muIoni
-  373 -2.1402254 m  -2.8101857 m   10.307951 m   16.219658 MeV 5.0780925 keV 1.1629155 cm  9.6661164 m       World      muIoni
-  374 -2.1463109 m  -2.8193315 m   10.324098 m   16.210703 MeV 6.9034117 keV 1.9529199 cm  9.6856456 m       World      muIoni
-  375 -2.1487077 m   -2.822926 m   10.330462 m   16.206846 MeV 2.4113812 keV 7.6920152 mm  9.6933376 m       World      muIoni
-  376 -2.1519033 m  -2.8277356 m   10.338955 m   16.203544 MeV  3.301642 keV 1.0270281 cm  9.7036079 m       World      muIoni
-  377 -2.1588844 m  -2.8383211 m    10.35753 m   16.191601 MeV  10.30618 keV  2.249047 cm  9.7260984 m       World      muIoni
-  378 -2.1777604 m   -2.867262 m   10.408259 m   16.125089 MeV 24.056204 keV 6.1378512 cm  9.7874769 m       World      muIoni
-  379 -2.1779393 m  -2.8675401 m   10.408745 m   16.123646 MeV 242.86598 eV  588.17195 um   9.788065 m       World      muIoni
-  380 -2.1795245 m  -2.8700062 m   10.413038 m   16.115337 MeV 2.0728684 keV 5.1982523 mm  9.7932633 m       World      muIoni
-  381 -2.1800424 m  -2.8708161 m   10.414443 m    16.11282 MeV 146.14038 eV   1.703007 mm  9.7949663 m       World      muIoni
-  382 -2.1879255 m  -2.8832115 m   10.435956 m   16.100054 MeV 11.509302 keV 2.6049282 cm  9.8210156 m       World      muIoni
-  383 -2.2092887 m  -2.9173111 m   10.494807 m   16.069713 MeV  29.06327 keV 7.1293548 cm  9.8923091 m       World      muIoni
-  384 -2.2114566 m  -2.9207714 m   10.500763 m   16.063602 MeV 3.4787936 keV 7.2212522 mm  9.8995304 m       World      muIoni
-  385 -2.2186069 m  -2.9321972 m   10.520529 m   16.051809 MeV 11.792796 keV 2.3924011 cm  9.9234544 m       World      muIoni
-  386 -2.2200715 m   -2.934514 m    10.52455 m   16.045259 MeV 2.2317657 keV 4.8665012 mm  9.9283209 m       World      muIoni
-  387 -2.2225482 m  -2.9384268 m   10.531367 m   16.041786 MeV 2.4762525 keV 8.2414877 mm  9.9365624 m       World      muIoni
-  388 -2.2711751 m  -3.0145286 m    10.66342 m   15.978708 MeV 63.078153 keV 15.998509 cm  10.096547 m       World      muIoni
-  389 -2.2753703 m  -3.0210042 m   10.674667 m   15.972931 MeV 4.7386479 keV 1.3639068 cm  10.110187 m       World      muIoni
-  390 -2.2787591 m  -3.0262106 m    10.68372 m   15.965315 MeV 3.5235007 keV 1.0979897 cm  10.121166 m       World      muIoni
-  391 -2.2830519 m  -3.0327639 m   10.695205 m   15.953113 MeV 8.0771554 keV 1.3902136 cm  10.135069 m       World      muIoni
-  392 -2.2835771 m  -3.0335718 m   10.696625 m    15.95155 MeV 460.25106 eV  1.7158735 mm  10.136784 m       World      muIoni
-  393 -2.2836098 m  -3.0336221 m   10.696713 m   15.947893 MeV 11.991967 eV  107.08343 um  10.136892 m       World      muIoni
-  394 -2.2879178 m  -3.0402721 m   10.708401 m   15.940027 MeV 5.4015966 keV 1.4120148 cm  10.151012 m       World      muIoni
-  395 -2.2893643 m  -3.0424957 m   10.712303 m   15.936922 MeV  2.114502 keV 4.7186524 mm   10.15573 m       World      muIoni
-  396 -2.3028516 m  -3.0632668 m   10.748823 m   15.914638 MeV 20.206315 keV 4.4125778 cm  10.199856 m       World      muIoni
-  397 -2.3225126 m  -3.0937817 m   10.802259 m   15.884387 MeV 28.196441 keV  6.460135 cm  10.264457 m       World      muIoni
-  398 -2.3262137 m   -3.099667 m    10.81222 m   15.875861 MeV  5.568187 keV 1.2147343 cm  10.276605 m       World      muIoni
-  399 -2.3296349 m  -3.1051279 m   10.821469 m   15.854269 MeV 5.3963183 keV 1.1272971 cm  10.287878 m       World      muIoni
-  400 -2.3307437 m  -3.1069265 m   10.824495 m   15.825412 MeV 1.1392532 keV 3.6907168 mm  10.291568 m       World      muIoni
-  401 -2.3354629 m  -3.1145877 m   10.837257 m   15.820529 MeV 4.8827773 keV 1.5614557 cm  10.307183 m       World      muIoni
-  402 -2.3391794 m  -3.1205796 m   10.847214 m   15.812227 MeV 4.8900499 keV 1.2200999 cm  10.319384 m       World      muIoni
-  403 -2.3434476 m  -3.1274333 m   10.858626 m   15.804873 MeV 6.3293751 keV 1.3979393 cm  10.333363 m       World      muIoni
-  404 -2.3456796 m  -3.1308803 m   10.864488 m   15.799395 MeV 3.5653747 keV 7.1577133 mm  10.340521 m       World      muIoni
-  405 -2.3549226 m  -3.1451251 m   10.888695 m    15.78154 MeV 10.846097 keV 2.9568757 cm   10.37009 m       World      muIoni
-  406  -2.365249 m  -3.1608967 m   10.915728 m    15.76514 MeV 13.716828 keV 3.2956773 cm  10.403047 m       World      muIoni
-  407 -2.3839556 m  -3.1893486 m   10.964375 m   15.733224 MeV 25.675553 keV 5.9381135 cm  10.462428 m       World      muIoni
-  408 -2.3858174 m  -3.1921745 m   10.969178 m    15.72919 MeV 1.2489435 keV 5.8749792 mm  10.468303 m       World      muIoni
-  409 -2.3886576 m   -3.196484 m   10.976513 m   15.723316 MeV 3.6267738 keV 8.9689986 mm  10.477272 m       World      muIoni
-  410 -2.3932738 m  -3.2034716 m   10.988502 m    15.71705 MeV 4.8600775 keV 1.4624342 cm  10.491896 m       World      muIoni
-  411 -2.4020434 m  -3.2165974 m   11.011241 m   15.701077 MeV 12.394629 keV 2.7681348 cm  10.519577 m       World      muIoni
-  412 -2.4104033 m  -3.2289641 m   11.032638 m   15.683447 MeV  10.18602 keV 2.6089168 cm  10.545667 m       World      muIoni
-  413 -2.4120112 m  -3.2313392 m   11.036711 m   15.679958 MeV 1.3629886 keV 4.9815666 mm  10.550648 m       World      muIoni
-  414 -2.4374714 m  -3.2686371 m   11.100644 m   15.645832 MeV 31.830808 keV  7.827528 cm  10.628924 m       World      muIoni
-  415 -2.4446318 m  -3.2791118 m   11.118588 m    15.63518 MeV 7.2676006 keV 2.1976553 cm    10.6509 m       World      muIoni
-  416  -2.462553 m  -3.3048656 m   11.163513 m   15.611343 MeV 20.936387 keV 5.4797445 cm  10.705697 m       World      muIoni
-  417 -2.4639871 m   -3.306924 m   11.167125 m    15.60862 MeV  1.133002 keV 4.3974258 mm  10.710095 m       World      muIoni
-  418 -2.4640357 m  -3.3069937 m   11.167248 m   15.606516 MeV 13.530232 eV  149.08698 um  10.710244 m       World      muIoni
-  419 -2.4709792 m  -3.3169678 m   11.184813 m   15.594992 MeV 7.3699737 keV  2.135955 cm  10.731604 m       World      muIoni
-  420 -2.4769442 m  -3.3255347 m    11.19988 m   15.587052 MeV 5.9663013 keV 1.8330488 cm  10.749934 m       World      muIoni
-  421   -2.47765 m  -3.3265474 m   11.201659 m   15.586169 MeV 882.91881 eV  2.1654491 mm  10.752099 m       World      muIoni
-  422 -2.4829689 m  -3.3342023 m   11.215158 m   15.565593 MeV  5.836825 keV 1.6404258 cm  10.768504 m       World      muIoni
-  423 -2.5092348 m  -3.3718076 m   11.282008 m    15.53235 MeV 31.827135 keV 8.1075131 cm  10.849579 m       World      muIoni
-  424 -2.5128221 m   -3.376944 m    11.29113 m   15.526287 MeV 5.0550861 keV 1.1065696 cm  10.860645 m       World      muIoni
-  425 -2.5175285 m  -3.3837341 m   11.303141 m   15.516118 MeV 5.5621103 keV 1.4578703 cm  10.875223 m       World      muIoni
-  426 -2.5285305 m  -3.3997383 m   11.331622 m   15.493342 MeV 13.149743 keV 3.4472658 cm  10.909696 m       World      muIoni
-  427  -2.533966 m  -3.4076836 m   11.345663 m   15.429533 MeV 6.0808996 keV 1.7024234 cm   10.92672 m       World      muIoni
-  428  -2.548497 m  -3.4287243 m   11.382547 m   15.410518 MeV  16.92615 keV 4.4880448 cm  10.971601 m       World      muIoni
-  429 -2.5536506 m  -3.4362566 m   11.395717 m   15.404548 MeV 5.9700235 keV 1.6023617 cm  10.987624 m       World      muIoni
-  430 -2.5588932 m  -3.4439616 m   11.409128 m   15.392058 MeV 7.3282383 keV 1.6331256 cm  11.003955 m       World      muIoni
-  431 -2.5752459 m  -3.4675239 m   11.450185 m   15.373926 MeV 16.743659 keV 5.0083013 cm  11.054039 m       World      muIoni
-  432 -2.5808675 m  -3.4756029 m   11.464271 m   15.364889 MeV 7.3809744 keV 1.7183729 cm  11.071222 m       World      muIoni
-  433 -2.5809839 m  -3.4757717 m   11.464565 m   15.364646 MeV  243.0425 eV  358.23349 um   11.07158 m       World      muIoni
-  434 -2.5917307 m   -3.491247 m   11.491457 m    15.34961 MeV 11.878446 keV 3.2835396 cm  11.104416 m       World      muIoni
-  435 -2.6027731 m  -3.5070441 m   11.518958 m   15.316511 MeV 13.753245 keV  3.358319 cm  11.137999 m       World      muIoni
-  436 -2.6070997 m  -3.5132222 m   11.529697 m   15.257219 MeV 4.4501762 keV 1.3122741 cm  11.151122 m       World      muIoni
-  437 -2.6169025 m   -3.527157 m   11.554147 m    15.24527 MeV 10.813874 keV 2.9801275 cm  11.180923 m       World      muIoni
-  438 -2.6291343 m  -3.5447785 m   11.585025 m   15.229587 MeV 14.614272 keV 3.7597671 cm  11.218521 m       World      muIoni
-  439 -2.6298877 m  -3.5458627 m   11.586928 m   15.226099 MeV 991.33954 eV  2.3163452 mm  11.220837 m       World      muIoni
-  440  -2.630907 m  -3.5473249 m   11.589498 m   15.222391 MeV 1.3005422 keV 3.1269653 mm  11.223964 m       World      muIoni
-  441 -2.6349999 m  -3.5532174 m    11.59986 m   15.216583 MeV 4.4893976 keV 1.2603732 cm  11.236568 m       World      muIoni
-  442 -2.6496346 m   -3.574477 m   11.637158 m   15.195845 MeV 19.327609 keV 4.5357957 cm  11.281926 m       World      muIoni
-  443 -2.6537734 m  -3.5804725 m   11.647649 m   15.189427 MeV 6.4175134 keV 1.2772448 cm  11.294698 m       World      muIoni
-  444 -2.6582852 m   -3.586965 m   11.659025 m   15.171928 MeV 6.7422032 keV  1.385346 cm  11.308552 m       World      muIoni
-  445 -2.6621566 m  -3.5925434 m   11.668773 m   15.166212 MeV 5.7164449 keV  1.187988 cm  11.320432 m       World      muIoni
-  446   -2.66612 m  -3.5982504 m   11.678782 m   15.159757 MeV 5.3283815 keV 1.2183911 cm  11.332615 m       World      muIoni
-  447 -2.6802137 m  -3.6184678 m   11.714417 m   15.139559 MeV  20.19834 keV 4.3327586 cm  11.375943 m       World      muIoni
-  448 -2.6824886 m  -3.6216999 m   11.720159 m   15.136035 MeV 2.1746514 keV 6.9703695 mm  11.382913 m       World      muIoni
-  449 -2.6934259 m  -3.6372603 m   11.747844 m   15.122831 MeV 12.037251 keV 3.3589401 cm  11.416503 m       World      muIoni
-  450 -2.6934489 m  -3.6372928 m   11.747902 m   15.119774 MeV 75.660477 eV  70.297393 um  11.416573 m       World      muIoni
-  451 -2.6946295 m  -3.6389617 m   11.750891 m   15.114707 MeV 1.1418293 keV 3.6212381 mm  11.420194 m       World      muIoni
-  452 -2.7036142 m  -3.6515985 m    11.77359 m   15.101976 MeV 11.645138 keV 2.7489597 cm  11.447684 m       World      muIoni
-  453 -2.7064428 m  -3.6555723 m   11.780733 m   15.095521 MeV 4.3592994 keV 8.6488714 mm  11.456333 m       World      muIoni
-  454 -2.7164199 m  -3.6695767 m   11.805893 m   15.084436 MeV 9.6833066 keV 3.0474688 cm  11.486807 m       World      muIoni
-  455 -2.7293994 m  -3.6877761 m   11.838495 m   15.062988 MeV 18.832964 keV 3.9529838 cm  11.526337 m       World      muIoni
-  456 -2.7462617 m  -3.7112313 m   11.880433 m   15.040818 MeV 18.176262 keV 5.0924935 cm  11.577262 m       World      muIoni
-  457 -2.7543732 m  -3.7226564 m   11.900795 m    15.03028 MeV  9.312029 keV 2.4716792 cm  11.601979 m       World      muIoni
-  458 -2.7575425 m  -3.7271189 m   11.908786 m   15.018254 MeV  3.179168 keV 9.6863577 mm  11.611665 m       World      muIoni
-  459 -2.7669782 m  -3.7403871 m   11.932821 m   15.004767 MeV 12.292848 keV 2.9030194 cm  11.640696 m       World      muIoni
-  460 -2.7711895 m  -3.7462641 m   11.943518 m    14.99369 MeV 5.2551702 keV 1.2911152 cm  11.653607 m       World      muIoni
-  461 -2.7745787 m  -3.7510043 m    11.95212 m   14.988346 MeV  4.017773 keV 1.0389853 cm  11.663997 m       World      muIoni
-  462  -2.777999 m   -3.755775 m   11.960768 m   14.983541 MeV 3.5635177 keV 1.0452075 cm  11.674449 m       World      muIoni
-  463 -2.7801761 m   -3.758837 m   11.966316 m    14.96878 MeV 1.8003613 keV 6.7007245 mm  11.681149 m       World      muIoni
-  464  -2.780757 m  -3.7596529 m   11.967798 m    14.96794 MeV 840.16624 eV  1.7887194 mm  11.682938 m       World      muIoni
-  465 -2.8087832 m  -3.7994623 m   12.040452 m   14.937028 MeV 30.911928 keV 8.7458563 cm  11.770397 m       World      muIoni
-  466 -2.8113748 m  -3.8031979 m   12.047227 m   14.932326 MeV 3.5940684 keV 8.1592746 mm  11.778556 m       World      muIoni
-  467 -2.8150738 m  -3.8085541 m   12.056943 m    14.92728 MeV 5.0458715 keV 1.1694968 cm  11.790251 m       World      muIoni
-  468 -2.8349894 m  -3.8376729 m   12.109752 m   14.902666 MeV 24.613435 keV 6.3509558 cm   11.85376 m       World      muIoni
-  469 -2.8360079 m  -3.8391516 m   12.112438 m   14.901249 MeV 1.4169187 keV 3.2308487 mm  11.856991 m       World      muIoni
-  470 -2.8376874 m  -3.8415936 m    12.11687 m   14.897776 MeV 2.3086591 keV 5.3310516 mm  11.862322 m       World      muIoni
-  471 -2.8423884 m  -3.8483485 m   12.129166 m   14.892149 MeV 4.3495731 keV 1.4795994 cm  11.877118 m       World      muIoni
-  472 -2.8474404 m  -3.8555859 m   12.142421 m   14.885393 MeV 6.7552748 keV 1.5925177 cm  11.893044 m       World      muIoni
-  473 -2.8494498 m   -3.858446 m   12.147657 m   14.881876 MeV 1.8670119 keV 6.2956592 mm  11.899339 m       World      muIoni
-  474 -2.8499259 m  -3.8591252 m   12.148897 m   14.881061 MeV 815.47811 eV  1.4915031 mm  11.900831 m       World      muIoni
-  475   -2.85723 m  -3.8695669 m   12.168032 m   14.870592 MeV 9.4437796 keV 2.2989798 cm  11.923821 m       World      muIoni
-  476 -2.8576903 m  -3.8702212 m   12.169232 m   14.868656 MeV 320.34212 eV  1.4421116 mm  11.925263 m       World      muIoni
-  477 -2.8639535 m  -3.8790953 m   12.185548 m   14.859213 MeV 8.0812725 keV 1.9600925 cm  11.944864 m       World      muIoni
-  478 -2.8648592 m  -3.8803736 m   12.187894 m   14.857293 MeV 886.26512 eV  2.8210892 mm  11.947685 m       World      muIoni
-  479 -2.8699846 m  -3.8875823 m   12.201056 m   14.849148 MeV 5.8588273 keV 1.5857544 cm  11.963542 m       World      muIoni
-  480  -2.871838 m  -3.8902001 m   12.205824 m   14.840765 MeV 2.4588672 keV 5.7464429 mm  11.969289 m       World      muIoni
-  481 -2.8754634 m  -3.8953261 m    12.21519 m   14.835877 MeV 3.6259922 keV 1.1276089 cm  11.980565 m       World      muIoni
-  482 -2.8791393 m  -3.9005545 m   12.224775 m   14.827034 MeV 5.2829405 keV 1.1520725 cm  11.992085 m       World      muIoni
-  483 -2.8867876 m  -3.9114027 m   12.244643 m    14.81548 MeV 10.188341 keV 2.3893474 cm  12.015979 m       World      muIoni
-  484 -2.8873703 m  -3.9122317 m   12.246157 m   14.814799 MeV 680.26712 eV  1.8221956 mm  12.017801 m       World      muIoni
-  485 -2.8903627 m  -3.9164939 m   12.253923 m   14.809074 MeV 4.4630989 keV 9.3502604 mm  12.027151 m       World      muIoni
-  486 -2.9224422 m  -3.9626218 m   12.336671 m   14.767913 MeV 40.128031 keV 10.002237 cm  12.127174 m       World      muIoni
-  487 -2.9263077 m  -3.9682371 m   12.346742 m   14.760478 MeV 6.3316239 keV 1.2161282 cm  12.139335 m       World      muIoni
-  488 -2.9492706 m  -4.0014148 m   12.406464 m   14.726941 MeV 31.680589 keV 7.2075991 cm  12.211411 m       World      muIoni
-  489 -2.9505702 m  -4.0032659 m    12.40979 m   14.724446 MeV 1.3875839 keV 4.0222303 mm  12.215433 m       World      muIoni
-  490 -2.9535838 m  -4.0075852 m   12.417489 m    14.71836 MeV 3.6954827 keV 9.3276106 mm  12.224761 m       World      muIoni
-  491 -2.9628085 m  -4.0209497 m   12.441278 m   14.706736 MeV 11.623366 keV 2.8803635 cm  12.253565 m       World      muIoni
-  492 -2.9652546 m  -4.0245171 m   12.447625 m   14.704224 MeV 2.5120809 keV 7.6801433 mm  12.261245 m       World      muIoni
-  493 -2.9658506 m  -4.0253857 m   12.449165 m   14.703543 MeV  681.0119 eV  1.8660088 mm  12.263111 m  OutOfWorld  Transportation
-Track (trackID 16, parentID 4) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.945785604628(mm),3.082139282517(mm),78.951437662296(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.558222(mm),0.93064976(mm),79.37243(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8303,7 +8584,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.897513(mm),2.3269128(mm),78.959949(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.650252(mm),-2.845769(mm),78.827221(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8312,7 +8593,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.173601(mm),2.8352778(mm),78.382287(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.274239(mm),1.6572405(mm),79.246176(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8321,7 +8602,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.564866(mm),-0.59431105(mm),78.66595(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.682096(mm),2.8621694(mm),78.468952(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8332,7 +8613,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 710
-G4PrimaryTransformer::PrimaryVertex (-15.025262(mm),-1.6972196(mm),78.58477(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.521782(mm),-2.2105881(mm),78.320893(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8341,7 +8622,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.597759(mm),-0.3297124(mm),78.307496(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.823016(mm),2.5965039(mm),78.620431(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8350,7 +8631,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.140459(mm),-2.5625222(mm),78.740785(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.06899(mm),2.0039429(mm),79.282367(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8359,7 +8640,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.289439(mm),-3.2033777(mm),79.067169(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.006675(mm),1.959872(mm),78.940701(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8368,7 +8649,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.987973(mm),2.4635084(mm),78.591345(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.932285(mm),1.8059339(mm),78.601164(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8377,7 +8658,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.581191(mm),0.31037527(mm),78.134091(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.078804(mm),0.019916524(mm),78.399002(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8386,7 +8667,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.551499(mm),-2.0295699(mm),78.844634(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.390684(mm),1.1348984(mm),78.696663(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8395,7 +8676,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.447883(mm),0.75620719(mm),78.157596(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.769558(mm),-0.36478913(mm),78.45353(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8404,7 +8685,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.31659(mm),0.7610788(mm),78.533401(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.006892(mm),-0.99351628(mm),78.411682(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8413,7 +8694,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.26282(mm),-0.88571941(mm),78.190228(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.404897(mm),0.63045781(mm),78.694157(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8424,7 +8705,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 720
-G4PrimaryTransformer::PrimaryVertex (-11.980196(mm),2.2508305(mm),79.121697(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.037347(mm),3.9799146(mm),78.758966(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8433,7 +8714,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.589679(mm),3.0832896(mm),78.837902(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.070727(mm),0.037827895(mm),79.282061(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8442,7 +8723,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.944777(mm),-1.1269726(mm),79.127943(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.635292(mm),-2.3170997(mm),79.182513(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8451,7 +8732,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.488276(mm),1.3061279(mm),78.503128(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.384105(mm),1.1028308(mm),78.87415(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8460,7 +8741,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.428485(mm),-2.0143238(mm),78.337344(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.349111(mm),-1.2623815(mm),78.35134(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8469,7 +8750,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.837751(mm),-2.1404065(mm),78.265179(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.565234(mm),0.83984709(mm),78.665885(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8478,7 +8759,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.908268(mm),-3.0519666(mm),78.781726(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.336599(mm),-3.0538449(mm),78.882527(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8487,7 +8768,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.287704(mm),-1.1640599(mm),79.420129(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.296825(mm),0.00096088763(mm),78.360559(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8496,7 +8777,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.524734(mm),-1.0446269(mm),79.378334(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.04151(mm),-2.7453604(mm),78.405578(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8505,7 +8786,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.138682(mm),-3.6948857(mm),78.741098(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.195746(mm),1.1238131(mm),78.554709(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8516,7 +8797,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 730
-G4PrimaryTransformer::PrimaryVertex (-12.141251(mm),-0.99109331(mm),79.093299(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.823547(mm),-3.8471534(mm),78.796665(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8525,7 +8806,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.295937(mm),-0.25414247(mm),78.360716(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.651277(mm),0.40784164(mm),79.003368(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8534,7 +8815,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.07715(mm),3.184754(mm),78.399294(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.539123(mm),1.4301768(mm),79.19947(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8543,7 +8824,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.389647(mm),0.011277882(mm),78.873173(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.26514(mm),-2.533708(mm),79.247781(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8552,7 +8833,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.727342(mm),0.16334638(mm),78.989955(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.630152(mm),-2.1592908(mm),78.301784(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8561,7 +8842,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.623711(mm),-2.1781395(mm),79.008228(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.772222(mm),0.08623745(mm),78.629388(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8570,7 +8851,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.858061(mm),-0.10096844(mm),79.143233(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.323307(mm),1.6656513(mm),78.708543(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8579,7 +8860,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.776416(mm),2.2289922(mm),78.804975(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.43183(mm),-0.9850638(mm),79.394716(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8588,7 +8869,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.983546(mm),-0.30497031(mm),79.121107(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.398758(mm),0.077451679(mm),78.518913(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8597,7 +8878,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.809103(mm),-3.2431378(mm),78.799211(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.58279(mm),0.82263737(mm),78.310136(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8608,7 +8889,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 740
-G4PrimaryTransformer::PrimaryVertex (-12.933911(mm),1.6470974(mm),78.953531(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.012195(mm),-2.6897126(mm),78.587074(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8617,7 +8898,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.383271(mm),2.8641648(mm),78.521643(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.670508(mm),0.62496862(mm),78.647323(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8626,7 +8907,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.003418(mm),-1.8212714(mm),78.235968(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.781679(mm),1.9766076(mm),78.62772(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8635,7 +8916,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.600372(mm),-2.3356949(mm),78.307036(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.952967(mm),-0.53547872(mm),78.950171(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8644,7 +8925,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.439176(mm),-2.9799561(mm),78.511786(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.660161(mm),-3.5205069(mm),78.649147(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8653,7 +8934,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.330399(mm),-0.69327797(mm),78.707293(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.787927(mm),-2.8810295(mm),78.450291(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8662,7 +8943,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.081013(mm),-0.17499647(mm),78.927593(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.956585(mm),0.34428813(mm),78.773206(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8671,7 +8952,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.792923(mm),-0.78999516(mm),79.154718(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.232391(mm),2.6792374(mm),78.724574(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8680,7 +8961,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.396066(mm),-0.22891642(mm),79.401022(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.111581(mm),-1.8340064(mm),78.745877(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8689,7 +8970,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.24148(mm),-0.74636234(mm),79.251953(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.308761(mm),2.2311066(mm),78.711108(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8700,7 +8981,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 750
-G4PrimaryTransformer::PrimaryVertex (-12.633733(mm),-3.1887563(mm),79.006461(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.80797(mm),-2.0616415(mm),79.152065(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8709,7 +8990,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.13923(mm),0.028100052(mm),78.388347(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.515231(mm),0.8758946(mm),79.38001(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8718,7 +8999,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.712169(mm),0.59587498(mm),78.639977(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.072114(mm),3.8151882(mm),78.929163(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8727,7 +9008,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.686593(mm),-3.3219262(mm),78.644486(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.669279(mm),1.6764495(mm),78.647539(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8736,7 +9017,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.983493(mm),-1.4440011(mm),78.415808(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.40669(mm),-1.035018(mm),79.399149(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8745,7 +9026,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.952587(mm),-3.5871353(mm),78.950238(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.872994(mm),0.87698283(mm),79.316927(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8754,7 +9035,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.237643(mm),1.922057(mm),78.194667(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.14913(mm),-0.80017575(mm),78.386602(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8763,7 +9044,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.656966(mm),2.3723139(mm),78.64971(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.505057(mm),2.4502273(mm),79.205477(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8772,7 +9053,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.980897(mm),-0.80945355(mm),78.592593(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.879741(mm),-3.4471204(mm),78.610429(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8781,7 +9062,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.779463(mm),-3.236543(mm),78.628111(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.653939(mm),0.51366339(mm),78.473917(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8792,7 +9073,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 760
-G4PrimaryTransformer::PrimaryVertex (-17.306355(mm),1.4089933(mm),78.182552(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.459717(mm),-2.7770032(mm),78.508164(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8801,7 +9082,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.648472(mm),1.8002001(mm),78.474881(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.258905(mm),-1.9615104(mm),78.367245(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8810,7 +9091,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.276165(mm),0.77831045(mm),79.245837(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.145372(mm),-1.8981587(mm),79.092572(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8819,7 +9100,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.289589(mm),-1.9002664(mm),78.361835(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.426362(mm),2.4954527(mm),78.690372(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8828,7 +9109,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.141204(mm),-3.4837859(mm),78.564326(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.538124(mm),0.37089234(mm),79.023319(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8837,7 +9118,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.940522(mm),3.5766035(mm),78.952366(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.593991(mm),2.2943581(mm),78.837142(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8846,7 +9127,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.18198(mm),3.5435698(mm),78.90979(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.350208(mm),1.709161(mm),78.174819(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8855,7 +9136,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.13116(mm),2.7292243(mm),79.095078(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.692509(mm),-1.5114075(mm),79.172424(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8864,7 +9145,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.710385(mm),-1.7833736(mm),78.463964(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.358783(mm),0.21333273(mm),79.054942(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8873,7 +9154,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.266341(mm),2.942445(mm),78.894915(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.84876(mm),3.5840669(mm),78.615892(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8884,7 +9165,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 770
-G4PrimaryTransformer::PrimaryVertex (-10.804975(mm),1.8705217(mm),79.32892(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.404249(mm),-1.5365272(mm),78.517944(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8893,7 +9174,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.252463(mm),0.33155088(mm),79.250016(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.743625(mm),0.74290139(mm),78.63443(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8902,7 +9183,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.970198(mm),-0.10168274(mm),78.594479(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.132832(mm),-0.068712532(mm),79.27111(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8911,7 +9192,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.391163(mm),3.3426401(mm),79.049233(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.008863(mm),-1.0855164(mm),78.940315(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8920,7 +9201,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.632125(mm),-1.9096488(mm),79.006744(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.989256(mm),-3.1030064(mm),79.1201(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8929,7 +9210,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.996577(mm),1.3491947(mm),79.118809(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.492778(mm),2.9724405(mm),78.326007(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8938,7 +9219,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.245092(mm),0.47238871(mm),78.722335(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.090243(mm),3.0959223(mm),78.749639(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8947,7 +9228,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.49597(mm),1.7258948(mm),79.207079(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.831284(mm),-2.7142636(mm),78.7953(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8956,7 +9237,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.336388(mm),1.7624122(mm),79.235218(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.936689(mm),-3.0484598(mm),78.776715(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8965,7 +9246,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.182549(mm),-3.4574229(mm),78.557036(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.567135(mm),-0.29771089(mm),79.018204(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8976,7 +9257,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 780
-G4PrimaryTransformer::PrimaryVertex (-11.223576(mm),-2.4296232(mm),79.25511(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.011413(mm),-1.8668615(mm),79.29252(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8985,7 +9266,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.341379(mm),0.30189318(mm),79.234338(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.001677(mm),2.1984536(mm),78.765255(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -8994,7 +9275,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.971242(mm),-2.7035275(mm),79.123276(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.706789(mm),-2.696294(mm),79.169906(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9003,7 +9284,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.476916(mm),3.0927513(mm),78.857785(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.296013(mm),1.5988533(mm),79.242337(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9012,7 +9293,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.44726(mm),-3.9581307(mm),78.863014(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.80057(mm),-0.74088596(mm),79.15337(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9021,7 +9302,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.657522(mm),1.4981022(mm),78.296958(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.396743(mm),2.5376204(mm),79.224576(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9030,7 +9311,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.361171(mm),0.5288665(mm),78.878194(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.454635(mm),-1.5308392(mm),78.861714(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9039,7 +9320,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.232781(mm),2.5937949(mm),79.07716(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.588392(mm),1.5758965(mm),79.190783(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9048,7 +9329,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.296958(mm),2.5893604(mm),78.71319(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.723922(mm),1.9109766(mm),78.461577(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9057,7 +9338,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.0531(mm),-0.92669941(mm),78.579861(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.850364(mm),-0.48639306(mm),78.439282(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9068,7 +9349,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 790
-G4PrimaryTransformer::PrimaryVertex (-14.306943(mm),-3.7133449(mm),78.711429(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.399102(mm),0.4092628(mm),78.871506(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9077,7 +9358,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.762574(mm),-0.32160841(mm),78.807416(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.802425(mm),0.19754877(mm),78.447735(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9086,7 +9367,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.583407(mm),-1.0287616(mm),78.310027(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.137232(mm),2.3410775(mm),79.270334(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9095,7 +9376,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.83301(mm),-3.5148563(mm),78.971323(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.352124(mm),0.27255978(mm),79.232443(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9104,7 +9385,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.241261(mm),-0.26448104(mm),79.428318(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.749266(mm),0.71416621(mm),78.986089(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9113,7 +9394,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.093122(mm),2.7002514(mm),78.396477(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.004013(mm),0.10049059(mm),78.41219(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9122,7 +9403,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.252993(mm),-2.4829751(mm),79.249923(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.876662(mm),-0.8437955(mm),78.963626(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9131,7 +9412,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.291034(mm),-0.24983627(mm),79.243215(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.53453(mm),-2.827001(mm),78.847626(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9140,7 +9421,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.518689(mm),3.8010292(mm),78.674092(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.897829(mm),3.3845929(mm),78.60724(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9149,7 +9430,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.956415(mm),2.3873427(mm),78.949563(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.452956(mm),-1.8215355(mm),78.86201(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9160,7 +9441,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 800
-G4PrimaryTransformer::PrimaryVertex (-14.03627(mm),2.8505027(mm),78.759156(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.930419(mm),2.0287695(mm),78.954147(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9169,7 +9450,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.922593(mm),-1.6909949(mm),79.308181(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.268772(mm),-2.0534258(mm),78.718159(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9178,7 +9459,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.627341(mm),-1.7873765(mm),78.478607(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.097121(mm),1.6812474(mm),78.219445(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9187,7 +9468,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.136773(mm),0.16912267(mm),79.094088(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.357695(mm),0.91788052(mm),79.231461(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9196,7 +9477,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.051476(mm),-2.2819203(mm),79.109129(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.897114(mm),1.9702848(mm),78.431039(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9205,16 +9486,45 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.458898(mm),-1.3836033(mm),78.684635(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.021105(mm),1.7505686(mm),78.76183(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = pi+,   Track ID = 4,   Parent ID = 1
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -1.39 cm   1.75 mm   7.79 cm     17 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1 -1.3493924 cm  1.4986177 mm  7.7887295 cm  13.921406 MeV 3.0996003 MeV 463.98089 um  463.98089 um     Target       hIoni
+    2 -1.3207211 cm  1.2836203 mm  7.7805574 cm  11.005327 MeV 2.9160788 MeV 372.32462 um  836.30551 um     Target       hIoni
+    3 -1.3006272 cm  1.0961281 mm  7.7708497 cm  7.9024853 MeV 3.1028419 MeV 296.12547 um   1.132431 mm     Target       hIoni
+    4 -1.2881506 cm  956.84849 um  7.7594274 cm     4.9431 MeV 2.9593852 MeV 223.96728 um  1.3563983 mm     Target       hIoni
+    5 -1.2789892 cm  860.19034 um  7.7527458 cm   1.604917 MeV  3.338183 MeV 154.49592 um  1.5108942 mm     Target       hIoni
+    6 -1.2770061 cm  853.59634 um  7.7518843 cm  115.12587 keV 1.4897912 MeV 28.710432 um  1.5396046 mm     Target       hIoni
+    7 -1.2769892 cm  853.68475 um  7.7518674 cm  12.820951 keV 102.30492 keV 680.20633 nm  1.5402848 mm     Target       hIoni
+    8 -1.2769889 cm  853.68646 um  7.7518667 cm          0 eV  12.820951 keV 102.14905 nm   1.540387 mm     Target       hIoni
+    9 -1.2769889 cm  853.68646 um  7.7518667 cm          0 eV          0 eV          0 fm   1.540387 mm     Target  Scintillation
+Track (trackID 4, parentID 1) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = mu+,   Track ID = 18,   Parent ID = 4
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -1.28 cm    854 um   7.75 cm   4.12 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1 -1.2846275 cm  960.50863 um  7.7497917 cm  455.97075 keV 3.6638419 MeV 164.72433 um  164.72433 um     Target      muIoni
+    2 -1.2847159 cm  962.17601 um  7.7495543 cm   48.45461 keV 407.51614 keV  4.780948 um  169.50528 um     Target      muIoni
+    3   -1.28471 cm  962.15543 um  7.7495484 cm          0 eV   48.45461 keV 262.12873 nm   169.7674 um     Target      muIoni
+    4   -1.28471 cm  962.15543 um  7.7495484 cm          0 eV          0 eV          0 fm   169.7674 um     Target  Scintillation
+Track (trackID 18, parentID 4) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.980619(mm),0.36095586(mm),78.945296(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.440142(mm),1.5420532(mm),79.040596(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9223,7 +9533,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.667909(mm),2.9895065(mm),79.000435(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.488591(mm),0.74561412(mm),78.679399(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9232,7 +9542,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.190257(mm),0.88141827(mm),79.084658(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.353621(mm),-2.4177686(mm),79.232179(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9241,7 +9551,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.343378(mm),1.8500139(mm),78.705004(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.106523(mm),-0.92244035(mm),79.099422(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9252,7 +9562,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 810
-G4PrimaryTransformer::PrimaryVertex (-12.833771(mm),-0.14239977(mm),78.971189(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.856199(mm),1.3442164(mm),79.143561(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9261,7 +9571,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.195014(mm),-2.3199857(mm),79.083819(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.595492(mm),-1.3286913(mm),78.66055(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9270,7 +9580,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.128762(mm),-2.7220847(mm),78.56652(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.867344(mm),3.137085(mm),78.788942(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9279,7 +9589,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.675248(mm),2.9750455(mm),79.175468(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.409889(mm),1.3345095(mm),79.398585(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9288,7 +9598,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.106382(mm),-3.2948479(mm),78.92312(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.145463(mm),3.1642447(mm),78.563575(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9297,7 +9607,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.621958(mm),3.7157235(mm),79.008537(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.229155(mm),-3.1347475(mm),78.548818(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9306,7 +9616,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.757426(mm),1.0398006(mm),79.160978(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.48425(mm),-1.5964478(mm),78.503838(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9315,7 +9625,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.090911(mm),2.3028027(mm),79.278502(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.719823(mm),-2.835345(mm),79.167608(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9324,7 +9634,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.486907(mm),-0.060844306(mm),79.03235(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.14835(mm),-3.250482(mm),78.386739(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9333,7 +9643,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.243282(mm),1.989841(mm),78.546327(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.888036(mm),-1.0650525(mm),79.314274(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9344,7 +9654,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 820
-G4PrimaryTransformer::PrimaryVertex (-10.426613(mm),-0.6811397(mm),79.395636(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.261263(mm),2.5895684(mm),78.719484(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9353,7 +9663,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.291725(mm),-0.60346904(mm),78.361458(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.951329(mm),3.4477265(mm),78.95046(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9362,7 +9672,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.981356(mm),-0.5611792(mm),78.416185(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.448209(mm),-1.2145393(mm),78.510193(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9371,7 +9681,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.297026(mm),0.17489668(mm),78.360524(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.824741(mm),3.3143207(mm),78.796454(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9380,7 +9690,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.346941(mm),-0.72180395(mm),78.351722(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.664227(mm),0.28777504(mm),78.119449(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9389,7 +9699,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.881608(mm),-1.7575234(mm),79.315408(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.487602(mm),-1.2029144(mm),78.679574(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9398,7 +9708,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.473951(mm),1.7763202(mm),78.329327(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.149006(mm),-2.4297681(mm),79.268258(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9407,7 +9717,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.805319(mm),-1.6478202(mm),79.32886(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.522789(mm),3.600476(mm),79.026023(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9416,7 +9726,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.141091(mm),3.4877755(mm),78.740673(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.231309(mm),1.9297979(mm),79.077419(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9425,7 +9735,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.958314(mm),1.027533(mm),78.949229(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.140789(mm),-1.8490318(mm),78.740726(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9436,7 +9746,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 830
-G4PrimaryTransformer::PrimaryVertex (-13.915064(mm),2.7052765(mm),78.780528(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.38472(mm),-3.457222(mm),78.521388(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9445,7 +9755,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.036593(mm),-1.3392394(mm),79.28808(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.306592(mm),0.97562324(mm),79.240472(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9454,7 +9764,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.929764(mm),2.140006(mm),79.306917(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.020821(mm),-1.2122625(mm),78.938207(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9463,7 +9773,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.199139(mm),2.4107735(mm),78.554111(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.785223(mm),-1.7265234(mm),79.156076(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9472,7 +9782,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.359775(mm),-3.5010864(mm),79.054767(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.397436(mm),3.1472888(mm),78.871799(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9481,7 +9791,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.949268(mm),-3.5667596(mm),78.59817(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.421218(mm),1.4579713(mm),79.396587(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9490,7 +9800,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.704771(mm),-3.3946167(mm),78.641281(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.021553(mm),-3.3813189(mm),78.938078(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9499,7 +9809,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.484436(mm),0.89832819(mm),78.856459(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.096441(mm),-0.047900759(mm),78.219565(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9508,7 +9818,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.781733(mm),1.7279824(mm),78.451384(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.571185(mm),-1.0916548(mm),78.664836(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9517,7 +9827,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.098748(mm),-1.6301059(mm),79.27712(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.508886(mm),0.66933364(mm),78.852148(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9528,7 +9838,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 840
-G4PrimaryTransformer::PrimaryVertex (-14.779141(mm),-1.7123132(mm),78.628168(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.935922(mm),1.4390748(mm),78.424196(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9537,7 +9847,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.458802(mm),2.9581554(mm),78.331998(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.343891(mm),0.10476194(mm),79.410222(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9546,7 +9856,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.080345(mm),0.3918721(mm),79.104038(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.306644(mm),1.5430813(mm),78.887809(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9555,7 +9865,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.189671(mm),-3.2166461(mm),79.084761(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.485482(mm),-2.3834551(mm),79.032602(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9564,7 +9874,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.698951(mm),-0.46547357(mm),78.46598(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.435196(mm),1.572938(mm),78.33616(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9573,7 +9883,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.605914(mm),-0.373614(mm),79.187693(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.383241(mm),-1.4659836(mm),79.403283(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9582,7 +9892,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.355816(mm),1.3377836(mm),79.408119(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.861576(mm),-1.3241134(mm),78.260978(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9591,7 +9901,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.515231(mm),2.6856941(mm),79.203683(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.183319(mm),0.89410817(mm),79.262208(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9600,7 +9910,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.906013(mm),2.0705546(mm),78.42947(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.576907(mm),3.4314784(mm),78.4875(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9609,7 +9919,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.061994(mm),1.3792895(mm),78.75462(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.626681(mm),-0.56148996(mm),78.126069(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9620,7 +9930,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 850
-G4PrimaryTransformer::PrimaryVertex (-13.706419(mm),-3.2094466(mm),78.817317(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.207228(mm),2.6831534(mm),78.729011(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9629,7 +9939,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.026253(mm),3.0404389(mm),78.760922(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.086069(mm),-1.3378272(mm),79.279356(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9638,7 +9948,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.63241(mm),-2.3659324(mm),78.65404(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.523187(mm),-2.2020075(mm),78.849626(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9647,7 +9957,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.311328(mm),0.014063858(mm),78.886983(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.065856(mm),-3.1349579(mm),78.577612(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9656,7 +9966,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.036489(mm),-0.97682945(mm),79.111771(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.632669(mm),-3.4918951(mm),78.477668(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9665,7 +9975,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.879891(mm),1.7512631(mm),78.434076(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.613424(mm),-3.6728936(mm),78.657388(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9674,7 +9984,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.106621(mm),0.53236474(mm),78.923078(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.80414(mm),-2.9738571(mm),78.800087(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9683,7 +9993,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.218609(mm),-0.99399194(mm),78.198024(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.912364(mm),-3.6832619(mm),78.781004(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9692,7 +10002,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.545604(mm),1.5920209(mm),78.669346(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.998777(mm),3.1939669(mm),78.413113(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9701,7 +10011,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.437092(mm),-0.80579599(mm),79.041134(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.071005(mm),-1.7218243(mm),79.282012(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9712,7 +10022,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 860
-G4PrimaryTransformer::PrimaryVertex (-12.395283(mm),1.0337425(mm),79.048506(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.610212(mm),3.0441095(mm),79.186935(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9721,7 +10031,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.455975(mm),2.642113(mm),78.332497(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.431702(mm),-1.6559651(mm),78.16045(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9730,7 +10040,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.45667(mm),3.549524(mm),79.037682(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.693785(mm),-0.13895228(mm),78.819545(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9739,7 +10049,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.163757(mm),-1.2768068(mm),79.08933(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.070472(mm),-0.91554726(mm),79.105779(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9748,7 +10058,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.541846(mm),1.1779654(mm),78.493682(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.396875(mm),-0.022926548(mm),79.400879(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9757,7 +10067,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.702283(mm),1.7703372(mm),78.64172(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.791176(mm),0.96808245(mm),79.155026(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9766,7 +10076,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.247609(mm),-1.3154843(mm),78.369237(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.590607(mm),-1.9927423(mm),79.014065(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9775,7 +10085,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.266961(mm),-1.0758991(mm),79.423787(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.78279(mm),-1.6117068(mm),78.451197(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9784,7 +10094,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.127271(mm),0.23333688(mm),78.214129(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.991437(mm),-2.0543389(mm),78.767061(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9793,7 +10103,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.290777(mm),3.0431054(mm),78.537952(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.022265(mm),1.3976281(mm),79.114279(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9804,7 +10114,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 870
-G4PrimaryTransformer::PrimaryVertex (-16.40492(mm),-2.7501821(mm),78.341499(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.585406(mm),-1.9098628(mm),78.309674(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9813,7 +10123,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.879502(mm),-2.0012752(mm),79.139452(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.608197(mm),1.2449787(mm),79.363618(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9822,7 +10132,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.481315(mm),-3.3830754(mm),78.680682(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.684335(mm),-1.8166802(mm),79.350192(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9831,7 +10141,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.342095(mm),-1.5467084(mm),78.528904(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.496323(mm),0.38354972(mm),78.678036(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9840,7 +10150,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.410741(mm),-2.0103221(mm),78.340472(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.504856(mm),-0.84324316(mm),78.676531(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9849,7 +10159,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.762485(mm),2.0421168(mm),78.983758(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.236206(mm),1.556688(mm),78.547575(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9858,7 +10168,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.302739(mm),-0.011866681(mm),79.241151(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.381333(mm),-2.0893074(mm),79.050966(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9867,7 +10177,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.860866(mm),1.8158519(mm),78.613757(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.767027(mm),-1.9003289(mm),78.453977(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9876,7 +10186,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.817338(mm),-2.7121575(mm),78.974086(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.427593(mm),-2.8755471(mm),78.866482(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9885,7 +10195,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.864691(mm),2.2760237(mm),78.78941(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.380007(mm),3.230544(mm),78.522219(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9896,7 +10206,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 880
-G4PrimaryTransformer::PrimaryVertex (-12.611382(mm),1.181309(mm),79.010402(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.898002(mm),-3.1046308(mm),78.430882(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9905,7 +10215,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.401318(mm),-0.22893499(mm),78.694788(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.444104(mm),1.7468569(mm),79.392552(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9914,7 +10224,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.659811(mm),-0.68732605(mm),78.649209(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.688981(mm),-0.6005291(mm),78.467738(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9923,7 +10233,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.653635(mm),-2.8222128(mm),78.650298(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.025686(mm),0.72086627(mm),78.761022(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9932,7 +10242,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.589422(mm),0.14326786(mm),78.308966(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.176332(mm),2.6163999(mm),78.381805(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9941,7 +10251,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.201136(mm),1.6513032(mm),78.201105(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.047765(mm),0.72925372(mm),78.757129(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9950,7 +10260,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.021858(mm),-2.9537833(mm),79.114351(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.865338(mm),2.6621093(mm),78.612969(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9959,7 +10269,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.498245(mm),0.20669676(mm),78.325043(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.348861(mm),-3.4228534(mm),78.704038(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9968,7 +10278,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.823491(mm),1.7530217(mm),79.325655(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.204396(mm),-2.9528306(mm),78.729511(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9977,7 +10287,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.699096(mm),0.92643915(mm),78.642282(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.464055(mm),-0.30837602(mm),79.212707(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9988,7 +10298,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 890
-G4PrimaryTransformer::PrimaryVertex (-11.617666(mm),-2.2400744(mm),79.185621(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.159899(mm),0.22714249(mm),78.737357(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -9997,7 +10307,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.849806(mm),-1.2060294(mm),78.43938(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.170932(mm),2.3866522(mm),78.559084(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10006,7 +10316,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.463782(mm),1.6163837(mm),79.212755(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.374908(mm),3.1651996(mm),79.052099(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10015,7 +10325,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.06188(mm),0.24765361(mm),79.459948(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.48189(mm),-2.7152889(mm),78.327927(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10024,7 +10334,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.174251(mm),-1.6121266(mm),78.382172(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.368234(mm),-1.716094(mm),78.700622(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10033,7 +10343,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.203188(mm),-0.51738066(mm),78.200743(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.313794(mm),-1.4510344(mm),78.533894(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10042,7 +10352,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.245545(mm),1.1578133(mm),78.545928(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.59743(mm),-0.95579175(mm),78.660208(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10051,7 +10361,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.4565(mm),3.4900386(mm),78.861385(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.431193(mm),0.88053703(mm),78.513193(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10060,7 +10370,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.733648(mm),0.84175952(mm),78.636189(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.984648(mm),-1.9596488(mm),78.768258(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10069,7 +10379,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.909013(mm),-3.3984584(mm),78.428941(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.022085(mm),3.689215(mm),78.58533(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10080,7 +10390,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 900
-G4PrimaryTransformer::PrimaryVertex (-11.39476(mm),3.0676961(mm),79.224925(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.844861(mm),-1.0615374(mm),79.14556(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10089,7 +10399,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.205879(mm),-1.0158074(mm),79.434557(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.410049(mm),2.6759428(mm),79.045902(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10098,7 +10408,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.575113(mm),-0.64569344(mm),78.135162(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.066129(mm),-2.4117515(mm),78.930218(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10107,7 +10417,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.697585(mm),1.9425725(mm),78.995202(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.650404(mm),0.36656482(mm),78.298213(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10116,7 +10426,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.494545(mm),2.8965583(mm),78.325696(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.782226(mm),2.6860028(mm),78.803951(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10125,46 +10435,16 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.026352(mm),0.51448769(mm),79.113559(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.730798(mm),-2.9752411(mm),78.636692(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
-
-*********************************************************************************************************
-* G4Track Information:   Particle = pi+,   Track ID = 3,   Parent ID = 1
-*********************************************************************************************************
-
-Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
-    0  -7.18 mm   -160 um   4.74 cm   23.2 MeV     0 eV      0 fm      0 fm     Target    initStep
-    1 -7.1293175 mm  376.89879 um  4.6968254 cm  19.236248 MeV 3.9753087 MeV 678.95534 um  678.95534 um     Target       hIoni
-    2 -7.0764743 mm  816.08671 um  4.6675095 cm  15.985682 MeV 3.2505662 MeV 536.17489 um  1.2151302 mm     Target       hIoni
-    3 -7.0488898 mm  1.1552059 mm   4.641672 cm  13.090186 MeV 2.8954958 MeV  432.1334 um  1.6472636 mm     Target       hIoni
-    4 -7.0626563 mm  1.4404453 mm  4.6223213 cm  10.836211 MeV 2.2539752 MeV 349.63482 um  1.9968985 mm     Target       hIoni
-    5  -7.087058 mm  1.6924111 mm  4.6069394 cm  8.2127193 MeV 2.6234914 MeV 291.98671 um  2.2888852 mm     Target       hIoni
-    6 -7.1399523 mm  1.8903863 mm  4.5973689 cm  5.3838155 MeV 2.8289038 MeV 230.90462 um  2.5197898 mm     Target       hIoni
-    7 -7.2183428 mm  1.9864855 mm  4.5886501 cm   2.154667 MeV 3.2291485 MeV 166.05908 um  2.6858489 mm     Target       hIoni
-    8 -7.2505422 mm   1.998299 mm  4.5871721 cm  256.91314 keV 1.8977539 MeV  46.25882 um  2.7321077 mm     Target       hIoni
-    9 -7.2497122 mm  1.9989091 mm  4.5871592 cm          0 eV  256.91314 keV 1.8735784 um  2.7339813 mm     Target       hIoni
-   10 -7.2497122 mm  1.9989091 mm  4.5871592 cm          0 eV          0 eV          0 fm  2.7339813 mm     Target  Scintillation
-Track (trackID 3, parentID 1) is processed with stopping code 2
-
-*********************************************************************************************************
-* G4Track Information:   Particle = mu+,   Track ID = 22,   Parent ID = 3
-*********************************************************************************************************
-
-Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
-    0  -7.25 mm      2 mm   4.59 cm   4.12 MeV     0 eV      0 fm      0 fm     Target    initStep
-    1 -7.3101812 mm  2.0075671 mm  4.5978372 cm  427.27056 keV 3.6925421 MeV 164.72433 um  164.72433 um     Target      muIoni
-    2 -7.3096938 mm   2.007547 mm  4.5981198 cm  52.818824 keV 374.45173 keV 4.3422237 um  169.06655 um     Target      muIoni
-    3 -7.3096856 mm  2.0075958 mm  4.5981285 cm          0 eV  52.818824 keV 287.43111 nm  169.35398 um     Target      muIoni
-    4 -7.3096856 mm  2.0075958 mm  4.5981285 cm          0 eV          0 eV          0 fm  169.35398 um     Target  Scintillation
-Track (trackID 22, parentID 3) is processed with stopping code 2
 NULL returned from G4StackManager.
 Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.73536(mm),-0.94337463(mm),79.341195(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.191777(mm),-0.62740091(mm),78.908063(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10173,7 +10453,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.330379(mm),2.2746586(mm),78.354642(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.917974(mm),-2.9598472(mm),78.427361(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10182,7 +10462,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.202709(mm),1.6543438(mm),78.553481(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.470702(mm),-1.6624637(mm),79.211535(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10191,7 +10471,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.106197(mm),1.5749552(mm),79.275807(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.767594(mm),-0.31058172(mm),78.453877(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10202,7 +10482,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 910
-G4PrimaryTransformer::PrimaryVertex (-12.840952(mm),-0.70819903(mm),78.969923(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.621895(mm),2.6281846(mm),78.832221(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10211,7 +10491,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.479686(mm),-0.85203345(mm),79.209951(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.157139(mm),-0.8881783(mm),79.443151(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10220,7 +10500,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.86881(mm),0.18432476(mm),79.141337(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.008853(mm),-0.80329124(mm),79.292971(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10229,7 +10509,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.852795(mm),-1.8258155(mm),78.615181(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.18886(mm),-1.5252908(mm),79.084904(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10238,7 +10518,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.455875(mm),-0.9774024(mm),78.332514(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.595349(mm),-0.068158277(mm),79.189556(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10247,7 +10527,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.395251(mm),0.1345761(mm),79.224839(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.19801(mm),1.3283602(mm),78.377983(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10256,7 +10536,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.80127(mm),2.6781261(mm),78.97692(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.388967(mm),-0.18069595(mm),78.696966(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10265,7 +10545,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.405897(mm),2.8421286(mm),78.870308(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.470892(mm),3.3413104(mm),78.858847(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10274,7 +10554,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.016423(mm),-3.3800274(mm),78.938982(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.576946(mm),1.2347404(mm),78.840147(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10283,7 +10563,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.342023(mm),2.5671381(mm),78.352589(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.300868(mm),-1.5131287(mm),78.183519(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10294,7 +10574,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 920
-G4PrimaryTransformer::PrimaryVertex (-16.698092(mm),1.2926953(mm),78.289805(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.215521(mm),2.4694417(mm),78.727549(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10303,7 +10583,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.724792(mm),3.4596742(mm),78.461424(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.804309(mm),0.68661383(mm),78.271076(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10312,7 +10592,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.055545(mm),0.36695317(mm),78.932084(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.789524(mm),3.1339468(mm),78.802664(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10321,7 +10601,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.922634(mm),-3.173865(mm),78.602866(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.766826(mm),1.6348531(mm),79.15932(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10330,7 +10610,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-17.408622(mm),-0.39698887(mm),78.164519(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.890124(mm),1.6657679(mm),78.961252(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10339,7 +10619,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.751307(mm),1.8605571(mm),79.162056(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.294676(mm),-1.0037694(mm),78.537265(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10348,7 +10628,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.43725(mm),-1.7607291(mm),78.864779(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.039185(mm),1.6414002(mm),78.758642(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10357,7 +10637,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.185236(mm),-3.532594(mm),78.556562(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.822315(mm),0.84861463(mm),79.325863(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10366,7 +10646,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.142334(mm),2.6558347(mm),79.093108(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.682541(mm),-1.9130841(mm),78.645201(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10375,7 +10655,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.102509(mm),-1.5599976(mm),78.923803(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.38277(mm),-2.1073916(mm),78.521731(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10386,7 +10666,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 930
-G4PrimaryTransformer::PrimaryVertex (-10.853905(mm),0.19536821(mm),79.320293(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.56461(mm),2.4605759(mm),78.313341(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10395,7 +10675,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.087813(mm),3.6105293(mm),78.926394(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.379069(mm),-1.5713285(mm),79.227692(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10404,7 +10684,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.436957(mm),-1.3531875(mm),78.33585(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.127008(mm),-1.3846994(mm),79.09581(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10413,7 +10693,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.56461(mm),2.4605759(mm),78.313341(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.180749(mm),-3.3451304(mm),78.910007(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10422,7 +10702,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.379069(mm),-1.5713285(mm),79.227692(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.706038(mm),0.72731348(mm),78.464731(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10431,7 +10711,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.050802(mm),-1.4394536(mm),79.109247(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.796215(mm),1.4047194(mm),78.44883(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10440,7 +10720,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.109555(mm),1.6111845(mm),78.569907(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.998811(mm),-2.0171413(mm),78.589434(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10449,7 +10729,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.092124(mm),-2.6427873(mm),78.925634(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.287244(mm),-1.4802871(mm),78.891229(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10458,7 +10738,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.601575(mm),1.3976896(mm),79.364785(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.100883(mm),1.4007987(mm),78.218782(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10467,7 +10747,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.080912(mm),0.40383146(mm),78.39863(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.502219(mm),1.3957541(mm),78.676997(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10478,7 +10758,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 940
-G4PrimaryTransformer::PrimaryVertex (-11.395852(mm),0.90214016(mm),79.224733(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.841447(mm),-0.099148514(mm),79.146162(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10487,7 +10767,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.796003(mm),2.4820453(mm),78.801521(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.706565(mm),0.66425474(mm),78.111984(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10496,7 +10776,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.779636(mm),2.6418029(mm),78.451753(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.575372(mm),-0.56870965(mm),79.193078(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10505,7 +10785,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.22565(mm),-0.022146268(mm),78.90209(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.037229(mm),2.2107335(mm),78.758987(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10514,7 +10794,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.653907(mm),1.7182784(mm),78.297596(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.288995(mm),-0.17142604(mm),79.243574(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10523,7 +10803,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.925914(mm),-2.1647842(mm),78.249634(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.872866(mm),2.3485024(mm),78.611641(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10532,7 +10812,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.258796(mm),-0.76337446(mm),78.719918(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.760586(mm),-0.23286691(mm),79.16042(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10541,7 +10821,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.267194(mm),-0.1111851(mm),78.542111(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.990552(mm),-2.2051517(mm),78.238236(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10550,7 +10830,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.038911(mm),0.20668672(mm),78.582363(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.019676(mm),2.2802914(mm),78.762082(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10559,7 +10839,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.855798(mm),1.1974144(mm),78.438324(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.611809(mm),-0.54854718(mm),79.186654(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10570,7 +10850,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 950
-G4PrimaryTransformer::PrimaryVertex (-15.603745(mm),-1.4232978(mm),78.482768(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.175163(mm),3.6576722(mm),78.734665(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10579,7 +10859,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.589523(mm),1.4642311(mm),79.014256(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.358495(mm),-3.3088254(mm),78.702339(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10588,7 +10868,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.501628(mm),-3.3657695(mm),79.029755(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.730107(mm),-0.72991191(mm),79.342122(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10597,7 +10877,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.861156(mm),-3.7739489(mm),78.613706(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.37932(mm),1.3545777(mm),78.874994(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10606,7 +10886,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.68413(mm),1.5827137(mm),78.292267(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.264125(mm),-0.61264214(mm),78.542652(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10615,7 +10895,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.816857(mm),-0.2972551(mm),78.621517(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.820856(mm),-2.0818933(mm),78.620812(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10624,7 +10904,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.150468(mm),0.073505531(mm),78.73902(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.040468(mm),3.4403704(mm),79.11107(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10633,7 +10913,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.310077(mm),-0.47048413(mm),78.887203(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.303508(mm),-0.86382115(mm),78.888361(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10642,7 +10922,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.06164(mm),0.057199283(mm),79.283663(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.814922(mm),3.3714571(mm),78.621858(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10651,7 +10931,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.574518(mm),3.3460608(mm),79.016902(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.230815(mm),0.58319617(mm),78.548525(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10662,7 +10942,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 960
-G4PrimaryTransformer::PrimaryVertex (-12.434321(mm),-1.1370418(mm),79.041623(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.174237(mm),-0.79322354(mm),78.911155(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10671,7 +10951,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.324783(mm),-0.72161094(mm),78.88461(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.582798(mm),3.1499202(mm),78.486461(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10680,7 +10960,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.429979(mm),2.5499051(mm),78.513407(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.195785(mm),3.1638944(mm),78.378375(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10689,7 +10969,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.25324(mm),-0.28237061(mm),79.249879(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.351357(mm),0.88967372(mm),79.056251(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10698,7 +10978,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.737986(mm),-0.071969354(mm),79.340732(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.593312(mm),1.3893952(mm),78.484607(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10707,7 +10987,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.086014(mm),3.5018459(mm),78.926712(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.809776(mm),3.3887989(mm),79.151747(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10716,7 +10996,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.726602(mm),2.7271112(mm),78.990086(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.909139(mm),0.49166253(mm),78.428919(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10725,7 +11005,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.425072(mm),0.95339327(mm),78.337946(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.825039(mm),0.19540737(mm),78.620075(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10734,7 +11014,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.655881(mm),-2.0245972(mm),78.826229(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.314571(mm),0.076094502(mm),78.533757(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10743,7 +11023,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.908299(mm),-3.3395562(mm),78.781721(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.326125(mm),-1.7727748(mm),79.060701(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10754,7 +11034,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 970
-G4PrimaryTransformer::PrimaryVertex (-14.350438(mm),2.7558194(mm),78.70376(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.514564(mm),1.5477553(mm),79.027474(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10763,7 +11043,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.954847(mm),0.29709671(mm),78.94984(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.487799(mm),-2.1884497(mm),78.503212(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10772,7 +11052,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.759981(mm),-0.16899772(mm),79.336854(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.337452(mm),3.4329167(mm),78.706049(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10781,7 +11061,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.258841(mm),-1.1386227(mm),78.367257(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-17.204176(mm),-0.18171377(mm),78.200569(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10790,7 +11070,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.113289(mm),-2.052804(mm),78.745575(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.944944(mm),-1.2215978(mm),79.30424(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10799,7 +11079,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.566168(mm),-3.0082956(mm),79.018374(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.865044(mm),-2.8375135(mm),79.142002(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10808,7 +11088,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.549619(mm),-0.96313304(mm),78.315985(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.780895(mm),-1.2938656(mm),79.156839(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10817,7 +11097,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.691821(mm),0.35990098(mm),78.467238(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-11.885165(mm),-2.9074382(mm),79.138454(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10826,7 +11106,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.677939(mm),-1.7460621(mm),79.35132(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.702379(mm),-0.53667729(mm),78.289049(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10835,7 +11115,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.442217(mm),0.28766593(mm),79.04023(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.208977(mm),-1.2978691(mm),78.90503(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10846,7 +11126,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 980
-G4PrimaryTransformer::PrimaryVertex (-11.701027(mm),1.7922767(mm),79.170922(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.061872(mm),-2.2348748(mm),78.401988(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10855,7 +11135,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.446263(mm),-1.7893016(mm),78.334209(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.264892(mm),-0.41077234(mm),78.895171(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10864,7 +11144,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.85936(mm),-1.0868746(mm),79.319331(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.966991(mm),1.4876979(mm),78.771372(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10873,7 +11153,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.258147(mm),-3.5714618(mm),78.89636(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.991716(mm),-3.8843023(mm),78.943339(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10882,7 +11162,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-12.46946(mm),0.67052792(mm),79.035427(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.534539(mm),1.6002685(mm),78.847625(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10891,7 +11171,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.444559(mm),1.208484(mm),78.86349(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.466039(mm),-3.8355488(mm),78.683376(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10900,7 +11180,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.123799(mm),-0.30199182(mm),78.391068(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.088371(mm),3.8642279(mm),78.749969(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10909,7 +11189,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.369084(mm),-1.7865601(mm),78.524145(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.199535(mm),2.3444359(mm),78.377714(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10918,16 +11198,144 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.423987(mm),-2.9996318(mm),79.219772(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.663499(mm),-2.069996(mm),79.353866(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
-NULL returned from G4StackManager.
-Terminate current event processing.
-=====================================
-  G4EventManager::ProcessOneEvent()  
-=====================================
-G4PrimaryTransformer::PrimaryVertex (-13.035884(mm),3.7458052(mm),78.935551(mm),0(nsec))
+
+*********************************************************************************************************
+* G4Track Information:   Particle = pi+,   Track ID = 2,   Parent ID = 1
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0  -1.04 cm  -2.08 mm   7.77 cm    103 MeV     0 eV      0 fm      0 fm     Target    initStep
+    1 -1.0273038 cm -2.1140348 mm  7.7816414 cm  102.57035 MeV 504.01857 keV 185.63588 um  185.63588 um     Target  Transportation
+    2  1.6183427 cm -1.0719105 cm  1.4047637 m   102.57037 MeV5.6810776e-17 eV  1.7032403 m   1.7034259 m  CaptureMgnt       Decay
+Track (trackID 2, parentID 1) is processed with stopping code 2
+
+*********************************************************************************************************
+* G4Track Information:   Particle = mu+,   Track ID = 22,   Parent ID = 2
+*********************************************************************************************************
+
+Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng    Volume     Process
+    0   1.62 cm  -1.07 cm    1.4 m     111 MeV     0 eV      0 fm      0 fm CaptureMgnt    initStep
+    1  -1.084688 cm -29.752346 cm          2 m   110.82232 MeV2.1827124e-17 eV    72.8139 cm    72.8139 cm CaptureMgnt  Transportation
+    2 -8.8760396 cm -30.007096 cm  2.1104075 m   110.80203 MeV 20.295836 keV 13.515486 cm  86.329386 cm      World      muIoni
+    3 -17.179285 cm -30.254059 cm   2.227727 m   110.75761 MeV 20.824271 keV 14.375116 cm   1.007045 m       World      muIoni
+    4 -31.835512 cm -30.683047 cm  2.4352631 m   110.71802 MeV 38.051346 keV 25.410683 cm  1.2611518 m       World      muIoni
+    5 -33.792974 cm -30.746778 cm  2.4629327 m   110.71196 MeV 4.4985988 keV 3.3899493 cm  1.2950513 m       World      muIoni
+    6 -41.599287 cm -31.003585 cm  2.5732053 m   110.68769 MeV  22.59054 keV 13.513148 cm  1.4301828 m       World      muIoni
+    7 -45.751923 cm -31.140821 cm  2.6320011 m   110.47925 MeV 10.044478 keV 7.1994924 cm  1.5021777 m       World      muIoni
+    8 -47.752303 cm -31.198749 cm  2.6603094 m   110.47419 MeV 3.6397322 keV 3.4667697 cm  1.5368454 m       World      muIoni
+    9 -50.373305 cm -31.272657 cm  2.6973967 m   110.43615 MeV 5.2215943 keV 4.5420024 cm  1.5822655 m       World      muIoni
+   10 -53.370561 cm -31.342912 cm  2.7398665 m   110.42692 MeV 7.6715577 keV 5.1985936 cm  1.6342514 m       World      muIoni
+   11 -55.790614 cm -31.398227 cm  2.7741877 m   110.41747 MeV 6.5124954 keV 4.1998984 cm  1.6762504 m       World      muIoni
+   12   -57.5093 cm -31.436442 cm   2.798573 m   110.41068 MeV 3.5203264 keV 2.9835807 cm  1.7060862 m       World      muIoni
+   13 -58.212951 cm -31.452299 cm   2.808564 m   110.40656 MeV 1.8658386 keV 1.2221241 cm  1.7183074 m       World      muIoni
+   14 -61.824741 cm -31.529051 cm  2.8598548 m   110.39492 MeV 10.041879 keV 6.2736254 cm  1.7810437 m       World      muIoni
+   15 -62.024193 cm -31.533095 cm  2.8626861 m   110.38946 MeV 213.17018 eV  3.4635666 mm  1.7845072 m       World      muIoni
+   16 -63.618564 cm -31.566206 cm   2.885321 m    110.3837 MeV 4.0796146 keV 2.7688461 cm  1.8121957 m       World      muIoni
+   17 -63.974482 cm -31.573592 cm  2.8903724 m   110.38174 MeV 769.36387 eV  6.1797607 mm  1.8183755 m       World      muIoni
+   18 -77.723432 cm -31.845902 cm  3.0852659 m   110.34326 MeV 37.190128 keV 23.852539 cm  2.0569009 m       World      muIoni
+   19 -77.910007 cm -31.849579 cm  3.0879138 m   110.34105 MeV 349.10759 eV  3.2394503 mm  2.0601403 m       World      muIoni
+   20 -78.033423 cm -31.852026 cm  3.0896645 m   110.33876 MeV 192.46859 eV  2.1420811 mm  2.0622824 m       World      muIoni
+   21 -84.049945 cm -31.976221 cm  3.1750651 m   110.32115 MeV 16.334627 keV 10.447336 cm  2.1667558 m       World      muIoni
+   22 -90.318723 cm -32.105614 cm  3.2640041 m   110.25457 MeV  17.51705 keV 10.881904 cm  2.2755748 m       World      muIoni
+   23 -95.822195 cm -32.230054 cm  3.3421051 m    110.2375 MeV 13.000789 keV 9.5551779 cm  2.3711266 m       World      muIoni
+   24 -97.078708 cm -32.260026 cm  3.3599497 m   110.23306 MeV 3.2316088 keV 2.1826621 cm  2.3929532 m       World      muIoni
+   25 -97.363494 cm -32.266389 cm    3.36399 m   110.22365 MeV 1.6628644 keV  4.943556 mm  2.3978967 m       World      muIoni
+   26 -1.0179416 m  -32.372716 cm    3.42697 m   110.20751 MeV 13.974102 keV 7.7010967 cm  2.4749077 m       World      muIoni
+   27 -1.0410716 m  -32.428501 cm  3.4599304 m    110.1978 MeV 7.1762711 keV 4.0270302 cm   2.515178 m       World      muIoni
+   28 -1.1041813 m  -32.577249 cm  3.5499477 m   110.16768 MeV 23.312459 keV 10.994623 cm  2.6251242 m       World      muIoni
+   29 -1.1514974 m  -32.695263 cm  3.6173766 m   110.15487 MeV 10.486029 keV 8.2382408 cm  2.7075067 m       World      muIoni
+   30 -1.2048495 m  -32.839187 cm  3.6932934 m   110.13325 MeV 14.453644 keV 9.2800256 cm  2.8003069 m       World      muIoni
+   31 -1.2229346 m  -32.891864 cm  3.7190059 m   110.12365 MeV 7.0475685 keV 3.1440169 cm  2.8317471 m       World      muIoni
+   32 -1.2444457 m  -32.954161 cm  3.7496023 m   110.11344 MeV 5.3048062 keV 3.7406609 cm  2.8691537 m       World      muIoni
+   33 -1.2617566 m  -33.004273 cm  3.7742675 m   110.10733 MeV 4.1027401 keV 3.0137787 cm  2.8992915 m       World      muIoni
+   34 -1.3465988 m  -33.244714 cm  3.8952932 m   110.08391 MeV 20.105904 keV 14.782164 cm  3.0471131 m       World      muIoni
+   35  -1.376577 m  -33.322885 cm  3.9380478 m   110.07741 MeV 6.5046206 keV 5.2223234 cm  3.0993363 m       World      muIoni
+   36 -1.3781254 m  -33.326798 cm  3.9402584 m   110.07167 MeV 833.87985 eV  2.6991608 mm  3.1020355 m       World      muIoni
+   37 -1.3805889 m  -33.333129 cm  3.9437772 m   110.07024 MeV 319.58361 eV  4.2958923 mm  3.1063314 m       World      muIoni
+   38  -1.405328 m  -33.399245 cm  3.9790758 m   110.06277 MeV 5.8271675 keV 4.3109844 cm  3.1494412 m       World      muIoni
+   39 -1.5908287 m  -33.941634 cm  4.2443619 m   110.01479 MeV 46.821522 keV 32.375445 cm  3.4731957 m       World      muIoni
+   40 -1.6415173 m  -34.088078 cm  4.3170715 m   109.99166 MeV  14.61471 keV 8.8646337 cm   3.561842 m       World      muIoni
+   41 -1.6828804 m   -34.21188 cm  4.3762144 m   109.97548 MeV 14.766636 keV 7.2182552 cm  3.6340246 m       World      muIoni
+   42 -1.7966386 m  -34.575424 cm  4.5390077 m   109.94236 MeV 31.023906 keV 19.863501 cm  3.8326596 m       World      muIoni
+   43 -1.8014208 m   -34.59192 cm  4.5458521 m   109.88108 MeV  656.2683 eV  8.3512241 mm  3.8410108 m       World      muIoni
+   44 -1.8186139 m  -34.654437 cm  4.5704432 m   109.87832 MeV 2.7574183 keV 3.0011906 cm  3.8710227 m       World      muIoni
+   45 -1.8353534 m  -34.715082 cm  4.5943937 m    109.8727 MeV 5.6227399 keV 2.9226787 cm  3.9002495 m       World      muIoni
+   46 -1.9732772 m  -35.219626 cm  4.7922488 m   109.83443 MeV 36.364499 keV 24.123687 cm  4.1414864 m       World      muIoni
+   47 -2.0240889 m  -35.412862 cm  4.8653464 m   109.81855 MeV 12.901143 keV 8.9043903 cm  4.2305303 m       World      muIoni
+   48 -2.0246057 m  -35.414845 cm  4.8660901 m   109.81543 MeV 44.426315 eV  905.90873 um  4.2314362 m       World      muIoni
+   49 -2.0509123 m  -35.517144 cm   4.903888 m    109.8072 MeV 6.9945029 keV 4.6062669 cm  4.2774989 m       World      muIoni
+   50 -2.0556633 m  -35.535268 cm  4.9107116 m   109.78547 MeV 1.0284388 keV  8.316571 mm  4.2858154 m       World      muIoni
+   51 -2.0631372 m  -35.564346 cm  4.9214327 m   109.77248 MeV 2.1571158 keV 1.3072291 cm  4.2988877 m       World      muIoni
+   52  -2.091394 m  -35.674232 cm  4.9618776 m   109.76314 MeV 7.9255797 keV 4.9350306 cm   4.348238 m       World      muIoni
+   53 -2.1609944 m  -35.938306 cm  5.0615805 m   109.74024 MeV 21.744665 keV 12.162183 cm  4.4698599 m       World      muIoni
+   54 -2.1640595 m  -35.949512 cm  5.0659736 m   109.73835 MeV 672.71367 eV  5.3578547 mm  4.4752177 m       World      muIoni
+   55 -2.1931221 m  -36.052856 cm  5.1076152 m   109.72826 MeV 9.0089447 keV 5.0790979 cm  4.5260087 m       World      muIoni
+   56 -2.1957795 m  -36.062245 cm  5.1114241 m   109.72106 MeV 871.00115 eV  4.6452783 mm   4.530654 m       World      muIoni
+   57 -2.2366932 m  -36.199944 cm  5.1700687 m   109.71045 MeV 9.4174038 keV 7.1519377 cm  4.6021733 m       World      muIoni
+   58  -2.253757 m  -36.259366 cm    5.19453 m   109.69789 MeV 4.9394815 keV 2.9830843 cm  4.6320042 m       World      muIoni
+   59 -2.2991285 m  -36.430238 cm  5.2595764 m   109.68214 MeV 13.112478 keV 7.9325511 cm  4.7113297 m       World      muIoni
+   60 -2.3157174 m  -36.495556 cm  5.2834254 m   109.67912 MeV 3.0127422 keV   2.90585 cm  4.7403882 m       World      muIoni
+   61 -2.3512653 m  -36.638857 cm   5.334567 m   109.66914 MeV 8.5425463 keV 6.2299053 cm  4.8026872 m       World      muIoni
+   62 -2.3767328 m  -36.754013 cm  5.3710936 m   109.65902 MeV  7.271565 keV 4.4543362 cm  4.8472306 m       World      muIoni
+   63 -2.3824795 m  -36.780243 cm  5.3793332 m   109.65717 MeV 768.79579 eV  1.0049091 cm  4.8572797 m       World      muIoni
+   64 -2.4586053 m  -37.130769 cm  5.4887085 m   109.63823 MeV 17.830384 keV  13.33057 cm  4.9905854 m       World      muIoni
+   65 -2.4762923 m   -37.21085 cm  5.5141804 m   109.63131 MeV 4.6474335 keV 3.1020772 cm  5.0216062 m       World      muIoni
+   66 -2.4941762 m   -37.29102 cm  5.5399651 m   109.62649 MeV 3.2407815 keV 3.1389963 cm  5.0529961 m       World      muIoni
+   67  -2.510168 m  -37.362972 cm   5.563015 m   109.62029 MeV 4.8206266 keV 2.8063396 cm  5.0810595 m       World      muIoni
+   68 -2.5276932 m   -37.43972 cm  5.5882578 m   109.61559 MeV 4.6957462 keV 3.0739589 cm  5.1117991 m       World      muIoni
+   69 -2.6273192 m  -37.884954 cm  5.7319853 m   109.58509 MeV 27.466982 keV  17.49365 cm  5.2867356 m       World      muIoni
+   70 -2.6812633 m  -38.129592 cm  5.8099686 m   109.57109 MeV 11.960862 keV 9.4854393 cm    5.38159 m       World      muIoni
+   71  -2.722255 m  -38.320252 cm  5.8692187 m   109.55952 MeV 10.263533 keV  7.207309 cm  5.4536631 m       World      muIoni
+   72 -2.7312632 m  -38.362554 cm  5.8822254 m    109.5561 MeV 1.9839233 keV 1.5827262 cm  5.4694904 m       World      muIoni
+   73 -2.7878951 m  -38.620539 cm  5.9638468 m   109.54066 MeV  14.26875 keV 9.9377482 cm  5.5688678 m       World      muIoni
+   74 -2.8488989 m   -38.89987 cm  6.0516539 m   109.52314 MeV 17.522508 keV 10.695492 cm  5.6758228 m       World      muIoni
+   75 -2.9403244 m  -39.324227 cm  6.1830478 m   109.49566 MeV 25.587432 keV 16.012819 cm  5.8359509 m       World      muIoni
+   76 -2.9412525 m   -39.32869 cm  6.1843818 m   109.49428 MeV 168.21536 eV  1.6257014 mm  5.8375766 m       World      muIoni
+   77 -2.9516601 m  -39.378687 cm  6.1993354 m   109.48879 MeV  2.666773 keV 1.8225785 cm  5.8558024 m       World      muIoni
+   78 -3.1539637 m  -40.435245 cm  6.4904648 m   108.28784 MeV 55.709764 keV 35.467613 cm  6.2104786 m       World      muIoni
+   79 -3.2041054 m  -40.746147 cm  6.5626514 m    108.2742 MeV  12.50815 keV 8.7947475 cm   6.298426 m       World      muIoni
+   80 -3.2921305 m    -41.2858 cm  6.6893115 m     108.249 MeV 24.054817 keV 15.433847 cm  6.4527645 m       World      muIoni
+   81 -3.3067718 m  -41.378504 cm  6.7103559 m   108.24489 MeV 2.8106206 keV 2.5653319 cm  6.4784178 m       World      muIoni
+   82 -3.4598526 m  -42.362007 cm  6.9311995 m   108.19623 MeV 44.149131 keV 26.889131 cm  6.7473091 m       World      muIoni
+   83 -3.4825448 m  -42.507873 cm   6.964024 m   108.18952 MeV 5.5391537 keV 3.9931338 cm  6.7872405 m       World      muIoni
+   84  -3.650565 m  -43.640974 cm  7.2070699 m   108.14733 MeV 40.792899 keV 29.568694 cm  7.0829274 m       World      muIoni
+   85 -3.6721708 m   -43.78768 cm  7.2383038 m   108.13874 MeV 6.3845986 keV 3.8006834 cm  7.1209342 m       World      muIoni
+   86  -3.719027 m  -44.105589 cm  7.3060452 m   108.12127 MeV 15.893855 keV 8.2428778 cm   7.203363 m       World      muIoni
+   87 -3.7680174 m  -44.439779 cm  7.3768664 m   108.10631 MeV 13.717757 keV  8.617933 cm  7.2895424 m       World      muIoni
+   88 -3.7726153 m  -44.470978 cm  7.3835089 m   108.10405 MeV 720.08531 eV  8.0846739 mm   7.297627 m       World      muIoni
+   89 -3.9040045 m  -45.361689 cm  7.5732617 m   108.06524 MeV  30.20307 keV 23.097335 cm  7.5286004 m       World      muIoni
+   90 -3.9322626 m  -45.554929 cm  7.6140764 m   108.05775 MeV 6.2548328 keV 4.9679933 cm  7.5782803 m       World      muIoni
+   91 -3.9992678 m   -46.01358 cm  7.7106143 m   108.03369 MeV 20.995773 keV 11.760233 cm  7.6958826 m       World      muIoni
+   92 -4.0357212 m  -46.263381 cm  7.7631078 m   108.01996 MeV 12.342611 keV 6.3958249 cm  7.7598409 m       World      muIoni
+   93 -4.0569087 m  -46.409707 cm  7.7935901 m   108.01072 MeV 4.5934176 keV 3.7151399 cm  7.7969923 m       World      muIoni
+   94 -4.1221703 m  -46.848428 cm    7.88747 m    107.9889 MeV 20.333729 keV 11.441921 cm  7.9114115 m       World      muIoni
+   95  -4.165569 m  -47.135322 cm  7.9499901 m   107.96824 MeV 12.131403 keV 7.6160668 cm  7.9875722 m       World      muIoni
+   96  -4.199084 m  -47.357783 cm  7.9982969 m   107.95618 MeV 8.5640803 keV 5.8836623 cm  8.0464088 m       World      muIoni
+   97 -4.1996736 m  -47.361772 cm  7.9991467 m   107.94602 MeV 223.92706 eV  1.0351428 mm  8.0474439 m       World      muIoni
+   98 -4.2340883 m  -47.595197 cm  8.0487048 m   107.93622 MeV 9.8012771 keV 6.0380649 cm  8.1078246 m       World      muIoni
+   99  -4.275313 m  -47.873035 cm  8.1079215 m   107.92507 MeV 8.9719866 keV 7.2206779 cm  8.1800314 m       World      muIoni
+  100 -4.2967619 m  -48.018429 cm  8.1386784 m    107.9191 MeV 4.2589618 keV 3.7525428 cm  8.2175568 m       World      muIoni
+  101 -4.3009238 m  -48.046707 cm  8.1446466 m   107.91715 MeV 877.30885 eV  7.2815438 mm  8.2248383 m       World      muIoni
+  102 -4.3295498 m   -48.24124 cm  8.1856716 m   107.90844 MeV 5.7197862 keV 5.0062804 cm  8.2749011 m       World      muIoni
+  103 -4.5496251 m  -49.778048 cm  8.4994326 m    107.8513 MeV  55.68553 keV 38.355681 cm  8.6584579 m       World      muIoni
+  104 -4.6093785 m  -50.210107 cm  8.5842356 m     107.833 MeV 14.829926 keV 10.383012 cm  8.7622881 m       World      muIoni
+  105 -4.6463407 m  -50.476336 cm  8.6367112 m    107.8228 MeV 9.1237149 keV 6.4241598 cm  8.8265297 m       World      muIoni
+  106 -4.6812643 m  -50.719337 cm   8.686231 m   107.80823 MeV 9.5177214 keV 6.0644688 cm  8.8871743 m       World      muIoni
+  107  -4.783352 m  -51.429089 cm  8.8310366 m   107.78048 MeV  27.74753 keV 17.731607 cm  9.0644904 m       World      muIoni
+  108 -4.8615177 m    -51.9974 cm   8.941977 m   107.75858 MeV 20.494418 keV 13.583068 cm  9.2003211 m       World      muIoni
+  109 -4.9512722 m  -52.680911 cm  9.0693632 m   107.73161 MeV 22.146244 keV 15.598028 cm  9.3563014 m       World      muIoni
+  110 -4.9720008 m  -52.840175 cm  9.0987542 m   107.72547 MeV 6.1402631 keV 3.6000595 cm   9.392302 m  OutOfWorld  Transportation
+Track (trackID 22, parentID 2) is processed with stopping code 2
+NULL returned from G4StackManager.
+Terminate current event processing.
+=====================================
+  G4EventManager::ProcessOneEvent()  
+=====================================
+G4PrimaryTransformer::PrimaryVertex (-11.484137948897(mm),-0.32713403344363(mm),79.209165580291(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10938,7 +11346,7 @@ Terminate current event processing.
 =====================================
 
 ---> Begin of Event: 990
-G4PrimaryTransformer::PrimaryVertex (-12.02941(mm),-2.876245(mm),79.113019(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-10.644398(mm),2.0911335(mm),79.357234(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10947,7 +11355,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.445463(mm),-3.5584842(mm),78.687004(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.350841(mm),1.7113067(mm),78.703689(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10956,7 +11364,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.214968(mm),-0.10573048(mm),78.55132(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.914617(mm),0.081709961(mm),78.956934(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10965,7 +11373,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.835485(mm),1.8423297(mm),78.441906(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.355553(mm),-0.30699409(mm),79.055512(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10974,7 +11382,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.458316(mm),0.0084545488(mm),79.390046(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.740795(mm),-1.3294984(mm),78.458602(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10983,7 +11391,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.199703(mm),-0.31300891(mm),79.259319(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.499067(mm),2.754079(mm),78.501225(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -10992,7 +11400,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.780099(mm),-2.4136818(mm),78.275345(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.381896(mm),2.9788099(mm),78.521886(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -11001,7 +11409,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-13.624644(mm),-3.1792296(mm),78.831737(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.512438(mm),3.6389562(mm),78.851522(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -11010,7 +11418,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.761634(mm),-0.37089456(mm),79.336562(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.67141(mm),3.538411(mm),78.999818(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -11019,7 +11427,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.935946(mm),-0.83431305(mm),78.600519(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.210489(mm),2.3156314(mm),78.728436(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -11049,14 +11457,14 @@ G4NistMaterialBuilder::FindOrBuildMaterial G4_W
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 159
- Current couple of seeds = 1736068513, 1557443125
+ Current couple of seeds = 1317445697, 936094285
 ----------------------------------------
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
 
 ---> Begin of Event: 0
-G4PrimaryTransformer::PrimaryVertex (-14.916192(mm),-2.9352812(mm),78.604002(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.334938(mm),-0.71857985(mm),78.530166(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -11065,7 +11473,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.106982(mm),-1.9537528(mm),78.394033(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.298429(mm),-1.3205549(mm),78.71293(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -11074,7 +11482,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-11.021554(mm),-1.1173406(mm),79.290732(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.224469(mm),2.9967068(mm),78.902298(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -11083,7 +11491,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.019902(mm),-0.2353253(mm),79.46735(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-14.583243(mm),1.9247976(mm),78.66271(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -11092,7 +11500,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.304223(mm),-1.0752594(mm),78.535582(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-15.178876(mm),1.4796819(mm),78.557684(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -11101,7 +11509,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-14.152423(mm),-0.21463978(mm),78.738675(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.645343(mm),2.5136156(mm),78.828087(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -11110,7 +11518,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-16.59625(mm),-1.1685666(mm),78.307762(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-12.756953(mm),-3.6452904(mm),78.984734(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -11119,7 +11527,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-10.637968(mm),-0.29832823(mm),79.358368(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.338934(mm),1.2998442(mm),78.882115(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -11128,7 +11536,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.329392(mm),3.1077452(mm),78.531144(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-16.987043(mm),-1.3903346(mm),78.238855(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
@@ -11137,7 +11545,7 @@ Terminate current event processing.
 =====================================
   G4EventManager::ProcessOneEvent()  
 =====================================
-G4PrimaryTransformer::PrimaryVertex (-15.090402(mm),-3.5115544(mm),78.573284(mm),0(nsec))
+G4PrimaryTransformer::PrimaryVertex (-13.468962(mm),2.9363085(mm),78.859188(mm),0(nsec))
 1 primaries are passed from G4EventTransformer.
 !!!!!!! Now start processing an event !!!!!!!
 Track (trackID 1, parentID 0) is processed with stopping code 2
diff --git a/examples/extended/field/field05/field05.out b/examples/extended/field/field05/field05.out
index f19e3e55f84..ea9fada89ad 100644
--- a/examples/extended/field/field05/field05.out
+++ b/examples/extended/field/field05/field05.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/extended/field/field06/field06.out b/examples/extended/field/field06/field06.out
index 1e3fc67249b..b6180b568e1 100644
--- a/examples/extended/field/field06/field06.out
+++ b/examples/extended/field/field06/field06.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -2299,7 +2299,7 @@ Terminate current event processing.
  Run terminated.
 Run Summary
   Number of events processed : 1
-  User=0.05s Real=0.05s Sys=0s
+  User=0.03s Real=0.03s Sys=0s
 #
 Graphics systems deleted.
 Visualization Manager deleting...
diff --git a/examples/extended/g3tog4/clGeometry/clGeometry.out b/examples/extended/g3tog4/clGeometry/clGeometry.out
index 192cd2fa551..ad70b925088 100644
--- a/examples/extended/g3tog4/clGeometry/clGeometry.out
+++ b/examples/extended/g3tog4/clGeometry/clGeometry.out
@@ -1,5 +1,5 @@
 argc 4
-Geometry data file: /ec/G4-builds/release/slc6-gcc49-RelWithDebInfo/geant4-10-01-patch-01_cand-02/examples/extended/g3tog4/clGeometry/data/testmodel.dat
+Geometry data file: /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/geant4-10-01-patches_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat
 evaluating -m
 
         ############################################
@@ -7,17 +7,17 @@ evaluating -m
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
 *************************************************************
 
-Instantiated G3toG4DetectorConstruction using call list file "/ec/G4-builds/release/slc6-gcc49-RelWithDebInfo/geant4-10-01-patch-01_cand-02/examples/extended/g3tog4/clGeometry/data/testmodel.dat"
+Instantiated G3toG4DetectorConstruction using call list file "/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/geant4-10-01-patches_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat"
 <<< Geant4 Physics List simulation engine: FTFP_BERT 2.0
 
 Instantiated unit rotation matrix irot=0
-Reading the call List file /ec/G4-builds/release/slc6-gcc49-RelWithDebInfo/geant4-10-01-patch-01_cand-02/examples/extended/g3tog4/clGeometry/data/testmodel.dat...
+Reading the call List file /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/geant4-10-01-patches_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat...
 G4ggclos: setting top-level VolTableEntry
 Dump of VTD - 26 entries:
 Instantiated 26 volume table entries 
diff --git a/examples/extended/geometry/transforms/batch.out b/examples/extended/geometry/transforms/batch.out
index eee8e7c835c..ad29cb40c75 100644
--- a/examples/extended/geometry/transforms/batch.out
+++ b/examples/extended/geometry/transforms/batch.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -89,7 +89,7 @@ Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng
  Run terminated.
 Run Summary
   Number of events processed : 1
-  User=0s Real=0.01s Sys=0s
+  User=0.01s Real=0s Sys=0s
 G4 kernel has come to Quit state.
 UserDetectorConstruction deleted.
 UserPhysicsList deleted.
diff --git a/examples/extended/hadronic/FissionFragment/FissionFragment.out b/examples/extended/hadronic/FissionFragment/FissionFragment.out
index 0535c091166..4c075ec0ceb 100644
--- a/examples/extended/hadronic/FissionFragment/FissionFragment.out
+++ b/examples/extended/hadronic/FissionFragment/FissionFragment.out
@@ -1,11 +1,11 @@
-####   Starting: /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/examples/extended/hadronic/FissionFragment/FissionFragment    ####
+####   Starting: /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/examples/extended/hadronic/FissionFragment/FissionFragment    ####
 
         ############################################
         !!! WARNING - FPE detection is activated !!!
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -669,21 +669,21 @@ CoulombScat:   for  mu-, integral: 1     SubType= 1  BuildTable= 1
       180 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
       ===== EM models for the G4Region  DefaultRegionForTheWorld ======
   eCoulombScattering :  Emin=        0 eV    Emax=       10 TeV
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
 Activate Fission Fragments Production for the target isotope of Z = 92, A = 235
 As the result, delayed neutrons are omitted and they should be taken care by RadioaActiveDecay.
 Activate Fission Fragments Production for the target isotope of Z = 92, A = 238
diff --git a/examples/extended/hadronic/Hadr00/hadr00.out b/examples/extended/hadronic/Hadr00/hadr00.out
index 99c8c919dfa..4b3bc968aaa 100644
--- a/examples/extended/hadronic/Hadr00/hadr00.out
+++ b/examples/extended/hadronic/Hadr00/hadr00.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -747,7 +747,7 @@ EventAction: Event # 0 started
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.03s Real=0.04s Sys=0s
+  User=0.03s Real=0.05s Sys=0s
 RunAction: End of run actions are started
 HistoManager: End of run actions are started
 ### Fill Cross Sections for proton off Al
@@ -1558,6 +1558,6 @@ HistoManager: End of run actions are started
 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.033 Mb
+Dynamic pools deleted: 11 / Total memory freed: 0.034 Mb
 ============================================================
 RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/hadronic/Hadr01/hadr01.out b/examples/extended/hadronic/Hadr01/hadr01.out
index b5ef0210d5b..11a083b4b35 100644
--- a/examples/extended/hadronic/Hadr01/hadr01.out
+++ b/examples/extended/hadronic/Hadr01/hadr01.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -398,39 +398,39 @@ EventAction: Event # 90 started
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=0.39s Real=0.41s Sys=0s
+  User=0.21s Real=0.22s Sys=0s
 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)         65.13   RMS(MeV) 58.66
-Average number of steps              237.9
+Average energy deposit (MeV)         61.88   RMS(MeV) 42.19
+Average number of steps              238.2
 Average number of gamma              2.03
-Average number of e-                 4.12
-Average number of e+                 0.05
-Average number of neutrons           1.19
-Average number of protons            1.18
+Average number of e-                 4.46
+Average number of e+                 0.06
+Average number of neutrons           0.91
+Average number of protons            0.96
 Average number of antiprotons        0
-Average number of pi+ & pi-          0.24
-Average number of pi0                0.13
+Average number of pi+ & pi-          0.26
+Average number of pi0                0.12
 Average number of kaons              0
-Average number of muons              0.01
+Average number of muons              0
 Average number of deuterons+tritons  0.11
-Average number of He3+alpha          0.1
-Average number of ions               0.59
-Average number of forward neutrons   0.15
-Average number of reflected neutrons 0.89
-Average number of leaked neutrons    0.05
-Average number of proton leak        0.48
-Average number of pion leak          0.23
+Average number of He3+alpha          0.08
+Average number of ions               0.45
+Average number of forward neutrons   0.11
+Average number of reflected neutrons 0.71
+Average number of leaked neutrons    0.04
+Average number of proton leak        0.46
+Average number of pion leak          0.25
 ========================================================
 
 #
 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.029 Mb
+Dynamic pools deleted: 12 / Total memory freed: 0.033 Mb
 ============================================================
 RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/hadronic/Hadr02/hadr02.out b/examples/extended/hadronic/Hadr02/hadr02.out
index ed259984cf3..0282bd22f46 100644
--- a/examples/extended/hadronic/Hadr02/hadr02.out
+++ b/examples/extended/hadronic/Hadr02/hadr02.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -760,28 +760,28 @@ Index : 1     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=0.29s Real=0.3s Sys=0s
+  User=0.25s Real=0.25s Sys=0s
 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.503   RMS(GeV) 4.16
-Average number of steps              55.14
-Average number of gamma              0.53
+Average energy deposit (GeV)         6.299   RMS(GeV) 4.402
+Average number of steps              53.56
+Average number of gamma              0.74
 Average number of e-                 0
 Average number of e+                 0
-Average number of neutrons           13.7
-Average number of protons            14.29
+Average number of neutrons           11.9
+Average number of protons            11.75
 Average number of antiprotons        0
-Average number of pi+ & pi-          7.06
-Average number of pi0                3.71
-Average number of kaons              0.42
+Average number of pi+ & pi-          9.44
+Average number of pi0                4.73
+Average number of kaons              0.28
 Average number of muons              0
-Average number of deuterons+tritons  1.71
-Average number of He3+alpha          1.3
-Average number of ions               0.73
+Average number of deuterons+tritons  1.62
+Average number of He3+alpha          1.68
+Average number of ions               0.88
 ========================================================
 
 G4 kernel has come to Quit state.
diff --git a/examples/extended/hadronic/Hadr03/hadr03.out b/examples/extended/hadronic/Hadr03/hadr03.out
index 56097237e8d..07c0ed080e0 100644
--- a/examples/extended/hadronic/Hadr03/hadr03.out
+++ b/examples/extended/hadronic/Hadr03/hadr03.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -354,7 +354,7 @@ Index : 0     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 10000
-  User=1.07s Real=1.08s Sys=0s
+  User=0.8s Real=0.8s Sys=0s
 
  The run is 10000 proton of 10 MeV through 10 m   of Molybdenum98 (density: 10.28 g/cm3 )
 
diff --git a/examples/extended/hadronic/Hadr04/hadr04.out b/examples/extended/hadronic/Hadr04/hadr04.out
index afac8a3a91a..496f0feab98 100644
--- a/examples/extended/hadronic/Hadr04/hadr04.out
+++ b/examples/extended/hadronic/Hadr04/hadr04.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -50,19 +50,19 @@ physicsList->setCut() start.
 /run/printProgress 100
 #
 /run/beamOn 1000
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
 
 Neutron HP Thermal Scattering Data: Following material-element pairs and/or elements are registered.
 Element TS_H_of_Water,  internal thermal scattering id 0
 Element TS_C_of_Graphite,  internal thermal scattering id 1
 
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
 
 Neutron HP Thermal Scattering: Following material-element pairs or elements are registered.
 Element TS_H_of_Water,  internal thermal scattering id 0
@@ -103,8 +103,8 @@ Element TS_C_of_Graphite,  internal thermal scattering id 1
      Cr_sctns:          GheishaFissionXS: 0 meV ---> 100 TeV
 
 ================================================================
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
 
 Region <DefaultRegionForTheWorld> --  -- appears in <Water_ts> world volume
  This region is in the mass world.
@@ -154,7 +154,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 1000
-  User=34.25s Real=34.36s Sys=0s
+  User=29.46s Real=31.08s Sys=0s
 
  The run is 1000 neutron of 2 MeV through 50 cm  of Water_ts (density: 1 g/cm3 )
 
diff --git a/examples/extended/hadronic/Hadr05/hadr05.out b/examples/extended/hadronic/Hadr05/hadr05.out
index 23fb2adcbf6..0d8f2f2dfa8 100644
--- a/examples/extended/hadronic/Hadr05/hadr05.out
+++ b/examples/extended/hadronic/Hadr05/hadr05.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -383,7 +383,7 @@ EventAction: Event # 0 started
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.04s Real=0.06s Sys=0s
+  User=0.04s Real=0.04s Sys=0s
 RunAction: End of run actions are started
 HistoManager: End of run actions are started
 ### Fill Cross Sections for proton off Al
@@ -1194,6 +1194,6 @@ HistoManager: End of run actions are started
 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.033 Mb
+Dynamic pools deleted: 11 / Total memory freed: 0.034 Mb
 ============================================================
 RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/hadronic/Hadr06/hadr06.out b/examples/extended/hadronic/Hadr06/hadr06.out
index e8a194a6241..ad545779559 100644
--- a/examples/extended/hadronic/Hadr06/hadr06.out
+++ b/examples/extended/hadronic/Hadr06/hadr06.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -251,16 +251,16 @@ muPairProd:   for  mu-    SubType= 4
       Sampling table 17x1001 from 1 GeV to 10 TeV 
       ===== EM models for the G4Region  DefaultRegionForTheWorld ======
           muPairProd :  Emin=        0 meV   Emax=       10 TeV
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
 
 msc:   for pi+    SubType= 10
       RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
@@ -609,50 +609,50 @@ Index : 1     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 10000
-  User=24.36s Real=24.46s Sys=0s
+  User=19.33s Real=19.98s Sys=0.01s
 
  The run is 10000 neutron of 14.1 MeV through 30 cm  of Li7 (density: 1.85 g/cm3 )
 
  Process calls frequency :
-     RadioactiveDecay= 197215        Transportation=  72263               annihil=    185
-                compt= 397356                  conv=    183            dInelastic=      3
-                eIoni= 407033                 hIoni=    416            hadElastic= 180818
-         ionInelastic=      1               ionIoni= 197485                   msc=    248
-             nCapture=     23      neutronInelastic=  16445                  phot=  20652
-
+     RadioactiveDecay= 195296        Transportation=  72294               annihil=    190
+                compt= 402372                  conv=    191            dInelastic=      3
+                eIoni= 412141                 hIoni=    418            hadElastic= 178971
+              ionIoni= 195582                   msc=    215              nCapture=     31
+     neutronInelastic=  16375                  phot=  20979 
 
  List of generated particles:
-            Be8:      23  Emean =   4.806 keV	( 0 meV --> 9.3892 keV)
-  Be8[3030.000]:      23  Emean =   4.808 keV	( 584.85 meV --> 9.393 keV)
-            He6:     149  Emean =  2.3652 MeV	( 35.059 keV --> 4.8739 MeV)
-            Li6:     722  Emean =  1.6173 MeV	( 3.4443 eV  --> 8.6771 MeV)
-            Li7:  196275  Emean =  333.34 keV	( 0.42837 meV --> 6.2256 MeV)
-            Li8:      23  Emean =   449.9 eV 	( 1.7823 eV  --> 2.4701 keV)
-          alpha:     316  Emean =   1.011 MeV	( 11.843 keV --> 3.7679 MeV)
-      anti_nu_e:     172  Emean =  2.5449 MeV	( 422.22 keV --> 11.72 MeV)
-       deuteron:     417  Emean =  4.6086 MeV	( 140.65 keV --> 22.571 MeV)
-             e+:     183  Emean =  1.3795 MeV	( 60.382 keV --> 4.2007 MeV)
-             e-:  406989  Emean =  86.563 keV	( 100 eV  --> 10.594 MeV)
-          gamma:   45990  Emean =  1.1985 MeV	( 1 keV --> 5.8834 MeV)
-        neutron:   17140  Emean =  3.4064 MeV	( 3.5235 keV --> 13.629 MeV)
-         proton:       2  Emean =  4.6861 MeV	( 4.5275 MeV --> 4.8448 MeV)
-
- Mean energy deposit per event = 10.453 MeV  rms = 3.4227 MeV
- Mean energy flow per event    = 3.1026 MeV  rms = 3.2583 MeV
+            Be8:      31  Emean =  4.9045 keV	( 277.01 eV  --> 10.701 keV)
+  Be8[3030.000]:      31  Emean =  4.9065 keV	( 277.12 eV  --> 10.705 keV)
+            He6:     138  Emean =  2.4163 MeV	( 26.446 keV --> 4.8687 MeV)
+            Li6:     664  Emean =  1.5389 MeV	( 2.5243 eV  --> 6.5509 MeV)
+            Li7:  194401  Emean =  334.66 keV	( 0.39017 meV --> 6.2215 MeV)
+            Li8:      31  Emean =  1.2243 keV	( 174.38 eV  --> 13.93 keV)
+          alpha:     348  Emean =  1.0063 MeV	( 23.272 keV --> 11.081 MeV)
+      anti_nu_e:     169  Emean =  2.7507 MeV	( 240.17 keV --> 10.652 MeV)
+       deuteron:     419  Emean =  4.7213 MeV	( 56.173 keV --> 26.086 MeV)
+             e+:     191  Emean =  1.3838 MeV	( 33.91 keV --> 4.1661 MeV)
+             e-:  412108  Emean =  86.689 keV	( 100 eV  --> 11.769 MeV)
+          gamma:   46351  Emean =   1.208 MeV	( 1.0003 keV --> 5.8831 MeV)
+        neutron:   17049  Emean =  3.3836 MeV	( 2.4103 keV --> 13.639 MeV)
+         proton:       2  Emean =  7.4504 MeV	( 4.1378 MeV --> 10.763 MeV)
+
+ Mean energy deposit per event = 10.454 MeV  rms = 3.4362 MeV
+ Mean energy flow per event    = 3.148 MeV  rms = 3.247 MeV
 
  List of particles leaving the absorber :
-      anti_nu_e:     172  Emean =  2.5449 MeV	( 422.22 keV --> 11.72 MeV) 	Eflow/event = 43.772 keV
-             e-:     127  Emean =  1.0976 MeV	( 19.089 keV --> 3.9398 MeV) 	Eflow/event = 13.94 keV
-          gamma:   25155  Emean =  788.42 keV	( 1.6928 keV --> 5.883 MeV) 	Eflow/event = 1.9833 MeV
-        neutron:   10672  Emean =  994.79 keV	( 4.7983 meV --> 14.1 MeV) 	Eflow/event = 1.0616 MeV
+      anti_nu_e:     169  Emean =  2.7507 MeV	( 240.17 keV --> 10.652 MeV) 	Eflow/event = 46.487 keV
+             e+:       1  Emean =  1.9119 MeV	( 1.9119 MeV --> 1.9119 MeV) 	Eflow/event = 191.19 eV 
+             e-:     145  Emean =  1.3049 MeV	( 42.346 keV --> 4.8599 MeV) 	Eflow/event = 18.92 keV
+          gamma:   25181  Emean =   803.3 keV	( 4.3176 keV --> 5.8831 MeV) 	Eflow/event = 2.0228 MeV
+        neutron:   10643  Emean =  995.56 keV	( 6.7413 meV --> 14.1 MeV) 	Eflow/event = 1.0596 MeV
 
 --------- Ranecu engine status ---------
  Initial seed (index) = 0
- Current couple of seeds = 1737024654, 80026492
+ Current couple of seeds = 1726338685, 430953375
 ----------------------------------------
 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.083 Mb
+Dynamic pools deleted: 11 / Total memory freed: 0.087 Mb
 ============================================================
 RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/medical/DICOM/run.out b/examples/extended/medical/DICOM/run.out
index 4816e31a9c2..32a5afd2024 100644
--- a/examples/extended/medical/DICOM/run.out
+++ b/examples/extended/medical/DICOM/run.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -330,7 +330,7 @@ EV: 99
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=0.03s Real=0.04s Sys=0s
+  User=0.04s Real=0.05s Sys=0s
 
 --------------------End of Global Run----------------------- 
  The run was 200 events 
diff --git a/examples/extended/medical/GammaTherapy/GammaTherapy.out b/examples/extended/medical/GammaTherapy/GammaTherapy.out
index 7f8c1ee7ef3..6f104e102d5 100644
--- a/examples/extended/medical/GammaTherapy/GammaTherapy.out
+++ b/examples/extended/medical/GammaTherapy/GammaTherapy.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -215,7 +215,7 @@ Index : 5     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 10000
-  User=10.39s Real=10.39s Sys=0s
+  User=7.18s Real=7.2s Sys=0s
 RunAction: End of run actions are started
 Histo: End of run actions are started
 ========================================================
diff --git a/examples/extended/medical/dna/chem1/chem1.out b/examples/extended/medical/dna/chem1/chem1.out
index f9e76c7cc1b..b8dc394530e 100644
--- a/examples/extended/medical/dna/chem1/chem1.out
+++ b/examples/extended/medical/dna/chem1/chem1.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/extended/medical/dna/chem2/chem2.out b/examples/extended/medical/dna/chem2/chem2.out
index f6e173322bb..b31fa0da1eb 100644
--- a/examples/extended/medical/dna/chem2/chem2.out
+++ b/examples/extended/medical/dna/chem2/chem2.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -205,398 +205,347 @@ DNAMolecularStepByStepModel will be used
 *** G4Scheduler starts processing 
 At time :       1 ps  Reaction : e_aq^1 (-435) + OH^0 (-966) -> OH^-1 (-1220)
 At time :       1 ps  Reaction : e_aq^1 (-379) + OH^0 (-904) -> OH^-1 (-1221)
-At time :       1 ps  Reaction : e_aq^1 (-211) + OH^0 (-824) -> OH^-1 (-1222)
-At time :       1 ps  Reaction : e_aq^1 (-130) + OH^0 (-844) -> OH^-1 (-1223)
+At time :       1 ps  Reaction : e_aq^1 (-130) + OH^0 (-844) -> OH^-1 (-1222)
+At time :       1 ps  Reaction : e_aq^1 (-211) + OH^0 (-824) -> OH^-1 (-1223)
+At time :       1 ps  Reaction : OH^-1 (-1223) + H3O^1 (-823) -> No product
+At time :       1 ps  Reaction : OH^-1 (-1222) + H3O^1 (-843) -> No product
 At time :       1 ps  Reaction : OH^-1 (-1221) + H3O^1 (-903) -> No product
-At time :       1 ps  Reaction : OH^-1 (-1222) + H3O^1 (-823) -> No product
 At time :       1 ps  Reaction : OH^-1 (-1220) + H3O^1 (-965) -> No product
-At time :       1 ps  Reaction : OH^-1 (-1223) + H3O^1 (-843) -> No product
-At time :     1.1 ps  Reaction : e_aq^1 (-323) + H3O^1 (-753) -> H^0 (-1224)
-At time :     1.3 ps  Reaction : e_aq^1 (-525) + OH^0 (-638) -> OH^-1 (-1225)
-At time :     1.3 ps  Reaction : H3O^1 (-637) + OH^-1 (-1225) -> No product
-At time :     1.6 ps  Reaction : OH^0 (-814) + OH^0 (-818) -> H2O2^0 (-1226)
-At time :     1.8 ps  Reaction : e_aq^1 (-407) + OH^0 (-704) -> OH^-1 (-1227)
-At time :     1.8 ps  Reaction : e_aq^1 (-260) + OH^0 (-1190) -> OH^-1 (-1228)
-At time :     1.8 ps  Reaction : H3O^1 (-703) + OH^-1 (-1227) -> No product
-At time :     1.8 ps  Reaction : OH^-1 (-1228) + H3O^1 (-1191) -> No product
-At time :     2.4 ps  Reaction : e_aq^1 (-369) + OH^0 (-1205) -> OH^-1 (-1229)
-At time :     2.4 ps  Reaction : OH^-1 (-1229) + H3O^1 (-1206) -> No product
-At time :     2.7 ps  Reaction : e_aq^1 (-434) + OH^0 (-682) -> OH^-1 (-1230)
-At time :     2.7 ps  Reaction : H3O^1 (-681) + OH^-1 (-1230) -> No product
-At time : 3.22881 ps  Reaction : e_aq^1 (-541) + OH^0 (-640) -> OH^-1 (-1231)
-At time : 3.22881 ps  Reaction : H3O^1 (-639) + OH^-1 (-1231) -> No product
-At time : 3.92881 ps  Reaction : e_aq^1 (-245) + OH^0 (-784) -> OH^-1 (-1232)
-At time : 3.92881 ps  Reaction : e_aq^1 (-203) + OH^0 (-1168) -> OH^-1 (-1233)
-At time : 3.92881 ps  Reaction : OH^-1 (-1233) + H3O^1 (-1167) -> No product
-At time : 4.02881 ps  Reaction : OH^0 (-754) + H^0 (-1224) -> No product
-At time : 4.32881 ps  Reaction : H3O^1 (-1203) + e_aq^1 (-1204) -> H^0 (-1234)
-At time : 5.62881 ps  Reaction : H3O^1 (-783) + OH^-1 (-1232) -> No product
-At time : 5.62881 ps  Reaction : OH^0 (-930) + OH^0 (-1096) -> H2O2^0 (-1235)
-At time : 5.97927 ps  Reaction : OH^0 (-850) + OH^0 (-1014) -> H2O2^0 (-1236)
-At time : 7.15141 ps  Reaction : e_aq^1 (-302) + OH^0 (-764) -> OH^-1 (-1237)
-At time : 7.15141 ps  Reaction : H3O^1 (-763) + OH^-1 (-1237) -> No product
-At time : 7.45141 ps  Reaction : e_aq^1 (-163) + OH^0 (-832) -> OH^-1 (-1238)
-At time : 7.45141 ps  Reaction : H3O^1 (-831) + OH^-1 (-1238) -> No product
-At time : 8.46299 ps  Reaction : e_aq^1 (-452) + OH^0 (-970) -> OH^-1 (-1239)
-At time : 8.46299 ps  Reaction : H3O^1 (-969) + OH^-1 (-1239) -> No product
-At time : 8.56299 ps  Reaction : e_aq^1 (-481) + OH^0 (-910) -> OH^-1 (-1240)
-At time : 8.56299 ps  Reaction : H3O^1 (-909) + OH^-1 (-1240) -> No product
-At time :  10.066 ps  Reaction : e_aq^1 (-308) + H3O^1 (-1047) -> H^0 (-1241)
-At time :  11.066 ps  Reaction : e_aq^1 (-411) + OH^0 (-706) -> OH^-1 (-1242)
-At time :  11.066 ps  Reaction : H3O^1 (-701) + OH^-1 (-1242) -> No product
-At time :  12.066 ps  Reaction : e_aq^1 (-416) + H3O^1 (-711) -> H^0 (-1243)
-At time :  14.066 ps  Reaction : OH^0 (-730) + OH^0 (-1140) -> H2O2^0 (-1244)
-At time :  15.066 ps  Reaction : e_aq^1 (-189) + H3O^1 (-999) -> H^0 (-1245)
-At time :  17.066 ps  Reaction : e_aq^1 (-173) + OH^0 (-1116) -> OH^-1 (-1246)
-At time :  17.066 ps  Reaction : H3O^1 (-825) + OH^-1 (-1246) -> No product
-At time :  18.066 ps  Reaction : OH^0 (-690) + OH^0 (-1102) -> H2O2^0 (-1247)
-At time :  19.066 ps  Reaction : e_aq^1 (-262) + OH^0 (-1130) -> OH^-1 (-1248)
-At time :  19.066 ps  Reaction : e_aq^1 (-228) + OH^0 (-1126) -> OH^-1 (-1249)
-At time :  19.066 ps  Reaction : OH^-1 (-1249) + H3O^1 (-1125) -> No product
-At time :  20.066 ps  Reaction : OH^-1 (-1248) + H3O^1 (-1129) -> No product
-At time :  21.066 ps  Reaction : e_aq^1 (-359) + OH^0 (-736) -> OH^-1 (-1250)
-At time :  21.066 ps  Reaction : H3O^1 (-735) + OH^-1 (-1250) -> No product
-At time :  22.066 ps  Reaction : e_aq^1 (-309) + OH^0 (-1050) -> OH^-1 (-1251)
-At time :  26.066 ps  Reaction : e_aq^1 (-124) + H3O^1 (-1013) -> H^0 (-1252)
-At time :  27.066 ps  Reaction : e_aq^1 (-324) + H3O^1 (-895) -> H^0 (-1253)
-At time :  28.066 ps  Reaction : e_aq^1 (-540) + H3O^1 (-651) -> H^0 (-1254)
-At time :  31.066 ps  Reaction : e_aq^1 (-272) + H3O^1 (-773) -> H^0 (-1255)
-At time :  33.066 ps  Reaction : OH^-1 (-608) + H3O^1 (-1057) -> No product
-At time :  34.066 ps  Reaction : e_aq^1 (-373) + OH^0 (-1062) -> OH^-1 (-1256)
-At time :  38.066 ps  Reaction : e_aq^1 (-544) + H3O^1 (-655) -> H^0 (-1257)
-At time :  40.066 ps  Reaction : e_aq^1 (-351) + H3O^1 (-743) -> H^0 (-1258)
-At time :  47.066 ps  Reaction : e_aq^1 (-485) + OH^0 (-674) -> OH^-1 (-1259)
-At time :  50.066 ps  Reaction : e_aq^1 (-128) + H3O^1 (-1165) -> H^0 (-1260)
-At time :  50.066 ps  Reaction : OH^0 (-786) + OH^0 (-990) -> H2O2^0 (-1261)
-At time :  51.066 ps  Reaction : e_aq^1 (-412) + OH^0 (-702) -> OH^-1 (-1262)
-At time :  52.066 ps  Reaction : H3O^1 (-705) + OH^-1 (-1262) -> No product
-At time :  54.066 ps  Reaction : e_aq^1 (-223) + OH^0 (-864) -> OH^-1 (-1263)
-At time :  55.066 ps  Reaction : OH^0 (-1010) + OH^0 (-1012) -> H2O2^0 (-1264)
-At time :  56.066 ps  Reaction : OH^0 (-808) + OH^0 (-1120) -> H2O2^0 (-1265)
-At time :  58.066 ps  Reaction : OH^0 (-992) + OH^0 (-1124) -> H2O2^0 (-1266)
-At time :  60.066 ps  Reaction : e_aq^1 (-312) + OH^0 (-892) -> OH^-1 (-1267)
-At time :  61.066 ps  Reaction : e_aq^1 (-341) + OH^0 (-980) -> OH^-1 (-1268)
-At time :  61.066 ps  Reaction : e_aq^1 (-167) + OH^0 (-1166) -> OH^-1 (-1269)
-At time :  61.066 ps  Reaction : OH^-1 (-1269) + H3O^1 (-857) -> No product
-At time :  61.066 ps  Reaction : OH^-1 (-1268) + H3O^1 (-979) -> No product
-At time :  64.066 ps  Reaction : OH^0 (-714) + OH^0 (-722) -> H2O2^0 (-1270)
-At time : 78.0804 ps  Reaction : e_aq^1 (-127) + H3O^1 (-853) -> H^0 (-1271)
-At time : 83.0804 ps  Reaction : OH^0 (-746) + OH^0 (-1174) -> H2O2^0 (-1272)
-At time : 84.0804 ps  Reaction : e_aq^1 (-440) + H3O^1 (-687) -> H^0 (-1273)
-At time : 87.0804 ps  Reaction : H3O^1 (-759) + OH^-1 (-1267) -> No product
-At time : 91.0804 ps  Reaction : e_aq^1 (-453) + OH^0 (-974) -> OH^-1 (-1274)
-At time : 98.0804 ps  Reaction : H3O^1 (-973) + OH^-1 (-1274) -> No product
-At time :  105.08 ps  Reaction : e_aq^1 (-364) + H3O^1 (-727) -> H^0 (-1275)
-At time :  105.08 ps  Reaction : e_aq^1 (-315) + OH^0 (-758) -> OH^-1 (-1276)
-At time :  105.08 ps  Reaction : e_aq^1 (-484) + H3O^1 (-1081) -> H^0 (-1277)
-At time :  111.08 ps  Reaction : e_aq^1 (-346) + OH^0 (-1187) -> OH^-1 (-1278)
-At time :  111.08 ps  Reaction : e_aq^1 (-194) + H3O^1 (-1117) -> H^0 (-1279)
-At time :  123.08 ps  Reaction : e_aq^1 (-121) + e_aq^1 (-169) -> OH^-1 (-1280) + OH^-1 (-1281) + H_2^0 (-1282)
-At time :  126.08 ps  Reaction : OH^0 (-998) + OH^0 (-1020) -> H2O2^0 (-1283)
-At time :  129.08 ps  Reaction : e_aq^1 (-236) + OH^0 (-868) -> OH^-1 (-1284)
-At time :  132.08 ps  Reaction : e_aq^1 (-129) + OH^0 (-836) -> OH^-1 (-1285)
-At time :  138.08 ps  Reaction : H3O^1 (-833) + OH^-1 (-1285) -> No product
-At time :  138.08 ps  Reaction : OH^0 (-798) + OH^0 (-1118) -> H2O2^0 (-1286)
-At time :  141.08 ps  Reaction : e_aq^1 (-436) + H3O^1 (-1067) -> H^0 (-1287)
-At time :  141.08 ps  Reaction : e_aq^1 (-536) + OH^0 (-938) -> OH^-1 (-1288)
-At time :  141.08 ps  Reaction : e_aq^1 (-565) + H3O^1 (-1159) -> H^0 (-1289)
-At time :  165.08 ps  Reaction : OH^0 (-1034) + OH^0 (-1036) -> H2O2^0 (-1290)
-At time :  174.08 ps  Reaction : e_aq^1 (-227) + OH^0 (-1030) -> OH^-1 (-1291)
-At time :  174.08 ps  Reaction : OH^0 (-742) + OH^0 (-744) -> H2O2^0 (-1292)
-At time :  177.08 ps  Reaction : e_aq^1 (-234) + H3O^1 (-793) -> H^0 (-1293)
-At time :  180.08 ps  Reaction : e_aq^1 (-530) + H3O^1 (-641) -> H^0 (-1294)
-At time :  186.08 ps  Reaction : e_aq^1 (-331) + OH^0 (-748) -> OH^-1 (-1295)
-At time :  189.08 ps  Reaction : e_aq^1 (-363) + H3O^1 (-731) -> H^0 (-1296)
-At time :  189.08 ps  Reaction : H3O^1 (-647) + OH^-1 (-1288) -> No product
-At time :  189.08 ps  Reaction : e_aq^1 (-193) + H3O^1 (-801) -> H^0 (-1297)
-At time :  204.08 ps  Reaction : OH^-1 (-1291) + H3O^1 (-1123) -> No product
-At time :  210.08 ps  Reaction : e_aq^1 (-200) + OH^0 (-1000) -> OH^-1 (-1298)
-At time :  210.08 ps  Reaction : OH^0 (-896) + H^0 (-1253) -> No product
-At time :  240.08 ps  Reaction : H3O^1 (-807) + OH^-1 (-1298) -> No product
-At time :  246.08 ps  Reaction : OH^0 (-708) + OH^0 (-1193) -> H2O2^0 (-1299)
-At time :  258.08 ps  Reaction : H^0 (-1260) + OH^0 (-842) -> No product
-At time :  270.08 ps  Reaction : OH^0 (-646) + H^0 (-1294) -> No product
-At time :  276.08 ps  Reaction : e_aq^1 (-332) + OH^0 (-752) -> OH^-1 (-1300)
-At time :  279.08 ps  Reaction : e_aq^1 (-593) + OH^0 (-618) -> OH^-1 (-1301)
-At time :  282.08 ps  Reaction : e_aq^1 (-417) + OH^0 (-698) -> OH^-1 (-1302)
-At time :  282.08 ps  Reaction : H3O^1 (-757) + OH^-1 (-1276) -> No product
-At time :  288.08 ps  Reaction : H3O^1 (-1049) + OH^-1 (-1251) -> No product
-At time :  291.08 ps  Reaction : e_aq^1 (-247) + H^0 (-1293) -> OH^-1 (-1303) + H_2^0 (-1304)
-At time :  291.08 ps  Reaction : OH^-1 (-1302) + H3O^1 (-697) -> No product
-At time :  303.08 ps  Reaction : OH^-1 (-1281) + H3O^1 (-1017) -> No product
-At time :  327.08 ps  Reaction : e_aq^1 (-591) + e_aq^1 (-585) -> OH^-1 (-1305) + OH^-1 (-1306) + H_2^0 (-1307)
-At time :  333.08 ps  Reaction : e_aq^1 (-551) + OH^0 (-634) -> OH^-1 (-1308)
-At time :  342.08 ps  Reaction : e_aq^1 (-190) + H3O^1 (-817) -> H^0 (-1309)
-At time :  351.08 ps  Reaction : e_aq^1 (-258) + H3O^1 (-985) -> H^0 (-1310)
-At time :  354.08 ps  Reaction : e_aq^1 (-218) + e_aq^1 (-210) -> OH^-1 (-1311) + OH^-1 (-1312) + H_2^0 (-1313)
-At time :  360.08 ps  Reaction : e_aq^1 (-394) + OH^0 (-1214) -> OH^-1 (-1314)
-At time :  360.08 ps  Reaction : OH^-1 (-1314) + H3O^1 (-1215) -> No product
-At time :  372.08 ps  Reaction : e_aq^1 (-212) + OH^0 (-820) -> OH^-1 (-1315)
-At time :  375.08 ps  Reaction : OH^-1 (-1300) + H3O^1 (-1055) -> No product
-At time :  375.08 ps  Reaction : H3O^1 (-797) + OH^-1 (-1315) -> No product
-At time :  402.08 ps  Reaction : OH^0 (-648) + H^0 (-1254) -> No product
-At time :  420.08 ps  Reaction : OH^0 (-794) + OH^0 (-870) -> H2O2^0 (-1316)
-At time :  423.08 ps  Reaction : e_aq^1 (-196) + OH^0 (-1122) -> OH^-1 (-1317)
-At time :  429.08 ps  Reaction : e_aq^1 (-356) + OH^0 (-738) -> OH^-1 (-1318)
-At time :  429.08 ps  Reaction : OH^0 (-834) + OH^0 (-838) -> H2O2^0 (-1319)
-At time :  435.08 ps  Reaction : e_aq^1 (-217) + OH^0 (-810) -> OH^-1 (-1320)
-At time :  447.08 ps  Reaction : OH^0 (-782) + OH^0 (-792) -> H2O2^0 (-1321)
-At time :  450.08 ps  Reaction : OH^0 (-812) + OH^0 (-816) -> H2O2^0 (-1322)
-At time :  450.08 ps  Reaction : H3O^1 (-819) + OH^-1 (-1317) -> No product
-At time :  462.08 ps  Reaction : OH^-1 (-1306) + H3O^1 (-619) -> No product
-At time :  480.08 ps  Reaction : e_aq^1 (-126) + H3O^1 (-839) -> H^0 (-1323)
-At time :  480.08 ps  Reaction : e_aq^1 (-345) + OH^0 (-1176) -> OH^-1 (-1324)
-At time :  483.08 ps  Reaction : e_aq^1 (-224) + OH^0 (-866) -> OH^-1 (-1325)
-At time :  495.08 ps  Reaction : OH^0 (-684) + OH^0 (-686) -> H2O2^0 (-1326)
-At time :  504.08 ps  Reaction : OH^0 (-1144) + OH^0 (-1180) -> H2O2^0 (-1327)
-At time :  522.08 ps  Reaction : e_aq^1 (-409) + OH^0 (-718) -> OH^-1 (-1328)
-At time :  525.08 ps  Reaction : e_aq^1 (-439) + OH^0 (-688) -> OH^-1 (-1329)
-At time :  525.08 ps  Reaction : H3O^1 (-683) + OH^-1 (-1329) -> No product
-At time :  528.08 ps  Reaction : e_aq^1 (-132) + H^0 (-1323) -> OH^-1 (-1330) + H_2^0 (-1331)
-At time :  531.08 ps  Reaction : H3O^1 (-811) + OH^-1 (-1320) -> No product
-At time :  534.08 ps  Reaction : e_aq^1 (-293) + H3O^1 (-879) -> H^0 (-1332)
-At time :  534.08 ps  Reaction : OH^-1 (-1311) + H3O^1 (-997) -> No product
-At time :  543.08 ps  Reaction : OH^0 (-986) + OH^0 (-1170) -> H2O2^0 (-1333)
-At time :  552.08 ps  Reaction : OH^-1 (-1330) + H3O^1 (-1001) -> No product
-At time :  567.08 ps  Reaction : OH^-1 (-1312) + H3O^1 (-995) -> No product
-At time :  567.08 ps  Reaction : H^0 (-1297) + OH^0 (-996) -> No product
-At time :  570.08 ps  Reaction : e_aq^1 (-333) + H^0 (-1258) -> OH^-1 (-1334) + H_2^0 (-1335)
-At time :  582.08 ps  Reaction : e_aq^1 (-383) + H3O^1 (-1177) -> H^0 (-1336)
-At time :  585.08 ps  Reaction : e_aq^1 (-265) + OH^0 (-774) -> OH^-1 (-1337)
-At time :  585.08 ps  Reaction : H3O^1 (-867) + OH^-1 (-1284) -> No product
-At time :  612.08 ps  Reaction : e_aq^1 (-138) + H^0 (-1252) -> OH^-1 (-1338) + H_2^0 (-1339)
-At time :  645.08 ps  Reaction : e_aq^1 (-279) + OH^0 (-778) -> OH^-1 (-1340)
-At time :  669.08 ps  Reaction : H^0 (-1309) + OH^0 (-822) -> No product
-At time :  675.08 ps  Reaction : e_aq^1 (-535) + OH^0 (-654) -> OH^-1 (-1341)
-At time :  678.08 ps  Reaction : OH^-1 (-1324) + H3O^1 (-1175) -> No product
-At time :  705.08 ps  Reaction : OH^-1 (-1341) + H3O^1 (-937) -> No product
-At time :  714.08 ps  Reaction : e_aq^1 (-583) + OH^0 (-620) -> OH^-1 (-1342)
-At time :  735.08 ps  Reaction : e_aq^1 (-537) + H3O^1 (-667) -> H^0 (-1343)
-At time :  741.08 ps  Reaction : OH^-1 (-1278) + H3O^1 (-1188) -> No product
-At time :  744.08 ps  Reaction : e_aq^1 (-588) + e_aq^1 (-587) -> OH^-1 (-1344) + OH^-1 (-1345) + H_2^0 (-1346)
-At time :  762.08 ps  Reaction : OH^0 (-603) + OH^0 (-948) -> H2O2^0 (-1347)
-At time :  765.08 ps  Reaction : H3O^1 (-1037) + OH^-1 (-1340) -> No product
-At time :  780.08 ps  Reaction : e_aq^1 (-572) + OH^0 (-630) -> OH^-1 (-1348)
-At time :  783.08 ps  Reaction : OH^0 (-1056) + OH^0 (-1172) -> H2O2^0 (-1349)
-At time :  804.08 ps  Reaction : OH^0 (-830) + OH^0 (-1004) -> H2O2^0 (-1350)
-At time :  810.08 ps  Reaction : OH^0 (-1016) + OH^0 (-1018) -> H2O2^0 (-1351)
-At time :  834.08 ps  Reaction : e_aq^1 (-586) + H3O^1 (-1095) -> H^0 (-1352)
-At time :  861.08 ps  Reaction : e_aq^1 (-422) + H3O^1 (-721) -> H^0 (-1353)
-At time :  897.08 ps  Reaction : H3O^1 (-741) + OH^-1 (-1334) -> No product
-At time :  924.08 ps  Reaction : e_aq^1 (-165) + H3O^1 (-1015) -> H^0 (-1354)
-At time :  936.08 ps  Reaction : e_aq^1 (-556) + e_aq^1 (-531) -> OH^-1 (-1355) + OH^-1 (-1356) + H_2^0 (-1357)
-At time :  978.08 ps  Reaction : e_aq^1 (-177) + e_aq^1 (-199) -> OH^-1 (-1358) + OH^-1 (-1359) + H_2^0 (-1360)
-At time : 1.00917 ns  Reaction : e_aq^1 (-20) + H3O^1 (-913) -> H^0 (-1361)
-At time : 1.05917 ns  Reaction : OH^0 (-960) + OH^0 (-1184) -> H2O2^0 (-1362)
-At time : 1.08917 ns  Reaction : e_aq^1 (-287) + H3O^1 (-877) -> H^0 (-1363)
-At time : 1.10917 ns  Reaction : H3O^1 (-629) + OH^-1 (-1348) -> No product
-At time : 1.10917 ns  Reaction : OH^0 (-876) + OH^0 (-1040) -> H2O2^0 (-1364)
-At time : 1.12917 ns  Reaction : e_aq^1 (-133) + e_aq^1 (-162) -> OH^-1 (-1365) + OH^-1 (-1366) + H_2^0 (-1367)
-At time : 1.12917 ns  Reaction : e_aq^1 (-569) + OH^0 (-1160) -> OH^-1 (-1368)
-At time : 1.15917 ns  Reaction : e_aq^1 (-191) + H3O^1 (-809) -> H^0 (-1369)
-At time : 1.15917 ns  Reaction : OH^-1 (-1368) + H3O^1 (-935) -> No product
-At time : 1.17917 ns  Reaction : H3O^1 (-849) + OH^-1 (-1338) -> No product
-At time : 1.19917 ns  Reaction : H3O^1 (-835) + OH^-1 (-1280) -> No product
-At time : 1.22917 ns  Reaction : e_aq^1 (-204) + OH^0 (-800) -> OH^-1 (-1370)
-At time : 1.22917 ns  Reaction : OH^0 (-894) + OH^0 (-1054) -> H2O2^0 (-1371)
-At time : 1.23917 ns  Reaction : e_aq^1 (-168) + OH^0 (-856) -> OH^-1 (-1372)
-At time : 1.27917 ns  Reaction : H3O^1 (-719) + OH^-1 (-1328) -> No product
-At time : 1.31917 ns  Reaction : H^0 (-1271) + OH^0 (-1208) -> No product
-At time : 1.41917 ns  Reaction : H3O^1 (-1003) + OH^-1 (-1365) -> No product
-At time : 1.44917 ns  Reaction : e_aq^1 (-249) + OH^0 (-872) -> OH^-1 (-1373)
-At time : 1.46917 ns  Reaction : e_aq^1 (-442) + OH^0 (-692) -> OH^-1 (-1374)
-At time : 1.46917 ns  Reaction : H3O^1 (-1169) + OH^-1 (-1337) -> No product
-At time : 1.47917 ns  Reaction : e_aq^1 (-584) + OH^0 (-624) -> OH^-1 (-1375)
-At time : 1.50917 ns  Reaction : e_aq^1 (-307) + H^0 (-1241) -> OH^-1 (-1376) + H_2^0 (-1377)
-At time : 1.69917 ns  Reaction : OH^-1 (-1356) + H3O^1 (-653) -> No product
-At time : 1.76917 ns  Reaction : OH^-1 (-1308) + H3O^1 (-633) -> No product
-At time : 1.77917 ns  Reaction : e_aq^1 (-280) + OH^0 (-1128) -> OH^-1 (-1378)
-At time : 1.82917 ns  Reaction : OH^0 (-642) + OH^0 (-652) -> H2O2^0 (-1379)
-At time : 1.83917 ns  Reaction : OH^-1 (-1366) + H3O^1 (-1113) -> No product
-At time : 1.84917 ns  Reaction : OH^-1 (-1370) + H3O^1 (-1121) -> No product
-At time : 1.91917 ns  Reaction : OH^-1 (-1359) + H3O^1 (-1007) -> No product
-At time : 2.03917 ns  Reaction : e_aq^1 (-187) + H^0 (-1369) -> OH^-1 (-1380) + H_2^0 (-1381)
-At time : 2.08917 ns  Reaction : H3O^1 (-851) + OH^-1 (-1380) -> No product
-At time : 2.39917 ns  Reaction : OH^0 (-804) + OH^0 (-828) -> H2O2^0 (-1382)
-At time : 2.43917 ns  Reaction : e_aq^1 (-420) + H3O^1 (-713) -> H^0 (-1383)
-At time : 2.46917 ns  Reaction : H3O^1 (-621) + OH^-1 (-1342) -> No product
-At time : 2.48917 ns  Reaction : e_aq^1 (-264) + H3O^1 (-771) -> H^0 (-1384)
-At time : 2.50917 ns  Reaction : e_aq^1 (-139) + H3O^1 (-1023) -> H^0 (-1385)
-At time : 2.50917 ns  Reaction : H3O^1 (-905) + e_aq^1 (-1216) -> H^0 (-1386)
-At time : 2.51917 ns  Reaction : e_aq^1 (-284) + OH^0 (-1104) -> OH^-1 (-1387)
-At time : 2.53917 ns  Reaction : e_aq^1 (-529) + H3O^1 (-941) -> H^0 (-1388)
-At time : 2.60917 ns  Reaction : e_aq^1 (-143) + OH^0 (-1008) -> OH^-1 (-1389)
-At time : 2.64917 ns  Reaction : e_aq^1 (-216) + OH^0 (-1028) -> OH^-1 (-1390)
-At time : 2.66917 ns  Reaction : e_aq^1 (-156) + OH^0 (-858) -> OH^-1 (-1391)
-At time : 2.73917 ns  Reaction : H3O^1 (-781) + OH^-1 (-1303) -> No product
-At time : 2.75917 ns  Reaction : e_aq^1 (-233) + H3O^1 (-789) -> H^0 (-1392)
-At time : 2.77917 ns  Reaction : e_aq^1 (-314) + OH^0 (-760) -> OH^-1 (-1393)
-At time : 2.77917 ns  Reaction : OH^0 (-658) + OH^0 (-946) -> H2O2^0 (-1394)
-At time : 2.81917 ns  Reaction : H3O^1 (-929) + OH^-1 (-1345) -> No product
-At time : 2.93917 ns  Reaction : e_aq^1 (-385) + H3O^1 (-1197) -> H^0 (-1395)
-At time : 3.00917 ns  Reaction : e_aq^1 (-463) + e_aq^1 (-459) -> OH^-1 (-1396) + OH^-1 (-1397) + H_2^0 (-1398)
-At time : 3.09917 ns  Reaction : e_aq^1 (-186) + e_aq^1 (-195) -> OH^-1 (-1399) + OH^-1 (-1400) + H_2^0 (-1401)
-At time : 3.09917 ns  Reaction : e_aq^1 (-214) + OH^0 (-1022) -> OH^-1 (-1402)
-At time : 3.10917 ns  Reaction : OH^0 (-1108) + e_aq^1 (-1201) -> OH^-1 (-1403)
-At time : 3.11917 ns  Reaction : OH^-1 (-1393) + H3O^1 (-1135) -> No product
-At time : 3.17918 ns  Reaction : e_aq^1 (-555) + e_aq^1 (-526) -> OH^-1 (-1404) + OH^-1 (-1405) + H_2^0 (-1406)
-At time : 3.23981 ns  Reaction : H3O^1 (-945) + OH^-1 (-1355) -> No product
-At time : 3.38488 ns  Reaction : e_aq^1 (-120) + H3O^1 (-1115) -> H^0 (-1407)
-At time : 3.45488 ns  Reaction : OH^-1 (-1378) + H3O^1 (-775) -> No product
-At time : 3.46488 ns  Reaction : OH^0 (-1052) + OH^0 (-1136) -> H2O2^0 (-1408)
-At time : 3.46488 ns  Reaction : H3O^1 (-847) + e_aq^1 (-1210) -> H^0 (-1409)
-At time : 3.58591 ns  Reaction : e_aq^1 (-273) + H^0 (-1255) -> OH^-1 (-1410) + H_2^0 (-1411)
-At time : 3.84076 ns  Reaction : e_aq^1 (-176) + OH^0 (-802) -> OH^-1 (-1412)
-At time : 4.00447 ns  Reaction : OH^-1 (-1402) + H3O^1 (-859) -> No product
-At time : 4.04447 ns  Reaction : OH^-1 (-1403) + H3O^1 (-1107) -> No product
-At time : 4.29633 ns  Reaction : H3O^1 (-795) + OH^-1 (-1263) -> No product
-At time :  4.6354 ns  Reaction : e_aq^1 (-454) + H3O^1 (-685) -> H^0 (-1413)
-At time :  4.6654 ns  Reaction : e_aq^1 (-524) + H3O^1 (-645) -> H^0 (-1414)
-At time :  4.6754 ns  Reaction : H3O^1 (-745) + e_aq^1 (-1189) -> H^0 (-1415)
-At time :  4.7154 ns  Reaction : e_aq^1 (-229) + OH^0 (-612) -> OH^-1 (-1416)
-At time :  4.7154 ns  Reaction : H3O^1 (-813) + OH^-1 (-1390) -> No product
-At time :  4.7554 ns  Reaction : e_aq^1 (-460) + OH^0 (-1146) -> OH^-1 (-1417)
-At time :  4.7854 ns  Reaction : e_aq^1 (-523) + H^0 (-1388) -> OH^-1 (-1418) + H_2^0 (-1419)
-At time : 4.92893 ns  Reaction : OH^0 (-886) + OH^0 (-890) -> H2O2^0 (-1420)
-At time : 5.73744 ns  Reaction : OH^0 (-696) + OH^0 (-710) -> H2O2^0 (-1421)
-At time :  5.7879 ns  Reaction : H3O^1 (-991) + OH^-1 (-1416) -> No product
-At time :  5.8079 ns  Reaction : e_aq^1 (-567) + OH^0 (-952) -> OH^-1 (-1422)
-At time : 5.91102 ns  Reaction : OH^0 (-936) + OH^0 (-1100) -> H2O2^0 (-1423)
-At time : 6.01392 ns  Reaction : H3O^1 (-1077) + OH^-1 (-1396) -> No product
-At time : 6.04392 ns  Reaction : OH^0 (-1064) + OH^0 (-1178) -> H2O2^0 (-1424)
-At time : 6.25392 ns  Reaction : e_aq^1 (-281) + H3O^1 (-769) -> H^0 (-1425)
-At time : 6.38392 ns  Reaction : H^0 (-1386) + e_aq^1 (-382) -> OH^-1 (-1426) + H_2^0 (-1427)
-At time : 6.38392 ns  Reaction : e_aq^1 (-298) + H3O^1 (-883) -> H^0 (-1428)
-At time : 6.79851 ns  Reaction : OH^0 (-854) + H^0 (-1407) -> No product
-At time : 6.81851 ns  Reaction : e_aq^1 (-384) + H3O^1 (-723) -> H^0 (-1429)
-At time : 6.91059 ns  Reaction : H3O^1 (-1005) + OH^-1 (-1391) -> No product
-At time : 7.06106 ns  Reaction : e_aq^1 (-472) + H3O^1 (-955) -> H^0 (-1430)
-At time : 7.19647 ns  Reaction : H^0 (-1332) + OH^0 (-1042) -> No product
-At time : 7.34337 ns  Reaction : e_aq^1 (-455) + OH^0 (-1072) -> OH^-1 (-1431)
-At time : 7.93335 ns  Reaction : e_aq^1 (-492) + OH^0 (-920) -> OH^-1 (-1432)
-At time : 8.58572 ns  Reaction : e_aq^1 (-304) + H3O^1 (-885) -> H^0 (-1433)
-At time : 8.85838 ns  Reaction : e_aq^1 (-468) + OH^0 (-1182) -> OH^-1 (-1434)
-At time : 9.00894 ns  Reaction : e_aq^1 (-311) + OH^0 (-1048) -> OH^-1 (-1435)
-At time : 9.03894 ns  Reaction : OH^0 (-826) + OH^0 (-1112) -> H2O2^0 (-1436)
-At time :  9.3592 ns  Reaction : H3O^1 (-805) + OH^-1 (-1389) -> No product
-At time :  9.5592 ns  Reaction : e_aq^1 (-448) + H3O^1 (-963) -> H^0 (-1437)
-At time : 10.1084 ns  Reaction : e_aq^1 (-157) + H3O^1 (-821) -> H^0 (-1438)
-At time : 10.1084 ns  Reaction : e_aq^1 (-142) + H2O2^0 (-1350) -> OH^-1 (-1439) + OH^0 (-1440)
-At time : 10.6084 ns  Reaction : H3O^1 (-1039) + OH^-1 (-1387) -> No product
-At time : 10.7084 ns  Reaction : e_aq^1 (-370) + H3O^1 (-901) -> H^0 (-1441)
-At time : 11.0084 ns  Reaction : e_aq^1 (-201) + H^0 (-1438) -> OH^-1 (-1442) + H_2^0 (-1443)
-At time : 11.2084 ns  Reaction : OH^0 (-762) + OH^0 (-1046) -> H2O2^0 (-1444)
-At time : 11.4084 ns  Reaction : e_aq^1 (-246) + H3O^1 (-983) -> H^0 (-1445)
-At time : 11.5084 ns  Reaction : OH^0 (-650) + OH^0 (-944) -> H2O2^0 (-1446)
-At time : 11.6084 ns  Reaction : e_aq^1 (-550) + H3O^1 (-635) -> H^0 (-1447)
-At time : 11.9084 ns  Reaction : H3O^1 (-777) + OH^-1 (-1410) -> No product
-At time : 12.0084 ns  Reaction : e_aq^1 (-421) + OH^0 (-720) -> OH^-1 (-1448)
-At time : 12.6084 ns  Reaction : e_aq^1 (-213) + H^0 (-1279) -> OH^-1 (-1449) + H_2^0 (-1450)
-At time : 12.7084 ns  Reaction : OH^0 (-664) + OH^0 (-1158) -> H2O2^0 (-1451)
-At time : 13.3084 ns  Reaction : OH^-1 (-1399) + H3O^1 (-829) -> No product
-At time : 13.6084 ns  Reaction : e_aq^1 (-545) + H^0 (-1257) -> OH^-1 (-1452) + H_2^0 (-1453)
-At time : 13.7084 ns  Reaction : OH^-1 (-1374) + H3O^1 (-1194) -> No product
-At time : 13.8084 ns  Reaction : e_aq^1 (-255) + e_aq^1 (-252) -> OH^-1 (-1454) + OH^-1 (-1455) + H_2^0 (-1456)
-At time : 14.7084 ns  Reaction : e_aq^1 (-552) + OH^0 (-662) -> OH^-1 (-1457)
-At time : 15.1084 ns  Reaction : OH^0 (-626) + H^0 (-1352) -> No product
-At time : 15.4084 ns  Reaction : e_aq^1 (-152) + H2O2^0 (-1351) -> OH^-1 (-1458) + OH^0 (-1459)
-At time : 15.4084 ns  Reaction : OH^0 (-846) + OH^0 (-1006) -> H2O2^0 (-1460)
-At time : 15.6084 ns  Reaction : H^0 (-1243) + e_aq^1 (-1195) -> OH^-1 (-1461) + H_2^0 (-1462)
-At time : 16.3084 ns  Reaction : OH^0 (-1134) + H^0 (-1363) -> No product
-At time : 16.6084 ns  Reaction : e_aq^1 (-145) + H3O^1 (-803) -> H^0 (-1463)
-At time : 16.6084 ns  Reaction : OH^-1 (-1318) + H3O^1 (-1173) -> No product
-At time : 17.5084 ns  Reaction : OH^-1 (-1376) + H3O^1 (-761) -> No product
-At time : 17.6084 ns  Reaction : OH^-1 (-1455) + H3O^1 (-1027) -> No product
-At time : 17.6084 ns  Reaction : H2O2^0 (-1270) + e_aq^1 (-1198) -> OH^-1 (-1464) + OH^0 (-1465)
-At time : 18.4084 ns  Reaction : e_aq^1 (-451) + OH^0 (-964) -> OH^-1 (-1466)
-At time : 18.6084 ns  Reaction : OH^0 (-1084) + OH^0 (-1202) -> H2O2^0 (-1467)
-At time : 19.5084 ns  Reaction : e_aq^1 (-222) + H3O^1 (-1111) -> H^0 (-1468)
-At time : 20.8084 ns  Reaction : OH^0 (-772) + e_aq^1 (-1192) -> OH^-1 (-1469)
-At time : 21.4084 ns  Reaction : e_aq^1 (-357) + OH^0 (-1060) -> OH^-1 (-1470)
-At time : 22.0084 ns  Reaction : OH^0 (-768) + OH^0 (-884) -> H2O2^0 (-1471)
-At time : 22.0084 ns  Reaction : OH^0 (-1026) + H^0 (-1245) -> No product
-At time : 22.1084 ns  Reaction : e_aq^1 (-549) + OH^0 (-1152) -> OH^-1 (-1472)
-At time : 22.4084 ns  Reaction : H3O^1 (-841) + OH^-1 (-1458) -> No product
-At time : 23.0084 ns  Reaction : e_aq^1 (-318) + e_aq^1 (-322) -> OH^-1 (-1473) + OH^-1 (-1474) + H_2^0 (-1475)
-At time : 23.9084 ns  Reaction : e_aq^1 (-230) + OH^0 (-780) -> OH^-1 (-1476)
-At time : 25.1084 ns  Reaction : H3O^1 (-617) + OH^-1 (-1301) -> No product
-At time : 25.7084 ns  Reaction : OH^-1 (-1400) + H3O^1 (-1031) -> No product
-At time : 26.3084 ns  Reaction : H3O^1 (-925) + OH^-1 (-1404) -> No product
-At time : 26.6084 ns  Reaction : e_aq^1 (-554) + H3O^1 (-665) -> H^0 (-1477)
-At time : 26.6084 ns  Reaction : OH^-1 (-1372) + H3O^1 (-1200) -> No product
-At time : 27.2084 ns  Reaction : OH^0 (-1465) + OH^0 (-712) -> H2O2^0 (-1478)
-At time : 27.5084 ns  Reaction : e_aq^1 (-491) + OH^0 (-1086) -> OH^-1 (-1479)
-At time : 28.5084 ns  Reaction : e_aq^1 (-274) + H2O2^0 (-1290) -> OH^-1 (-1480) + OH^0 (-1481)
-At time : 28.7084 ns  Reaction : e_aq^1 (-590) + H3O^1 (-931) -> H^0 (-1482)
-At time : 31.0084 ns  Reaction : H^0 (-1310) + OH^0 (-878) -> No product
-At time : 31.1084 ns  Reaction : OH^0 (-860) + OH^0 (-1024) -> H2O2^0 (-1483)
-At time : 31.4084 ns  Reaction : OH^0 (-716) + OH^0 (-1068) -> H2O2^0 (-1484)
-At time : 32.2084 ns  Reaction : e_aq^1 (-276) + H3O^1 (-765) -> H^0 (-1485)
-At time : 32.5084 ns  Reaction : e_aq^1 (-423) + OH^0 (-1164) -> OH^-1 (-1486)
-At time : 34.2084 ns  Reaction : e_aq^1 (-244) + H3O^1 (-1029) -> H^0 (-1487)
-At time : 35.0084 ns  Reaction : e_aq^1 (-288) + OH^0 (-984) -> OH^-1 (-1488)
-At time : 35.5084 ns  Reaction : OH^-1 (-1476) + H3O^1 (-869) -> No product
-At time : 35.5084 ns  Reaction : H3O^1 (-747) + OH^-1 (-1470) -> No product
-At time : 35.5084 ns  Reaction : OH^-1 (-1405) + H3O^1 (-943) -> No product
-At time : 35.9084 ns  Reaction : e_aq^1 (-450) + OH^0 (-1142) -> OH^-1 (-1489)
-At time : 40.4386 ns  Reaction : OH^-1 (-1474) + H3O^1 (-1053) -> No product
-At time : 42.9386 ns  Reaction : e_aq^1 (-275) + OH^0 (-790) -> OH^-1 (-1490)
-At time : 43.4386 ns  Reaction : OH^-1 (-1256) + H3O^1 (-1063) -> No product
-At time : 44.1386 ns  Reaction : H3O^1 (-709) + OH^-1 (-1464) -> No product
-At time : 47.1488 ns  Reaction : e_aq^1 (-154) + OH^0 (-848) -> OH^-1 (-1491)
-At time : 47.9584 ns  Reaction : OH^0 (-1088) + OH^0 (-1090) -> H2O2^0 (-1492)
-At time : 48.3584 ns  Reaction : e_aq^1 (-225) + H3O^1 (-993) -> H^0 (-1493)
-At time : 49.8921 ns  Reaction : e_aq^1 (-458) + OH^0 (-1074) -> OH^-1 (-1494)
-At time : 49.9921 ns  Reaction : e_aq^1 (-414) + H3O^1 (-1179) -> H^0 (-1495)
-At time : 52.9921 ns  Reaction : OH^-1 (-1412) + H3O^1 (-1025) -> No product
-At time : 54.0921 ns  Reaction : e_aq^1 (-365) + OH^0 (-1211) -> OH^-1 (-1496)
-At time :  56.094 ns  Reaction : OH^-1 (-1457) + H3O^1 (-659) -> No product
-At time : 56.4215 ns  Reaction : e_aq^1 (-290) + H2O2^0 (-1471) -> OH^-1 (-1497) + OH^0 (-1498)
-At time :  58.438 ns  Reaction : e_aq^1 (-487) + H3O^1 (-1087) -> H^0 (-1499)
-At time :  59.458 ns  Reaction : e_aq^1 (-344) + OH^0 (-750) -> OH^-1 (-1500)
-At time :   60.16 ns  Reaction : H^0 (-1414) + OH^0 (-1154) -> No product
-At time : 75.8056 ns  Reaction : e_aq^1 (-542) + H3O^1 (-947) -> H^0 (-1501)
-At time : 79.3937 ns  Reaction : H3O^1 (-791) + OH^-1 (-1373) -> No product
-At time : 80.8384 ns  Reaction : e_aq^1 (-352) + H3O^1 (-977) -> H^0 (-1502)
-At time :  91.916 ns  Reaction : e_aq^1 (-220) + H3O^1 (-1119) -> H^0 (-1503)
-At time : 98.4839 ns  Reaction : H^0 (-1503) + OH^0 (-1114) -> No product
-At time : 98.6839 ns  Reaction : e_aq^1 (-418) + H^0 (-1495) -> OH^-1 (-1504) + H_2^0 (-1505)
-At time :  108.08 ns  Reaction : e_aq^1 (-576) + H3O^1 (-1093) -> H^0 (-1506)
-At time :  116.14 ns  Reaction : e_aq^1 (-316) + OH^0 (-976) -> OH^-1 (-1507)
-At time :  116.24 ns  Reaction : OH^0 (-728) + OH^0 (-1186) -> H2O2^0 (-1508)
-At time :  123.98 ns  Reaction : e_aq^1 (-553) + OH^0 (-668) -> OH^-1 (-1509)
-At time : 130.967 ns  Reaction : e_aq^1 (-278) + H2O2^0 (-1333) -> OH^-1 (-1510) + OH^0 (-1511)
-At time : 137.864 ns  Reaction : H^0 (-1336) + OH^0 (-1148) -> No product
-At time : 147.177 ns  Reaction : H3O^1 (-861) + OH^-1 (-1480) -> No product
-At time : 159.439 ns  Reaction : H3O^1 (-863) + OH^-1 (-1454) -> No product
-At time : 172.496 ns  Reaction : e_aq^1 (-153) + e_aq^1 (-155) -> OH^-1 (-1512) + OH^-1 (-1513) + H_2^0 (-1514)
-At time : 185.297 ns  Reaction : e_aq^1 (-172) + OH^0 (-1002) -> OH^-1 (-1515)
-At time :   198.2 ns  Reaction : OH^-1 (-605) + H3O^1 (-959) -> No product
-At time : 204.083 ns  Reaction : OH^-1 (-1439) + H3O^1 (-815) -> No product
-At time : 206.829 ns  Reaction : e_aq^1 (-303) + e_aq^1 (-237) -> OH^-1 (-1516) + OH^-1 (-1517) + H_2^0 (-1518)
-At time : 224.101 ns  Reaction : e_aq^1 (-292) + OH^0 (-1106) -> OH^-1 (-1519)
-At time : 235.971 ns  Reaction : e_aq^1 (-557) + H3O^1 (-631) -> H^0 (-1520)
-At time : 238.854 ns  Reaction : e_aq^1 (-285) + H3O^1 (-1033) -> H^0 (-1521)
-At time : 245.419 ns  Reaction : H3O^1 (-691) + OH^-1 (-1434) -> No product
-At time : 251.802 ns  Reaction : H3O^1 (-1021) + OH^-1 (-1325) -> No product
-At time : 274.321 ns  Reaction : OH^-1 (-611) + H3O^1 (-1131) -> No product
-At time : 275.486 ns  Reaction : OH^0 (-700) + OH^0 (-1196) -> H2O2^0 (-1522)
-At time : 283.976 ns  Reaction : e_aq^1 (-300) + H3O^1 (-891) -> H^0 (-1523)
-At time : 286.443 ns  Reaction : OH^-1 (-1519) + H3O^1 (-1019) -> No product
-At time : 304.397 ns  Reaction : OH^0 (-726) + H^0 (-1296) -> No product
-At time : 316.981 ns  Reaction : e_aq^1 (-289) + H3O^1 (-1171) -> H^0 (-1524)
-At time : 341.393 ns  Reaction : OH^-1 (-1473) + H3O^1 (-1059) -> No product
-At time : 355.642 ns  Reaction : e_aq^1 (-562) + H3O^1 (-671) -> H^0 (-1525)
-At time : 370.797 ns  Reaction : H^0 (-1343) + H^0 (-1520) -> H_2^0 (-1526)
-At time : 375.319 ns  Reaction : e_aq^1 (-375) + H3O^1 (-699) -> H^0 (-1527)
-At time : 433.056 ns  Reaction : H3O^1 (-707) + OH^-1 (-1489) -> No product
-At time : 438.899 ns  Reaction : e_aq^1 (-467) + OH^0 (-678) -> OH^-1 (-1528)
-At time : 448.551 ns  Reaction : e_aq^1 (-188) + OH^0 (-1110) -> OH^-1 (-1529)
-At time :  491.43 ns  Reaction : OH^-1 (-1515) + H3O^1 (-855) -> No product
-At time : 509.762 ns  Reaction : e_aq^1 (-566) + H^0 (-1525) -> OH^-1 (-1530) + H_2^0 (-1531)
-At time : 662.181 ns  Reaction : e_aq^1 (-334) + H3O^1 (-1103) -> H^0 (-1532)
-At time : 873.027 ns  Reaction : H^0 (-1415) + H^0 (-1485) -> H_2^0 (-1533)
-At time : 946.929 ns  Reaction : e_aq^1 (-256) + H2O2^0 (-1283) -> OH^-1 (-1534) + OH^0 (-1535)
+At time :     1.2 ps  Reaction : e_aq^1 (-323) + H3O^1 (-753) -> H^0 (-1224)
+At time :     1.2 ps  Reaction : e_aq^1 (-525) + OH^0 (-638) -> OH^-1 (-1225)
+At time :     1.2 ps  Reaction : OH^-1 (-1225) + H3O^1 (-637) -> No product
+At time :     1.7 ps  Reaction : OH^0 (-930) + OH^0 (-1096) -> H2O2^0 (-1226)
+At time :     1.7 ps  Reaction : e_aq^1 (-407) + OH^0 (-704) -> OH^-1 (-1227)
+At time :     1.7 ps  Reaction : OH^-1 (-1227) + H3O^1 (-703) -> No product
+At time :     1.8 ps  Reaction : e_aq^1 (-541) + OH^0 (-640) -> OH^-1 (-1228)
+At time :     1.8 ps  Reaction : H3O^1 (-639) + OH^-1 (-1228) -> No product
+At time :       2 ps  Reaction : e_aq^1 (-369) + OH^0 (-1205) -> OH^-1 (-1229)
+At time :       2 ps  Reaction : OH^-1 (-1229) + H3O^1 (-1206) -> No product
+At time :     2.6 ps  Reaction : e_aq^1 (-260) + OH^0 (-1190) -> OH^-1 (-1230)
+At time :     2.6 ps  Reaction : H3O^1 (-1191) + OH^-1 (-1230) -> No product
+At time :     3.2 ps  Reaction : e_aq^1 (-129) + OH^0 (-826) -> OH^-1 (-1231)
+At time :     3.2 ps  Reaction : H3O^1 (-825) + OH^-1 (-1231) -> No product
+At time :     3.6 ps  Reaction : e_aq^1 (-434) + OH^0 (-682) -> OH^-1 (-1232)
+At time :     3.6 ps  Reaction : H3O^1 (-681) + OH^-1 (-1232) -> No product
+At time : 5.10215 ps  Reaction : OH^0 (-814) + OH^0 (-818) -> H2O2^0 (-1233)
+At time : 6.50215 ps  Reaction : e_aq^1 (-203) + H3O^1 (-1167) -> H^0 (-1234)
+At time : 7.00215 ps  Reaction : OH^0 (-786) + OH^0 (-990) -> H2O2^0 (-1235)
+At time : 8.74626 ps  Reaction : OH^0 (-1218) + OH^0 (-1219) -> H2O2^0 (-1236)
+At time : 8.84626 ps  Reaction : e_aq^1 (-315) + OH^0 (-758) -> OH^-1 (-1237)
+At time : 9.04626 ps  Reaction : OH^0 (-754) + H^0 (-1224) -> No product
+At time : 11.0463 ps  Reaction : e_aq^1 (-124) + OH^0 (-1108) -> OH^-1 (-1238)
+At time : 11.0463 ps  Reaction : H3O^1 (-849) + OH^-1 (-1238) -> No product
+At time : 13.0463 ps  Reaction : e_aq^1 (-409) + OH^0 (-698) -> OH^-1 (-1239)
+At time : 13.0463 ps  Reaction : H3O^1 (-697) + OH^-1 (-1239) -> No product
+At time : 15.0463 ps  Reaction : e_aq^1 (-572) + OH^0 (-936) -> OH^-1 (-1240)
+At time : 15.0463 ps  Reaction : H3O^1 (-627) + OH^-1 (-1240) -> No product
+At time : 17.0463 ps  Reaction : e_aq^1 (-544) + OH^0 (-942) -> OH^-1 (-1241)
+At time : 17.0463 ps  Reaction : H3O^1 (-941) + OH^-1 (-1241) -> No product
+At time : 20.0463 ps  Reaction : e_aq^1 (-351) + OH^0 (-744) -> OH^-1 (-1242)
+At time : 23.0463 ps  Reaction : H3O^1 (-699) + e_aq^1 (-1195) -> H^0 (-1243)
+At time : 24.0463 ps  Reaction : e_aq^1 (-450) + OH^0 (-690) -> OH^-1 (-1244)
+At time : 25.0463 ps  Reaction : e_aq^1 (-467) + OH^0 (-908) -> OH^-1 (-1245)
+At time : 27.0463 ps  Reaction : e_aq^1 (-293) + OH^0 (-880) -> OH^-1 (-1246)
+At time : 27.0463 ps  Reaction : H3O^1 (-881) + OH^-1 (-1246) -> No product
+At time : 28.0463 ps  Reaction : e_aq^1 (-309) + H3O^1 (-1049) -> H^0 (-1247)
+At time : 28.0463 ps  Reaction : e_aq^1 (-416) + OH^0 (-696) -> OH^-1 (-1248)
+At time : 28.0463 ps  Reaction : OH^-1 (-1248) + H3O^1 (-1143) -> No product
+At time : 29.0463 ps  Reaction : e_aq^1 (-447) + OH^0 (-692) -> OH^-1 (-1249)
+At time : 29.0463 ps  Reaction : H3O^1 (-691) + OH^-1 (-1249) -> No product
+At time : 31.0463 ps  Reaction : e_aq^1 (-411) + OH^0 (-1164) -> OH^-1 (-1250)
+At time : 31.0463 ps  Reaction : H3O^1 (-705) + OH^-1 (-1250) -> No product
+At time : 34.0463 ps  Reaction : e_aq^1 (-128) + OH^0 (-838) -> OH^-1 (-1251)
+At time : 36.0463 ps  Reaction : e_aq^1 (-322) + OH^0 (-1172) -> OH^-1 (-1252)
+At time : 36.0463 ps  Reaction : e_aq^1 (-190) + OH^0 (-812) -> OH^-1 (-1253)
+At time : 36.0463 ps  Reaction : H3O^1 (-811) + OH^-1 (-1253) -> No product
+At time : 37.0463 ps  Reaction : OH^-1 (-1252) + H3O^1 (-1171) -> No product
+At time : 41.0463 ps  Reaction : H3O^1 (-855) + OH^-1 (-1251) -> No product
+At time : 41.0463 ps  Reaction : e_aq^1 (-189) + H3O^1 (-999) -> H^0 (-1254)
+At time : 45.0463 ps  Reaction : e_aq^1 (-536) + OH^0 (-646) -> OH^-1 (-1255)
+At time : 45.0463 ps  Reaction : H3O^1 (-641) + OH^-1 (-1255) -> No product
+At time : 46.0463 ps  Reaction : e_aq^1 (-485) + H3O^1 (-673) -> H^0 (-1256)
+At time : 49.0463 ps  Reaction : OH^0 (-798) + OH^0 (-804) -> H2O2^0 (-1257)
+At time : 51.0463 ps  Reaction : e_aq^1 (-204) + H3O^1 (-1121) -> H^0 (-1258)
+At time : 53.0463 ps  Reaction : e_aq^1 (-234) + H3O^1 (-987) -> H^0 (-1259)
+At time : 55.0463 ps  Reaction : H3O^1 (-963) + OH^-1 (-1244) -> No product
+At time : 57.0463 ps  Reaction : OH^0 (-718) + OH^0 (-1214) -> H2O2^0 (-1260)
+At time : 66.0463 ps  Reaction : OH^-1 (-608) + H3O^1 (-1057) -> No product
+At time : 72.0463 ps  Reaction : OH^0 (-860) + OH^0 (-996) -> H2O2^0 (-1261)
+At time : 75.0463 ps  Reaction : OH^0 (-1124) + OH^0 (-1126) -> H2O2^0 (-1262)
+At time : 75.0463 ps  Reaction : e_aq^1 (-537) + OH^0 (-642) -> OH^-1 (-1263)
+At time : 78.0463 ps  Reaction : e_aq^1 (-167) + OH^0 (-1166) -> OH^-1 (-1264)
+At time : 78.0463 ps  Reaction : OH^-1 (-1264) + H3O^1 (-1165) -> No product
+At time : 85.0463 ps  Reaction : e_aq^1 (-394) + OH^0 (-714) -> OH^-1 (-1265)
+At time : 92.0463 ps  Reaction : OH^0 (-986) + OH^0 (-1170) -> H2O2^0 (-1266)
+At time : 96.0463 ps  Reaction : e_aq^1 (-412) + OH^0 (-706) -> OH^-1 (-1267)
+At time : 96.0463 ps  Reaction : H3O^1 (-701) + OH^-1 (-1267) -> No product
+At time : 102.046 ps  Reaction : OH^0 (-768) + OH^0 (-882) -> H2O2^0 (-1268)
+At time : 105.046 ps  Reaction : e_aq^1 (-540) + H3O^1 (-651) -> H^0 (-1269)
+At time : 108.046 ps  Reaction : e_aq^1 (-452) + OH^0 (-970) -> OH^-1 (-1270)
+At time : 108.046 ps  Reaction : e_aq^1 (-244) + OH^0 (-784) -> OH^-1 (-1271)
+At time : 108.046 ps  Reaction : OH^-1 (-1271) + H3O^1 (-783) -> No product
+At time : 120.046 ps  Reaction : H3O^1 (-643) + OH^-1 (-1263) -> No product
+At time : 123.046 ps  Reaction : OH^0 (-1120) + OH^0 (-1168) -> H2O2^0 (-1272)
+At time : 126.046 ps  Reaction : OH^-1 (-1270) + H3O^1 (-693) -> No product
+At time : 126.046 ps  Reaction : OH^0 (-776) + OH^0 (-982) -> H2O2^0 (-1273)
+At time : 138.046 ps  Reaction : OH^0 (-828) + OH^0 (-1018) -> H2O2^0 (-1274)
+At time : 138.046 ps  Reaction : e_aq^1 (-448) + OH^0 (-972) -> OH^-1 (-1275)
+At time : 138.046 ps  Reaction : e_aq^1 (-332) + OH^0 (-756) -> OH^-1 (-1276)
+At time : 144.046 ps  Reaction : e_aq^1 (-319) + OH^0 (-748) -> OH^-1 (-1277)
+At time : 150.046 ps  Reaction : e_aq^1 (-223) + OH^0 (-864) -> OH^-1 (-1278)
+At time : 159.046 ps  Reaction : OH^-1 (-1276) + H3O^1 (-747) -> No product
+At time : 165.046 ps  Reaction : e_aq^1 (-390) + OH^0 (-708) -> OH^-1 (-1279)
+At time : 165.046 ps  Reaction : OH^-1 (-1279) + H3O^1 (-1163) -> No product
+At time : 168.046 ps  Reaction : e_aq^1 (-200) + H3O^1 (-1119) -> H^0 (-1280)
+At time : 180.046 ps  Reaction : e_aq^1 (-168) + OH^0 (-1008) -> OH^-1 (-1281)
+At time : 183.046 ps  Reaction : H3O^1 (-709) + OH^-1 (-1265) -> No product
+At time : 189.046 ps  Reaction : OH^0 (-1000) + H^0 (-1254) -> No product
+At time : 192.046 ps  Reaction : OH^0 (-622) + OH^0 (-626) -> H2O2^0 (-1282)
+At time : 192.046 ps  Reaction : e_aq^1 (-173) + OH^0 (-1116) -> OH^-1 (-1283)
+At time : 195.046 ps  Reaction : e_aq^1 (-331) + H3O^1 (-1055) -> H^0 (-1284)
+At time : 201.046 ps  Reaction : e_aq^1 (-133) + H3O^1 (-857) -> H^0 (-1285)
+At time : 213.046 ps  Reaction : OH^-1 (-1245) + H3O^1 (-907) -> No product
+At time : 213.046 ps  Reaction : e_aq^1 (-212) + H^0 (-1234) -> OH^-1 (-1286) + H_2^0 (-1287)
+At time : 213.046 ps  Reaction : OH^-1 (-1286) + H3O^1 (-997) -> No product
+At time : 216.046 ps  Reaction : OH^0 (-848) + OH^0 (-1199) -> H2O2^0 (-1288)
+At time : 225.046 ps  Reaction : e_aq^1 (-262) + OH^0 (-984) -> OH^-1 (-1289)
+At time : 225.046 ps  Reaction : H3O^1 (-773) + OH^-1 (-1289) -> No product
+At time : 252.046 ps  Reaction : OH^-1 (-1278) + H3O^1 (-795) -> No product
+At time : 270.046 ps  Reaction : e_aq^1 (-127) + H3O^1 (-1107) -> H^0 (-1290)
+At time : 288.046 ps  Reaction : e_aq^1 (-196) + e_aq^1 (-193) -> OH^-1 (-1291) + OH^-1 (-1292) + H_2^0 (-1293)
+At time : 294.046 ps  Reaction : e_aq^1 (-484) + OH^0 (-1082) -> OH^-1 (-1294)
+At time : 297.046 ps  Reaction : OH^-1 (-605) + H3O^1 (-675) -> No product
+At time : 303.046 ps  Reaction : e_aq^1 (-439) + H3O^1 (-685) -> H^0 (-1295)
+At time : 306.046 ps  Reaction : OH^-1 (-1292) + H3O^1 (-1023) -> No product
+At time : 306.046 ps  Reaction : H^0 (-1247) + OH^0 (-1050) -> No product
+At time : 327.046 ps  Reaction : e_aq^1 (-126) + e_aq^1 (-132) -> OH^-1 (-1296) + OH^-1 (-1297) + H_2^0 (-1298)
+At time : 339.046 ps  Reaction : OH^-1 (-1297) + H3O^1 (-1200) -> No product
+At time : 357.046 ps  Reaction : e_aq^1 (-279) + OH^0 (-1106) -> OH^-1 (-1299)
+At time : 357.046 ps  Reaction : e_aq^1 (-346) + OH^0 (-976) -> OH^-1 (-1300)
+At time : 366.046 ps  Reaction : e_aq^1 (-569) + OH^0 (-628) -> OH^-1 (-1301)
+At time : 375.046 ps  Reaction : OH^0 (-948) + OH^0 (-950) -> H2O2^0 (-1302)
+At time : 381.046 ps  Reaction : e_aq^1 (-417) + OH^0 (-710) -> OH^-1 (-1303)
+At time : 384.046 ps  Reaction : H3O^1 (-751) + OH^-1 (-1277) -> No product
+At time : 402.046 ps  Reaction : OH^-1 (-1283) + H3O^1 (-1007) -> No product
+At time : 429.046 ps  Reaction : H3O^1 (-1011) + OH^-1 (-1296) -> No product
+At time : 441.046 ps  Reaction : H3O^1 (-953) + OH^-1 (-1301) -> No product
+At time : 474.046 ps  Reaction : e_aq^1 (-553) + OH^0 (-656) -> OH^-1 (-1304)
+At time : 483.046 ps  Reaction : OH^0 (-842) + OH^0 (-854) -> H2O2^0 (-1305)
+At time : 501.046 ps  Reaction : e_aq^1 (-324) + OH^0 (-896) -> OH^-1 (-1306)
+At time : 510.046 ps  Reaction : OH^-1 (-1242) + H3O^1 (-975) -> No product
+At time : 522.046 ps  Reaction : OH^0 (-1056) + H^0 (-1284) -> No product
+At time : 528.046 ps  Reaction : e_aq^1 (-414) + H3O^1 (-1179) -> H^0 (-1307)
+At time : 552.046 ps  Reaction : OH^0 (-856) + H^0 (-1285) -> No product
+At time : 552.046 ps  Reaction : e_aq^1 (-364) + OH^0 (-734) -> OH^-1 (-1308)
+At time : 555.046 ps  Reaction : e_aq^1 (-365) + OH^0 (-728) -> OH^-1 (-1309)
+At time : 579.046 ps  Reaction : e_aq^1 (-213) + H3O^1 (-831) -> H^0 (-1310)
+At time : 591.046 ps  Reaction : e_aq^1 (-210) + OH^0 (-808) -> OH^-1 (-1311)
+At time : 597.046 ps  Reaction : H3O^1 (-835) + OH^-1 (-1281) -> No product
+At time : 627.046 ps  Reaction : OH^0 (-630) + OH^0 (-672) -> H2O2^0 (-1312)
+At time : 669.046 ps  Reaction : OH^0 (-846) + OH^0 (-1016) -> H2O2^0 (-1313)
+At time : 693.046 ps  Reaction : OH^0 (-940) + OH^0 (-1158) -> H2O2^0 (-1314)
+At time : 771.504 ps  Reaction : e_aq^1 (-142) + OH^0 (-840) -> OH^-1 (-1315)
+At time : 783.504 ps  Reaction : e_aq^1 (-218) + OH^0 (-994) -> OH^-1 (-1316)
+At time : 831.504 ps  Reaction : OH^-1 (-1316) + H3O^1 (-993) -> No product
+At time : 864.504 ps  Reaction : e_aq^1 (-373) + OH^0 (-1062) -> OH^-1 (-1317)
+At time : 867.504 ps  Reaction : e_aq^1 (-120) + OH^0 (-1006) -> OH^-1 (-1318)
+At time : 879.504 ps  Reaction : H3O^1 (-797) + OH^-1 (-1311) -> No product
+At time : 885.504 ps  Reaction : OH^0 (-686) + OH^0 (-1162) -> H2O2^0 (-1319)
+At time : 897.504 ps  Reaction : e_aq^1 (-566) + H3O^1 (-631) -> H^0 (-1320)
+At time : 948.504 ps  Reaction : OH^0 (-700) + OH^0 (-702) -> H2O2^0 (-1321)
+At time : 981.504 ps  Reaction : OH^0 (-850) + OH^0 (-858) -> H2O2^0 (-1322)
+At time :  1.0295 ns  Reaction : e_aq^1 (-139) + H3O^1 (-1117) -> H^0 (-1323)
+At time :  1.1095 ns  Reaction : OH^0 (-868) + OH^0 (-872) -> H2O2^0 (-1324)
+At time :  1.1295 ns  Reaction : e_aq^1 (-274) + H3O^1 (-873) -> H^0 (-1325)
+At time :  1.1695 ns  Reaction : H3O^1 (-1109) + OH^-1 (-1315) -> No product
+At time :  1.1795 ns  Reaction : e_aq^1 (-169) + OH^0 (-1012) -> OH^-1 (-1326)
+At time :  1.1995 ns  Reaction : H3O^1 (-707) + OH^-1 (-1303) -> No product
+At time :  1.2895 ns  Reaction : H3O^1 (-757) + OH^-1 (-1237) -> No product
+At time :  1.2995 ns  Reaction : H3O^1 (-943) + OH^-1 (-1304) -> No product
+At time :  1.2995 ns  Reaction : e_aq^1 (-216) + OH^0 (-1026) -> OH^-1 (-1327)
+At time :  1.3495 ns  Reaction : e_aq^1 (-195) + H3O^1 (-801) -> H^0 (-1328)
+At time :  1.3495 ns  Reaction : e_aq^1 (-468) + OH^0 (-676) -> OH^-1 (-1329)
+At time :  1.4395 ns  Reaction : e_aq^1 (-217) + OH^0 (-800) -> OH^-1 (-1330)
+At time :  1.4495 ns  Reaction : H3O^1 (-799) + OH^-1 (-1291) -> No product
+At time :  1.4795 ns  Reaction : e_aq^1 (-551) + OH^0 (-634) -> OH^-1 (-1331)
+At time :  1.4895 ns  Reaction : H3O^1 (-775) + OH^-1 (-1299) -> No product
+At time :  1.5195 ns  Reaction : H3O^1 (-853) + OH^-1 (-1326) -> No product
+At time :  1.5495 ns  Reaction : OH^0 (-780) + OH^0 (-988) -> H2O2^0 (-1332)
+At time :  1.6195 ns  Reaction : OH^0 (-952) + OH^0 (-954) -> H2O2^0 (-1333)
+At time :  1.7695 ns  Reaction : e_aq^1 (-214) + OH^0 (-802) -> OH^-1 (-1334)
+At time :  1.8095 ns  Reaction : e_aq^1 (-187) + OH^0 (-1122) -> OH^-1 (-1335)
+At time :  1.8295 ns  Reaction : OH^-1 (-1334) + H3O^1 (-995) -> No product
+At time :  1.9295 ns  Reaction : e_aq^1 (-305) + OH^0 (-762) -> OH^-1 (-1336)
+At time :  1.9295 ns  Reaction : OH^0 (-964) + OH^0 (-1102) -> H2O2^0 (-1337)
+At time :  1.9395 ns  Reaction : e_aq^1 (-288) + H3O^1 (-769) -> H^0 (-1338)
+At time :  1.9595 ns  Reaction : e_aq^1 (-383) + OH^0 (-1142) -> OH^-1 (-1339)
+At time :  2.0095 ns  Reaction : H3O^1 (-731) + OH^-1 (-1309) -> No product
+At time :  2.1095 ns  Reaction : e_aq^1 (-382) + H3O^1 (-723) -> H^0 (-1340)
+At time :  2.1595 ns  Reaction : OH^-1 (-1330) + H3O^1 (-1021) -> No product
+At time :  2.2595 ns  Reaction : H3O^1 (-653) + OH^-1 (-1331) -> No product
+At time :  2.3395 ns  Reaction : e_aq^1 (-249) + H3O^1 (-1033) -> H^0 (-1341)
+At time :  2.3395 ns  Reaction : OH^-1 (-602) + H3O^1 (-633) -> No product
+At time :  2.5195 ns  Reaction : e_aq^1 (-163) + H3O^1 (-833) -> H^0 (-1342)
+At time :  2.6195 ns  Reaction : e_aq^1 (-156) + OH^0 (-1114) -> OH^-1 (-1343)
+At time :  2.6395 ns  Reaction : OH^-1 (-1343) + H3O^1 (-851) -> No product
+At time :  2.6495 ns  Reaction : e_aq^1 (-174) + H3O^1 (-841) -> H^0 (-1344)
+At time :  2.7595 ns  Reaction : H3O^1 (-1013) + OH^-1 (-1318) -> No product
+At time :  2.7895 ns  Reaction : e_aq^1 (-554) + H3O^1 (-645) -> H^0 (-1345)
+At time :  2.8195 ns  Reaction : e_aq^1 (-524) + H3O^1 (-655) -> H^0 (-1346)
+At time :  2.9595 ns  Reaction : e_aq^1 (-384) + H3O^1 (-1177) -> H^0 (-1347)
+At time :  2.9695 ns  Reaction : H^0 (-1290) + OH^0 (-834) -> No product
+At time :  3.0995 ns  Reaction : e_aq^1 (-568) + OH^0 (-1154) -> OH^-1 (-1348)
+At time :  3.1795 ns  Reaction : e_aq^1 (-201) + H3O^1 (-1005) -> H^0 (-1349)
+At time :  3.2795 ns  Reaction : H3O^1 (-1175) + e_aq^1 (-1189) -> H^0 (-1350)
+At time :  3.3095 ns  Reaction : e_aq^1 (-123) + OH^0 (-1110) -> OH^-1 (-1351)
+At time :  3.3495 ns  Reaction : e_aq^1 (-530) + e_aq^1 (-538) -> OH^-1 (-1352) + OH^-1 (-1353) + H_2^0 (-1354)
+At time :  3.4195 ns  Reaction : e_aq^1 (-598) + OH^0 (-616) -> OH^-1 (-1355)
+At time :  3.4795 ns  Reaction : e_aq^1 (-224) + H3O^1 (-1031) -> H^0 (-1356)
+At time :  3.4995 ns  Reaction : e_aq^1 (-523) + OH^0 (-636) -> OH^-1 (-1357)
+At time : 3.78002 ns  Reaction : e_aq^1 (-254) + H2O2^0 (-1235) -> OH^-1 (-1358) + OH^0 (-1359)
+At time : 3.88002 ns  Reaction : e_aq^1 (-300) + OH^0 (-1048) -> OH^-1 (-1360)
+At time : 4.11002 ns  Reaction : OH^-1 (-1358) + H3O^1 (-985) -> No product
+At time : 4.23002 ns  Reaction : H^0 (-1325) + H^0 (-1341) -> H_2^0 (-1361)
+At time : 4.24002 ns  Reaction : OH^0 (-978) + H^0 (-1350) -> No product
+At time : 4.34002 ns  Reaction : OH^0 (-832) + OH^0 (-852) -> H2O2^0 (-1362)
+At time : 4.65253 ns  Reaction : e_aq^1 (-253) + OH^0 (-788) -> OH^-1 (-1363)
+At time : 4.68253 ns  Reaction : e_aq^1 (-287) + H3O^1 (-877) -> H^0 (-1364)
+At time : 4.72253 ns  Reaction : H^0 (-1243) + OH^0 (-1144) -> No product
+At time : 4.87289 ns  Reaction : H3O^1 (-947) + OH^-1 (-1357) -> No product
+At time : 4.95289 ns  Reaction : H3O^1 (-807) + OH^-1 (-1351) -> No product
+At time : 5.10289 ns  Reaction : e_aq^1 (-284) + H3O^1 (-1103) -> H^0 (-1365)
+At time : 5.14289 ns  Reaction : e_aq^1 (-418) + H3O^1 (-721) -> H^0 (-1366)
+At time : 5.17289 ns  Reaction : e_aq^1 (-375) + OH^0 (-902) -> OH^-1 (-1367)
+At time : 5.41857 ns  Reaction : e_aq^1 (-317) + H3O^1 (-977) -> H^0 (-1368)
+At time : 5.96407 ns  Reaction : OH^0 (-770) + H^0 (-1365) -> No product
+At time : 6.27452 ns  Reaction : e_aq^1 (-421) + H3O^1 (-695) -> H^0 (-1369)
+At time : 6.41472 ns  Reaction : OH^0 (-790) + H^0 (-1259) -> No product
+At time : 6.65484 ns  Reaction : e_aq^1 (-275) + H3O^1 (-779) -> H^0 (-1370)
+At time : 6.72484 ns  Reaction : e_aq^1 (-222) + H3O^1 (-865) -> H^0 (-1371)
+At time : 6.72484 ns  Reaction : OH^0 (-684) + OH^0 (-688) -> H2O2^0 (-1372)
+At time : 6.73484 ns  Reaction : e_aq^1 (-360) + OH^0 (-900) -> OH^-1 (-1373)
+At time : 6.75484 ns  Reaction : e_aq^1 (-549) + OH^0 (-648) -> OH^-1 (-1374)
+At time : 6.86172 ns  Reaction : OH^-1 (-1373) + H3O^1 (-899) -> No product
+At time : 7.00404 ns  Reaction : OH^0 (-874) + OH^0 (-1128) -> H2O2^0 (-1375)
+At time : 7.23517 ns  Reaction : e_aq^1 (-143) + H^0 (-1323) -> OH^-1 (-1376) + H_2^0 (-1377)
+At time : 7.52384 ns  Reaction : e_aq^1 (-355) + H3O^1 (-897) -> H^0 (-1378)
+At time : 7.71961 ns  Reaction : e_aq^1 (-228) + OH^0 (-1028) -> OH^-1 (-1379)
+At time : 7.83073 ns  Reaction : e_aq^1 (-236) + H3O^1 (-791) -> H^0 (-1380)
+At time : 7.87073 ns  Reaction : OH^-1 (-1336) + H3O^1 (-1043) -> No product
+At time : 7.94133 ns  Reaction : e_aq^1 (-311) + H3O^1 (-759) -> H^0 (-1381)
+At time : 8.46716 ns  Reaction : H3O^1 (-683) + OH^-1 (-1275) -> No product
+At time : 8.62716 ns  Reaction : e_aq^1 (-437) + OH^0 (-680) -> OH^-1 (-1382)
+At time : 8.80229 ns  Reaction : e_aq^1 (-165) + H3O^1 (-813) -> H^0 (-1383)
+At time : 9.40709 ns  Reaction : OH^0 (-1010) + H^0 (-1349) -> No product
+At time : 9.47709 ns  Reaction : H^0 (-1370) + e_aq^1 (-1192) -> OH^-1 (-1384) + H_2^0 (-1385)
+At time : 10.2028 ns  Reaction : e_aq^1 (-296) + H2O2^0 (-1268) -> OH^-1 (-1386) + OH^0 (-1387)
+At time : 10.3028 ns  Reaction : e_aq^1 (-446) + H3O^1 (-971) -> H^0 (-1388)
+At time : 10.6028 ns  Reaction : e_aq^1 (-194) + H3O^1 (-1015) -> H^0 (-1389)
+At time : 10.8028 ns  Reaction : e_aq^1 (-531) + H^0 (-1320) -> OH^-1 (-1390) + H_2^0 (-1391)
+At time : 10.8028 ns  Reaction : e_aq^1 (-280) + OH^0 (-1036) -> OH^-1 (-1392)
+At time : 10.9028 ns  Reaction : e_aq^1 (-406) + H^0 (-1369) -> OH^-1 (-1393) + H_2^0 (-1394)
+At time : 11.0028 ns  Reaction : e_aq^1 (-155) + H^0 (-1280) -> OH^-1 (-1395) + H_2^0 (-1396)
+At time : 11.2028 ns  Reaction : e_aq^1 (-451) + e_aq^1 (-460) -> OH^-1 (-1397) + OH^-1 (-1398) + H_2^0 (-1399)
+At time : 11.7028 ns  Reaction : H3O^1 (-809) + OH^-1 (-1327) -> No product
+At time : 11.9028 ns  Reaction : H3O^1 (-667) + OH^-1 (-1390) -> No product
+At time : 12.2028 ns  Reaction : e_aq^1 (-359) + OH^0 (-730) -> OH^-1 (-1400)
+At time : 12.3028 ns  Reaction : OH^-1 (-1348) + H3O^1 (-1153) -> No product
+At time : 13.0028 ns  Reaction : e_aq^1 (-219) + H3O^1 (-863) -> H^0 (-1401)
+At time : 13.1028 ns  Reaction : e_aq^1 (-146) + H2O2^0 (-1362) -> OH^-1 (-1402) + OH^0 (-1403)
+At time : 13.5028 ns  Reaction : H3O^1 (-771) + OH^-1 (-1384) -> No product
+At time : 13.8028 ns  Reaction : e_aq^1 (-420) + OH^0 (-974) -> OH^-1 (-1404)
+At time : 14.1028 ns  Reaction : e_aq^1 (-153) + H2O2^0 (-1288) -> OH^-1 (-1405) + OH^0 (-1406)
+At time : 15.6028 ns  Reaction : e_aq^1 (-341) + H3O^1 (-1173) -> H^0 (-1407)
+At time : 15.9028 ns  Reaction : H3O^1 (-803) + e_aq^1 (-1201) -> H^0 (-1408)
+At time : 15.9028 ns  Reaction : e_aq^1 (-561) + OH^0 (-926) -> OH^-1 (-1409)
+At time : 16.0028 ns  Reaction : e_aq^1 (-526) + H3O^1 (-663) -> H^0 (-1410)
+At time : 16.3028 ns  Reaction : e_aq^1 (-555) + H3O^1 (-939) -> H^0 (-1411)
+At time : 17.4028 ns  Reaction : e_aq^1 (-565) + H3O^1 (-951) -> H^0 (-1412)
+At time : 18.4028 ns  Reaction : e_aq^1 (-529) + OH^0 (-662) -> OH^-1 (-1413)
+At time : 19.4028 ns  Reaction : H3O^1 (-949) + OH^-1 (-1413) -> No product
+At time : 19.4028 ns  Reaction : e_aq^1 (-597) + OH^0 (-1098) -> OH^-1 (-1414)
+At time : 19.8028 ns  Reaction : OH^0 (-962) + OH^0 (-1080) -> H2O2^0 (-1415)
+At time : 20.4028 ns  Reaction : OH^0 (-806) + OH^0 (-1208) -> H2O2^0 (-1416)
+At time : 20.8028 ns  Reaction : H^0 (-1295) + OH^0 (-694) -> No product
+At time : 20.8028 ns  Reaction : H3O^1 (-1111) + e_aq^1 (-1210) -> H^0 (-1417)
+At time : 20.8028 ns  Reaction : OH^0 (-654) + OH^0 (-938) -> H2O2^0 (-1418)
+At time : 21.2028 ns  Reaction : OH^0 (-720) + OH^0 (-1066) -> H2O2^0 (-1419)
+At time : 21.2028 ns  Reaction : e_aq^1 (-152) + OH^0 (-1020) -> OH^-1 (-1420)
+At time : 22.8028 ns  Reaction : H3O^1 (-829) + OH^-1 (-1405) -> No product
+At time : 22.8028 ns  Reaction : OH^-1 (-1363) + H3O^1 (-1125) -> No product
+At time : 22.9028 ns  Reaction : H3O^1 (-613) + OH^-1 (-1414) -> No product
+At time : 23.6028 ns  Reaction : e_aq^1 (-357) + e_aq^1 (-1213) -> OH^-1 (-1421) + OH^-1 (-1422) + H_2^0 (-1423)
+At time : 24.7028 ns  Reaction : e_aq^1 (-265) + H3O^1 (-867) -> H^0 (-1424)
+At time : 24.8028 ns  Reaction : e_aq^1 (-557) + OH^0 (-658) -> OH^-1 (-1425)
+At time : 25.5028 ns  Reaction : e_aq^1 (-380) + H^0 (-1340) -> OH^-1 (-1426) + H_2^0 (-1427)
+At time : 27.0028 ns  Reaction : e_aq^1 (-272) + OH^0 (-1034) -> OH^-1 (-1428)
+At time : 29.3028 ns  Reaction : e_aq^1 (-436) + OH^0 (-1146) -> OH^-1 (-1429)
+At time : 31.8028 ns  Reaction : H3O^1 (-883) + OH^-1 (-1360) -> No product
+At time : 32.3028 ns  Reaction : OH^0 (-914) + OH^0 (-1084) -> H2O2^0 (-1430)
+At time : 34.2028 ns  Reaction : e_aq^1 (-558) + OH^0 (-946) -> OH^-1 (-1431)
+At time : 36.4122 ns  Reaction : OH^0 (-816) + OH^0 (-1024) -> H2O2^0 (-1432)
+At time : 38.0122 ns  Reaction : OH^-1 (-1429) + H3O^1 (-1215) -> No product
+At time : 39.4122 ns  Reaction : e_aq^1 (-336) + OH^0 (-1211) -> OH^-1 (-1433)
+At time : 42.4122 ns  Reaction : H3O^1 (-1051) + OH^-1 (-1433) -> No product
+At time : 43.9122 ns  Reaction : H3O^1 (-649) + OH^-1 (-1352) -> No product
+At time : 44.5122 ns  Reaction : e_aq^1 (-345) + H^0 (-1407) -> OH^-1 (-1434) + H_2^0 (-1435)
+At time : 46.2232 ns  Reaction : H3O^1 (-827) + OH^-1 (-1402) -> No product
+At time : 46.8232 ns  Reaction : e_aq^1 (-121) + H^0 (-1408) -> OH^-1 (-1436) + H_2^0 (-1437)
+At time : 47.0232 ns  Reaction : H^0 (-1411) + OH^0 (-664) -> No product
+At time : 48.4232 ns  Reaction : e_aq^1 (-154) + H2O2^0 (-1233) -> OH^-1 (-1438) + OH^0 (-1439)
+At time : 49.2458 ns  Reaction : e_aq^1 (-494) + H3O^1 (-1091) -> H^0 (-1440)
+At time : 52.2458 ns  Reaction : e_aq^1 (-571) + H3O^1 (-1099) -> H^0 (-1441)
+At time : 55.1458 ns  Reaction : e_aq^1 (-344) + OH^0 (-1187) -> OH^-1 (-1442)
+At time : 58.4698 ns  Reaction : e_aq^1 (-264) + H^0 (-1380) -> OH^-1 (-1443) + H_2^0 (-1444)
+At time : 63.5381 ns  Reaction : OH^0 (-722) + e_aq^1 (-1198) -> OH^-1 (-1445)
+At time : 66.1381 ns  Reaction : e_aq^1 (-276) + H^0 (-1364) -> OH^-1 (-1446) + H_2^0 (-1447)
+At time : 66.4381 ns  Reaction : e_aq^1 (-454) + H3O^1 (-677) -> H^0 (-1448)
+At time : 68.4057 ns  Reaction : OH^-1 (-1438) + H3O^1 (-1209) -> No product
+At time : 71.8936 ns  Reaction : H3O^1 (-781) + OH^-1 (-1443) -> No product
+At time : 75.4936 ns  Reaction : H3O^1 (-745) + OH^-1 (-1442) -> No product
+At time : 77.5946 ns  Reaction : e_aq^1 (-391) + H2O2^0 (-1419) -> OH^-1 (-1449) + OH^0 (-1450)
+At time : 78.1946 ns  Reaction : e_aq^1 (-370) + H^0 (-1378) -> OH^-1 (-1451) + H_2^0 (-1452)
+At time : 80.0147 ns  Reaction : H3O^1 (-733) + OH^-1 (-1400) -> No product
+At time : 82.2147 ns  Reaction : H3O^1 (-973) + OH^-1 (-1393) -> No product
+At time : 83.5147 ns  Reaction : H^0 (-1412) + OH^0 (-1100) -> No product
+At time : 85.3873 ns  Reaction : e_aq^1 (-535) + H3O^1 (-925) -> H^0 (-1453)
+At time : 85.5873 ns  Reaction : e_aq^1 (-162) + H^0 (-1310) -> OH^-1 (-1454) + H_2^0 (-1455)
+At time : 86.4258 ns  Reaction : OH^0 (-772) + OH^0 (-778) -> H2O2^0 (-1456)
+At time :  90.512 ns  Reaction : e_aq^1 (-225) + H3O^1 (-1127) -> H^0 (-1457)
+At time : 99.8449 ns  Reaction : e_aq^1 (-297) + OH^0 (-766) -> OH^-1 (-1458)
+At time : 103.955 ns  Reaction : e_aq^1 (-141) + H2O2^0 (-1261) -> OH^-1 (-1459) + OH^0 (-1460)
+At time : 105.055 ns  Reaction : H3O^1 (-737) + OH^-1 (-1434) -> No product
+At time : 118.852 ns  Reaction : e_aq^1 (-229) + H3O^1 (-1017) -> H^0 (-1461)
+At time : 125.668 ns  Reaction : OH^0 (-612) + OH^0 (-1032) -> H2O2^0 (-1462)
+At time : 130.826 ns  Reaction : OH^-1 (-1339) + H3O^1 (-1139) -> No product
+At time : 139.913 ns  Reaction : OH^-1 (-1300) + H3O^1 (-1053) -> No product
+At time : 148.404 ns  Reaction : e_aq^1 (-481) + H3O^1 (-1087) -> H^0 (-1463)
+At time : 173.462 ns  Reaction : e_aq^1 (-550) + H3O^1 (-669) -> H^0 (-1464)
+At time : 186.163 ns  Reaction : H3O^1 (-891) + OH^-1 (-1386) -> No product
+At time : 195.026 ns  Reaction : OH^0 (-674) + OH^0 (-960) -> H2O2^0 (-1465)
+At time : 199.293 ns  Reaction : e_aq^1 (-188) + H^0 (-1457) -> OH^-1 (-1466) + H_2^0 (-1467)
+At time : 222.989 ns  Reaction : e_aq^1 (-256) + H3O^1 (-889) -> H^0 (-1468)
+At time : 224.638 ns  Reaction : e_aq^1 (-220) + OH^0 (-998) -> OH^-1 (-1469)
+At time : 234.662 ns  Reaction : H3O^1 (-793) + OH^-1 (-1454) -> No product
+At time :   237.5 ns  Reaction : e_aq^1 (-299) + OH^0 (-1130) -> OH^-1 (-1470)
+At time : 243.318 ns  Reaction : e_aq^1 (-191) + OH^0 (-794) -> OH^-1 (-1471)
+At time : 255.993 ns  Reaction : H3O^1 (-837) + OH^-1 (-1470) -> No product
+At time :   266.6 ns  Reaction : OH^-1 (-1379) + H3O^1 (-1041) -> No product
+At time : 292.781 ns  Reaction : OH^0 (-782) + OH^0 (-1112) -> H2O2^0 (-1472)
+At time : 300.944 ns  Reaction : e_aq^1 (-559) + OH^0 (-652) -> OH^-1 (-1473)
+At time : 328.487 ns  Reaction : e_aq^1 (-230) + e_aq^1 (-199) -> OH^-1 (-1474) + OH^-1 (-1475) + H_2^0 (-1476)
+At time : 331.665 ns  Reaction : e_aq^1 (-583) + H3O^1 (-929) -> H^0 (-1477)
+At time :  336.96 ns  Reaction : e_aq^1 (-591) + H3O^1 (-621) -> H^0 (-1478)
+At time : 338.849 ns  Reaction : H3O^1 (-789) + OH^-1 (-1395) -> No product
+At time : 379.097 ns  Reaction : OH^-1 (-1458) + H3O^1 (-1194) -> No product
+At time : 409.517 ns  Reaction : e_aq^1 (-314) + OH^0 (-1174) -> OH^-1 (-1479)
+At time : 481.355 ns  Reaction : H3O^1 (-787) + OH^-1 (-1469) -> No product
+At time : 538.936 ns  Reaction : OH^-1 (-1367) + H3O^1 (-905) -> No product
+At time : 663.761 ns  Reaction : e_aq^1 (-145) + OH^0 (-830) -> OH^-1 (-1480)
+At time : 664.978 ns  Reaction : H^0 (-1338) + OH^0 (-1136) -> No product
+At time : 685.535 ns  Reaction : OH^0 (-980) + OH^0 (-1193) -> H2O2^0 (-1481)
+At time : 746.645 ns  Reaction : e_aq^1 (-556) + H3O^1 (-635) -> H^0 (-1482)
+At time :  759.63 ns  Reaction : e_aq^1 (-587) + H2O2^0 (-1282) -> OH^-1 (-1483) + OH^0 (-1484)
 *** G4Scheduler ends at time : 1 mus
 ___________________________________
 Graphics systems deleted.
diff --git a/examples/extended/medical/dna/chem3/chem3.out b/examples/extended/medical/dna/chem3/chem3.out
index 2d520bacd13..57844c0ad6e 100644
--- a/examples/extended/medical/dna/chem3/chem3.out
+++ b/examples/extended/medical/dna/chem3/chem3.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -205,72 +205,72 @@ H^0 + H^0 -> H_2^0                        1.2e+10                       0.226528
 DNAMolecularStepByStepModel will be used
 *** G4Scheduler starts processing 
 At time :       1 ps  Reaction : OH^-1 (-114) + H3O^1 (-218) -> No product
-At time : 8.99724 ps  Reaction : e_aq^1 (-87) + H3O^1 (-124) -> H^0 (-226)
-At time : 10.0972 ps  Reaction : OH^0 (-171) + OH^0 (-201) -> H2O2^0 (-227)
-At time : 14.0972 ps  Reaction : e_aq^1 (-51) + H3O^1 (-188) -> H^0 (-228)
-At time : 21.9372 ps  Reaction : e_aq^1 (-86) + OH^0 (-125) -> OH^-1 (-229)
-At time : 27.9372 ps  Reaction : e_aq^1 (-64) + OH^0 (-199) -> OH^-1 (-230)
-At time : 27.9372 ps  Reaction : OH^-1 (-230) + H3O^1 (-136) -> No product
-At time : 30.9372 ps  Reaction : e_aq^1 (-103) + OH^0 (-203) -> OH^-1 (-231)
-At time : 34.0715 ps  Reaction : H3O^1 (-120) + OH^-1 (-231) -> No product
-At time : 37.4824 ps  Reaction : e_aq^1 (-111) + OH^0 (-121) -> OH^-1 (-232)
-At time : 48.5306 ps  Reaction : OH^0 (-115) + OH^0 (-219) -> H2O2^0 (-233)
-At time : 53.5306 ps  Reaction : e_aq^1 (-50) + OH^0 (-211) -> OH^-1 (-234)
-At time : 57.0762 ps  Reaction : e_aq^1 (-48) + OH^0 (-149) -> OH^-1 (-235)
-At time : 57.0762 ps  Reaction : H3O^1 (-148) + OH^-1 (-235) -> No product
-At time : 98.7426 ps  Reaction : OH^0 (-159) + OH^0 (-161) -> H2O2^0 (-236)
-At time : 111.743 ps  Reaction : OH^0 (-183) + OH^0 (-207) -> H2O2^0 (-237)
-At time : 187.107 ps  Reaction : OH^0 (-145) + OH^0 (-215) -> H2O2^0 (-238)
-At time : 190.107 ps  Reaction : e_aq^1 (-77) + OH^0 (-133) -> OH^-1 (-239)
-At time : 199.107 ps  Reaction : H3O^1 (-168) + OH^-1 (-229) -> No product
-At time : 217.107 ps  Reaction : e_aq^1 (-34) + H3O^1 (-150) -> H^0 (-240)
-At time : 217.107 ps  Reaction : e_aq^1 (-58) + e_aq^1 (-90) -> OH^-1 (-241) + OH^-1 (-242) + H_2^0 (-243)
-At time : 226.107 ps  Reaction : OH^0 (-153) + OH^0 (-155) -> H2O2^0 (-244)
-At time : 254.429 ps  Reaction : e_aq^1 (-45) + H^0 (-228) -> OH^-1 (-245) + H_2^0 (-246)
-At time : 311.147 ps  Reaction : OH^-1 (-232) + H3O^1 (-176) -> No product
-At time : 337.266 ps  Reaction : H3O^1 (-210) + OH^-1 (-234) -> No product
-At time : 368.318 ps  Reaction : OH^-1 (-242) + H3O^1 (-162) -> No product
-At time : 536.774 ps  Reaction : e_aq^1 (-41) + H2O2^0 (-238) -> OH^-1 (-247) + OH^0 (-248)
-At time : 557.774 ps  Reaction : H3O^1 (-152) + OH^-1 (-247) -> No product
-At time : 949.404 ps  Reaction : H3O^1 (-164) + OH^-1 (-241) -> No product
-At time : 1.05038 ns  Reaction : e_aq^1 (-67) + H3O^1 (-198) -> H^0 (-249)
-At time : 1.10428 ns  Reaction : e_aq^1 (-76) + H3O^1 (-126) -> H^0 (-250)
-At time : 1.14428 ns  Reaction : e_aq^1 (-36) + OH^0 (-143) -> OH^-1 (-251)
-At time : 1.29736 ns  Reaction : e_aq^1 (-40) + H3O^1 (-158) -> H^0 (-252)
-At time : 1.54736 ns  Reaction : e_aq^1 (-52) + H3O^1 (-216) -> H^0 (-253)
-At time : 1.55736 ns  Reaction : e_aq^1 (-56) + OH^0 (-165) -> OH^-1 (-254)
-At time : 1.56736 ns  Reaction : e_aq^1 (-61) + OH^0 (-141) -> OH^-1 (-255)
-At time : 1.59736 ns  Reaction : e_aq^1 (-89) + OH^0 (-167) -> OH^-1 (-256)
-At time : 1.61736 ns  Reaction : e_aq^1 (-37) + OH^0 (-151) -> OH^-1 (-257)
-At time : 1.84092 ns  Reaction : OH^0 (-135) + OH^0 (-197) -> H2O2^0 (-258)
-At time : 1.85092 ns  Reaction : e_aq^1 (-69) + e_aq^1 (-94) -> OH^-1 (-259) + OH^-1 (-260) + H_2^0 (-261)
-At time : 1.88092 ns  Reaction : OH^-1 (-255) + H3O^1 (-196) -> No product
-At time : 1.90092 ns  Reaction : e_aq^1 (-47) + H3O^1 (-214) -> H^0 (-262)
-At time : 2.12736 ns  Reaction : H^0 (-250) + OH^0 (-223) -> No product
-At time : 2.31721 ns  Reaction : H3O^1 (-134) + OH^-1 (-259) -> No product
-At time : 2.45738 ns  Reaction : H3O^1 (-128) + OH^-1 (-239) -> No product
-At time : 2.66265 ns  Reaction : OH^0 (-248) + OH^0 (-163) -> H2O2^0 (-263)
-At time : 3.82795 ns  Reaction : H^0 (-253) + OH^0 (-191) -> No product
-At time : 4.52103 ns  Reaction : OH^-1 (-260) + H3O^1 (-224) -> No product
-At time :  5.4369 ns  Reaction : e_aq^1 (-53) + H3O^1 (-194) -> H^0 (-264)
-At time : 8.18225 ns  Reaction : e_aq^1 (-42) + H3O^1 (-208) -> H^0 (-265)
-At time : 8.65737 ns  Reaction : e_aq^1 (-80) + H3O^1 (-206) -> H^0 (-266)
-At time : 10.6162 ns  Reaction : e_aq^1 (-68) + H^0 (-249) -> OH^-1 (-267) + H_2^0 (-268)
-At time : 10.7162 ns  Reaction : e_aq^1 (-66) + H2O2^0 (-236) -> OH^-1 (-269) + OH^0 (-270)
-At time : 17.0322 ns  Reaction : e_aq^1 (-32) + H2O2^0 (-237) -> OH^-1 (-271) + OH^0 (-272)
-At time : 17.2322 ns  Reaction : e_aq^1 (-102) + OH^0 (-169) -> OH^-1 (-273)
-At time : 17.5322 ns  Reaction : e_aq^1 (-59) + e_aq^1 (-46) -> OH^-1 (-274) + OH^-1 (-275) + H_2^0 (-276)
-At time : 18.0322 ns  Reaction : OH^-1 (-251) + H3O^1 (-182) -> No product
-At time : 18.6322 ns  Reaction : e_aq^1 (-95) + e_aq^1 (-225) -> OH^-1 (-277) + OH^-1 (-278) + H_2^0 (-279)
-At time : 19.0322 ns  Reaction : OH^0 (-272) + OH^0 (-195) -> H2O2^0 (-280)
-At time : 20.3322 ns  Reaction : e_aq^1 (-110) + H3O^1 (-202) -> H^0 (-281)
-At time : 20.7322 ns  Reaction : H^0 (-252) + OH^0 (-193) -> No product
-At time : 27.0765 ns  Reaction : e_aq^1 (-100) + OH^0 (-123) -> OH^-1 (-282)
-At time :  37.127 ns  Reaction : OH^-1 (-273) + H3O^1 (-172) -> No product
-At time :  47.432 ns  Reaction : OH^0 (-119) + OH^0 (-185) -> H2O2^0 (-283)
-At time : 58.4148 ns  Reaction : OH^-1 (-269) + H3O^1 (-178) -> No product
-At time : 60.5782 ns  Reaction : H3O^1 (-132) + OH^-1 (-245) -> No product
-At time : 72.1621 ns  Reaction : OH^-1 (-278) + H3O^1 (-180) -> No product
+At time : 1.93988 ps  Reaction : OH^0 (-183) + OH^0 (-207) -> H2O2^0 (-226)
+At time : 10.0021 ps  Reaction : e_aq^1 (-51) + H3O^1 (-188) -> H^0 (-227)
+At time : 24.0021 ps  Reaction : e_aq^1 (-99) + H3O^1 (-122) -> H^0 (-228)
+At time : 32.0021 ps  Reaction : OH^0 (-119) + OH^0 (-175) -> H2O2^0 (-229)
+At time : 38.0021 ps  Reaction : e_aq^1 (-50) + OH^0 (-211) -> OH^-1 (-230)
+At time : 38.0021 ps  Reaction : OH^-1 (-230) + H3O^1 (-192) -> No product
+At time : 44.0021 ps  Reaction : e_aq^1 (-77) + OH^0 (-131) -> OH^-1 (-231)
+At time : 46.0021 ps  Reaction : e_aq^1 (-86) + OH^0 (-181) -> OH^-1 (-232)
+At time : 52.0021 ps  Reaction : e_aq^1 (-67) + OH^0 (-169) -> OH^-1 (-233)
+At time : 52.0021 ps  Reaction : H3O^1 (-168) + OH^-1 (-233) -> No product
+At time : 56.0021 ps  Reaction : H3O^1 (-132) + OH^-1 (-231) -> No product
+At time : 135.802 ps  Reaction : H3O^1 (-124) + OH^-1 (-232) -> No product
+At time : 147.802 ps  Reaction : e_aq^1 (-62) + OH^0 (-139) -> OH^-1 (-234)
+At time : 147.802 ps  Reaction : OH^-1 (-234) + H3O^1 (-138) -> No product
+At time : 186.802 ps  Reaction : e_aq^1 (-32) + OH^0 (-153) -> OH^-1 (-235)
+At time : 199.142 ps  Reaction : OH^-1 (-235) + H3O^1 (-186) -> No product
+At time : 217.142 ps  Reaction : OH^0 (-159) + OH^0 (-163) -> H2O2^0 (-236)
+At time : 253.142 ps  Reaction : e_aq^1 (-56) + H3O^1 (-162) -> H^0 (-237)
+At time : 253.142 ps  Reaction : e_aq^1 (-103) + OH^0 (-121) -> OH^-1 (-238)
+At time : 358.418 ps  Reaction : e_aq^1 (-64) + H2O2^0 (-226) -> OH^-1 (-239) + OH^0 (-240)
+At time : 364.418 ps  Reaction : e_aq^1 (-87) + OH^0 (-115) -> OH^-1 (-241)
+At time : 367.418 ps  Reaction : e_aq^1 (-45) + OH^0 (-215) -> OH^-1 (-242)
+At time : 367.418 ps  Reaction : OH^-1 (-242) + H3O^1 (-156) -> No product
+At time : 370.418 ps  Reaction : e_aq^1 (-47) + OH^0 (-209) -> OH^-1 (-243)
+At time : 373.418 ps  Reaction : H3O^1 (-144) + OH^-1 (-243) -> No product
+At time : 409.418 ps  Reaction : OH^-1 (-239) + H3O^1 (-182) -> No product
+At time : 432.775 ps  Reaction : e_aq^1 (-31) + H3O^1 (-214) -> H^0 (-244)
+At time : 459.775 ps  Reaction : OH^0 (-155) + OH^0 (-187) -> H2O2^0 (-245)
+At time : 537.428 ps  Reaction : e_aq^1 (-94) + OH^0 (-223) -> OH^-1 (-246)
+At time : 540.428 ps  Reaction : H3O^1 (-130) + OH^-1 (-241) -> No product
+At time : 633.816 ps  Reaction : e_aq^1 (-58) + OH^0 (-185) -> OH^-1 (-247)
+At time : 648.816 ps  Reaction : e_aq^1 (-68) + OH^0 (-129) -> OH^-1 (-248)
+At time : 651.816 ps  Reaction : OH^0 (-137) + OH^0 (-179) -> H2O2^0 (-249)
+At time : 693.816 ps  Reaction : e_aq^1 (-43) + H3O^1 (-142) -> H^0 (-250)
+At time : 788.222 ps  Reaction : e_aq^1 (-61) + H3O^1 (-194) -> H^0 (-251)
+At time : 1.17963 ns  Reaction : e_aq^1 (-37) + H3O^1 (-146) -> H^0 (-252)
+At time : 1.26963 ns  Reaction : H3O^1 (-216) + OH^-1 (-247) -> No product
+At time : 1.52017 ns  Reaction : H3O^1 (-128) + OH^-1 (-248) -> No product
+At time : 1.52017 ns  Reaction : e_aq^1 (-90) + OH^0 (-165) -> OH^-1 (-253)
+At time : 1.54017 ns  Reaction : e_aq^1 (-52) + H^0 (-237) -> OH^-1 (-254) + H_2^0 (-255)
+At time : 1.93362 ns  Reaction : OH^0 (-117) + OH^0 (-220) -> H2O2^0 (-256)
+At time : 2.10131 ns  Reaction : e_aq^1 (-98) + OH^0 (-123) -> OH^-1 (-257)
+At time : 2.67527 ns  Reaction : e_aq^1 (-53) + H3O^1 (-178) -> H^0 (-258)
+At time : 3.81031 ns  Reaction : e_aq^1 (-36) + H^0 (-250) -> OH^-1 (-259) + H_2^0 (-260)
+At time : 3.98692 ns  Reaction : H3O^1 (-172) + OH^-1 (-257) -> No product
+At time : 4.40953 ns  Reaction : H3O^1 (-136) + OH^-1 (-253) -> No product
+At time : 5.53892 ns  Reaction : H2O2^0 (-256) + e_aq^1 (-222) -> OH^-1 (-261) + OH^0 (-262)
+At time : 5.80855 ns  Reaction : OH^-1 (-246) + H3O^1 (-212) -> No product
+At time : 6.46208 ns  Reaction : e_aq^1 (-110) + OH^0 (-127) -> OH^-1 (-263)
+At time : 6.74181 ns  Reaction : e_aq^1 (-55) + H3O^1 (-200) -> H^0 (-264)
+At time : 7.45699 ns  Reaction : e_aq^1 (-102) + OH^0 (-203) -> OH^-1 (-265)
+At time : 7.79211 ns  Reaction : OH^0 (-151) + OH^0 (-189) -> H2O2^0 (-266)
+At time : 8.42695 ns  Reaction : H3O^1 (-140) + OH^-1 (-254) -> No product
+At time : 9.04452 ns  Reaction : H^0 (-228) + e_aq^1 (-225) -> OH^-1 (-267) + H_2^0 (-268)
+At time : 9.05452 ns  Reaction : H3O^1 (-134) + OH^-1 (-263) -> No product
+At time : 9.42077 ns  Reaction : e_aq^1 (-89) + OH^0 (-147) -> OH^-1 (-269)
+At time : 9.50245 ns  Reaction : e_aq^1 (-48) + OH^0 (-149) -> OH^-1 (-270)
+At time : 14.7235 ns  Reaction : e_aq^1 (-95) + OH^0 (-191) -> OH^-1 (-271)
+At time : 16.6235 ns  Reaction : OH^0 (-161) + OH^0 (-217) -> H2O2^0 (-272)
+At time : 18.9235 ns  Reaction : e_aq^1 (-59) + e_aq^1 (-46) -> OH^-1 (-273) + OH^-1 (-274) + H_2^0 (-275)
+At time :  19.536 ns  Reaction : OH^-1 (-270) + H3O^1 (-206) -> No product
+At time :  20.836 ns  Reaction : e_aq^1 (-34) + H3O^1 (-152) -> H^0 (-276)
+At time : 27.7199 ns  Reaction : OH^-1 (-259) + H3O^1 (-208) -> No product
+At time : 31.2198 ns  Reaction : H3O^1 (-180) + OH^-1 (-269) -> No product
+At time : 32.5267 ns  Reaction : H^0 (-264) + OH^0 (-199) -> No product
+At time : 62.0104 ns  Reaction : OH^-1 (-273) + H3O^1 (-224) -> No product
 *** G4Scheduler ends at time : 100 ns 
 ___________________________________
 Seed used :9876
diff --git a/examples/extended/medical/dna/dnaphysics/dnaphysics.out b/examples/extended/medical/dna/dnaphysics/dnaphysics.out
index a6bd3afd4fa..da2f29d4f50 100644
--- a/examples/extended/medical/dna/dnaphysics/dnaphysics.out
+++ b/examples/extended/medical/dna/dnaphysics/dnaphysics.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -223,13 +223,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   0x22dfdd0
+##### Create analysis manager   0x12ba3c0
 Using Root analysis manager
 ... open Root analysis file : dna.root - done
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=14.39s Real=14.98s Sys=0.14s
+  User=10.28s Real=12.37s Sys=0.13s
 ... write Root file : dna.root - done
 Graphics systems deleted.
 Visualization Manager deleting...
diff --git a/examples/extended/medical/dna/microdosimetry/microdosimetry.out b/examples/extended/medical/dna/microdosimetry/microdosimetry.out
index 1d9e57f43d7..3aefb2082fe 100644
--- a/examples/extended/medical/dna/microdosimetry/microdosimetry.out
+++ b/examples/extended/medical/dna/microdosimetry/microdosimetry.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -246,7 +246,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 2
-  User=83.11s Real=83.42s Sys=0.01s
+  User=64.15s Real=65.82s Sys=0.01s
 Number and type of particles created outside region "Target" :
 N e- : 5215
 _______________________
diff --git a/examples/extended/medical/dna/pdb4dna/pdb4dna.out b/examples/extended/medical/dna/pdb4dna/pdb4dna.out
index 3f3a4c60ad7..aefb42782f6 100644
--- a/examples/extended/medical/dna/pdb4dna/pdb4dna.out
+++ b/examples/extended/medical/dna/pdb4dna/pdb4dna.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out b/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out
index 7c28c1c9313..61ac44b4c2b 100644
--- a/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out
+++ b/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/extended/medical/electronScattering/electronScattering.out b/examples/extended/medical/electronScattering/electronScattering.out
index cea4bf09b4f..da7bf9c3a7e 100644
--- a/examples/extended/medical/electronScattering/electronScattering.out
+++ b/examples/extended/medical/electronScattering/electronScattering.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -288,7 +288,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 100000
-  User=18.4s Real=18.42s Sys=0s
+  User=13.84s Real=15.13s Sys=0s
 
  ======================== run summary ======================
 
@@ -311,7 +311,7 @@ Units table cleared.
 Total navigation history collections cleaned: 11
 ================== Deleting memory pools ===================
 Number of memory pools allocated: 9 of which, static: 0
-Dynamic pools deleted: 9 / Total memory freed: 0.022 Mb
+Dynamic pools deleted: 9 / Total memory freed: 0.023 Mb
 ============================================================
 G4Allocator objects are deleted.
 UImanager deleted.
diff --git a/examples/extended/medical/electronScattering2/electronScattering2.out b/examples/extended/medical/electronScattering2/electronScattering2.out
index 930c554e5f9..15a2004b343 100644
--- a/examples/extended/medical/electronScattering2/electronScattering2.out
+++ b/examples/extended/medical/electronScattering2/electronScattering2.out
@@ -1,5 +1,5 @@
 Starting run with
-Macro File    : /ec/G4-builds/release/slc6-gcc49-RelWithDebInfo/geant4-10-01-patch-01_cand-02/examples/extended/medical/electronScattering2/electronScattering2.in
+Macro File    : /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/geant4-10-01-patches_branch/examples/extended/medical/electronScattering2/electronScattering2.in
 Starting Seed : 1
 Output File   : output.csv
 
@@ -8,7 +8,7 @@ Output File   : output.csv
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/extended/medical/fanoCavity/fanoCavity.out b/examples/extended/medical/fanoCavity/fanoCavity.out
index 18c8bb7b1bc..484fd20d17e 100644
--- a/examples/extended/medical/fanoCavity/fanoCavity.out
+++ b/examples/extended/medical/fanoCavity/fanoCavity.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -228,7 +228,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 4000
-  User=39.35s Real=39.44s Sys=0.01s
+  User=25s Real=25.57s Sys=0s
 
  ======================== run summary ======================
 
diff --git a/examples/extended/medical/fanoCavity2/fanoCavity2.out b/examples/extended/medical/fanoCavity2/fanoCavity2.out
index b0b002de6a3..1b471de302d 100644
--- a/examples/extended/medical/fanoCavity2/fanoCavity2.out
+++ b/examples/extended/medical/fanoCavity2/fanoCavity2.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -275,7 +275,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 40000
-  User=11.06s Real=11.12s Sys=0s
+  User=8.6s Real=8.68s Sys=0s
 
  Process calls frequency --->  msc= 571115  eIoni= 608991  Transportation= 23083
 
diff --git a/examples/extended/optical/LXe/LXe.out b/examples/extended/optical/LXe/LXe.out
index 025c1522046..432795a3c16 100644
--- a/examples/extended/optical/LXe/LXe.out
+++ b/examples/extended/optical/LXe/LXe.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -238,7 +238,7 @@ Unacounted for photons in this event : 0
  Run terminated.
 Run Summary
   Number of events processed : 1
-  User=0.32s Real=0.32s Sys=0s
+  User=0.19s Real=0.19s Sys=0s
 
 ========= Table of registered couples ==============================
 
@@ -286,7 +286,7 @@ Unacounted for photons in this event : 0
  Run terminated.
 Run Summary
   Number of events processed : 1
-  User=0.22s Real=0.22s Sys=0s
+  User=0.13s Real=0.13s Sys=0s
 Graphics systems deleted.
 Visualization Manager deleting...
 G4 kernel has come to Quit state.
diff --git a/examples/extended/optical/OpNovice/OpNovice.out b/examples/extended/optical/OpNovice/OpNovice.out
index 96204175c46..d325937fab5 100644
--- a/examples/extended/optical/OpNovice/OpNovice.out
+++ b/examples/extended/optical/OpNovice/OpNovice.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -623,7 +623,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cacb0
+      Address of G4Track    : 0x1fe71f0
       Step Length (mm)      : 0.08356486505286764
       Energy Deposit (MeV)  : 0.01240931326330749
       -----------------------------------------------------------------------
@@ -667,7 +667,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) msc
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cacb0
+      Address of G4Track    : 0x1fe71f0
       Step Length (mm)      : 0.08356486505286764
       Energy Deposit (MeV)  : 0.01240931326330749
       -----------------------------------------------------------------------
@@ -721,7 +721,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 6785.021513124744
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -769,7 +769,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 6785.021513124744
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -811,7 +811,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 6850.451137379004
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -850,7 +850,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 6850.451137379004
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -899,7 +899,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 3840.801421350887
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -941,7 +941,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 3840.801421350887
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -990,7 +990,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 5417.113006407777
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1038,7 +1038,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 5417.113006407777
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1080,7 +1080,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 5843.788291254718
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1119,7 +1119,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 5843.788291254718
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1171,7 +1171,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cacb0
+      Address of G4Track    : 0x1fe71f0
       Step Length (mm)      : 0.9487485013459167
       Energy Deposit (MeV)  : 0.1828959632028004
       -----------------------------------------------------------------------
@@ -1214,7 +1214,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) msc
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cacb0
+      Address of G4Track    : 0x1fe71f0
       Step Length (mm)      : 0.9487485013459167
       Energy Deposit (MeV)  : 0.1828959632028004
       -----------------------------------------------------------------------
@@ -1287,7 +1287,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1450
+      Address of G4Track    : 0x1fed770
       Step Length (mm)      : 6015.504792064699
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1335,7 +1335,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1450
+      Address of G4Track    : 0x1fed770
       Step Length (mm)      : 6015.504792064699
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1377,7 +1377,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1450
+      Address of G4Track    : 0x1fed770
       Step Length (mm)      : 7541.48870316978
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1416,7 +1416,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1450
+      Address of G4Track    : 0x1fed770
       Step Length (mm)      : 7541.48870316978
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1465,7 +1465,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0e60
+      Address of G4Track    : 0x1fed180
       Step Length (mm)      : 6107.060109137178
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1513,7 +1513,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0e60
+      Address of G4Track    : 0x1fed180
       Step Length (mm)      : 6107.060109137178
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1555,7 +1555,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0e60
+      Address of G4Track    : 0x1fed180
       Step Length (mm)      : 7962.66306510754
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1594,7 +1594,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0e60
+      Address of G4Track    : 0x1fed180
       Step Length (mm)      : 7962.66306510754
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1643,7 +1643,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0d58
+      Address of G4Track    : 0x1fed078
       Step Length (mm)      : 2931.052057328176
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1685,7 +1685,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0d58
+      Address of G4Track    : 0x1fed078
       Step Length (mm)      : 2931.052057328176
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1734,7 +1734,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0c50
+      Address of G4Track    : 0x1fecf70
       Step Length (mm)      : 5509.914638805039
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1782,7 +1782,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0c50
+      Address of G4Track    : 0x1fecf70
       Step Length (mm)      : 5509.914638805039
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1824,7 +1824,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0c50
+      Address of G4Track    : 0x1fecf70
       Step Length (mm)      : 6085.236079330465
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1863,7 +1863,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0c50
+      Address of G4Track    : 0x1fecf70
       Step Length (mm)      : 6085.236079330465
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1912,7 +1912,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0a60
+      Address of G4Track    : 0x1fecd80
       Step Length (mm)      : 5393.099304535287
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -1960,7 +1960,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0a60
+      Address of G4Track    : 0x1fecd80
       Step Length (mm)      : 5393.099304535287
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2002,7 +2002,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0a60
+      Address of G4Track    : 0x1fecd80
       Step Length (mm)      : 5805.757943997323
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2041,7 +2041,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0a60
+      Address of G4Track    : 0x1fecd80
       Step Length (mm)      : 5805.757943997323
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2090,7 +2090,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0958
+      Address of G4Track    : 0x1fecc78
       Step Length (mm)      : 5804.417122395797
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2132,7 +2132,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0958
+      Address of G4Track    : 0x1fecc78
       Step Length (mm)      : 5804.417122395797
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2181,7 +2181,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0850
+      Address of G4Track    : 0x1fecb70
       Step Length (mm)      : 6052.175458992992
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2229,7 +2229,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0850
+      Address of G4Track    : 0x1fecb70
       Step Length (mm)      : 6052.175458992992
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2271,7 +2271,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0850
+      Address of G4Track    : 0x1fecb70
       Step Length (mm)      : 7679.618912574673
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2310,7 +2310,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0850
+      Address of G4Track    : 0x1fecb70
       Step Length (mm)      : 7679.618912574673
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2359,7 +2359,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0260
+      Address of G4Track    : 0x1fec580
       Step Length (mm)      : 3353.591255645674
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2401,7 +2401,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0260
+      Address of G4Track    : 0x1fec580
       Step Length (mm)      : 3353.591255645674
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2450,7 +2450,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0158
+      Address of G4Track    : 0x1fec478
       Step Length (mm)      : 1409.345465448369
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2492,7 +2492,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0158
+      Address of G4Track    : 0x1fec478
       Step Length (mm)      : 1409.345465448369
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2541,7 +2541,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0050
+      Address of G4Track    : 0x1fec370
       Step Length (mm)      : 1274.408230886912
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2589,7 +2589,7 @@ Momentum Change: (-0.1077928520766766,-0.3791124650715831,-0.9190508363896545)
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0050
+      Address of G4Track    : 0x1fec370
       Step Length (mm)      : 1274.408230886912
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2631,7 +2631,7 @@ Momentum Change: (-0.1077928520766766,-0.3791124650715831,-0.9190508363896545)
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0050
+      Address of G4Track    : 0x1fec370
       Step Length (mm)      : 6787.810335666434
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2679,7 +2679,7 @@ Momentum Change: (-0.1077928520766766,-0.3791124650715831,-0.9190508363896545)
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0050
+      Address of G4Track    : 0x1fec370
       Step Length (mm)      : 6787.810335666434
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2721,7 +2721,7 @@ Momentum Change: (-0.1077928520766766,-0.3791124650715831,-0.9190508363896545)
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0050
+      Address of G4Track    : 0x1fec370
       Step Length (mm)      : 5911.077779784754
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2760,7 +2760,7 @@ Momentum Change: (-0.1077928520766766,-0.3791124650715831,-0.9190508363896545)
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0050
+      Address of G4Track    : 0x1fec370
       Step Length (mm)      : 5911.077779784754
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2809,7 +2809,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfe60
+      Address of G4Track    : 0x1fec180
       Step Length (mm)      : 7004.320057877715
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2857,7 +2857,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfe60
+      Address of G4Track    : 0x1fec180
       Step Length (mm)      : 7004.320057877715
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2899,7 +2899,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfe60
+      Address of G4Track    : 0x1fec180
       Step Length (mm)      : 6831.695347307481
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2938,7 +2938,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfe60
+      Address of G4Track    : 0x1fec180
       Step Length (mm)      : 6831.695347307481
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -2987,7 +2987,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfd58
+      Address of G4Track    : 0x1fec078
       Step Length (mm)      : 5586.371972720529
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3035,7 +3035,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfd58
+      Address of G4Track    : 0x1fec078
       Step Length (mm)      : 5586.371972720529
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3077,7 +3077,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfd58
+      Address of G4Track    : 0x1fec078
       Step Length (mm)      : 6288.035044822144
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3116,7 +3116,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfd58
+      Address of G4Track    : 0x1fec078
       Step Length (mm)      : 6288.035044822144
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3165,7 +3165,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 6008.346357270425
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3213,7 +3213,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 6008.346357270425
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3255,7 +3255,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 7585.618530590691
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3294,7 +3294,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 7585.618530590691
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3343,7 +3343,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 5724.38105332999
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3391,7 +3391,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 5724.38105332999
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3433,7 +3433,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 6648.856965976825
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3472,7 +3472,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 6648.856965976825
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3521,7 +3521,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf558
+      Address of G4Track    : 0x1feb878
       Step Length (mm)      : 5997.186221715631
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3569,7 +3569,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf558
+      Address of G4Track    : 0x1feb878
       Step Length (mm)      : 5997.186221715631
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3611,7 +3611,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf558
+      Address of G4Track    : 0x1feb878
       Step Length (mm)      : 7571.292071777195
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3650,7 +3650,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf558
+      Address of G4Track    : 0x1feb878
       Step Length (mm)      : 7571.292071777195
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3699,7 +3699,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 3626.983772058372
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3741,7 +3741,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 3626.983772058372
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3790,7 +3790,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 6020.786845810489
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3838,7 +3838,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 6020.786845810489
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3880,7 +3880,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 7646.948799570973
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3919,7 +3919,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 7646.948799570973
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -3968,7 +3968,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf158
+      Address of G4Track    : 0x1feb478
       Step Length (mm)      : 5250.475746020497
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4016,7 +4016,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf158
+      Address of G4Track    : 0x1feb478
       Step Length (mm)      : 5250.475746020497
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4058,7 +4058,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf158
+      Address of G4Track    : 0x1feb478
       Step Length (mm)      : 5493.035472375598
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4097,7 +4097,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf158
+      Address of G4Track    : 0x1feb478
       Step Length (mm)      : 5493.035472375598
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4146,7 +4146,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 1600.24184529433
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4188,7 +4188,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 1600.24184529433
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4237,7 +4237,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdd50
+      Address of G4Track    : 0x1fea080
       Step Length (mm)      : 5672.799389931164
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4285,7 +4285,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdd50
+      Address of G4Track    : 0x1fea080
       Step Length (mm)      : 5672.799389931164
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4327,7 +4327,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdd50
+      Address of G4Track    : 0x1fea080
       Step Length (mm)      : 6479.6841473713
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4366,7 +4366,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdd50
+      Address of G4Track    : 0x1fea080
       Step Length (mm)      : 6479.6841473713
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4415,7 +4415,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdc48
+      Address of G4Track    : 0x1fe9f78
       Step Length (mm)      : 5262.584748548011
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4463,7 +4463,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdc48
+      Address of G4Track    : 0x1fe9f78
       Step Length (mm)      : 5262.584748548011
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4505,7 +4505,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdc48
+      Address of G4Track    : 0x1fe9f78
       Step Length (mm)      : 5515.757210981164
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4544,7 +4544,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdc48
+      Address of G4Track    : 0x1fe9f78
       Step Length (mm)      : 5515.757210981164
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4593,7 +4593,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 5470.792786145337
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4641,7 +4641,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 5470.792786145337
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4683,7 +4683,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4726,7 +4726,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4768,7 +4768,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 6907.973237114741
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4816,7 +4816,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 6907.973237114741
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4858,7 +4858,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4901,7 +4901,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4943,7 +4943,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 4033.992146936634
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -4991,7 +4991,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 4033.992146936634
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5033,7 +5033,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 5992.345432431079
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5072,7 +5072,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 5992.345432431079
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5121,7 +5121,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 5503.417690980197
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5169,7 +5169,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 5503.417690980197
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5211,7 +5211,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 6049.226043451097
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5250,7 +5250,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 6049.226043451097
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5299,7 +5299,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 5348.311093956525
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5347,7 +5347,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 5348.311093956525
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5389,7 +5389,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 5695.642231656482
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5428,7 +5428,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 5695.642231656482
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5480,7 +5480,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cacb0
+      Address of G4Track    : 0x1fe71f0
       Step Length (mm)      : 0.2509919872673055
       Energy Deposit (MeV)  : 0.05766674835598758
       -----------------------------------------------------------------------
@@ -5521,7 +5521,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) msc
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cacb0
+      Address of G4Track    : 0x1fe71f0
       Step Length (mm)      : 0.2509919872673055
       Energy Deposit (MeV)  : 0.05766674835598758
       -----------------------------------------------------------------------
@@ -5573,7 +5573,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 6249.834863599854
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5621,7 +5621,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 6249.834863599854
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5663,7 +5663,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 8629.386761217398
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5702,7 +5702,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 8629.386761217398
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5751,7 +5751,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 2286.17127150236
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5793,7 +5793,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 2286.17127150236
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5842,7 +5842,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 325.9702621994199
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5884,7 +5884,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 325.9702621994199
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -5938,7 +5938,7 @@ ge = 6.512068051258617e-07
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cacb0
+      Address of G4Track    : 0x1fe71f0
       Step Length (mm)      : 0.01762416021453028
       Energy Deposit (MeV)  : 0.00463138656913342
       -----------------------------------------------------------------------
@@ -5979,7 +5979,7 @@ ge = 3.595483992034492e-07
       2) msc
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cacb0
+      Address of G4Track    : 0x1fe71f0
       Step Length (mm)      : 0.01762416021453028
       Energy Deposit (MeV)  : 0.00463138656913342
       -----------------------------------------------------------------------
@@ -6024,7 +6024,7 @@ ge = 3.595483992034492e-07
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cacb0
+      Address of G4Track    : 0x1fe71f0
       Step Length (mm)      : 0.5850489093989258
       Energy Deposit (MeV)  : 0.2423965886087711
       -----------------------------------------------------------------------
@@ -6066,7 +6066,7 @@ ge = 3.595483992034492e-07
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cacb0
+      Address of G4Track    : 0x1fe71f0
       Step Length (mm)      : 0.5850489093989258
       Energy Deposit (MeV)  : 0.2423965886087711
       -----------------------------------------------------------------------
@@ -6135,7 +6135,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf558
+      Address of G4Track    : 0x1feb878
       Step Length (mm)      : 6085.545423929854
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6183,7 +6183,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf558
+      Address of G4Track    : 0x1feb878
       Step Length (mm)      : 6085.545423929854
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6225,7 +6225,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf558
+      Address of G4Track    : 0x1feb878
       Step Length (mm)      : 7819.1946015071
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6264,7 +6264,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf558
+      Address of G4Track    : 0x1feb878
       Step Length (mm)      : 7819.1946015071
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6313,7 +6313,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 7346.974948672274
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6361,7 +6361,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 7346.974948672274
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6403,7 +6403,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6446,7 +6446,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6488,7 +6488,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 3233.516424271357
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6536,7 +6536,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 3233.516424271357
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6578,7 +6578,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6621,7 +6621,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6663,7 +6663,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 2668.328875248601
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6705,7 +6705,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 2668.328875248601
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6754,7 +6754,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 7840.02663427773
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6802,7 +6802,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 7840.02663427773
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6844,7 +6844,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6887,7 +6887,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6929,7 +6929,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 491.2759367370037
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -6977,7 +6977,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 491.2759367370037
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7019,7 +7019,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7062,7 +7062,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7104,7 +7104,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 2028.063890940547
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7152,7 +7152,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 2028.063890940547
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7194,7 +7194,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7237,7 +7237,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7279,7 +7279,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 7951.896723726305
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7327,7 +7327,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 7951.896723726305
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7369,7 +7369,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7412,7 +7412,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7454,7 +7454,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 1860.851225365909
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7496,7 +7496,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 1860.851225365909
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7545,7 +7545,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf158
+      Address of G4Track    : 0x1feb478
       Step Length (mm)      : 6535.055548824236
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7593,7 +7593,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf158
+      Address of G4Track    : 0x1feb478
       Step Length (mm)      : 6535.055548824236
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7635,7 +7635,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf158
+      Address of G4Track    : 0x1feb478
       Step Length (mm)      : 7744.185854812165
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7674,7 +7674,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf158
+      Address of G4Track    : 0x1feb478
       Step Length (mm)      : 7744.185854812165
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7723,7 +7723,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 7459.957113997047
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7771,7 +7771,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 7459.957113997047
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7813,7 +7813,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7856,7 +7856,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7898,7 +7898,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 235.806180380311
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7946,7 +7946,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 235.806180380311
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -7988,7 +7988,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8031,7 +8031,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8073,7 +8073,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 6256.944117156672
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8121,7 +8121,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 6256.944117156672
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8163,7 +8163,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8206,7 +8206,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8248,7 +8248,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 8423.620221823592
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8296,7 +8296,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 8423.620221823592
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8338,7 +8338,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8381,7 +8381,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8423,7 +8423,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 2638.370051128045
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8471,7 +8471,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 2638.370051128045
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8513,7 +8513,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8556,7 +8556,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8598,7 +8598,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 9961.98854239572
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8646,7 +8646,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 9961.98854239572
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8688,7 +8688,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8731,7 +8731,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8773,7 +8773,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 5679.714219143256
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8821,7 +8821,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 5679.714219143256
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8863,7 +8863,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8906,7 +8906,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8948,7 +8948,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 5679.714219143256
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -8996,7 +8996,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 5679.714219143256
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9038,7 +9038,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 11849.96275702154
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9077,7 +9077,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 11849.96275702154
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9126,7 +9126,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdd50
+      Address of G4Track    : 0x1fea080
       Step Length (mm)      : 1307.997249009609
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9168,7 +9168,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdd50
+      Address of G4Track    : 0x1fea080
       Step Length (mm)      : 1307.997249009609
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9217,7 +9217,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdc48
+      Address of G4Track    : 0x1fe9f78
       Step Length (mm)      : 582.6462745517094
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9259,7 +9259,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdc48
+      Address of G4Track    : 0x1fe9f78
       Step Length (mm)      : 582.6462745517094
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9308,7 +9308,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 2095.870444453788
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9356,7 +9356,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 2095.870444453788
       Energy Deposit (MeV)  : 3.856850421320702e-06
       -----------------------------------------------------------------------
@@ -9405,7 +9405,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 6482.884086210803
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9453,7 +9453,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 6482.884086210803
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9495,7 +9495,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 7843.875971913841
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9534,7 +9534,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 7843.875971913841
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9583,7 +9583,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 5688.74649085796
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9631,7 +9631,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 5688.74649085796
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9673,7 +9673,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 6527.304286537259
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9712,7 +9712,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 6527.304286537259
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9761,7 +9761,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 29.92681911828459
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9800,7 +9800,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 29.92681911828459
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9843,7 +9843,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 87.18851149355245
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9883,7 +9883,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 87.18851149355245
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9927,7 +9927,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 235.6387507848507
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -9968,7 +9968,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 235.6387507848507
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10013,7 +10013,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 76.5169952221963
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10055,7 +10055,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 76.5169952221963
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10101,7 +10101,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 132.8090096530806
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10144,7 +10144,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 132.8090096530806
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10191,7 +10191,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 35.2646610855604
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10235,7 +10235,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 35.2646610855604
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10283,7 +10283,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 18.00775943287521
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10328,7 +10328,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 18.00775943287521
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10377,7 +10377,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 62.19858767094001
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10423,7 +10423,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 62.19858767094001
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10473,7 +10473,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 123.17190375913
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10520,7 +10520,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 123.17190375913
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10571,7 +10571,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 23.15171280671976
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10619,7 +10619,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 23.15171280671976
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10671,7 +10671,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 3.975318841112419
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10720,7 +10720,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 3.975318841112419
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10773,7 +10773,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 179.0618538029985
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10823,7 +10823,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 179.0618538029985
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10877,7 +10877,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 75.26369349400197
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -10928,7 +10928,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) phot (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 75.26369349400197
       Energy Deposit (MeV)  : 0.0005431
       -----------------------------------------------------------------------
@@ -10990,7 +10990,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 12.315968211191
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11029,7 +11029,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 12.315968211191
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11072,7 +11072,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 29.36010024285594
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11112,7 +11112,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 29.36010024285594
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11156,7 +11156,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 228.8550115015649
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11197,7 +11197,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 228.8550115015649
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11242,7 +11242,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 7.108915103410703
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11284,7 +11284,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 7.108915103410703
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11330,7 +11330,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 7.804713100304159
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11373,7 +11373,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 7.804713100304159
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11420,7 +11420,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 22.40642054031922
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11464,7 +11464,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 22.40642054031922
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11512,7 +11512,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 50.03588173718813
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11557,7 +11557,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 50.03588173718813
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11606,7 +11606,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 58.46810365229837
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11652,7 +11652,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 58.46810365229837
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11702,7 +11702,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 141.7944495172729
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11749,7 +11749,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 141.7944495172729
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11800,7 +11800,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 2.077024813221127
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11848,7 +11848,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 2.077024813221127
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11900,7 +11900,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 70.10262672608405
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -11949,7 +11949,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 70.10262672608405
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -12002,7 +12002,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 28.51427654959912
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -12052,7 +12052,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 28.51427654959912
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -12106,7 +12106,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 22.96830838265386
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -12157,7 +12157,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 22.96830838265386
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -12212,7 +12212,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 10.33899213508431
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -12264,7 +12264,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 10.33899213508431
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -12320,7 +12320,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 1.525074214760704
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -12373,7 +12373,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) compt (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 1.525074214760704
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -12430,7 +12430,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 0.5905259809074601
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -12484,7 +12484,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) phot (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf660
+      Address of G4Track    : 0x1feb980
       Step Length (mm)      : 0.5905259809074601
       Energy Deposit (MeV)  : 0.0005431
       -----------------------------------------------------------------------
@@ -12552,7 +12552,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1d10
+      Address of G4Track    : 0x1fedfa0
       Step Length (mm)      : 0.02250768981116985
       Energy Deposit (MeV)  : 0.03478166389455645
       -----------------------------------------------------------------------
@@ -12594,7 +12594,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1d10
+      Address of G4Track    : 0x1fedfa0
       Step Length (mm)      : 0.02250768981116985
       Energy Deposit (MeV)  : 0.03478166389455645
       -----------------------------------------------------------------------
@@ -12654,7 +12654,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1c08
+      Address of G4Track    : 0x1fede98
       Step Length (mm)      : 0.0008201045200625373
       Energy Deposit (MeV)  : 0.005289998256378686
       -----------------------------------------------------------------------
@@ -12694,7 +12694,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1c08
+      Address of G4Track    : 0x1fede98
       Step Length (mm)      : 0.0008201045200625373
       Energy Deposit (MeV)  : 0.005289998256378686
       -----------------------------------------------------------------------
@@ -12752,7 +12752,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1b00
+      Address of G4Track    : 0x1fedd90
       Step Length (mm)      : 0.000140000763830895
       Energy Deposit (MeV)  : 0.001832953808022571
       -----------------------------------------------------------------------
@@ -12791,7 +12791,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) msc
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1b00
+      Address of G4Track    : 0x1fedd90
       Step Length (mm)      : 0.000140000763830895
       Energy Deposit (MeV)  : 0.001832953808022571
       -----------------------------------------------------------------------
@@ -12849,7 +12849,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1660
+      Address of G4Track    : 0x1fed980
       Step Length (mm)      : 1.102026306835957e-05
       Energy Deposit (MeV)  : 0.0002829702629888603
       -----------------------------------------------------------------------
@@ -12888,7 +12888,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) msc
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1660
+      Address of G4Track    : 0x1fed980
       Step Length (mm)      : 1.102026306835957e-05
       Energy Deposit (MeV)  : 0.0002829702629888603
       -----------------------------------------------------------------------
@@ -12946,7 +12946,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1558
+      Address of G4Track    : 0x1fed878
       Step Length (mm)      : 0.001568791166450955
       Energy Deposit (MeV)  : 0.007691198856029917
       -----------------------------------------------------------------------
@@ -12986,7 +12986,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1558
+      Address of G4Track    : 0x1fed878
       Step Length (mm)      : 0.001568791166450955
       Energy Deposit (MeV)  : 0.007691198856029917
       -----------------------------------------------------------------------
@@ -13044,7 +13044,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1450
+      Address of G4Track    : 0x1fed770
       Step Length (mm)      : 0.001242873324177647
       Energy Deposit (MeV)  : 0.006727980898714167
       -----------------------------------------------------------------------
@@ -13084,7 +13084,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d1450
+      Address of G4Track    : 0x1fed770
       Step Length (mm)      : 0.001242873324177647
       Energy Deposit (MeV)  : 0.006727980898714167
       -----------------------------------------------------------------------
@@ -13142,7 +13142,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0e60
+      Address of G4Track    : 0x1fed180
       Step Length (mm)      : 0.000133792707493774
       Energy Deposit (MeV)  : 0.001781604934606405
       -----------------------------------------------------------------------
@@ -13181,7 +13181,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) msc
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0e60
+      Address of G4Track    : 0x1fed180
       Step Length (mm)      : 0.000133792707493774
       Energy Deposit (MeV)  : 0.001781604934606405
       -----------------------------------------------------------------------
@@ -13239,7 +13239,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0d58
+      Address of G4Track    : 0x1fed078
       Step Length (mm)      : 1.125029741354532e-05
       Energy Deposit (MeV)  : 0.0002886352874856626
       -----------------------------------------------------------------------
@@ -13278,7 +13278,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) msc
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0d58
+      Address of G4Track    : 0x1fed078
       Step Length (mm)      : 1.125029741354532e-05
       Energy Deposit (MeV)  : 0.0002886352874856626
       -----------------------------------------------------------------------
@@ -13336,7 +13336,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0c50
+      Address of G4Track    : 0x1fecf70
       Step Length (mm)      : 0.001691420469976314
       Energy Deposit (MeV)  : 0.008030153586391427
       -----------------------------------------------------------------------
@@ -13376,7 +13376,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0c50
+      Address of G4Track    : 0x1fecf70
       Step Length (mm)      : 0.001691420469976314
       Energy Deposit (MeV)  : 0.008030153586391427
       -----------------------------------------------------------------------
@@ -13434,7 +13434,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0a60
+      Address of G4Track    : 0x1fecd80
       Step Length (mm)      : 5.07556436795078e-05
       Energy Deposit (MeV)  : 0.0009454716079126124
       -----------------------------------------------------------------------
@@ -13473,7 +13473,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) msc
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0a60
+      Address of G4Track    : 0x1fecd80
       Step Length (mm)      : 5.07556436795078e-05
       Energy Deposit (MeV)  : 0.0009454716079126124
       -----------------------------------------------------------------------
@@ -13531,7 +13531,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0958
+      Address of G4Track    : 0x1fecc78
       Step Length (mm)      : 0.00559949397242804
       Energy Deposit (MeV)  : 0.01585584332181739
       -----------------------------------------------------------------------
@@ -13571,7 +13571,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0958
+      Address of G4Track    : 0x1fecc78
       Step Length (mm)      : 0.00559949397242804
       Energy Deposit (MeV)  : 0.01585584332181739
       -----------------------------------------------------------------------
@@ -13629,7 +13629,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0850
+      Address of G4Track    : 0x1fecb70
       Step Length (mm)      : 0.01609730697026962
       Energy Deposit (MeV)  : 0.02877832837398805
       -----------------------------------------------------------------------
@@ -13669,7 +13669,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0850
+      Address of G4Track    : 0x1fecb70
       Step Length (mm)      : 0.01609730697026962
       Energy Deposit (MeV)  : 0.02877832837398805
       -----------------------------------------------------------------------
@@ -13727,7 +13727,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0260
+      Address of G4Track    : 0x1fec580
       Step Length (mm)      : 0.02134612584964566
       Energy Deposit (MeV)  : 0.03375453954159814
       -----------------------------------------------------------------------
@@ -13767,7 +13767,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0260
+      Address of G4Track    : 0x1fec580
       Step Length (mm)      : 0.02134612584964566
       Energy Deposit (MeV)  : 0.03375453954159814
       -----------------------------------------------------------------------
@@ -13825,7 +13825,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0158
+      Address of G4Track    : 0x1fec478
       Step Length (mm)      : 0.0003099013201681979
       Energy Deposit (MeV)  : 0.002980231222986685
       -----------------------------------------------------------------------
@@ -13865,7 +13865,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0158
+      Address of G4Track    : 0x1fec478
       Step Length (mm)      : 0.0003099013201681979
       Energy Deposit (MeV)  : 0.002980231222986685
       -----------------------------------------------------------------------
@@ -13923,7 +13923,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0050
+      Address of G4Track    : 0x1fec370
       Step Length (mm)      : 0.01760746657631099
       Energy Deposit (MeV)  : 0.03027354006590566
       -----------------------------------------------------------------------
@@ -13965,7 +13965,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d0050
+      Address of G4Track    : 0x1fec370
       Step Length (mm)      : 0.01760746657631099
       Energy Deposit (MeV)  : 0.03027354006590566
       -----------------------------------------------------------------------
@@ -14024,7 +14024,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 0.3661271648073864
       Energy Deposit (MeV)  : 0.2607789945476515
       -----------------------------------------------------------------------
@@ -14065,7 +14065,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) msc
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 0.3661271648073864
       Energy Deposit (MeV)  : 0.2607789945476515
       -----------------------------------------------------------------------
@@ -14130,7 +14130,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 0.07742426201223626
       Energy Deposit (MeV)  : 0.07038170153296575
       -----------------------------------------------------------------------
@@ -14172,7 +14172,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfc50
+      Address of G4Track    : 0x1febf70
       Step Length (mm)      : 0.07742426201223626
       Energy Deposit (MeV)  : 0.07038170153296575
       -----------------------------------------------------------------------
@@ -14233,7 +14233,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfe60
+      Address of G4Track    : 0x1fec180
       Step Length (mm)      : 0.02738586865058378
       Energy Deposit (MeV)  : 0.0388686781139506
       -----------------------------------------------------------------------
@@ -14275,7 +14275,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfe60
+      Address of G4Track    : 0x1fec180
       Step Length (mm)      : 0.02738586865058378
       Energy Deposit (MeV)  : 0.0388686781139506
       -----------------------------------------------------------------------
@@ -14334,7 +14334,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfd58
+      Address of G4Track    : 0x1fec078
       Step Length (mm)      : 0.001258460037160435
       Energy Deposit (MeV)  : 0.006776427940348939
       -----------------------------------------------------------------------
@@ -14374,7 +14374,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cfd58
+      Address of G4Track    : 0x1fec078
       Step Length (mm)      : 0.001258460037160435
       Energy Deposit (MeV)  : 0.006776427940348939
       -----------------------------------------------------------------------
@@ -14432,7 +14432,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cacb0
+      Address of G4Track    : 0x1fe71f0
       Step Length (mm)      : 0.002083213236852583
       Energy Deposit (MeV)  : 0.009045904414319426
       -----------------------------------------------------------------------
@@ -14472,7 +14472,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cacb0
+      Address of G4Track    : 0x1fe71f0
       Step Length (mm)      : 0.002083213236852583
       Energy Deposit (MeV)  : 0.009045904414319426
       -----------------------------------------------------------------------
@@ -14530,7 +14530,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf558
+      Address of G4Track    : 0x1feb878
       Step Length (mm)      : 0.004584176126165411
       Energy Deposit (MeV)  : 0.01415942337166217
       -----------------------------------------------------------------------
@@ -14570,7 +14570,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf558
+      Address of G4Track    : 0x1feb878
       Step Length (mm)      : 0.004584176126165411
       Energy Deposit (MeV)  : 0.01415942337166217
       -----------------------------------------------------------------------
@@ -14628,7 +14628,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 0.0008695409263982064
       Energy Deposit (MeV)  : 0.005472914214410762
       -----------------------------------------------------------------------
@@ -14668,7 +14668,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf450
+      Address of G4Track    : 0x1feb770
       Step Length (mm)      : 0.0008695409263982064
       Energy Deposit (MeV)  : 0.005472914214410762
       -----------------------------------------------------------------------
@@ -14726,7 +14726,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 0.0004400872628054007
       Energy Deposit (MeV)  : 0.003672697490936502
       -----------------------------------------------------------------------
@@ -14766,7 +14766,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf260
+      Address of G4Track    : 0x1feb580
       Step Length (mm)      : 0.0004400872628054007
       Energy Deposit (MeV)  : 0.003672697490936502
       -----------------------------------------------------------------------
@@ -14824,7 +14824,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf158
+      Address of G4Track    : 0x1feb478
       Step Length (mm)      : 0.001428629426578953
       Energy Deposit (MeV)  : 0.007289031862839704
       -----------------------------------------------------------------------
@@ -14864,7 +14864,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf158
+      Address of G4Track    : 0x1feb478
       Step Length (mm)      : 0.001428629426578953
       Energy Deposit (MeV)  : 0.007289031862839704
       -----------------------------------------------------------------------
@@ -14922,7 +14922,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0.002922061279155678
       Energy Deposit (MeV)  : 0.01096845861484499
       -----------------------------------------------------------------------
@@ -14962,7 +14962,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cf050
+      Address of G4Track    : 0x1feb370
       Step Length (mm)      : 0.002922061279155678
       Energy Deposit (MeV)  : 0.01096845861484499
       -----------------------------------------------------------------------
@@ -15020,7 +15020,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdd50
+      Address of G4Track    : 0x1fea080
       Step Length (mm)      : 0.0007601945268850539
       Energy Deposit (MeV)  : 0.005061644088416528
       -----------------------------------------------------------------------
@@ -15060,7 +15060,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdd50
+      Address of G4Track    : 0x1fea080
       Step Length (mm)      : 0.0007601945268850539
       Energy Deposit (MeV)  : 0.005061644088416528
       -----------------------------------------------------------------------
@@ -15118,7 +15118,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdc48
+      Address of G4Track    : 0x1fe9f78
       Step Length (mm)      : 0.02409038589263365
       Energy Deposit (MeV)  : 0.03614550931122354
       -----------------------------------------------------------------------
@@ -15158,7 +15158,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdc48
+      Address of G4Track    : 0x1fe9f78
       Step Length (mm)      : 0.02409038589263365
       Energy Deposit (MeV)  : 0.03614550931122354
       -----------------------------------------------------------------------
@@ -15216,7 +15216,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 0.2308016809580233
       Energy Deposit (MeV)  : 0.1337990085375551
       -----------------------------------------------------------------------
@@ -15258,7 +15258,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cdb40
+      Address of G4Track    : 0x1fe9e70
       Step Length (mm)      : 0.2308016809580233
       Energy Deposit (MeV)  : 0.1337990085375551
       -----------------------------------------------------------------------
@@ -15324,7 +15324,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 0.01042011376766396
       Energy Deposit (MeV)  : 0.02251468383923549
       -----------------------------------------------------------------------
@@ -15366,7 +15366,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12caec0
+      Address of G4Track    : 0x1fe7400
       Step Length (mm)      : 0.01042011376766396
       Energy Deposit (MeV)  : 0.02251468383923549
       -----------------------------------------------------------------------
@@ -15425,7 +15425,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       4) eBrem
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 0.5046428512974721
       Energy Deposit (MeV)  : 0.2166814282002562
       -----------------------------------------------------------------------
@@ -15467,7 +15467,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) eBrem (Forced)
 
     ++G4Step Information 
-      Address of G4Track    : 0x12cadb8
+      Address of G4Track    : 0x1fe72f8
       Step Length (mm)      : 0.5046428512974721
       Energy Deposit (MeV)  : 0.2166814282002562
       -----------------------------------------------------------------------
@@ -15534,7 +15534,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3510
+      Address of G4Track    : 0x1fef7a0
       Step Length (mm)      : 5434.199785731949
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -15582,7 +15582,7 @@ Momentum Change: (-0.4216002265189575,-0.9047217906474468,0.0610878918186003)
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3510
+      Address of G4Track    : 0x1fef7a0
       Step Length (mm)      : 5434.199785731949
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -15624,7 +15624,7 @@ Momentum Change: (-0.4216002265189575,-0.9047217906474468,0.0610878918186003)
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3510
+      Address of G4Track    : 0x1fef7a0
       Step Length (mm)      : 3551.383667899416
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -15672,7 +15672,7 @@ Momentum Change: (-0.4216002265189575,-0.9047217906474468,0.0610878918186003)
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3510
+      Address of G4Track    : 0x1fef7a0
       Step Length (mm)      : 3551.383667899416
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -15714,7 +15714,7 @@ Momentum Change: (-0.4216002265189575,-0.9047217906474468,0.0610878918186003)
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3510
+      Address of G4Track    : 0x1fef7a0
       Step Length (mm)      : 6134.611310806154
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -15753,7 +15753,7 @@ Momentum Change: (-0.4216002265189575,-0.9047217906474468,0.0610878918186003)
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3510
+      Address of G4Track    : 0x1fef7a0
       Step Length (mm)      : 6134.611310806154
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -15802,7 +15802,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3408
+      Address of G4Track    : 0x1fef698
       Step Length (mm)      : 6148.255975908442
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -15850,7 +15850,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3408
+      Address of G4Track    : 0x1fef698
       Step Length (mm)      : 6148.255975908442
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -15892,7 +15892,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3408
+      Address of G4Track    : 0x1fef698
       Step Length (mm)      : 7896.147041726376
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -15931,7 +15931,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3408
+      Address of G4Track    : 0x1fef698
       Step Length (mm)      : 7896.147041726376
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -15980,7 +15980,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3300
+      Address of G4Track    : 0x1fef590
       Step Length (mm)      : 5411.88416797951
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16028,7 +16028,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3300
+      Address of G4Track    : 0x1fef590
       Step Length (mm)      : 5411.88416797951
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16070,7 +16070,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3300
+      Address of G4Track    : 0x1fef590
       Step Length (mm)      : 5829.641446073177
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16109,7 +16109,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3300
+      Address of G4Track    : 0x1fef590
       Step Length (mm)      : 5829.641446073177
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16158,7 +16158,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3110
+      Address of G4Track    : 0x1fef3a0
       Step Length (mm)      : 6108.94777411677
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16206,7 +16206,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3110
+      Address of G4Track    : 0x1fef3a0
       Step Length (mm)      : 6108.94777411677
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16248,7 +16248,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3110
+      Address of G4Track    : 0x1fef3a0
       Step Length (mm)      : 7986.625017588297
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16287,7 +16287,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3110
+      Address of G4Track    : 0x1fef3a0
       Step Length (mm)      : 7986.625017588297
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16336,7 +16336,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3008
+      Address of G4Track    : 0x1fef298
       Step Length (mm)      : 5544.968714275114
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16384,7 +16384,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3008
+      Address of G4Track    : 0x1fef298
       Step Length (mm)      : 5544.968714275114
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16426,7 +16426,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3008
+      Address of G4Track    : 0x1fef298
       Step Length (mm)      : 6173.286362465453
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16465,7 +16465,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d3008
+      Address of G4Track    : 0x1fef298
       Step Length (mm)      : 6173.286362465453
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16514,7 +16514,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d2f00
+      Address of G4Track    : 0x1fef190
       Step Length (mm)      : 5574.15905721382
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16562,7 +16562,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d2f00
+      Address of G4Track    : 0x1fef190
       Step Length (mm)      : 5574.15905721382
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16604,7 +16604,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d2f00
+      Address of G4Track    : 0x1fef190
       Step Length (mm)      : 6231.849876932391
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16643,7 +16643,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d2f00
+      Address of G4Track    : 0x1fef190
       Step Length (mm)      : 6231.849876932391
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16692,7 +16692,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d2910
+      Address of G4Track    : 0x1feeba0
       Step Length (mm)      : 5462.467306357876
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16740,7 +16740,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d2910
+      Address of G4Track    : 0x1feeba0
       Step Length (mm)      : 5462.467306357876
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16782,7 +16782,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d2910
+      Address of G4Track    : 0x1feeba0
       Step Length (mm)      : 5896.105717910986
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16821,7 +16821,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d2910
+      Address of G4Track    : 0x1feeba0
       Step Length (mm)      : 5896.105717910986
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16870,7 +16870,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d2808
+      Address of G4Track    : 0x1feea98
       Step Length (mm)      : 6822.909330178405
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16918,7 +16918,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       3) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d2808
+      Address of G4Track    : 0x1feea98
       Step Length (mm)      : 6822.909330178405
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16960,7 +16960,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d2808
+      Address of G4Track    : 0x1feea98
       Step Length (mm)      : 5883.298538865875
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -16999,7 +16999,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       2) OpBoundary
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d2808
+      Address of G4Track    : 0x1feea98
       Step Length (mm)      : 5883.298538865875
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -17048,7 +17048,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
       1) Transportation
 
     ++G4Step Information 
-      Address of G4Track    : 0x12d2700
+      Address of G4Track    : 0x1fee990
       Step Length (mm)      : 5088.886210683378
       Energy Deposit (MeV)  : 0
       -----------------------------------------------------------------------
@@ -17062,7 +17062,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
          Proper Time (ns)    :                    0                   0
          Momentum Direct - x :    0.976488030621295   0.976488030621295
          Momentum Direct - y :   0.1938959627293192  0.1938959627293192
-         M
+         Mo
 ============================================================================================
 ================= lines above cut to keep file within limits ===============================
 ============================================================================================
@@ -17084,7 +17084,7 @@ Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolu
     1 -2.14e+03 1.01e+03 1.19e+03  4.07e-06        0 2.82e+03  2.82e+03        Tank OpAbsorption
 Number of Scintillation photons produced in this event : 66
 Number of Cerenkov photons produced in this event : 15
-number of event = 1 User=0.1s Real=0.17s Sys=0.03s
+number of event = 1 User=0.06s Real=0.09s Sys=0.02s
 #
 #/process/inactivate Scintillation
 #/OpNovice/phys/verbose 0
diff --git a/examples/extended/optical/wls/wls.out b/examples/extended/optical/wls/wls.out
index 200554987f2..bd019e7a0e3 100644
--- a/examples/extended/optical/wls/wls.out
+++ b/examples/extended/optical/wls/wls.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -415,21 +415,21 @@ CoulombScat:   for  mu-, integral: 1     SubType= 1  BuildTable= 1
       180 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
       ===== EM models for the G4Region  DefaultRegionForTheWorld ======
   eCoulombScattering :  Emin=        0 eV    Emax=       10 TeV
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
 
 msc:   for pi+    SubType= 10
       RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
diff --git a/examples/extended/parameterisations/Par01/examplePar01.out b/examples/extended/parameterisations/Par01/examplePar01.out
index 38df468b80b..d7070dfb0b2 100644
--- a/examples/extended/parameterisations/Par01/examplePar01.out
+++ b/examples/extended/parameterisations/Par01/examplePar01.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/extended/parameterisations/gflash/test.out b/examples/extended/parameterisations/gflash/test.out
index 8e9c869c216..16f2c29fdec 100644
--- a/examples/extended/parameterisations/gflash/test.out
+++ b/examples/extended/parameterisations/gflash/test.out
@@ -9,7 +9,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -377,7 +377,7 @@ Internal GetUserElapsed Time: 0.02
 ******************************************
 Internal Real Elapsed Time is: 0.02
 Internal System Elapsed Time: 0
-Internal GetUserElapsed Time: 0.02
+Internal GetUserElapsed Time: 0.01
 ******************************************
  ------ ExGflashEventAction::End of event nr. 1  -----
   11903 hits are stored in ExGflashHitsCollection 
@@ -389,7 +389,7 @@ Internal GetUserElapsed Time: 0.02
 
 
 ******************************************
-Internal Real Elapsed Time is: 0.02
+Internal Real Elapsed Time is: 0.01
 Internal System Elapsed Time: 0
 Internal GetUserElapsed Time: 0.02
 ******************************************
@@ -403,9 +403,9 @@ Internal GetUserElapsed Time: 0.02
 
 
 ******************************************
-Internal Real Elapsed Time is: 0.02
+Internal Real Elapsed Time is: 0.01
 Internal System Elapsed Time: 0
-Internal GetUserElapsed Time: 0.02
+Internal GetUserElapsed Time: 0.01
 ******************************************
  ------ ExGflashEventAction::End of event nr. 3  -----
   11940 hits are stored in ExGflashHitsCollection 
@@ -417,9 +417,9 @@ Internal GetUserElapsed Time: 0.02
 
 
 ******************************************
-Internal Real Elapsed Time is: 0.02
+Internal Real Elapsed Time is: 0.01
 Internal System Elapsed Time: 0
-Internal GetUserElapsed Time: 0.02
+Internal GetUserElapsed Time: 0.01
 ******************************************
  ------ ExGflashEventAction::End of event nr. 4  -----
   11968 hits are stored in ExGflashHitsCollection 
@@ -433,7 +433,7 @@ Internal GetUserElapsed Time: 0.02
 ******************************************
 Internal Real Elapsed Time is: 0.02
 Internal System Elapsed Time: 0
-Internal GetUserElapsed Time: 0.02
+Internal GetUserElapsed Time: 0.01
 ******************************************
  ------ ExGflashEventAction::End of event nr. 5  -----
   11847 hits are stored in ExGflashHitsCollection 
@@ -445,9 +445,9 @@ Internal GetUserElapsed Time: 0.02
 
 
 ******************************************
-Internal Real Elapsed Time is: 0.02
+Internal Real Elapsed Time is: 0.01
 Internal System Elapsed Time: 0
-Internal GetUserElapsed Time: 0.02
+Internal GetUserElapsed Time: 0.01
 ******************************************
  ------ ExGflashEventAction::End of event nr. 6  -----
   11946 hits are stored in ExGflashHitsCollection 
@@ -459,9 +459,9 @@ Internal GetUserElapsed Time: 0.02
 
 
 ******************************************
-Internal Real Elapsed Time is: 0.02
+Internal Real Elapsed Time is: 0.01
 Internal System Elapsed Time: 0
-Internal GetUserElapsed Time: 0.02
+Internal GetUserElapsed Time: 0.01
 ******************************************
  ------ ExGflashEventAction::End of event nr. 7  -----
   11973 hits are stored in ExGflashHitsCollection 
@@ -473,7 +473,7 @@ Internal GetUserElapsed Time: 0.02
 
 
 ******************************************
-Internal Real Elapsed Time is: 0.01
+Internal Real Elapsed Time is: 0.02
 Internal System Elapsed Time: 0
 Internal GetUserElapsed Time: 0.01
 ******************************************
@@ -500,10 +500,10 @@ WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
 number of event = 10
 Graphics systems deleted.
 Visualization Manager deleting...
-Internal Real Elapsed Time /event is: 0.02
+Internal Real Elapsed Time /event is: 0.0155556
 
 ******************************************
-Total Real Elapsed Time is: 0.94
+Total Real Elapsed Time is: 0.82
 Total System Elapsed Time: 0.01
-Total GetUserElapsed Time: 0.92
+Total GetUserElapsed Time: 0.76
 ******************************************
diff --git a/examples/extended/persistency/P03/batch.out b/examples/extended/persistency/P03/batch.out
index 26446206e17..3688dc05632 100644
--- a/examples/extended/persistency/P03/batch.out
+++ b/examples/extended/persistency/P03/batch.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -173,7 +173,7 @@ Units table cleared.
 Total navigation history collections cleaned: 7
 ================== Deleting memory pools ===================
 Number of memory pools allocated: 12 of which, static: 0
-Dynamic pools deleted: 12 / Total memory freed: 0.016 Mb
+Dynamic pools deleted: 12 / Total memory freed: 0.015 Mb
 ============================================================
 G4Allocator objects are deleted.
 UImanager deleted.
diff --git a/examples/extended/persistency/gdml/G01/g01.out b/examples/extended/persistency/gdml/G01/g01.out
index c929e653a92..f44b9160eab 100644
--- a/examples/extended/persistency/gdml/G01/g01.out
+++ b/examples/extended/persistency/gdml/G01/g01.out
@@ -1,13 +1,13 @@
 
 Usage: load_gdml <intput_gdml_file:mandatory> <output_gdml_file:optional>
 
-G4GDML: Reading '/ec/G4-builds/release/slc6-gcc49-RelWithDebInfo/geant4-10-01-patch-01_cand-02/examples/extended/persistency/gdml/G01/solids.gdml'...
+G4GDML: Reading '/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/geant4-10-01-patches_branch/examples/extended/persistency/gdml/G01/solids.gdml'...
 G4GDML: Reading definitions...
 G4GDML: Reading materials...
 G4GDML: Reading solids...
 G4GDML: Reading structure...
 G4GDML: Reading setup...
-G4GDML: Reading '/ec/G4-builds/release/slc6-gcc49-RelWithDebInfo/geant4-10-01-patch-01_cand-02/examples/extended/persistency/gdml/G01/solids.gdml' done!
+G4GDML: Reading '/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/geant4-10-01-patches_branch/examples/extended/persistency/gdml/G01/solids.gdml' done!
 Stripping off GDML names of materials, solids and volumes ...
 
         ############################################
@@ -15,7 +15,7 @@ Stripping off GDML names of materials, solids and volumes ...
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -1080,7 +1080,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.01s Real=0.02s Sys=0s
+  User=0.01s Real=0s Sys=0s
 /gun/direction 0 0 -1
 /run/beamOn 20
 
@@ -1447,7 +1447,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.01s Real=0.01s Sys=0s
+  User=0.01s Real=0s Sys=0s
 /tracking/verbose 0
 /gun/direction 0.3 0.2 1
 /run/beamOn 20
@@ -1487,7 +1487,7 @@ Index : 1     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 20
-  User=0.01s Real=0s Sys=0s
+  User=0s Real=0.01s Sys=0s
 /gun/direction 0.3 -0.2 1
 /run/beamOn 20
 
@@ -1526,7 +1526,7 @@ Index : 1     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 20
-  User=0s Real=0.01s Sys=0s
+  User=0s Real=0s Sys=0s
 /gun/direction -0.3 0.2 0.6
 /run/beamOn 20
 
@@ -1565,7 +1565,7 @@ Index : 1     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 20
-  User=0.01s Real=0s Sys=0s
+  User=0s Real=0s Sys=0s
 G4 kernel has come to Quit state.
 UserDetectorConstruction deleted.
 UserPhysicsList deleted.
diff --git a/examples/extended/persistency/gdml/G04/g04.out b/examples/extended/persistency/gdml/G04/g04.out
index 892e464d3bb..ae39f4e19c2 100644
--- a/examples/extended/persistency/gdml/G04/g04.out
+++ b/examples/extended/persistency/gdml/G04/g04.out
@@ -1,13 +1,13 @@
 
 Usage: gdml_det <intput_gdml_file:mandatory>
 
-G4GDML: Reading '/ec/G4-builds/release/slc6-gcc49-RelWithDebInfo/geant4-10-01-patch-01_cand-02/examples/extended/persistency/gdml/G04/auxiliary.gdml'...
+G4GDML: Reading '/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/geant4-10-01-patches_branch/examples/extended/persistency/gdml/G04/auxiliary.gdml'...
 G4GDML: Reading definitions...
 G4GDML: Reading materials...
 G4GDML: Reading solids...
 G4GDML: Reading structure...
 G4GDML: Reading setup...
-G4GDML: Reading '/ec/G4-builds/release/slc6-gcc49-RelWithDebInfo/geant4-10-01-patch-01_cand-02/examples/extended/persistency/gdml/G04/auxiliary.gdml' done!
+G4GDML: Reading '/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/geant4-10-01-patches_branch/examples/extended/persistency/gdml/G04/auxiliary.gdml' done!
 Stripping off GDML names of materials, solids and volumes ...
 
         ############################################
@@ -15,7 +15,7 @@ Stripping off GDML names of materials, solids and volumes ...
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -1005,7 +1005,7 @@ Processing hits ....
  Run terminated.
 Run Summary
   Number of events processed : 20
-  User=0s Real=0.01s Sys=0s
+  User=0s Real=0s Sys=0s
 /gun/direction 0 0 -1
 /run/beamOn 20
 
@@ -1257,7 +1257,7 @@ Processing hits ....
  Run terminated.
 Run Summary
   Number of events processed : 20
-  User=0s Real=0s Sys=0s
+  User=0s Real=0.01s Sys=0s
 /tracking/verbose 0
 /gun/direction 0.3 0.2 1
 /run/beamOn 20
@@ -1362,7 +1362,7 @@ Processing hits ....
  Run terminated.
 Run Summary
   Number of events processed : 20
-  User=0.01s Real=0s Sys=0s
+  User=0s Real=0s Sys=0s
 /gun/direction -0.3 0.2 0.6
 /run/beamOn 20
 
@@ -1428,7 +1428,7 @@ Units table cleared.
 Total navigation history collections cleaned: 8
 ================== Deleting memory pools ===================
 Number of memory pools allocated: 10 of which, static: 0
-Dynamic pools deleted: 10 / Total memory freed: 0.011 Mb
+Dynamic pools deleted: 10 / Total memory freed: 0.012 Mb
 ============================================================
 G4Allocator objects are deleted.
 UImanager deleted.
diff --git a/examples/extended/polarisation/Pol01/pol01.out b/examples/extended/polarisation/Pol01/pol01.out
index d6244df1f34..b202f974913 100644
--- a/examples/extended/polarisation/Pol01/pol01.out
+++ b/examples/extended/polarisation/Pol01/pol01.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -157,7 +157,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
  Run terminated.
 Run Summary
   Number of events processed : 10000
-  User=0.33s Real=0.33s Sys=0s
+  User=0.17s Real=0.36s Sys=0s
 
  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/rdecay01/rdecay01.out b/examples/extended/radioactivedecay/rdecay01/rdecay01.out
index 4faed084372..def81770020 100644
--- a/examples/extended/radioactivedecay/rdecay01/rdecay01.out
+++ b/examples/extended/radioactivedecay/rdecay01/rdecay01.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -125,7 +125,7 @@ Step#      X         Y         Z        KineE    dEStep   StepLeng  TrakLeng
  Run terminated.
 Run Summary
   Number of events processed : 1
-  User=0s Real=0s Sys=0s
+  User=0s Real=0.01s Sys=0s
 
  ======================== run summary ======================
  The run was 1 Co60 of 0 eV 
@@ -186,7 +186,7 @@ Index : 0     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 100000
-  User=4.28s Real=4.28s Sys=0s
+  User=3.06s Real=3.19s Sys=0s
 
  ======================== run summary ======================
  The run was 100000 Co60 of 0 eV 
@@ -247,7 +247,7 @@ Index : 0     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 100000
-  User=9.88s Real=9.89s Sys=0s
+  User=6.56s Real=6.66s Sys=0s
 
  ======================== run summary ======================
  The run was 100000 Co60 of 0 eV 
diff --git a/examples/extended/radioactivedecay/rdecay02/rdecay02.out b/examples/extended/radioactivedecay/rdecay02/rdecay02.out
index 674fd61214b..c4e47bc4058 100644
--- a/examples/extended/radioactivedecay/rdecay02/rdecay02.out
+++ b/examples/extended/radioactivedecay/rdecay02/rdecay02.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -99,11 +99,11 @@ Available colours:
 world cuts are set
 Target cuts are set
 Detector cuts are set
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
-NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /data/G4-builds/release/slc6-gcc49-RelWithDebInfo/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
+NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
+NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-01-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
 
 ====================================================================
                   HADRONIC PROCESSES SUMMARY (verbose level 1)
diff --git a/examples/extended/runAndEvent/RE01/sample.out b/examples/extended/runAndEvent/RE01/sample.out
index 39ab8fe62a7..dc574c37ab7 100644
--- a/examples/extended/runAndEvent/RE01/sample.out
+++ b/examples/extended/runAndEvent/RE01/sample.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -938,2063 +938,1825 @@ Tracks in tracking region have been processed. -- Stage 0 over.
 +++++++++++ Stage 180
 +++++++++++ Stage 181
 +++++++++++ Stage 182
++++++++++++ Stage 183
++++++++++++ Stage 184
++++++++++++ Stage 185
++++++++++++ Stage 186
++++++++++++ Stage 187
++++++++++++ Stage 188
++++++++++++ Stage 189
++++++++++++ Stage 190
 >>> Summary of Event 0
 
 Tracker hits --------------------------------------------------------------
-2052 hits are stored in RE01TrackerHitsCollection.
+1806 hits are stored in RE01TrackerHitsCollection.
 List of hits in tracker
-TrackID 220   Position (232.472,-91.961,249.118)       : 328.378 [keV]
-TrackID 220   Position (278.938,-110.424,299.032)       : 381.079 [keV]
-TrackID 220   Position (325.416,-128.859,349.082)       : 375.912 [keV]
-TrackID 220   Position (371.904,-147.268,399.064)       : 782.004 [keV]
-TrackID 220   Position (418.363,-165.748,448.958)       : 815.185 [keV]
-TrackID 226   Position (296.408,340.693,-271.531)       : 428.58 [keV]
-TrackID 226   Position (297.139,341.594,-272.134)       : 732.851 [keV]
-TrackID 219   Position (51.7691,244.581,-115.799)       : 2493.34 [keV]
-TrackID 219   Position (62.5195,293.413,-140.116)       : 2363.64 [keV]
-TrackID 219   Position (72.1516,342.482,-165.75)       : 2308.96 [keV]
-TrackID 219   Position (80.5294,391.81,-191.76)       : 2325.89 [keV]
-TrackID 219   Position (89.2744,441.056,-217.622)       : 2419.49 [keV]
-TrackID 1780   Position (215.214,-127.213,-9.28807)       : 227.855 [keV]
-TrackID 1780   Position (215.532,-127.401,-9.30175)       : 715 [keV]
-TrackID 1780   Position (217.093,-128.322,-9.36832)       : 1513.95 [keV]
-TrackID 1780   Position (258.289,-152.6,-11.2282)       : 1975.89 [keV]
-TrackID 1780   Position (301.379,-177.963,-13.1972)       : 1841.52 [keV]
-TrackID 1780   Position (344.46,-203.34,-15.257)       : 1719.57 [keV]
-TrackID 1780   Position (387.622,-228.581,-17.4363)       : 1795.04 [keV]
-TrackID 1785   Position (217.093,-128.322,-9.36832)       : 282.373 [keV]
-TrackID 1785   Position (217.699,-128.6,-9.7488)       : 269.83 [keV]
-TrackID 1785   Position (218.184,-128.545,-10.1194)       : 136.909 [keV]
-TrackID 1785   Position (218.489,-128.957,-10.1005)       : 124.144 [keV]
-TrackID 1785   Position (218.766,-128.984,-10.3113)       : 186.95 [keV]
-TrackID 1785   Position (218.797,-128.804,-10.5464)       : 143.05 [keV]
-TrackID 1785   Position (218.966,-128.663,-10.7829)       : 460.297 [keV]
-TrackID 1784   Position (215.532,-127.401,-9.30175)       : 41.7533 [keV]
-TrackID 1784   Position (215.6,-127.375,-9.37288)       : 30.0207 [keV]
-TrackID 1784   Position (215.661,-127.355,-9.47646)       : 44.6243 [keV]
-TrackID 1784   Position (215.734,-127.432,-9.54416)       : 312.805 [keV]
-TrackID 1443   Position (-132.017,212.301,6.88522)       : 1692.1 [keV]
-TrackID 1443   Position (-158.127,254.943,7.79374)       : 2117.42 [keV]
-TrackID 1443   Position (-183.072,298.303,8.03399)       : 2410.39 [keV]
-TrackID 1443   Position (-208.599,341.301,8.84104)       : 1714.88 [keV]
-TrackID 1443   Position (-210.386,344.256,8.89938)       : 575.127 [keV]
-TrackID 1443   Position (-234.651,383.977,9.24749)       : 199.54 [keV]
-TrackID 1443   Position (-234.956,384.479,9.25231)       : 1070.19 [keV]
-TrackID 1799   Position (-234.956,384.479,9.25231)       : 34.594 [keV]
-TrackID 1799   Position (-235.015,384.566,9.1757)       : 65.7661 [keV]
-TrackID 1799   Position (-235.127,384.669,9.04833)       : 94.3596 [keV]
-TrackID 1799   Position (-235.099,384.851,8.88861)       : 92.2875 [keV]
-TrackID 1799   Position (-234.817,384.838,8.95597)       : 110.66 [keV]
-TrackID 1799   Position (-234.616,384.698,8.97067)       : 69.1265 [keV]
-TrackID 1799   Position (-234.465,384.671,9.02546)       : 39.0496 [keV]
-TrackID 1799   Position (-234.373,384.572,8.9737)       : 41.5423 [keV]
-TrackID 1799   Position (-234.295,384.504,8.99347)       : 45.6536 [keV]
-TrackID 1799   Position (-234.234,384.426,9.02671)       : 26.0583 [keV]
-TrackID 1799   Position (-234.216,384.319,9.04576)       : 43.8927 [keV]
-TrackID 1799   Position (-218.241,341.168,70.0099)       : 12.7477 [keV]
-TrackID 1799   Position (-218.22,341.164,70.0061)       : 7.97547 [keV]
-TrackID 1799   Position (-218.197,341.162,70.0053)       : 6.17236 [keV]
-TrackID 1799   Position (-218.175,341.166,70.0119)       : 16.3704 [keV]
-TrackID 1799   Position (-218.156,341.175,70.0208)       : 7.45635 [keV]
-TrackID 1799   Position (-218.14,341.192,70.0241)       : 10.2823 [keV]
-TrackID 1799   Position (-218.126,341.209,70.0315)       : 8.17544 [keV]
-TrackID 1799   Position (-218.116,341.227,70.0422)       : 9.41841 [keV]
-TrackID 1799   Position (-218.103,341.246,70.043)       : 8.10662 [keV]
-TrackID 1799   Position (-218.087,341.262,70.0449)       : 1.9793 [keV]
-TrackID 1799   Position (-105.405,391.043,-1.2062)       : 5.44116 [keV]
-TrackID 1799   Position (-105.398,391.028,-1.20765)       : 13.4669 [keV]
-TrackID 1799   Position (-105.392,391.018,-1.21301)       : 5.4862 [keV]
-TrackID 1799   Position (-105.385,391.009,-1.21495)       : 3.957 [keV]
-TrackID 1799   Position (-105.38,390.998,-1.21866)       : 2.23832 [keV]
-TrackID 1799   Position (-105.37,390.987,-1.21546)       : 8.00677 [keV]
-TrackID 1799   Position (-105.358,390.975,-1.2107)       : 10.0609 [keV]
-TrackID 1799   Position (-105.353,390.978,-1.18914)       : 9.85744 [keV]
-TrackID 1799   Position (-105.347,390.983,-1.16848)       : 8.6394 [keV]
-TrackID 1799   Position (-105.34,390.998,-1.15659)       : 24.8108 [keV]
-TrackID 1799   Position (-105.345,391.011,-1.14573)       : 10.6223 [keV]
-TrackID 1799   Position (-105.356,391.019,-1.14442)       : 6.23035 [keV]
-TrackID 1799   Position (-105.361,391.026,-1.13662)       : 8.82966 [keV]
-TrackID 1799   Position (-105.364,391.033,-1.12736)       : 4.60011 [keV]
-TrackID 1799   Position (-105.366,391.045,-1.12393)       : 3.37496 [keV]
-TrackID 1799   Position (-117.455,434.401,-5.47298)       : 0.875396 [keV]
-TrackID 1799   Position (-117.455,434.403,-5.47478)       : 0.658594 [keV]
-TrackID 1799   Position (-117.455,434.404,-5.4766)       : 2.04587 [keV]
-TrackID 1799   Position (-117.456,434.405,-5.47819)       : 0.407563 [keV]
-TrackID 1799   Position (-117.458,434.406,-5.4799)       : 1.37469 [keV]
-TrackID 1799   Position (-117.459,434.407,-5.48174)       : 2.98267 [keV]
-TrackID 1799   Position (-117.46,434.408,-5.48358)       : 1.26077 [keV]
-TrackID 1799   Position (-117.462,434.408,-5.48547)       : 1.00453 [keV]
-TrackID 1799   Position (-117.463,434.407,-5.48737)       : 3.52232 [keV]
-TrackID 1799   Position (-117.464,434.406,-5.48911)       : 2.80278 [keV]
-TrackID 1799   Position (-117.465,434.405,-5.49094)       : 1.25919 [keV]
-TrackID 1799   Position (-117.466,434.403,-5.49212)       : 1.55291 [keV]
-TrackID 1799   Position (-117.467,434.402,-5.49325)       : 1.58995 [keV]
-TrackID 1799   Position (-117.468,434.403,-5.49547)       : 22.4218 [keV]
-TrackID 1799   Position (-117.469,434.403,-5.49739)       : 3.93089 [keV]
-TrackID 1799   Position (-117.471,434.404,-5.49832)       : 1.92671 [keV]
-TrackID 1799   Position (-117.472,434.405,-5.50006)       : 1.97996 [keV]
-TrackID 1799   Position (-117.474,434.404,-5.50089)       : 1.42406 [keV]
-TrackID 1799   Position (-117.476,434.404,-5.50005)       : 1.60609 [keV]
-TrackID 1799   Position (-117.476,434.405,-5.49805)       : 3.75153 [keV]
-TrackID 1799   Position (-117.476,434.407,-5.49718)       : 26.2695 [keV]
-TrackID 1796   Position (-210.386,344.256,8.89938)       : 107.675 [keV]
-TrackID 1796   Position (-210.368,344.61,8.87574)       : 97.8186 [keV]
-TrackID 1796   Position (-210.108,344.837,9.01328)       : 118.359 [keV]
-TrackID 1796   Position (-209.836,344.815,9.23612)       : 112.052 [keV]
-TrackID 1796   Position (-209.566,344.76,9.52937)       : 134.363 [keV]
-TrackID 1796   Position (-209.152,344.735,9.72648)       : 260.234 [keV]
-TrackID 1796   Position (-208.735,345.016,9.83551)       : 173.622 [keV]
-TrackID 1796   Position (-208.265,345.076,9.63387)       : 161.933 [keV]
-TrackID 1796   Position (-207.839,345.376,9.80057)       : 494.995 [keV]
-TrackID 1796   Position (-207.774,345.765,10.2361)       : 240.777 [keV]
-TrackID 1814   Position (-241.742,384.858,5.63616)       : 224.83 [keV]
-TrackID 1815   Position (254.159,-166.943,-116.005)       : 277.645 [keV]
-TrackID 1815   Position (254.859,-167.42,-116.33)       : 17.4542 [keV]
-TrackID 1815   Position (292.191,-192.678,-133.85)       : 1684.86 [keV]
-TrackID 1815   Position (334.125,-219.911,-149.503)       : 568.883 [keV]
-TrackID 1815   Position (335.31,-220.688,-149.936)       : 1380.51 [keV]
-TrackID 1815   Position (375.936,-247.33,-168.913)       : 1756.59 [keV]
-TrackID 1816   Position (254.159,-166.943,-116.005)       : 308.882 [keV]
-TrackID 1816   Position (294.127,-189.708,-136.784)       : 429.286 [keV]
-TrackID 1816   Position (295.162,-190.225,-137.281)       : 676.444 [keV]
-TrackID 1816   Position (296.4,-191.197,-138.043)       : 138.296 [keV]
-TrackID 1816   Position (296.765,-191.377,-138.218)       : 668.682 [keV]
-TrackID 1816   Position (298.368,-192.22,-139.138)       : 22.7867 [keV]
-TrackID 1816   Position (334.197,-219.801,-165.718)       : 2148.45 [keV]
-TrackID 1816   Position (367.362,-259.895,-187.643)       : 677.361 [keV]
-TrackID 1816   Position (369.037,-261.504,-188.171)       : 1063.88 [keV]
-TrackID 1806   Position (-236.443,386.998,9.31006)       : 4099.52 [keV]
-TrackID 1801   Position (-236.443,386.998,9.31006)       : 2797.55 [keV]
-TrackID 1801   Position (-236.334,386.888,9.74921)       : 2839.77 [keV]
-TrackID 1801   Position (-236.261,386.794,10.1015)       : 2667.01 [keV]
-TrackID 1801   Position (-236.209,386.72,10.3766)       : 2775.13 [keV]
-TrackID 1801   Position (-236.169,386.657,10.5862)       : 3055.77 [keV]
-TrackID 1801   Position (-236.144,386.628,10.7332)       : 1431.32 [keV]
-TrackID 1800   Position (-236.443,386.998,9.31006)       : 8457.65 [keV]
-TrackID 1800   Position (-237.799,384.547,26.2173)       : 8049.96 [keV]
-TrackID 1800   Position (-239.993,381.972,39.7378)       : 1447.98 [keV]
-TrackID 1800   Position (-240.446,381.463,42.3711)       : 2733.08 [keV]
-TrackID 1826   Position (-240.446,381.463,42.3711)       : 67.4072 [keV]
-TrackID 1826   Position (-240.431,381.376,42.5894)       : 108.609 [keV]
-TrackID 1826   Position (-240.377,381.226,42.754)       : 368.663 [keV]
-TrackID 1826   Position (-240.491,381.25,42.9166)       : 247.378 [keV]
-TrackID 1823   Position (298.368,-192.22,-139.138)       : 4.64798 [keV]
-TrackID 1823   Position (298.383,-192.217,-139.144)       : 20.52 [keV]
-TrackID 1823   Position (298.44,-192.203,-139.163)       : 5.53169 [keV]
-TrackID 1823   Position (352.053,-189.892,-169.251)       : 21.8221 [keV]
-TrackID 1823   Position (352.1,-189.899,-169.281)       : 23.6652 [keV]
-TrackID 1823   Position (352.146,-189.912,-169.31)       : 18.3646 [keV]
-TrackID 1823   Position (352.192,-189.941,-169.298)       : 14.2304 [keV]
-TrackID 1823   Position (352.233,-189.977,-169.285)       : 17.1189 [keV]
-TrackID 1823   Position (352.271,-190.022,-169.283)       : 28.8579 [keV]
-TrackID 1823   Position (352.33,-190.054,-169.316)       : 28.2084 [keV]
-TrackID 1823   Position (352.417,-190.089,-169.319)       : 34.6664 [keV]
-TrackID 1823   Position (352.514,-190.118,-169.39)       : 43.2419 [keV]
-TrackID 1823   Position (352.589,-190.201,-169.49)       : 73.9588 [keV]
-TrackID 1823   Position (352.657,-190.309,-169.602)       : 370.52 [keV]
-TrackID 1822   Position (296.765,-191.377,-138.218)       : 168.694 [keV]
-TrackID 1822   Position (297.134,-191.803,-138.079)       : 211.711 [keV]
-TrackID 1822   Position (297.369,-192.312,-138.232)       : 176.902 [keV]
-TrackID 1822   Position (297.524,-192.88,-138.135)       : 180.489 [keV]
-TrackID 1822   Position (356.412,-181.577,-115.182)       : 104.15 [keV]
-TrackID 1822   Position (356.697,-181.654,-115.018)       : 78.8847 [keV]
-TrackID 1822   Position (356.902,-181.564,-114.863)       : 171.069 [keV]
-TrackID 1822   Position (357.151,-181.535,-114.745)       : 67.5778 [keV]
-TrackID 1822   Position (357.399,-181.519,-114.618)       : 109.267 [keV]
-TrackID 1822   Position (357.529,-181.435,-114.39)       : 123.047 [keV]
-TrackID 1822   Position (357.579,-181.512,-114.126)       : 115.955 [keV]
-TrackID 1822   Position (357.715,-181.435,-113.867)       : 96.4402 [keV]
-TrackID 1822   Position (357.904,-181.279,-113.657)       : 79.7656 [keV]
-TrackID 1822   Position (358.101,-181.138,-113.4)       : 121.313 [keV]
-TrackID 1822   Position (358.251,-181.045,-113.07)       : 167.104 [keV]
-TrackID 1822   Position (358.46,-180.875,-112.797)       : 450.603 [keV]
-TrackID 1837   Position (358.46,-180.875,-112.797)       : 1.844 [keV]
-TrackID 1838   Position (358.477,-180.738,-112.724)       : 12.2656 [keV]
-TrackID 1833   Position (-209.85,346.393,57.046)       : 1.844 [keV]
-TrackID 1839   Position (-207.203,343.493,57.9616)       : 105.256 [keV]
-TrackID 1841   Position (369.101,-261.748,-188.205)       : 12.3454 [keV]
-TrackID 1840   Position (369.06,-261.521,-188.189)       : 3.59025 [keV]
-TrackID 1821   Position (296.4,-191.197,-138.043)       : 1.844 [keV]
-TrackID 1842   Position (296.418,-191.205,-138.05)       : 5.08539 [keV]
-TrackID 1834   Position (-241.067,380.589,46.2476)       : 2164.89 [keV]
-TrackID 1831   Position (-241.067,380.589,46.2476)       : 2992.91 [keV]
-TrackID 1831   Position (-241.006,380.636,46.1004)       : 1807.46 [keV]
-TrackID 1831   Position (-240.993,380.65,46.0562)       : 160.227 [keV]
-TrackID 1831   Position (-240.992,380.65,46.0545)       : 31.8571 [keV]
-TrackID 1830   Position (-241.067,380.589,46.2476)       : 2632.48 [keV]
-TrackID 1830   Position (-240.879,380.433,46.4007)       : 2666.33 [keV]
-TrackID 1830   Position (-240.732,380.311,46.5129)       : 2109.45 [keV]
-TrackID 1830   Position (-204.846,349.376,75.3984)       : 1543 [keV]
-TrackID 1828   Position (-241.067,380.589,46.2476)       : 2675.58 [keV]
-TrackID 1828   Position (-240.803,380.765,46.3736)       : 2574.1 [keV]
-TrackID 1828   Position (-240.596,380.911,46.4605)       : 2613.82 [keV]
-TrackID 1828   Position (-240.435,381.021,46.5233)       : 3120.66 [keV]
-TrackID 1828   Position (-240.333,381.098,46.5638)       : 793.025 [keV]
-TrackID 1983   Position (235.257,84.5811,-214.583)       : 3184.95 [keV]
-TrackID 1983   Position (282.773,100.198,-257.316)       : 2990.12 [keV]
-TrackID 1983   Position (330.945,113.908,-298.452)       : 1321.89 [keV]
-TrackID 1983   Position (332.902,114.453,-300.085)       : 680.546 [keV]
-TrackID 1983   Position (333.908,114.735,-300.91)       : 1372.43 [keV]
-TrackID 1983   Position (379.261,127.126,-337.074)       : 3051.82 [keV]
-TrackID 1983   Position (427.796,139.609,-377.894)       : 3464.12 [keV]
-TrackID 2984   Position (333.908,114.735,-300.91)       : 452.981 [keV]
-TrackID 2983   Position (332.902,114.453,-300.085)       : 485.176 [keV]
-TrackID 3564   Position (28.0825,-248.418,162.555)       : 2027.59 [keV]
-TrackID 3564   Position (33.3353,-298.142,195.283)       : 1633.99 [keV]
-TrackID 3564   Position (33.7554,-302.172,197.943)       : 364.616 [keV]
-TrackID 3564   Position (38.303,-347.898,227.483)       : 2308.31 [keV]
-TrackID 3564   Position (43.5763,-397.619,259.204)       : 1960.6 [keV]
-TrackID 3564   Position (48.7688,-447.35,290.067)       : 1946.64 [keV]
-TrackID 3570   Position (33.7554,-302.172,197.943)       : 494.09 [keV]
-TrackID 3570   Position (33.8823,-302.347,198.173)       : 102.548 [keV]
-TrackID 3570   Position (33.9927,-302.394,198.35)       : 88.7768 [keV]
-TrackID 3570   Position (34.0254,-302.442,198.539)       : 52.3317 [keV]
-TrackID 3570   Position (34.1477,-302.382,198.676)       : 63.3624 [keV]
-TrackID 3570   Position (34.0823,-302.372,198.869)       : 55.3746 [keV]
-TrackID 3570   Position (34.1,-302.22,199.01)       : 78.7463 [keV]
-TrackID 3570   Position (34.0593,-302.284,199.24)       : 84.9339 [keV]
-TrackID 3570   Position (34.1146,-302.504,199.275)       : 119.774 [keV]
-TrackID 3570   Position (34.2908,-302.491,199.222)       : 269.261 [keV]
-TrackID 3609   Position (138.177,431.993,-59.8833)       : 506.859 [keV]
-TrackID 3610   Position (138.177,431.993,-59.8833)       : 509.355 [keV]
-TrackID 3641   Position (238.652,-78.26,173.465)       : 1405.31 [keV]
-TrackID 3641   Position (242.22,-79.1296,176.2)       : 77.1133 [keV]
-TrackID 3641   Position (291.006,-72.9063,231.011)       : 157.009 [keV]
-TrackID 3641   Position (291.351,-72.8881,231.37)       : 870.534 [keV]
-TrackID 3641   Position (292.761,-72.6749,233.094)       : 591.872 [keV]
-TrackID 3641   Position (293.564,-71.9959,234.382)       : 423.494 [keV]
-TrackID 3641   Position (294.091,-71.307,235.491)       : 415.079 [keV]
-TrackID 3641   Position (294.589,-70.3624,236.369)       : 1255.89 [keV]
-TrackID 3641   Position (295.332,-70.8794,239.091)       : 364.563 [keV]
-TrackID 3641   Position (295.092,-70.8074,240.194)       : 700.555 [keV]
-TrackID 3641   Position (294.033,-69.2692,240.069)       : 559.351 [keV]
-TrackID 3649   Position (295.092,-70.8074,240.194)       : 438.205 [keV]
-TrackID 3648   Position (294.589,-70.3624,236.369)       : 211.977 [keV]
-TrackID 3648   Position (294.854,-70.128,236.982)       : 165.404 [keV]
-TrackID 3648   Position (294.845,-69.8452,237.451)       : 177.897 [keV]
-TrackID 3648   Position (295.191,-69.6259,237.876)       : 162.676 [keV]
-TrackID 3648   Position (295.198,-69.1521,237.683)       : 156.864 [keV]
-TrackID 3648   Position (295.535,-69.552,237.664)       : 130.36 [keV]
-TrackID 3648   Position (295.904,-69.6855,237.555)       : 93.3746 [keV]
-TrackID 3648   Position (295.663,-69.6365,237.395)       : 112.74 [keV]
-TrackID 3648   Position (295.677,-69.7281,237.055)       : 469.366 [keV]
-TrackID 3647   Position (294.091,-71.307,235.491)       : 513.244 [keV]
-TrackID 3645   Position (292.761,-72.6749,233.094)       : 465.64 [keV]
-TrackID 3643   Position (242.22,-79.1296,176.2)       : 22.1578 [keV]
-TrackID 3643   Position (242.263,-79.0794,176.194)       : 16.8713 [keV]
-TrackID 3643   Position (242.292,-79.0347,176.192)       : 11.7469 [keV]
-TrackID 3643   Position (242.318,-78.9892,176.194)       : 20.8894 [keV]
-TrackID 3643   Position (242.323,-78.9369,176.197)       : 11.8502 [keV]
-TrackID 3643   Position (242.327,-78.8841,176.201)       : 18.6664 [keV]
-TrackID 3643   Position (242.327,-78.8333,176.218)       : 16.9934 [keV]
-TrackID 3643   Position (242.341,-78.7844,176.232)       : 21.0733 [keV]
-TrackID 3643   Position (242.343,-78.7325,176.24)       : 21.2369 [keV]
-TrackID 3643   Position (242.368,-78.6867,176.259)       : 17.2786 [keV]
-TrackID 3643   Position (242.4,-78.6455,176.255)       : 21.1385 [keV]
-TrackID 3643   Position (242.431,-78.6033,176.246)       : 12.3506 [keV]
-TrackID 3643   Position (242.449,-78.555,176.245)       : 20.1755 [keV]
-TrackID 3643   Position (242.442,-78.5018,176.238)       : 19.2762 [keV]
-TrackID 3643   Position (242.452,-78.4772,176.284)       : 16.068 [keV]
-TrackID 3643   Position (242.43,-78.4584,176.329)       : 28.9254 [keV]
-TrackID 3643   Position (242.408,-78.4521,176.379)       : 23.8407 [keV]
-TrackID 3643   Position (242.387,-78.484,176.43)       : 25.4863 [keV]
-TrackID 3643   Position (242.365,-78.5333,176.469)       : 23.0046 [keV]
-TrackID 3643   Position (242.355,-78.5893,176.499)       : 30.633 [keV]
-TrackID 3643   Position (242.397,-78.6139,176.534)       : 27.0721 [keV]
-TrackID 3643   Position (242.433,-78.6201,176.57)       : 59.8919 [keV]
-TrackID 3643   Position (242.479,-78.6239,176.579)       : 35.6635 [keV]
-TrackID 3643   Position (242.523,-78.6206,176.567)       : 44.6231 [keV]
-TrackID 3643   Position (242.543,-78.6516,176.577)       : 55.6258 [keV]
-TrackID 3643   Position (242.558,-78.6614,176.567)       : 29.9804 [keV]
-TrackID 3650   Position (9.36052,-449.903,-68.5454)       : 1.844 [keV]
-TrackID 3652   Position (6.57258,-453.622,-71.4634)       : 107.151 [keV]
-TrackID 3651   Position (292.919,-71.6056,228.238)       : 5.3447 [keV]
-TrackID 3653   Position (396.399,-78.001,384.236)       : 347.609 [keV]
-TrackID 3642   Position (238.652,-78.26,173.465)       : 1556.86 [keV]
-TrackID 3642   Position (285.572,-91.9168,207.326)       : 966.097 [keV]
-TrackID 3642   Position (287.972,-92.6147,209.069)       : 971.736 [keV]
-TrackID 3642   Position (333.613,-105.842,242.739)       : 830.563 [keV]
-TrackID 3642   Position (334.687,-106.161,243.533)       : 1697.13 [keV]
-TrackID 3642   Position (381.446,-120.41,278.366)       : 1791.98 [keV]
-TrackID 3642   Position (385.663,-121.703,281.471)       : 225.286 [keV]
-TrackID 3642   Position (429.104,-135.534,314.074)       : 1668.12 [keV]
-TrackID 3642   Position (433.471,-136.892,317.383)       : 241.958 [keV]
-TrackID 3559   Position (-248.756,24.904,176.5)       : 1207.72 [keV]
-TrackID 3559   Position (-251.969,25.2249,178.79)       : 709.602 [keV]
-TrackID 3559   Position (-298.488,30.0808,212.634)       : 2321.45 [keV]
-TrackID 3559   Position (-348.212,35.3325,249.125)       : 2219.56 [keV]
-TrackID 3559   Position (-397.932,40.6235,285.027)       : 1811.04 [keV]
-TrackID 3559   Position (-447.665,45.7862,321.2)       : 441.837 [keV]
-TrackID 3559   Position (-448.762,45.8988,321.999)       : 1831.81 [keV]
-TrackID 3677   Position (-452.626,46.4199,327.574)       : 1.67671 [keV]
-TrackID 3677   Position (-452.625,46.4183,327.577)       : 1.27801 [keV]
-TrackID 3677   Position (-452.623,46.417,327.58)       : 2.27065 [keV]
-TrackID 3677   Position (-452.622,46.4143,327.581)       : 1.21569 [keV]
-TrackID 3677   Position (-452.621,46.4122,327.584)       : 5.32784 [keV]
-TrackID 3677   Position (-452.619,46.4095,327.585)       : 1.4548 [keV]
-TrackID 3677   Position (-452.618,46.4076,327.587)       : 4.42106 [keV]
-TrackID 3677   Position (-452.616,46.4049,327.588)       : 1.2669 [keV]
-TrackID 3677   Position (-452.617,46.4019,327.59)       : 1.54542 [keV]
-TrackID 3677   Position (-452.617,46.3986,327.59)       : 2.10449 [keV]
-TrackID 3677   Position (-452.616,46.396,327.591)       : 1.48732 [keV]
-TrackID 3677   Position (-452.615,46.3929,327.593)       : 1.04335 [keV]
-TrackID 3677   Position (-452.612,46.3904,327.595)       : 4.07227 [keV]
-TrackID 3677   Position (-452.611,46.3859,327.594)       : 1.38809 [keV]
-TrackID 3677   Position (-452.608,46.3818,327.593)       : 5.28749 [keV]
-TrackID 3677   Position (-452.61,46.3759,327.594)       : 4.56411 [keV]
-TrackID 3677   Position (-452.613,46.3719,327.597)       : 5.10256 [keV]
-TrackID 3677   Position (-452.613,46.3686,327.6)       : 8.03641 [keV]
-TrackID 3677   Position (-452.615,46.3666,327.604)       : 7.49073 [keV]
-TrackID 3677   Position (-452.615,46.3642,327.608)       : 4.19986 [keV]
-TrackID 3677   Position (-452.617,46.3657,327.612)       : 5.70436 [keV]
-TrackID 3677   Position (-452.62,46.3642,327.61)       : 5.78544 [keV]
-TrackID 3677   Position (-452.623,46.3658,327.61)       : 9.15871 [keV]
-TrackID 3677   Position (-452.625,46.3677,327.611)       : 19.3357 [keV]
-TrackID 3676   Position (-448.762,45.8988,321.999)       : 100.08 [keV]
-TrackID 3676   Position (-448.736,45.837,322.318)       : 147.106 [keV]
-TrackID 3676   Position (-448.67,45.8803,322.606)       : 92.2045 [keV]
-TrackID 3676   Position (-448.815,45.7017,322.755)       : 453.06 [keV]
-TrackID 3676   Position (-448.831,45.3349,322.651)       : 89.2163 [keV]
-TrackID 3672   Position (-251.969,25.2249,178.79)       : 174.988 [keV]
-TrackID 3672   Position (-252.553,25.3727,178.931)       : 84.3883 [keV]
-TrackID 3672   Position (-252.685,25.3963,179.255)       : 90.6984 [keV]
-TrackID 3672   Position (-252.798,25.4581,179.535)       : 74.4614 [keV]
-TrackID 3672   Position (-252.826,25.7283,179.584)       : 77.9922 [keV]
-TrackID 3672   Position (-252.865,25.934,179.732)       : 71.6928 [keV]
-TrackID 3672   Position (-253.04,26.0954,179.789)       : 121.479 [keV]
-TrackID 3672   Position (-253.216,26.175,179.925)       : 55.8941 [keV]
-TrackID 3672   Position (-253.397,26.1059,180.053)       : 75.9053 [keV]
-TrackID 3672   Position (-253.574,25.9675,180.068)       : 46.6539 [keV]
-TrackID 3672   Position (-299.181,22.1536,182.204)       : 8.57521 [keV]
-TrackID 3672   Position (-299.218,22.1479,182.21)       : 16.6176 [keV]
-TrackID 3672   Position (-299.27,22.1249,182.22)       : 13.6744 [keV]
-TrackID 3672   Position (-299.325,22.1097,182.212)       : 31.2894 [keV]
-TrackID 3672   Position (-299.379,22.0913,182.202)       : 13.7642 [keV]
-TrackID 3672   Position (-299.423,22.0642,182.177)       : 21.5468 [keV]
-TrackID 3672   Position (-299.472,22.0195,182.158)       : 20.8302 [keV]
-TrackID 3672   Position (-299.402,21.9768,182.162)       : 14.0515 [keV]
-TrackID 3672   Position (-299.364,21.9821,182.115)       : 20.306 [keV]
-TrackID 3672   Position (-299.349,22.0004,182.061)       : 19.1839 [keV]
-TrackID 3672   Position (-299.319,21.9886,182.013)       : 30.5376 [keV]
-TrackID 3672   Position (-299.289,21.963,181.969)       : 17.9213 [keV]
-TrackID 3672   Position (-299.275,21.9446,181.918)       : 30.6636 [keV]
-TrackID 3672   Position (-299.266,21.8893,181.9)       : 19.9292 [keV]
-TrackID 3672   Position (-299.279,21.8362,181.888)       : 23.5085 [keV]
-TrackID 3672   Position (-299.311,21.7951,181.866)       : 20.9531 [keV]
-TrackID 3672   Position (-299.328,21.7421,181.862)       : 44.902 [keV]
-TrackID 3672   Position (-299.285,21.7118,181.879)       : 41.0878 [keV]
-TrackID 3672   Position (-299.296,21.6591,181.895)       : 30.0334 [keV]
-TrackID 3672   Position (-299.268,21.6115,181.909)       : 51.3788 [keV]
-TrackID 3672   Position (-299.256,21.5608,181.906)       : 17.441 [keV]
-TrackID 3672   Position (-299.278,21.5383,181.925)       : 37.644 [keV]
-TrackID 3672   Position (-299.295,21.5083,181.896)       : 90.085 [keV]
-TrackID 3658   Position (334.687,-106.161,243.533)       : 498.88 [keV]
-TrackID 3655   Position (287.972,-92.6147,209.069)       : 246.239 [keV]
-TrackID 3655   Position (288.462,-93.0602,209.437)       : 194.427 [keV]
-TrackID 3655   Position (288.219,-93.4982,209.654)       : 213.767 [keV]
-TrackID 3655   Position (288.321,-93.9876,209.835)       : 227.339 [keV]
-TrackID 3655   Position (287.953,-94.2716,209.857)       : 465.022 [keV]
-TrackID 3655   Position (287.684,-94.5447,209.64)       : 134.964 [keV]
-TrackID 3662   Position (433.471,-136.892,317.383)       : 1.844 [keV]
-TrackID 3681   Position (433.513,-136.905,317.416)       : 4.75153 [keV]
-TrackID 3720   Position (-224.957,-109.062,-110.841)       : 1637.6 [keV]
-TrackID 3720   Position (-270.077,-130.609,-132.706)       : 2101.93 [keV]
-TrackID 3720   Position (-315.326,-151.886,-154.402)       : 2679.7 [keV]
-TrackID 3720   Position (-360.532,-173.254,-175.684)       : 1666.84 [keV]
-TrackID 3720   Position (-405.818,-194.452,-196.902)       : 1626.82 [keV]
-TrackID 3755   Position (-219.743,119.218,-64.9185)       : 645.258 [keV]
-TrackID 3755   Position (-221.245,120.039,-65.3645)       : 1146.45 [keV]
-TrackID 3755   Position (-263.724,143.002,-77.7668)       : 1810.72 [keV]
-TrackID 3755   Position (-267.702,145.163,-78.9223)       : 227.28 [keV]
-TrackID 3755   Position (-307.602,166.975,-90.3031)       : 1817.62 [keV]
-TrackID 3755   Position (-351.369,191.154,-102.638)       : 2189.62 [keV]
-TrackID 3755   Position (-395.144,215.316,-115.108)       : 156.315 [keV]
-TrackID 3755   Position (-395.547,215.539,-115.224)       : 290.719 [keV]
-TrackID 3755   Position (-395.835,215.698,-115.306)       : 1284.42 [keV]
-TrackID 3761   Position (-221.245,120.039,-65.3645)       : 104.066 [keV]
-TrackID 3761   Position (-221.379,120.001,-65.5335)       : 503.205 [keV]
-TrackID 3766   Position (-221.379,120.001,-65.5335)       : 1.844 [keV]
-TrackID 3767   Position (-223.718,121.371,-65.8012)       : 66.5971 [keV]
-TrackID 3770   Position (329.29,234.262,-226.659)       : 4.35903 [keV]
-TrackID 3769   Position (327.219,231.843,-226.349)       : 17.1231 [keV]
-TrackID 3768   Position (-307.72,167.022,-90.2955)       : 7.43522 [keV]
-TrackID 3768   Position (-307.748,167.033,-90.2895)       : 15.5407 [keV]
-TrackID 3768   Position (-307.79,167.021,-90.2923)       : 17.146 [keV]
-TrackID 3768   Position (-307.817,167.038,-90.3323)       : 21.6115 [keV]
-TrackID 3768   Position (-307.841,167.067,-90.3851)       : 28.63 [keV]
-TrackID 3768   Position (-307.895,167.064,-90.4362)       : 37.4969 [keV]
-TrackID 3768   Position (-307.905,167.108,-90.504)       : 196.931 [keV]
-TrackID 3754   Position (-215.319,127.034,-62.7395)       : 1895.94 [keV]
-TrackID 3754   Position (-258.371,152.462,-75.6608)       : 719.409 [keV]
-TrackID 3754   Position (-260.343,153.624,-76.2509)       : 24.9354 [keV]
-TrackID 3754   Position (-260.406,153.662,-76.2695)       : 1117.47 [keV]
-TrackID 3754   Position (-301.654,177.496,-88.2072)       : 1726.06 [keV]
-TrackID 3754   Position (-344.951,202.506,-100.212)       : 666.948 [keV]
-TrackID 3754   Position (-346.799,203.569,-100.728)       : 984.209 [keV]
-TrackID 3754   Position (-389.133,225.999,-114.114)       : 244.624 [keV]
-TrackID 3754   Position (-389.73,226.311,-114.302)       : 1513.87 [keV]
-TrackID 3815   Position (-300.643,185.616,-80.2745)       : 119.78 [keV]
-TrackID 3814   Position (-261.616,156.372,-87.0384)       : 15.6647 [keV]
-TrackID 3814   Position (-261.624,156.377,-87.0843)       : 23.1229 [keV]
-TrackID 3814   Position (-261.604,156.366,-87.1362)       : 33.5796 [keV]
-TrackID 3814   Position (-261.582,156.363,-87.1825)       : 165.844 [keV]
-TrackID 3813   Position (-260.592,153.772,-76.3251)       : 467.11 [keV]
-TrackID 3813   Position (-261.008,153.975,-76.2306)       : 162.276 [keV]
-TrackID 3775   Position (-389.251,231.779,-107.268)       : 1.844 [keV]
-TrackID 3819   Position (-388.336,231.791,-107.601)       : 101.375 [keV]
-TrackID 3818   Position (-389.251,231.779,-107.268)       : 17.7973 [keV]
-TrackID 3817   Position (-390.394,227.381,-106.944)       : 65.8587 [keV]
-TrackID 3816   Position (-390.534,230.588,-113.403)       : 211.627 [keV]
-TrackID 3839   Position (-212.546,131.622,-96.2688)       : 1959.61 [keV]
-TrackID 3839   Position (-254.921,158.162,-115.707)       : 1702.22 [keV]
-TrackID 3839   Position (-297.221,184.824,-134.794)       : 1779.26 [keV]
-TrackID 3839   Position (-339.379,211.711,-153.83)       : 1560.57 [keV]
-TrackID 3839   Position (-382.632,236.839,-173.124)       : 1642.76 [keV]
-TrackID 3967   Position (116.937,-220.966,149.509)       : 4085.25 [keV]
-TrackID 3967   Position (140.019,-265.32,179.596)       : 3736.98 [keV]
-TrackID 3967   Position (163.105,-309.672,209.003)       : 3468.76 [keV]
-TrackID 3967   Position (185.694,-354.285,238.774)       : 384.064 [keV]
-TrackID 3967   Position (185.923,-354.741,239.08)       : 3821.05 [keV]
-TrackID 3967   Position (208.661,-398.698,268.312)       : 3897.51 [keV]
-TrackID 3981   Position (185.923,-354.741,239.08)       : 37.9507 [keV]
-TrackID 3981   Position (185.965,-354.811,239.138)       : 103.76 [keV]
-TrackID 3981   Position (186.059,-354.908,239.234)       : 158.945 [keV]
-TrackID 3981   Position (186.081,-355.06,239.345)       : 422.728 [keV]
-TrackID 3986   Position (211.295,138.188,141.052)       : 1164.13 [keV]
-TrackID 3986   Position (252.625,161.804,167.631)       : 1030.38 [keV]
-TrackID 3986   Position (254.874,162.976,169.174)       : 857.687 [keV]
-TrackID 3986   Position (297.799,183.89,202.065)       : 2157.69 [keV]
-TrackID 3986   Position (301.866,185.961,205.073)       : 222.187 [keV]
-TrackID 3986   Position (343.88,204.319,233.629)       : 1314.36 [keV]
-TrackID 3986   Position (346.066,205.521,236.191)       : 1162.42 [keV]
-TrackID 3986   Position (372.006,253.202,250.426)       : 403.6 [keV]
-TrackID 3986   Position (372.846,253.931,250.743)       : 403.793 [keV]
-TrackID 3986   Position (373.272,253.381,251.574)       : 446.026 [keV]
-TrackID 3986   Position (373.05,252.947,252.518)       : 455.719 [keV]
-TrackID 3986   Position (372.904,252.05,252.806)       : 76.3916 [keV]
-TrackID 3986   Position (353.162,198.247,242.719)       : 64.7077 [keV]
-TrackID 3986   Position (353.067,198.053,242.774)       : 44.8173 [keV]
-TrackID 3986   Position (353.089,197.89,242.733)       : 63.9626 [keV]
-TrackID 3986   Position (353.108,197.718,242.705)       : 48.3474 [keV]
-TrackID 3986   Position (353.168,197.589,242.616)       : 67.4586 [keV]
-TrackID 3986   Position (353.251,197.439,242.63)       : 63.8358 [keV]
-TrackID 3986   Position (353.306,197.29,242.677)       : 118.211 [keV]
-TrackID 3986   Position (353.276,197.126,242.719)       : 57.4427 [keV]
-TrackID 3986   Position (353.198,196.978,242.681)       : 42.9078 [keV]
-TrackID 3986   Position (353.077,196.87,242.664)       : 84.8465 [keV]
-TrackID 3986   Position (353.112,196.674,242.707)       : 77.9475 [keV]
-TrackID 3986   Position (353.009,196.513,242.584)       : 110.68 [keV]
-TrackID 3986   Position (352.842,196.387,242.417)       : 481.771 [keV]
-TrackID 3991   Position (346.066,205.521,236.191)       : 649.071 [keV]
-TrackID 3991   Position (346.198,206.019,236.607)       : 155.257 [keV]
-TrackID 3987   Position (211.295,138.188,141.052)       : 202.045 [keV]
-TrackID 3987   Position (211.817,138.533,141.39)       : 694.975 [keV]
-TrackID 3987   Position (250.934,164.414,167.476)       : 2045.27 [keV]
-TrackID 3987   Position (292.23,192.618,194.996)       : 2033.46 [keV]
-TrackID 3987   Position (334.782,218.908,221.908)       : 1962.76 [keV]
-TrackID 3987   Position (377.605,244.774,246.781)       : 1889.1 [keV]
-TrackID 3966   Position (-14.7929,-249.562,-206.572)       : 2500.41 [keV]
-TrackID 3966   Position (-19.2128,-299.384,-248.965)       : 2176.24 [keV]
-TrackID 3966   Position (-24.6734,-349.129,-291.309)       : 2100.86 [keV]
-TrackID 3966   Position (-29.2906,-398.926,-333.478)       : 1655.78 [keV]
-TrackID 3966   Position (-29.6372,-402.699,-336.628)       : 485.228 [keV]
-TrackID 3966   Position (-33.7455,-448.733,-375.429)       : 2090.23 [keV]
-TrackID 4006   Position (-29.6372,-402.699,-336.628)       : 514.369 [keV]
-TrackID 3994   Position (397.405,45.4883,338.704)       : 1.844 [keV]
-TrackID 4011   Position (398.141,43.3899,340.1)       : 211.077 [keV]
-TrackID 4010   Position (335.973,220.656,222.221)       : 134.335 [keV]
-TrackID 3835   Position (167.556,-185.539,-219.081)       : 2022.52 [keV]
-TrackID 3835   Position (201.107,-222.611,-263.06)       : 2448.26 [keV]
-TrackID 3835   Position (234.686,-259.659,-307.061)       : 2192.71 [keV]
-TrackID 3835   Position (268.23,-296.737,-350.929)       : 1564.45 [keV]
-TrackID 3835   Position (270.602,-299.364,-354.031)       : 601.82 [keV]
-TrackID 3835   Position (301.809,-333.783,-394.769)       : 1967.73 [keV]
-TrackID 4037   Position (299.318,-336.019,-387.923)       : 1.24455 [keV]
-TrackID 4037   Position (299.319,-336.019,-387.922)       : 1.01904 [keV]
-TrackID 4037   Position (299.319,-336.019,-387.921)       : 12.6479 [keV]
-TrackID 4037   Position (299.32,-336.02,-387.92)       : 1.32672 [keV]
-TrackID 4037   Position (299.32,-336.02,-387.919)       : 0.812745 [keV]
-TrackID 4037   Position (299.32,-336.02,-387.918)       : 2.10607 [keV]
-TrackID 4037   Position (299.32,-336.02,-387.918)       : 0.598766 [keV]
-TrackID 4037   Position (299.321,-336.019,-387.917)       : 1.60044 [keV]
-TrackID 4037   Position (299.321,-336.018,-387.917)       : 2.31837 [keV]
-TrackID 4037   Position (299.322,-336.017,-387.917)       : 1.45554 [keV]
-TrackID 4037   Position (299.322,-336.017,-387.918)       : 2.03829 [keV]
-TrackID 4037   Position (299.322,-336.016,-387.919)       : 2.02848 [keV]
-TrackID 4037   Position (299.323,-336.016,-387.92)       : 1.54742 [keV]
-TrackID 4037   Position (299.323,-336.015,-387.921)       : 1.9666 [keV]
-TrackID 4036   Position (270.602,-299.364,-354.031)       : 87.3998 [keV]
-TrackID 4036   Position (270.622,-299.689,-354.031)       : 171.579 [keV]
-TrackID 4036   Position (270.869,-299.901,-354.087)       : 81.2764 [keV]
-TrackID 4036   Position (271.003,-300.09,-353.969)       : 53.6246 [keV]
-TrackID 4036   Position (271.098,-300.115,-353.937)       : 38.0179 [keV]
-TrackID 4036   Position (271.26,-300.112,-353.892)       : 43.0587 [keV]
-TrackID 4036   Position (271.408,-300.089,-353.936)       : 46.6164 [keV]
-TrackID 4036   Position (271.538,-299.995,-353.911)       : 62.2093 [keV]
-TrackID 4036   Position (271.624,-299.882,-353.972)       : 42.1431 [keV]
-TrackID 4036   Position (271.681,-299.797,-354.085)       : 53.4433 [keV]
-TrackID 4036   Position (271.742,-299.815,-354.203)       : 48.5271 [keV]
-TrackID 4036   Position (271.884,-299.787,-354.243)       : 53.8324 [keV]
-TrackID 4036   Position (272.015,-299.809,-354.301)       : 50.0981 [keV]
-TrackID 4036   Position (272.014,-299.911,-354.418)       : 48.8903 [keV]
-TrackID 4036   Position (272.071,-299.871,-354.554)       : 47.8808 [keV]
-TrackID 4036   Position (272.112,-299.836,-354.689)       : 67.2488 [keV]
-TrackID 4036   Position (272.161,-299.895,-354.79)       : 6.9967 [keV]
-TrackID 4036   Position (314.541,-321.813,-339.792)       : 3.32924 [keV]
-TrackID 4036   Position (314.548,-321.819,-339.79)       : 5.40712 [keV]
-TrackID 4036   Position (314.557,-321.829,-339.791)       : 6.88657 [keV]
-TrackID 4036   Position (314.568,-321.837,-339.793)       : 2.88095 [keV]
-TrackID 4036   Position (314.579,-321.845,-339.793)       : 10.6037 [keV]
-TrackID 4036   Position (314.587,-321.856,-339.792)       : 11.7908 [keV]
-TrackID 4036   Position (314.597,-321.871,-339.79)       : 14.274 [keV]
-TrackID 4036   Position (314.605,-321.891,-339.781)       : 15.2371 [keV]
-TrackID 4036   Position (314.576,-321.891,-339.778)       : 10.0106 [keV]
-TrackID 4036   Position (314.562,-321.874,-339.771)       : 8.42466 [keV]
-TrackID 4036   Position (314.561,-321.865,-339.757)       : 17.5539 [keV]
-TrackID 4036   Position (314.55,-321.86,-339.748)       : 14.7464 [keV]
-TrackID 4036   Position (314.546,-321.854,-339.737)       : 11.7867 [keV]
-TrackID 4036   Position (314.548,-321.846,-339.727)       : 11.556 [keV]
-TrackID 4036   Position (314.543,-321.835,-339.722)       : 10.0634 [keV]
-TrackID 4036   Position (314.547,-321.827,-339.713)       : 7.5675 [keV]
-TrackID 4036   Position (314.55,-321.821,-339.701)       : 7.3933 [keV]
-TrackID 4036   Position (314.539,-321.817,-339.696)       : 0.479326 [keV]
-TrackID 4039   Position (271.742,-299.815,-354.203)       : 1.844 [keV]
-TrackID 4042   Position (271.861,-299.792,-354.118)       : 7.51856 [keV]
-TrackID 4038   Position (271.098,-300.115,-353.937)       : 1.844 [keV]
-TrackID 4043   Position (271.311,-300.085,-353.816)       : 5.66379 [keV]
-TrackID 4695   Position (-36.1296,-247.376,50.0225)       : 1820.75 [keV]
-TrackID 4695   Position (-43.765,-296.791,60.8652)       : 1549.28 [keV]
-TrackID 4695   Position (-44.5005,-301.64,61.9372)       : 22.2887 [keV]
-TrackID 4695   Position (-51.2154,-346.233,71.8234)       : 1492.15 [keV]
-TrackID 4695   Position (-58.5829,-395.687,82.9991)       : 1677.6 [keV]
-TrackID 4695   Position (-65.5002,-445.208,94.0347)       : 1542.26 [keV]
-TrackID 4701   Position (-75.5048,-448.691,111.175)       : 0.0204492 [keV]
-TrackID 4701   Position (-75.5048,-448.691,111.175)       : 0.505008 [keV]
-TrackID 4701   Position (-75.5048,-448.691,111.175)       : 0.232858 [keV]
-TrackID 4701   Position (-75.5048,-448.691,111.174)       : 1.22639 [keV]
-TrackID 4701   Position (-75.5049,-448.691,111.174)       : 0.326092 [keV]
-TrackID 4700   Position (-44.5005,-301.64,61.9372)       : 30.6673 [keV]
-TrackID 4700   Position (-36.6232,-348.079,96.8147)       : 127.257 [keV]
-TrackID 4700   Position (-36.5371,-348.382,96.8975)       : 143.216 [keV]
-TrackID 4700   Position (-36.5284,-348.739,97.0464)       : 105.432 [keV]
-TrackID 4700   Position (-36.6571,-348.893,97.3739)       : 142.206 [keV]
-TrackID 4700   Position (-36.9185,-349.076,97.592)       : 110.915 [keV]
-TrackID 4700   Position (-37.0756,-349.131,97.9245)       : 201.245 [keV]
-TrackID 4700   Position (-37.0413,-349.433,98.1533)       : 185.241 [keV]
-TrackID 4700   Position (-36.971,-349.771,98.366)       : 180.56 [keV]
-TrackID 4700   Position (-36.5216,-349.879,98.5324)       : 473.252 [keV]
-TrackID 4700   Position (-35.9454,-350.181,98.6285)       : 326.687 [keV]
-TrackID 4735   Position (7.51405,249.887,173.376)       : 3420.5 [keV]
-TrackID 4735   Position (9.15236,299.86,208.208)       : 4074.74 [keV]
-TrackID 4735   Position (10.9439,349.829,241.75)       : 3984.64 [keV]
-TrackID 4735   Position (12.9453,399.79,275.95)       : 1757.93 [keV]
-TrackID 4735   Position (13.0558,402.422,277.754)       : 1861.39 [keV]
-TrackID 4735   Position (14.5911,449.763,310.353)       : 3806.1 [keV]
-TrackID 4753   Position (13.0558,402.422,277.754)       : 588.189 [keV]
-TrackID 4753   Position (12.9171,402.948,278.097)       : 198.421 [keV]
-TrackID 4627   Position (206.909,-140.317,219.191)       : 2866.49 [keV]
-TrackID 4627   Position (248.276,-168.401,263.004)       : 2042.12 [keV]
-TrackID 4627   Position (289.635,-196.499,306.871)       : 2051.33 [keV]
-TrackID 4627   Position (331.014,-224.566,350.506)       : 2249.34 [keV]
-TrackID 4627   Position (372.331,-252.724,394.046)       : 2273.97 [keV]
-TrackID 4626   Position (-74.894,238.518,139.755)       : 2284.57 [keV]
-TrackID 4626   Position (-89.8519,286.228,167.625)       : 2232.14 [keV]
-TrackID 4626   Position (-105.045,333.865,195.391)       : 2334.45 [keV]
-TrackID 4626   Position (-120.016,381.571,223.296)       : 1781.71 [keV]
-TrackID 4626   Position (-134.622,429.391,251.448)       : 2068.55 [keV]
-TrackID 5636   Position (-151.778,-198.654,200.086)       : 2063.47 [keV]
-TrackID 5636   Position (-182.327,-238.237,240.508)       : 2263.3 [keV]
-TrackID 5636   Position (-212.822,-277.861,280.849)       : 2009.24 [keV]
-TrackID 5636   Position (-243.421,-317.405,320.928)       : 498.823 [keV]
-TrackID 5636   Position (-244.235,-318.454,321.989)       : 618.587 [keV]
-TrackID 5636   Position (-245.223,-319.723,323.272)       : 883.104 [keV]
-TrackID 5636   Position (-274.48,-356.596,360.681)       : 2077.96 [keV]
-TrackID 5640   Position (-245.223,-319.723,323.272)       : 642.961 [keV]
-TrackID 5640   Position (-245.088,-319.949,323.947)       : 218.271 [keV]
-TrackID 5639   Position (-244.235,-318.454,321.989)       : 105.157 [keV]
-TrackID 5639   Position (-244.569,-318.45,322.053)       : 589.99 [keV]
-TrackID 5639   Position (-245.087,-318.624,322.029)       : 109.051 [keV]
-TrackID 5635   Position (-132.091,-212.254,109.975)       : 1843.2 [keV]
-TrackID 5635   Position (-158.923,-254.447,132.114)       : 1900.25 [keV]
-TrackID 5635   Position (-186.246,-296.332,154.645)       : 1689.73 [keV]
-TrackID 5635   Position (-213.963,-337.964,177.595)       : 1930.01 [keV]
-TrackID 5635   Position (-241.485,-379.717,199.919)       : 1969.4 [keV]
-TrackID 5632   Position (-226.388,-106.06,-159.831)       : 6117.9 [keV]
-TrackID 5632   Position (-271.479,-127.668,-191.595)       : 6772.62 [keV]
-TrackID 5632   Position (-316.656,-149.095,-223.954)       : 6927.51 [keV]
-TrackID 5632   Position (-362.604,-168.874,-255.803)       : 7665.59 [keV]
-TrackID 5632   Position (-407.928,-189.987,-289.326)       : 7836.99 [keV]
-TrackID 5631   Position (-246.357,-42.5236,126.436)       : 2424.33 [keV]
-TrackID 5631   Position (-295.621,-51.0704,151.637)       : 2712.93 [keV]
-TrackID 5631   Position (-344.863,-59.7449,176.969)       : 1480.19 [keV]
-TrackID 5631   Position (-348.25,-60.3427,178.713)       : 29.2944 [keV]
-TrackID 5631   Position (-348.309,-60.3532,178.744)       : 568.777 [keV]
-TrackID 5631   Position (-394.09,-68.5032,202.415)       : 2481.46 [keV]
-TrackID 5631   Position (-443.334,-77.169,228.038)       : 2357.62 [keV]
-TrackID 5698   Position (-348.309,-60.3532,178.744)       : 179.226 [keV]
-TrackID 5698   Position (-348.602,-60.2585,178.691)       : 331.977 [keV]
-TrackID 5697   Position (-348.25,-60.3427,178.713)       : 576.917 [keV]
-TrackID 5697   Position (-348.684,-60.2354,178.642)       : 34.6029 [keV]
-TrackID 5700   Position (-348.602,-60.2585,178.691)       : 1.844 [keV]
-TrackID 5703   Position (-348.563,-60.2639,178.69)       : 10.4413 [keV]
-TrackID 5775   Position (-185.608,-298.997,231.796)       : 354.425 [keV]
-TrackID 5775   Position (-185.994,-299.601,232.276)       : 1021.13 [keV]
-TrackID 5775   Position (-211.755,-339.352,258.818)       : 1847.56 [keV]
-TrackID 5775   Position (-237.535,-382.2,286.458)       : 417.539 [keV]
-TrackID 5775   Position (-238.12,-383.217,287.087)       : 62.3765 [keV]
-TrackID 5775   Position (-238.204,-383.368,287.186)       : 19.7224 [keV]
-TrackID 5775   Position (-238.233,-383.423,287.222)       : 1213.92 [keV]
-TrackID 5777   Position (-185.994,-299.601,232.276)       : 93.205 [keV]
-TrackID 5777   Position (-186,-299.616,232.363)       : 479.455 [keV]
-TrackID 5777   Position (-185.957,-299.656,232.93)       : 240.438 [keV]
-TrackID 5782   Position (-186,-299.616,232.363)       : 1.844 [keV]
-TrackID 5783   Position (-186.062,-299.679,232.329)       : 7.80073 [keV]
-TrackID 5779   Position (-238.204,-383.368,287.186)       : 1.844 [keV]
-TrackID 5784   Position (-238.275,-383.501,287.271)       : 11.5357 [keV]
-TrackID 5776   Position (-185.608,-298.997,231.796)       : 1281.88 [keV]
-TrackID 5776   Position (-210.946,-339.856,263.165)       : 861.242 [keV]
-TrackID 5776   Position (-212.138,-341.773,264.631)       : 836.574 [keV]
-TrackID 5776   Position (-213.205,-343.678,265.908)       : 174.916 [keV]
-TrackID 5776   Position (-233.501,-384.678,287.85)       : 2140.84 [keV]
-TrackID 5776   Position (-235.663,-389.044,290.244)       : 52.6815 [keV]
-TrackID 5786   Position (-233.487,-384.687,287.882)       : 1.844 [keV]
-TrackID 5857   Position (-234.302,-386.335,288.765)       : 33.0352 [keV]
-TrackID 6053   Position (-126.114,-215.859,117.131)       : 1902.74 [keV]
-TrackID 6053   Position (-151.338,-259.031,140.551)       : 2657.31 [keV]
-TrackID 6053   Position (-176.562,-302.202,163.968)       : 94.0334 [keV]
-TrackID 6053   Position (-176.733,-302.496,164.128)       : 2.21796 [keV]
-TrackID 6053   Position (-176.738,-302.503,164.132)       : 135.651 [keV]
-TrackID 6053   Position (-176.973,-302.906,164.35)       : 1788.09 [keV]
-TrackID 6053   Position (-201.785,-345.374,187.379)       : 1968.04 [keV]
-TrackID 6053   Position (-227.008,-388.545,210.789)       : 2516.39 [keV]
-TrackID 6061   Position (-176.973,-302.906,164.35)       : 62.2807 [keV]
-TrackID 6061   Position (-177.142,-302.972,164.421)       : 74.2894 [keV]
-TrackID 6061   Position (-177.341,-303.096,164.573)       : 432.235 [keV]
-TrackID 6060   Position (-176.738,-302.503,164.132)       : 39.2305 [keV]
-TrackID 6060   Position (-176.804,-302.627,164.129)       : 67.7051 [keV]
-TrackID 6060   Position (-176.79,-302.754,164.065)       : 75.4895 [keV]
-TrackID 6060   Position (-176.813,-302.784,164.046)       : 326.418 [keV]
-TrackID 6058   Position (-176.733,-302.496,164.128)       : 501.15 [keV]
-TrackID 6058   Position (-177.363,-303.544,164.712)       : 541.826 [keV]
-TrackID 6058   Position (-177.857,-304.962,165.424)       : 633.223 [keV]
-TrackID 6058   Position (-197.037,-348.104,179.608)       : 150.749 [keV]
-TrackID 6058   Position (-197.238,-348.585,179.751)       : 793.546 [keV]
-TrackID 6058   Position (-199.464,-349.878,179.424)       : 784.468 [keV]
-TrackID 6058   Position (-233.93,-384.417,168.578)       : 31.9076 [keV]
-TrackID 6058   Position (-234.04,-384.516,168.548)       : 1706.92 [keV]
-TrackID 6067   Position (-177.363,-303.544,164.712)       : 1540.96 [keV]
-TrackID 6067   Position (-211.326,-339.619,185.618)       : 756.385 [keV]
-TrackID 6067   Position (-212.878,-340.972,186.44)       : 1219.02 [keV]
-TrackID 6067   Position (-214.516,-343.103,187.235)       : 109.681 [keV]
-TrackID 6067   Position (-244.78,-377.601,198.13)       : 2136.01 [keV]
-TrackID 6074   Position (-212.878,-340.972,186.44)       : 73.8569 [keV]
-TrackID 6074   Position (-213.092,-341.153,186.413)       : 974.259 [keV]
-TrackID 6074   Position (-247.037,-376.129,154.918)       : 932.531 [keV]
-TrackID 6074   Position (-248.52,-378.147,154.3)       : 1142.7 [keV]
-TrackID 6076   Position (-213.092,-341.153,186.413)       : 426.923 [keV]
-TrackID 6076   Position (-213.411,-341.22,186.601)       : 109.584 [keV]
-TrackID 6075   Position (-214.516,-343.103,187.235)       : 1.844 [keV]
-TrackID 6077   Position (-214.537,-343.124,187.245)       : 4.09048 [keV]
-TrackID 6069   Position (-197.238,-348.585,179.751)       : 1.844 [keV]
-TrackID 6078   Position (-197.267,-348.61,179.746)       : 5.69845 [keV]
-TrackID 6066   Position (-201.918,-345.296,157.791)       : 1.844 [keV]
-TrackID 6079   Position (-203.762,-348.417,157.332)       : 34.264 [keV]
-TrackID 6059   Position (-176.733,-302.496,164.128)       : 2155.85 [keV]
-TrackID 6059   Position (-205.586,-343.125,182.138)       : 1897.61 [keV]
-TrackID 6059   Position (-233.835,-384.475,202.644)       : 179.81 [keV]
-TrackID 6059   Position (-234.083,-384.849,202.822)       : 1681.33 [keV]
-TrackID 6081   Position (-234.083,-384.849,202.822)       : 1.844 [keV]
-TrackID 6108   Position (-234.238,-385.085,202.937)       : 31.2892 [keV]
-TrackID 6109   Position (69.5498,240.131,-140.467)       : 55.7063 [keV]
-TrackID 6109   Position (69.6012,240.308,-140.571)       : 1676.64 [keV]
-TrackID 6109   Position (83.4597,288.157,-168.563)       : 2259.73 [keV]
-TrackID 6109   Position (97.3705,336.183,-196.663)       : 1641.59 [keV]
-TrackID 6109   Position (98.5313,340.191,-199.008)       : 317.128 [keV]
-TrackID 6109   Position (111.278,384.21,-224.763)       : 600.899 [keV]
-TrackID 6109   Position (111.766,385.893,-225.747)       : 1033.31 [keV]
-TrackID 6109   Position (112.567,388.662,-227.368)       : 131.391 [keV]
-TrackID 6109   Position (125.184,432.237,-252.865)       : 2691.55 [keV]
-TrackID 6109   Position (126.553,436.965,-255.631)       : 18.2346 [keV]
-TrackID 6112   Position (289.83,89.3294,-182.286)       : 130.956 [keV]
-TrackID 6111   Position (-208.115,400.622,19.8208)       : 155.853 [keV]
-TrackID 6162   Position (98.5313,340.191,-199.008)       : 168.377 [keV]
-TrackID 6162   Position (98.5105,340.462,-198.893)       : 60.1845 [keV]
-TrackID 6162   Position (98.4593,340.571,-199.011)       : 32.8183 [keV]
-TrackID 6162   Position (98.5468,340.637,-199.097)       : 63.0788 [keV]
-TrackID 6162   Position (98.6507,340.667,-199.058)       : 38.1439 [keV]
-TrackID 6162   Position (98.718,340.598,-199.032)       : 50.9118 [keV]
-TrackID 6162   Position (98.7971,340.568,-198.964)       : 100.145 [keV]
-TrackID 6162   Position (98.8098,340.477,-198.933)       : 188.324 [keV]
-TrackID -1   Position (356.155,-283.158,-354.242)       : 878.133 [keV]
-TrackID -1   Position (354.501,-283.181,-356.846)       : 1037.05 [keV]
-TrackID -1   Position (354.429,-280.807,-359.056)       : 1134.71 [keV]
-TrackID -1   Position (354.321,-282.404,-361.266)       : 250.142 [keV]
-TrackID -1   Position (353.691,-282.725,-361.176)       : 747.055 [keV]
-TrackID -1   Position (352.919,-283.84,-360.559)       : 478.472 [keV]
-TrackID -1   Position (353.266,-284.065,-360.351)       : 124.31 [keV]
-TrackID -1   Position (356.711,-280.025,-350.346)       : 129.78 [keV]
-TrackID -1   Position (353.226,-282.635,-361.512)       : 1.844 [keV]
-TrackID -1   Position (350.966,-282.446,-360.43)       : 30.0108 [keV]
-TrackID -1   Position (353.226,-282.635,-361.512)       : 1.06157 [keV]
-TrackID -1   Position (58.9307,447.397,-269.213)       : 24.8166 [keV]
-TrackID -1   Position (60.3038,-297.045,-181.098)       : 299.968 [keV]
-TrackID -1   Position (-184.143,-239.861,146.388)       : 8.48103 [keV]
-TrackID -1   Position (390.099,90.8587,-144.557)       : 48.4185 [keV]
-TrackID -1   Position (390.205,90.7739,-144.542)       : 371.435 [keV]
-TrackID -1   Position (390.334,90.6494,-144.489)       : 70.9591 [keV]
-TrackID -1   Position (390.497,90.5737,-144.38)       : 73.3265 [keV]
-TrackID -1   Position (390.512,90.5604,-144.123)       : 18.5718 [keV]
-TrackID -1   Position (390.516,90.5346,-144.072)       : 79.1778 [keV]
-TrackID -1   Position (390.53,90.3094,-143.963)       : 34.4306 [keV]
-TrackID -1   Position (390.599,90.2615,-143.897)       : 79.689 [keV]
-TrackID -1   Position (390.82,90.1739,-143.805)       : 511.346 [keV]
-TrackID -1   Position (390.599,90.2615,-143.897)       : 1.844 [keV]
-TrackID -1   Position (389.917,90.5609,-143.946)       : 16.2747 [keV]
-TrackID -1   Position (390.516,90.5346,-144.072)       : 1.844 [keV]
-TrackID -1   Position (390.511,90.5308,-144.067)       : 7.45642 [keV]
-TrackID -1   Position (289.037,-347.265,-400.959)       : 413.302 [keV]
-TrackID -1   Position (183.077,416.543,-265.359)       : 30.4832 [keV]
-TrackID -1   Position (183.108,416.466,-265.334)       : 34.9014 [keV]
-TrackID -1   Position (183.119,416.334,-265.275)       : 32.4067 [keV]
-TrackID -1   Position (183.147,416.24,-265.237)       : 59.5831 [keV]
-TrackID -1   Position (183.25,416.14,-265.252)       : 44.9903 [keV]
-TrackID -1   Position (183.389,416.17,-265.28)       : 46.6907 [keV]
-TrackID -1   Position (183.486,416.208,-265.372)       : 40.4015 [keV]
-TrackID -1   Position (183.599,416.138,-265.438)       : 52.2747 [keV]
-TrackID -1   Position (183.671,416.07,-265.523)       : 51.0582 [keV]
-TrackID -1   Position (183.807,416.031,-265.528)       : 48.9126 [keV]
-TrackID -1   Position (183.828,415.911,-265.45)       : 58.2197 [keV]
-TrackID -1   Position (183.85,415.799,-265.358)       : 52.8952 [keV]
-TrackID -1   Position (183.923,415.866,-265.255)       : 80.7431 [keV]
-TrackID -1   Position (183.975,415.914,-265.178)       : 150.405 [keV]
-TrackID -1   Position (183.147,416.24,-265.237)       : 21.63 [keV]
-TrackID -1   Position (183.117,416.185,-265.242)       : 22.6331 [keV]
-TrackID -1   Position (183.085,416.101,-265.224)       : 65.6062 [keV]
-TrackID -1   Position (183.001,416.049,-265.272)       : 51.8966 [keV]
-TrackID -1   Position (182.886,416.051,-265.221)       : 272.26 [keV]
-TrackID -1   Position (238.153,387.696,-195.344)       : 66.6073 [keV]
-TrackID -1   Position (238.306,387.6,-195.269)       : 1.69591 [keV]
-TrackID -1   Position (-350.025,283.19,381.448)       : 63.3157 [keV]
-TrackID -1   Position (-343.568,297.817,362.307)       : 101.15 [keV]
-TrackID -1   Position (-258.516,238.268,315.844)       : 370.378 [keV]
-TrackID -1   Position (-248.704,249.165,316.191)       : 186.918 [keV]
-TrackID -1   Position (-248.979,249.027,316.54)       : 443.415 [keV]
-TrackID -1   Position (-248.998,248.433,316.832)       : 360.373 [keV]
-TrackID -1   Position (-70.8355,244.004,107.091)       : 3.61946 [keV]
-TrackID -1   Position (-72.6372,242.171,106.917)       : 12.3666 [keV]
-TrackID -1   Position (-21.825,349.844,185.737)       : 20.8113 [keV]
-TrackID -1   Position (-422.958,-156.96,86.1138)       : 32.4695 [keV]
-TrackID -1   Position (-295.21,-63.6974,-50.1788)       : 93.1267 [keV]
-TrackID -1   Position (-297.289,-67.2079,-48.482)       : 16.8893 [keV]
-TrackID -1   Position (-337.646,-100.805,23.842)       : 491.677 [keV]
-TrackID -1   Position (-250.285,-45.6709,30.9994)       : 61.5758 [keV]
-TrackID -1   Position (142.323,324.659,-81.9167)       : 48.1891 [keV]
-TrackID -1   Position (142.394,324.559,-81.7801)       : 63.0929 [keV]
-TrackID -1   Position (142.435,324.447,-81.612)       : 77.749 [keV]
-TrackID -1   Position (142.44,324.363,-81.4226)       : 90.6553 [keV]
-TrackID -1   Position (142.453,324.277,-81.2253)       : 84.8012 [keV]
-TrackID -1   Position (142.453,324.156,-81.0169)       : 116.788 [keV]
-TrackID -1   Position (142.572,324.136,-80.7871)       : 92.2558 [keV]
-TrackID -1   Position (142.708,324.23,-80.5913)       : 51.4544 [keV]
-TrackID -1   Position (142.795,324.293,-80.3947)       : 78.711 [keV]
-TrackID -1   Position (142.9,324.435,-80.2805)       : 75.2025 [keV]
-TrackID -1   Position (142.971,324.482,-80.0972)       : 68.7731 [keV]
-TrackID -1   Position (143.109,324.553,-79.957)       : 171.8 [keV]
-TrackID -1   Position (143.286,324.515,-79.8712)       : 65.6807 [keV]
-TrackID -1   Position (143.458,324.411,-79.8173)       : 95.6036 [keV]
-TrackID -1   Position (143.291,324.387,-79.7526)       : 82.5768 [keV]
-TrackID -1   Position (143.422,324.279,-79.6916)       : 207.629 [keV]
-TrackID -1   Position (101.131,440.324,-382.79)       : 124.021 [keV]
-TrackID -1   Position (364.454,-170.54,-230.137)       : 273.626 [keV]
-TrackID -1   Position (239,-82.6882,-240.611)       : 160.503 [keV]
-TrackID -1   Position (152.06,319.691,-194.973)       : 196.769 [keV]
-TrackID -1   Position (284.61,101.592,-174.507)       : 17.8141 [keV]
-TrackID -1   Position (140.188,325.52,-268.679)       : 30.8862 [keV]
-TrackID -1   Position (140.133,325.446,-268.655)       : 64.4384 [keV]
-TrackID -1   Position (140.003,325.302,-268.677)       : 59.7123 [keV]
-TrackID -1   Position (139.933,325.109,-268.81)       : 73.7295 [keV]
-TrackID -1   Position (139.839,324.836,-268.88)       : 127.927 [keV]
-TrackID -1   Position (139.584,324.531,-268.817)       : 144.401 [keV]
-TrackID -1   Position (139.232,324.161,-268.823)       : 483.025 [keV]
-TrackID -1   Position (138.573,324.101,-268.706)       : 329.699 [keV]
-TrackID -1   Position (57.0293,448.024,-289.221)       : 295.531 [keV]
-TrackID -1   Position (95.8238,440.272,-372.032)       : 88.6027 [keV]
-TrackID -1   Position (95.7428,440.198,-371.919)       : 62.3134 [keV]
-TrackID -1   Position (95.7114,440.082,-371.867)       : 34.1898 [keV]
-TrackID -1   Position (95.6297,440.057,-371.91)       : 37.1323 [keV]
-TrackID -1   Position (95.5671,440.069,-371.97)       : 26.8714 [keV]
-TrackID -1   Position (95.4862,440.086,-371.983)       : 33.212 [keV]
-TrackID -1   Position (95.4221,440.146,-371.991)       : 228.733 [keV]
-TrackID -1   Position (-157.765,313.975,-205.006)       : 515.191 [keV]
-TrackID -1   Position (-157.914,313.749,-204.748)       : 19.2514 [keV]
-TrackID -1   Position (164.973,313.989,-344.946)       : 39.1943 [keV]
-TrackID -1   Position (164.914,313.897,-344.966)       : 38.5747 [keV]
-TrackID -1   Position (164.945,313.796,-344.908)       : 50.4822 [keV]
-TrackID -1   Position (165.055,313.727,-344.847)       : 52.537 [keV]
-TrackID -1   Position (165.127,313.722,-344.734)       : 34.7593 [keV]
-TrackID -1   Position (165.088,313.827,-344.65)       : 43.2698 [keV]
-TrackID -1   Position (165.154,313.923,-344.65)       : 28.7046 [keV]
-TrackID -1   Position (165.141,313.998,-344.671)       : 35.4197 [keV]
-TrackID -1   Position (165.099,313.988,-344.713)       : 26.4877 [keV]
-TrackID -1   Position (165.046,313.998,-344.752)       : 75.0517 [keV]
-TrackID -1   Position (165.048,313.983,-344.83)       : 147.277 [keV]
-TrackID -1   Position (-290.959,-343.49,-380.413)       : 23.3212 [keV]
-TrackID -1   Position (-290.946,-343.536,-380.455)       : 16.5302 [keV]
-TrackID -1   Position (-290.909,-343.552,-380.493)       : 13.5487 [keV]
-TrackID -1   Position (-290.881,-343.557,-380.533)       : 17.5458 [keV]
-TrackID -1   Position (-290.908,-343.546,-380.57)       : 15.4091 [keV]
-TrackID -1   Position (-290.903,-343.515,-380.609)       : 10.308 [keV]
-TrackID -1   Position (-290.885,-343.481,-380.62)       : 14.2658 [keV]
-TrackID -1   Position (-290.854,-343.487,-380.622)       : 10.4608 [keV]
-TrackID -1   Position (-290.826,-343.475,-380.622)       : 17.9652 [keV]
-TrackID -1   Position (-290.798,-343.473,-380.609)       : 11.3547 [keV]
-TrackID -1   Position (-290.769,-343.464,-380.616)       : 5.65038 [keV]
-TrackID -1   Position (-251.694,-317.293,-373.729)       : 8.83843 [keV]
-TrackID -1   Position (-251.678,-317.294,-373.723)       : 5.05712 [keV]
-TrackID -1   Position (-251.665,-317.296,-373.715)       : 3.85603 [keV]
-TrackID -1   Position (-251.654,-317.298,-373.705)       : 4.03588 [keV]
-TrackID -1   Position (-251.641,-317.3,-373.697)       : 3.00037 [keV]
-TrackID -1   Position (-251.629,-317.31,-373.696)       : 9.1426 [keV]
-TrackID -1   Position (-251.629,-317.319,-373.684)       : 32.4248 [keV]
-TrackID -1   Position (-251.631,-317.321,-373.669)       : 10.7957 [keV]
-TrackID -1   Position (-251.634,-317.326,-373.655)       : 3.0149 [keV]
-TrackID -1   Position (-251.628,-317.337,-373.646)       : 6.21787 [keV]
-TrackID -1   Position (-251.625,-317.348,-373.636)       : 1.46283 [keV]
-TrackID -1   Position (-151.129,-375.746,-338.354)       : 1.9106 [keV]
-TrackID -1   Position (-151.126,-375.744,-338.352)       : 2.50633 [keV]
-TrackID -1   Position (-151.123,-375.74,-338.352)       : 5.87036 [keV]
-TrackID -1   Position (-151.121,-375.735,-338.352)       : 1.64872 [keV]
-TrackID -1   Position (-151.119,-375.731,-338.351)       : 4.69654 [keV]
-TrackID -1   Position (-151.118,-375.726,-338.35)       : 1.96867 [keV]
-TrackID -1   Position (-151.117,-375.72,-338.348)       : 7.33032 [keV]
-TrackID -1   Position (-151.126,-375.721,-338.348)       : 8.63139 [keV]
-TrackID -1   Position (-151.13,-375.715,-338.348)       : 2.58766 [keV]
-TrackID -1   Position (-151.128,-375.721,-338.343)       : 3.01618 [keV]
-TrackID -1   Position (-151.127,-375.724,-338.338)       : 3.30553 [keV]
-TrackID -1   Position (-151.127,-375.728,-338.333)       : 8.89955 [keV]
-TrackID -1   Position (-151.127,-375.73,-338.329)       : 4.09265 [keV]
-TrackID -1   Position (-151.124,-375.729,-338.325)       : 4.09183 [keV]
-TrackID -1   Position (-151.124,-375.727,-338.32)       : 6.91053 [keV]
-TrackID -1   Position (-151.12,-375.723,-338.32)       : 4.86746 [keV]
-TrackID -1   Position (-151.113,-375.722,-338.318)       : 10.1515 [keV]
-TrackID -1   Position (-151.111,-375.723,-338.31)       : 50.7386 [keV]
-TrackID -1   Position (-251.167,-171.053,-277.625)       : 367.373 [keV]
-TrackID -1   Position (-140.982,268.429,15.666)       : 4.69771 [keV]
-TrackID -1   Position (48.4642,-348.118,-68.5966)       : 67.1895 [keV]
-TrackID -1   Position (208.617,-399.564,-157.536)       : 164.742 [keV]
-TrackID -1   Position (208.595,-399.872,-157.535)       : 17.2513 [keV]
-TrackID -1   Position (208.596,-399.888,-157.534)       : 94.8926 [keV]
-TrackID -1   Position (208.754,-400.125,-157.546)       : 476.672 [keV]
-TrackID -1   Position (208.82,-400.528,-157.308)       : 153.209 [keV]
-TrackID -1   Position (194.436,-292.699,-192.021)       : 65.544 [keV]
-TrackID -1   Position (-252.312,16.4715,-123.511)       : 358.079 [keV]
-TrackID -1   Position (282.767,212.421,174.443)       : 20.4594 [keV]
-TrackID -1   Position (256.35,159.73,161.073)       : 543.298 [keV]
-TrackID -1   Position (256.351,159.267,161.519)       : 243.52 [keV]
-TrackID -1   Position (-390.676,91.4809,188.179)       : 314.02 [keV]
-TrackID -1   Position (-301.997,181.272,135.707)       : 85.0052 [keV]
-TrackID -1   Position (137.733,267.293,-65.2267)       : 24.8142 [keV]
-TrackID -1   Position (199.119,290.836,-114.413)       : 250.226 [keV]
-TrackID -1   Position (199.574,290.475,-114.127)       : 667.378 [keV]
-TrackID -1   Position (200.26,290.282,-113.784)       : 255.602 [keV]
-TrackID -1   Position (192.921,351.635,-354.143)       : 103.957 [keV]
-TrackID -1   Position (192.951,351.343,-353.986)       : 84.6014 [keV]
-TrackID -1   Position (192.816,351.165,-354.065)       : 72.084 [keV]
-TrackID -1   Position (192.648,351.185,-354.077)       : 328.692 [keV]
-TrackID -1   Position (-422.39,162.882,-317.256)       : 178.607 [keV]
-TrackID -1   Position (-422.913,162.644,-317.139)       : 146.991 [keV]
-TrackID -1   Position (-422.923,162.301,-316.707)       : 280.206 [keV]
-TrackID -1   Position (-422.767,162.134,-316.158)       : 179.806 [keV]
-TrackID -1   Position (-422.367,161.859,-315.718)       : 640.025 [keV]
-TrackID -1   Position (-421.815,161.395,-315.688)       : 218.996 [keV]
-TrackID -1   Position (171.245,363.36,-126.378)       : 384.422 [keV]
-TrackID -1   Position (172.52,361.945,-132.552)       : 80.4806 [keV]
-TrackID -1   Position (172.569,361.691,-132.411)       : 105.547 [keV]
-TrackID -1   Position (172.69,361.562,-132.294)       : 94.0313 [keV]
-TrackID -1   Position (172.73,361.288,-132.097)       : 235.25 [keV]
-TrackID -1   Position (172.922,361.085,-131.928)       : 92.6245 [keV]
-TrackID -1   Position (173.051,360.916,-131.667)       : 89.3341 [keV]
-TrackID -1   Position (173.11,360.756,-131.376)       : 104.171 [keV]
-TrackID -1   Position (169.401,311.975,-53.9683)       : 42.334 [keV]
-TrackID -1   Position (169.437,311.892,-53.8668)       : 32.32 [keV]
-TrackID -1   Position (169.491,311.866,-53.7748)       : 33.9232 [keV]
-TrackID -1   Position (169.584,311.833,-53.7299)       : 19.2333 [keV]
-TrackID -1   Position (269.193,295.863,-39.3915)       : 16.4748 [keV]
-TrackID -1   Position (269.262,295.87,-39.3843)       : 21.9602 [keV]
-TrackID -1   Position (269.336,295.878,-39.347)       : 19.2589 [keV]
-TrackID -1   Position (269.414,295.866,-39.3196)       : 28.0634 [keV]
-TrackID -1   Position (269.48,295.819,-39.3007)       : 57.1748 [keV]
-TrackID -1   Position (269.553,295.8,-39.2666)       : 28.0965 [keV]
-TrackID -1   Position (269.63,295.789,-39.2416)       : 32.797 [keV]
-TrackID -1   Position (269.686,295.808,-39.1848)       : 30.416 [keV]
-TrackID -1   Position (269.719,295.871,-39.1385)       : 38.3718 [keV]
-TrackID -1   Position (269.704,295.916,-39.0436)       : 35.2505 [keV]
-TrackID -1   Position (269.73,295.978,-38.9536)       : 258 [keV]
-TrackID -1   Position (269.83,295.971,-38.8774)       : 311.896 [keV]
-TrackID -1   Position (223.776,207.242,-16.5279)       : 1.844 [keV]
-TrackID -1   Position (227.368,196.392,-8.38883)       : 36.8214 [keV]
-TrackID -1   Position (-288.894,96.2127,-131.864)       : 91.9778 [keV]
-TrackID -1   Position (-289.013,96.0888,-131.851)       : 91.3175 [keV]
-TrackID -1   Position (-289.148,95.9515,-131.78)       : 70.6512 [keV]
-TrackID -1   Position (-289.267,95.8111,-131.688)       : 72.9519 [keV]
-TrackID -1   Position (-289.384,95.654,-131.631)       : 81.0043 [keV]
-TrackID -1   Position (-289.517,95.6302,-131.474)       : 40.8311 [keV]
-TrackID -1   Position (-330.35,115.624,-79.0414)       : 36.735 [keV]
-TrackID -1   Position (-330.4,115.64,-79.0012)       : 26.5219 [keV]
-TrackID -1   Position (-330.478,115.657,-78.9396)       : 31.4068 [keV]
-TrackID -1   Position (-330.521,115.611,-78.8622)       : 27.4049 [keV]
-TrackID -1   Position (-330.57,115.586,-78.7781)       : 30.6433 [keV]
-TrackID -1   Position (-330.599,115.594,-78.6824)       : 57.2523 [keV]
-TrackID -1   Position (-330.597,115.639,-78.5909)       : 31.015 [keV]
-TrackID -1   Position (-330.595,115.62,-78.4924)       : 51.2801 [keV]
-TrackID -1   Position (-330.576,115.575,-78.4053)       : 29.2491 [keV]
-TrackID -1   Position (-330.528,115.527,-78.3302)       : 28.7439 [keV]
-TrackID -1   Position (-330.487,115.552,-78.244)       : 33.4672 [keV]
-TrackID -1   Position (-330.469,115.61,-78.1646)       : 143.28 [keV]
-TrackID -1   Position (-330.405,115.684,-78.1367)       : 30.8773 [keV]
-TrackID -1   Position (-277.476,126.618,2.88362)       : 9.99731 [keV]
-TrackID -1   Position (-277.454,126.612,2.90451)       : 15.4145 [keV]
-TrackID -1   Position (-277.44,126.609,2.92847)       : 9.67503 [keV]
-TrackID -1   Position (-277.42,126.613,2.94709)       : 12.199 [keV]
-TrackID -1   Position (-277.402,126.607,2.96704)       : 11.0308 [keV]
-TrackID -1   Position (-277.384,126.602,2.98705)       : 13.4156 [keV]
-TrackID -1   Position (-277.366,126.602,3.00838)       : 13.4248 [keV]
-TrackID -1   Position (-277.347,126.612,3.03224)       : 14.1176 [keV]
-TrackID -1   Position (-277.333,126.632,3.0556)       : 12.8891 [keV]
-TrackID -1   Position (-277.309,126.646,3.07697)       : 13.9471 [keV]
-TrackID -1   Position (-277.293,126.659,3.10968)       : 14.4983 [keV]
-TrackID -1   Position (-277.277,126.672,3.14914)       : 25.8892 [keV]
-TrackID -1   Position (-277.265,126.675,3.19237)       : 23.4985 [keV]
-TrackID -1   Position (-277.223,126.679,3.2175)       : 32.5603 [keV]
-TrackID -1   Position (-277.176,126.643,3.21609)       : 184.333 [keV]
-TrackID -1   Position (-72.3557,292.011,-280.093)       : 260.025 [keV]
-TrackID -1   Position (-106.985,280.509,-236.271)       : 33.6012 [keV]
-TrackID -1   Position (-107.01,280.526,-236.223)       : 30.2949 [keV]
-TrackID -1   Position (-107.052,280.562,-236.227)       : 176.094 [keV]
-TrackID -1   Position (-104.142,282.898,-247.414)       : 23.6299 [keV]
-TrackID -1   Position (-88.5476,289.807,-273.013)       : 438.984 [keV]
-TrackID -1   Position (149.651,425.508,-296.402)       : 134.737 [keV]
-TrackID -1   Position (149.7,426.286,-296.912)       : 29.6818 [keV]
-TrackID -1   Position (162.111,314.834,-309.354)       : 152.87 [keV]
-TrackID -1   Position (-295.361,272.323,-343.077)       : 152.539 [keV]
-TrackID -1   Position (-295.772,272.239,-343.06)       : 145.187 [keV]
-TrackID -1   Position (-296.203,271.884,-343.04)       : 157.918 [keV]
-TrackID -1   Position (-296.701,271.628,-343.222)       : 230.938 [keV]
-TrackID -1   Position (-297.183,272.086,-343.2)       : 255.11 [keV]
-TrackID -1   Position (-297.465,272.208,-342.756)       : 460.214 [keV]
-TrackID -1   Position (-306.406,329.568,-284.008)       : 1.844 [keV]
-TrackID -1   Position (-306.729,331.639,-281.888)       : 62.9822 [keV]
-TrackID -1   Position (24.8975,300.698,-224.016)       : 478.655 [keV]
-TrackID -1   Position (24.8655,300.289,-223.872)       : 115.676 [keV]
-TrackID -1   Position (77.2829,446.88,-337.835)       : 76.7179 [keV]
-TrackID -1   Position (88.8872,441.549,-238.51)       : 120.012 [keV]
-TrackID -1   Position (93.6395,444.518,-239.387)       : 115.74 [keV]
-TrackID -1   Position (82.2816,395.582,-339.19)       : 86.2029 [keV]
-TrackID -1   Position (237.699,384.009,-390.193)       : 130.276 [keV]
-TrackID -1   Position (238.019,383.762,-390.294)       : 251.609 [keV]
-TrackID -1   Position (238.278,383.546,-390.555)       : 195.023 [keV]
-TrackID -1   Position (238.723,383.509,-390.464)       : 414.719 [keV]
-TrackID -1   Position (238.914,383.794,-390.34)       : 110.006 [keV]
-TrackID -1   Position (237.699,384.009,-390.193)       : 234.627 [keV]
-TrackID -1   Position (237.818,383.459,-390.422)       : 102.513 [keV]
-TrackID -1   Position (237.712,383.256,-390.625)       : 89.7004 [keV]
-TrackID -1   Position (237.57,383.315,-390.871)       : 502.872 [keV]
-TrackID -1   Position (39.7106,298.294,-200.104)       : 66.209 [keV]
-TrackID -1   Position (236.985,387.852,-379.021)       : 91.0472 [keV]
-TrackID -1   Position (151.571,424.779,-368.693)       : 454.712 [keV]
-TrackID -1   Position (173.587,419.696,-215.702)       : 16.7326 [keV]
-TrackID -1   Position (266.052,304.176,-265.107)       : 418.369 [keV]
-TrackID -1   Position (91.9431,441.52,-287.354)       : 318.483 [keV]
-TrackID -1   Position (164.235,421.695,-351.891)       : 547.655 [keV]
-TrackID -1   Position (169.34,312.008,-221.121)       : 21.3392 [keV]
-TrackID -1   Position (135.797,273.101,-177.202)       : 33.2347 [keV]
-TrackID -1   Position (-199.869,287.319,-141.441)       : 20.368 [keV]
-TrackID -1   Position (366.213,-172.953,-379.761)       : 0.00804414 [keV]
-TrackID -1   Position (361.503,-181.435,-372.209)       : 0.00363105 [keV]
-TrackID -1   Position (-385.446,-106.919,-365.471)       : 0.0297624 [keV]
-TrackID -1   Position (198.621,409.359,-97.454)       : 0.295635 [keV]
-TrackID -1   Position (219.21,397.099,-81.2165)       : 4.95936 [keV]
-TrackID -1   Position (-367.901,156.999,-356.993)       : 1.93699 [keV]
-TrackID -1   Position (101.969,228.987,-250)       : 0.0100602 [keV]
-TrackID -1   Position (278.408,358.984,-409.882)       : 96.6045 [keV]
-TrackID -1   Position (-376.105,140.047,-159.264)       : 95.2694 [keV]
-TrackID -1   Position (-243.133,-379.268,246.024)       : 44.7891 [keV]
-TrackID -1   Position (-157.754,-195.264,-19.6751)       : 211.574 [keV]
-TrackID -1   Position (-83.5055,288.144,-57.0803)       : 1.844 [keV]
-TrackID -1   Position (-82.6663,293.262,-59.0503)       : 112.847 [keV]
-TrackID -1   Position (-162.42,-193.152,128.179)       : 52.0977 [keV]
-TrackID -1   Position (-170.176,-185.626,131.841)       : 261.581 [keV]
-TrackID -1   Position (-62.2828,-242.117,132.767)       : 2.06511 [keV]
-TrackID -1   Position (-62.2839,-242.12,132.766)       : 0.693258 [keV]
-TrackID -1   Position (-62.2845,-242.121,132.766)       : 0.546645 [keV]
-TrackID -1   Position (-62.2857,-242.123,132.767)       : 21.6784 [keV]
-TrackID -1   Position (-62.2866,-242.124,132.768)       : 2.20647 [keV]
-TrackID -1   Position (-62.2887,-242.125,132.768)       : 2.23797 [keV]
-TrackID -1   Position (-62.2911,-242.126,132.768)       : 2.27913 [keV]
-TrackID -1   Position (-62.2926,-242.128,132.768)       : 4.35087 [keV]
-TrackID -1   Position (-62.2961,-242.129,132.769)       : 3.33225 [keV]
-TrackID -1   Position (-62.2992,-242.13,132.77)       : 36.6828 [keV]
-TrackID -1   Position (433.465,135.007,329.099)       : 1.844 [keV]
-TrackID -1   Position (433.092,135.459,328.724)       : 129.627 [keV]
-TrackID -1   Position (433.465,135.007,329.099)       : 71.6342 [keV]
-TrackID -1   Position (-399.852,22.5075,56.4698)       : 61.498 [keV]
-TrackID -1   Position (-344.695,83.9884,-81.0748)       : 28.9045 [keV]
-TrackID -1   Position (281.269,290.469,34.4915)       : 16.1133 [keV]
-TrackID -1   Position (272.535,359.243,-94.3377)       : 42.5257 [keV]
-TrackID -1   Position (320.353,240.642,-130.537)       : 123.683 [keV]
-TrackID -1   Position (313.6,249.573,-66.3718)       : 60.4978 [keV]
-TrackID -1   Position (313.641,249.425,-66.2381)       : 62.0912 [keV]
-TrackID -1   Position (313.684,249.278,-66.0903)       : 58.3459 [keV]
-TrackID -1   Position (313.691,249.116,-65.9849)       : 70.7879 [keV]
-TrackID -1   Position (313.797,248.99,-65.9468)       : 54.0292 [keV]
-TrackID -1   Position (313.902,248.88,-65.8901)       : 52.3237 [keV]
-TrackID -1   Position (314.025,248.769,-65.9277)       : 55.2044 [keV]
-TrackID -1   Position (314.116,248.638,-65.991)       : 62.4117 [keV]
-TrackID -1   Position (314.072,248.469,-65.9791)       : 47.4979 [keV]
-TrackID -1   Position (314.051,248.372,-65.8963)       : 34.6049 [keV]
-TrackID -1   Position (314.084,248.268,-65.8519)       : 86.5207 [keV]
-TrackID -1   Position (314.064,248.199,-65.7578)       : 37.8928 [keV]
-TrackID -1   Position (313.955,248.165,-65.7993)       : 52.1082 [keV]
-TrackID -1   Position (313.857,248.128,-65.8581)       : 43.5248 [keV]
-TrackID -1   Position (313.84,248.198,-65.9502)       : 57.1866 [keV]
-TrackID -1   Position (313.811,248.174,-66.0654)       : 74.1084 [keV]
-TrackID -1   Position (313.775,248.111,-66.1626)       : 7.02523 [keV]
-TrackID -1   Position (285.456,211.045,-144.568)       : 1.90481 [keV]
-TrackID -1   Position (285.457,211.041,-144.569)       : 7.55832 [keV]
-TrackID -1   Position (285.455,211.039,-144.567)       : 1.36854 [keV]
-TrackID -1   Position (285.452,211.038,-144.564)       : 2.30391 [keV]
-TrackID -1   Position (285.45,211.036,-144.561)       : 2.43061 [keV]
-TrackID -1   Position (285.446,211.036,-144.56)       : 3.30109 [keV]
-TrackID -1   Position (285.443,211.035,-144.558)       : 52.6858 [keV]
-TrackID -1   Position (285.439,211.032,-144.557)       : 44.3623 [keV]
-TrackID -1   Position (285.214,211.372,-144.535)       : 0.237501 [keV]
-TrackID -1   Position (285.214,211.372,-144.535)       : 0.252556 [keV]
-TrackID -1   Position (285.214,211.372,-144.535)       : 0.797364 [keV]
-TrackID -1   Position (285.214,211.372,-144.535)       : 0.508148 [keV]
-TrackID -1   Position (89.5599,-338.589,255.666)       : 15.5365 [keV]
-TrackID -1   Position (89.5615,-338.614,255.706)       : 22.5834 [keV]
-TrackID -1   Position (89.5779,-338.678,255.746)       : 127.798 [keV]
-TrackID -1   Position (89.6201,-338.738,255.805)       : 31.2908 [keV]
-TrackID -1   Position (89.622,-338.665,255.891)       : 18.9035 [keV]
-TrackID -1   Position (89.6426,-338.624,255.975)       : 41.0316 [keV]
-TrackID -1   Position (89.679,-338.601,256.049)       : 36.331 [keV]
-TrackID -1   Position (89.7229,-338.543,256.079)       : 46.059 [keV]
-TrackID -1   Position (89.7403,-338.487,256.123)       : 26.7674 [keV]
-TrackID -1   Position (89.7733,-338.425,256.132)       : 16.5568 [keV]
-TrackID -1   Position (89.7741,-338.424,256.061)       : 23.3336 [keV]
-TrackID -1   Position (89.7579,-338.387,256.002)       : 36.4679 [keV]
-TrackID -1   Position (89.754,-338.36,255.94)       : 17.262 [keV]
-TrackID -1   Position (89.74,-338.377,255.874)       : 27.1815 [keV]
-TrackID -1   Position (89.7097,-338.381,255.808)       : 32.4013 [keV]
-TrackID -1   Position (89.6871,-338.359,255.749)       : 54.1004 [keV]
-TrackID -1   Position (89.6265,-338.341,255.731)       : 22.2658 [keV]
-TrackID -1   Position (29.4051,-348.763,231.619)       : 2.26843 [keV]
-TrackID -1   Position (29.4016,-348.763,231.622)       : 3.13311 [keV]
-TrackID -1   Position (29.3976,-348.765,231.624)       : 0.785908 [keV]
-TrackID -1   Position (29.3935,-348.767,231.624)       : 2.20081 [keV]
-TrackID -1   Position (29.3901,-348.77,231.625)       : 2.71232 [keV]
-TrackID -1   Position (29.3865,-348.772,231.627)       : 3.28451 [keV]
-TrackID -1   Position (29.3822,-348.774,231.627)       : 2.71089 [keV]
-TrackID -1   Position (29.3787,-348.775,231.63)       : 1.30933 [keV]
-TrackID -1   Position (29.3755,-348.774,231.633)       : 9.88171 [keV]
-TrackID -1   Position (29.3724,-348.775,231.637)       : 3.03274 [keV]
-TrackID -1   Position (29.3706,-348.776,231.64)       : 8.97433 [keV]
-TrackID -1   Position (29.3699,-348.777,231.645)       : 3.03322 [keV]
-TrackID -1   Position (29.3677,-348.777,231.649)       : 3.51899 [keV]
-TrackID -1   Position (29.3656,-348.776,231.653)       : 1.6958 [keV]
-TrackID -1   Position (29.3686,-348.773,231.654)       : 3.56073 [keV]
-TrackID -1   Position (29.3715,-348.769,231.654)       : 6.28149 [keV]
-TrackID -1   Position (29.3697,-348.766,231.656)       : 0.276671 [keV]
-TrackID -1   Position (11.6342,-349.807,239.195)       : 0.898068 [keV]
-TrackID -1   Position (11.6341,-349.807,239.195)       : 1.00039 [keV]
-TrackID -1   Position (11.6343,-349.808,239.195)       : 0.0996306 [keV]
-TrackID -1   Position (11.6347,-349.808,239.195)       : 3.20562 [keV]
-TrackID -1   Position (11.635,-349.809,239.195)       : 3.06705 [keV]
-TrackID -1   Position (11.6353,-349.809,239.194)       : 1.76223 [keV]
-TrackID -1   Position (11.6355,-349.81,239.194)       : 1.58308 [keV]
-TrackID -1   Position (11.6362,-349.81,239.194)       : 1.73891 [keV]
-TrackID -1   Position (11.6364,-349.811,239.194)       : 1.21207 [keV]
-TrackID -1   Position (11.6362,-349.813,239.195)       : 9.95522 [keV]
-TrackID -1   Position (11.6351,-349.814,239.194)       : 15.5644 [keV]
-TrackID -1   Position (10.9753,-349.828,240.004)       : 0.320498 [keV]
-TrackID -1   Position (10.9753,-349.828,240.004)       : 0.28502 [keV]
-TrackID -1   Position (10.9753,-349.828,240.004)       : 0.0676291 [keV]
-TrackID -1   Position (10.9753,-349.828,240.004)       : 0.11789 [keV]
-TrackID -1   Position (10.9753,-349.828,240.004)       : 0.25377 [keV]
-TrackID -1   Position (10.9753,-349.828,240.004)       : 0.345182 [keV]
-TrackID -1   Position (10.9753,-349.828,240.004)       : 0.296154 [keV]
-TrackID -1   Position (10.9753,-349.828,240.004)       : 0.285198 [keV]
-TrackID -1   Position (10.9753,-349.828,240.004)       : 3.35711 [keV]
-TrackID -1   Position (37.7815,-347.955,223.676)       : 0.723929 [keV]
-TrackID -1   Position (37.7808,-347.956,223.676)       : 1.04235 [keV]
-TrackID -1   Position (37.7797,-347.957,223.675)       : 1.81153 [keV]
-TrackID -1   Position (37.7788,-347.958,223.675)       : 0.938461 [keV]
-TrackID -1   Position (37.7778,-347.959,223.675)       : 1.37135 [keV]
-TrackID -1   Position (37.7765,-347.959,223.675)       : 1.19676 [keV]
-TrackID -1   Position (37.7752,-347.96,223.675)       : 0.389041 [keV]
-TrackID -1   Position (37.7739,-347.96,223.676)       : 1.44054 [keV]
-TrackID -1   Position (37.773,-347.961,223.675)       : 0.986566 [keV]
-TrackID -1   Position (37.7719,-347.962,223.675)       : 1.28748 [keV]
-TrackID -1   Position (37.7712,-347.963,223.674)       : 0.991033 [keV]
-TrackID -1   Position (37.7706,-347.965,223.673)       : 4.10579 [keV]
-TrackID -1   Position (37.7692,-347.965,223.671)       : 2.09619 [keV]
-TrackID -1   Position (37.768,-347.965,223.669)       : 2.72852 [keV]
-TrackID -1   Position (37.7665,-347.963,223.667)       : 3.89186 [keV]
-TrackID -1   Position (37.7664,-347.962,223.666)       : 2.21627 [keV]
-TrackID -1   Position (37.7668,-347.961,223.665)       : 4.42662 [keV]
-TrackID -1   Position (37.7665,-347.96,223.664)       : 1.72624 [keV]
-TrackID -1   Position (37.7656,-347.959,223.663)       : 1.55182 [keV]
-TrackID -1   Position (37.7645,-347.959,223.662)       : 2.01822 [keV]
-TrackID -1   Position (37.7636,-347.958,223.662)       : 2.05077 [keV]
-TrackID -1   Position (37.7632,-347.957,223.662)       : 0.382965 [keV]
-TrackID -1   Position (108.165,385.487,-259.736)       : 43.3247 [keV]
-TrackID -1   Position (108.125,385.377,-259.76)       : 28.4867 [keV]
-TrackID -1   Position (108.144,385.347,-259.824)       : 31.385 [keV]
-TrackID -1   Position (108.105,385.302,-259.838)       : 27.3835 [keV]
-TrackID -1   Position (108.101,385.266,-259.873)       : 18.6685 [keV]
-TrackID -1   Position (108.113,385.272,-259.909)       : 23.3211 [keV]
-TrackID -1   Position (108.121,385.284,-259.948)       : 27.7481 [keV]
-TrackID -1   Position (108.113,385.307,-259.905)       : 131.039 [keV]
-TrackID -1   Position (-24.8421,351.96,-128.634)       : 116.885 [keV]
-TrackID -1   Position (23.3871,-451.659,-129.376)       : 112.158 [keV]
-TrackID -1   Position (77.0551,-290.495,-260.419)       : 288.356 [keV]
-TrackID -1   Position (222.502,-270.172,-340.551)       : 1.844 [keV]
-TrackID -1   Position (224.361,-271.086,-337.401)       : 138.201 [keV]
-TrackID -1   Position (256.367,-243.199,0.0069601)       : 431.846 [keV]
-TrackID -1   Position (-443.23,-82.7202,446.199)       : 44.3314 [keV]
-TrackID -1   Position (274.442,294.92,-293.686)       : 416.76 [keV]
-TrackID -1   Position (-387.402,-231.17,395.919)       : 243.783 [keV]
-TrackID -1   Position (231.259,-327.084,343.091)       : 196.038 [keV]
-TrackID -1   Position (274.261,-291.338,346.162)       : 20.5594 [keV]
-TrackID -1   Position (274.244,-291.293,346.151)       : 25.2559 [keV]
-TrackID -1   Position (274.234,-291.276,346.14)       : 10.321 [keV]
-TrackID -1   Position (274.228,-291.264,346.129)       : 4.36327 [keV]
-TrackID -1   Position (274.219,-291.256,346.124)       : 6.3019 [keV]
-TrackID -1   Position (274.209,-291.252,346.123)       : 9.72429 [keV]
-TrackID -1   Position (274.2,-291.244,346.122)       : 8.6552 [keV]
-TrackID -1   Position (274.193,-291.237,346.118)       : 0.04299 [keV]
-TrackID -1   Position (278.051,-292.819,349.147)       : 161.009 [keV]
-TrackID -1   Position (-316.517,-151.157,-212.653)       : 73.4483 [keV]
-TrackID -1   Position (-201.505,403.044,67.1588)       : 145.758 [keV]
-TrackID -1   Position (389.538,97.0076,205.272)       : 56.7568 [keV]
-TrackID -1   Position (-328.111,135.204,47.0597)       : 141.316 [keV]
-TrackID -1   Position (-328.152,135.244,46.6298)       : 151.958 [keV]
-TrackID -1   Position (-328.195,135.32,46.1666)       : 2.58522 [keV]
-TrackID -1   Position (-328.942,133.5,-75.9744)       : 180.191 [keV]
-TrackID -1   Position (-328.941,133.447,-76.3464)       : 16.6325 [keV]
-TrackID -1   Position (-376.224,135.851,-190.961)       : 72.3077 [keV]
-TrackID -1   Position (-376.365,135.817,-191.151)       : 69.1865 [keV]
-TrackID -1   Position (-345.925,79.754,-184.739)       : 47.7726 [keV]
-TrackID -1   Position (-345.841,79.5917,-184.75)       : 48.1996 [keV]
-TrackID -1   Position (-345.718,79.4203,-184.807)       : 62.4923 [keV]
-TrackID -1   Position (-345.605,79.2406,-184.877)       : 69.2468 [keV]
-TrackID -1   Position (-345.581,79.0244,-184.868)       : 65.3733 [keV]
-TrackID -1   Position (-345.601,78.8096,-184.847)       : 46.7548 [keV]
-TrackID -1   Position (-345.566,78.6087,-184.759)       : 306.885 [keV]
-TrackID -1   Position (-345.432,78.439,-184.713)       : 58.3845 [keV]
-TrackID -1   Position (-345.412,78.2218,-184.69)       : 69.6714 [keV]
-TrackID -1   Position (-345.533,78.0846,-184.535)       : 77.6306 [keV]
-TrackID -1   Position (-345.662,78.0989,-184.356)       : 121.824 [keV]
-TrackID -1   Position (-345.751,78.0784,-184.173)       : 60.6824 [keV]
-TrackID -1   Position (-345.768,78.1565,-184.044)       : 83.2378 [keV]
-TrackID -1   Position (-345.767,78.0499,-183.863)       : 76.1206 [keV]
-TrackID -1   Position (-345.846,78.0036,-183.714)       : 103.542 [keV]
-TrackID -1   Position (-345.865,78.0438,-183.527)       : 220.619 [keV]
-TrackID -1   Position (-345.768,78.1565,-184.044)       : 1.844 [keV]
-TrackID -1   Position (-345.759,78.1438,-184.035)       : 4.14195 [keV]
-TrackID -1   Position (208.584,-219.238,-236.193)       : 56.5636 [keV]
-TrackID -1   Position (-316.603,247.167,313.895)       : 26.4498 [keV]
-TrackID -1   Position (-317.536,250.012,314.336)       : 318.735 [keV]
-TrackID -1   Position (443.298,-83.6931,-147.449)       : 8.27524 [keV]
-TrackID -1   Position (296.08,71.0949,-227.809)       : 72.1559 [keV]
-TrackID -1   Position (171.881,-365.236,225.5)       : 28.5552 [keV]
-TrackID -1   Position (172.265,-365.438,225.896)       : 93.9924 [keV]
-TrackID -1   Position (-170.893,-363.494,360.435)       : 39.5826 [keV]
-TrackID -1   Position (-171.161,-363.413,360.327)       : 230.934 [keV]
-TrackID -1   Position (392.745,-221.029,-31.36)       : 89.9215 [keV]
-TrackID -1   Position (392.866,-220.962,-31.4762)       : 376.871 [keV]
-TrackID -1   Position (-37.7356,-399.602,289.931)       : 416.923 [keV]
-TrackID -1   Position (-128.898,-435.678,273.822)       : 19.7282 [keV]
-TrackID -1   Position (-301.157,40.8913,92.5306)       : 134.894 [keV]
-TrackID -1   Position (-300.904,41.2479,92.4849)       : 498.34 [keV]
-TrackID -1   Position (-300.706,41.565,92.751)       : 118.538 [keV]
-TrackID -1   Position (-189.184,-354.075,217.737)       : 303.734 [keV]
-TrackID -1   Position (-35.2259,-301.603,-30.9141)       : 391.789 [keV]
-TrackID -1   Position (-237.285,81.7939,-241.225)       : 241.334 [keV]
-TrackID -1   Position (271.356,137.67,-235.632)       : 112.671 [keV]
-TrackID -1   Position (271.51,137.738,-235.366)       : 49.7027 [keV]
-TrackID -1   Position (271.564,137.868,-235.289)       : 34.5531 [keV]
-TrackID -1   Position (271.596,137.982,-235.229)       : 41.7028 [keV]
-TrackID -1   Position (271.594,138.105,-235.176)       : 36.4438 [keV]
-TrackID -1   Position (271.597,138.167,-235.055)       : 40.8831 [keV]
-TrackID -1   Position (271.589,138.171,-234.921)       : 28.1334 [keV]
-TrackID -1   Position (271.57,138.1,-234.81)       : 36.4444 [keV]
-TrackID -1   Position (271.446,138.071,-234.767)       : 33.5501 [keV]
-TrackID -1   Position (271.428,138.19,-234.827)       : 33.5537 [keV]
-TrackID -1   Position (271.354,138.297,-234.805)       : 34.9923 [keV]
-TrackID -1   Position (271.24,138.351,-234.777)       : 44.6681 [keV]
-TrackID -1   Position (271.097,138.299,-234.763)       : 95.1025 [keV]
-TrackID -1   Position (270.954,138.295,-234.63)       : 67.2434 [keV]
-TrackID -1   Position (270.876,138.094,-234.587)       : 473.136 [keV]
-TrackID -1   Position (7.19349,-403.489,339.75)       : 422.946 [keV]
-TrackID -1   Position (7.51955,-403.234,339.81)       : 155.345 [keV]
-TrackID -1   Position (-31.7623,-350.82,275.468)       : 433.393 [keV]
-TrackID -1   Position (388.498,229.974,346.307)       : 33.2437 [keV]
-TrackID -1   Position (-397.686,69.064,394.249)       : 192.201 [keV]
-TrackID -1   Position (-59.3117,-399.544,276.089)       : 92.8198 [keV]
-TrackID -1   Position (-59.1335,-399.322,276.062)       : 502.912 [keV]
-TrackID -1   Position (-321.771,-242.316,110.716)       : 198.439 [keV]
-TrackID -1   Position (-176.194,-363.208,187.803)       : 73.2471 [keV]
-TrackID -1   Position (-447.678,70.9502,28.3701)       : 314.781 [keV]
-TrackID -1   Position (202.911,345.488,30.322)       : 193.915 [keV]
-TrackID -1   Position (190.524,296.608,18.7689)       : 112.476 [keV]
-TrackID -1   Position (89.0499,-289.905,-189.086)       : 197.096 [keV]
-TrackID -1   Position (-210.173,-344.13,-53.1539)       : 235.042 [keV]
-TrackID -1   Position (-193.272,-297.12,311.737)       : 230.513 [keV]
-TrackID -1   Position (-42.7741,448.368,-112.01)       : 39.6988 [keV]
-TrackID -1   Position (-252.301,-5.39351,-10.3876)       : 27.069 [keV]
-TrackID -1   Position (-251.265,-10.1315,-12.4834)       : 508.657 [keV]
-TrackID -1   Position (304.334,-19.9478,132.686)       : 3.56891 [keV]
-TrackID -1   Position (304.337,-19.9505,132.686)       : 4.13877 [keV]
-TrackID -1   Position (304.338,-19.9528,132.686)       : 1.58709 [keV]
-TrackID -1   Position (304.34,-19.9548,132.686)       : 2.12873 [keV]
-TrackID -1   Position (304.34,-19.9566,132.685)       : 2.0221 [keV]
-TrackID -1   Position (304.34,-19.9584,132.685)       : 1.99164 [keV]
-TrackID -1   Position (304.341,-19.9593,132.684)       : 3.53339 [keV]
-TrackID -1   Position (304.341,-19.9594,132.682)       : 4.38761 [keV]
-TrackID -1   Position (304.342,-19.9586,132.683)       : 2.29061 [keV]
-TrackID -1   Position (304.342,-19.9579,132.684)       : 1.79076 [keV]
-TrackID -1   Position (304.343,-19.9578,132.685)       : 1.88715 [keV]
-TrackID -1   Position (304.343,-19.9576,132.686)       : 4.90768 [keV]
-TrackID -1   Position (304.343,-19.9579,132.687)       : 2.95466 [keV]
-TrackID -1   Position (304.342,-19.9583,132.687)       : 17.0283 [keV]
-TrackID -1   Position (-235.699,324.98,-199.836)       : 240.218 [keV]
-TrackID -1   Position (-235.942,324.916,-199.176)       : 188.685 [keV]
-TrackID -1   Position (-235.44,325.221,-198.982)       : 137.132 [keV]
-TrackID -1   Position (-235.332,325.634,-198.946)       : 156.782 [keV]
-TrackID -1   Position (-235.035,326.027,-198.75)       : 159.353 [keV]
-TrackID -1   Position (-234.807,326.442,-198.905)       : 593.443 [keV]
-TrackID -1   Position (-234.552,326.965,-198.837)       : 140.6 [keV]
-TrackID -1   Position (-406.633,-204.144,-347.568)       : 0.559847 [keV]
-TrackID -1   Position (-385.65,-123.69,-202.744)       : 0.0242465 [keV]
-TrackID -1   Position (-448.037,-41.9855,-198.034)       : 0.00184241 [keV]
-TrackID -1   Position (-453.33,-35.2263,-197.911)       : 0.0187896 [keV]
-TrackID -1   Position (-453.347,-35.1287,-197.932)       : 0.013721 [keV]
-TrackID -1   Position (-299.676,56.7384,-275.46)       : 0.0154599 [keV]
-TrackID -1   Position (-292.314,-67.4745,-296.708)       : 0.00986517 [keV]
-TrackID -1   Position (-291.632,-80.856,-298.953)       : 0.010677 [keV]
-TrackID -1   Position (-352.956,279.145,-389.818)       : 0.00402611 [keV]
-TrackID -1   Position (248.562,167.979,-93.2655)       : 5.32513 [keV]
-TrackID -1   Position (251.115,168.814,-93.8258)       : 41.298 [keV]
-TrackID -1   Position (-351.722,-28.4405,38.4732)       : 105.267 [keV]
-TrackID -1   Position (439.542,96.4509,-273.012)       : 34.9938 [keV]
-TrackID -1   Position (-382.426,-246.526,-171.999)       : 0.0641043 [keV]
-TrackID -1   Position (-266.485,-368.796,-399.486)       : 1.53482 [keV]
-TrackID -1   Position (-86.2141,-446.757,-293.598)       : 10.2407 [keV]
-TrackID -1   Position (143.675,426.447,-352.115)       : 66.4997 [keV]
-TrackID -1   Position (391.831,80.4271,96.9523)       : 35.6476 [keV]
-TrackID -1   Position (-290.979,-82.4584,-22.2486)       : 16.745 [keV]
-TrackID -1   Position (-285.145,-107.586,-71.514)       : 8.04953 [keV]
-TrackID -1   Position (-285.171,-107.606,-71.5296)       : 37.1794 [keV]
-TrackID -1   Position (-285.173,-107.657,-71.5621)       : 18.7784 [keV]
-TrackID -1   Position (-285.184,-107.709,-71.5672)       : 33.1479 [keV]
-TrackID -1   Position (-285.188,-107.73,-71.5285)       : 22.1661 [keV]
-TrackID -1   Position (-285.207,-107.737,-71.4931)       : 16.331 [keV]
-TrackID -1   Position (-285.221,-107.739,-71.4636)       : 22.3943 [keV]
-TrackID -1   Position (-285.24,-107.765,-71.4687)       : 10.2502 [keV]
-TrackID -1   Position (-285.25,-107.764,-71.4899)       : 1.52799 [keV]
-TrackID -1   Position (-285.254,-107.763,-71.4915)       : 58.8772 [keV]
-TrackID -1   Position (-75.8664,346.799,69.2181)       : 0.0245673 [keV]
-TrackID -1   Position (-57.6962,299.493,100.066)       : 0.00946641 [keV]
-TrackID -1   Position (-57.6399,299.338,100.171)       : 0.0391138 [keV]
-TrackID -1   Position (259.758,-150.085,210.114)       : 40.099 [keV]
-TrackID -1   Position (262.201,-151.212,208.965)       : 24.0462 [keV]
-TrackID -1   Position (178.73,-181.881,165.174)       : 17.544 [keV]
-TrackID -1   Position (-372.587,256.913,311.789)       : 475.591 [keV]
-TrackID -1   Position (-372.855,256.228,311.488)       : 450.558 [keV]
-TrackID -1   Position (-365.833,268.808,322.717)       : 138.596 [keV]
-TrackID -1   Position (398.117,-220.29,400.457)       : 0.072497 [keV]
-TrackID -1   Position (-247.371,-36.1623,-16.7977)       : 38.8669 [keV]
-TrackID -1   Position (246.872,-314.729,-321.692)       : 0.34899 [keV]
-TrackID -1   Position (288.095,-345.69,-341.329)       : 17.4187 [keV]
-TrackID -1   Position (54.6377,401.298,-285.106)       : 0.00581089 [keV]
-TrackID -1   Position (103.862,442.987,-348.367)       : 0.082354 [keV]
-TrackID -1   Position (135.837,381.541,-271.213)       : 0.694414 [keV]
-TrackID -1   Position (-14.7682,454.76,-287.3)       : 0.188391 [keV]
-TrackID -1   Position (-265.229,-235.963,263.308)       : 0.0391398 [keV]
-TrackID -1   Position (-432.173,-142.308,324.441)       : 0.150273 [keV]
-TrackID -1   Position (334.74,218.974,-5.45249)       : 45.0151 [keV]
-TrackID -1   Position (293.637,199.506,-28.0629)       : 33.9411 [keV]
-TrackID -1   Position (434.916,115.533,-62.2968)       : 18.0149 [keV]
-TrackID -1   Position (-454.734,15.5587,415.041)       : 0.1146 [keV]
-TrackID -1   Position (-254.595,-377.103,205.159)       : 5.0155 [keV]
-TrackID -1   Position (396.652,51.6459,394.967)       : 0.00574092 [keV]
-TrackID -1   Position (398.837,52.0134,395.767)       : 0.00769238 [keV]
-TrackID -1   Position (-450.681,-62.5416,214.337)       : 0.00264996 [keV]
-TrackID -1   Position (-243.78,-55.4192,242.806)       : 0.197147 [keV]
-TrackID -1   Position (-450.529,-63.6279,267.104)       : 0.012388 [keV]
-TrackID -1   Position (-289.226,-96.815,227.52)       : 0.0333558 [keV]
-TrackID -1   Position (-236.63,-95.0335,198.149)       : 0.698038 [keV]
-TrackID -1   Position (-329.872,-120.27,166.572)       : 74.7539 [keV]
-TrackID -1   Position (-309.444,-333.571,205.776)       : 4.75063 [keV]
-TrackID -1   Position (-298.385,-337.096,209.173)       : 0.839582 [keV]
-TrackID -1   Position (21.3687,-304.251,82.0074)       : 4.07272 [keV]
-TrackID -1   Position (-198.369,-228.581,-298.614)       : 1.0309 [keV]
-TrackID -1   Position (-99.6124,232.782,-105.584)       : 70.8039 [keV]
-TrackID -1   Position (-164.167,254.537,-82.2885)       : 259.195 [keV]
-TrackID -1   Position (-153.848,424.588,-223.588)       : 113.395 [keV]
-TrackID -1   Position (-153.418,424.664,-223.547)       : 148.102 [keV]
-TrackID -1   Position (-153.102,424.973,-223.619)       : 126.641 [keV]
-TrackID -1   Position (-152.779,425.285,-223.768)       : 232.482 [keV]
-TrackID -1   Position (-152.326,425.513,-223.532)       : 174.677 [keV]
-TrackID -1   Position (-152.698,425.934,-223.455)       : 836.876 [keV]
-TrackID -1   Position (-153.274,426.237,-222.992)       : 92.7213 [keV]
-TrackID -1   Position (-244.582,174.381,-164.213)       : 600.25 [keV]
-TrackID -1   Position (-243.797,175.129,-163.446)       : 159.702 [keV]
-TrackID -1   Position (20.8835,299.272,2.31984)       : 714.872 [keV]
-TrackID -1   Position (22.4259,300.605,3.38397)       : 905.864 [keV]
-TrackID -1   Position (23.5197,303.017,4.89239)       : 358.026 [keV]
-TrackID -1   Position (29.6589,348.741,7.85453)       : 1259.01 [keV]
-TrackID -1   Position (29.5307,352.419,6.81681)       : 407.153 [keV]
-TrackID -1   Position (18.0007,399.595,21.2463)       : 298.811 [keV]
-TrackID -1   Position (17.4863,400.504,21.4712)       : 226.552 [keV]
-TrackID -1   Position (17.3839,401.32,21.4419)       : 224.008 [keV]
-TrackID -1   Position (17.0598,402.051,21.2974)       : 234.302 [keV]
-TrackID -1   Position (16.9479,402.655,20.8059)       : 249.133 [keV]
-TrackID -1   Position (17.1623,403.369,20.5654)       : 204.199 [keV]
-TrackID -1   Position (17.6196,403.888,20.8315)       : 259.358 [keV]
-TrackID -1   Position (18.2726,403.492,21.1401)       : 355.476 [keV]
-TrackID -1   Position (18.843,403.091,21.3504)       : 258.837 [keV]
-TrackID -1   Position (19.5416,402.821,21.427)       : 530.09 [keV]
-TrackID -1   Position (-250.639,166.413,-170.052)       : 798.779 [keV]
-TrackID -1   Position (-249.708,168.662,-169.131)       : 1389.37 [keV]
-TrackID -1   Position (-249.291,172.798,-167.44)       : 75.0874 [keV]
-TrackID -1   Position (-249.216,173.093,-167.479)       : 1026.23 [keV]
-TrackID -1   Position (-248.93,176.012,-167.645)       : 35.7553 [keV]
-TrackID -1   Position (-248.95,176.139,-167.659)       : 194.745 [keV]
-TrackID -1   Position (-261.688,232.42,-172.448)       : 1829.98 [keV]
-TrackID -1   Position (-263.723,236.538,-172.19)       : 295.983 [keV]
-TrackID -1   Position (-305.206,258.553,-129.227)       : 989.426 [keV]
-TrackID -1   Position (-306.809,260.068,-128.016)       : 476.39 [keV]
-TrackID -1   Position (-307.918,260.255,-126.605)       : 649.823 [keV]
-TrackID -1   Position (-309.054,261.321,-126.317)       : 193.119 [keV]
-TrackID -1   Position (-370.281,255.719,-106.002)       : 64.4624 [keV]
-TrackID -1   Position (-370.48,255.731,-105.925)       : 78.0806 [keV]
-TrackID -1   Position (-370.65,255.774,-105.858)       : 316.42 [keV]
-TrackID -1   Position (-370.801,255.878,-105.884)       : 50.5025 [keV]
-TrackID -1   Position (-370.929,255.995,-105.936)       : 67.5894 [keV]
-TrackID -1   Position (-371.079,256.129,-105.925)       : 62.3921 [keV]
-TrackID -1   Position (-371.261,256.289,-105.816)       : 111.189 [keV]
-TrackID -1   Position (-371.377,256.246,-105.542)       : 124.978 [keV]
-TrackID -1   Position (-371.338,256.377,-105.211)       : 503.575 [keV]
-TrackID -1   Position (-249.291,172.798,-167.44)       : 445.367 [keV]
-TrackID -1   Position (-248.903,173.064,-167.181)       : 244.141 [keV]
-TrackID -1   Position (-282.647,283.038,-178.827)       : 1.844 [keV]
-TrackID -1   Position (-283.015,284.203,-178.949)       : 38.6763 [keV]
-TrackID -1   Position (-229.133,331.266,-137.279)       : 34.0264 [keV]
-TrackID -1   Position (23.5197,303.017,4.89239)       : 1.844 [keV]
-TrackID -1   Position (23.5227,303.022,4.89348)       : 6.1586 [keV]
-TrackID -1   Position (75.5915,341.74,68.1205)       : 1.844 [keV]
-TrackID -1   Position (75.9695,342.032,68.5807)       : 48.4415 [keV]
-TrackID -1   Position (-243.797,175.129,-163.446)       : 1.844 [keV]
-TrackID -1   Position (-243.593,175.24,-163.325)       : 14.8938 [keV]
-TrackID -1   Position (-406.299,-204.807,-288.603)       : 203.869 [keV]
-TrackID -1   Position (-405.804,-204.725,-288.223)       : 2556.58 [keV]
-TrackID -1   Position (-358.973,-187.52,-260.37)       : 1690.51 [keV]
-TrackID -1   Position (-313.549,-166.47,-247.668)       : 2179.85 [keV]
-TrackID -1   Position (-263.127,-154.237,-190.628)       : 1308.33 [keV]
-TrackID -1   Position (-260.792,-152.746,-188.043)       : 1011.17 [keV]
-TrackID -1   Position (-260.034,-152.338,-185.197)       : 66.6117 [keV]
-TrackID -1   Position (-259.92,-152.197,-185.037)       : 918.472 [keV]
-TrackID -1   Position (-259.573,-151.019,-183.318)       : 194.594 [keV]
-TrackID -1   Position (-273.824,-122.557,-140.991)       : 27.3431 [keV]
-TrackID -1   Position (-273.873,-122.498,-140.873)       : 37.5067 [keV]
-TrackID -1   Position (-273.914,-122.464,-140.729)       : 48.6743 [keV]
-TrackID -1   Position (-273.912,-122.419,-140.581)       : 19.8079 [keV]
-TrackID -1   Position (-273.89,-122.41,-140.496)       : 44.061 [keV]
-TrackID -1   Position (-273.968,-122.38,-140.382)       : 38.6171 [keV]
-TrackID -1   Position (-274.013,-122.389,-140.267)       : 43.8199 [keV]
-TrackID -1   Position (-274.072,-122.36,-140.161)       : 35.029 [keV]
-TrackID -1   Position (-273.792,-122.63,-141.155)       : 0.192357 [keV]
-TrackID -1   Position (-273.792,-122.63,-141.155)       : 0.505359 [keV]
-TrackID -1   Position (-273.792,-122.63,-141.155)       : 0.264572 [keV]
-TrackID -1   Position (-259.92,-152.197,-185.037)       : 75.174 [keV]
-TrackID -1   Position (-259.741,-152.06,-185.049)       : 76.6993 [keV]
-TrackID -1   Position (-259.472,-152.005,-185.124)       : 329.816 [keV]
-TrackID -1   Position (-259.285,-151.899,-185.13)       : 58.814 [keV]
-TrackID -1   Position (-259.159,-151.879,-185.158)       : 36.0133 [keV]
-TrackID -1   Position (-259.207,-151.816,-185.236)       : 36.8785 [keV]
-TrackID -1   Position (-259.316,-151.807,-185.197)       : 60.9238 [keV]
-TrackID -1   Position (-259.339,-151.738,-185.094)       : 262.593 [keV]
-TrackID -1   Position (-260.034,-152.338,-185.197)       : 98.3455 [keV]
-TrackID -1   Position (-260.211,-152.419,-184.883)       : 127.991 [keV]
-TrackID -1   Position (-260.079,-152.584,-184.483)       : 143.32 [keV]
-TrackID -1   Position (-259.79,-152.741,-184.211)       : 116.123 [keV]
-TrackID -1   Position (-259.563,-152.784,-183.894)       : 146.12 [keV]
-TrackID -1   Position (-259.557,-152.819,-183.555)       : 104.904 [keV]
-TrackID -1   Position (-259.653,-152.564,-183.357)       : 503.141 [keV]
-TrackID -1   Position (-259.881,-152.504,-183.048)       : 45.6954 [keV]
-TrackID -1   Position (-405.804,-204.725,-288.223)       : 1.844 [keV]
-TrackID -1   Position (-405.718,-204.702,-288.161)       : 5.92699 [keV]
-TrackID -1   Position (-393.444,-228.532,-207.202)       : 590.577 [keV]
-TrackID -1   Position (-392.746,-229.35,-205.887)       : 465.964 [keV]
-TrackID -1   Position (-392.671,-229.858,-205.135)       : 88.3849 [keV]
-TrackID -1   Position (-392.389,-229.971,-204.92)       : 138.168 [keV]
-TrackID -1   Position (-391.938,-230.195,-204.819)       : 133.301 [keV]
-TrackID -1   Position (-391.628,-230.531,-204.574)       : 152.245 [keV]
-TrackID -1   Position (-391.275,-230.905,-204.593)       : 147.214 [keV]
-TrackID -1   Position (-390.778,-230.953,-204.717)       : 145.392 [keV]
-TrackID -1   Position (-390.575,-231.092,-205.156)       : 148.656 [keV]
-TrackID -1   Position (-390.593,-230.951,-205.649)       : 140.843 [keV]
-TrackID -1   Position (-390.287,-230.745,-205.961)       : 328.855 [keV]
-TrackID -1   Position (-389.822,-230.535,-206.073)       : 699.829 [keV]
-TrackID -1   Position (-389.113,-230.741,-205.966)       : 181.349 [keV]
-TrackID -1   Position (-315.563,-249.049,-68.3563)       : 650.648 [keV]
-TrackID -1   Position (-315.541,-249.245,-67.6334)       : 459.621 [keV]
-TrackID -1   Position (-145.954,318.125,-137.13)       : 20.9288 [keV]
-TrackID -1   Position (-174.733,363.285,-77.6954)       : 39.9552 [keV]
-TrackID -1   Position (-170.092,363.109,-81.92)       : 46.2319 [keV]
-TrackID -1   Position (-390.989,-98.2217,-267.48)       : 13.4175 [keV]
-TrackID -1   Position (-390.42,-102.253,-267.598)       : 81.039 [keV]
-TrackID -1   Position (-389.69,-102.627,-270.485)       : 167.745 [keV]
-TrackID -1   Position (-301.944,21.0303,122.645)       : 536.786 [keV]
-TrackID -1   Position (-301.84,21.5356,124.066)       : 969.104 [keV]
-TrackID -1   Position (-300.972,23.184,126.591)       : 98.9708 [keV]
-TrackID -1   Position (-300.952,23.3645,126.781)       : 876.919 [keV]
-TrackID -1   Position (-300.976,26.3368,126.659)       : 1047.88 [keV]
-TrackID -1   Position (-302.111,28.0087,125.817)       : 493.686 [keV]
-TrackID -1   Position (-300.895,27.9123,125.357)       : 322.57 [keV]
-TrackID -1   Position (-300.406,28.0487,129.454)       : 21.6357 [keV]
-TrackID -1   Position (-301.944,21.0303,122.645)       : 533.28 [keV]
-TrackID -1   Position (-301.758,21.7678,122.903)       : 369.545 [keV]
-TrackID -1   Position (-244.582,174.381,-164.213)       : 145.755 [keV]
-TrackID -1   Position (-244.622,174.893,-163.951)       : 150.757 [keV]
-TrackID -1   Position (-244.252,175.166,-163.661)       : 158.074 [keV]
-TrackID -1   Position (-243.89,175.557,-163.578)       : 165.044 [keV]
-TrackID -1   Position (-243.585,175.965,-163.735)       : 163.958 [keV]
-TrackID -1   Position (-243.289,176.397,-163.745)       : 160.319 [keV]
-TrackID -1   Position (-242.98,176.847,-163.692)       : 178.525 [keV]
-TrackID -1   Position (-242.504,176.825,-163.937)       : 112.023 [keV]
-TrackID -1   Position (-361.31,-175.546,-211.101)       : 224.513 [keV]
-TrackID -1   Position (-410.09,-189.031,-278.75)       : 46.395 [keV]
-TrackID -1   Position (-267.371,143.971,-161.566)       : 409.992 [keV]
-TrackID -1   Position (-267.096,144.162,-161.709)       : 115.145 [keV]
-TrackID -1   Position (-270.548,135.564,-161.216)       : 202.12 [keV]
-TrackID -1   Position (-270.943,131.267,-161.254)       : 454.863 [keV]
-TrackID -1   Position (-270.471,131.378,-160.774)       : 105.726 [keV]
-TrackID -1   Position (-270.094,131.419,-160.77)       : 170.021 [keV]
-TrackID -1   Position (-269.741,131.417,-160.894)       : 74.4129 [keV]
-TrackID -1   Position (-205.785,150.59,-159.946)       : 35.8529 [keV]
-TrackID -1   Position (-205.694,150.606,-159.933)       : 32.0239 [keV]
-TrackID -1   Position (-205.559,150.647,-159.891)       : 33.935 [keV]
-TrackID -1   Position (-205.425,150.68,-159.854)       : 35.7762 [keV]
-TrackID -1   Position (-205.317,150.76,-159.806)       : 35.2236 [keV]
-TrackID -1   Position (-205.322,150.83,-159.936)       : 60.6169 [keV]
-TrackID -1   Position (-205.335,150.927,-160.045)       : 63.0568 [keV]
-TrackID -1   Position (-205.331,151.015,-160.165)       : 39.388 [keV]
-TrackID -1   Position (-205.282,151.131,-160.24)       : 39.714 [keV]
-TrackID -1   Position (-205.284,151.228,-160.345)       : 2.5529 [keV]
-TrackID -1   Position (-205.284,151.233,-160.352)       : 16.9564 [keV]
-TrackID -1   Position (-168.305,248.341,-250.059)       : 12.6308 [keV]
-TrackID -1   Position (-168.302,248.372,-250.074)       : 19.9676 [keV]
-TrackID -1   Position (-168.312,248.398,-250.091)       : 11.6258 [keV]
-TrackID -1   Position (-168.327,248.42,-250.11)       : 18.4655 [keV]
-TrackID -1   Position (-168.338,248.43,-250.139)       : 10.1477 [keV]
-TrackID -1   Position (-168.358,248.444,-250.161)       : 13.2524 [keV]
-TrackID -1   Position (-168.386,248.456,-250.178)       : 15.4494 [keV]
-TrackID -1   Position (-168.426,248.456,-250.19)       : 17.7308 [keV]
-TrackID -1   Position (-168.46,248.478,-250.217)       : 22.7066 [keV]
-TrackID -1   Position (-168.51,248.5,-250.212)       : 24.1447 [keV]
-TrackID -1   Position (-168.557,248.554,-250.215)       : 42.8536 [keV]
-TrackID -1   Position (-168.539,248.639,-250.21)       : 243.46 [keV]
-TrackID -1   Position (-384.757,-125.589,-362.596)       : 8.96164 [keV]
-TrackID -1   Position (-383.473,-125.834,-363.066)       : 314.74 [keV]
-TrackID -1   Position (398.58,-38.8998,280.019)       : 205.076 [keV]
-TrackID -1   Position (262.249,304.544,298.798)       : 181.806 [keV]
-TrackID -1   Position (-312.703,-251.858,-308.404)       : 428.511 [keV]
-TrackID -1   Position (-415.831,-184.687,-435.303)       : 1778.18 [keV]
-TrackID -1   Position (-413.286,-182.539,-437.924)       : 1106.49 [keV]
-TrackID -1   Position (-413.009,-180.583,-440.461)       : 358.076 [keV]
-TrackID -1   Position (-412.566,-179.693,-440.653)       : 149.805 [keV]
-TrackID -1   Position (-412.946,-179.621,-441.024)       : 119.188 [keV]
-TrackID -1   Position (-413.088,-179.497,-441.207)       : 120.485 [keV]
-TrackID -1   Position (-413.247,-179.287,-441.566)       : 107.646 [keV]
-TrackID -1   Position (-413.077,-178.904,-441.76)       : 43.0635 [keV]
-TrackID -1   Position (-413.159,-179.359,-441.546)       : 1.844 [keV]
-TrackID -1   Position (-412.779,-179.287,-441.828)       : 20.5275 [keV]
-TrackID -1   Position (-413.159,-179.359,-441.546)       : 0.560593 [keV]
-TrackID -1   Position (-415,-185.221,-314.813)       : 314.485 [keV]
-TrackID -1   Position (-454.997,1.53501,-150.874)       : 0.137601 [keV]
-TrackID -1   Position (-399.983,-63.5499,-179.852)       : 0.0888148 [keV]
-TrackID -1   Position (-417.062,-181.892,-293.508)       : 0.853315 [keV]
-TrackID -1   Position (-413.368,-181.832,-289.737)       : 0.320113 [keV]
-TrackID -1   Position (-354.273,-196.253,-125.3)       : 2.27365 [keV]
-TrackID -1   Position (-346.443,-77.4759,-324.42)       : 1.5295 [keV]
-TrackID -1   Position (-345.978,-67.6501,-341.386)       : 0.475159 [keV]
-TrackID -1   Position (245.722,-46.0513,-18.6719)       : 1.98332 [keV]
-TrackID -1   Position (32.0055,-247.943,13.9291)       : 1.64562 [keV]
-TrackID -1   Position (26.2995,-253.258,14.7421)       : 1.38618 [keV]
-TrackID -1   Position (43.924,-397.581,-35.2352)       : 0.862061 [keV]
-TrackID -1   Position (74.5869,293.825,-300)       : 30.8865 [keV]
-TrackID -1   Position (77.1938,291.788,-296.042)       : 34.0443 [keV]
-TrackID -1   Position (-215.526,-282.088,199.99)       : 0.683649 [keV]
-TrackID -1   Position (246.764,-64.2833,-38.6872)       : 40.3683 [keV]
-TrackID -1   Position (241.3,-70.6277,-40.6376)       : 38.38 [keV]
-TrackID -1   Position (430.476,-147.362,-251.048)       : 0.00581459 [keV]
-TrackID -1   Position (343.12,-215.159,-141.146)       : 0.0215093 [keV]
-TrackID -1   Position (-129.658,270.534,-4.04753)       : 16.0806 [keV]
-TrackID -1   Position (12.0372,-399.819,-94.6086)       : 0.781207 [keV]
-TrackID -1   Position (57.2271,-400.936,-181.74)       : 14.9417 [keV]
-TrackID -1   Position (-316.639,-326.749,-436.006)       : 30.9616 [keV]
-TrackID -1   Position (-325.969,-317.442,-435)       : 0.00107023 [keV]
-TrackID -1   Position (-321.358,-318.827,-433.953)       : 0.000180826 [keV]
-TrackID -1   Position (-401.637,-213.805,345.903)       : 38.108 [keV]
-TrackID -1   Position (155.558,319.103,310.188)       : 18.103 [keV]
-TrackID -1   Position (-275.472,-130.921,199.632)       : 14.7829 [keV]
-TrackID -1   Position (-266.282,-138.294,211.686)       : 8.24974 [keV]
-TrackID -1   Position (-354.36,-196.097,207.53)       : 0.167406 [keV]
-TrackID -1   Position (-109.522,224.733,-60.1515)       : 3.08442 [keV]
-TrackID -1   Position (396.623,222.969,-379.398)       : 53.5309 [keV]
-TrackID -1   Position (45.7807,402.404,-173.377)       : 0.158873 [keV]
-TrackID -1   Position (205.928,-224.986,-272.722)       : 50.0085 [keV]
-TrackID -1   Position (222.685,113.628,51.1775)       : 12.5351 [keV]
-TrackID -1   Position (137.674,-208.676,-77.8672)       : 3.98324 [keV]
-TrackID -1   Position (167.164,-249.111,-238.244)       : 12.0669 [keV]
-TrackID -1   Position (215.42,-395.087,-23.7161)       : 10.3514 [keV]
-TrackID -1   Position (231.767,-332.128,-268.174)       : 8.01636 [keV]
-TrackID -1   Position (229.185,-330.489,-269.537)       : 6.22959 [keV]
-TrackID -1   Position (-378.009,-145.376,-235.796)       : 30.3215 [keV]
-TrackID -1   Position (-450.524,-63.6664,-100.184)       : 0.0145741 [keV]
-TrackID -1   Position (-305,0.112786,19.5379)       : 0.0626002 [keV]
-TrackID -1   Position (-302.988,0.94992,21.1546)       : 0.0691142 [keV]
-TrackID -1   Position (-254.957,-4.70632,86.5743)       : 0.0661015 [keV]
-TrackID -1   Position (-417.676,-176.964,-348.684)       : 144.504 [keV]
-TrackID -1   Position (-112.001,-440.115,440.536)       : 99.0337 [keV]
-TrackID -1   Position (197.371,293.693,-131.483)       : 910.987 [keV]
-TrackID -1   Position (-320.461,-241.571,-292.56)       : 89.0389 [keV]
-TrackID -1   Position (421.498,-157.605,187.464)       : 1.844 [keV]
-TrackID -1   Position (421.964,-158.479,187.557)       : 79.4521 [keV]
-TrackID -1   Position (389.949,-98.4384,181.176)       : 31.8704 [keV]
-TrackID -1   Position (392.116,-100.27,183.541)       : 83.3806 [keV]
-TrackID -1   Position (242.214,383.895,278.617)       : 0.701757 [keV]
-TrackID -1   Position (449.371,55.3559,79.2818)       : 16.6925 [keV]
-TrackID -1   Position (-197.58,230.042,-230.291)       : 74.7223 [keV]
-TrackID -1   Position (-400.627,-34.101,-311.384)       : 250.322 [keV]
-TrackID -1   Position (-353.775,-283.588,-377.172)       : 2.34408 [keV]
-TrackID -1   Position (-352.308,-281.122,-376.905)       : 1.53322 [keV]
-TrackID -1   Position (-324.924,-241.297,-362.816)       : 40.6469 [keV]
-TrackID -1   Position (-324.871,-241.278,-362.861)       : 196.2 [keV]
-TrackID -1   Position (349.987,16.6866,28.3163)       : 52.494 [keV]
-TrackID -1   Position (449.728,30.5147,-12.5498)       : 144.377 [keV]
-TrackID -1   Position (-433.829,-130.976,-406.136)       : 794.003 [keV]
-TrackID -1   Position (-405.095,-206.691,-199.429)       : 33.6849 [keV]
-TrackID -1   Position (-405.096,-206.66,-199.295)       : 33.4912 [keV]
-TrackID -1   Position (-405.085,-206.571,-199.181)       : 40.73 [keV]
-TrackID -1   Position (-405.105,-206.449,-199.11)       : 73.6084 [keV]
-TrackID -1   Position (-405.138,-206.371,-198.996)       : 79.7584 [keV]
-TrackID -1   Position (-405.129,-206.284,-198.885)       : 49.7114 [keV]
-TrackID -1   Position (-405.147,-206.2,-198.776)       : 43.9188 [keV]
-TrackID -1   Position (-405.12,-206.063,-198.735)       : 43.0404 [keV]
-TrackID -1   Position (-405.04,-205.97,-198.667)       : 69.8191 [keV]
-TrackID -1   Position (-404.97,-205.917,-198.517)       : 59.2371 [keV]
-TrackID -1   Position (-404.986,-205.902,-198.318)       : 208.877 [keV]
-TrackID -1   Position (-404.904,-205.966,-198.152)       : 72.528 [keV]
-TrackID -1   Position (-404.702,-205.942,-198.161)       : 390.449 [keV]
-TrackID -1   Position (-296.303,-343.979,-226.67)       : 280.289 [keV]
-TrackID -1   Position (-296.106,-343.925,-226.523)       : 329.793 [keV]
-TrackID -1   Position (-92.94,233.387,88.6119)       : 3.43501 [keV]
-TrackID -1   Position (-256.726,-242.752,-238.669)       : 60.7278 [keV]
-TrackID -1   Position (-148.64,-265.104,-231.117)       : 49.5243 [keV]
-TrackID -1   Position (-133.848,-269.783,-255.02)       : 13.9508 [keV]
-TrackID -1   Position (-132.815,-270.136,-265.716)       : 249.647 [keV]
-TrackID -1   Position (447.308,-49.145,342.422)       : 52.0543 [keV]
-TrackID -1   Position (-218.926,-279.458,47.9234)       : 29.3712 [keV]
-TrackID -1   Position (-450.171,30.1116,-63.2954)       : 327.555 [keV]
-TrackID -1   Position (163.2,-311.625,-294.436)       : 242.614 [keV]
-TrackID -1   Position (-250,0.155042,156.714)       : 1.84171 [keV]
-TrackID -1   Position (-329.842,306.112,-191.489)       : 0.00712318 [keV]
-TrackID -1   Position (448.817,-74.7556,35.7477)       : 0.0571592 [keV]
-TrackID -1   Position (352.236,280.054,-376.141)       : 0.0838172 [keV]
-TrackID -1   Position (355.295,277.919,-374.765)       : 0.0684049 [keV]
-TrackID -1   Position (289.282,205.769,-337.489)       : 0.0791273 [keV]
-TrackID -1   Position (266.725,-366.114,-111.612)       : 4.31234 [keV]
-TrackID -1   Position (71.4499,-241.284,25.4704)       : 108.883 [keV]
-TrackID -1   Position (226.499,-390.465,-210.323)       : 179.988 [keV]
-TrackID -1   Position (-224.863,-205.778,-178.231)       : 32.7425 [keV]
-TrackID -1   Position (-224.909,-205.84,-178.185)       : 9.05398 [keV]
-TrackID -1   Position (-224.931,-205.857,-178.164)       : 14.9583 [keV]
-TrackID -1   Position (-224.953,-205.871,-178.146)       : 7.7475 [keV]
-TrackID -1   Position (-224.973,-205.89,-178.131)       : 8.77552 [keV]
-TrackID -1   Position (-224.994,-205.904,-178.112)       : 4.02691 [keV]
-TrackID -1   Position (-271.819,-220.486,-129.262)       : 12.4662 [keV]
-TrackID -1   Position (-271.847,-220.48,-129.24)       : 8.38027 [keV]
-TrackID -1   Position (-271.868,-220.479,-129.231)       : 5.21957 [keV]
-TrackID -1   Position (-271.886,-220.468,-129.222)       : 7.55128 [keV]
-TrackID -1   Position (-271.908,-220.464,-129.22)       : 7.8484 [keV]
-TrackID -1   Position (-271.929,-220.463,-129.211)       : 4.84651 [keV]
-TrackID -1   Position (-271.95,-220.466,-129.205)       : 10.3983 [keV]
-TrackID -1   Position (-271.976,-220.469,-129.211)       : 17.6698 [keV]
-TrackID -1   Position (-271.975,-220.475,-129.242)       : 16.1221 [keV]
-TrackID -1   Position (-271.969,-220.477,-129.275)       : 14.0936 [keV]
-TrackID -1   Position (-271.962,-220.482,-129.305)       : 7.94034 [keV]
-TrackID -1   Position (-271.941,-220.479,-129.329)       : 16.0586 [keV]
-TrackID -1   Position (-271.921,-220.484,-129.345)       : 7.7006 [keV]
-TrackID -1   Position (-271.9,-220.48,-129.353)       : 6.58987 [keV]
-TrackID -1   Position (-271.88,-220.476,-129.36)       : 9.07857 [keV]
-TrackID -1   Position (-271.859,-220.482,-129.353)       : 17.3262 [keV]
-TrackID -1   Position (-271.838,-220.478,-129.354)       : 4.32313 [keV]
-TrackID -1   Position (-197.71,-232.24,-145.843)       : 2.65815 [keV]
-TrackID -1   Position (-197.706,-232.244,-145.844)       : 0.232529 [keV]
-TrackID -1   Position (-199.389,-287.652,-139.257)       : 2.38231 [keV]
-TrackID -1   Position (-199.389,-287.654,-139.253)       : 0.881619 [keV]
-TrackID -1   Position (-199.391,-287.652,-139.249)       : 1.42003 [keV]
-TrackID -1   Position (-199.393,-287.652,-139.245)       : 4.26802 [keV]
-TrackID -1   Position (-199.395,-287.652,-139.242)       : 4.81652 [keV]
-TrackID -1   Position (-199.396,-287.651,-139.238)       : 2.38384 [keV]
-TrackID -1   Position (-199.4,-287.652,-139.236)       : 3.45451 [keV]
-TrackID -1   Position (-199.403,-287.653,-139.233)       : 8.77187 [keV]
-TrackID -1   Position (-199.406,-287.654,-139.23)       : 2.52123 [keV]
-TrackID -1   Position (-199.409,-287.655,-139.228)       : 1.66284 [keV]
-TrackID -1   Position (-199.411,-287.658,-139.226)       : 3.73706 [keV]
-TrackID -1   Position (-199.414,-287.662,-139.227)       : 3.49935 [keV]
-TrackID -1   Position (-199.411,-287.666,-139.226)       : 5.62323 [keV]
-TrackID -1   Position (-199.406,-287.67,-139.23)       : 4.29544 [keV]
-TrackID -1   Position (-199.403,-287.676,-139.231)       : 5.12424 [keV]
-TrackID -1   Position (-199.405,-287.681,-139.236)       : 7.47562 [keV]
-TrackID -1   Position (-199.413,-287.683,-139.241)       : 59.0917 [keV]
-TrackID -1   Position (384.038,117.317,-397.379)       : 1.38882 [keV]
-TrackID -1   Position (-48.7548,-452.38,-402.283)       : 54.5202 [keV]
-TrackID -1   Position (431.524,-127.62,-282.089)       : 10.0662 [keV]
-TrackID -1   Position (434.811,-122.511,-286.942)       : 0.803567 [keV]
-TrackID -1   Position (-361.908,170.361,-297.993)       : 6.12066 [keV]
-TrackID -1   Position (-362.819,178.918,-295.815)       : 6.61705 [keV]
-TrackID -1   Position (264.055,-142.391,79.4289)       : 0.432148 [keV]
-TrackID -1   Position (416.877,-169.451,292.796)       : 1.59872 [keV]
-TrackID -1   Position (-239.08,-255.618,175.444)       : 65.6909 [keV]
-TrackID -1   Position (-260.976,-157.85,204.078)       : 5.66243 [keV]
-TrackID -1   Position (-262.65,-150.533,205.543)       : 47.345 [keV]
-TrackID -1   Position (-378.276,-130.029,247.81)       : 50.7321 [keV]
-TrackID -1   Position (-89.0054,-446.21,323.686)       : 6.20294 [keV]
-TrackID -1   Position (-25.0798,-404.223,309.048)       : 32.408 [keV]
-TrackID -1   Position (270.456,359.658,-40.6725)       : 12.4284 [keV]
-TrackID -1   Position (52.0149,396.604,36.7943)       : 2.51153 [keV]
-TrackID -1   Position (15.0753,454.75,135.545)       : 7.56201 [keV]
-TrackID -1   Position (17.8051,451.754,133.881)       : 9.79699 [keV]
-TrackID -1   Position (-305.949,-336.779,168.156)       : 0.0309056 [keV]
-TrackID -1   Position (-305.526,-337.023,167.734)       : 0.568545 [keV]
-TrackID -1   Position (-4.16301,-254.966,215.906)       : 0.734979 [keV]
-TrackID -1   Position (-10.4504,-299.818,226.738)       : 0.0327137 [keV]
-TrackID -1   Position (-10.6021,-300.646,226.928)       : 0.180247 [keV]
-TrackID -1   Position (-21.9325,-349.312,149.957)       : 0.513801 [keV]
-TrackID -1   Position (419.889,-166.349,-450)       : 0.529737 [keV]
-TrackID -1   Position (153.33,369.446,119.039)       : 0.0975284 [keV]
-TrackID -1   Position (150.589,373.774,133.409)       : 0.0508476 [keV]
-TrackID -1   Position (39.7674,352.766,6.53977)       : 0.0380536 [keV]
-TrackID -1   Position (-123.855,-380.342,227.058)       : 0.0568796 [keV]
-TrackID -1   Position (-198.29,-294.459,271.249)       : 0.00389029 [keV]
-TrackID -1   Position (6.39103,349.942,-304.778)       : 16.2879 [keV]
-TrackID -1   Position (6.874,350.41,-303.179)       : 9.32338 [keV]
-TrackID -1   Position (-222.848,332.173,-257.165)       : 39.3304 [keV]
-TrackID -1   Position (-222.515,335.936,-248.857)       : 18.1603 [keV]
-TrackID -1   Position (-256.219,-238.436,-236.365)       : 1.29537 [keV]
-TrackID -1   Position (-320.691,322.773,376.964)       : 0.000347325 [keV]
-TrackID -1   Position (-317.733,322.155,376.364)       : 0.000483778 [keV]
-TrackID -1   Position (-254.9,-247.085,-131.222)       : 0.314533 [keV]
-TrackID -1   Position (172.609,245.369,-141.013)       : 11.4265 [keV]
-TrackID -1   Position (101.173,386.994,-333.019)       : 21.5433 [keV]
-TrackID -1   Position (251.957,378.87,-387.566)       : 12.9147 [keV]
-TrackID -1   Position (82.0309,288.567,186.239)       : 0.365293 [keV]
-TrackID -1   Position (-193.841,235.48,-244.444)       : 0.923049 [keV]
-TrackID -1   Position (-168.825,362.627,-348.99)       : 0.74732 [keV]
-TrackID -1   Position (-135.506,328.12,-288.898)       : 0.556446 [keV]
-TrackID -1   Position (-222.223,-397.041,-200.339)       : 32.4009 [keV]
-TrackID -1   Position (-80.2119,-396.977,-196.233)       : 34.5104 [keV]
-TrackID -1   Position (-84.3086,-396.128,-191.805)       : 12.7121 [keV]
-TrackID -1   Position (122.801,-438.115,141.653)       : 18.165 [keV]
-TrackID -1   Position (-230.77,327.229,-368.805)       : 89.9115 [keV]
-TrackID -1   Position (-225.394,330.451,72.173)       : 0.025184 [keV]
-TrackID -1   Position (-349.341,-21.4638,-56.1349)       : 5.42272 [keV]
-TrackID -1   Position (-254.674,240.085,-305.039)       : 0.710519 [keV]
-TrackID -1   Position (-302.849,175.45,-327.602)       : 0.828683 [keV]
-TrackID -1   Position (-316.055,157.29,-334.002)       : 0.0133304 [keV]
-TrackID -1   Position (-307.343,328.695,-384.606)       : 0.458426 [keV]
-TrackID -1   Position (-137.18,327.424,-292.07)       : 0.349715 [keV]
-TrackID -1   Position (-40.6938,-297.227,242.553)       : 2.92321 [keV]
-TrackID -1   Position (27.8759,-253.472,63.7766)       : 2.80383 [keV]
-TrackID -1   Position (34.4244,-249.143,46.7882)       : 1.7822 [keV]
-TrackID -1   Position (-36.3313,-348.109,-46.8031)       : 1.91286 [keV]
-TrackID -1   Position (367.345,264.251,-383.052)       : 202.631 [keV]
-TrackID -1   Position (58.1655,-294.531,226.834)       : 16.266 [keV]
-TrackID -1   Position (58.1674,-294.548,226.865)       : 39.9195 [keV]
-TrackID -1   Position (58.1488,-294.615,226.862)       : 34.7423 [keV]
-TrackID -1   Position (58.0819,-294.638,226.837)       : 211.269 [keV]
-TrackID -1   Position (271.766,131.621,-144.026)       : 10.561 [keV]
-TrackID -1   Position (254.623,0.606012,-123.783)       : 69.024 [keV]
-TrackID -1   Position (301.859,-14.8165,-102.282)       : 48.2466 [keV]
-TrackID -1   Position (353.259,-1.84496,-114.056)       : 92.4467 [keV]
-TrackID -1   Position (349.034,-64.8099,-269.37)       : 54.8498 [keV]
-TrackID -1   Position (415.315,185.846,-274.182)       : 0.0361455 [keV]
-TrackID -1   Position (254.945,-5.31281,-75.6211)       : 0.0545139 [keV]
-TrackID -1   Position (117.043,-220.91,39.1999)       : 0.122915 [keV]
-TrackID -1   Position (115.794,-222.885,40.2577)       : 0.00597928 [keV]
-TrackID -1   Position (454.46,-8.56434,227.261)       : 17.0017 [keV]
-TrackID -1   Position (389.078,-235.888,50.2772)       : 0.627829 [keV]
-TrackID -1   Position (387.694,-235.132,42.4831)       : 18.6423 [keV]
-TrackID -1   Position (281.512,-216.278,256.967)       : 12.7366 [keV]
-TrackID -1   Position (281.171,-216.216,257.665)       : 7.23625 [keV]
-TrackID -1   Position (-305.393,-258.652,181.411)       : 1.844 [keV]
-TrackID -1   Position (-311.228,-254.83,172.155)       : 56.2515 [keV]
-TrackID -1   Position (-305.393,-258.652,181.411)       : 7.60173 [keV]
-TrackID -1   Position (-307.813,-256.835,183.603)       : 14.9246 [keV]
-TrackID -1   Position (452.474,-8.60505,217.028)       : 11.2625 [keV]
-TrackID -1   Position (-447.152,-75.611,304.087)       : 108.337 [keV]
-TrackID -1   Position (-447.411,-75.4463,304.21)       : 88.0848 [keV]
-TrackID -1   Position (-447.706,-75.2899,304.383)       : 93.3043 [keV]
-TrackID -1   Position (-447.991,-75.1928,304.541)       : 97.6451 [keV]
-TrackID -1   Position (-448.172,-75.0488,304.798)       : 101.695 [keV]
-TrackID -1   Position (-448.253,-74.8762,305.077)       : 95.2288 [keV]
-TrackID -1   Position (-448.263,-74.8183,305.412)       : 91.5552 [keV]
-TrackID -1   Position (-448.082,-74.8182,305.693)       : 123.946 [keV]
-TrackID -1   Position (-447.889,-74.8455,305.967)       : 98.1081 [keV]
-TrackID -1   Position (-447.724,-74.8597,306.242)       : 140.893 [keV]
-TrackID -1   Position (-447.66,-74.9661,306.553)       : 98.0586 [keV]
-TrackID -1   Position (-447.394,-75.1296,306.694)       : 141.025 [keV]
-TrackID -1   Position (-447.09,-75.2237,306.896)       : 610.638 [keV]
-TrackID -1   Position (-275.204,-222.027,203.976)       : 212.787 [keV]
-TrackID -1   Position (-275.554,-221.95,203.687)       : 139.11 [keV]
-TrackID -1   Position (-275.658,-222.037,203.376)       : 104.373 [keV]
-TrackID -1   Position (-275.749,-222.103,203.095)       : 77.0767 [keV]
-TrackID -1   Position (-275.88,-222.31,203.021)       : 61.4216 [keV]
-TrackID -1   Position (-275.932,-222.491,202.95)       : 58.4524 [keV]
-TrackID -1   Position (-275.854,-222.607,203.017)       : 77.3704 [keV]
-TrackID -1   Position (-275.821,-222.69,203.149)       : 48.9675 [keV]
-TrackID -1   Position (-275.715,-222.761,203.209)       : 61.435 [keV]
-TrackID -1   Position (-275.559,-222.729,203.235)       : 66.5139 [keV]
-TrackID -1   Position (-275.477,-222.585,203.163)       : 359.239 [keV]
-TrackID -1   Position (454.46,-8.56434,227.261)       : 878.263 [keV]
-TrackID -1   Position (-89.1376,-338.702,181.424)       : 2400.16 [keV]
-TrackID -1   Position (-176.885,176.668,-223.589)       : 0.111255 [keV]
-TrackID -1   Position (234.015,-187.715,-253.27)       : 0.0235569 [keV]
-TrackID -1   Position (-223.635,-269.234,-344.181)       : 0.014861 [keV]
-TrackID -1   Position (-279.44,-293.153,-377.002)       : 0.00760259 [keV]
-TrackID -1   Position (-244.872,-322.588,-306.292)       : 0.235931 [keV]
-TrackID -1   Position (-244.744,-322.491,-306.781)       : 0.260941 [keV]
-TrackID -1   Position (-247.403,-375.888,-399.83)       : 0.105774 [keV]
-TrackID -1   Position (-276.238,-117.015,-292.84)       : 0.106684 [keV]
-TrackID -1   Position (404.982,-3.84137,248.922)       : 4.80369 [keV]
-TrackID -1   Position (379.963,-241.097,163.139)       : 14.1859 [keV]
-TrackID -1   Position (380.548,-241.573,163.513)       : 16.6457 [keV]
-TrackID -1   Position (212.207,-344.954,-38.0747)       : 13.8139 [keV]
-TrackID -1   Position (210.736,-345.369,-39.8552)       : 12.3945 [keV]
-TrackID -1   Position (360.774,-172.748,-215.95)       : 0.416617 [keV]
-TrackID -1   Position (330.643,-305.246,-113.831)       : 0.208415 [keV]
-TrackID -1   Position (329.941,-308.328,-111.455)       : 0.45261 [keV]
-TrackID -1   Position (328.774,-310.209,-113.244)       : 0.0975244 [keV]
-TrackID -1   Position (341.755,-96.0662,-192.272)       : 0.0343661 [keV]
-TrackID -1   Position (396.72,51.1162,-194.836)       : 0.279118 [keV]
-TrackID -1   Position (399.36,57.2916,-194.563)       : 0.143963 [keV]
-TrackID -1   Position (399.557,56.6228,-193.427)       : 0.26899 [keV]
-TrackID -1   Position (216.008,135.519,127.819)       : 0.03646 [keV]
-TrackID -1   Position (-244.235,68.8602,76.59)       : 100.949 [keV]
-TrackID -1   Position (351.167,-19.0022,-300.838)       : 73.3961 [keV]
-TrackID -1   Position (351.143,-19.1532,-300.975)       : 506.243 [keV]
-TrackID -1   Position (351.09,-19.5209,-301.214)       : 94.9628 [keV]
-TrackID -1   Position (351.143,-19.1532,-300.975)       : 1.844 [keV]
-TrackID -1   Position (351.038,-19.2389,-301.091)       : 20.955 [keV]
-TrackID -1   Position (331.296,226.21,-133.41)       : 295.307 [keV]
-TrackID -1   Position (200.859,292.713,88.295)       : 0.0912404 [keV]
-TrackID -1   Position (-397.629,43.4851,45.4923)       : 27.03 [keV]
-TrackID -1   Position (321.126,-246.786,-107.059)       : 8.68933 [keV]
-TrackID -1   Position (227.09,-203.605,-143.984)       : 27.2039 [keV]
-TrackID -1   Position (237.759,-327.865,-291.162)       : 10.4247 [keV]
-TrackID -1   Position (238.557,-321.605,-296.792)       : 21.4459 [keV]
-TrackID -1   Position (-183.023,-355.672,308.749)       : 10.2062 [keV]
-TrackID -1   Position (-135.125,434.03,353.979)       : 252.352 [keV]
-TrackID -1   Position (134.625,270.61,228.477)       : 121.912 [keV]
-TrackID -1   Position (135.209,211.332,246.795)       : 77.1344 [keV]
-TrackID -1   Position (-178.986,306.576,269.782)       : 0.147498 [keV]
-TrackID -1   Position (-179.952,303.89,271.332)       : 0.166036 [keV]
-TrackID -1   Position (-231.073,326.505,278.504)       : 0.134745 [keV]
-TrackID -1   Position (129.635,383.692,-392.861)       : 2.36153 [keV]
-TrackID -1   Position (129.791,378.784,-394.69)       : 0.119618 [keV]
-TrackID -1   Position (118.899,385.305,-392.161)       : 2.10936 [keV]
-TrackID -1   Position (160.138,425.888,-439.638)       : 0.35309 [keV]
-TrackID -1   Position (-54.991,401.249,-173.419)       : 5.57558 [keV]
-TrackID -1   Position (-147.797,322.771,-58.1974)       : 39.5533 [keV]
-TrackID -1   Position (425.949,-159.977,226.753)       : 17.4863 [keV]
-TrackID -1   Position (-209.914,-214.327,263.529)       : 5.71984 [keV]
-TrackID -1   Position (-107.277,-333.154,162.783)       : 1.12421 [keV]
-TrackID -1   Position (-109.68,-333.746,159.818)       : 11.3885 [keV]
-TrackID -1   Position (-163.746,-419.151,14.2672)       : 38.5192 [keV]
-TrackID -1   Position (-254.609,14.1176,-17.1224)       : 46.2363 [keV]
-TrackID -1   Position (445.202,-93.9136,-292.677)       : 21.7955 [keV]
-TrackID -1   Position (440.921,-99.5862,-294.379)       : 32.8134 [keV]
-TrackID -1   Position (440.167,-100.619,-287.774)       : 26.0251 [keV]
-TrackID -1   Position (180.898,-356.758,366.584)       : 7.06509 [keV]
-TrackID -1   Position (283.665,-289.066,-252.646)       : 0.423429 [keV]
-TrackID -1   Position (-67.7602,-444.869,-419.511)       : 0.622376 [keV]
-TrackID -1   Position (-119.127,-387.084,-346.837)       : 0.196965 [keV]
-TrackID -1   Position (282.431,-290.272,-370.512)       : 43.0016 [keV]
-TrackID -1   Position (426.72,157.91,-340.936)       : 0.677835 [keV]
-TrackID -1   Position (424.293,158.025,-337.234)       : 1.23653 [keV]
-TrackID -1   Position (413.763,176.918,-421.538)       : 20.2296 [keV]
-TrackID -1   Position (-260.418,310.173,181.851)       : 7.62676 [keV]
-TrackID -1   Position (-258.648,309.9,180.183)       : 10.3039 [keV]
-TrackID -1   Position (-257.531,311.032,181.241)       : 7.90396 [keV]
-TrackID -1   Position (-275.618,362.022,80.1111)       : 0.869489 [keV]
-TrackID -1   Position (146.332,-377.64,-359.484)       : 25.8627 [keV]
-TrackID -1   Position (14.5289,399.736,294.802)       : 4.25451 [keV]
-TrackID -1   Position (333.144,-222.674,-351.841)       : 6.2094 [keV]
-TrackID -1   Position (338.283,-222.687,-350.003)       : 9.18677 [keV]
-TrackID -1   Position (-353.723,-186.762,117.095)       : 67.868 [keV]
-TrackID -1   Position (-215.622,-400.665,-181.982)       : 15.8844 [keV]
-TrackID -1   Position (-99.9298,-392.478,-224.2)       : 0.00100036 [keV]
-TrackID -1   Position (301.103,-341.118,-406.512)       : 69.0513 [keV]
-TrackID -1   Position (322.804,-244.587,-350.276)       : 36.2152 [keV]
-TrackID -1   Position (-354.193,-186.899,120.801)       : 81.8367 [keV]
-TrackID -1   Position (333.144,-222.674,-351.841)       : 137.438 [keV]
-TrackID -1   Position (365.674,262.264,-412.43)       : 0.0916707 [keV]
-TrackID -1   Position (45.6419,-402.42,-199.955)       : 0.000963504 [keV]
-TrackID -1   Position (-40.297,-251.796,-247.58)       : 2.37472 [keV]
-TrackID -1   Position (-24.2702,-251.083,-237.04)       : 0.360758 [keV]
-TrackID -1   Position (-259.951,367.322,387.366)       : 17.9384 [keV]
-TrackID -1   Position (352.258,-199.848,-287.527)       : 54.8268 [keV]
-TrackID -1   Position (199.484,287.587,348.921)       : 0.0808295 [keV]
-TrackID -1   Position (-36.9882,252.303,-202.052)       : 69.2624 [keV]
-TrackID -1   Position (-232.371,331.706,184.295)       : 53.1859 [keV]
-TrackID -1   Position (71.9391,-395.562,359.325)       : 926.826 [keV]
-TrackID -1   Position (71.9391,-395.562,359.325)       : 1873.27 [keV]
-TrackID -1   Position (166.189,-367.933,-67.291)       : 67.5552 [keV]
-TrackID -1   Position (-117.182,387.066,-231.474)       : 412.803 [keV]
-TrackID -1   Position (232.398,-389.779,-362.465)       : 126.422 [keV]
-TrackID -1   Position (401.086,-209.879,-375.063)       : 113.324 [keV]
-TrackID -1   Position (247.868,-56.9211,5.15693)       : 82.3577 [keV]
-TrackID -1   Position (302.885,-338.94,-424.599)       : 81.9074 [keV]
-TrackID -1   Position (302.996,-338.815,-424.561)       : 283.282 [keV]
-TrackID -1   Position (295.049,-345.891,-324.533)       : 37.8208 [keV]
-TrackID -1   Position (295.07,-345.753,-324.48)       : 37.5126 [keV]
-TrackID -1   Position (295.131,-345.644,-324.441)       : 45.2426 [keV]
-TrackID -1   Position (295.136,-345.579,-324.31)       : 50.2055 [keV]
-TrackID -1   Position (294.979,-345.565,-324.328)       : 86.523 [keV]
-TrackID -1   Position (294.805,-345.585,-324.304)       : 60.3451 [keV]
-TrackID -1   Position (294.647,-345.601,-324.161)       : 222.204 [keV]
-TrackID -1   Position (294.51,-345.491,-324.027)       : 343.239 [keV]
-TrackID -1   Position (78.9407,-393.79,354.441)       : 49.5547 [keV]
-TrackID -1   Position (87.6418,442.082,-325.624)       : 1.844 [keV]
-TrackID -1   Position (97.0006,440.723,-324.131)       : 144.992 [keV]
-TrackID -1   Position (87.6418,442.082,-325.624)       : 4.28025 [keV]
-TrackID -1   Position (-100.817,389.384,-323.485)       : 37.2989 [keV]
-TrackID -1   Position (-131.897,433.696,-315.582)       : 355.739 [keV]
-TrackID -1   Position (-65.6244,399.413,-375.827)       : 29.1046 [keV]
-TrackID -1   Position (-65.6193,399.453,-375.862)       : 12.4309 [keV]
-TrackID -1   Position (-65.622,399.504,-375.888)       : 18.0967 [keV]
-TrackID -1   Position (-65.6219,399.533,-375.919)       : 47.6396 [keV]
-TrackID -1   Position (-65.6059,399.545,-375.946)       : 19.34 [keV]
-TrackID -1   Position (-65.5788,399.541,-375.96)       : 7.79046 [keV]
-TrackID -1   Position (-65.5561,399.536,-375.982)       : 16.2746 [keV]
-TrackID -1   Position (-65.5409,399.532,-376.013)       : 10.1857 [keV]
-TrackID -1   Position (-65.5333,399.505,-376.035)       : 21.0717 [keV]
-TrackID -1   Position (-65.4954,399.489,-376.047)       : 24.4915 [keV]
-TrackID -1   Position (-65.4566,399.502,-376.07)       : 40.9613 [keV]
-TrackID -1   Position (-65.4102,399.516,-376.081)       : 34.0627 [keV]
-TrackID -1   Position (-65.3707,399.492,-376.067)       : 126.465 [keV]
-TrackID -1   Position (265.825,-230.137,-331.17)       : 277.73 [keV]
-TrackID -1   Position (263.648,-370.829,414.584)       : 0.0078817 [keV]
-TrackID -1   Position (376.515,-149.203,22.0298)       : 0.270582 [keV]
-TrackID -1   Position (334.547,-118.757,-30.2604)       : 0.00443708 [keV]
-TrackID -1   Position (346.966,45.9871,-32.4079)       : 3.71322 [keV]
-TrackID -1   Position (348.417,46.4896,-32.279)       : 5.10348 [keV]
-TrackID -1   Position (304.064,23.8826,-59.8895)       : 1.01297 [keV]
-TrackID -1   Position (303.504,23.2047,-59.7536)       : 4.39199 [keV]
-TrackID -1   Position (301.688,333.892,153.019)       : 4.76468 [keV]
-TrackID -1   Position (425.283,147.086,128.525)       : 0.443571 [keV]
-TrackID -1   Position (334.718,-118.273,-112.621)       : 0.85261 [keV]
-TrackID -1   Position (333.727,-119.26,-113.918)       : 0.720959 [keV]
-TrackID -1   Position (-415.961,-184.395,-193.115)       : 0.00297537 [keV]
-TrackID -1   Position (-141.037,-212.447,-196.074)       : 0.00786258 [keV]
-TrackID -1   Position (-202.943,-145.994,-119.456)       : 0.00370651 [keV]
-TrackID -1   Position (-383.532,-244.803,-310.521)       : 58.2405 [keV]
-TrackID -1   Position (129.415,436.207,-358.612)       : 44.8759 [keV]
-TrackID -1   Position (373.902,142.117,-211.391)       : 0.635994 [keV]
-TrackID -1   Position (388.352,237.081,-92.3163)       : 1.70751 [keV]
-TrackID -1   Position (-247.399,-254.596,-29.8581)       : 0.372846 [keV]
-TrackID -1   Position (-244.888,-254.77,-28.0257)       : 0.249862 [keV]
-TrackID -1   Position (-165.939,-193.621,97.7539)       : 0.0943387 [keV]
-TrackID -1   Position (-74.7869,-238.552,125.715)       : 0.234519 [keV]
-TrackID -1   Position (-157.585,318.107,281.08)       : 0.0201801 [keV]
-TrackID -1   Position (-110.36,284.334,287.047)       : 0.0478795 [keV]
-TrackID -1   Position (-109.808,283.885,287.126)       : 0.0130386 [keV]
-TrackID -1   Position (-270.529,-140.851,-93.175)       : 35.2211 [keV]
-TrackID -1   Position (-268.63,-139.115,-93.1703)       : 33.0303 [keV]
-TrackID -1   Position (-270.525,-140.826,-95.9406)       : 8.14827 [keV]
-TrackID -1   Position (-189.075,-171.102,9.72653)       : 14.1593 [keV]
-TrackID -1   Position (-305.056,-171.584,174.643)       : 6.4623 [keV]
-TrackID -1   Position (-288.175,-207.316,270.145)       : 0.0279117 [keV]
-TrackID -1   Position (256.792,-369.538,-447.442)       : 2.03167 [keV]
-TrackID -1   Position (260.223,-370.612,-448.579)       : 2.24333 [keV]
-TrackID -1   Position (123.104,-385.837,-270.889)       : 2.98392 [keV]
-TrackID -1   Position (109.134,-387.436,-252.826)       : 2.76787 [keV]
-TrackID -1   Position (109.398,-389.179,-255.509)       : 0.383487 [keV]
-TrackID -1   Position (-256.592,-157.302,-110.304)       : 279.951 [keV]
-TrackID -1   Position (-256.023,-157.397,-109.627)       : 227.686 [keV]
-TrackID -1   Position (-256.054,-157.402,-108.877)       : 463.16 [keV]
-TrackID -1   Position (-255.79,-156.93,-108.427)       : 146.343 [keV]
-TrackID -1   Position (-181.084,-179.537,170.296)       : 47.1241 [keV]
-TrackID -1   Position (-181.02,-179.513,170.438)       : 53.5776 [keV]
-TrackID -1   Position (-180.879,-179.441,170.585)       : 103.255 [keV]
-TrackID -1   Position (-180.797,-179.388,170.77)       : 57.4607 [keV]
-TrackID -1   Position (-180.797,-179.182,170.824)       : 74.0219 [keV]
-TrackID -1   Position (-180.779,-179.027,170.97)       : 59.4344 [keV]
-TrackID -1   Position (-180.895,-178.906,171.105)       : 50.8192 [keV]
-TrackID -1   Position (-181.008,-178.757,171.205)       : 98.0617 [keV]
-TrackID -1   Position (-180.976,-178.562,171.263)       : 62.4377 [keV]
-TrackID -1   Position (-180.852,-178.381,171.238)       : 91.8492 [keV]
-TrackID -1   Position (-180.675,-178.23,171.416)       : 97.5446 [keV]
-TrackID -1   Position (-180.485,-177.942,171.441)       : 595.88 [keV]
-TrackID -1   Position (-180.144,-177.764,171.817)       : 94.1625 [keV]
-TrackID -1   Position (-33.0632,353.166,-317.063)       : 38.8978 [keV]
-TrackID -1   Position (-222.367,-124.811,-125.393)       : 0.0753997 [keV]
-TrackID -1   Position (-215.041,-129.442,-117.35)       : 0.321931 [keV]
-TrackID -1   Position (-376.169,-255.972,284.303)       : 0.000145927 [keV]
-TrackID -1   Position (-341.878,-217.127,254.439)       : 0.00289382 [keV]
-TrackID -1   Position (-339.06,-213.934,251.98)       : 0.00111527 [keV]
-TrackID -1   Position (-307.292,328.742,-262.922)       : 0.0312844 [keV]
-TrackID -1   Position (-307.733,331.627,-261.988)       : 0.083017 [keV]
-TrackID -1   Position (-179.059,363.267,-244.483)       : 0.209779 [keV]
-TrackID -1   Position (-126.086,331.854,-283.246)       : 0.0275912 [keV]
-TrackID -1   Position (41.7264,-402.845,-277.116)       : 0.000456861 [keV]
-TrackID -1   Position (-181.045,417.43,136.443)       : 2.68344 [keV]
-TrackID -1   Position (-26.6211,-404.124,-276.111)       : 0.00373989 [keV]
-TrackID -1   Position (-91.4499,-394.54,-279.343)       : 50.1558 [keV]
-TrackID -1   Position (-312.937,-253.275,-95.6708)       : 128.473 [keV]
-TrackID -1   Position (-126.714,379.399,-125.067)       : 0.00962258 [keV]
-TrackID -1   Position (144.694,-203.872,-73.0769)       : 0.0198296 [keV]
-TrackID -1   Position (232.011,387.391,105.077)       : 121.42 [keV]
-TrackID -1   Position (-39.0172,-448.618,-332.993)       : 123.019 [keV]
-TrackID -1   Position (-38.9605,-448.475,-332.924)       : 42.8043 [keV]
-TrackID -1   Position (-38.9291,-448.382,-332.876)       : 17.297 [keV]
-TrackID -1   Position (-27.5642,-404.061,-325.609)       : 27.1166 [keV]
-TrackID -1   Position (-27.5565,-403.981,-325.596)       : 22.6003 [keV]
-TrackID -1   Position (-27.5378,-403.929,-325.541)       : 25.5384 [keV]
-TrackID -1   Position (-27.4856,-403.892,-325.497)       : 44.6951 [keV]
-TrackID -1   Position (-27.4202,-403.858,-325.476)       : 27.5543 [keV]
-TrackID -1   Position (-27.343,-403.869,-325.472)       : 26.0747 [keV]
-TrackID -1   Position (-27.279,-403.885,-325.435)       : 171.216 [keV]
-TrackID -1   Position (-27.2233,-403.938,-325.441)       : 25.8488 [keV]
-TrackID -1   Position (-27.1669,-403.981,-325.467)       : 95.6996 [keV]
-TrackID -1   Position (-27.1571,-404.057,-325.458)       : 12.8174 [keV]
-TrackID -1   Position (118.048,-434.24,-230.177)       : 10.8312 [keV]
-TrackID -1   Position (118.063,-434.246,-230.183)       : 3.41133 [keV]
-TrackID -1   Position (118.078,-434.252,-230.186)       : 4.72063 [keV]
-TrackID -1   Position (118.093,-434.257,-230.19)       : 14.133 [keV]
-TrackID -1   Position (118.106,-434.262,-230.198)       : 5.73078 [keV]
-TrackID -1   Position (118.114,-434.273,-230.206)       : 10.9963 [keV]
-TrackID -1   Position (118.12,-434.288,-230.211)       : 5.98517 [keV]
-TrackID -1   Position (118.131,-434.303,-230.212)       : 9.58521 [keV]
-TrackID -1   Position (118.122,-434.318,-230.229)       : 12.1408 [keV]
-TrackID -1   Position (118.119,-434.335,-230.251)       : 12.723 [keV]
-TrackID -1   Position (118.101,-434.334,-230.279)       : 12.7864 [keV]
-TrackID -1   Position (118.123,-434.316,-230.274)       : 10.6598 [keV]
-TrackID -1   Position (118.136,-434.314,-230.252)       : 9.75532 [keV]
-TrackID -1   Position (118.153,-434.321,-230.232)       : 21.7593 [keV]
-TrackID -1   Position (118.173,-434.333,-230.218)       : 17.4 [keV]
-TrackID -1   Position (118.173,-434.357,-230.197)       : 121.069 [keV]
-TrackID -1   Position (-268.749,-139.31,-300)       : 0.218616 [keV]
-TrackID -1   Position (-435.225,-132.682,-245.033)       : 0.00182789 [keV]
-TrackID -1   Position (343.873,65.2007,340.403)       : 0.0834991 [keV]
-TrackID -1   Position (-13.4312,-249.639,6.68306)       : 0.0489437 [keV]
-TrackID -1   Position (27.0285,-348.955,22.042)       : 0.0891033 [keV]
-TrackID -1   Position (29.1849,-353.644,22.1828)       : 0.0442536 [keV]
-TrackID -1   Position (26.516,-351.406,25.1452)       : 0.0731662 [keV]
-TrackID -1   Position (26.5118,-350.854,24.7863)       : 0.0340167 [keV]
-TrackID -1   Position (156.982,-373.338,345.028)       : 2.79927 [keV]
-TrackID -1   Position (62.7138,-400.115,382.777)       : 8.5182 [keV]
-TrackID -1   Position (162.82,-424.87,199.385)       : 1.43894 [keV]
-TrackID -1   Position (243.876,-323.341,204.593)       : 0.398691 [keV]
-TrackID -1   Position (247.829,-318.754,205.325)       : 0.6775 [keV]
-TrackID -1   Position (-406.564,204.282,47.4361)       : 0.0132986 [keV]
-TrackID -1   Position (-37.6959,-302.662,-205.385)       : 19.9343 [keV]
-TrackID -1   Position (-206.164,-342.777,88.9501)       : 17.2288 [keV]
-TrackID -1   Position (224.65,-198.827,40.0742)       : 16.3115 [keV]
-TrackID -1   Position (170.154,-305.856,16.9054)       : 13.0293 [keV]
-TrackID -1   Position (-151.277,315.619,27.0552)       : 3.9589 [keV]
-TrackID -1   Position (-151.826,316.682,27.0726)       : 14.0468 [keV]
-TrackID -1   Position (-150.099,319.404,26.6411)       : 6.24395 [keV]
-TrackID -1   Position (239.141,-387.087,137.93)       : 0.00651658 [keV]
-TrackID -1   Position (21.7347,-254.072,235.263)       : 0.016389 [keV]
-TrackID -1   Position (-84.813,-292.971,235.174)       : 12.5644 [keV]
-TrackID -1   Position (3.36695,353.682,49.2113)       : 40.7899 [keV]
-TrackID -1   Position (68.1019,244.77,76.6297)       : 69.5937 [keV]
-TrackID -1   Position (-272.289,-129.49,-28.0721)       : 381.153 [keV]
-TrackID -1   Position (-6.2992,-302.819,73.9773)       : 151.789 [keV]
-TrackID -1   Position (16.0538,-404.021,52.9133)       : 61.5781 [keV]
-TrackID -1   Position (16.0261,-404.194,52.9035)       : 61.2562 [keV]
-TrackID -1   Position (16.0506,-404.286,52.9772)       : 42.7995 [keV]
-TrackID -1   Position (15.9653,-404.235,53.0325)       : 282.568 [keV]
-TrackID -1   Position (-64.3372,-344.186,245.854)       : 65.1594 [keV]
-TrackID -1   Position (200.851,-292.541,310.443)       : 12.6606 [keV]
-TrackID -1   Position (-27.7776,403.688,76.3184)       : 41.9908 [keV]
-TrackID -1   Position (-27.8261,403.763,76.2379)       : 34.9249 [keV]
-TrackID -1   Position (-27.8485,403.822,76.1832)       : 22.1017 [keV]
-TrackID -1   Position (-27.8706,403.878,76.1629)       : 21.4207 [keV]
-TrackID -1   Position (-27.8974,403.914,76.1603)       : 13.2763 [keV]
-TrackID -1   Position (-27.9278,403.925,76.1429)       : 18.2939 [keV]
-TrackID -1   Position (-27.9503,403.937,76.1191)       : 22.0438 [keV]
-TrackID -1   Position (-27.9764,403.93,76.0977)       : 17.6378 [keV]
-TrackID -1   Position (-28.0034,403.911,76.1091)       : 20.5031 [keV]
-TrackID -1   Position (-28.0286,403.915,76.1311)       : 12.7085 [keV]
-TrackID -1   Position (-28.0455,403.9,76.1572)       : 10.8765 [keV]
-TrackID -1   Position (-28.0513,403.897,76.1935)       : 14.4617 [keV]
-TrackID -1   Position (-28.0725,403.902,76.2242)       : 19.7056 [keV]
-TrackID -1   Position (-28.068,403.931,76.2068)       : 23.181 [keV]
-TrackID -1   Position (-28.0515,403.955,76.2266)       : 17.8336 [keV]
-TrackID -1   Position (-28.0724,403.963,76.2483)       : 27.6314 [keV]
-TrackID -1   Position (-28.0972,403.983,76.2455)       : 20.7709 [keV]
-TrackID -1   Position (-28.1091,404.011,76.2408)       : 7.06321 [keV]
-TrackID -1   Position (-42.0497,448.031,50.8232)       : 0.419989 [keV]
-TrackID -1   Position (-42.0494,448.031,50.8227)       : 0.24271 [keV]
-TrackID -1   Position (-42.0491,448.032,50.8223)       : 1.61218 [keV]
-TrackID -1   Position (-42.0489,448.032,50.8219)       : 0.646922 [keV]
-TrackID -1   Position (-42.0487,448.032,50.8214)       : 0.739531 [keV]
-TrackID -1   Position (-42.049,448.033,50.8208)       : 1.13089 [keV]
-TrackID -1   Position (-42.049,448.033,50.8203)       : 0.696452 [keV]
-TrackID -1   Position (-42.0488,448.033,50.8198)       : 2.27593 [keV]
-TrackID -1   Position (-42.0487,448.034,50.8192)       : 0.503126 [keV]
-TrackID -1   Position (-42.0483,448.034,50.8186)       : 1.56823 [keV]
-TrackID -1   Position (-42.048,448.034,50.818)       : 4.47596 [keV]
-TrackID -1   Position (-42.0478,448.034,50.8174)       : 8.85939 [keV]
-TrackID -1   Position (-42.0474,448.034,50.8168)       : 4.68211 [keV]
-TrackID -1   Position (-42.0468,448.034,50.8164)       : 12.0541 [keV]
-TrackID -1   Position (245.64,-64.3189,-123.393)       : 125.157 [keV]
-TrackID -1   Position (245.685,-64.1705,-123.694)       : 67.7128 [keV]
-TrackID -1   Position (245.684,-64.0809,-123.884)       : 115.824 [keV]
-TrackID -1   Position (245.617,-63.8617,-124.139)       : 198.172 [keV]
-TrackID -1   Position (245.533,-63.8214,-124.492)       : 105.798 [keV]
-TrackID -1   Position (245.54,-63.5692,-124.79)       : 129.316 [keV]
-TrackID -1   Position (245.424,-63.3456,-125.074)       : 124.911 [keV]
-TrackID -1   Position (245.046,-63.1266,-125.162)       : 163.692 [keV]
-TrackID -1   Position (244.554,-63.4054,-125.206)       : 490.85 [keV]
-TrackID -1   Position (243.977,-63.7986,-125.135)       : 349.198 [keV]
-TrackID -1   Position (185.059,-239.843,257.703)       : 86.693 [keV]
-TrackID -1   Position (281.392,-287.014,233.917)       : 188.707 [keV]
-TrackID -1   Position (62.9605,-399.875,59.9492)       : 87.6708 [keV]
-TrackID -1   Position (81.2872,-395.484,60.1399)       : 611.678 [keV]
-TrackID -1   Position (81.2872,-395.484,60.1399)       : 3045.43 [keV]
-TrackID -1   Position (81.3501,-395.528,60.0729)       : 95.1489 [keV]
-TrackID -1   Position (81.3509,-395.528,60.0721)       : 6.93363 [keV]
-TrackID -1   Position (81.3512,-395.529,60.0719)       : 26.8325 [keV]
-TrackID -1   Position (226.854,-391.47,381.945)       : 378.607 [keV]
-TrackID -1   Position (438.008,123.184,-251.628)       : 19.2858 [keV]
-TrackID -1   Position (310.958,259.481,-242.612)       : 15.4634 [keV]
-TrackID -1   Position (110.635,337.32,-260.527)       : 6.52861 [keV]
-TrackID -1   Position (166.858,-369.03,-93.7391)       : 2.22804 [keV]
-TrackID -1   Position (192.194,412.415,16.2145)       : 0.299352 [keV]
-TrackID -1   Position (301.675,-333.905,234.784)       : 10.2394 [keV]
-TrackID -1   Position (-454.996,-1.79651,-304.255)       : 0.0544528 [keV]
-TrackID -1   Position (-404.075,-27.3552,-300.315)       : 0.105229 [keV]
-TrackID -1   Position (91.1413,389.478,90.1588)       : 0.00403848 [keV]
-TrackID -1   Position (97.9668,391.324,79.4514)       : 0.0252311 [keV]
-TrackID -1   Position (-47.7312,-346.73,176.775)       : 0.000450837 [keV]
+TrackID 358   Position (232.46,-91.9901,249.104)       : 372.236 [keV]
+TrackID 358   Position (278.926,-110.455,298.797)       : 680.682 [keV]
+TrackID 358   Position (325.435,-128.809,348.673)       : 579.38 [keV]
+TrackID 358   Position (371.979,-147.076,398.565)       : 684.37 [keV]
+TrackID 358   Position (418.54,-165.299,448.653)       : 920.334 [keV]
+TrackID 357   Position (51.5734,244.623,-115.757)       : 300.435 [keV]
+TrackID 535   Position (51.7127,245.297,-116.076)       : 4459.78 [keV]
+TrackID 534   Position (51.7127,245.297,-116.076)       : 2143.19 [keV]
+TrackID 534   Position (51.6955,245.322,-116.06)       : 2105.29 [keV]
+TrackID 534   Position (51.6805,245.346,-116.045)       : 2169.48 [keV]
+TrackID 534   Position (51.6671,245.368,-116.032)       : 2219.13 [keV]
+TrackID 534   Position (51.6557,245.387,-116.021)       : 2397.51 [keV]
+TrackID 534   Position (51.6454,245.404,-116.01)       : 2612.37 [keV]
+TrackID 534   Position (51.6367,245.418,-116.001)       : 3314.73 [keV]
+TrackID 534   Position (51.63,245.429,-115.994)       : 799.244 [keV]
+TrackID 529   Position (51.7127,245.297,-116.076)       : 749.171 [keV]
+TrackID 529   Position (-149.902,200.074,-137.718)       : 6397.45 [keV]
+TrackID 529   Position (-245.508,172.411,-153.769)       : 1957.35 [keV]
+TrackID 529   Position (-249.351,171.21,-154.547)       : 2425.24 [keV]
+TrackID 529   Position (-317.178,147.979,-170.969)       : 1262.02 [keV]
+TrackID 529   Position (-318.938,147.409,-171.384)       : 3172.41 [keV]
+TrackID 529   Position (-377.865,131.219,-185.845)       : 1093.98 [keV]
+TrackID 529   Position (-379.261,130.829,-186.191)       : 2828.55 [keV]
+TrackID 529   Position (-435.575,113.026,-199.117)       : 3761.39 [keV]
+TrackID 552   Position (-379.261,130.829,-186.191)       : 137.374 [keV]
+TrackID 552   Position (-379.446,130.599,-186.343)       : 484.16 [keV]
+TrackID 546   Position (-318.938,147.409,-171.384)       : 468.594 [keV]
+TrackID 545   Position (-249.351,171.21,-154.547)       : 667.142 [keV]
+TrackID 545   Position (-249.73,170.877,-154.797)       : 45.9508 [keV]
+TrackID 728   Position (-191.746,233.542,223.49)       : 1.62225 [keV]
+TrackID 730   Position (135.635,323.737,-246.171)       : 102.902 [keV]
+TrackID 729   Position (67.5205,242.289,-170.232)       : 80.396 [keV]
+TrackID 1222   Position (242.216,77.1282,-42.9177)       : 448.573 [keV]
+TrackID 1222   Position (282.017,102.305,-54.4466)       : 588.987 [keV]
+TrackID 1222   Position (283.29,103.311,-55.8091)       : 617.996 [keV]
+TrackID 1222   Position (285.016,103.871,-55.9628)       : 558.802 [keV]
+TrackID 1222   Position (286.295,104.399,-56.3256)       : 82.7255 [keV]
+TrackID 1222   Position (330.614,114.867,-55.8135)       : 64.4594 [keV]
+TrackID 1222   Position (330.908,114.845,-55.8011)       : 381.564 [keV]
+TrackID 1222   Position (331.205,114.745,-55.7117)       : 321.911 [keV]
+TrackID 1222   Position (331.528,114.791,-55.6505)       : 110.028 [keV]
+TrackID 1222   Position (331.819,114.708,-55.6118)       : 109.424 [keV]
+TrackID 1222   Position (332.104,114.562,-55.5719)       : 109.88 [keV]
+TrackID 1222   Position (332.424,114.685,-55.4341)       : 534.545 [keV]
+TrackID 1222   Position (333.029,114.692,-55.491)       : 220.165 [keV]
+TrackID 1227   Position (360.727,180.727,-78.8858)       : 0.512545 [keV]
+TrackID 1223   Position (242.216,77.1282,-42.9177)       : 552.998 [keV]
+TrackID 1223   Position (284.868,94.0763,-50.3821)       : 1756.7 [keV]
+TrackID 1223   Position (330.524,115.126,-61.9968)       : 1686.53 [keV]
+TrackID 1223   Position (377.539,132.154,-58.5676)       : 1401.6 [keV]
+TrackID 1223   Position (381.34,133.642,-57.4453)       : 144.451 [keV]
+TrackID 1223   Position (381.68,133.592,-57.244)       : 350.155 [keV]
+TrackID 1223   Position (430.441,131.228,-39.124)       : 1088.97 [keV]
+TrackID 1223   Position (433.382,130.64,-38.4511)       : 1080.22 [keV]
+TrackID 1274   Position (433.382,130.64,-38.4511)       : 484.621 [keV]
+TrackID 1274   Position (433.687,130.467,-38.6373)       : 72.9817 [keV]
+TrackID 1381   Position (436.404,121.552,-36.141)       : 44.317 [keV]
+TrackID 1912   Position (-19.3247,-400.278,-14.3555)       : 1408.69 [keV]
+TrackID 1912   Position (-22.3222,-449.446,-15.8991)       : 1169.94 [keV]
+TrackID 1912   Position (-22.552,-453.169,-16.0295)       : 359.404 [keV]
+TrackID 1910   Position (149.902,265.404,59.4384)       : 49.6786 [keV]
+TrackID 1910   Position (172.127,304.749,68.4728)       : 1390.56 [keV]
+TrackID 1910   Position (173.589,307.235,69.0137)       : 680.748 [keV]
+TrackID 1910   Position (197.24,347.989,74.9111)       : 84.2292 [keV]
+TrackID 1910   Position (197.38,348.235,74.9455)       : 134.213 [keV]
+TrackID 1910   Position (197.608,348.636,75.0063)       : 625.347 [keV]
+TrackID 1910   Position (198.537,350.285,75.2218)       : 371.169 [keV]
+TrackID 1910   Position (199.269,351.576,75.3963)       : 326.337 [keV]
+TrackID 1910   Position (221.965,391.448,80.9073)       : 1795 [keV]
+TrackID 1918   Position (173.589,307.235,69.0137)       : 467.387 [keV]
+TrackID 1918   Position (173.386,307.783,69.068)       : 267.555 [keV]
+TrackID 1911   Position (-19.3247,-400.278,-14.3555)       : 1060.96 [keV]
+TrackID 1911   Position (-19.5012,-403.585,-14.5271)       : 390.996 [keV]
+TrackID 1911   Position (-19.5159,-403.737,-14.5327)       : 277.355 [keV]
+TrackID 1911   Position (-24.1966,-449.349,-17.4851)       : 434.405 [keV]
+TrackID 1911   Position (-24.2817,-450.355,-17.5478)       : 1235.4 [keV]
+TrackID 1938   Position (-19.5012,-403.585,-14.5271)       : 57.1384 [keV]
+TrackID 1938   Position (-19.4176,-403.756,-14.6227)       : 67.0648 [keV]
+TrackID 1938   Position (-19.386,-403.925,-14.7764)       : 48.2104 [keV]
+TrackID 1938   Position (-19.3082,-404.11,-14.8706)       : 60.18 [keV]
+TrackID 1938   Position (-19.4057,-404.309,-14.8289)       : 507.256 [keV]
+TrackID 1938   Position (-19.463,-404.513,-14.7815)       : 9.77101 [keV]
+TrackID 1938   Position (-20.9673,-449.511,14.0162)       : 8.50656 [keV]
+TrackID 1938   Position (-20.9844,-449.542,14.0472)       : 19.497 [keV]
+TrackID 1938   Position (-21.0257,-449.584,14.0771)       : 16.5898 [keV]
+TrackID 1938   Position (-21.0519,-449.619,14.1268)       : 18.1983 [keV]
+TrackID 1938   Position (-21.0884,-449.662,14.1596)       : 27.1808 [keV]
+TrackID 1938   Position (-21.1295,-449.698,14.1966)       : 23.7883 [keV]
+TrackID 1938   Position (-21.172,-449.744,14.217)       : 22.0268 [keV]
+TrackID 1938   Position (-21.2114,-449.797,14.2451)       : 32.6048 [keV]
+TrackID 1938   Position (-21.2756,-449.853,14.2652)       : 30.7234 [keV]
+TrackID 1938   Position (-21.3232,-449.943,14.2568)       : 42.2325 [keV]
+TrackID 1938   Position (-21.3997,-450.042,14.2948)       : 32.0909 [keV]
+TrackID 1938   Position (-21.4446,-450.086,14.3662)       : 58.3018 [keV]
+TrackID 1938   Position (-21.5133,-450.049,14.522)       : 78.2717 [keV]
+TrackID 1938   Position (-21.613,-450.156,14.5908)       : 323.183 [keV]
+TrackID 1909   Position (149.902,265.404,59.4384)       : 58.9743 [keV]
+TrackID 1909   Position (172.044,304.797,68.2276)       : 1633.63 [keV]
+TrackID 1909   Position (173.914,308.154,68.9932)       : 320.096 [keV]
+TrackID 1909   Position (195.295,349.084,78.8894)       : 505.527 [keV]
+TrackID 1909   Position (195.977,350.319,79.1789)       : 1194.29 [keV]
+TrackID 1909   Position (222.114,391.364,89.3674)       : 1644.16 [keV]
+TrackID 1909   Position (224.314,395.287,90.4586)       : 207.559 [keV]
+TrackID 1946   Position (224.314,395.287,90.4586)       : 36.3561 [keV]
+TrackID 1946   Position (224.301,395.397,90.4638)       : 31.8105 [keV]
+TrackID 1946   Position (224.237,395.489,90.4309)       : 25.1452 [keV]
+TrackID 1946   Position (224.201,395.587,90.4146)       : 28.8633 [keV]
+TrackID 1946   Position (224.244,395.516,90.4393)       : 32.1703 [keV]
+TrackID 1946   Position (224.256,395.425,90.4672)       : 49.4362 [keV]
+TrackID 1946   Position (224.173,395.341,90.496)       : 46.922 [keV]
+TrackID 1946   Position (224.082,395.223,90.5374)       : 100.438 [keV]
+TrackID 1946   Position (224.016,395.092,90.6229)       : 343.629 [keV]
+TrackID 1942   Position (-21.4446,-450.086,14.3662)       : 1.844 [keV]
+TrackID 1948   Position (-21.1229,-452.178,13.8917)       : 27.9812 [keV]
+TrackID 1922   Position (221.947,391.458,79.8704)       : 1.844 [keV]
+TrackID 1949   Position (223.413,394.037,80.1597)       : 56.285 [keV]
+TrackID 1920   Position (221.451,391.739,81.8401)       : 1.844 [keV]
+TrackID 1950   Position (223.042,394.614,82.2959)       : 31.6112 [keV]
+TrackID 1953   Position (73.4218,345.29,-96.2265)       : 40.3077 [keV]
+TrackID 1952   Position (74.7021,344.359,-92.4241)       : 4.00783 [keV]
+TrackID 1951   Position (198.31,349.887,75.207)       : 135.605 [keV]
+TrackID 2238   Position (215.218,-127.206,-9.31314)       : 584.325 [keV]
+TrackID 2238   Position (216.511,-127.969,-9.37127)       : 327.901 [keV]
+TrackID 2238   Position (217.325,-128.45,-9.40682)       : 827.488 [keV]
+TrackID 2238   Position (258.253,-152.661,-11.1658)       : 1789.02 [keV]
+TrackID 2238   Position (301.245,-178.189,-12.7649)       : 1815.91 [keV]
+TrackID 2238   Position (344.321,-203.576,-14.2718)       : 609.695 [keV]
+TrackID 2238   Position (345.756,-204.419,-14.3235)       : 1210.07 [keV]
+TrackID 2238   Position (387.216,-229.267,-19.6757)       : 1804.47 [keV]
+TrackID 2242   Position (217.325,-128.45,-9.40682)       : 536.927 [keV]
+TrackID 2242   Position (217.498,-128.748,-9.71271)       : 81.7775 [keV]
+TrackID 2241   Position (216.511,-127.969,-9.37127)       : 318.771 [keV]
+TrackID 2241   Position (216.852,-127.993,-9.38324)       : 420.887 [keV]
+TrackID 2253   Position (365.848,-169.593,-347.075)       : 677.004 [keV]
+TrackID 2253   Position (409.025,-187.613,-381.654)       : 1068.96 [keV]
+TrackID 2253   Position (411.31,-188.044,-383.412)       : 998.244 [keV]
+TrackID 2244   Position (345.756,-204.419,-14.3235)       : 126.814 [keV]
+TrackID 1825   Position (-131.729,212.479,7.22074)       : 1792.2 [keV]
+TrackID 1825   Position (-158.072,254.977,8.07648)       : 1942.9 [keV]
+TrackID 1825   Position (-183.884,297.803,9.19102)       : 1960.12 [keV]
+TrackID 1825   Position (-210.37,340.212,9.70588)       : 338.833 [keV]
+TrackID 1825   Position (-210.863,341.006,9.72078)       : 1479.96 [keV]
+TrackID 1825   Position (-236.501,382.841,10.0817)       : 1778.61 [keV]
+TrackID 1825   Position (-238.998,386.917,10.077)       : 86.3822 [keV]
+TrackID 2268   Position (-238.998,386.917,10.077)       : 26.6988 [keV]
+TrackID 2268   Position (-238.996,386.95,10.1133)       : 23.4054 [keV]
+TrackID 2268   Position (-239.007,386.976,10.1634)       : 21.7778 [keV]
+TrackID 2268   Position (-238.988,386.993,10.2055)       : 15.6474 [keV]
+TrackID 2268   Position (-238.958,387.02,10.2289)       : 10.4622 [keV]
+TrackID 2268   Position (-238.927,387.036,10.2577)       : 6.28657 [keV]
+TrackID 2268   Position (-238.926,387.053,10.2711)       : 16.0658 [keV]
+TrackID 2268   Position (-238.926,387.081,10.3012)       : 11.7599 [keV]
+TrackID 2268   Position (-238.921,387.064,10.3318)       : 19.3413 [keV]
+TrackID 2268   Position (-238.923,387.065,10.3715)       : 15.714 [keV]
+TrackID 2268   Position (-238.93,387.087,10.4029)       : 18.3988 [keV]
+TrackID 2268   Position (-238.934,387.099,10.4348)       : 14.4074 [keV]
+TrackID 2268   Position (-238.944,387.121,10.4615)       : 16.624 [keV]
+TrackID 2268   Position (-238.957,387.132,10.4917)       : 27.9748 [keV]
+TrackID 2268   Position (-238.972,387.153,10.5155)       : 12.5464 [keV]
+TrackID 2268   Position (-238.998,387.168,10.5275)       : 16.5084 [keV]
+TrackID 2268   Position (-238.978,387.149,10.5478)       : 14.3626 [keV]
+TrackID 2268   Position (-238.958,387.134,10.5723)       : 19.722 [keV]
+TrackID 2268   Position (-238.941,387.138,10.6017)       : 25.4911 [keV]
+TrackID 2268   Position (-238.928,387.148,10.6302)       : 18.2087 [keV]
+TrackID 2268   Position (-238.933,387.171,10.656)       : 27.949 [keV]
+TrackID 2268   Position (-238.942,387.14,10.6708)       : 71.9964 [keV]
+TrackID 2266   Position (-210.863,341.006,9.72078)       : 62.0127 [keV]
+TrackID 2266   Position (-211.035,341.176,9.73946)       : 137.558 [keV]
+TrackID 2266   Position (-211.331,341.213,9.69452)       : 442.612 [keV]
+TrackID 2266   Position (-211.751,341.118,9.54591)       : 170.909 [keV]
+TrackID 2252   Position (365.848,-169.593,-347.075)       : 1077.78 [keV]
+TrackID 2252   Position (419.655,-162.448,-405.757)       : 444.846 [keV]
+TrackID 2252   Position (420.818,-162.661,-406.647)       : 686.748 [keV]
+TrackID 2252   Position (421.343,-162.572,-407.868)       : 558.96 [keV]
+TrackID 2252   Position (421.977,-161.993,-408.815)       : 404.285 [keV]
+TrackID 2252   Position (422.212,-161.665,-409.632)       : 434.378 [keV]
+TrackID 2252   Position (421.148,-161.331,-410.336)       : 454.805 [keV]
+TrackID 2252   Position (421.484,-160.66,-410.799)       : 183.527 [keV]
+TrackID 2272   Position (423.048,-160.831,-425.373)       : 34.2169 [keV]
+TrackID 2269   Position (-238.926,387.053,10.2711)       : 1.844 [keV]
+TrackID 2273   Position (-237.069,383.706,10.5872)       : 29.2939 [keV]
+TrackID 2255   Position (412.082,-188.2,-383.916)       : 1.844 [keV]
+TrackID 2275   Position (407.537,-194.695,-376.941)       : 147.712 [keV]
+TrackID 2274   Position (412.082,-188.2,-383.916)       : 133.138 [keV]
+TrackID 3324   Position (-93.4574,-342.423,209.374)       : 17.1724 [keV]
+TrackID 3324   Position (-105.305,-385.89,236.13)       : 888.359 [keV]
+TrackID 3324   Position (-105.887,-388.057,237.458)       : 631.624 [keV]
+TrackID 3324   Position (-106.307,-389.657,238.429)       : 469.367 [keV]
+TrackID 3324   Position (-118.473,-434.124,265.48)       : 1724.64 [keV]
+TrackID 3324   Position (-119.496,-437.724,267.676)       : 660.816 [keV]
+TrackID 3324   Position (-119.813,-438.823,268.332)       : 61.4766 [keV]
+TrackID 2291   Position (235.312,84.4292,-214.07)       : 2452.26 [keV]
+TrackID 3327   Position (-119.496,-437.724,267.676)       : 438.016 [keV]
+TrackID 3326   Position (-106.307,-389.657,238.429)       : 70.6619 [keV]
+TrackID 3326   Position (-106.246,-389.865,238.354)       : 95.0879 [keV]
+TrackID 3326   Position (-106.143,-390.105,238.295)       : 159.319 [keV]
+TrackID 3326   Position (-106.023,-390.258,238.225)       : 32.8083 [keV]
+TrackID 3326   Position (-105.963,-390.322,238.174)       : 68.1956 [keV]
+TrackID 3323   Position (-93.4574,-342.423,209.374)       : 9.6268 [keV]
+TrackID 3323   Position (-93.4673,-342.459,209.396)       : 6.20785 [keV]
+TrackID 3323   Position (-105.325,-385.884,235.845)       : 1933.91 [keV]
+TrackID 3323   Position (-118.557,-434.102,265.077)       : 2439.08 [keV]
+TrackID 3341   Position (238.523,85.5491,-216.949)       : 3055.29 [keV]
+TrackID 3340   Position (238.523,85.5491,-216.949)       : 2978.91 [keV]
+TrackID 3337   Position (238.523,85.5491,-216.949)       : 2583.63 [keV]
+TrackID 3337   Position (238.573,85.8461,-217.01)       : 2670.99 [keV]
+TrackID 3337   Position (238.617,86.079,-217.05)       : 2832.8 [keV]
+TrackID 3337   Position (238.649,86.2486,-217.079)       : 2445.79 [keV]
+TrackID 3337   Position (238.667,86.3135,-217.089)       : 43.4544 [keV]
+TrackID 3334   Position (238.523,85.5491,-216.949)       : 6843.29 [keV]
+TrackID 3553   Position (-213.242,283.677,142.405)       : 39.4748 [keV]
+TrackID 3553   Position (-240.71,319.467,159.015)       : 503.813 [keV]
+TrackID 3553   Position (-241.321,320.221,159.357)       : 640.751 [keV]
+TrackID 3553   Position (-242.603,321.766,160.038)       : 883.172 [keV]
+TrackID 3553   Position (-271.506,358.866,173.542)       : 706.405 [keV]
+TrackID 3553   Position (-272.172,359.7,173.866)       : 128.992 [keV]
+TrackID 3553   Position (-272.445,360.067,173.997)       : 1592.16 [keV]
+TrackID 3554   Position (-241.321,320.221,159.357)       : 74.7455 [keV]
+TrackID 3554   Position (-241.462,320.327,159.549)       : 112.549 [keV]
+TrackID 3554   Position (-241.494,320.422,159.87)       : 459.397 [keV]
+TrackID 3554   Position (-241.513,320.663,160.238)       : 26.4909 [keV]
+TrackID 3554   Position (-241.496,320.661,160.263)       : 79.3604 [keV]
+TrackID 3552   Position (-213.242,283.677,142.405)       : 26.2623 [keV]
+TrackID 3552   Position (-240.292,319.781,163.913)       : 1009.39 [keV]
+TrackID 3552   Position (-242.08,321.87,164.983)       : 816.986 [keV]
+TrackID 3552   Position (-270.277,359.792,176.932)       : 214.972 [keV]
+TrackID 3552   Position (-270.667,360.311,177.105)       : 935.318 [keV]
+TrackID 3552   Position (-272.764,360.554,178.508)       : 1814.92 [keV]
+TrackID 3552   Position (-274.762,360.727,181.375)       : 320.813 [keV]
+TrackID 3552   Position (-274.994,360.618,181.869)       : 773.881 [keV]
+TrackID 3552   Position (-276.767,360.323,182.861)       : 582.967 [keV]
+TrackID 3552   Position (-277.885,360.284,182.483)       : 26.0326 [keV]
+TrackID 3552   Position (-277.873,360.243,182.454)       : 22.27 [keV]
+TrackID 3552   Position (-277.845,360.201,182.416)       : 14.8348 [keV]
+TrackID 3552   Position (-277.808,360.157,182.388)       : 24.5443 [keV]
+TrackID 3552   Position (-277.776,360.123,182.344)       : 18.5036 [keV]
+TrackID 3552   Position (-277.738,360.08,182.318)       : 26.2639 [keV]
+TrackID 3552   Position (-277.703,360.02,182.289)       : 26.6532 [keV]
+TrackID 3552   Position (-277.641,359.956,182.264)       : 73.4832 [keV]
+TrackID 3552   Position (-277.55,359.931,182.194)       : 40.8113 [keV]
+TrackID 3552   Position (-277.456,359.839,182.173)       : 55.5665 [keV]
+TrackID 3552   Position (-277.396,359.683,182.141)       : 418.777 [keV]
+TrackID 3593   Position (-274.994,360.618,181.869)       : 1.844 [keV]
+TrackID 3594   Position (-274.898,360.976,182.147)       : 8.84005 [keV]
+TrackID 3592   Position (-272.764,360.554,178.508)       : 1.844 [keV]
+TrackID 3595   Position (-274.502,361.73,181.195)       : 63.8785 [keV]
+TrackID 3589   Position (-236.961,327.116,162.317)       : 1.844 [keV]
+TrackID 3558   Position (-272.445,360.067,173.997)       : 1.844 [keV]
+TrackID 3557   Position (-272.172,359.7,173.866)       : 1.844 [keV]
+TrackID 3555   Position (-270.737,359.446,174.662)       : 1.844 [keV]
+TrackID 3600   Position (-270.938,359.714,174.766)       : 18.4298 [keV]
+TrackID 3599   Position (-272.187,359.721,173.874)       : 10.5402 [keV]
+TrackID 3598   Position (-272.493,360.136,174.021)       : 8.46813 [keV]
+TrackID 3597   Position (-234.089,325.138,162.163)       : 30.2963 [keV]
+TrackID 3596   Position (-236.961,327.116,162.317)       : 2.16235 [keV]
+TrackID 4004   Position (27.9767,-248.43,162.007)       : 1796.33 [keV]
+TrackID 4004   Position (34.4071,-298.02,193.56)       : 2557.95 [keV]
+TrackID 4004   Position (40.8953,-347.603,224.706)       : 1887.83 [keV]
+TrackID 4004   Position (47.751,-397.14,256.266)       : 293.384 [keV]
+TrackID 4004   Position (47.8752,-397.987,256.809)       : 1726.18 [keV]
+TrackID 4004   Position (55.2724,-446.593,287.925)       : 2045.48 [keV]
+TrackID 4010   Position (47.8752,-397.987,256.809)       : 83.778 [keV]
+TrackID 4010   Position (47.8575,-398.168,257.055)       : 435.424 [keV]
+TrackID 4010   Position (48.0119,-398.481,257.685)       : 188.948 [keV]
+TrackID 4010   Position (47.9354,-398.874,258.237)       : 207.073 [keV]
+TrackID 4010   Position (48.1389,-399.371,258.676)       : 201.179 [keV]
+TrackID 4010   Position (48.3913,-399.885,259.029)       : 232.878 [keV]
+TrackID 4010   Position (48.5652,-400.42,259.443)       : 238.142 [keV]
+TrackID 4010   Position (48.8386,-400.762,260.016)       : 243.952 [keV]
+TrackID 4010   Position (48.8287,-401.133,260.524)       : 254.805 [keV]
+TrackID 4010   Position (49.1075,-401.709,260.323)       : 221.581 [keV]
+TrackID 4010   Position (48.7879,-401.739,260.053)       : 356.917 [keV]
+TrackID 3999   Position (-248.738,25.0903,176.388)       : 2356.9 [keV]
+TrackID 3999   Position (-298.461,30.3519,211.824)       : 1839.84 [keV]
+TrackID 3999   Position (-348.158,35.8613,247.848)       : 2444.1 [keV]
+TrackID 3999   Position (-397.913,40.8118,284.103)       : 2116.16 [keV]
+TrackID 3999   Position (-447.671,45.7277,319.922)       : 129.954 [keV]
+TrackID 3999   Position (-448.008,45.761,320.164)       : 2177.62 [keV]
+TrackID 4177   Position (-448.008,45.761,320.164)       : 37.3575 [keV]
+TrackID 4177   Position (-448.099,45.7592,320.172)       : 43.8616 [keV]
+TrackID 4177   Position (-448.166,45.6796,320.233)       : 39.406 [keV]
+TrackID 4177   Position (-448.138,45.5466,320.238)       : 38.2909 [keV]
+TrackID 4177   Position (-448.071,45.6114,320.323)       : 39.7402 [keV]
+TrackID 4177   Position (-447.983,45.6663,320.368)       : 25.3212 [keV]
+TrackID 4177   Position (-448,45.7518,320.383)       : 47.6522 [keV]
+TrackID 4177   Position (-448.046,45.8259,320.393)       : 39.3468 [keV]
+TrackID 4177   Position (-448.088,45.9194,320.381)       : 230.66 [keV]
+TrackID 4220   Position (-224.977,-109.019,-110.778)       : 1668.12 [keV]
+TrackID 4220   Position (-270.035,-130.694,-133.022)       : 1806.83 [keV]
+TrackID 4220   Position (-315.188,-152.172,-155.279)       : 1861.49 [keV]
+TrackID 4220   Position (-360.445,-173.435,-177.648)       : 1230.04 [keV]
+TrackID 4220   Position (-363.595,-174.908,-179.211)       : 539.492 [keV]
+TrackID 4220   Position (-405.721,-194.654,-199.986)       : 2355.27 [keV]
+TrackID 4224   Position (-363.595,-174.908,-179.211)       : 73.5762 [keV]
+TrackID 4224   Position (-363.711,-175.05,-179.396)       : 240.51 [keV]
+TrackID 4224   Position (-363.762,-175.268,-179.795)       : 116.867 [keV]
+TrackID 4224   Position (-363.986,-175.455,-180.126)       : 204.571 [keV]
+TrackID 4224   Position (-364.145,-175.701,-180.463)       : 112.437 [keV]
+TrackID 4224   Position (-364.064,-175.706,-180.91)       : 103.718 [keV]
+TrackID 4224   Position (-364.199,-176.009,-181.218)       : 142.85 [keV]
+TrackID 4224   Position (-363.98,-176.111,-181.612)       : 111.683 [keV]
+TrackID 4224   Position (-363.898,-176.166,-182.031)       : 141.114 [keV]
+TrackID 4224   Position (-363.742,-176.251,-182.405)       : 133.246 [keV]
+TrackID 4224   Position (-363.78,-176.556,-182.679)       : 148.746 [keV]
+TrackID 4224   Position (-363.646,-176.946,-182.701)       : 188.755 [keV]
+TrackID 4224   Position (-363.252,-176.939,-182.939)       : 74.714 [keV]
+TrackID 4224   Position (-363.172,-176.989,-183.044)       : 313 [keV]
+TrackID 4226   Position (-363.172,-176.989,-183.044)       : 1.844 [keV]
+TrackID 4227   Position (-363.175,-177.017,-183.052)       : 69.0557 [keV]
+TrackID 4247   Position (-219.635,119.416,-64.5107)       : 1889.69 [keV]
+TrackID 4247   Position (-263.683,143.079,-77.3097)       : 531.93 [keV]
+TrackID 4247   Position (-265.017,143.794,-77.6977)       : 1272.53 [keV]
+TrackID 4247   Position (-307.732,166.736,-90.4701)       : 933.531 [keV]
+TrackID 4247   Position (-309.972,167.941,-91.1276)       : 862.287 [keV]
+TrackID 4247   Position (-351.678,190.585,-103.252)       : 1419.21 [keV]
+TrackID 4247   Position (-355.32,192.538,-104.321)       : 266.749 [keV]
+TrackID 4247   Position (-395.722,214.252,-116.179)       : 1574.76 [keV]
+TrackID 4247   Position (-399.246,216.128,-117.199)       : 328.407 [keV]
+TrackID 4251   Position (-245.722,46.0532,-200.907)       : 57.4154 [keV]
+TrackID 4251   Position (-245.811,46.0404,-201.082)       : 49.5473 [keV]
+TrackID 4251   Position (-245.893,46.0584,-201.229)       : 48.9062 [keV]
+TrackID 4251   Position (-245.979,46.129,-201.357)       : 66.7335 [keV]
+TrackID 4251   Position (-246.076,46.1413,-201.493)       : 44.3613 [keV]
+TrackID 4251   Position (-246.138,46.243,-201.609)       : 55.2583 [keV]
+TrackID 4251   Position (-246.242,46.3298,-201.707)       : 62.4485 [keV]
+TrackID 4251   Position (-246.332,46.3803,-201.836)       : 131.596 [keV]
+TrackID 4251   Position (-246.185,46.366,-201.962)       : 39.0884 [keV]
+TrackID 4251   Position (-246.048,46.4286,-202.041)       : 60.9759 [keV]
+TrackID 4251   Position (-245.914,46.3284,-202.036)       : 63.331 [keV]
+TrackID 4251   Position (-245.814,46.1939,-202.068)       : 41.8141 [keV]
+TrackID 4251   Position (-245.713,46.1299,-201.974)       : 3.00632 [keV]
+TrackID 4251   Position (-131.815,-212.426,-175.609)       : 12.2886 [keV]
+TrackID 4251   Position (-131.813,-212.453,-175.625)       : 11.2622 [keV]
+TrackID 4251   Position (-131.819,-212.488,-175.642)       : 12.6316 [keV]
+TrackID 4251   Position (-131.838,-212.514,-175.663)       : 12.1709 [keV]
+TrackID 4251   Position (-131.856,-212.526,-175.696)       : 14.5973 [keV]
+TrackID 4251   Position (-131.859,-212.565,-175.704)       : 18.6915 [keV]
+TrackID 4251   Position (-131.869,-212.604,-175.71)       : 17.2286 [keV]
+TrackID 4251   Position (-131.879,-212.654,-175.691)       : 14.4833 [keV]
+TrackID 4251   Position (-131.861,-212.717,-175.701)       : 25.1117 [keV]
+TrackID 4251   Position (-131.821,-212.778,-175.716)       : 32.2827 [keV]
+TrackID 4251   Position (-131.797,-212.861,-175.702)       : 43.1171 [keV]
+TrackID 4251   Position (-131.756,-212.933,-175.761)       : 53.108 [keV]
+TrackID 4251   Position (-131.795,-212.834,-175.707)       : 86.1568 [keV]
+TrackID 4251   Position (-131.723,-212.784,-175.678)       : 164.086 [keV]
+TrackID 4246   Position (-215.549,126.644,-62.2313)       : 1926.77 [keV]
+TrackID 4246   Position (-258.671,151.952,-74.2851)       : 2172.63 [keV]
+TrackID 4246   Position (-303.454,174.402,-86.2928)       : 518.414 [keV]
+TrackID 4246   Position (-305,175.156,-86.71)       : 1286.83 [keV]
+TrackID 4246   Position (-348.691,195.996,-98.0425)       : 707.178 [keV]
+TrackID 4246   Position (-350.713,196.947,-98.5558)       : 947.634 [keV]
+TrackID 4246   Position (-394.024,217.36,-109.524)       : 2.6944 [keV]
+TrackID 4246   Position (-394.033,217.364,-109.526)       : 232.066 [keV]
+TrackID 4246   Position (-394.7,217.679,-109.695)       : 1514.98 [keV]
+TrackID 4273   Position (-394.7,217.679,-109.695)       : 1705.07 [keV]
+TrackID 4273   Position (-396.807,219.744,-112.331)       : 1046.1 [keV]
+TrackID 4273   Position (-398.96,218.504,-113.571)       : 41.688 [keV]
+TrackID 4267   Position (-261.314,157.29,-82.067)       : 0.482973 [keV]
+TrackID 4267   Position (-261.313,157.29,-82.067)       : 0.918634 [keV]
+TrackID 4267   Position (-261.313,157.291,-82.0668)       : 0.563306 [keV]
+TrackID 4267   Position (-261.313,157.291,-82.0666)       : 0.87842 [keV]
+TrackID 4267   Position (-261.312,157.291,-82.0664)       : 0.420632 [keV]
+TrackID 4267   Position (-261.312,157.291,-82.0661)       : 0.461228 [keV]
+TrackID 4267   Position (-261.312,157.291,-82.066)       : 1.06243 [keV]
+TrackID 4267   Position (-261.311,157.292,-82.0658)       : 0.830804 [keV]
+TrackID 4267   Position (-261.311,157.292,-82.0656)       : 1.19633 [keV]
+TrackID 4267   Position (-261.311,157.293,-82.0655)       : 0.361309 [keV]
+TrackID 4267   Position (-261.311,157.293,-82.0653)       : 1.46415 [keV]
+TrackID 4267   Position (-261.312,157.293,-82.0653)       : 1.38736 [keV]
+TrackID 4318   Position (-303.934,175.987,-92.7578)       : 33.3775 [keV]
+TrackID 4317   Position (-305.225,175.264,-86.7715)       : 27.1597 [keV]
+TrackID 4344   Position (-212.568,131.587,-96.1555)       : 2132.74 [keV]
+TrackID 4344   Position (-254.994,158.045,-115.033)       : 806.055 [keV]
+TrackID 4344   Position (-256.53,158.999,-115.712)       : 1196.5 [keV]
+TrackID 4344   Position (-297.458,184.442,-133.848)       : 451.812 [keV]
+TrackID 4436   Position (-256.53,158.999,-115.712)       : 613.128 [keV]
+TrackID 4446   Position (-298.296,184.961,-134.219)       : 4150.3 [keV]
+TrackID 4441   Position (-298.296,184.961,-134.219)       : 3004.77 [keV]
+TrackID 4441   Position (-298.397,184.884,-134.149)       : 1264.72 [keV]
+TrackID 4440   Position (-298.296,184.961,-134.219)       : 3470.63 [keV]
+TrackID 4440   Position (-298.15,184.857,-134.878)       : 2996.91 [keV]
+TrackID 4440   Position (-298.046,184.76,-135.396)       : 2669.01 [keV]
+TrackID 4440   Position (-297.956,184.689,-135.808)       : 2740.28 [keV]
+TrackID 4440   Position (-297.87,184.635,-136.135)       : 2731.37 [keV]
+TrackID 4440   Position (-297.823,184.587,-136.393)       : 2780.37 [keV]
+TrackID 4440   Position (-297.798,184.551,-136.589)       : 3280.86 [keV]
+TrackID 4440   Position (-297.791,184.528,-136.705)       : 251.38 [keV]
+TrackID 4440   Position (-297.79,184.527,-136.708)       : 22.3469 [keV]
+TrackID 4439   Position (-298.296,184.961,-134.219)       : 4026.99 [keV]
+TrackID 4439   Position (-330.352,-115.617,-337.178)       : 9612.97 [keV]
+TrackID 4439   Position (-330.869,-120.267,-340.279)       : 8941.22 [keV]
+TrackID 4439   Position (-331.221,-123.967,-342.79)       : 7526.52 [keV]
+TrackID 4439   Position (-331.48,-126.898,-344.758)       : 332.744 [keV]
+TrackID 4538   Position (117.381,-220.73,150.102)       : 3445.63 [keV]
+TrackID 4538   Position (140.028,-265.315,179.907)       : 1391.31 [keV]
+TrackID 4538   Position (140.929,-267.104,181.101)       : 2041.32 [keV]
+TrackID 4538   Position (162.714,-309.878,208.968)       : 3317.4 [keV]
+TrackID 4538   Position (185.787,-354.236,238.844)       : 3729.77 [keV]
+TrackID 4538   Position (208.555,-398.754,267.81)       : 3970.24 [keV]
+TrackID 4551   Position (140.929,-267.104,181.101)       : 427.7 [keV]
+TrackID 4562   Position (-168.952,253.769,138.227)       : 34.0651 [keV]
+TrackID 4562   Position (-196.915,289.352,149.651)       : 234.121 [keV]
+TrackID 4562   Position (-197.377,289.855,149.757)       : 774.875 [keV]
+TrackID 4562   Position (-198.23,291.801,150.283)       : 493.748 [keV]
+TrackID 4562   Position (-198.226,292.713,150.497)       : 600.975 [keV]
+TrackID 4562   Position (-197.11,293.199,151.054)       : 500.02 [keV]
+TrackID 4562   Position (-196.948,293.571,151.528)       : 244.357 [keV]
+TrackID 4537   Position (-14.7545,-249.564,-205.95)       : 192.766 [keV]
+TrackID 4537   Position (-14.7768,-249.945,-206.263)       : 2434.72 [keV]
+TrackID 4537   Position (-17.3367,-299.499,-247.712)       : 2211.91 [keV]
+TrackID 4537   Position (-19.5109,-349.456,-289.542)       : 2053.34 [keV]
+TrackID 4537   Position (-20.6807,-399.465,-331.606)       : 2141.77 [keV]
+TrackID 4537   Position (-20.6071,-449.528,-373.215)       : 2187.06 [keV]
+TrackID 4570   Position (-14.7768,-249.945,-206.263)       : 34.3304 [keV]
+TrackID 4570   Position (-14.6976,-249.977,-206.341)       : 39.3218 [keV]
+TrackID 4570   Position (-14.7438,-249.88,-206.397)       : 25.2409 [keV]
+TrackID 4570   Position (-14.8043,-249.818,-206.457)       : 33.8864 [keV]
+TrackID 4570   Position (-14.8827,-249.781,-206.519)       : 21.8657 [keV]
+TrackID 4570   Position (-14.9569,-249.736,-206.581)       : 32.2422 [keV]
+TrackID 4570   Position (-15.0075,-249.685,-206.662)       : 32.735 [keV]
+TrackID 4570   Position (-15.0862,-249.644,-206.721)       : 43.5631 [keV]
+TrackID 4570   Position (-15.1429,-249.574,-206.776)       : 14.0343 [keV]
+TrackID 4570   Position (106.248,-333.484,283.19)       : 7.27492 [keV]
+TrackID 4570   Position (106.258,-333.493,283.194)       : 3.14788 [keV]
+TrackID 4570   Position (106.266,-333.495,283.192)       : 3.09405 [keV]
+TrackID 4570   Position (106.27,-333.498,283.185)       : 3.26063 [keV]
+TrackID 4570   Position (106.271,-333.501,283.178)       : 3.22893 [keV]
+TrackID 4570   Position (106.272,-333.505,283.17)       : 2.9048 [keV]
+TrackID 4570   Position (106.275,-333.507,283.163)       : 5.43785 [keV]
+TrackID 4570   Position (106.274,-333.508,283.154)       : 3.42786 [keV]
+TrackID 4570   Position (106.268,-333.507,283.147)       : 2.42104 [keV]
+TrackID 4570   Position (106.265,-333.501,283.142)       : 21.3969 [keV]
+TrackID 4570   Position (106.265,-333.494,283.137)       : 7.94284 [keV]
+TrackID 4570   Position (106.265,-333.49,283.13)       : 3.42102 [keV]
+TrackID 4570   Position (106.26,-333.486,283.125)       : 23.4785 [keV]
+TrackID 4564   Position (-198.226,292.713,150.497)       : 584.737 [keV]
+TrackID 4564   Position (-198.162,293.187,150.393)       : 60.4165 [keV]
+TrackID 4563   Position (-197.377,289.855,149.757)       : 139.6 [keV]
+TrackID 4563   Position (-197.484,290,149.534)       : 290.506 [keV]
+TrackID 4561   Position (-168.952,253.769,138.227)       : 41.2747 [keV]
+TrackID 4561   Position (-193.809,291.441,159.243)       : 525.055 [keV]
+TrackID 4561   Position (-194.581,292.674,159.945)       : 1330.82 [keV]
+TrackID 4561   Position (-222.261,332.566,184.18)       : 420.175 [keV]
+TrackID 4561   Position (-222.656,333.125,184.539)       : 1065.7 [keV]
+TrackID 4561   Position (-224.407,335.582,186.178)       : 453.16 [keV]
+TrackID 4561   Position (-250.889,373.57,206.027)       : 261.837 [keV]
+TrackID 4561   Position (-251.408,374.289,206.378)       : 1341.52 [keV]
+TrackID 4621   Position (-222.656,333.125,184.539)       : 99.6861 [keV]
+TrackID 4621   Position (-222.537,333.361,184.665)       : 66.2238 [keV]
+TrackID 4621   Position (-222.523,333.571,184.776)       : 85.1764 [keV]
+TrackID 4621   Position (-222.512,333.845,184.674)       : 115.833 [keV]
+TrackID 4621   Position (-222.552,334.143,184.492)       : 286.764 [keV]
+TrackID 4621   Position (-222.614,334.431,184.23)       : 495.067 [keV]
+TrackID 4619   Position (-194.581,292.674,159.945)       : 243.16 [keV]
+TrackID 4619   Position (-195.103,292.921,160.377)       : 179.695 [keV]
+TrackID 4619   Position (-195.569,293.297,160.375)       : 188.307 [keV]
+TrackID 4619   Position (-196.172,293.671,160.357)       : 53.4455 [keV]
+TrackID 4619   Position (-196.299,293.774,160.416)       : 155.932 [keV]
+TrackID 4619   Position (-196.884,293.945,160.454)       : 218.562 [keV]
+TrackID 4619   Position (-197.47,293.796,160.509)       : 170.729 [keV]
+TrackID 4619   Position (-197.965,294.054,160.685)       : 294.38 [keV]
+TrackID 4619   Position (-198.432,294.29,160.81)       : 40.6721 [keV]
+TrackID 4619   Position (-285.907,279.745,212.554)       : 28.4957 [keV]
+TrackID 4619   Position (-285.991,279.696,212.597)       : 19.7623 [keV]
+TrackID 4619   Position (-286.053,279.648,212.638)       : 22.7921 [keV]
+TrackID 4619   Position (-286.101,279.576,212.659)       : 23.3302 [keV]
+TrackID 4619   Position (-286.144,279.515,212.703)       : 22.3077 [keV]
+TrackID 4619   Position (-286.221,279.474,212.719)       : 21.2793 [keV]
+TrackID 4619   Position (-286.305,279.445,212.723)       : 22.3758 [keV]
+TrackID 4619   Position (-286.39,279.46,212.725)       : 20.9055 [keV]
+TrackID 4619   Position (-286.477,279.471,212.728)       : 23.7166 [keV]
+TrackID 4619   Position (-286.56,279.459,212.758)       : 28.3855 [keV]
+TrackID 4619   Position (-286.627,279.452,212.812)       : 36.1889 [keV]
+TrackID 4619   Position (-286.7,279.453,212.867)       : 37.104 [keV]
+TrackID 4619   Position (-286.772,279.403,212.929)       : 55.9396 [keV]
+TrackID 4619   Position (-286.855,279.33,212.915)       : 36.0932 [keV]
+TrackID 4619   Position (-286.957,279.297,212.923)       : 99.1564 [keV]
+TrackID 4619   Position (-286.99,279.404,212.877)       : 68.2752 [keV]
+TrackID 4619   Position (-287.087,279.5,212.837)       : 346.046 [keV]
+TrackID 4625   Position (-196.299,293.774,160.416)       : 1.844 [keV]
+TrackID 4637   Position (-196.374,293.812,160.398)       : 7.58268 [keV]
+TrackID 4624   Position (-251.408,374.289,206.378)       : 1.844 [keV]
+TrackID 4638   Position (-251.872,374.928,206.691)       : 34.8966 [keV]
+TrackID 4622   Position (-250.265,373.988,206.921)       : 1.844 [keV]
+TrackID 4639   Position (-251.306,375.533,207.755)       : 17.0873 [keV]
+TrackID 4645   Position (-244.471,255.831,105.364)       : 19.8408 [keV]
+TrackID 4644   Position (-246.283,253.53,107.069)       : 52.118 [keV]
+TrackID 4643   Position (-130.712,435.13,294.849)       : 340.383 [keV]
+TrackID 4642   Position (153.24,-369.659,-6.49263)       : 0.55601 [keV]
+TrackID 4641   Position (153.292,-371.533,-2.31307)       : 137.265 [keV]
+TrackID 4640   Position (-259.503,159.548,15.7681)       : 200.615 [keV]
+TrackID 4340   Position (167.52,-185.572,-219.114)       : 2421.3 [keV]
+TrackID 4340   Position (201.062,-222.653,-263.089)       : 2107.26 [keV]
+TrackID 4340   Position (234.695,-259.651,-307.037)       : 2067.1 [keV]
+TrackID 4340   Position (268.295,-296.678,-350.964)       : 2088.15 [keV]
+TrackID 4340   Position (301.852,-333.744,-394.872)       : 122.46 [keV]
+TrackID 4340   Position (302.076,-333.991,-395.164)       : 2327.72 [keV]
+TrackID 4685   Position (302.076,-333.991,-395.164)       : 18.3404 [keV]
+TrackID 4685   Position (302.079,-333.971,-395.238)       : 32.8441 [keV]
+TrackID 4685   Position (302.101,-333.915,-395.309)       : 26.0801 [keV]
+TrackID 4685   Position (302.119,-333.845,-395.355)       : 24.4712 [keV]
+TrackID 4685   Position (302.133,-333.806,-395.414)       : 20.6258 [keV]
+TrackID 4685   Position (302.172,-333.77,-395.46)       : 32.0986 [keV]
+TrackID 4685   Position (302.224,-333.775,-395.504)       : 23.8403 [keV]
+TrackID 4685   Position (302.291,-333.746,-395.541)       : 24.9015 [keV]
+TrackID 4685   Position (302.331,-333.692,-395.597)       : 22.729 [keV]
+TrackID 4685   Position (302.332,-333.633,-395.543)       : 42.5812 [keV]
+TrackID 4685   Position (302.33,-333.611,-395.476)       : 16.3937 [keV]
+TrackID 4685   Position (302.358,-333.603,-395.416)       : 56.7651 [keV]
+TrackID 4685   Position (302.427,-333.587,-395.416)       : 29.0774 [keV]
+TrackID 4685   Position (302.505,-333.588,-395.414)       : 34.7948 [keV]
+TrackID 4685   Position (302.59,-333.59,-395.405)       : 43.5469 [keV]
+TrackID 4685   Position (302.674,-333.53,-395.367)       : 247.652 [keV]
+TrackID 4684   Position (312.231,-324.055,-386.952)       : 5.15254 [keV]
+TrackID 4684   Position (312.237,-324.054,-386.947)       : 1.65948 [keV]
+TrackID 4684   Position (312.242,-324.057,-386.944)       : 3.84762 [keV]
+TrackID 4684   Position (312.245,-324.061,-386.941)       : 2.30789 [keV]
+TrackID 4684   Position (312.25,-324.062,-386.937)       : 4.41992 [keV]
+TrackID 4684   Position (312.254,-324.058,-386.939)       : 2.91714 [keV]
+TrackID 4684   Position (312.258,-324.054,-386.937)       : 2.00975 [keV]
+TrackID 4684   Position (312.262,-324.049,-386.935)       : 2.0201 [keV]
+TrackID 4684   Position (312.265,-324.045,-386.934)       : 2.0196 [keV]
+TrackID 4684   Position (312.269,-324.041,-386.932)       : 7.1265 [keV]
+TrackID 4684   Position (312.275,-324.038,-386.93)       : 23.6919 [keV]
+TrackID 4684   Position (312.279,-324.037,-386.926)       : 7.84157 [keV]
+TrackID 4684   Position (312.28,-324.037,-386.92)       : 3.85769 [keV]
+TrackID 4684   Position (312.281,-324.034,-386.916)       : 6.43073 [keV]
+TrackID 4684   Position (312.285,-324.033,-386.911)       : 8.43094 [keV]
+TrackID 4684   Position (312.287,-324.029,-386.907)       : 6.68442 [keV]
+TrackID 4684   Position (312.286,-324.026,-386.902)       : 8.95738 [keV]
+TrackID 4684   Position (312.29,-324.022,-386.901)       : 4.3452 [keV]
+TrackID 4684   Position (312.294,-324.021,-386.897)       : 7.89098 [keV]
+TrackID 4684   Position (312.299,-324.024,-386.896)       : 38.6194 [keV]
+TrackID 5390   Position (-36.1066,-247.379,49.8125)       : 793.662 [keV]
+TrackID 5390   Position (-36.4898,-250.034,50.338)       : 790.352 [keV]
+TrackID 5390   Position (-43.3505,-296.851,59.4953)       : 1856.5 [keV]
+TrackID 5390   Position (-50.4046,-346.352,68.9491)       : 1541.06 [keV]
+TrackID 5390   Position (-57.2817,-395.877,78.4172)       : 1684.41 [keV]
+TrackID 5390   Position (-63.8974,-445.44,87.7684)       : 1411.47 [keV]
+TrackID 5393   Position (-36.4898,-250.034,50.338)       : 494.239 [keV]
+TrackID 5420   Position (-164.849,-187.949,219.17)       : 49.2558 [keV]
+TrackID 5420   Position (-164.926,-188.038,219.246)       : 61.0523 [keV]
+TrackID 5420   Position (-164.991,-188.097,219.317)       : 26.1069 [keV]
+TrackID 5420   Position (-165.071,-188.168,219.345)       : 31.1295 [keV]
+TrackID 5420   Position (-165.13,-188.239,219.402)       : 42.1831 [keV]
+TrackID 5420   Position (-165.169,-188.326,219.474)       : 42.6715 [keV]
+TrackID 5420   Position (-165.196,-188.465,219.491)       : 214.976 [keV]
+TrackID 5420   Position (-165.282,-188.615,219.488)       : 65.9759 [keV]
+TrackID 5420   Position (-165.397,-188.779,219.601)       : 509.7 [keV]
+TrackID 5442   Position (7.41423,249.89,173.64)       : 3537.65 [keV]
+TrackID 5442   Position (8.68727,299.874,207.623)       : 3545.42 [keV]
+TrackID 5442   Position (9.30569,349.876,241.595)       : 1949.36 [keV]
+TrackID 5442   Position (9.3223,352.362,243.282)       : 1795.92 [keV]
+TrackID 5442   Position (9.34699,354.508,244.748)       : 305.765 [keV]
+TrackID 5442   Position (10.0591,399.873,275.621)       : 342.408 [keV]
+TrackID 5442   Position (10.0658,400.335,275.935)       : 2916.49 [keV]
+TrackID 5442   Position (9.39591,449.902,308.671)       : 3655.8 [keV]
+TrackID 5448   Position (10.0658,400.335,275.935)       : 56.7658 [keV]
+TrackID 5448   Position (10.1509,400.428,276.021)       : 49.8807 [keV]
+TrackID 5448   Position (10.1224,400.465,276.165)       : 45.265 [keV]
+TrackID 5448   Position (10.0561,400.493,276.317)       : 66.427 [keV]
+TrackID 5448   Position (10.1588,400.636,276.354)       : 304.772 [keV]
+TrackID 5447   Position (9.34699,354.508,244.748)       : 37.787 [keV]
+TrackID 5447   Position (9.33616,354.576,244.828)       : 54.983 [keV]
+TrackID 5447   Position (9.33716,354.64,244.891)       : 29.0658 [keV]
+TrackID 5447   Position (9.37026,354.679,244.94)       : 17.9305 [keV]
+TrackID 5447   Position (9.40041,354.697,244.984)       : 17.2518 [keV]
+TrackID 5447   Position (9.4286,354.717,245.021)       : 10.7198 [keV]
+TrackID 5447   Position (9.45864,354.732,245.053)       : 25.3608 [keV]
+TrackID 5447   Position (9.48741,354.742,245.088)       : 17.2022 [keV]
+TrackID 5447   Position (9.51553,354.769,245.115)       : 18.9587 [keV]
+TrackID 5447   Position (9.52265,354.811,245.13)       : 21.4173 [keV]
+TrackID 5447   Position (9.54171,354.824,245.089)       : 18.3272 [keV]
+TrackID 5447   Position (9.56536,354.852,245.06)       : 14.9485 [keV]
+TrackID 5447   Position (59.5424,395.544,237.112)       : 4.92079 [keV]
+TrackID 5447   Position (59.5481,395.56,237.105)       : 5.64933 [keV]
+TrackID 5447   Position (59.5538,395.576,237.101)       : 4.5472 [keV]
+TrackID 5447   Position (59.5562,395.593,237.105)       : 2.84878 [keV]
+TrackID 5447   Position (59.5576,395.61,237.101)       : 10.3776 [keV]
+TrackID 5447   Position (59.5616,395.626,237.09)       : 18.4141 [keV]
+TrackID 5447   Position (59.5771,395.645,237.088)       : 11.2306 [keV]
+TrackID 5447   Position (59.605,395.652,237.092)       : 17.2452 [keV]
+TrackID 5447   Position (59.6337,395.66,237.105)       : 12.2432 [keV]
+TrackID 5447   Position (59.6689,395.659,237.113)       : 13.4092 [keV]
+TrackID 5447   Position (59.6919,395.684,237.128)       : 0.520491 [keV]
+TrackID 5447   Position (59.6934,395.685,237.127)       : 127.761 [keV]
+TrackID 5345   Position (206.907,-140.32,219.268)       : 1405.79 [keV]
+TrackID 5345   Position (209.892,-142.34,222.42)       : 524.361 [keV]
+TrackID 5345   Position (248.358,-168.281,262.953)       : 2400.95 [keV]
+TrackID 5345   Position (289.685,-196.424,306.552)       : 1831.66 [keV]
+TrackID 5345   Position (293.37,-198.923,310.453)       : 251.501 [keV]
+TrackID 5345   Position (330.985,-224.608,350.456)       : 2117.4 [keV]
+TrackID 5345   Position (372.288,-252.787,394.323)       : 2532.15 [keV]
+TrackID 5466   Position (293.37,-198.923,310.453)       : 41.2542 [keV]
+TrackID 5466   Position (293.457,-198.888,310.541)       : 41.6759 [keV]
+TrackID 5466   Position (293.527,-198.912,310.66)       : 50.9631 [keV]
+TrackID 5466   Position (293.641,-198.952,310.69)       : 44.0171 [keV]
+TrackID 5466   Position (293.728,-198.957,310.68)       : 28.929 [keV]
+TrackID 5466   Position (293.789,-198.966,310.653)       : 22.3527 [keV]
+TrackID 5466   Position (293.837,-198.934,310.617)       : 25.2383 [keV]
+TrackID 5466   Position (293.868,-198.896,310.571)       : 20.9353 [keV]
+TrackID 5466   Position (293.884,-198.883,310.507)       : 18.5421 [keV]
+TrackID 5466   Position (293.933,-198.876,310.462)       : 20.9683 [keV]
+TrackID 5466   Position (293.922,-198.868,310.394)       : 32.1585 [keV]
+TrackID 5466   Position (293.894,-198.859,310.334)       : 29.595 [keV]
+TrackID 5466   Position (293.887,-198.819,310.279)       : 16.304 [keV]
+TrackID 5466   Position (293.933,-198.798,310.232)       : 19.1711 [keV]
+TrackID 5466   Position (293.967,-198.81,310.174)       : 31.0506 [keV]
+TrackID 5466   Position (294.018,-198.773,310.169)       : 31.1992 [keV]
+TrackID 5466   Position (294.048,-198.734,310.127)       : 22.0205 [keV]
+TrackID 5466   Position (294.042,-198.679,310.101)       : 35.5167 [keV]
+TrackID 5466   Position (294.017,-198.624,310.078)       : 27.816 [keV]
+TrackID 5466   Position (293.997,-198.611,310.014)       : 25.4305 [keV]
+TrackID 5466   Position (294.048,-198.64,309.983)       : 29.0325 [keV]
+TrackID 5466   Position (294.104,-198.629,309.982)       : 39.1845 [keV]
+TrackID 5466   Position (294.056,-198.667,309.976)       : 130.426 [keV]
+TrackID 5460   Position (209.892,-142.34,222.42)       : 127.224 [keV]
+TrackID 5460   Position (210.27,-142.542,222.429)       : 135.165 [keV]
+TrackID 5460   Position (210.505,-142.693,222.422)       : 42.9646 [keV]
+TrackID 5460   Position (210.655,-142.75,222.298)       : 49.6688 [keV]
+TrackID 5460   Position (210.735,-142.805,222.133)       : 54.7813 [keV]
+TrackID 5460   Position (210.726,-142.903,221.97)       : 74.5604 [keV]
+TrackID 5460   Position (210.685,-143.045,221.854)       : 54.0386 [keV]
+TrackID 5460   Position (210.556,-143.155,221.779)       : 45.8968 [keV]
+TrackID 5460   Position (210.485,-143.309,221.694)       : 65.0932 [keV]
+TrackID 5460   Position (210.473,-143.173,221.83)       : 54.381 [keV]
+TrackID 5460   Position (210.418,-143.008,221.901)       : 59.3397 [keV]
+TrackID 5460   Position (210.283,-142.887,221.91)       : 90.0882 [keV]
+TrackID 5460   Position (210.092,-142.785,221.85)       : 81.5254 [keV]
+TrackID 5460   Position (209.842,-142.767,221.939)       : 478.382 [keV]
+TrackID 5344   Position (-75.3984,238.359,140.018)       : 2072.15 [keV]
+TrackID 5344   Position (-90.7387,285.948,167.595)       : 1790.99 [keV]
+TrackID 5344   Position (-106.11,333.528,195.5)       : 1701.2 [keV]
+TrackID 5344   Position (-121.335,381.153,223.557)       : 1638.35 [keV]
+TrackID 5344   Position (-136.865,428.682,251.613)       : 2024.16 [keV]
+TrackID 6369   Position (-151.788,-198.646,200.232)       : 2102.35 [keV]
+TrackID 6369   Position (-182.007,-238.482,240.289)       : 978.638 [keV]
+TrackID 6378   Position (-183.473,-240.409,242.229)       : 2908.83 [keV]
+TrackID 6375   Position (-183.473,-240.409,242.229)       : 1427.81 [keV]
+TrackID 6375   Position (-183.464,-240.442,242.224)       : 186.891 [keV]
+TrackID 6374   Position (-183.473,-240.409,242.229)       : 2658.59 [keV]
+TrackID 6374   Position (-183.677,-240.2,242.026)       : 2517.21 [keV]
+TrackID 6374   Position (-183.833,-240.04,241.854)       : 2700.28 [keV]
+TrackID 6374   Position (-183.949,-239.913,241.72)       : 3031.98 [keV]
+TrackID 6374   Position (-184.032,-239.822,241.635)       : 1361.01 [keV]
+TrackID 6373   Position (-183.473,-240.409,242.229)       : 6169.68 [keV]
+TrackID 6373   Position (-186.509,-296.166,179.529)       : 11038.5 [keV]
+TrackID 6373   Position (-189.987,-352.001,114.149)       : 11093.3 [keV]
+TrackID 6373   Position (-190.381,-356.914,108.241)       : 1338.1 [keV]
+TrackID 6373   Position (-193.626,-406.213,45.4957)       : 9507.38 [keV]
+TrackID 6373   Position (-193.904,-409.955,40.7854)       : 4554.66 [keV]
+TrackID 6371   Position (-183.473,-240.409,242.229)       : 954.22 [keV]
+TrackID 6368   Position (-132.359,-212.088,109.997)       : 2418.68 [keV]
+TrackID 6368   Position (-158.912,-254.454,131.504)       : 1875.14 [keV]
+TrackID 6368   Position (-185.925,-296.533,152.747)       : 1701.86 [keV]
+TrackID 6368   Position (-213.052,-338.54,174.703)       : 1796.58 [keV]
+TrackID 6368   Position (-240.705,-380.212,196.922)       : 1862.89 [keV]
+TrackID 6365   Position (-226.102,-106.667,-159.721)       : 6221.02 [keV]
+TrackID 6365   Position (-271.737,-127.119,-193.439)       : 7316.51 [keV]
+TrackID 6365   Position (-317.196,-147.942,-227.024)       : 6809.57 [keV]
+TrackID 6365   Position (-362.622,-168.835,-261.235)       : 7631.49 [keV]
+TrackID 6365   Position (-407.917,-190.01,-296.095)       : 7975.22 [keV]
+TrackID 6364   Position (-246.367,-42.4631,126.571)       : 2500.22 [keV]
+TrackID 6364   Position (-295.619,-51.0848,151.653)       : 2655.99 [keV]
+TrackID 6364   Position (-344.872,-59.6923,176.804)       : 2576.94 [keV]
+TrackID 6364   Position (-394.123,-68.3157,202.13)       : 2804.81 [keV]
+TrackID 6364   Position (-443.371,-76.9529,227.527)       : 3123.62 [keV]
+TrackID 6490   Position (-245.045,-70.5555,152.335)       : 19.7454 [keV]
+TrackID 6490   Position (-245.041,-70.558,152.341)       : 1.92937 [keV]
+TrackID 6490   Position (-245.038,-70.5571,152.348)       : 2.86228 [keV]
+TrackID 6490   Position (-245.037,-70.5587,152.354)       : 2.72772 [keV]
+TrackID 6490   Position (-245.036,-70.5598,152.361)       : 5.04274 [keV]
+TrackID 6490   Position (-245.033,-70.5645,152.365)       : 6.93467 [keV]
+TrackID 6490   Position (-245.029,-70.5678,152.369)       : 4.09099 [keV]
+TrackID 6490   Position (-245.028,-70.573,152.373)       : 5.75148 [keV]
+TrackID 6490   Position (-245.027,-70.5788,152.377)       : 2.14847 [keV]
+TrackID 6490   Position (-245.028,-70.5835,152.382)       : 7.98962 [keV]
+TrackID 6490   Position (-245.029,-70.5877,152.387)       : 5.22801 [keV]
+TrackID 6490   Position (-245.032,-70.5908,152.392)       : 4.05995 [keV]
+TrackID 6490   Position (-250.416,-48.1327,160.861)       : 1.29463 [keV]
+TrackID 6490   Position (-250.416,-48.1303,160.861)       : 1.47163 [keV]
+TrackID 6490   Position (-250.415,-48.1287,160.86)       : 1.09395 [keV]
+TrackID 6490   Position (-250.414,-48.1273,160.859)       : 0.644471 [keV]
+TrackID 6490   Position (-250.413,-48.1253,160.859)       : 0.955883 [keV]
+TrackID 6490   Position (-250.413,-48.1236,160.859)       : 1.65223 [keV]
+TrackID 6490   Position (-250.411,-48.1222,160.858)       : 2.16001 [keV]
+TrackID 6490   Position (-250.411,-48.1217,160.856)       : 2.49169 [keV]
+TrackID 6490   Position (-250.412,-48.1217,160.854)       : 7.63211 [keV]
+TrackID 6490   Position (-250.412,-48.1202,160.853)       : 1.8266 [keV]
+TrackID 6490   Position (-250.413,-48.1189,160.852)       : 2.1963 [keV]
+TrackID 6490   Position (-250.414,-48.118,160.85)       : 1.66722 [keV]
+TrackID 6490   Position (-250.414,-48.1162,160.85)       : 0.737876 [keV]
+TrackID 6490   Position (-250.414,-48.1145,160.849)       : 0.597223 [keV]
+TrackID 6490   Position (-250.413,-48.1133,160.847)       : 1.80954 [keV]
+TrackID 6490   Position (-250.413,-48.1121,160.846)       : 1.45772 [keV]
+TrackID 6490   Position (-250.411,-48.1104,160.846)       : 1.05258 [keV]
+TrackID 6490   Position (-250.413,-48.1088,160.847)       : 10.5201 [keV]
+TrackID 6490   Position (-250.414,-48.1089,160.848)       : 2.43924 [keV]
+TrackID 6490   Position (-250.415,-48.1098,160.85)       : 2.4343 [keV]
+TrackID 6490   Position (-250.415,-48.1111,160.851)       : 16.5541 [keV]
+TrackID 6490   Position (-250.413,-48.1114,160.853)       : 14.7345 [keV]
+TrackID 6781   Position (-126.114,-215.859,117.129)       : 2260.92 [keV]
+TrackID 6781   Position (-151.338,-259.031,140.553)       : 1935.42 [keV]
+TrackID 6781   Position (-176.562,-302.202,163.982)       : 1760.84 [keV]
+TrackID 6781   Position (-201.789,-345.371,187.41)       : 2078.03 [keV]
+TrackID 6781   Position (-227.015,-388.541,210.842)       : 1925.07 [keV]
+TrackID 6377   Position (-183.473,-240.409,242.229)       : 44.3648 [keV]
+TrackID 4444   Position (-298.296,184.961,-134.219)       : 45.5376 [keV]
+TrackID 4444   Position (-417.076,-168.96,-251.397)       : 2.5631 [keV]
+TrackID 6812   Position (69.5502,240.131,-140.466)       : 1816.81 [keV]
+TrackID 6812   Position (83.4595,288.157,-168.563)       : 1550.98 [keV]
+TrackID 6812   Position (84.66,292.302,-170.988)       : 276.082 [keV]
+TrackID 6812   Position (97.3698,336.183,-196.656)       : 31.8003 [keV]
+TrackID 6812   Position (97.4003,336.289,-196.717)       : 913.797 [keV]
+TrackID 6812   Position (98.0414,338.502,-198.012)       : 1098.78 [keV]
+TrackID 6812   Position (111.286,384.208,-224.745)       : 2175.49 [keV]
+TrackID 6812   Position (125.211,432.229,-252.855)       : 414.487 [keV]
+TrackID 6812   Position (125.532,433.338,-253.504)       : 793.873 [keV]
+TrackID 6812   Position (126.081,435.23,-254.612)       : 646.136 [keV]
+TrackID 6814   Position (-246.406,251.749,-92.8461)       : 106.582 [keV]
+TrackID -1   Position (335.354,109.494,-5.9577)       : 229.729 [keV]
+TrackID -1   Position (-382.136,-119.753,124.716)       : 130.761 [keV]
+TrackID -1   Position (429.787,-136.921,321.502)       : 107.925 [keV]
+TrackID -1   Position (429.969,-136.999,321.822)       : 127.685 [keV]
+TrackID -1   Position (430.096,-137.231,322.093)       : 111.701 [keV]
+TrackID -1   Position (430.274,-137.511,322.367)       : 126.862 [keV]
+TrackID -1   Position (430.539,-137.574,322.683)       : 514.284 [keV]
+TrackID -1   Position (430.984,-137.465,322.975)       : 180.974 [keV]
+TrackID -1   Position (300.361,48.0967,84.1534)       : 143.837 [keV]
+TrackID -1   Position (-175.016,-303.443,-316.201)       : 22.2576 [keV]
+TrackID -1   Position (-175.06,-303.497,-316.22)       : 34.808 [keV]
+TrackID -1   Position (-175.093,-303.594,-316.241)       : 44.4242 [keV]
+TrackID -1   Position (-175.124,-303.709,-316.306)       : 89.5242 [keV]
+TrackID -1   Position (-175.209,-303.828,-316.384)       : 60.8645 [keV]
+TrackID -1   Position (-175.319,-303.987,-316.401)       : 429.641 [keV]
+TrackID -1   Position (-311.879,-254.775,119.476)       : 61.3466 [keV]
+TrackID -1   Position (-309.986,-254.051,120.282)       : 36.8533 [keV]
+TrackID -1   Position (-281.506,-212.486,140.501)       : 128.934 [keV]
+TrackID -1   Position (120.542,435.543,-266.053)       : 12.1741 [keV]
+TrackID -1   Position (167.619,-363.986,-82.572)       : 38.566 [keV]
+TrackID -1   Position (-250.673,-37.2563,-31.8937)       : 262.123 [keV]
+TrackID -1   Position (100.127,387.432,-239.569)       : 19.9351 [keV]
+TrackID -1   Position (100.108,387.417,-239.532)       : 12.7731 [keV]
+TrackID -1   Position (100.077,387.418,-239.499)       : 10.9233 [keV]
+TrackID -1   Position (100.056,387.401,-239.464)       : 17.0144 [keV]
+TrackID -1   Position (100.023,387.407,-239.435)       : 15.0778 [keV]
+TrackID -1   Position (99.9967,387.438,-239.417)       : 18.731 [keV]
+TrackID -1   Position (99.974,387.462,-239.387)       : 13.1612 [keV]
+TrackID -1   Position (99.9555,387.501,-239.376)       : 23.2909 [keV]
+TrackID -1   Position (99.9385,387.546,-239.352)       : 33.1048 [keV]
+TrackID -1   Position (99.8972,387.562,-239.304)       : 14.4739 [keV]
+TrackID -1   Position (99.843,387.59,-239.275)       : 26.0587 [keV]
+TrackID -1   Position (99.7771,387.597,-239.292)       : 33.9869 [keV]
+TrackID -1   Position (99.7407,387.651,-239.266)       : 56.6429 [keV]
+TrackID -1   Position (99.6892,387.715,-239.268)       : 45.3827 [keV]
+TrackID -1   Position (99.6649,387.796,-239.255)       : 226.879 [keV]
+TrackID -1   Position (-69.5039,294.56,-99.9828)       : 24.6113 [keV]
+TrackID -1   Position (-74.4334,295.005,-127.25)       : 6.42289 [keV]
+TrackID -1   Position (-64.2598,295.86,-210.17)       : 128.954 [keV]
+TrackID -1   Position (290.978,-275.182,-221.388)       : 285.627 [keV]
+TrackID -1   Position (129.554,273.24,-262.202)       : 156.591 [keV]
+TrackID -1   Position (127.519,276.744,-265.871)       : 24.9399 [keV]
+TrackID -1   Position (127.457,276.706,-265.891)       : 33.9381 [keV]
+TrackID -1   Position (127.469,276.787,-265.949)       : 23.9283 [keV]
+TrackID -1   Position (127.442,276.861,-265.959)       : 22.9397 [keV]
+TrackID -1   Position (127.462,276.907,-265.92)       : 18.9198 [keV]
+TrackID -1   Position (127.446,276.937,-265.891)       : 12.0754 [keV]
+TrackID -1   Position (127.433,276.924,-265.854)       : 19.8961 [keV]
+TrackID -1   Position (127.428,276.881,-265.857)       : 24.8484 [keV]
+TrackID -1   Position (127.389,276.85,-265.871)       : 169.812 [keV]
+TrackID -1   Position (159.279,425.828,-263.84)       : 100.309 [keV]
+TrackID -1   Position (5.11595,253.261,-44.07)       : 265.631 [keV]
+TrackID -1   Position (4.70802,253.186,-43.7594)       : 310.634 [keV]
+TrackID -1   Position (4.6643,253.37,-44.0792)       : 225.332 [keV]
+TrackID -1   Position (4.6643,253.37,-44.0792)       : 1.844 [keV]
+TrackID -1   Position (3.89754,253.884,-44.3244)       : 14.8558 [keV]
+TrackID -1   Position (126.279,326.831,-190.839)       : 99.591 [keV]
+TrackID -1   Position (124.835,327.445,-189.802)       : 150.904 [keV]
+TrackID -1   Position (124.814,327.398,-189.666)       : 265.487 [keV]
+TrackID -1   Position (-451.189,24.7435,-403.609)       : 501.717 [keV]
+TrackID -1   Position (-315.763,-325.422,-361.732)       : 179.412 [keV]
+TrackID -1   Position (161.797,425.261,-400.956)       : 15.188 [keV]
+TrackID -1   Position (161.765,425.229,-400.98)       : 12.8502 [keV]
+TrackID -1   Position (161.754,425.194,-401)       : 18.0787 [keV]
+TrackID -1   Position (161.752,425.153,-401.005)       : 10.439 [keV]
+TrackID -1   Position (161.757,425.114,-401.014)       : 11.514 [keV]
+TrackID -1   Position (161.736,425.078,-401.03)       : 19.283 [keV]
+TrackID -1   Position (161.726,425.023,-401.024)       : 14.6869 [keV]
+TrackID -1   Position (161.757,424.963,-401.05)       : 23.9199 [keV]
+TrackID -1   Position (161.785,424.892,-401.077)       : 39.123 [keV]
+TrackID -1   Position (161.878,424.85,-401.089)       : 34.314 [keV]
+TrackID -1   Position (161.85,424.804,-401.173)       : 42.3585 [keV]
+TrackID -1   Position (161.875,424.838,-401.268)       : 44.2269 [keV]
+TrackID -1   Position (161.807,424.855,-401.336)       : 254.431 [keV]
+TrackID -1   Position (247.298,-377.124,-109.509)       : 1.47526 [keV]
+TrackID -1   Position (158.348,-255.745,-241.151)       : 238.578 [keV]
+TrackID -1   Position (158.441,-255.54,-241.348)       : 105.54 [keV]
+TrackID -1   Position (158.467,-255.249,-241.555)       : 84.5799 [keV]
+TrackID -1   Position (158.552,-254.923,-241.619)       : 78.7619 [keV]
+TrackID -1   Position (148.813,-207.074,-225.239)       : 65.3322 [keV]
+TrackID -1   Position (148.766,-206.878,-225.246)       : 44.9038 [keV]
+TrackID -1   Position (148.698,-206.706,-225.281)       : 51.1281 [keV]
+TrackID -1   Position (148.658,-206.527,-225.325)       : 76.9234 [keV]
+TrackID -1   Position (148.674,-206.369,-225.434)       : 64.6757 [keV]
+TrackID -1   Position (148.712,-206.192,-225.508)       : 412.441 [keV]
+TrackID -1   Position (148.695,-205.982,-225.578)       : 88.4029 [keV]
+TrackID -1   Position (148.585,-205.803,-225.406)       : 135.287 [keV]
+TrackID -1   Position (148.468,-205.655,-225.182)       : 467.123 [keV]
+TrackID -1   Position (-397.988,215.597,-150.646)       : 30.3373 [keV]
+TrackID -1   Position (-399.073,210.234,-153.597)       : 309.65 [keV]
+TrackID -1   Position (453.758,21.7208,248.495)       : 20.7643 [keV]
+TrackID -1   Position (454.591,14.6242,242.589)       : 14.0923 [keV]
+TrackID -1   Position (397.232,-213.242,325.239)       : 7.88699 [keV]
+TrackID -1   Position (290.668,-278.718,383.789)       : 46.8174 [keV]
+TrackID -1   Position (291.055,-278.342,384.857)       : 283.719 [keV]
+TrackID -1   Position (235.806,-260.902,332.005)       : 18.1132 [keV]
+TrackID -1   Position (-107.157,-285.312,51.7185)       : 31.046 [keV]
+TrackID -1   Position (-107.15,-285.391,51.7455)       : 14.223 [keV]
+TrackID -1   Position (-107.134,-285.435,51.7489)       : 16.3579 [keV]
+TrackID -1   Position (-107.135,-285.465,51.7683)       : 12.1592 [keV]
+TrackID -1   Position (-107.156,-285.469,51.7946)       : 13.3315 [keV]
+TrackID -1   Position (-107.185,-285.475,51.8118)       : 15.27 [keV]
+TrackID -1   Position (-107.203,-285.486,51.8385)       : 10.9293 [keV]
+TrackID -1   Position (-107.232,-285.49,51.8561)       : 6.81282 [keV]
+TrackID -1   Position (-107.265,-285.488,51.8673)       : 7.6456 [keV]
+TrackID -1   Position (-107.293,-285.474,51.8784)       : 12.7535 [keV]
+TrackID -1   Position (-107.318,-285.464,51.8998)       : 14.0693 [keV]
+TrackID -1   Position (-107.351,-285.47,51.91)       : 17.0036 [keV]
+TrackID -1   Position (-196.789,-289.437,-25.8923)       : 4.57531 [keV]
+TrackID -1   Position (-196.798,-289.433,-25.9015)       : 4.70814 [keV]
+TrackID -1   Position (-196.803,-289.429,-25.9153)       : 0.654063 [keV]
+TrackID -1   Position (-225.019,-205.892,-92.2883)       : 11.3313 [keV]
+TrackID -1   Position (-225.021,-205.885,-92.2973)       : 1.87805 [keV]
+TrackID -1   Position (-225.025,-205.875,-92.3035)       : 3.64456 [keV]
+TrackID -1   Position (-225.026,-205.868,-92.3136)       : 3.41123 [keV]
+TrackID -1   Position (-225.03,-205.86,-92.3217)       : 2.18125 [keV]
+TrackID -1   Position (-225.033,-205.852,-92.3299)       : 4.98736 [keV]
+TrackID -1   Position (-225.034,-205.843,-92.3384)       : 6.98448 [keV]
+TrackID -1   Position (-225.039,-205.835,-92.3458)       : 4.90446 [keV]
+TrackID -1   Position (-225.046,-205.826,-92.3493)       : 2.33666 [keV]
+TrackID -1   Position (-225.049,-205.82,-92.3595)       : 2.83788 [keV]
+TrackID -1   Position (-225.049,-205.809,-92.3657)       : 6.09724 [keV]
+TrackID -1   Position (-225.05,-205.799,-92.3719)       : 21.2393 [keV]
+TrackID -1   Position (-225.056,-205.79,-92.3784)       : 3.39399 [keV]
+TrackID -1   Position (-225.062,-205.78,-92.3811)       : 5.96779 [keV]
+TrackID -1   Position (-225.062,-205.767,-92.3815)       : 10.8123 [keV]
+TrackID -1   Position (-225.049,-205.773,-92.384)       : 9.76502 [keV]
+TrackID -1   Position (-225.034,-205.767,-92.3867)       : 11.4644 [keV]
+TrackID -1   Position (-225.014,-205.773,-92.3825)       : 16.1853 [keV]
+TrackID -1   Position (-224.994,-205.758,-92.3822)       : 102.74 [keV]
+TrackID -1   Position (-249.453,-20.04,-30.1965)       : 44.467 [keV]
+TrackID -1   Position (399.24,-218.248,-402.526)       : 376.762 [keV]
+TrackID -1   Position (398.546,-218.342,-402.146)       : 272.082 [keV]
+TrackID -1   Position (397.829,-218.523,-401.639)       : 306.385 [keV]
+TrackID -1   Position (397.138,-219.118,-401.557)       : 258.699 [keV]
+TrackID -1   Position (396.476,-219.745,-401.495)       : 265.409 [keV]
+TrackID -1   Position (395.875,-220.346,-401.159)       : 272.167 [keV]
+TrackID -1   Position (396.113,-221.188,-401.423)       : 258.676 [keV]
+TrackID -1   Position (396.66,-221.475,-400.854)       : 317.857 [keV]
+TrackID -1   Position (397.128,-221.56,-400.266)       : 336.672 [keV]
+TrackID -1   Position (397.508,-221.029,-400.178)       : 231.86 [keV]
+TrackID -1   Position (201.294,-152.048,197.633)       : 16.4381 [keV]
+TrackID -1   Position (286.558,-91.3867,239.117)       : 1.44396 [keV]
+TrackID -1   Position (291.239,-85.3626,244.305)       : 43.0327 [keV]
+TrackID -1   Position (398.434,-212.627,232.773)       : 160.828 [keV]
+TrackID -1   Position (280.223,-212.427,219.138)       : 308.942 [keV]
+TrackID -1   Position (242.512,-181.538,-162.553)       : 399.613 [keV]
+TrackID -1   Position (-419.535,-176.113,-42.3203)       : 0.0144366 [keV]
+TrackID -1   Position (-419.16,-175.226,-40.3685)       : 0.0140709 [keV]
+TrackID -1   Position (-371.005,-162.42,12.1194)       : 0.00508121 [keV]
+TrackID -1   Position (19.367,303.644,-247.395)       : 61.335 [keV]
+TrackID -1   Position (19.1976,303.581,-247.292)       : 66.5843 [keV]
+TrackID -1   Position (19.0079,303.634,-247.173)       : 58.1493 [keV]
+TrackID -1   Position (18.8049,303.647,-247.11)       : 66.362 [keV]
+TrackID -1   Position (18.7821,303.811,-247.256)       : 55.4029 [keV]
+TrackID -1   Position (18.8788,303.963,-247.264)       : 184.985 [keV]
+TrackID -1   Position (18.9945,303.98,-247.202)       : 36.9016 [keV]
+TrackID -1   Position (19.0661,304.067,-247.145)       : 29.8774 [keV]
+TrackID -1   Position (19.0293,304.084,-247.064)       : 31.9283 [keV]
+TrackID -1   Position (18.9706,304.05,-246.997)       : 40.99 [keV]
+TrackID -1   Position (18.9563,304.101,-246.918)       : 41.1714 [keV]
+TrackID -1   Position (18.9141,304.135,-246.846)       : 44.712 [keV]
+TrackID -1   Position (18.9577,304.133,-246.783)       : 180.484 [keV]
+TrackID -1   Position (1.76206,-453.034,-31.6773)       : 212.896 [keV]
+TrackID -1   Position (1.59869,-453.489,-31.497)       : 98.9611 [keV]
+TrackID -1   Position (1.41207,-453.797,-31.6383)       : 133.548 [keV]
+TrackID -1   Position (1.19411,-454.022,-31.7714)       : 113.598 [keV]
+TrackID -1   Position (0.960871,-454.228,-31.8659)       : 316.981 [keV]
+TrackID -1   Position (0.754831,-454.264,-32.1368)       : 135.957 [keV]
+TrackID -1   Position (0.943552,-454.065,-32.0402)       : 354.039 [keV]
+TrackID -1   Position (1.41207,-453.797,-31.6383)       : 521.386 [keV]
+TrackID -1   Position (20.7921,353.62,-331.542)       : 84.4185 [keV]
+TrackID -1   Position (20.8017,353.825,-331.316)       : 7.63953 [keV]
+TrackID -1   Position (20.6818,354.202,-330.889)       : 28.3467 [keV]
+TrackID -1   Position (20.661,354.172,-330.875)       : 147.086 [keV]
+TrackID -1   Position (-161.795,255.092,-223.977)       : 314.413 [keV]
+TrackID -1   Position (-72.7804,395.163,-174.256)       : 193.632 [keV]
+TrackID -1   Position (-73.1285,395.212,-173.785)       : 146.448 [keV]
+TrackID -1   Position (-73.4905,394.881,-173.538)       : 135.472 [keV]
+TrackID -1   Position (-73.701,394.64,-173.195)       : 115.906 [keV]
+TrackID -1   Position (-73.9287,394.689,-172.849)       : 80.5097 [keV]
+TrackID -1   Position (-74.1377,394.694,-172.718)       : 157.875 [keV]
+TrackID -1   Position (-74.4378,394.693,-172.359)       : 583.13 [keV]
+TrackID -1   Position (-74.96,394.594,-172.339)       : 101.802 [keV]
+TrackID -1   Position (-164.411,370.127,-70.0077)       : 1.844 [keV]
+TrackID -1   Position (-163.605,369.263,-69.3089)       : 56.6093 [keV]
+TrackID -1   Position (-200.005,408.33,-100.886)       : 10.3512 [keV]
+TrackID -1   Position (109.904,441.314,-355.505)       : 364.167 [keV]
+TrackID -1   Position (109.18,440.313,-355.84)       : 418.854 [keV]
+TrackID -1   Position (108.19,439.301,-356.258)       : 475.766 [keV]
+TrackID -1   Position (107.38,438.127,-356.517)       : 509.205 [keV]
+TrackID -1   Position (107.175,437.225,-357.385)       : 480.183 [keV]
+TrackID -1   Position (107.887,436.878,-358.236)       : 0.337386 [keV]
+TrackID -1   Position (129.583,-274.466,-161.772)       : 17.4537 [keV]
+TrackID -1   Position (351.329,-194.605,80.61)       : 19.1492 [keV]
+TrackID -1   Position (400.285,-15.093,-23.6775)       : 102.674 [keV]
+TrackID -1   Position (352.493,13.0212,-107.981)       : 120.121 [keV]
+TrackID -1   Position (-8.01155,452.915,-437.897)       : 305.355 [keV]
+TrackID -1   Position (95.3613,442.064,-97.1801)       : 424.06 [keV]
+TrackID -1   Position (95.6803,388.947,-369.997)       : 260.06 [keV]
+TrackID -1   Position (-198.079,-291.905,321.725)       : 74.2047 [keV]
+TrackID -1   Position (-369.954,-155.668,180.008)       : 526.781 [keV]
+TrackID -1   Position (-370.007,-155.792,180.401)       : 48.6374 [keV]
+TrackID -1   Position (-276.913,-288.651,8.271)       : 5.57189 [keV]
+TrackID -1   Position (-278.106,-290.294,8.9113)       : 2.25297 [keV]
+TrackID -1   Position (-448.406,77.1825,223.911)       : 1.39693 [keV]
+TrackID -1   Position (236.143,185.578,-101.92)       : 19.2085 [keV]
+TrackID -1   Position (278.95,-110.442,-149.052)       : 1.9038 [keV]
+TrackID -1   Position (278.951,-110.449,-149.051)       : 3.91849 [keV]
+TrackID -1   Position (278.948,-110.456,-149.048)       : 3.70646 [keV]
+TrackID -1   Position (278.948,-110.464,-149.046)       : 6.61637 [keV]
+TrackID -1   Position (278.947,-110.471,-149.041)       : 4.78008 [keV]
+TrackID -1   Position (278.944,-110.479,-149.038)       : 38.8262 [keV]
+TrackID -1   Position (278.938,-110.484,-149.037)       : 2.51966 [keV]
+TrackID -1   Position (278.937,-110.491,-149.04)       : 65.4152 [keV]
+TrackID -1   Position (278.94,-110.499,-149.042)       : 55.1076 [keV]
+TrackID -1   Position (-147.869,203.373,147.959)       : 115.631 [keV]
+TrackID -1   Position (9.68523,352.49,21.736)       : 49.2433 [keV]
+TrackID -1   Position (-21.5347,299.962,80.2033)       : 233.451 [keV]
+TrackID -1   Position (-47.8087,297.806,76.6955)       : 91.854 [keV]
+TrackID -1   Position (-47.7719,297.848,76.408)       : 138.892 [keV]
+TrackID -1   Position (-47.5739,298.266,76.2897)       : 665.641 [keV]
+TrackID -1   Position (-47.1326,298.476,76.1311)       : 2.72805 [keV]
+TrackID -1   Position (-362.791,-270.813,417.448)       : 252.9 [keV]
+TrackID -1   Position (349.903,-194.859,-5.0309)       : 169.294 [keV]
+TrackID -1   Position (286.973,-206.464,124.94)       : 66.9008 [keV]
+TrackID -1   Position (-45.6768,-301.398,97.5149)       : 46.8802 [keV]
+TrackID -1   Position (-56.6174,-296.418,101.385)       : 422.942 [keV]
+TrackID -1   Position (-171.597,-366.484,268.269)       : 52.0293 [keV]
+TrackID -1   Position (158.307,371.604,69.944)       : 125.762 [keV]
+TrackID -1   Position (401.305,1.83536,328.22)       : 2.46613 [keV]
+TrackID -1   Position (324.506,-142.828,-4.77597)       : 36.2841 [keV]
+TrackID -1   Position (324.57,-142.931,-4.7354)       : 67.905 [keV]
+TrackID -1   Position (324.633,-142.971,-4.66246)       : 21.0591 [keV]
+TrackID -1   Position (324.623,-143.008,-4.58892)       : 25.8358 [keV]
+TrackID -1   Position (324.636,-143.041,-4.51613)       : 24.1049 [keV]
+TrackID -1   Position (324.638,-143.081,-4.44685)       : 17.4695 [keV]
+TrackID -1   Position (324.643,-143.104,-4.37068)       : 32.5604 [keV]
+TrackID -1   Position (324.625,-143.121,-4.29618)       : 21.5635 [keV]
+TrackID -1   Position (324.599,-143.167,-4.23891)       : 21.9871 [keV]
+TrackID -1   Position (324.6,-143.164,-4.15975)       : 22.1032 [keV]
+TrackID -1   Position (324.581,-143.131,-4.08968)       : 25.4118 [keV]
+TrackID -1   Position (324.562,-143.123,-4.0193)       : 34.9903 [keV]
+TrackID -1   Position (324.519,-143.172,-3.97248)       : 34.3875 [keV]
+TrackID -1   Position (324.459,-143.207,-3.92148)       : 25.7512 [keV]
+TrackID -1   Position (324.439,-143.302,-3.90842)       : 38.1161 [keV]
+TrackID -1   Position (324.484,-143.357,-3.97165)       : 32.5302 [keV]
+TrackID -1   Position (324.556,-143.388,-3.98814)       : 27.6138 [keV]
+TrackID -1   Position (324.616,-143.42,-4.02734)       : 95.2558 [keV]
+TrackID -1   Position (324.67,-143.418,-4.07674)       : 28.226 [keV]
+TrackID -1   Position (324.719,-143.455,-4.07229)       : 2.11504 [keV]
+TrackID -1   Position (397.036,-48.6008,52.0965)       : 7.71203 [keV]
+TrackID -1   Position (397.043,-48.602,52.0943)       : 3.36144 [keV]
+TrackID -1   Position (397.049,-48.6005,52.09)       : 21.2273 [keV]
+TrackID -1   Position (397.054,-48.6,52.085)       : 3.52468 [keV]
+TrackID -1   Position (397.057,-48.5971,52.0801)       : 2.96824 [keV]
+TrackID -1   Position (397.062,-48.5981,52.0753)       : 2.07044 [keV]
+TrackID -1   Position (397.064,-48.5987,52.0683)       : 8.79679 [keV]
+TrackID -1   Position (397.068,-48.6011,52.0621)       : 5.04984 [keV]
+TrackID -1   Position (397.068,-48.6007,52.0531)       : 8.62377 [keV]
+TrackID -1   Position (397.067,-48.5992,52.044)       : 4.97232 [keV]
+TrackID -1   Position (397.063,-48.5963,52.0367)       : 34.7014 [keV]
+TrackID -1   Position (397.066,-48.5973,52.0301)       : 7.18236 [keV]
+TrackID -1   Position (397.073,-48.5961,52.0267)       : 54.9087 [keV]
+TrackID -1   Position (324.562,-143.123,-4.0193)       : 1.844 [keV]
+TrackID -1   Position (324.429,-143.149,-3.93572)       : 13.7351 [keV]
+TrackID -1   Position (60.097,242.669,-98.4703)       : 141.213 [keV]
+TrackID -1   Position (60.0266,242.936,-98.1739)       : 147.9 [keV]
+TrackID -1   Position (60.0386,243.054,-97.8667)       : 97.6976 [keV]
+TrackID -1   Position (60.2276,243.158,-97.6305)       : 89.8523 [keV]
+TrackID -1   Position (60.357,243.192,-97.342)       : 77.5941 [keV]
+TrackID -1   Position (60.4326,243.279,-97.04)       : 173.868 [keV]
+TrackID -1   Position (60.7008,243.281,-96.8522)       : 71.4364 [keV]
+TrackID -1   Position (60.9122,243.161,-96.6411)       : 125.056 [keV]
+TrackID -1   Position (61.14,243.014,-96.4883)       : 89.5444 [keV]
+TrackID -1   Position (61.3037,243.049,-96.2176)       : 99.2689 [keV]
+TrackID -1   Position (61.4458,242.881,-95.9805)       : 108.889 [keV]
+TrackID -1   Position (61.709,242.765,-95.8634)       : 506.674 [keV]
+TrackID -1   Position (61.999,242.902,-95.8835)       : 66.3604 [keV]
+TrackID -1   Position (454.905,-9.28125,-306.244)       : 0.0695921 [keV]
+TrackID -1   Position (60.3544,242.605,-99.226)       : 0.116806 [keV]
+TrackID -1   Position (60.3545,242.605,-99.226)       : 0.187838 [keV]
+TrackID -1   Position (60.3545,242.605,-99.226)       : 0.24614 [keV]
+TrackID -1   Position (60.3545,242.605,-99.226)       : 0.171795 [keV]
+TrackID -1   Position (60.3545,242.605,-99.2261)       : 0.186386 [keV]
+TrackID -1   Position (60.3546,242.605,-99.2261)       : 0.540832 [keV]
+TrackID -1   Position (60.3546,242.605,-99.2261)       : 0.324037 [keV]
+TrackID -1   Position (60.3546,242.605,-99.2261)       : 2.04771 [keV]
+TrackID -1   Position (-135.939,-211.698,157.642)       : 74.0813 [keV]
+TrackID -1   Position (-138.171,-211.642,154.626)       : 83.4366 [keV]
+TrackID -1   Position (395.876,-213.968,118.367)       : 81.1846 [keV]
+TrackID -1   Position (395.885,-214.151,118.137)       : 138.152 [keV]
+TrackID -1   Position (395.864,-214.285,117.768)       : 128.729 [keV]
+TrackID -1   Position (395.883,-214.303,117.369)       : 118.79 [keV]
+TrackID -1   Position (395.824,-214.098,117.046)       : 9.46505 [keV]
+TrackID -1   Position (369.931,-164.851,37.1174)       : 109.245 [keV]
+TrackID -1   Position (369.836,-164.731,36.8469)       : 43.0077 [keV]
+TrackID -1   Position (413.934,-176.518,-33.5073)       : 47.0901 [keV]
+TrackID -1   Position (414.021,-176.511,-33.6781)       : 188.032 [keV]
+TrackID -1   Position (414.132,-176.522,-33.8302)       : 68.5089 [keV]
+TrackID -1   Position (414.15,-176.448,-33.9992)       : 71.3851 [keV]
+TrackID -1   Position (414.139,-176.552,-34.1559)       : 52.6935 [keV]
+TrackID -1   Position (414.118,-176.67,-34.2967)       : 52.2337 [keV]
+TrackID -1   Position (414.194,-176.686,-34.4647)       : 54.4075 [keV]
+TrackID -1   Position (414.339,-176.682,-34.5845)       : 57.2505 [keV]
+TrackID -1   Position (414.439,-176.76,-34.7137)       : 49.7006 [keV]
+TrackID -1   Position (414.437,-176.72,-34.8936)       : 52.5139 [keV]
+TrackID -1   Position (414.384,-176.75,-35.063)       : 60.0468 [keV]
+TrackID -1   Position (414.215,-176.806,-35.1193)       : 83.247 [keV]
+TrackID -1   Position (414.074,-176.898,-35.1741)       : 65.9935 [keV]
+TrackID -1   Position (414.042,-177.064,-35.216)       : 211.529 [keV]
+TrackID -1   Position (413.906,-176.993,-35.2603)       : 129.451 [keV]
+TrackID -1   Position (413.79,-177.008,-35.271)       : 138.217 [keV]
+TrackID -1   Position (416.107,-184.066,377.991)       : 0.44738 [keV]
+TrackID -1   Position (231.586,-391.654,358.001)       : 49.3668 [keV]
+TrackID -1   Position (182.352,-241.478,279.302)       : 88.9493 [keV]
+TrackID -1   Position (182.204,-241.625,280.003)       : 247.425 [keV]
+TrackID -1   Position (-258.193,310.311,155.668)       : 444.994 [keV]
+TrackID -1   Position (-258.354,310.337,155.331)       : 90.0894 [keV]
+TrackID -1   Position (-399.893,44.8819,63.3918)       : 14.8906 [keV]
+TrackID -1   Position (336.652,222.081,350.333)       : 143.128 [keV]
+TrackID -1   Position (336.266,222.082,350.588)       : 742.77 [keV]
+TrackID -1   Position (-24.7573,-350.253,-94.4052)       : 4.66103 [keV]
+TrackID -1   Position (21.3979,-404.258,-131.525)       : 10.8315 [keV]
+TrackID -1   Position (21.3852,-404.294,-131.53)       : 23.0136 [keV]
+TrackID -1   Position (21.3634,-404.319,-131.554)       : 21.9656 [keV]
+TrackID -1   Position (21.3542,-404.349,-131.566)       : 9.23096 [keV]
+TrackID -1   Position (21.3479,-404.371,-131.554)       : 10.2709 [keV]
+TrackID -1   Position (21.3408,-404.391,-131.539)       : 5.24461 [keV]
+TrackID -1   Position (21.3237,-404.407,-131.53)       : 8.62578 [keV]
+TrackID -1   Position (21.3132,-404.425,-131.516)       : 8.28762 [keV]
+TrackID -1   Position (21.3011,-404.439,-131.498)       : 0.168695 [keV]
+TrackID -1   Position (-42.8051,-447.96,-109.388)       : 10.1364 [keV]
+TrackID -1   Position (-42.808,-447.975,-109.379)       : 4.54173 [keV]
+TrackID -1   Position (-42.8137,-447.984,-109.368)       : 5.04862 [keV]
+TrackID -1   Position (-42.8191,-447.993,-109.358)       : 7.04197 [keV]
+TrackID -1   Position (-42.8288,-447.998,-109.347)       : 13.2234 [keV]
+TrackID -1   Position (-42.8353,-448.004,-109.335)       : 6.57533 [keV]
+TrackID -1   Position (-42.8377,-448.007,-109.32)       : 4.90347 [keV]
+TrackID -1   Position (-42.8361,-448.01,-109.306)       : 47.4577 [keV]
+TrackID -1   Position (-42.8279,-448.011,-109.293)       : 9.51984 [keV]
+TrackID -1   Position (-42.8236,-448.013,-109.279)       : 9.35839 [keV]
+TrackID -1   Position (-42.8096,-448.016,-109.273)       : 19.5988 [keV]
+TrackID -1   Position (-42.8093,-448.004,-109.284)       : 6.8354 [keV]
+TrackID -1   Position (-42.8174,-447.993,-109.289)       : 14.9433 [keV]
+TrackID -1   Position (-42.8253,-447.981,-109.288)       : 20.7703 [keV]
+TrackID -1   Position (-42.8371,-447.973,-109.283)       : 6.29408 [keV]
+TrackID -1   Position (-42.8508,-447.973,-109.286)       : 21.7541 [keV]
+TrackID -1   Position (-42.8557,-447.983,-109.278)       : 11.799 [keV]
+TrackID -1   Position (-42.8662,-447.985,-109.282)       : 48.7636 [keV]
+TrackID -1   Position (84.8709,-344.121,-129.14)       : 230.2 [keV]
+TrackID -1   Position (-267.685,300.051,298.733)       : 56.5712 [keV]
+TrackID -1   Position (-438.199,-106.048,-308.061)       : 30.3054 [keV]
+TrackID -1   Position (-438.298,-106.087,-308.005)       : 86.3986 [keV]
+TrackID -1   Position (-438.554,-106.228,-307.924)       : 88.4596 [keV]
+TrackID -1   Position (-438.827,-106.353,-307.712)       : 136.135 [keV]
+TrackID -1   Position (-439.105,-106.606,-307.448)       : 151.851 [keV]
+TrackID -1   Position (-439.361,-107.1,-307.407)       : 208.394 [keV]
+TrackID -1   Position (-439.507,-107.65,-307.12)       : 246.5 [keV]
+TrackID -1   Position (-439.135,-107.702,-306.504)       : 620.062 [keV]
+TrackID -1   Position (-438.699,-108.218,-306.592)       : 201.978 [keV]
+TrackID -1   Position (-436.401,124.2,-358.967)       : 147.77 [keV]
+TrackID -1   Position (89.1435,-390.378,-381.385)       : 24.4789 [keV]
+TrackID -1   Position (89.2098,-390.414,-381.451)       : 22.0124 [keV]
+TrackID -1   Position (89.2986,-390.49,-381.553)       : 59.5952 [keV]
+TrackID -1   Position (89.4226,-390.603,-381.586)       : 211.671 [keV]
+TrackID -1   Position (89.5491,-390.715,-381.707)       : 69.9368 [keV]
+TrackID -1   Position (89.5249,-390.937,-381.826)       : 233.54 [keV]
+TrackID -1   Position (89.6124,-391.137,-381.999)       : 107.048 [keV]
+TrackID -1   Position (89.8618,-391.174,-382.265)       : 450.485 [keV]
+TrackID -1   Position (89.6556,-391.491,-382.281)       : 87.9336 [keV]
+TrackID -1   Position (-336.751,-298.805,55.9628)       : 89.6047 [keV]
+TrackID -1   Position (-380.257,-132.713,77.6252)       : 280.289 [keV]
+TrackID -1   Position (224.377,-113.488,45.8331)       : 292.981 [keV]
+TrackID -1   Position (-161.67,-254.377,270.947)       : 101.547 [keV]
+TrackID -1   Position (209.811,-139.134,99.1939)       : 613.369 [keV]
+TrackID -1   Position (209.259,-138.875,99.0965)       : 149.789 [keV]
+TrackID -1   Position (211.737,-140.168,99.8216)       : 149.216 [keV]
+TrackID -1   Position (212.092,-139.869,100.01)       : 488.604 [keV]
+TrackID -1   Position (345.939,-290.064,145.814)       : 92.2627 [keV]
+TrackID -1   Position (202.582,225.552,214.605)       : 4.39931 [keV]
+TrackID -1   Position (238.942,259.665,110.602)       : 35.9239 [keV]
+TrackID -1   Position (192.675,232.326,55.4881)       : 433.743 [keV]
+TrackID -1   Position (454.597,7.88873,433.963)       : 39.7005 [keV]
+TrackID -1   Position (454.553,7.76067,434.021)       : 26.9681 [keV]
+TrackID -1   Position (454.479,7.66945,434.029)       : 50.8458 [keV]
+TrackID -1   Position (454.355,7.68048,433.982)       : 57.0495 [keV]
+TrackID -1   Position (454.245,7.62515,433.867)       : 47.3663 [keV]
+TrackID -1   Position (454.071,7.53935,433.835)       : 80.9014 [keV]
+TrackID -1   Position (453.93,7.35824,433.914)       : 87.9897 [keV]
+TrackID -1   Position (454.024,7.13272,434.081)       : 83.6267 [keV]
+TrackID -1   Position (454.105,6.8855,434.139)       : 90.7462 [keV]
+TrackID -1   Position (454.068,6.64302,434.196)       : 86.7103 [keV]
+TrackID -1   Position (453.964,6.48904,434.381)       : 418.268 [keV]
+TrackID -1   Position (-382.275,-237.415,-411.22)       : 0.0605134 [keV]
+TrackID -1   Position (379.318,-126.955,-335.419)       : 276.642 [keV]
+TrackID -1   Position (379.643,-127.005,-335.186)       : 124.482 [keV]
+TrackID -1   Position (379.957,-127.025,-334.937)       : 107.498 [keV]
+TrackID -1   Position (380.277,-126.847,-334.795)       : 112.899 [keV]
+TrackID -1   Position (380.526,-126.695,-334.548)       : 105.791 [keV]
+TrackID -1   Position (380.826,-126.505,-334.424)       : 302.92 [keV]
+TrackID -1   Position (380.974,-126.292,-334.147)       : 116.318 [keV]
+TrackID -1   Position (381.107,-126.273,-333.783)       : 114.725 [keV]
+TrackID -1   Position (381.221,-126.499,-333.455)       : 447.568 [keV]
+TrackID -1   Position (381.043,-126.838,-333)       : 272.126 [keV]
+TrackID -1   Position (314.409,328.885,-276.929)       : 10.4582 [keV]
+TrackID -1   Position (314.395,328.907,-276.938)       : 1.00527 [keV]
+TrackID -1   Position (304.097,338.452,-287.765)       : 6.2152 [keV]
+TrackID -1   Position (304.084,338.458,-287.783)       : 3.76883 [keV]
+TrackID -1   Position (295.119,346.309,-403.303)       : 3.57963 [keV]
+TrackID -1   Position (295.116,346.304,-403.307)       : 5.56894 [keV]
+TrackID -1   Position (295.108,346.297,-403.315)       : 5.92445 [keV]
+TrackID -1   Position (295.103,346.293,-403.327)       : 3.3818 [keV]
+TrackID -1   Position (295.096,346.29,-403.339)       : 2.61211 [keV]
+TrackID -1   Position (295.099,346.284,-403.351)       : 4.2889 [keV]
+TrackID -1   Position (295.101,346.28,-403.364)       : 4.04738 [keV]
+TrackID -1   Position (295.106,346.273,-403.376)       : 5.89781 [keV]
+TrackID -1   Position (295.109,346.269,-403.388)       : 5.57793 [keV]
+TrackID -1   Position (295.115,346.269,-403.401)       : 6.77432 [keV]
+TrackID -1   Position (295.115,346.272,-403.414)       : 5.53609 [keV]
+TrackID -1   Position (295.121,346.26,-403.419)       : 8.05117 [keV]
+TrackID -1   Position (295.126,346.247,-403.424)       : 9.32695 [keV]
+TrackID -1   Position (295.125,346.233,-403.424)       : 4.83232 [keV]
+TrackID -1   Position (295.123,346.218,-403.429)       : 11.51 [keV]
+TrackID -1   Position (295.121,346.202,-403.438)       : 15.1401 [keV]
+TrackID -1   Position (295.129,346.183,-403.45)       : 14.9981 [keV]
+TrackID -1   Position (295.131,346.164,-403.463)       : 12.0987 [keV]
+TrackID -1   Position (295.101,346.16,-403.462)       : 127.843 [keV]
+TrackID -1   Position (357.488,179.85,-256.001)       : 14.8574 [keV]
+TrackID -1   Position (357.531,179.89,-256.014)       : 16.5539 [keV]
+TrackID -1   Position (357.57,179.942,-256.032)       : 26.0511 [keV]
+TrackID -1   Position (357.634,179.991,-256.065)       : 48.7373 [keV]
+TrackID -1   Position (357.685,180.009,-256.148)       : 109.705 [keV]
+TrackID -1   Position (357.643,179.901,-256.2)       : 42.105 [keV]
+TrackID -1   Position (357.687,179.845,-256.257)       : 214.763 [keV]
+TrackID -1   Position (-330.837,116.732,318.527)       : 61.3378 [keV]
+TrackID -1   Position (-411.801,193.507,-125.332)       : 77.7735 [keV]
+TrackID -1   Position (-411.611,193.332,-125.267)       : 146.877 [keV]
+TrackID -1   Position (-411.448,193.095,-125.25)       : 73.2013 [keV]
+TrackID -1   Position (-411.345,192.827,-125.206)       : 66.6484 [keV]
+TrackID -1   Position (-411.368,192.574,-125.083)       : 102.639 [keV]
+TrackID -1   Position (-411.424,192.295,-125.045)       : 103.496 [keV]
+TrackID -1   Position (-411.258,192.053,-125.029)       : 97.1119 [keV]
+TrackID -1   Position (-411.201,191.749,-124.936)       : 94.6446 [keV]
+TrackID -1   Position (-411.141,191.388,-124.925)       : 124.404 [keV]
+TrackID -1   Position (-410.899,191.049,-125.042)       : 149.184 [keV]
+TrackID -1   Position (-410.683,190.636,-124.776)       : 664.636 [keV]
+TrackID -1   Position (-410.436,190.142,-124.823)       : 41.4665 [keV]
+TrackID -1   Position (-131.189,434.102,-305.808)       : 162.999 [keV]
+TrackID -1   Position (-130.826,434.001,-306.059)       : 292.008 [keV]
+TrackID -1   Position (-130.473,433.715,-306.265)       : 558.403 [keV]
+TrackID -1   Position (-112.128,-389.169,108.324)       : 31.5826 [keV]
+TrackID -1   Position (363.939,264.666,318.436)       : 0.0316915 [keV]
+TrackID -1   Position (88.3979,-446.33,292.434)       : 0.015748 [keV]
+TrackID -1   Position (-290.165,-343.954,-346.658)       : 2.19523 [keV]
+TrackID -1   Position (-286.006,-353.872,-337.745)       : 0.0315499 [keV]
+TrackID -1   Position (-395.113,225.634,-387.58)       : 2.69064 [keV]
+TrackID -1   Position (-420.539,173.701,-405.027)       : 1.23326 [keV]
+TrackID -1   Position (-182.579,-304.45,234.19)       : 13.5318 [keV]
+TrackID -1   Position (234.288,390.044,358.505)       : 0.0154489 [keV]
+TrackID -1   Position (233.136,387.906,359.518)       : 0.0112025 [keV]
+TrackID -1   Position (-226.41,-333.123,-196.773)       : 28.6771 [keV]
+TrackID -1   Position (-296.175,276.234,-218.129)       : 0.00524391 [keV]
+TrackID -1   Position (-295.015,275.456,-219.757)       : 0.0042768 [keV]
+TrackID -1   Position (-395.964,85.0738,-135.864)       : 0.741179 [keV]
+TrackID -1   Position (198.038,-225.346,11.2752)       : 6.03977 [keV]
+TrackID -1   Position (-164.974,-308.68,178.659)       : 1.34855 [keV]
+TrackID -1   Position (-234.417,-389.966,386.793)       : 0.000938402 [keV]
+TrackID -1   Position (-121.343,332.638,-233.936)       : 83.1329 [keV]
+TrackID -1   Position (-346.387,71.3065,-225.034)       : 110.089 [keV]
+TrackID -1   Position (-444.649,82.0665,-179.241)       : 106.943 [keV]
+TrackID -1   Position (-408.64,-200.095,-224.906)       : 3836.83 [keV]
+TrackID -1   Position (-359.642,-186.233,-123.195)       : 4356.58 [keV]
+TrackID -1   Position (-310.07,-172.862,-21.432)       : 4232.65 [keV]
+TrackID -1   Position (-260.986,-157.834,77.5789)       : 842.497 [keV]
+TrackID -1   Position (-260.007,-157.518,79.5954)       : 896.6 [keV]
+TrackID -1   Position (-258.738,-159.085,81.4965)       : 17041.8 [keV]
+TrackID -1   Position (-239.78,-182.332,111.191)       : 9883.98 [keV]
+TrackID -1   Position (-229.405,-196.399,128.25)       : 18378.5 [keV]
+TrackID -1   Position (-211.792,-219.472,155.341)       : 6.02479 [keV]
+TrackID -1   Position (-148.878,-316.758,272.126)       : 5732.05 [keV]
+TrackID -1   Position (-101.942,-386.792,362.17)       : 1392.17 [keV]
+TrackID -1   Position (-100.664,-388.631,364.555)       : 2024.72 [keV]
+TrackID -1   Position (-70.1349,-444.501,368.559)       : 2773.5 [keV]
+TrackID -1   Position (-229.405,-196.399,128.25)       : 486.036 [keV]
+TrackID -1   Position (-229.064,-196.358,128.766)       : 279.702 [keV]
+TrackID -1   Position (-239.78,-182.332,111.191)       : 149.037 [keV]
+TrackID -1   Position (-239.893,-182.361,111.42)       : 468.589 [keV]
+TrackID -1   Position (-258.738,-159.085,81.4965)       : 493.115 [keV]
+TrackID -1   Position (-258.467,-159.347,81.473)       : 44.6852 [keV]
+TrackID -1   Position (-100.664,-388.631,364.555)       : 347.205 [keV]
+TrackID -1   Position (-260.007,-157.518,79.5954)       : 686.048 [keV]
+TrackID -1   Position (-416.374,-183.46,-332.058)       : 543.574 [keV]
+TrackID -1   Position (-414.61,-182.77,-332.105)       : 799.577 [keV]
+TrackID -1   Position (-412.57,-182.445,-331.148)       : 652.281 [keV]
+TrackID -1   Position (-411.927,-182.485,-329.236)       : 857.913 [keV]
+TrackID -1   Position (-413.049,-183.93,-328.095)       : 587.841 [keV]
+TrackID -1   Position (-412.909,-183.421,-326.42)       : 293.191 [keV]
+TrackID -1   Position (-412.607,-183.478,-326.108)       : 314.852 [keV]
+TrackID -1   Position (-412.607,-183.478,-326.108)       : 1.844 [keV]
+TrackID -1   Position (-412.608,-183.535,-326.059)       : 12.8652 [keV]
+TrackID -1   Position (-204.896,144.8,175.959)       : 17.2793 [keV]
+TrackID -1   Position (-10.9933,253.846,190.039)       : 277.356 [keV]
+TrackID -1   Position (135.45,-429.546,-163.621)       : 1.97808 [keV]
+TrackID -1   Position (397.746,-55.499,-291.961)       : 164.95 [keV]
+TrackID -1   Position (398.144,-55.1997,-291.856)       : 172.707 [keV]
+TrackID -1   Position (398.322,-54.6942,-291.731)       : 354.898 [keV]
+TrackID -1   Position (398.876,-54.4373,-291.753)       : 537.245 [keV]
+TrackID -1   Position (399.141,-54.1735,-291.621)       : 20.075 [keV]
+TrackID -1   Position (-386.485,-116.567,-313.111)       : 432.25 [keV]
+TrackID -1   Position (-399.858,-217.114,-361.15)       : 1939.43 [keV]
+TrackID -1   Position (-395.883,-217.786,-364.349)       : 1193.66 [keV]
+TrackID -1   Position (-438.564,-121.189,-365.257)       : 4276.78 [keV]
+TrackID -1   Position (-398.486,-219.622,-323.186)       : 1593.09 [keV]
+TrackID -1   Position (-394.148,-220.146,-321.789)       : 295.399 [keV]
+TrackID -1   Position (-393.514,-220.416,-321.198)       : 1400.22 [keV]
+TrackID -1   Position (-391.331,-222.812,-319.463)       : 940.328 [keV]
+TrackID -1   Position (-391.613,-225.232,-318.971)       : 802.843 [keV]
+TrackID -1   Position (-392.342,-226.621,-319.844)       : 544.888 [keV]
+TrackID -1   Position (-391.699,-227.521,-319.432)       : 357.719 [keV]
+TrackID -1   Position (-393.514,-220.416,-321.198)       : 1.844 [keV]
+TrackID -1   Position (-393.492,-220.508,-321.16)       : 12.6869 [keV]
+TrackID -1   Position (-407.458,-200.401,-448.272)       : 39.9416 [keV]
+TrackID -1   Position (-376.433,-139.013,-351.253)       : 35.0185 [keV]
+TrackID -1   Position (-443.708,-96.5913,-290.094)       : 59.5683 [keV]
+TrackID -1   Position (-443.667,-96.4737,-289.972)       : 202.801 [keV]
+TrackID -1   Position (-443.542,-96.2785,-289.831)       : 97.3871 [keV]
+TrackID -1   Position (-443.343,-96.0549,-289.698)       : 191.065 [keV]
+TrackID -1   Position (-443.457,-95.8832,-289.401)       : 456.919 [keV]
+TrackID -1   Position (-443.56,-95.7102,-289.013)       : 139.244 [keV]
+TrackID -1   Position (-409.777,190.386,-352.374)       : 121.664 [keV]
+TrackID -1   Position (222.482,392.137,5.59579)       : 204.682 [keV]
+TrackID -1   Position (-242.748,67.9079,-248.971)       : 2313.59 [keV]
+TrackID -1   Position (-239.619,73.9328,-248.615)       : 1043.14 [keV]
+TrackID -1   Position (-29.8643,248.21,-123.917)       : 2026.11 [keV]
+TrackID -1   Position (-25.0991,250.043,-122.915)       : 1362.46 [keV]
+TrackID -1   Position (-23.4513,253.418,-123.115)       : 207.366 [keV]
+TrackID -1   Position (-26.1865,298.855,-86.9249)       : 260.599 [keV]
+TrackID -1   Position (-26.2334,299.754,-86.6094)       : 302.859 [keV]
+TrackID -1   Position (-26.2291,300.371,-86.1048)       : 250.624 [keV]
+TrackID -1   Position (-25.8148,300.857,-85.6234)       : 318.467 [keV]
+TrackID -1   Position (-25.8813,301.245,-84.9434)       : 672.642 [keV]
+TrackID -1   Position (-26.3336,301.389,-84.3086)       : 542.093 [keV]
+TrackID -1   Position (-26.8672,302.019,-84.0284)       : 456.447 [keV]
+TrackID -1   Position (-146.713,426.341,54.894)       : 161.516 [keV]
+TrackID -1   Position (-299.259,-23.8037,-266.077)       : 39.9282 [keV]
+TrackID -1   Position (-299.197,-23.7995,-266.122)       : 22.7703 [keV]
+TrackID -1   Position (-299.186,-23.7668,-266.138)       : 22.3872 [keV]
+TrackID -1   Position (-299.154,-23.7592,-266.157)       : 14.1125 [keV]
+TrackID -1   Position (-299.142,-23.7333,-266.156)       : 14.9642 [keV]
+TrackID -1   Position (-299.15,-23.7134,-266.153)       : 16.4682 [keV]
+TrackID -1   Position (-299.163,-23.6949,-266.145)       : 114.428 [keV]
+TrackID -1   Position (-76.398,290.109,-184.794)       : 37.1775 [keV]
+TrackID -1   Position (-367.912,156.974,-303.604)       : 11.3972 [keV]
+TrackID -1   Position (-353.132,-286.92,-441.593)       : 19.5078 [keV]
+TrackID -1   Position (270.834,359.373,-305.414)       : 28.4057 [keV]
+TrackID -1   Position (-241.863,80.792,-182.882)       : 37.1073 [keV]
+TrackID -1   Position (-282.173,101.874,-175.196)       : 48.3138 [keV]
+TrackID -1   Position (-251.607,41.4617,-194.466)       : 10.7634 [keV]
+TrackID -1   Position (304.753,-172.121,-266.79)       : 0.000320539 [keV]
+TrackID -1   Position (358.304,-177.816,-276.522)       : 0.00259175 [keV]
+TrackID -1   Position (-322.766,-147.808,-301.239)       : 0.0546405 [keV]
+TrackID -1   Position (-453.844,32.4167,-382.061)       : 11.8036 [keV]
+TrackID -1   Position (-179.049,-363.272,72.015)       : 26.4287 [keV]
+TrackID -1   Position (383.172,114.801,365.453)       : 5.20514 [keV]
+TrackID -1   Position (438.931,99.1943,297.905)       : 1.05176 [keV]
+TrackID -1   Position (-380.442,-138.885,-187.395)       : 9.97837 [keV]
+TrackID -1   Position (-169.833,-311.74,-312.331)       : 5.94029 [keV]
+TrackID -1   Position (-74.8142,-392.941,-366.051)       : 54.4703 [keV]
+TrackID -1   Position (-71.7324,-395.655,-367.896)       : 68.8745 [keV]
+TrackID -1   Position (-350.647,-289.952,-368.771)       : 4.36269 [keV]
+TrackID -1   Position (-378.72,-252.183,-443.582)       : 11.5784 [keV]
+TrackID -1   Position (352.123,280.195,-389.683)       : 9.31865 [keV]
+TrackID -1   Position (357.106,277.712,-387.641)       : 7.19086 [keV]
+TrackID -1   Position (-57.3995,395.86,-185.085)       : 27.3857 [keV]
+TrackID -1   Position (-374.432,-154.356,-334.152)       : 0.132891 [keV]
+TrackID -1   Position (-382.738,-132.425,-195.724)       : 29.3051 [keV]
+TrackID -1   Position (-120.478,280.197,-212.917)       : 0.0132842 [keV]
+TrackID -1   Position (30.1658,-453.999,266.621)       : 26.3369 [keV]
+TrackID -1   Position (143.521,263.442,297.234)       : 0.336356 [keV]
+TrackID -1   Position (217.291,394.061,-186.378)       : 0.45159 [keV]
+TrackID -1   Position (218.821,396.948,-197.023)       : 0.174629 [keV]
+TrackID -1   Position (12.0216,349.871,-61.9974)       : 74.2998 [keV]
+TrackID -1   Position (-135.913,-267.446,-103.541)       : 34.7575 [keV]
+TrackID -1   Position (-136.687,-271.602,-106.749)       : 0.81328 [keV]
+TrackID -1   Position (-373.97,-250.292,-219.342)       : 43.0946 [keV]
+TrackID -1   Position (-374.569,-154.022,-176.355)       : 48.659 [keV]
+TrackID -1   Position (184.79,-415.785,42.3646)       : 2.98719 [keV]
+TrackID -1   Position (140.29,-379.926,35.8953)       : 6.72998 [keV]
+TrackID -1   Position (-263.398,-238.005,-230.707)       : 13.9084 [keV]
+TrackID -1   Position (-255.921,-240.105,-224.902)       : 17.4943 [keV]
+TrackID -1   Position (-426.913,142.286,-238.475)       : 6.28395 [keV]
+TrackID -1   Position (-357.758,189.828,-365.367)       : 51.9768 [keV]
+TrackID -1   Position (-381.136,239.239,-364.095)       : 15.6305 [keV]
+TrackID -1   Position (-299.995,1.66002,-166.867)       : 54.6783 [keV]
+TrackID -1   Position (14.0818,-399.752,-369.891)       : 37.9078 [keV]
+TrackID -1   Position (-372.892,-158.039,-242.846)       : 48.9996 [keV]
+TrackID -1   Position (-420.883,161.986,-228.881)       : 70.0692 [keV]
+TrackID -1   Position (-236.541,-388.682,213.911)       : 2707.13 [keV]
+TrackID -1   Position (-205.221,-349.155,200.176)       : 2957.17 [keV]
+TrackID -1   Position (-174.708,-309.034,188.678)       : 3033.71 [keV]
+TrackID -1   Position (-144.81,-268.431,176.455)       : 3393.47 [keV]
+TrackID -1   Position (-114.633,-227.781,160.749)       : 3146.69 [keV]
+TrackID -1   Position (183.866,169.39,-25.7029)       : 3622.32 [keV]
+TrackID -1   Position (213.585,210.669,-45.2479)       : 3904.14 [keV]
+TrackID -1   Position (243.009,251.886,-64.3792)       : 4394.21 [keV]
+TrackID -1   Position (273.636,291.759,-82.771)       : 4137.17 [keV]
+TrackID -1   Position (276.35,295.21,-84.3668)       : 553.176 [keV]
+TrackID -1   Position (304.382,331.438,-98.8075)       : 3263.27 [keV]
+TrackID -1   Position (306.421,334.157,-99.9052)       : 1788.88 [keV]
+TrackID -1   Position (346.656,67.44,56.4974)       : 240.703 [keV]
+TrackID -1   Position (-230.313,-109.457,35.1854)       : 43.5335 [keV]
+TrackID -1   Position (-427.693,155.252,-133.383)       : 0.00157117 [keV]
+TrackID -1   Position (1.70229,349.996,175.229)       : 0.00534198 [keV]
+TrackID -1   Position (10.6036,354.035,181.648)       : 0.00118122 [keV]
+TrackID -1   Position (258.354,374.537,-111.26)       : 651.785 [keV]
+TrackID -1   Position (256.263,374.814,-111.085)       : 3580.86 [keV]
+TrackID -1   Position (246.856,376.536,-111.103)       : 93.1661 [keV]
+TrackID -1   Position (177.989,363.792,-112.075)       : 2302.95 [keV]
+TrackID -1   Position (170.688,362.427,-111.852)       : 221.427 [keV]
+TrackID -1   Position (170.287,362.254,-111.857)       : 123.713 [keV]
+TrackID -1   Position (111.936,336.891,-116.457)       : 906.666 [keV]
+TrackID -1   Position (109.482,335.116,-116.952)       : 1635.03 [keV]
+TrackID -1   Position (114.27,282.785,-208.003)       : 548.715 [keV]
+TrackID -1   Position (114.148,282.115,-209.927)       : 440.068 [keV]
+TrackID -1   Position (114.095,281.7,-210.551)       : 231.199 [keV]
+TrackID -1   Position (114.046,281.287,-211.206)       : 1076.88 [keV]
+TrackID -1   Position (111.962,281.097,-212.975)       : 1008.26 [keV]
+TrackID -1   Position (110.195,282.268,-212.47)       : 450.525 [keV]
+TrackID -1   Position (110.096,282.65,-212.416)       : 93.1256 [keV]
+TrackID -1   Position (141.278,378.285,106.268)       : 37.2487 [keV]
+TrackID -1   Position (100.174,286.673,-217.959)       : 302.317 [keV]
+TrackID -1   Position (111.894,280.174,-214.986)       : 489.456 [keV]
+TrackID -1   Position (125.767,382.718,35.6336)       : 6.00854 [keV]
+TrackID -1   Position (91.9214,235.487,-208.412)       : 32.2454 [keV]
+TrackID -1   Position (114.095,281.691,-210.564)       : 16.954 [keV]
+TrackID -1   Position (170.287,362.254,-111.857)       : 1.844 [keV]
+TrackID -1   Position (170.272,362.248,-111.859)       : 11.0475 [keV]
+TrackID -1   Position (279.652,355.687,-111.572)       : 43.6433 [keV]
+TrackID -1   Position (298.7,191.842,333.677)       : 11.0354 [keV]
+TrackID -1   Position (-232.556,-268.221,225.596)       : 0.0176754 [keV]
+TrackID -1   Position (-228.364,-267.952,224.881)       : 0.00115552 [keV]
+TrackID -1   Position (-450.936,-60.6752,98.2375)       : 0.0122077 [keV]
+TrackID -1   Position (-150.753,-370.505,342.787)       : 24.172 [keV]
+TrackID -1   Position (-154.895,-373.381,336.602)       : 2.42144 [keV]
+TrackID -1   Position (-155.36,-372.481,336.227)       : 13.8892 [keV]
+TrackID -1   Position (49.3404,298.071,295.552)       : 311.325 [keV]
+TrackID -1   Position (-343.671,-290.5,-227.407)       : 0.0611227 [keV]
+TrackID -1   Position (-338.24,-299.933,-230.875)       : 0.910973 [keV]
+TrackID -1   Position (-171.101,-189.075,-88.0167)       : 0.973549 [keV]
+TrackID -1   Position (-131.493,-435.585,26.9438)       : 39.9283 [keV]
+TrackID -1   Position (-155.087,-319.332,7.41642)       : 57.8872 [keV]
+TrackID -1   Position (-156.009,-314.841,6.65404)       : 63.7301 [keV]
+TrackID -1   Position (-86.6969,-342.084,4.29649)       : 6.39604 [keV]
+TrackID -1   Position (-115.213,-332.978,-8.03025)       : 53.8044 [keV]
+TrackID -1   Position (-26.4596,-303.85,82.4151)       : 22.2033 [keV]
+TrackID -1   Position (69.3947,-343.052,20.5008)       : 12.8105 [keV]
+TrackID -1   Position (-78.3839,237.394,138.123)       : 29.0444 [keV]
+TrackID -1   Position (-161.167,314.699,5.10073)       : 74.7337 [keV]
+TrackID -1   Position (362.437,-275.071,83.529)       : 1.26216 [keV]
+TrackID -1   Position (352.773,-39.7001,-40.0337)       : 0.448888 [keV]
+TrackID -1   Position (304.808,-10.8186,-127.016)       : 0.401562 [keV]
+TrackID -1   Position (434.692,-116.375,-290.376)       : 0.686662 [keV]
+TrackID -1   Position (449.901,9.4303,-302.748)       : 0.120393 [keV]
+TrackID -1   Position (340.477,100.501,-64.5651)       : 0.746977 [keV]
+TrackID -1   Position (373.392,143.453,-106.898)       : 0.575979 [keV]
+TrackID -1   Position (454.993,2.58574,360.149)       : 0.190703 [keV]
+TrackID -1   Position (-368.276,-168.517,190.105)       : 0.537558 [keV]
+TrackID -1   Position (-311.117,-170.972,217.014)       : 0.189052 [keV]
+TrackID -1   Position (-328.638,120.403,291.548)       : 7.35566 [keV]
+TrackID -1   Position (288.16,-207.337,292.86)       : 16.0825 [keV]
+TrackID -1   Position (200.826,-157.144,-130.761)       : 9.54547 [keV]
+TrackID -1   Position (282.051,-207.238,-155.368)       : 1.34628 [keV]
+TrackID -1   Position (-242.983,175.953,28.5935)       : 13.1641 [keV]
+TrackID -1   Position (222.61,-208.494,-51.3959)       : 1.32026 [keV]
+TrackID -1   Position (245.517,172.398,295.758)       : 54.7208 [keV]
+TrackID -1   Position (247.575,176.207,290.836)       : 36.2562 [keV]
+TrackID -1   Position (247.605,175.621,291.338)       : 17.7335 [keV]
+TrackID -1   Position (366.382,-269.794,-320.396)       : 13.8685 [keV]
+TrackID -1   Position (453.142,41.0778,-115.299)       : 0.0700847 [keV]
+TrackID -1   Position (284.751,-211.996,-239.423)       : 2.32953 [keV]
+TrackID -1   Position (-259.967,-149.723,64.2675)       : 34.8588 [keV]
+TrackID -1   Position (-311.265,251.226,-209.859)       : 8.88441 [keV]
+TrackID -1   Position (399.675,-217.451,-349.101)       : 0.137409 [keV]
+TrackID -1   Position (-311.982,250.334,-337.519)       : 0.034146 [keV]
+TrackID -1   Position (-324.802,241.927,-200.453)       : 0.0435423 [keV]
+TrackID -1   Position (218.662,-278.863,-139.812)       : 131.278 [keV]
+TrackID -1   Position (216.864,-336.224,-93.7406)       : 134.345 [keV]
+TrackID -1   Position (-135.268,-376.434,-137.787)       : 56.7513 [keV]
+TrackID -1   Position (-135.459,-376.498,-137.831)       : 123.835 [keV]
+TrackID -1   Position (-135.863,-376.659,-137.892)       : 141.415 [keV]
+TrackID -1   Position (-136.208,-376.904,-137.979)       : 321.453 [keV]
+TrackID -1   Position (-136.477,-377.165,-137.779)       : 184.799 [keV]
+TrackID -1   Position (-136.611,-377.564,-137.828)       : 110.17 [keV]
+TrackID -1   Position (-136.755,-377.676,-138.224)       : 196.359 [keV]
+TrackID -1   Position (-137.144,-377.943,-138.379)       : 175.602 [keV]
+TrackID -1   Position (-137.624,-378.147,-138.497)       : 612.22 [keV]
+TrackID -1   Position (-137.845,-378.414,-137.924)       : 198.158 [keV]
+TrackID -1   Position (332.394,-307.34,-47.3897)       : 358.01 [keV]
+TrackID -1   Position (-384.039,127.927,-306.699)       : 42.2273 [keV]
+TrackID -1   Position (278.35,-293.454,-232.324)       : 131.607 [keV]
+TrackID -1   Position (90.2831,391.23,323.487)       : 87.2016 [keV]
+TrackID -1   Position (354.344,-285.422,-265.752)       : 0.128319 [keV]
+TrackID -1   Position (211.672,-345.282,-247.128)       : 0.132468 [keV]
+TrackID -1   Position (131.658,-329.684,-200.552)       : 0.102574 [keV]
+TrackID -1   Position (56.8495,-395.94,-75.8701)       : 0.0465037 [keV]
+TrackID -1   Position (329.95,-313.302,223.55)       : 0.00645746 [keV]
+TrackID -1   Position (-126.183,437.153,41.6076)       : 6.55994 [keV]
+TrackID -1   Position (-171.029,311.085,-108.135)       : 2.63504 [keV]
+TrackID -1   Position (216.376,-207.801,251.535)       : 11.3632 [keV]
+TrackID -1   Position (8.92646,-254.844,144.113)       : 0.00534444 [keV]
+TrackID -1   Position (-32.1671,-448.849,138.542)       : 0.00616311 [keV]
+TrackID -1   Position (35.9003,-353.18,154.569)       : 0.00505407 [keV]
+TrackID -1   Position (37.7132,-350.56,154.994)       : 0.00208909 [keV]
+TrackID -1   Position (59.8402,-446.004,80.2876)       : 0.00339168 [keV]
+TrackID -1   Position (31.9057,403.741,171.497)       : 7.22743 [keV]
+TrackID -1   Position (-23,304.132,267.682)       : 3.263 [keV]
+TrackID -1   Position (17.4882,349.563,-122.113)       : 0.0637943 [keV]
+TrackID -1   Position (-157.697,426.798,-96.1013)       : 0.00774783 [keV]
+TrackID -1   Position (-200.633,408.377,-309.754)       : 0.159301 [keV]
+TrackID -1   Position (26.6591,402.902,-148.682)       : 113.074 [keV]
+TrackID -1   Position (8.42034,403.864,-96.1621)       : 386.232 [keV]
+TrackID -1   Position (46.3851,300.35,-26.6893)       : 144.99 [keV]
+TrackID -1   Position (46.6443,300.553,-26.7229)       : 426.566 [keV]
+TrackID -1   Position (52.5212,-448.802,-266.171)       : 105.441 [keV]
+TrackID -1   Position (448.082,-41.5015,-235.171)       : 49.8222 [keV]
+TrackID -1   Position (-340.856,-79.4803,53.0573)       : 59.3328 [keV]
+TrackID -1   Position (-42.8494,246.3,154.311)       : 20.3813 [keV]
+TrackID -1   Position (-38.1055,251.414,155.874)       : 39.4805 [keV]
+TrackID -1   Position (170.243,-189.848,-142.428)       : 3.85866 [keV]
+TrackID -1   Position (-148.197,371.534,36.5047)       : 9.63033 [keV]
+TrackID -1   Position (-33.9319,353.375,35.9577)       : 0.84753 [keV]
+TrackID -1   Position (58.3281,299.371,-0.121615)       : 6.70724 [keV]
+TrackID -1   Position (37.9089,297.595,-42.194)       : 2.61609 [keV]
+TrackID -1   Position (-326.796,-230.66,-239.821)       : 2.29992 [keV]
+TrackID -1   Position (-288.553,-345.307,-227.61)       : 0.839111 [keV]
+TrackID -1   Position (-301.749,44.4126,151.81)       : 1.78457 [keV]
+TrackID -1   Position (399.369,-207.376,-55.0496)       : 0.0264684 [keV]
+TrackID -1   Position (360.163,-185.222,-218.762)       : 0.0252419 [keV]
+TrackID -1   Position (248.621,56.6816,-172.324)       : 0.0174718 [keV]
+TrackID -1   Position (-391.099,-84.927,-144.486)       : 17.2882 [keV]
+TrackID -1   Position (-352.586,-189.054,-107.47)       : 58.0565 [keV]
+TrackID -1   Position (-317.131,-158.762,-126.509)       : 17.9065 [keV]
+TrackID -1   Position (-317.063,-158.792,-126.481)       : 59.6093 [keV]
+TrackID -1   Position (-316.997,-158.855,-126.407)       : 47.218 [keV]
+TrackID -1   Position (-316.88,-158.82,-126.445)       : 51.1055 [keV]
+TrackID -1   Position (-316.738,-158.864,-126.411)       : 303.354 [keV]
+TrackID -1   Position (-380.7,-134.751,-87.227)       : 222.133 [keV]
+TrackID -1   Position (-377.046,-136.726,-89.1693)       : 94.3007 [keV]
+TrackID -1   Position (-377.059,-136.767,-88.909)       : 102.52 [keV]
+TrackID -1   Position (-376.873,-136.865,-88.7102)       : 89.7068 [keV]
+TrackID -1   Position (-377.073,-136.9,-88.523)       : 428.728 [keV]
+TrackID -1   Position (-375.673,-138.664,-115.432)       : 260.517 [keV]
+TrackID -1   Position (-451.754,54.2565,-56.9151)       : 19.2263 [keV]
+TrackID -1   Position (-405.31,195.509,-293.126)       : 14.8625 [keV]
+TrackID -1   Position (-453.014,42.467,-366.819)       : 0.000249674 [keV]
+TrackID -1   Position (-404.602,-17.9504,-265.266)       : 0.000743123 [keV]
+TrackID -1   Position (402.887,41.318,-305.638)       : 0.711865 [keV]
+TrackID -1   Position (275.451,-215.933,-245.602)       : 11.0887 [keV]
+TrackID -1   Position (266.515,-234.165,-241.274)       : 6.92054 [keV]
+TrackID -1   Position (266.675,-233.889,-241.275)       : 7.81741 [keV]
+TrackID -1   Position (447.9,-43.4196,-353.835)       : 6.4013 [keV]
+TrackID -1   Position (432.755,-140.527,-370.969)       : 5.16043 [keV]
+TrackID -1   Position (441.992,-108.019,-387.324)       : 0.144288 [keV]
+TrackID -1   Position (402.9,-41.185,-387.37)       : 2.88997 [keV]
+TrackID -1   Position (292.901,-85.0543,-236.225)       : 0.409661 [keV]
+TrackID -1   Position (261.914,-232.166,227.887)       : 1.56783 [keV]
+TrackID -1   Position (14.1245,-350.099,-212.011)       : 101.248 [keV]
+TrackID -1   Position (291.231,-281.442,141.328)       : 37.1758 [keV]
+TrackID -1   Position (410.787,195.65,333.118)       : 1.41025 [keV]
+TrackID -1   Position (117.948,-334.833,-209.205)       : 31.7059 [keV]
+TrackID -1   Position (287.863,84.4696,-40.7285)       : 2.51152 [keV]
+TrackID -1   Position (392.794,-75.5813,103.255)       : 12.8763 [keV]
+TrackID -1   Position (449.546,20.2015,388.213)       : 17.7492 [keV]
+TrackID -1   Position (240.996,-178.665,-272.969)       : 2305.32 [keV]
+TrackID -1   Position (282.223,-207.003,-213.679)       : 2417.15 [keV]
+TrackID -1   Position (323.526,-235.225,-153.736)       : 1243.08 [keV]
+TrackID -1   Position (325.568,-236.641,-150.773)       : 1327.33 [keV]
+TrackID -1   Position (364.123,-264.414,-95.0841)       : 2957.01 [keV]
+TrackID -1   Position (325.568,-236.641,-150.773)       : 873.59 [keV]
+TrackID -1   Position (326.403,-236.776,-150.587)       : 119.306 [keV]
+TrackID -1   Position (167.807,-312.835,-149.306)       : 11.1756 [keV]
+TrackID -1   Position (43.2056,-352.361,-90.6963)       : 47.5499 [keV]
+TrackID -1   Position (-22.2851,402.602,400)       : 48.7395 [keV]
+TrackID -1   Position (-393.254,-73.1533,-395.537)       : 0.149455 [keV]
+TrackID -1   Position (-158.638,426.449,182.471)       : 7.51287 [keV]
+TrackID -1   Position (-112.417,389.085,132.443)       : 0.0738236 [keV]
+TrackID -1   Position (-290.376,-275.103,-396.832)       : 24.7673 [keV]
+TrackID -1   Position (64.4207,241.557,3.35734)       : 21.8108 [keV]
+TrackID -1   Position (276.311,214.831,85.4117)       : 4.07337 [keV]
+TrackID -1   Position (302.84,36.2356,-36.0513)       : 50.2983 [keV]
+TrackID -1   Position (242.325,79.3948,-132.604)       : 41.8177 [keV]
+TrackID -1   Position (286.904,278.722,-40.2064)       : 34.0131 [keV]
+TrackID -1   Position (-199.487,230.716,-9.8408)       : 12.8619 [keV]
+TrackID -1   Position (376.836,-148.391,156.014)       : 0.00627143 [keV]
+TrackID -1   Position (255.852,-246.099,203.399)       : 19.6053 [keV]
+TrackID -1   Position (16.2635,-354.627,292.257)       : 0.0334056 [keV]
+TrackID -1   Position (-297.05,-275.293,49.5182)       : 29.2065 [keV]
+TrackID -1   Position (-185.865,237.471,4.61967)       : 1768.15 [keV]
+TrackID -1   Position (-196.084,163.022,-82.6375)       : 1330.13 [keV]
+TrackID -1   Position (-196.666,160.559,-85.7359)       : 904.696 [keV]
+TrackID -1   Position (-196.802,159.87,-86.7837)       : 1234.56 [keV]
+TrackID -1   Position (-196.786,157.566,-89.4346)       : 88.9194 [keV]
+TrackID -1   Position (-196.78,157.366,-89.6715)       : 1241.08 [keV]
+TrackID -1   Position (-196.507,155.366,-92.1994)       : 478.342 [keV]
+TrackID -1   Position (-196.78,157.366,-89.6715)       : 521.478 [keV]
+TrackID -1   Position (-197.009,157.354,-89.9862)       : 28.4447 [keV]
+TrackID -1   Position (-196.786,157.566,-89.4346)       : 188.216 [keV]
+TrackID -1   Position (-197.134,157.66,-89.9329)       : 220.224 [keV]
+TrackID -1   Position (-197.165,158.173,-90.2439)       : 602.517 [keV]
+TrackID -1   Position (-197.514,158.681,-90.7835)       : 346.225 [keV]
+TrackID -1   Position (-196.802,159.87,-86.7837)       : 427.202 [keV]
+TrackID -1   Position (-196.507,155.366,-92.1994)       : 1.844 [keV]
+TrackID -1   Position (-196.508,155.332,-92.2278)       : 5.7612 [keV]
+TrackID -1   Position (-196.666,160.559,-85.7359)       : 1.844 [keV]
+TrackID -1   Position (-196.736,160.341,-86.0463)       : 13.4224 [keV]
+TrackID -1   Position (-185.865,237.471,4.61967)       : 1151.25 [keV]
+TrackID -1   Position (-206.539,149.554,-46.2974)       : 2424.07 [keV]
+TrackID -1   Position (-208.553,143.696,-47.8555)       : 167.528 [keV]
+TrackID -1   Position (-208.143,143.709,-47.4479)       : 1616.78 [keV]
+TrackID -1   Position (-205.396,144.962,-44.4183)       : 1083.22 [keV]
+TrackID -1   Position (-203.133,146.997,-43.2751)       : 1199.15 [keV]
+TrackID -1   Position (-205.409,148.767,-44.0458)       : 690.383 [keV]
+TrackID -1   Position (-206.873,148.738,-44.4145)       : 107.641 [keV]
+TrackID -1   Position (-262.145,145.876,-76.3434)       : 21.4538 [keV]
+TrackID -1   Position (-262.225,145.875,-76.3753)       : 18.1793 [keV]
+TrackID -1   Position (-262.292,145.898,-76.3891)       : 20.9996 [keV]
+TrackID -1   Position (-262.333,145.956,-76.3901)       : 18.5273 [keV]
+TrackID -1   Position (-262.334,146.027,-76.4045)       : 30.5413 [keV]
+TrackID -1   Position (-262.349,146.093,-76.4278)       : 27.3462 [keV]
+TrackID -1   Position (-262.353,146.167,-76.4659)       : 33.7773 [keV]
+TrackID -1   Position (-262.357,146.256,-76.5036)       : 30.8153 [keV]
+TrackID -1   Position (-262.392,146.343,-76.553)       : 41.9035 [keV]
+TrackID -1   Position (-262.461,146.409,-76.637)       : 47.2067 [keV]
+TrackID -1   Position (-262.472,146.439,-76.7893)       : 66.6735 [keV]
+TrackID -1   Position (-262.471,146.539,-76.9226)       : 61.4799 [keV]
+TrackID -1   Position (-262.407,146.583,-77.0695)       : 54.1402 [keV]
+TrackID -1   Position (-262.4,146.731,-77.1404)       : 317.902 [keV]
+TrackID -1   Position (-127.14,436.876,305.117)       : 2212.21 [keV]
+TrackID -1   Position (-184.313,360.63,390.495)       : 80.3594 [keV]
+TrackID -1   Position (-184.529,360.44,390.7)       : 165.006 [keV]
+TrackID -1   Position (-184.955,360.215,391.023)       : 1971.1 [keV]
+TrackID -1   Position (-188.03,358.689,393.835)       : 361.686 [keV]
+TrackID -1   Position (-189.142,358.12,393.854)       : 444.255 [keV]
+TrackID -1   Position (-189.764,356.859,393.799)       : 468.306 [keV]
+TrackID -1   Position (-190.756,355.536,393.798)       : 483.509 [keV]
+TrackID -1   Position (-191.741,354.239,393.624)       : 564.132 [keV]
+TrackID -1   Position (-192.27,352.852,394.233)       : 813.985 [keV]
+TrackID -1   Position (-193.026,351.707,395.049)       : 498.758 [keV]
+TrackID -1   Position (-193.936,350.913,395.786)       : 237.384 [keV]
+TrackID -1   Position (-21.2305,304.044,200.406)       : 103.291 [keV]
+TrackID -1   Position (217.545,395.618,-82.5874)       : 99.422 [keV]
+TrackID -1   Position (-205.396,144.962,-44.4183)       : 442.538 [keV]
+TrackID -1   Position (-204.094,285.5,288.695)       : 272.938 [keV]
+TrackID -1   Position (-184.955,360.215,391.023)       : 1.844 [keV]
+TrackID -1   Position (-185.915,359.563,391.873)       : 18.1702 [keV]
+TrackID -1   Position (-272.044,361.782,181.449)       : 47.9941 [keV]
+TrackID -1   Position (-169.47,363.344,396.138)       : 86.794 [keV]
+TrackID -1   Position (-183.722,359.906,395.831)       : 2.94465 [keV]
+TrackID -1   Position (-189.835,356.842,395.082)       : 107.109 [keV]
+TrackID -1   Position (-189.977,356.692,395.198)       : 89.2841 [keV]
+TrackID -1   Position (-190.154,356.607,395.368)       : 131.494 [keV]
+TrackID -1   Position (-190.233,356.557,395.609)       : 102.694 [keV]
+TrackID -1   Position (-190.237,356.302,395.57)       : 369.716 [keV]
+TrackID -1   Position (45.5668,349.281,76.2612)       : 408.746 [keV]
+TrackID -1   Position (124.886,-380.967,-240.105)       : 366.37 [keV]
+TrackID -1   Position (115.903,-334.068,-233.143)       : 151.245 [keV]
+TrackID -1   Position (-145.351,429.631,207.612)       : 302.543 [keV]
+TrackID -1   Position (-244.529,71.9113,29.8467)       : 26.635 [keV]
+TrackID -1   Position (-244.5,71.8052,29.8254)       : 31.7753 [keV]
+TrackID -1   Position (-244.461,71.7235,29.7986)       : 29.8134 [keV]
+TrackID -1   Position (-244.434,71.6438,29.7527)       : 28.2296 [keV]
+TrackID -1   Position (-244.389,71.5678,29.7136)       : 33.1464 [keV]
+TrackID -1   Position (-244.36,71.4733,29.6992)       : 37.2848 [keV]
+TrackID -1   Position (-244.289,71.3806,29.6922)       : 41.3646 [keV]
+TrackID -1   Position (-244.247,71.2593,29.618)       : 44.9819 [keV]
+TrackID -1   Position (-244.192,71.1107,29.6285)       : 50.1896 [keV]
+TrackID -1   Position (-244.121,70.9379,29.6399)       : 69.9327 [keV]
+TrackID -1   Position (-244.168,70.7896,29.7917)       : 101.648 [keV]
+TrackID -1   Position (-244.138,70.7263,29.99)       : 123.902 [keV]
+TrackID -1   Position (-244.174,70.8182,30.2123)       : 333.268 [keV]
+TrackID -1   Position (330.285,-121.773,-110.542)       : 51.184 [keV]
+TrackID -1   Position (323.569,-140.009,-94.6884)       : 263.196 [keV]
+TrackID -1   Position (-146.432,-202.627,115.064)       : 32.4997 [keV]
+TrackID -1   Position (-316.105,150.259,-287.179)       : 23.7596 [keV]
+TrackID -1   Position (-297.002,-338.068,-278.615)       : 14.4023 [keV]
+TrackID -1   Position (346.163,-51.684,-231.799)       : 3.20832 [keV]
+TrackID -1   Position (-56.0206,-446.499,-277.167)       : 0.902929 [keV]
+TrackID -1   Position (195.702,-410.762,-291.261)       : 1.67027 [keV]
+TrackID -1   Position (407.085,-191.785,-172.764)       : 0.709016 [keV]
+TrackID -1   Position (426.288,-159.071,-174.316)       : 2.64439 [keV]
+TrackID -1   Position (346.643,-76.5765,-235.402)       : 2.67885 [keV]
+TrackID -1   Position (446.451,-56.407,-288.234)       : 2.34713 [keV]
+TrackID -1   Position (275.208,-297.129,-183.08)       : 0.591125 [keV]
+TrackID -1   Position (125.452,216.245,-226.988)       : 0.3551 [keV]
+TrackID -1   Position (258.516,368.333,-274.007)       : 0.578599 [keV]
+TrackID -1   Position (434.759,116.125,-359.567)       : 8.60504 [keV]
+TrackID -1   Position (330.527,-312.693,149.977)       : 32.9437 [keV]
+TrackID -1   Position (446.645,-54.8482,-88.8417)       : 6.33813 [keV]
+TrackID -1   Position (176.026,419.571,-151.195)       : 0.281227 [keV]
+TrackID -1   Position (245.68,46.2761,152.589)       : 0.581432 [keV]
+TrackID -1   Position (151.38,375.645,-300.878)       : 0.0012692 [keV]
+TrackID -1   Position (-152.737,264.001,-172.057)       : 0.0107393 [keV]
+TrackID -1   Position (-123.288,223.215,-215.162)       : 0.00358843 [keV]
+TrackID -1   Position (243.027,-323.979,-77.7234)       : 57.9805 [keV]
+TrackID -1   Position (-167.275,363.344,174.597)       : 18.3703 [keV]
+TrackID -1   Position (-235.177,383.656,179.853)       : 50.8653 [keV]
+TrackID -1   Position (-174.511,-365.473,251.844)       : 36.1085 [keV]
+TrackID -1   Position (249.697,-12.306,-187.233)       : 2.14471 [keV]
+TrackID -1   Position (254.138,-15.8412,-197.374)       : 2.28145 [keV]
+TrackID -1   Position (-146.589,261.747,192.199)       : 1.65365 [keV]
+TrackID -1   Position (-150.514,264.321,196.086)       : 0.15701 [keV]
+TrackID -1   Position (-164.765,-193.366,250)       : 0.263234 [keV]
+TrackID -1   Position (-57.0817,-345.314,144.605)       : 1.98823 [keV]
+TrackID -1   Position (243.596,-75.4055,4.82551)       : 0.281084 [keV]
+TrackID -1   Position (242.486,-70.7435,0.450593)       : 0.289434 [keV]
+TrackID -1   Position (242.733,-70.79,0.511452)       : 0.271675 [keV]
+TrackID -1   Position (84.0707,-442.077,-374.954)       : 0.203115 [keV]
+TrackID -1   Position (75.1211,-448.475,-375.689)       : 0.0725122 [keV]
+TrackID -1   Position (299.551,-271.853,149.373)       : 78.3481 [keV]
+TrackID -1   Position (59.2975,446.076,-343.48)       : 0.018716 [keV]
+TrackID -1   Position (-171.797,-366.757,184.066)       : 0.364935 [keV]
+TrackID -1   Position (-90.8855,389.538,-10.8218)       : 0.00909282 [keV]
+TrackID -1   Position (-90.214,392.055,-11.0034)       : 0.114988 [keV]
+TrackID -1   Position (72.3526,393.402,-3.16484)       : 0.0052727 [keV]
+TrackID -1   Position (88.4705,393.46,-2.35284)       : 0.223923 [keV]
+TrackID -1   Position (-89.8502,389.778,37.6306)       : 0.0833854 [keV]
+TrackID -1   Position (-42.9675,450.614,41.6494)       : 264.54 [keV]
+TrackID -1   Position (-29.0548,298.59,10.9053)       : 0.506589 [keV]
+TrackID -1   Position (-338.647,106.505,-85.6717)       : 0.000608805 [keV]
+TrackID -1   Position (-301.82,43.9254,-65.2168)       : 0.00319015 [keV]
+TrackID -1   Position (-338.871,87.5574,-112.53)       : 0.00220576 [keV]
+TrackID -1   Position (-339.394,88.1808,-113.19)       : 0.000596017 [keV]
+TrackID -1   Position (342.08,74.0333,104.441)       : 0.0307583 [keV]
+TrackID -1   Position (444.935,67.3237,277.323)       : 0.00634642 [keV]
+TrackID -1   Position (154.684,196.399,-62.0366)       : 38.6825 [keV]
+TrackID -1   Position (-22.6583,454.435,200.421)       : 54.455 [keV]
+TrackID -1   Position (358.066,-280.738,434.785)       : 1.00454 [keV]
+TrackID -1   Position (294.641,-198.02,315.513)       : 10.1516 [keV]
+TrackID -1   Position (197.968,-353.318,364.146)       : 1.31325 [keV]
+TrackID -1   Position (324.749,-318.689,444.43)       : 31.679 [keV]
+TrackID -1   Position (-321.824,149.847,336.463)       : 0.405124 [keV]
+TrackID -1   Position (-401.174,55.5398,6.93845)       : 0.0172607 [keV]
+TrackID -1   Position (-133.827,376.949,249.418)       : 3.69939 [keV]
+TrackID -1   Position (-134.592,378.952,248.244)       : 1.15756 [keV]
+TrackID -1   Position (-386.572,102.77,-27.4677)       : 0.0289605 [keV]
+TrackID -1   Position (-429.655,133.779,-119.739)       : 0.256516 [keV]
+TrackID -1   Position (72.6795,-449.158,279.911)       : 30.6846 [keV]
+TrackID -1   Position (72.3696,-449.208,241.097)       : 0.586907 [keV]
+TrackID -1   Position (63.8645,-399.933,240.268)       : 5.76556 [keV]
+TrackID -1   Position (84.7113,-344.745,209.076)       : 20.779 [keV]
+TrackID -1   Position (18.1058,-399.59,61.0806)       : 25.3534 [keV]
+TrackID -1   Position (-208.259,-281.297,-188.687)       : 2.65391 [keV]
+TrackID -1   Position (-339.701,84.2824,-111.84)       : 0.00331275 [keV]
+TrackID -1   Position (-385.813,105.586,-183.631)       : 0.00196009 [keV]
+TrackID -1   Position (-387.274,106,-185.765)       : 0.00783056 [keV]
+TrackID -1   Position (245.581,-383.034,360.711)       : 0.18201 [keV]
+TrackID -1   Position (245.246,-381.665,361.449)       : 0.053697 [keV]
+TrackID -1   Position (-47.9472,-402.152,-27.439)       : 0.0918533 [keV]
+TrackID -1   Position (-333.527,-220.817,246.849)       : 0.119883 [keV]
+TrackID -1   Position (-305.265,-337.399,323.994)       : 0.0775528 [keV]
+TrackID -1   Position (193.8,157.929,-47.9877)       : 0.0979469 [keV]
+TrackID -1   Position (194.545,158.678,-48.5514)       : 0.042505 [keV]
+TrackID -1   Position (197.148,157.316,-48.7743)       : 0.0459136 [keV]
+TrackID -1   Position (198.897,157.278,-47.5236)       : 0.16057 [keV]
+TrackID -1   Position (-250.234,-49.0684,-122.57)       : 0.02788 [keV]
+TrackID -1   Position (-245.934,-48.8697,-127.269)       : 0.18136 [keV]
+TrackID -1   Position (-448.336,77.5875,28.8567)       : 0.0825569 [keV]
+TrackID -1   Position (-404.994,2.25847,-17.0856)       : 0.00386079 [keV]
+TrackID -1   Position (-295.588,-187.423,-51.0368)       : 0.1356 [keV]
+TrackID -1   Position (-281.961,-210.964,-54.9832)       : 0.0832852 [keV]
+TrackID -1   Position (-285.085,-209.502,-53.7403)       : 0.0611368 [keV]
+TrackID -1   Position (-152.136,198.38,205.663)       : 0.545699 [keV]
+TrackID -1   Position (-97.4101,283.745,286.687)       : 6.31815 [keV]
+TrackID -1   Position (-308.202,-254.974,169.598)       : 2.53638 [keV]
+TrackID -1   Position (-308.965,-256.912,169.163)       : 0.186912 [keV]
+TrackID -1   Position (-310.712,-259.064,175.738)       : 2.05458 [keV]
+TrackID -1   Position (-332.56,-124.212,207.466)       : 0.0843162 [keV]
+TrackID -1   Position (-390.336,-231.004,-90.6692)       : 9.39205 [keV]
+TrackID -1   Position (-371.307,-153.047,70.1272)       : 44.92 [keV]
+TrackID -1   Position (-190.407,-233.437,103.702)       : 23.1414 [keV]
+TrackID -1   Position (-127.198,-220.987,76.9598)       : 12.4845 [keV]
+TrackID -1   Position (-127.162,-220.992,76.9484)       : 25.5884 [keV]
+TrackID -1   Position (-127.115,-221.006,76.9276)       : 8.86356 [keV]
+TrackID -1   Position (-127.065,-221.003,76.9139)       : 18.6263 [keV]
+TrackID -1   Position (-127.014,-221.007,76.9223)       : 39.8984 [keV]
+TrackID -1   Position (-126.965,-220.997,76.9123)       : 22.993 [keV]
+TrackID -1   Position (-126.916,-220.982,76.9028)       : 14.7373 [keV]
+TrackID -1   Position (-126.875,-220.99,76.8729)       : 18.5268 [keV]
+TrackID -1   Position (-126.837,-220.995,76.8387)       : 17.7325 [keV]
+TrackID -1   Position (-126.826,-220.986,76.7841)       : 15.0083 [keV]
+TrackID -1   Position (-126.796,-220.976,76.7333)       : 19.7742 [keV]
+TrackID -1   Position (-126.763,-220.973,76.6744)       : 22.0279 [keV]
+TrackID -1   Position (-126.731,-220.923,76.6317)       : 45.5603 [keV]
+TrackID -1   Position (-126.694,-220.848,76.6163)       : 39.5374 [keV]
+TrackID -1   Position (-126.686,-220.751,76.5689)       : 48.5886 [keV]
+TrackID -1   Position (-126.597,-220.664,76.5006)       : 272.639 [keV]
+TrackID -1   Position (72.0305,-448.139,346.966)       : 140.909 [keV]
+TrackID -1   Position (-80.1032,-392.37,399.538)       : 192.04 [keV]
+TrackID -1   Position (-71.4329,-394.866,395.884)       : 88.6567 [keV]
+TrackID -1   Position (-129.859,382.931,10.0497)       : 155.629 [keV]
+TrackID -1   Position (132.331,-325.062,180.674)       : 91.4043 [keV]
+TrackID -1   Position (-216.648,-210.171,81.5324)       : 64.2276 [keV]
+TrackID -1   Position (209.446,-341.872,323.124)       : 96.8188 [keV]
+TrackID -1   Position (-158.925,-194.8,-190.517)       : 77.2911 [keV]
+TrackID -1   Position (-190.057,-237.674,-251.179)       : 95.0186 [keV]
+TrackID -1   Position (-18.4061,-354.523,302.212)       : 0.0154869 [keV]
+TrackID -1   Position (279.784,-210.288,292.695)       : 0.0444429 [keV]
+TrackID -1   Position (287.688,-206.556,292.548)       : 0.00136947 [keV]
+TrackID -1   Position (287.422,-206.462,292.307)       : 0.0481156 [keV]
+TrackID -1   Position (-273.488,-123.306,-67.8998)       : 12.9253 [keV]
+TrackID -1   Position (-122.996,-437.254,424.984)       : 66.6828 [keV]
+TrackID -1   Position (283.002,99.5492,-108.275)       : 48.1088 [keV]
+TrackID -1   Position (380.767,-249.082,-342.938)       : 0.0122813 [keV]
+TrackID -1   Position (-347.132,-208.625,188.646)       : 1.27921 [keV]
+TrackID -1   Position (-391.748,231.428,82.5758)       : 39.5794 [keV]
+TrackID -1   Position (-293.08,279.515,135.812)       : 26.0298 [keV]
+TrackID -1   Position (-300.9,188.373,159.396)       : 11.4453 [keV]
+TrackID -1   Position (-301.653,179.627,161.657)       : 32.8186 [keV]
+TrackID -1   Position (57.0755,350.382,-284.789)       : 0.404881 [keV]
+TrackID -1   Position (56.1569,348.938,-280.35)       : 16.8188 [keV]
+TrackID -1   Position (53.7899,347.562,-276.115)       : 5.13793 [keV]
+TrackID -1   Position (-347.885,-70.7174,-61.4162)       : 0.00244549 [keV]
+TrackID -1   Position (-253.655,-26.1584,-59.9849)       : 0.0150811 [keV]
+TrackID -1   Position (-299.981,-3.39814,-57.9015)       : 0.00448956 [keV]
+TrackID -1   Position (371.415,-262.823,310.53)       : 0.103607 [keV]
+TrackID -1   Position (-345.63,211.104,220.39)       : 0.0898576 [keV]
+TrackID -1   Position (-364.426,263.995,235.603)       : 0.0335161 [keV]
+TrackID -1   Position (190.123,357.601,366.313)       : 0.00639169 [keV]
+TrackID -1   Position (203.974,290.55,316.603)       : 0.00474188 [keV]
+TrackID -1   Position (204.345,288.948,315.365)       : 0.00745045 [keV]
+TrackID -1   Position (204.459,289.454,314.823)       : 0.00691289 [keV]
+TrackID -1   Position (211.764,284.858,326.493)       : 0.00442393 [keV]
+TrackID -1   Position (338.14,296.92,323.939)       : 0.00603723 [keV]
+TrackID -1   Position (287.291,285.463,324.302)       : 0.00513132 [keV]
+TrackID -1   Position (309.132,-165.588,193.478)       : 80.8741 [keV]
+TrackID -1   Position (345.548,-201.486,321.275)       : 0.116347 [keV]
+TrackID -1   Position (343.765,-211.022,311.889)       : 1.79982 [keV]
+TrackID -1   Position (440.239,-114.954,437.179)       : 0.214152 [keV]
+TrackID -1   Position (364.146,264.382,237.928)       : 1.4017 [keV]
+TrackID -1   Position (362.986,270.233,234.836)       : 1.36743 [keV]
+TrackID -1   Position (343.902,213.908,308.646)       : 1.21256 [keV]
+TrackID -1   Position (350.499,282.224,259.269)       : 0.394499 [keV]
+TrackID -1   Position (378.548,143.968,166.73)       : 0.302705 [keV]
+TrackID -1   Position (376.839,138.582,162.173)       : 0.450976 [keV]
+TrackID -1   Position (454.522,-20.8527,253.118)       : 0.00671059 [keV]
+TrackID -1   Position (-349.9,-8.36456,196.523)       : 0.0114467 [keV]
+TrackID -1   Position (449.724,-15.7497,366.692)       : 32.1865 [keV]
+TrackID -1   Position (92.0491,-445.592,14.2372)       : 0.0167188 [keV]
+TrackID -1   Position (440.805,-90.5063,-40.7833)       : 2.58013 [keV]
+TrackID -1   Position (376.402,-149.488,99.4201)       : 1.8591 [keV]
+TrackID -1   Position (415.096,186.334,307.593)       : 0.00242706 [keV]
+TrackID -1   Position (413.798,181.521,300.918)       : 0.0529993 [keV]
+TrackID -1   Position (413.782,181.321,300.787)       : 0.0442159 [keV]
+TrackID -1   Position (220.401,-203.527,-45.1745)       : 0.0186608 [keV]
+TrackID -1   Position (6.51119,-454.953,-441.683)       : 3045.39 [keV]
+TrackID -1   Position (275.029,290.446,-369.185)       : 2654.01 [keV]
+TrackID -1   Position (293.546,341.073,-364.191)       : 2737.85 [keV]
+TrackID -1   Position (157.768,-372.108,172.388)       : 433.062 [keV]
+TrackID -1   Position (140.589,-432.735,435.871)       : 1.16202 [keV]
+TrackID -1   Position (140.59,-432.733,435.871)       : 1.28711 [keV]
+TrackID -1   Position (140.589,-432.731,435.872)       : 1.45296 [keV]
+TrackID -1   Position (140.588,-432.729,435.872)       : 1.25609 [keV]
+TrackID -1   Position (140.587,-432.727,435.872)       : 1.05121 [keV]
+TrackID -1   Position (140.586,-432.725,435.873)       : 1.93618 [keV]
+TrackID -1   Position (140.586,-432.723,435.874)       : 2.30893 [keV]
+TrackID -1   Position (140.585,-432.72,435.876)       : 3.72562 [keV]
+TrackID -1   Position (140.586,-432.716,435.879)       : 3.98988 [keV]
+TrackID -1   Position (140.59,-432.714,435.88)       : 2.64121 [keV]
+TrackID -1   Position (140.591,-432.719,435.881)       : 3.05355 [keV]
+TrackID -1   Position (140.588,-432.721,435.883)       : 3.91189 [keV]
+TrackID -1   Position (140.588,-432.724,435.886)       : 4.36537 [keV]
+TrackID -1   Position (140.588,-432.725,435.889)       : 4.56401 [keV]
+TrackID -1   Position (140.588,-432.726,435.891)       : 4.77627 [keV]
+TrackID -1   Position (140.587,-432.726,435.894)       : 3.50055 [keV]
+TrackID -1   Position (140.586,-432.726,435.896)       : 4.83164 [keV]
+TrackID -1   Position (140.584,-432.726,435.897)       : 29.6264 [keV]
+TrackID -1   Position (211.097,-403.067,309.494)       : 0.652341 [keV]
+TrackID -1   Position (76.0829,-238.142,118.406)       : 19.766 [keV]
+TrackID -1   Position (73.1099,398.347,367.393)       : 5.68177 [keV]
+TrackID -1   Position (-325.287,-310.948,424.99)       : 0.771906 [keV]
+TrackID -1   Position (196.666,348.314,312.977)       : 0.015978 [keV]
+TrackID -1   Position (19.0346,454.602,293.179)       : 0.134404 [keV]
+TrackID -1   Position (50.1659,401.881,301.913)       : 0.0073767 [keV]
+TrackID -1   Position (88.2505,-446.36,308.378)       : 0.308898 [keV]
+TrackID -1   Position (-235.297,-186.119,63.2252)       : 71.1133 [keV]
 
 Calorimeter hits --------------------------------------------------------------
 0 hits are stored in RE01CalorimeterHitsCollection.
@@ -3038,19507 +2800,19928 @@ TrackID =65 : ParentID=62 : TrackStatus=1
 Particle name : pi-  PDG code : -211  Charge : -1
 Original momentum : -91.0405 -16.3757 -400.717 MeV
 Vertex : -1.88943e-295 -1.54061e-296 1.33116e-293 fm   Global time : 6.40539e-305 ps 
-  Current trajectory has 65 points.
+  Current trajectory has 83 points.
 Point[0] Position= (-1.88943e-307,-1.54061e-308,1.33116e-305)
 Point[1] Position= (-34.4331,-6.18328,-151.278)
 Point[2] Position= (-43.2808,-7.76519,-190.141)
-Point[3] Position= (-46.1893,-8.28339,-202.908)
-Point[4] Position= (-52.6861,-9.43078,-231.444)
-Point[5] Position= (-78.9084,-14.0602,-346.688)
-Point[6] Position= (-99.1248,-17.5883,-435.44)
-Point[7] Position= (-121.1,-21.4415,-531.787)
-Point[8] Position= (-121.162,-21.4525,-532.059)
-Point[9] Position= (-127.01,-22.4847,-557.643)
-Point[10] Position= (-153.927,-27.2785,-675.74)
-Point[11] Position= (-156.679,-27.7777,-687.812)
-Point[12] Position= (-175.712,-31.2529,-771.139)
-Point[13] Position= (-196.889,-35.1374,-863.892)
-Point[14] Position= (-225.369,-40.252,-988.461)
-Point[15] Position= (-228.002,-40.7267,-1000)
-Point[16] Position= (-267.466,-47.8367,-1172.61)
-Point[17] Position= (-273.305,-48.8862,-1198.18)
-Point[18] Position= (-298.35,-53.3518,-1308.12)
-Point[19] Position= (-302.415,-54.0776,-1326)
-Point[20] Position= (-337.273,-60.1813,-1479.28)
-Point[21] Position= (-356.167,-63.4844,-1562.62)
-Point[22] Position= (-395.637,-70.2979,-1736.7)
-Point[23] Position= (-432.197,-76.5951,-1898.17)
-Point[24] Position= (-464.849,-82.2763,-2042.67)
-Point[25] Position= (-477.742,-84.4994,-2099.61)
-Point[26] Position= (-498.958,-88.1337,-2193.19)
-Point[27] Position= (-499.305,-88.1939,-2194.73)
-Point[28] Position= (-504.536,-89.0955,-2217.78)
-Point[29] Position= (-506.559,-89.4426,-2226.69)
-Point[30] Position= (-520.832,-91.8957,-2289.55)
-Point[31] Position= (-524.121,-92.4613,-2304.06)
-Point[32] Position= (-585.688,-102.907,-2575.55)
-Point[33] Position= (-615.136,-107.858,-2705.36)
-Point[34] Position= (-615.296,-107.884,-2706.06)
-Point[35] Position= (-626.121,-109.695,-2753.67)
-Point[36] Position= (-626.48,-109.756,-2755.25)
-Point[37] Position= (-631.46,-110.594,-2777.19)
-Point[38] Position= (-637.068,-111.539,-2801.92)
-Point[39] Position= (-651.391,-113.939,-2865.11)
-Point[40] Position= (-651.767,-114.001,-2866.77)
-Point[41] Position= (-695.071,-121.18,-3058.16)
-Point[42] Position= (-718.95,-125.116,-3163.97)
-Point[43] Position= (-732.371,-127.316,-3223.42)
-Point[44] Position= (-733.838,-127.558,-3229.92)
-Point[45] Position= (-734.071,-127.597,-3230.95)
-Point[46] Position= (-738.737,-128.368,-3251.64)
-Point[47] Position= (-768.353,-133.3,-3382.75)
-Point[48] Position= (-822.559,-142.289,-3622.4)
-Point[49] Position= (-849.436,-146.738,-3740.98)
-Point[50] Position= (-858.162,-148.188,-3779.37)
-Point[51] Position= (-967.86,-166.882,-4261.77)
-Point[52] Position= (-976.026,-168.285,-4297.64)
-Point[53] Position= (-1005.25,-173.322,-4426.12)
-Point[54] Position= (-1015.03,-175.004,-4469.19)
-Point[55] Position= (-1024.54,-176.637,-4511.04)
-Point[56] Position= (-1120.43,-193.372,-4933.21)
-Point[57] Position= (-1132.86,-195.548,-4987.86)
-Point[58] Position= (-1169.7,-202.016,-5150.16)
-Point[59] Position= (-1209.5,-208.955,-5325.6)
-Point[60] Position= (-1222.35,-211.166,-5382.24)
-Point[61] Position= (-1250.68,-215.657,-5507.46)
-Point[62] Position= (-1271.2,-218.813,-5598.24)
-Point[63] Position= (-1340.09,-229.508,-5902.51)
-Point[64] Position= (-1362.13,-232.983,-6000)
+Point[3] Position= (-46.1913,-8.28438,-202.908)
+Point[4] Position= (-110.575,-19.9057,-485.852)
+Point[5] Position= (-136.204,-24.5585,-598.528)
+Point[6] Position= (-145.823,-26.3027,-640.816)
+Point[7] Position= (-169.409,-30.5745,-744.353)
+Point[8] Position= (-169.773,-30.6407,-745.951)
+Point[9] Position= (-196.816,-35.5477,-864.53)
+Point[10] Position= (-202.56,-36.5639,-889.653)
+Point[11] Position= (-219.629,-39.5667,-964.321)
+Point[12] Position= (-224.522,-40.4207,-985.721)
+Point[13] Position= (-227.784,-40.992,-1000)
+Point[14] Position= (-243.428,-43.7504,-1068.54)
+Point[15] Position= (-248.471,-44.633,-1090.66)
+Point[16] Position= (-263.248,-47.2343,-1155.43)
+Point[17] Position= (-271.039,-48.604,-1189.57)
+Point[18] Position= (-298.035,-53.305,-1308)
+Point[19] Position= (-337.157,-60.1058,-1479.69)
+Point[20] Position= (-386.597,-68.7457,-1696.15)
+Point[21] Position= (-390.677,-69.464,-1713.95)
+Point[22] Position= (-404.428,-71.897,-1773.98)
+Point[23] Position= (-415.144,-73.7835,-1820.87)
+Point[24] Position= (-415.486,-73.8439,-1822.37)
+Point[25] Position= (-448.332,-79.6376,-1965.77)
+Point[26] Position= (-456.244,-81.0184,-2000.29)
+Point[27] Position= (-477.197,-84.6315,-2091.64)
+Point[28] Position= (-480.819,-85.2509,-2107.43)
+Point[29] Position= (-542.671,-95.9782,-2376.64)
+Point[30] Position= (-579.023,-102.248,-2534.38)
+Point[31] Position= (-588.064,-103.823,-2573.56)
+Point[32] Position= (-605.736,-106.893,-2650.2)
+Point[33] Position= (-609.735,-107.585,-2667.55)
+Point[34] Position= (-611.74,-107.931,-2676.25)
+Point[35] Position= (-615.027,-108.496,-2690.49)
+Point[36] Position= (-630.94,-111.224,-2759.36)
+Point[37] Position= (-632.679,-111.522,-2766.88)
+Point[38] Position= (-663.426,-116.732,-2899.96)
+Point[39] Position= (-670.74,-117.968,-2931.55)
+Point[40] Position= (-676.46,-118.937,-2956.26)
+Point[41] Position= (-691.067,-121.397,-3019.4)
+Point[42] Position= (-691.451,-121.461,-3021.05)
+Point[43] Position= (-707.144,-124.077,-3088.77)
+Point[44] Position= (-723.472,-126.818,-3159.22)
+Point[45] Position= (-744.314,-130.332,-3249.19)
+Point[46] Position= (-748.189,-130.995,-3265.93)
+Point[47] Position= (-774.207,-135.42,-3378.43)
+Point[48] Position= (-793.487,-138.647,-3461.9)
+Point[49] Position= (-832.869,-145.279,-3632.56)
+Point[50] Position= (-838.527,-146.246,-3657.09)
+Point[51] Position= (-851.394,-148.453,-3712.9)
+Point[52] Position= (-863.509,-150.523,-3765.4)
+Point[53] Position= (-931.492,-161.956,-4059.76)
+Point[54] Position= (-950.3,-165.135,-4141.54)
+Point[55] Position= (-955.52,-166.02,-4164.22)
+Point[56] Position= (-983.168,-170.821,-4285.82)
+Point[57] Position= (-999.417,-173.63,-4357.16)
+Point[58] Position= (-1009.08,-175.31,-4399.61)
+Point[59] Position= (-1041.84,-181.015,-4543.71)
+Point[60] Position= (-1067.79,-185.583,-4658.15)
+Point[61] Position= (-1077.57,-187.299,-4701.33)
+Point[62] Position= (-1096.36,-190.588,-4784.31)
+Point[63] Position= (-1115.69,-193.953,-4869.72)
+Point[64] Position= (-1120.39,-194.772,-4890.5)
+Point[65] Position= (-1137.09,-197.729,-4964.49)
+Point[66] Position= (-1151.82,-200.377,-5029.84)
+Point[67] Position= (-1163.74,-202.504,-5082.79)
+Point[68] Position= (-1172.73,-204.099,-5122.79)
+Point[69] Position= (-1173.45,-204.227,-5125.99)
+Point[70] Position= (-1196.14,-208.198,-5226.71)
+Point[71] Position= (-1198.45,-208.603,-5237)
+Point[72] Position= (-1215.37,-211.53,-5312.08)
+Point[73] Position= (-1248.6,-217.121,-5459.66)
+Point[74] Position= (-1263.47,-219.581,-5525.6)
+Point[75] Position= (-1270.84,-220.803,-5558.27)
+Point[76] Position= (-1295.97,-224.946,-5669.82)
+Point[77] Position= (-1340.48,-232.197,-5867.13)
+Point[78] Position= (-1346.13,-233.112,-5892.19)
+Point[79] Position= (-1348.98,-233.575,-5904.81)
+Point[80] Position= (-1350.34,-233.797,-5910.87)
+Point[81] Position= (-1358.52,-235.119,-5947.09)
+Point[82] Position= (-1370.47,-237.07,-6000)
+
+TrackID =139 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 22.539 98.3671 -19.8136 keV
+Vertex : -1.35852 -0.235119 -5.94709 m    Global time : 21.511 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-1358.52,-235.119,-5947.09)
+Point[1] Position= (-1358.28,-234.032,-5947.31)
+Point[2] Position= (-1358.72,-233.859,-5947.33)
+
+TrackID =138 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 81.9105 -16.0702 -25.9545 keV
+Vertex : -1.35034 -0.233797 -5.91087 m    Global time : 21.38 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-1350.34,-233.797,-5910.87)
+Point[1] Position= (-1349.7,-233.923,-5911.07)
+Point[2] Position= (-1349.73,-233.935,-5911.06)
+
+TrackID =137 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -6.59902 -80.4727 -2.44347 keV
+Vertex : -1.34898 -0.233575 -5.90481 m    Global time : 21.3581 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-1348.98,-233.575,-5904.81)
+Point[1] Position= (-1349.02,-234.095,-5904.83)
+Point[2] Position= (-1349.02,-234.088,-5904.82)
+
+TrackID =136 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 32.4804 -3.79672 -8.39198 keV
+Vertex : -1.34613 -0.233112 -5.89219 m    Global time : 21.3125 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1346.13,-233.112,-5892.19)
+Point[1] Position= (-1346.1,-233.115,-5892.2)
+
+TrackID =135 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -30.2238 10.8099 5.30752 keV
+Vertex : -1.34048 -0.232197 -5.86713 m    Global time : 21.2219 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1340.48,-232.197,-5867.13)
+Point[1] Position= (-1340.5,-232.189,-5867.13)
+
+TrackID =134 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -23.8556 40.0179 1.59139 keV
+Vertex : -1.29597 -0.224946 -5.66982 m    Global time : 20.5083 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1295.97,-224.946,-5669.82)
+Point[1] Position= (-1296.01,-224.879,-5669.82)
+
+TrackID =133 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -34.8061 17.4706 5.55926 keV
+Vertex : -1.27084 -0.220803 -5.55827 m    Global time : 20.105 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1270.84,-220.803,-5558.27)
+Point[1] Position= (-1270.88,-220.783,-5558.26)
+
+TrackID =132 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 16.6148 33.0408 -6.46887 keV
+Vertex : -1.26347 -0.219581 -5.5256 m    Global time : 19.9868 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1263.47,-219.581,-5525.6)
+Point[1] Position= (-1263.45,-219.547,-5525.61)
+
+TrackID =131 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -66.3455 4.54822 9.99648 keV
+Vertex : -1.21537 -0.21153 -5.31208 m    Global time : 19.2148 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1215.37,-211.53,-5312.08)
+Point[1] Position= (-1215.64,-211.512,-5312.04)
+
+TrackID =130 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 35.0271 8.68138 -9.71032 keV
+Vertex : -1.19845 -0.208603 -5.237 m    Global time : 18.9432 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1198.45,-208.603,-5237)
+Point[1] Position= (-1198.42,-208.595,-5237.01)
+
+TrackID =129 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 18.3817 40.5082 -7.89669 keV
+Vertex : -1.19614 -0.208198 -5.22671 m    Global time : 18.906 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1196.14,-208.198,-5226.71)
+Point[1] Position= (-1196.11,-208.136,-5226.72)
+
+TrackID =128 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 4.52152 33.1345 -3.53187 keV
+Vertex : -1.17345 -0.204227 -5.12599 m    Global time : 18.5418 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1173.45,-204.227,-5125.99)
+Point[1] Position= (-1173.44,-204.2,-5125.99)
+
+TrackID =127 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -20.4501 59.4219 -1.9451 keV
+Vertex : -1.17273 -0.204099 -5.12279 m    Global time : 18.5302 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1172.73,-204.099,-5122.79)
+Point[1] Position= (-1172.8,-203.895,-5122.8)
+
+TrackID =126 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -44.7034 -1.6455 7.94358 keV
+Vertex : -1.16374 -0.202504 -5.08279 m    Global time : 18.3856 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1163.74,-202.504,-5082.79)
+Point[1] Position= (-1163.81,-202.506,-5082.78)
+
+TrackID =125 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -96.8154 -7.26808 12.0234 keV
+Vertex : -1.15182 -0.200377 -5.02984 m    Global time : 18.1941 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-1151.82,-200.377,-5029.84)
+Point[1] Position= (-1152.3,-200.412,-5029.78)
+Point[2] Position= (-1152.44,-200.794,-5029.57)
+
+TrackID =140 : ParentID=125 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -40.5637 2.80811 -22.5462 keV
+Vertex : -1.1523 -0.200412 -5.02978 m    Global time : 18.2026 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1152.3,-200.412,-5029.78)
+Point[1] Position= (-1152.36,-200.408,-5029.82)
+
+TrackID =124 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -34.974 1.9143 6.47559 keV
+Vertex : -1.12039 -0.194772 -4.8905 m    Global time : 17.6902 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1120.39,-194.772,-4890.5)
+Point[1] Position= (-1120.42,-194.77,-4890.5)
 
 TrackID =123 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.8249 9.77886 6.54453 keV
-Vertex : -1.34009 -0.229508 -5.90251 m    Global time : 21.3408 ns 
+Original momentum : -26.9749 32.543 2.91728 keV
+Vertex : -1.11569 -0.193953 -4.86972 m    Global time : 17.615 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1340.09,-229.508,-5902.51)
-Point[1] Position= (-1340.14,-229.497,-5902.51)
+Point[0] Position= (-1115.69,-193.953,-4869.72)
+Point[1] Position= (-1115.73,-193.91,-4869.71)
 
 TrackID =122 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -39.8558 11.8401 6.72164 keV
-Vertex : -1.2712 -0.218813 -5.59824 m    Global time : 20.2408 ns 
+Original momentum : 6.52979 -44.3532 -1.84825 keV
+Vertex : -1.09636 -0.190588 -4.78431 m    Global time : 17.3061 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1271.2,-218.813,-5598.24)
-Point[1] Position= (-1271.25,-218.797,-5598.23)
+Point[0] Position= (-1096.36,-190.588,-4784.31)
+Point[1] Position= (-1096.35,-190.655,-4784.31)
 
 TrackID =121 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.2301 -11.2085 -7.60532 keV
-Vertex : -1.25068 -0.215657 -5.50746 m    Global time : 19.9126 ns 
+Original momentum : 10.6156 49.9408 -7.20095 keV
+Vertex : -1.07757 -0.187299 -4.70133 m    Global time : 17.006 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1250.68,-215.657,-5507.46)
-Point[1] Position= (-1250.65,-215.666,-5507.46)
+Point[0] Position= (-1077.57,-187.299,-4701.33)
+Point[1] Position= (-1077.54,-187.193,-4701.34)
 
 TrackID =120 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.08332 91.8412 -14.837 keV
-Vertex : -1.22235 -0.211166 -5.38224 m    Global time : 19.4599 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-1222.35,-211.166,-5382.24)
-Point[1] Position= (-1222.27,-210.325,-5382.37)
-Point[2] Position= (-1222.2,-210.311,-5382.39)
+Original momentum : -50.0202 10.0516 8.09177 keV
+Vertex : -1.06779 -0.185583 -4.65815 m    Global time : 16.8498 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1067.79,-185.583,-4658.15)
+Point[1] Position= (-1067.89,-185.561,-4658.14)
 
 TrackID =119 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.0314 54.289 -1.12592 keV
-Vertex : -1.2095 -0.208955 -5.3256 m    Global time : 19.2551 ns 
+Original momentum : 21.8034 135.346 -30.9161 keV
+Vertex : -1.04184 -0.181015 -4.54371 m    Global time : 16.4358 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-1041.84,-181.015,-4543.71)
+Point[1] Position= (-1041.46,-178.688,-4544.24)
+Point[2] Position= (-1042.19,-178.828,-4544.33)
+
+TrackID =141 : ParentID=119 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 1.87564 37.3987 -81.234 keV
+Vertex : -1.04146 -0.178688 -4.54424 m    Global time : 16.4662 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-1041.46,-178.688,-4544.24)
+Point[1] Position= (-1041.46,-178.546,-4544.55)
+Point[2] Position= (-1041.21,-178.373,-4544.79)
+
+TrackID =142 : ParentID=141 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -22.4012 -10.4279 -30.6536 keV
+Vertex : -1.04146 -0.178546 -4.54455 m    Global time : 16.4728 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1209.5,-208.955,-5325.6)
-Point[1] Position= (-1209.55,-208.803,-5325.6)
+Point[0] Position= (-1041.46,-178.546,-4544.55)
+Point[1] Position= (-1041.48,-178.557,-4544.58)
 
 TrackID =118 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 58.8641 8.02407 -17.7258 keV
-Vertex : -1.1697 -0.202016 -5.15016 m    Global time : 18.6208 ns 
+Original momentum : 28.9747 17.7529 -8.58642 keV
+Vertex : -1.00908 -0.17531 -4.39961 m    Global time : 15.9145 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1169.7,-202.016,-5150.16)
-Point[1] Position= (-1169.5,-201.989,-5150.22)
+Point[0] Position= (-1009.08,-175.31,-4399.61)
+Point[1] Position= (-1009.05,-175.295,-4399.62)
 
 TrackID =117 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -45.2211 -14.6406 8.40218 keV
-Vertex : -1.12043 -0.193372 -4.93321 m    Global time : 17.8363 ns 
+Original momentum : -18.7829 43.4489 0.186589 keV
+Vertex : -0.999417 -0.17363 -4.35716 m    Global time : 15.761 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1120.43,-193.372,-4933.21)
-Point[1] Position= (-1120.51,-193.398,-4933.2)
+Point[0] Position= (-999.417,-173.63,-4357.16)
+Point[1] Position= (-999.449,-173.555,-4357.16)
 
 TrackID =116 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.8396 46.7799 -1.60854 keV
-Vertex : -1.02454 -0.176637 -4.51104 m    Global time : 16.3096 ns 
+Original momentum : -0.880787 -41.3234 0.0215274 keV
+Vertex : -0.983168 -0.170821 -4.28582 m    Global time : 15.5028 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1024.54,-176.637,-4511.04)
-Point[1] Position= (-1024.56,-176.552,-4511.04)
+Point[0] Position= (-983.168,-170.821,-4285.82)
+Point[1] Position= (-983.169,-170.873,-4285.82)
 
 TrackID =115 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.795 26.7762 3.33286 keV
-Vertex : -1.01503 -0.175004 -4.46919 m    Global time : 16.1583 ns 
+Original momentum : -1.58836 0.0437891 -1.56802 MeV
+Vertex : -0.95552 -0.16602 -4.16422 m    Global time : 15.0629 ns 
+  Current trajectory has 122 points.
+Point[0] Position= (-955.52,-166.02,-4164.22)
+Point[1] Position= (-1017.93,-164.163,-4218.55)
+Point[2] Position= (-1082.31,-167.052,-4279.18)
+Point[3] Position= (-1111.8,-166.239,-4300.78)
+Point[4] Position= (-1200.79,-173.88,-4366.2)
+Point[5] Position= (-1272.15,-165.11,-4400.97)
+Point[6] Position= (-1748.32,-117.33,-4547.39)
+Point[7] Position= (-1897.54,-104.868,-4665.34)
+Point[8] Position= (-1912.22,-70.9568,-4677.6)
+Point[9] Position= (-1921.33,-55.0289,-4683.15)
+Point[10] Position= (-1945.55,3.93215,-4701.36)
+Point[11] Position= (-1966.66,46.0599,-4714.12)
+Point[12] Position= (-1977.74,77.1794,-4721.5)
+Point[13] Position= (-2002.44,153.384,-4739.17)
+Point[14] Position= (-2053.85,452.052,-4827.23)
+Point[15] Position= (-2085.42,612.264,-4926.84)
+Point[16] Position= (-2119.8,690.005,-4992.03)
+Point[17] Position= (-2142.55,809.165,-5050.82)
+Point[18] Position= (-2174.82,916.264,-5093.46)
+Point[19] Position= (-2181.19,940.505,-5103.06)
+Point[20] Position= (-2200.64,990.98,-5118.4)
+Point[21] Position= (-2239.46,1087.78,-5135.06)
+Point[22] Position= (-2250.47,1124.26,-5142.48)
+Point[23] Position= (-2278.11,1215.42,-5145.79)
+Point[24] Position= (-2563.67,1664.13,-5156.81)
+Point[25] Position= (-2601.57,1723.14,-5139.72)
+Point[26] Position= (-2602.16,1724.48,-5139.74)
+Point[27] Position= (-2607.05,1739.11,-5140.52)
+Point[28] Position= (-2626.29,1783.92,-5143.69)
+Point[29] Position= (-2657.56,1857.09,-5139.81)
+Point[30] Position= (-2673.19,1886.91,-5140.76)
+Point[31] Position= (-2682.64,1907.28,-5141.9)
+Point[32] Position= (-2683.26,1908.49,-5141.95)
+Point[33] Position= (-2691.87,1922.74,-5142.41)
+Point[34] Position= (-2977,2418.01,-5220)
+Point[35] Position= (-3081.8,2599.74,-5152.22)
+Point[36] Position= (-3086.05,2607.74,-5149.26)
+Point[37] Position= (-3494.34,3002.12,-4903.4)
+Point[38] Position= (-3517.36,3022.74,-4901.07)
+Point[39] Position= (-3620.75,3168.32,-4870.24)
+Point[40] Position= (-3716.49,3309.84,-4825.02)
+Point[41] Position= (-3831.31,3368.92,-4768.27)
+Point[42] Position= (-3989.32,3423.27,-4715.17)
+Point[43] Position= (-4061.35,3441.1,-4705.13)
+Point[44] Position= (-4205.73,3510.04,-4684.99)
+Point[45] Position= (-4232.14,3516.37,-4680.81)
+Point[46] Position= (-4244.91,3519.92,-4679)
+Point[47] Position= (-4267.07,3529.39,-4675.25)
+Point[48] Position= (-4437.07,3583.12,-4642.62)
+Point[49] Position= (-4438.52,3583.51,-4642.09)
+Point[50] Position= (-4487.59,3596.99,-4625.05)
+Point[51] Position= (-4514.69,3600.81,-4614.18)
+Point[52] Position= (-4567.53,3625.85,-4599.72)
+Point[53] Position= (-4579.51,3645.29,-4554.43)
+Point[54] Position= (-4581.61,3678.83,-4493.14)
+Point[55] Position= (-4588.39,3683.95,-4461.91)
+Point[56] Position= (-4591.93,3698.88,-4386.68)
+Point[57] Position= (-4593.35,3700.7,-4381.03)
+Point[58] Position= (-4610.6,3712.59,-4339.12)
+Point[59] Position= (-4629.71,3720.29,-4275.08)
+Point[60] Position= (-4648,3730.92,-4217.07)
+Point[61] Position= (-4655.55,3746.86,-4192.41)
+Point[62] Position= (-4707.64,3788.73,-4102.72)
+Point[63] Position= (-4752.13,3854.69,-4035.43)
+Point[64] Position= (-4797.03,3900.29,-4001.76)
+Point[65] Position= (-4847.4,3935.41,-3954.79)
+Point[66] Position= (-4856.98,3946.56,-3945.66)
+Point[67] Position= (-4877.99,4024.33,-3870.87)
+Point[68] Position= (-4865.24,4160.6,-3792.35)
+Point[69] Position= (-4865.15,4172.05,-3790.15)
+Point[70] Position= (-4849.4,4238.26,-3781)
+Point[71] Position= (-4845.34,4254.56,-3778.01)
+Point[72] Position= (-4837.13,4284.61,-3767.97)
+Point[73] Position= (-4833.06,4290.76,-3764.62)
+Point[74] Position= (-4832.84,4291.03,-3764.39)
+Point[75] Position= (-4832.82,4291.05,-3764.37)
+Point[76] Position= (-4814.71,4314.92,-3751.06)
+Point[77] Position= (-4792.89,4344.14,-3743.73)
+Point[78] Position= (-4706.18,4439.18,-3731.41)
+Point[79] Position= (-4699.45,4448.79,-3730.9)
+Point[80] Position= (-4675.14,4554.9,-3709.1)
+Point[81] Position= (-4654.34,4562.51,-3690.78)
+Point[82] Position= (-4642.08,4566.67,-3678.37)
+Point[83] Position= (-4639.56,4567.69,-3675.99)
+Point[84] Position= (-4637.89,4568.83,-3674.12)
+Point[85] Position= (-4600.19,4591.3,-3640.38)
+Point[86] Position= (-4556.74,4596.16,-3607.26)
+Point[87] Position= (-4555.03,4596.35,-3605.16)
+Point[88] Position= (-4496.39,4595.23,-3534.14)
+Point[89] Position= (-4489.79,4586.09,-3528.42)
+Point[90] Position= (-4483.8,4578.53,-3519.5)
+Point[91] Position= (-4476.36,4565.28,-3508.49)
+Point[92] Position= (-4473.37,4544.11,-3488.28)
+Point[93] Position= (-4470.67,4535.51,-3482.52)
+Point[94] Position= (-4469.67,4532.96,-3479.42)
+Point[95] Position= (-4468.17,4524.27,-3468.05)
+Point[96] Position= (-4468.87,4496.12,-3394.6)
+Point[97] Position= (-4468.94,4497.82,-3357.39)
+Point[98] Position= (-4474.8,4477.53,-3280.37)
+Point[99] Position= (-4474.98,4477.61,-3279.54)
+Point[100] Position= (-4478.86,4481.12,-3254.27)
+Point[101] Position= (-4479.09,4482.07,-3243.42)
+Point[102] Position= (-4479.01,4474.97,-3231.46)
+Point[103] Position= (-4470.59,4459.35,-3184.75)
+Point[104] Position= (-4473.53,4454.7,-3177.8)
+Point[105] Position= (-4481.99,4450.26,-3163.61)
+Point[106] Position= (-4484,4447.5,-3160.84)
+Point[107] Position= (-4484.63,4446.32,-3159.39)
+Point[108] Position= (-4493.06,4433.5,-3137.77)
+Point[109] Position= (-4493.58,4423.46,-3136.8)
+Point[110] Position= (-4493.44,4407.16,-3131.3)
+Point[111] Position= (-4486.38,4396.1,-3133.86)
+Point[112] Position= (-4483.36,4394.23,-3133.48)
+Point[113] Position= (-4474.83,4388.93,-3132.41)
+Point[114] Position= (-4468.48,4384.43,-3133.45)
+Point[115] Position= (-4463.55,4383.45,-3130.53)
+Point[116] Position= (-4461.46,4383.59,-3127.7)
+Point[117] Position= (-4460.43,4385.19,-3125.05)
+Point[118] Position= (-4460.28,4385.86,-3122.94)
+Point[119] Position= (-4460.52,4386.72,-3121.39)
+Point[120] Position= (-4460.21,4387.17,-3120.43)
+Point[121] Position= (-4460.12,4387.31,-3120.14)
+
+TrackID =248 : ParentID=115 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -17.9727 -20.9421 19.8644 keV
+Vertex : -4.46146 4.38359 -3.1277 m    Global time : 46.3235 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4461.46,4383.59,-3127.7)
+Point[1] Position= (-4461.47,4383.57,-3127.68)
+
+TrackID =247 : ParentID=115 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -9.57232 -5.39877 -37.4246 keV
+Vertex : -4.47483 4.38893 -3.13241 m    Global time : 46.1645 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4474.83,4388.93,-3132.41)
+Point[1] Position= (-4474.84,4388.92,-3132.45)
+
+TrackID =246 : ParentID=115 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -5.51465 -17.9508 -40.8774 keV
+Vertex : -4.48638 4.3961 -3.13386 m    Global time : 46.0556 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4486.38,4396.1,-3133.86)
+Point[1] Position= (-4486.39,4396.08,-3133.92)
+
+TrackID =245 : ParentID=115 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -60.5393 14.9838 50.9734 keV
+Vertex : -4.49358 4.42346 -3.1368 m    Global time : 45.8358 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-4493.58,4423.46,-3136.8)
+Point[1] Position= (-4493.97,4423.56,-3136.47)
+Point[2] Position= (-4493.97,4423.56,-3136.47)
+
+TrackID =244 : ParentID=115 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -1.42168 -38.9863 -22.9766 keV
+Vertex : -4.48463 4.44632 -3.15939 m    Global time : 45.6007 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1015.03,-175.004,-4469.19)
-Point[1] Position= (-1015.06,-174.977,-4469.19)
+Point[0] Position= (-4484.63,4446.32,-3159.39)
+Point[1] Position= (-4484.64,4446.26,-3159.42)
 
-TrackID =114 : ParentID=65 : TrackStatus=1
+TrackID =243 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.9996 15.8929 4.94792 keV
-Vertex : -1.00525 -0.173322 -4.42612 m    Global time : 16.0026 ns 
+Original momentum : -5.65936 39.1037 30.4276 keV
+Vertex : -4.484 4.4475 -3.16084 m    Global time : 45.5883 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1005.25,-173.322,-4426.12)
-Point[1] Position= (-1005.28,-173.309,-4426.12)
+Point[0] Position= (-4484,4447.5,-3160.84)
+Point[1] Position= (-4484.01,4447.58,-3160.78)
 
-TrackID =113 : ParentID=65 : TrackStatus=1
+TrackID =242 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -62.8043 -13.5511 10.3527 keV
-Vertex : -0.976026 -0.168285 -4.29764 m    Global time : 15.538 ns 
+Original momentum : -30.5684 19.8501 -1.79801 keV
+Vertex : -4.48199 4.45026 -3.16361 m    Global time : 45.5612 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-976.026,-168.285,-4297.64)
-Point[1] Position= (-976.261,-168.335,-4297.61)
+Point[0] Position= (-4481.99,4450.26,-3163.61)
+Point[1] Position= (-4482.02,4450.28,-3163.62)
 
-TrackID =112 : ParentID=65 : TrackStatus=1
+TrackID =241 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.5237 58.2415 -1.45112 keV
-Vertex : -0.96786 -0.166882 -4.26177 m    Global time : 15.4082 ns 
+Original momentum : 58.3029 -38.9314 24.5779 keV
+Vertex : -4.47353 4.4547 -3.1778 m    Global time : 45.4587 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-4473.53,4454.7,-3177.8)
+Point[1] Position= (-4473.24,4454.51,-3177.68)
+Point[2] Position= (-4473.27,4454.5,-3177.71)
+
+TrackID =249 : ParentID=241 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -10.3745 -25.8958 20.5546 keV
+Vertex : -4.47324 4.45451 -3.17768 m    Global time : 45.4672 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-967.86,-166.882,-4261.77)
-Point[1] Position= (-967.931,-166.688,-4261.77)
+Point[0] Position= (-4473.24,4454.51,-3177.68)
+Point[1] Position= (-4473.25,4454.49,-3177.66)
 
-TrackID =111 : ParentID=65 : TrackStatus=1
+TrackID =240 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -61.4746 10.8007 9.34267 keV
-Vertex : -0.858162 -0.148188 -3.77937 m    Global time : 13.6638 ns 
+Original momentum : -29.2701 -13.1203 1.25395 keV
+Vertex : -4.47901 4.47497 -3.23146 m    Global time : 45.1324 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-858.162,-148.188,-3779.37)
-Point[1] Position= (-858.376,-148.15,-3779.34)
+Point[0] Position= (-4479.01,4474.97,-3231.46)
+Point[1] Position= (-4479.03,4474.96,-3231.46)
 
-TrackID =110 : ParentID=65 : TrackStatus=1
+TrackID =239 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.9579 -36.5552 -10.2903 keV
-Vertex : -0.849436 -0.146738 -3.74098 m    Global time : 13.525 ns 
+Original momentum : 44.8039 -20.5387 -11.4764 keV
+Vertex : -4.47909 4.48207 -3.24342 m    Global time : 45.0569 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-849.436,-146.738,-3740.98)
-Point[1] Position= (-849.348,-146.823,-3741)
+Point[0] Position= (-4479.09,4482.07,-3243.42)
+Point[1] Position= (-4479,4482.03,-3243.44)
 
-TrackID =109 : ParentID=65 : TrackStatus=1
+TrackID =238 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.0856 -2.2676 7.11007 keV
-Vertex : -0.822559 -0.142289 -3.6224 m    Global time : 13.0963 ns 
+Original momentum : -29.7102 29.2981 -2.5981 keV
+Vertex : -4.47886 4.48112 -3.25427 m    Global time : 44.9986 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-822.559,-142.289,-3622.4)
-Point[1] Position= (-822.601,-142.291,-3622.4)
+Point[0] Position= (-4478.86,4481.12,-3254.27)
+Point[1] Position= (-4478.9,4481.16,-3254.27)
 
-TrackID =108 : ParentID=65 : TrackStatus=1
+TrackID =237 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 76.3501 56.2125 -29.7751 keV
-Vertex : -0.768353 -0.1333 -3.38275 m    Global time : 12.23 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-768.353,-133.3,-3382.75)
-Point[1] Position= (-767.562,-132.718,-3383.06)
-Point[2] Position= (-767.643,-132.773,-3383.33)
+Original momentum : -28.2376 -20.2663 -1.08458 keV
+Vertex : -4.47498 4.47761 -3.27954 m    Global time : 44.8629 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4474.98,4477.61,-3279.54)
+Point[1] Position= (-4475.01,4477.59,-3279.54)
 
-TrackID =107 : ParentID=65 : TrackStatus=1
+TrackID =236 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -45.462 51.6828 3.31215 keV
-Vertex : -0.738737 -0.128368 -3.25164 m    Global time : 11.7561 ns 
+Original momentum : -54.7897 3.91574 -1.9697 keV
+Vertex : -4.46894 4.49782 -3.35739 m    Global time : 44.459 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-738.737,-128.368,-3251.64)
-Point[1] Position= (-738.934,-128.144,-3251.62)
+Point[0] Position= (-4468.94,4497.82,-3357.39)
+Point[1] Position= (-4469.07,4497.83,-3357.39)
 
-TrackID =106 : ParentID=65 : TrackStatus=1
+TrackID =235 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.0527 -9.07875 -7.83995 keV
-Vertex : -0.734071 -0.127597 -3.23095 m    Global time : 11.6813 ns 
+Original momentum : 19.62 26.3029 -0.750616 keV
+Vertex : -4.46887 4.49612 -3.3946 m    Global time : 44.2762 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-734.071,-127.597,-3230.95)
-Point[1] Position= (-734.046,-127.604,-3230.96)
+Point[0] Position= (-4468.87,4496.12,-3394.6)
+Point[1] Position= (-4468.85,4496.14,-3394.6)
 
-TrackID =105 : ParentID=65 : TrackStatus=1
+TrackID =234 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.6151 14.6216 6.17614 keV
-Vertex : -0.733838 -0.127558 -3.22992 m    Global time : 11.6776 ns 
+Original momentum : -36.7158 -24.7779 -8.97281 keV
+Vertex : -4.46817 4.52427 -3.46805 m    Global time : 43.9015 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-733.838,-127.558,-3229.92)
-Point[1] Position= (-733.884,-127.54,-3229.92)
+Point[0] Position= (-4468.17,4524.27,-3468.05)
+Point[1] Position= (-4468.23,4524.23,-3468.06)
 
-TrackID =104 : ParentID=65 : TrackStatus=1
+TrackID =233 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -73.3268 154.993 -19.9313 keV
-Vertex : -0.732371 -0.127316 -3.22342 m    Global time : 11.6541 ns 
-  Current trajectory has 8 points.
-Point[0] Position= (-732.371,-127.316,-3223.42)
-Point[1] Position= (-734.113,-123.635,-3223.9)
-Point[2] Position= (-734.827,-123.346,-3223.89)
-Point[3] Position= (-734.941,-123.38,-3223.92)
-Point[4] Position= (-736.765,-123.181,-3224.25)
-Point[5] Position= (-737.514,-124.113,-3224.08)
-Point[6] Position= (-737.54,-123.878,-3223.87)
-Point[7] Position= (-737.561,-123.88,-3223.87)
+Original momentum : 24.9649 -27.7631 -23.5233 keV
+Vertex : -4.46967 4.53296 -3.47942 m    Global time : 43.8334 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4469.67,4532.96,-3479.42)
+Point[1] Position= (-4469.63,4532.92,-3479.45)
 
-TrackID =126 : ParentID=104 : TrackStatus=1
+TrackID =232 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.82713 -43.0008 -11.6166 keV
-Vertex : -0.734941 -0.12338 -3.22392 m    Global time : 11.7071 ns 
+Original momentum : 11.6571 -34.169 -30.6649 keV
+Vertex : -4.47067 4.53551 -3.48252 m    Global time : 43.8138 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-734.941,-123.38,-3223.92)
-Point[1] Position= (-734.946,-123.445,-3223.94)
+Point[0] Position= (-4470.67,4535.51,-3482.52)
+Point[1] Position= (-4470.65,4535.46,-3482.58)
 
-TrackID =125 : ParentID=104 : TrackStatus=1
+TrackID =231 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.7632 61.85 32.5259 keV
-Vertex : -0.734827 -0.123346 -3.22389 m    Global time : 11.7055 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-734.827,-123.346,-3223.89)
-Point[1] Position= (-734.975,-123.017,-3223.72)
-Point[2] Position= (-734.984,-123.008,-3223.72)
+Original momentum : -8.57274 18.9102 33.4253 keV
+Vertex : -4.47337 4.54411 -3.48828 m    Global time : 43.7636 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4473.37,4544.11,-3488.28)
+Point[1] Position= (-4473.38,4544.13,-3488.25)
 
-TrackID =124 : ParentID=104 : TrackStatus=1
+TrackID =230 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.4668 34.1425 -8.92609 keV
-Vertex : -0.734113 -0.123635 -3.2239 m    Global time : 11.6968 ns 
+Original momentum : 41.8166 22.3839 18.8406 keV
+Vertex : -4.47636 4.56528 -3.50849 m    Global time : 43.627 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-734.113,-123.635,-3223.9)
-Point[1] Position= (-734.099,-123.599,-3223.91)
+Point[0] Position= (-4476.36,4565.28,-3508.49)
+Point[1] Position= (-4476.27,4565.33,-3508.45)
 
-TrackID =103 : ParentID=65 : TrackStatus=1
+TrackID =229 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.09235 -47.9824 -2.80788 keV
-Vertex : -0.71895 -0.125116 -3.16397 m    Global time : 11.4392 ns 
+Original momentum : -10.1264 19.9995 31.9967 keV
+Vertex : -4.4838 4.57853 -3.5195 m    Global time : 43.5404 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-718.95,-125.116,-3163.97)
-Point[1] Position= (-718.933,-125.205,-3163.98)
+Point[0] Position= (-4483.8,4578.53,-3519.5)
+Point[1] Position= (-4483.81,4578.55,-3519.47)
 
-TrackID =102 : ParentID=65 : TrackStatus=1
+TrackID =228 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.4255 30.8363 2.3645 keV
-Vertex : -0.695071 -0.12118 -3.05816 m    Global time : 11.0568 ns 
+Original momentum : 6.60239 -27.1705 -26.535 keV
+Vertex : -4.48979 4.58609 -3.52842 m    Global time : 43.48 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-695.071,-121.18,-3058.16)
-Point[1] Position= (-695.095,-121.147,-3058.16)
+Point[0] Position= (-4489.79,4586.09,-3528.42)
+Point[1] Position= (-4489.79,4586.06,-3528.45)
 
-TrackID =101 : ParentID=65 : TrackStatus=1
+TrackID =227 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.3798 19.0356 -9.65402 keV
-Vertex : -0.651767 -0.114001 -2.86677 m    Global time : 10.3649 ns 
+Original momentum : 40.5785 10.7831 -27.2344 keV
+Vertex : -4.49639 4.59523 -3.53414 m    Global time : 43.4223 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-651.767,-114.001,-2866.77)
-Point[1] Position= (-651.731,-113.98,-2866.78)
+Point[0] Position= (-4496.39,4595.23,-3534.14)
+Point[1] Position= (-4496.31,4595.25,-3534.2)
 
-TrackID =100 : ParentID=65 : TrackStatus=1
+TrackID =226 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 50.1712 22.8475 -15.7081 keV
-Vertex : -0.651391 -0.113939 -2.86511 m    Global time : 10.3589 ns 
+Original momentum : -10.3172 41.5406 10.2732 keV
+Vertex : -4.55503 4.59635 -3.60516 m    Global time : 43.0111 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-651.391,-113.939,-2865.11)
-Point[1] Position= (-651.254,-113.876,-2865.15)
+Point[0] Position= (-4555.03,4596.35,-3605.16)
+Point[1] Position= (-4555.04,4596.41,-3605.15)
 
-TrackID =99 : ParentID=65 : TrackStatus=1
+TrackID =225 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.6432 48.0233 1.84204 keV
-Vertex : -0.63146 -0.110594 -2.77719 m    Global time : 10.0411 ns 
+Original momentum : -10.652 -32.7937 12.3665 keV
+Vertex : -4.55674 4.59616 -3.60726 m    Global time : 42.9991 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-631.46,-110.594,-2777.19)
-Point[1] Position= (-631.547,-110.461,-2777.18)
+Point[0] Position= (-4556.74,4596.16,-3607.26)
+Point[1] Position= (-4556.75,4596.13,-3607.24)
 
-TrackID =98 : ParentID=65 : TrackStatus=1
+TrackID =224 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.6163 34.1541 1.87542 keV
-Vertex : -0.62648 -0.109756 -2.75525 m    Global time : 9.96173 ns 
+Original momentum : 11.2525 30.7286 -18.224 keV
+Vertex : -4.60019 4.5913 -3.64038 m    Global time : 42.758 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-626.48,-109.756,-2755.25)
-Point[1] Position= (-626.506,-109.714,-2755.25)
+Point[0] Position= (-4600.19,4591.3,-3640.38)
+Point[1] Position= (-4600.18,4591.34,-3640.4)
 
-TrackID =97 : ParentID=65 : TrackStatus=1
+TrackID =223 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.2071 -9.77027 -11.3355 keV
-Vertex : -0.626121 -0.109695 -2.75367 m    Global time : 9.95601 ns 
+Original momentum : -23.895 -17.3083 40.09 keV
+Vertex : -4.63789 4.56883 -3.67412 m    Global time : 42.5173 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-626.121,-109.695,-2753.67)
-Point[1] Position= (-626.057,-109.71,-2753.68)
+Point[0] Position= (-4637.89,4568.83,-3674.12)
+Point[1] Position= (-4637.94,4568.8,-3674.04)
 
-TrackID =96 : ParentID=65 : TrackStatus=1
+TrackID =222 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -56.725 74.6876 0.837302 keV
-Vertex : -0.615296 -0.107884 -2.70606 m    Global time : 9.78389 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-615.296,-107.884,-2706.06)
-Point[1] Position= (-615.819,-107.195,-2706.06)
-Point[2] Position= (-615.814,-107.196,-2706.06)
+Original momentum : 24.4337 -41.5368 5.12491 keV
+Vertex : -4.63956 4.56769 -3.67599 m    Global time : 42.5054 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4639.56,4567.69,-3675.99)
+Point[1] Position= (-4639.51,4567.61,-3675.98)
 
-TrackID =95 : ParentID=65 : TrackStatus=1
+TrackID =221 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 325.71 -229.208 -273.778 keV
-Vertex : -0.615136 -0.107858 -2.70536 m    Global time : 9.78135 ns 
-  Current trajectory has 25 points.
-Point[0] Position= (-615.136,-107.858,-2705.36)
-Point[1] Position= (-607.517,-113.219,-2711.76)
-Point[2] Position= (-548.148,-145.865,-2747.06)
-Point[3] Position= (-547.206,-146.823,-2746.84)
-Point[4] Position= (-507.738,-179.074,-2742.29)
-Point[5] Position= (-507.457,-180.124,-2741.99)
-Point[6] Position= (-487.396,-224.399,-2722.09)
-Point[7] Position= (-471.27,-264.159,-2745.25)
-Point[8] Position= (-474.07,-279.292,-2748.56)
-Point[9] Position= (-478.671,-314.436,-2761.33)
-Point[10] Position= (-486.037,-338.347,-2771.37)
-Point[11] Position= (-506.284,-328.736,-2765.75)
-Point[12] Position= (-521.383,-337.114,-2757.78)
-Point[13] Position= (-534.142,-342.647,-2751.98)
-Point[14] Position= (-536.805,-347.06,-2740.48)
-Point[15] Position= (-539.682,-342.359,-2736.81)
-Point[16] Position= (-538.41,-339.013,-2735.81)
-Point[17] Position= (-537.843,-338.441,-2735.79)
-Point[18] Position= (-535.088,-333.526,-2736.76)
-Point[19] Position= (-534.409,-332.971,-2737.05)
-Point[20] Position= (-533.588,-333.051,-2737.03)
-Point[21] Position= (-531.069,-333.5,-2736.01)
-Point[22] Position= (-530.161,-335.091,-2735.84)
-Point[23] Position= (-529.375,-336.106,-2735.66)
-Point[24] Position= (-529.061,-336.123,-2735.65)
-
-TrackID =139 : ParentID=95 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.7176 18.6367 -46.5617 keV
-Vertex : -0.533588 -0.333051 -2.73703 m    Global time : 12.1596 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-533.588,-333.051,-2737.03)
-Point[1] Position= (-533.546,-333.017,-2737.12)
-Point[2] Position= (-533.555,-333,-2737.15)
+Original momentum : 4.17435 -37.912 12.955 keV
+Vertex : -4.64208 4.56667 -3.67837 m    Global time : 42.4897 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4642.08,4566.67,-3678.37)
+Point[1] Position= (-4642.07,4566.63,-3678.36)
 
-TrackID =140 : ParentID=139 : TrackStatus=1
+TrackID =220 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.5064 20.4169 4.10882 keV
-Vertex : -0.533546 -0.333017 -2.73712 m    Global time : 12.1628 ns 
+Original momentum : -1.39004 -32.337 13.0318 keV
+Vertex : -4.65434 4.56251 -3.69078 m    Global time : 42.4125 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-533.546,-333.017,-2737.12)
-Point[1] Position= (-533.526,-333.002,-2737.12)
+Point[0] Position= (-4654.34,4562.51,-3690.78)
+Point[1] Position= (-4654.34,4562.48,-3690.77)
 
-TrackID =138 : ParentID=95 : TrackStatus=1
+TrackID =219 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 5.38106 50.8642 -0.719122 keV
-Vertex : -0.534409 -0.332971 -2.73705 m    Global time : 12.1504 ns 
+Original momentum : 24.6434 -22.0636 -17.7862 keV
+Vertex : -4.67514 4.5549 -3.7091 m    Global time : 42.2894 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-534.409,-332.971,-2737.05)
-Point[1] Position= (-534.398,-332.866,-2737.06)
+Point[0] Position= (-4675.14,4554.9,-3709.1)
+Point[1] Position= (-4675.12,4554.88,-3709.11)
 
-TrackID =137 : ParentID=95 : TrackStatus=1
+TrackID =218 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.2058 -7.30959 35.2464 keV
-Vertex : -0.537843 -0.338441 -2.73579 m    Global time : 12.0865 ns 
+Original momentum : 6.44039 -7.89669 34.3839 keV
+Vertex : -4.69945 4.44879 -3.7309 m    Global time : 41.8213 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-537.843,-338.441,-2735.79)
-Point[1] Position= (-537.804,-338.451,-2735.74)
+Point[0] Position= (-4699.45,4448.79,-3730.9)
+Point[1] Position= (-4699.44,4448.79,-3730.87)
 
-TrackID =136 : ParentID=95 : TrackStatus=1
+TrackID =217 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.5938 12.6963 28.0602 keV
-Vertex : -0.53841 -0.339013 -2.73581 m    Global time : 12.079 ns 
+Original momentum : -40.1996 29.1839 8.77876 keV
+Vertex : -4.70618 4.43918 -3.73141 m    Global time : 41.7718 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-538.41,-339.013,-2735.81)
-Point[1] Position= (-538.421,-339.002,-2735.79)
+Point[0] Position= (-4706.18,4439.18,-3731.41)
+Point[1] Position= (-4706.26,4439.23,-3731.39)
 
-TrackID =135 : ParentID=95 : TrackStatus=1
+TrackID =216 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 51.4079 -25.6122 23.0807 keV
-Vertex : -0.539682 -0.342359 -2.73681 m    Global time : 12.0461 ns 
+Original momentum : 112.608 -75.4764 49.7908 keV
+Vertex : -4.79289 4.34414 -3.74373 m    Global time : 41.2557 ns 
+  Current trajectory has 7 points.
+Point[0] Position= (-4792.89,4344.14,-3743.73)
+Point[1] Position= (-4792.27,4343.72,-3743.45)
+Point[2] Position= (-4791.87,4343.36,-3743)
+Point[3] Position= (-4791.03,4342.04,-3742.06)
+Point[4] Position= (-4790.63,4340.83,-3741.22)
+Point[5] Position= (-4790.19,4340.25,-3741.45)
+Point[6] Position= (-4790.17,4340.27,-3741.47)
+
+TrackID =251 : ParentID=216 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 43.8545 11.0891 -4.25603 keV
+Vertex : -4.79103 4.34204 -3.74206 m    Global time : 41.2982 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-539.682,-342.359,-2736.81)
-Point[1] Position= (-539.513,-342.443,-2736.73)
+Point[0] Position= (-4791.03,4342.04,-3742.06)
+Point[1] Position= (-4790.96,4342.06,-3742.07)
 
-TrackID =134 : ParentID=95 : TrackStatus=1
+TrackID =250 : ParentID=216 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.1357 -45.4226 7.91472 keV
-Vertex : -0.486037 -0.338347 -2.77137 m    Global time : 11.5064 ns 
+Original momentum : 29.4916 18.6019 -10.4319 keV
+Vertex : -4.79227 4.34372 -3.74345 m    Global time : 41.2656 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-486.037,-338.347,-2771.37)
-Point[1] Position= (-486.077,-338.437,-2771.36)
+Point[0] Position= (-4792.27,4343.72,-3743.45)
+Point[1] Position= (-4792.24,4343.74,-3743.46)
 
-TrackID =133 : ParentID=95 : TrackStatus=1
+TrackID =215 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.51439 -11.5869 30.3851 keV
-Vertex : -0.47407 -0.279292 -2.74856 m    Global time : 11.1213 ns 
+Original momentum : 37.8968 -7.76008 -38.7158 keV
+Vertex : -4.81471 4.31492 -3.75106 m    Global time : 41.1063 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-4814.71,4314.92,-3751.06)
+Point[1] Position= (-4814.68,4314.91,-3751.1)
+Point[2] Position= (-4814.65,4314.87,-3751.09)
+
+TrackID =252 : ParentID=215 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 1.40543 -9.37738 -30.6599 keV
+Vertex : -4.81468 4.31491 -3.7511 m    Global time : 41.1081 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-474.07,-279.292,-2748.56)
-Point[1] Position= (-474.069,-279.3,-2748.54)
+Point[0] Position= (-4814.68,4314.91,-3751.1)
+Point[1] Position= (-4814.68,4314.9,-3751.12)
 
-TrackID =132 : ParentID=95 : TrackStatus=1
+TrackID =214 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.8511 7.04553 -32.8036 keV
-Vertex : -0.487396 -0.224399 -2.72209 m    Global time : 10.7612 ns 
+Original momentum : 14.6104 -30.1634 25.6499 keV
+Vertex : -4.83282 4.29105 -3.76437 m    Global time : 40.9741 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-487.396,-224.399,-2722.09)
-Point[1] Position= (-487.436,-224.389,-2722.14)
+Point[0] Position= (-4832.82,4291.05,-3764.37)
+Point[1] Position= (-4832.81,4291.01,-3764.34)
 
-TrackID =131 : ParentID=95 : TrackStatus=1
+TrackID =213 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -48.2569 -31.5696 -18.262 keV
-Vertex : -0.507457 -0.180124 -2.74199 m    Global time : 10.4828 ns 
+Original momentum : -27.0407 15.3478 12.1944 keV
+Vertex : -4.83284 4.29103 -3.76439 m    Global time : 40.974 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4832.84,4291.03,-3764.39)
+Point[1] Position= (-4832.86,4291.04,-3764.38)
+
+TrackID =212 : ParentID=115 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -55.0766 76.1248 -26.3735 keV
+Vertex : -4.83306 4.29076 -3.76462 m    Global time : 40.9723 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-507.457,-180.124,-2741.99)
-Point[1] Position= (-507.568,-180.197,-2742.03)
-Point[2] Position= (-507.576,-180.21,-2742.01)
+Point[0] Position= (-4833.06,4290.76,-3764.62)
+Point[1] Position= (-4833.62,4291.52,-3764.88)
+Point[2] Position= (-4833.66,4291.56,-3765.01)
 
-TrackID =130 : ParentID=95 : TrackStatus=1
+TrackID =211 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.4052 4.89874 -12.4606 keV
-Vertex : -0.507738 -0.179074 -2.74229 m    Global time : 10.4769 ns 
+Original momentum : -40.2644 12.195 19.2129 keV
+Vertex : -4.84534 4.25456 -3.77801 m    Global time : 40.8098 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-507.738,-179.074,-2742.29)
-Point[1] Position= (-507.707,-179.07,-2742.3)
+Point[0] Position= (-4845.34,4254.56,-3778.01)
+Point[1] Position= (-4845.4,4254.58,-3777.98)
 
-TrackID =129 : ParentID=95 : TrackStatus=1
+TrackID =210 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.2322 -30.5648 19.0213 keV
-Vertex : -0.547206 -0.146823 -2.74684 m    Global time : 10.216 ns 
+Original momentum : -6.14962 -6.7 34.2521 keV
+Vertex : -4.8494 4.23826 -3.781 m    Global time : 40.7417 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-547.206,-146.823,-2746.84)
-Point[1] Position= (-547.245,-146.869,-2746.81)
+Point[0] Position= (-4849.4,4238.26,-3781)
+Point[1] Position= (-4849.4,4238.25,-3780.97)
 
-TrackID =128 : ParentID=95 : TrackStatus=1
+TrackID =209 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.5601 -25.7417 4.59792 keV
-Vertex : -0.548148 -0.145865 -2.74706 m    Global time : 10.2091 ns 
+Original momentum : -3.7816 -6.13793 44.1553 keV
+Vertex : -4.86515 4.17205 -3.79015 m    Global time : 40.4701 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-548.148,-145.865,-2747.06)
-Point[1] Position= (-548.174,-145.891,-2747.06)
+Point[0] Position= (-4865.15,4172.05,-3790.15)
+Point[1] Position= (-4865.15,4172.04,-3790.09)
 
-TrackID =127 : ParentID=95 : TrackStatus=1
+TrackID =208 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.7556 23.3332 23.543 keV
-Vertex : -0.607517 -0.113219 -2.71176 m    Global time : 9.83623 ns 
+Original momentum : -13.2793 10.0048 -35.8973 keV
+Vertex : -4.86524 4.1606 -3.79235 m    Global time : 40.4238 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-607.517,-113.219,-2711.76)
-Point[1] Position= (-607.478,-113.187,-2711.73)
+Point[0] Position= (-4865.24,4160.6,-3792.35)
+Point[1] Position= (-4865.25,4160.61,-3792.39)
 
-TrackID =94 : ParentID=65 : TrackStatus=1
+TrackID =207 : ParentID=115 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -73.2443 -51.0071 62.7918 keV
+Vertex : -4.87799 4.02433 -3.87087 m    Global time : 39.8289 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-4877.99,4024.33,-3870.87)
+Point[1] Position= (-4878.5,4023.97,-3870.43)
+Point[2] Position= (-4879,4023.5,-3869.9)
+Point[3] Position= (-4878.87,4023.66,-3869.91)
+
+TrackID =253 : ParentID=207 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.80191 -32.5866 0.990647 keV
-Vertex : -0.524121 -0.0924613 -2.30406 m    Global time : 8.3306 ns 
+Original momentum : -8.82203 -22.1281 -28.1379 keV
+Vertex : -4.8785 4.02397 -3.87043 m    Global time : 39.8411 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-524.121,-92.4613,-2304.06)
-Point[1] Position= (-524.124,-92.4862,-2304.06)
+Point[0] Position= (-4878.5,4023.97,-3870.43)
+Point[1] Position= (-4878.51,4023.95,-3870.46)
 
-TrackID =93 : ParentID=65 : TrackStatus=1
+TrackID =206 : ParentID=115 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -133.802 18.4482 -58.0026 keV
+Vertex : -4.85698 3.94656 -3.94566 m    Global time : 39.4108 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (-4856.98,3946.56,-3945.66)
+Point[1] Position= (-4859.51,3946.91,-3946.75)
+Point[2] Position= (-4860.48,3947.66,-3946.76)
+Point[3] Position= (-4861.28,3948.65,-3946.64)
+Point[4] Position= (-4860.97,3948.77,-3946.55)
+
+TrackID =254 : ParentID=206 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 4.71697 40.6469 -4.44553 keV
-Vertex : -0.520832 -0.0918957 -2.28955 m    Global time : 8.27816 ns 
+Original momentum : -0.715454 4.02831 -37.319 keV
+Vertex : -4.86048 3.94766 -3.94676 m    Global time : 39.461 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-520.832,-91.8957,-2289.55)
-Point[1] Position= (-520.826,-91.8447,-2289.56)
+Point[0] Position= (-4860.48,3947.66,-3946.76)
+Point[1] Position= (-4860.48,3947.66,-3946.8)
 
-TrackID =92 : ParentID=65 : TrackStatus=1
+TrackID =205 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 49.3659 23.5365 -15.5462 keV
-Vertex : -0.506559 -0.0894426 -2.22669 m    Global time : 8.05087 ns 
+Original momentum : -25.662 -5.25474 -22.7672 keV
+Vertex : -4.8474 3.93541 -3.95479 m    Global time : 39.3443 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-506.559,-89.4426,-2226.69)
-Point[1] Position= (-506.426,-89.3795,-2226.73)
+Point[0] Position= (-4847.4,3935.41,-3954.79)
+Point[1] Position= (-4847.43,3935.4,-3954.81)
 
-TrackID =91 : ParentID=65 : TrackStatus=1
+TrackID =204 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 41.189 11.7637 -11.9018 keV
-Vertex : -0.504536 -0.0890955 -2.21778 m    Global time : 8.01866 ns 
+Original momentum : 40.8373 54.0775 -13.3 keV
+Vertex : -4.79703 3.90029 -4.00176 m    Global time : 39.0529 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-504.536,-89.0955,-2217.78)
-Point[1] Position= (-504.474,-89.0779,-2217.79)
+Point[0] Position= (-4797.03,3900.29,-4001.76)
+Point[1] Position= (-4796.86,3900.52,-4001.82)
 
-TrackID =90 : ParentID=65 : TrackStatus=1
+TrackID =203 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 57.1883 4.17359 -16.909 keV
-Vertex : -0.499305 -0.0881939 -2.19473 m    Global time : 7.93533 ns 
+Original momentum : 23.1348 -12.9606 37.04 keV
+Vertex : -4.75213 3.85469 -4.03543 m    Global time : 38.7801 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-499.305,-88.1939,-2194.73)
-Point[1] Position= (-499.132,-88.1813,-2194.78)
+Point[0] Position= (-4752.13,3854.69,-4035.43)
+Point[1] Position= (-4752.09,3854.67,-4035.37)
 
-TrackID =89 : ParentID=65 : TrackStatus=1
+TrackID =202 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.50432 -32.2976 -1.84422 keV
-Vertex : -0.498958 -0.0881337 -2.19319 m    Global time : 7.92978 ns 
+Original momentum : 7.92455 -33.88 27.6237 keV
+Vertex : -4.70764 3.78873 -4.10272 m    Global time : 38.3914 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-498.958,-88.1337,-2193.19)
-Point[1] Position= (-498.951,-88.1594,-2193.19)
+Point[0] Position= (-4707.64,3788.73,-4102.72)
+Point[1] Position= (-4707.63,3788.68,-4102.67)
 
-TrackID =88 : ParentID=65 : TrackStatus=1
+TrackID =200 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.4805 -83.3227 -1.03781 keV
-Vertex : -0.477742 -0.0844994 -2.09961 m    Global time : 7.59146 ns 
+Original momentum : -17.884 -28.1099 10.97 keV
+Vertex : -4.648 3.73092 -4.21707 m    Global time : 37.8644 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-477.742,-84.4994,-2099.61)
-Point[1] Position= (-477.847,-85.1039,-2099.61)
+Point[0] Position= (-4648,3730.92,-4217.07)
+Point[1] Position= (-4648.02,3730.9,-4217.07)
 
-TrackID =87 : ParentID=65 : TrackStatus=1
+TrackID =199 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.4476 51.2257 -11.0798 keV
-Vertex : -0.464849 -0.0822763 -2.04267 m    Global time : 7.38564 ns 
+Original momentum : -13.6859 -44.8234 5.76327 keV
+Vertex : -4.62971 3.72029 -4.27508 m    Global time : 37.6349 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-464.849,-82.2763,-2042.67)
-Point[1] Position= (-464.781,-82.1332,-2042.7)
+Point[0] Position= (-4629.71,3720.29,-4275.08)
+Point[1] Position= (-4629.73,3720.22,-4275.07)
 
-TrackID =86 : ParentID=65 : TrackStatus=1
+TrackID =198 : ParentID=115 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 10.3888 -48.0438 13.0242 keV
+Vertex : -4.6106 3.71259 -4.33912 m    Global time : 37.383 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-4610.6,3712.59,-4339.12)
+Point[1] Position= (-4610.58,3712.49,-4339.1)
+Point[2] Position= (-4610.59,3712.49,-4339.1)
+
+TrackID =197 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 39.9093 -38.6556 -10.904 keV
-Vertex : -0.432197 -0.0765951 -1.89817 m    Global time : 6.86336 ns 
+Original momentum : 46.5249 11.6395 11.5673 keV
+Vertex : -4.59335 3.7007 -4.38103 m    Global time : 37.2085 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-432.197,-76.5951,-1898.17)
-Point[1] Position= (-432.092,-76.6977,-1898.2)
+Point[0] Position= (-4593.35,3700.7,-4381.03)
+Point[1] Position= (-4593.26,3700.72,-4381.01)
 
-TrackID =85 : ParentID=65 : TrackStatus=1
+TrackID =196 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.4345 21.5466 -8.11928 keV
-Vertex : -0.395637 -0.0702979 -1.7367 m    Global time : 6.27966 ns 
+Original momentum : 7.40259 -35.7471 15.2764 keV
+Vertex : -4.59193 3.69888 -4.38668 m    Global time : 37.1857 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-395.637,-70.2979,-1736.7)
-Point[1] Position= (-395.614,-70.2789,-1736.7)
+Point[0] Position= (-4591.93,3698.88,-4386.68)
+Point[1] Position= (-4591.92,3698.84,-4386.66)
 
-TrackID =84 : ParentID=65 : TrackStatus=1
+TrackID =195 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.6999 32.3674 0.115752 keV
-Vertex : -0.356167 -0.0634844 -1.56262 m    Global time : 5.65035 ns 
+Original momentum : -7.34357 -54.7409 10.6041 keV
+Vertex : -4.58839 3.68395 -4.46191 m    Global time : 36.9005 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-356.167,-63.4844,-1562.62)
-Point[1] Position= (-356.177,-63.457,-1562.62)
+Point[0] Position= (-4588.39,3683.95,-4461.91)
+Point[1] Position= (-4588.41,3683.81,-4461.88)
 
-TrackID =83 : ParentID=65 : TrackStatus=1
+TrackID =194 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.8124 -25.6174 4.9147 keV
-Vertex : -0.337273 -0.0601813 -1.47928 m    Global time : 5.3491 ns 
+Original momentum : -17.7109 36.9683 -10.5305 keV
+Vertex : -4.58161 3.67883 -4.49314 m    Global time : 36.7804 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-337.273,-60.1813,-1479.28)
-Point[1] Position= (-337.292,-60.2032,-1479.28)
+Point[0] Position= (-4581.61,3678.83,-4493.14)
+Point[1] Position= (-4581.63,3678.88,-4493.15)
 
-TrackID =82 : ParentID=65 : TrackStatus=1
+TrackID =193 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.0481 0.0380339 -8.1581 keV
-Vertex : -0.302415 -0.0540776 -1.326 m    Global time : 4.79488 ns 
+Original momentum : 7.24216 39.3099 -19.5008 keV
+Vertex : -4.57951 3.64529 -4.55443 m    Global time : 36.522 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-302.415,-54.0776,-1326)
-Point[1] Position= (-302.393,-54.0776,-1326)
+Point[0] Position= (-4579.51,3645.29,-4554.43)
+Point[1] Position= (-4579.5,3645.35,-4554.46)
 
-TrackID =81 : ParentID=65 : TrackStatus=1
+TrackID =192 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.8525 215.063 -71.0673 keV
-Vertex : -0.29835 -0.0533518 -1.30812 m    Global time : 4.73025 ns 
-  Current trajectory has 11 points.
-Point[0] Position= (-298.35,-53.3518,-1308.12)
-Point[1] Position= (-296.701,-44.2252,-1311.14)
-Point[2] Position= (-298.814,-37.9418,-1314.6)
-Point[3] Position= (-300.229,-36.5068,-1313.72)
-Point[4] Position= (-304.89,-33.6233,-1312.63)
-Point[5] Position= (-306.59,-32.62,-1313.29)
-Point[6] Position= (-310.312,-31.6567,-1313.86)
-Point[7] Position= (-310.654,-33.1582,-1312.42)
-Point[8] Position= (-310.564,-32.912,-1311.02)
-Point[9] Position= (-310.453,-32.8222,-1310.36)
-Point[10] Position= (-310.45,-32.8175,-1310.36)
+Original momentum : -2.68935 39.1106 -22.2298 keV
+Vertex : -4.56753 3.62585 -4.59972 m    Global time : 36.3351 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4567.53,3625.85,-4599.72)
+Point[1] Position= (-4567.53,3625.91,-4599.75)
 
-TrackID =143 : ParentID=81 : TrackStatus=1
+TrackID =191 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -58.402 -15.6124 -29.293 keV
-Vertex : -0.310312 -0.0316567 -1.31386 m    Global time : 5.01152 ns 
+Original momentum : -18.9082 -44.6315 -9.58097 keV
+Vertex : -4.51469 3.60081 -4.61418 m    Global time : 36.1141 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-310.312,-31.6567,-1313.86)
-Point[1] Position= (-310.549,-31.72,-1313.98)
+Point[0] Position= (-4514.69,3600.81,-4614.18)
+Point[1] Position= (-4514.73,3600.72,-4614.2)
 
-TrackID =142 : ParentID=81 : TrackStatus=1
+TrackID =190 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.4854 23.8104 -29.7378 keV
-Vertex : -0.30659 -0.03262 -1.31329 m    Global time : 4.96998 ns 
+Original momentum : 10.8977 27.972 29.7022 keV
+Vertex : -4.48759 3.59699 -4.62505 m    Global time : 36.0055 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-306.59,-32.62,-1313.29)
-Point[1] Position= (-306.578,-32.5927,-1313.32)
+Point[0] Position= (-4487.59,3596.99,-4625.05)
+Point[1] Position= (-4487.57,3597.03,-4625.01)
 
-TrackID =141 : ParentID=81 : TrackStatus=1
+TrackID =189 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 4.16023 -7.27414 38.1978 keV
-Vertex : -0.300229 -0.0365068 -1.31372 m    Global time : 4.89537 ns 
+Original momentum : 13.3832 47.8941 12.6709 keV
+Vertex : -4.43852 3.58351 -4.64209 m    Global time : 35.8078 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-300.229,-36.5068,-1313.72)
-Point[1] Position= (-300.224,-36.515,-1313.68)
+Point[0] Position= (-4438.52,3583.51,-4642.09)
+Point[1] Position= (-4438.49,3583.61,-4642.06)
 
-TrackID =80 : ParentID=65 : TrackStatus=1
+TrackID =188 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -67.6724 43.6376 6.77982 keV
-Vertex : -0.273305 -0.0488862 -1.19818 m    Global time : 4.33269 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-273.305,-48.8862,-1198.18)
-Point[1] Position= (-273.743,-48.604,-1198.13)
-Point[2] Position= (-273.746,-48.5991,-1198.15)
+Original momentum : 8.18238 42.6934 -6.48168 keV
+Vertex : -4.43707 3.58312 -4.64262 m    Global time : 35.8019 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4437.07,3583.12,-4642.62)
+Point[1] Position= (-4437.06,3583.18,-4642.63)
 
-TrackID =79 : ParentID=65 : TrackStatus=1
+TrackID =187 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -117.079 -68.7157 10.2739 keV
-Vertex : -0.267466 -0.0478367 -1.17261 m    Global time : 4.24024 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (-267.466,-47.8367,-1172.61)
-Point[1] Position= (-269.444,-48.9974,-1172.44)
-Point[2] Position= (-270.28,-48.0324,-1173.04)
-Point[3] Position= (-270.078,-47.9121,-1172.36)
-Point[4] Position= (-269.896,-47.6991,-1172.35)
+Original momentum : 17.096 77.4937 -30.8496 keV
+Vertex : -4.26707 3.52939 -4.67525 m    Global time : 35.1439 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-4267.07,3529.39,-4675.25)
+Point[1] Position= (-4266.96,3529.86,-4675.44)
+Point[2] Position= (-4266.92,3529.99,-4675.27)
 
-TrackID =145 : ParentID=79 : TrackStatus=1
+TrackID =255 : ParentID=187 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.08888 -2.15416 32.1261 keV
-Vertex : -0.270078 -0.0479121 -1.17236 m    Global time : 4.30495 ns 
+Original momentum : -25.5213 28.4887 -15.8673 keV
+Vertex : -4.26696 3.52986 -4.67544 m    Global time : 35.1544 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-270.078,-47.9121,-1172.36)
-Point[1] Position= (-270.077,-47.9136,-1172.34)
+Point[0] Position= (-4266.96,3529.86,-4675.44)
+Point[1] Position= (-4266.99,3529.9,-4675.46)
 
-TrackID =144 : ParentID=79 : TrackStatus=1
+TrackID =186 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.5691 -14.2878 -10.5282 keV
-Vertex : -0.27028 -0.0480324 -1.17304 m    Global time : 4.2913 ns 
+Original momentum : -151.353 -196.463 -39.191 keV
+Vertex : -4.24491 3.51992 -4.679 m    Global time : 35.0549 ns 
+  Current trajectory has 15 points.
+Point[0] Position= (-4244.91,3519.92,-4679)
+Point[1] Position= (-4246.75,3517.53,-4679.48)
+Point[2] Position= (-4248.36,3507.79,-4684.4)
+Point[3] Position= (-4248.26,3500.13,-4684.07)
+Point[4] Position= (-4248.31,3499.43,-4683.56)
+Point[5] Position= (-4248.32,3499.43,-4683.56)
+Point[6] Position= (-4250.78,3495.05,-4681.52)
+Point[7] Position= (-4253.27,3491.32,-4682.51)
+Point[8] Position= (-4253.43,3489.95,-4684.45)
+Point[9] Position= (-4253.61,3488.66,-4684.42)
+Point[10] Position= (-4253.93,3488.2,-4684.54)
+Point[11] Position= (-4255.73,3487.51,-4684.67)
+Point[12] Position= (-4255.39,3488.36,-4683.64)
+Point[13] Position= (-4254.98,3488.93,-4683.83)
+Point[14] Position= (-4255,3488.99,-4683.62)
+
+TrackID =260 : ParentID=186 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 15.0286 -18.6743 28.9264 keV
+Vertex : -4.25361 3.48866 -4.68442 m    Global time : 35.3809 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-270.28,-48.0324,-1173.04)
-Point[1] Position= (-270.2,-48.0578,-1173.06)
+Point[0] Position= (-4253.61,3488.66,-4684.42)
+Point[1] Position= (-4253.59,3488.65,-4684.39)
 
-TrackID =78 : ParentID=65 : TrackStatus=1
+TrackID =259 : ParentID=186 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.82937 34.9875 -3.1663 keV
-Vertex : -22.5369 -4.0252 -98.8461 cm   Global time : 3.57423 ns 
+Original momentum : -15.8024 0.404296 -55.0844 keV
+Vertex : -4.25343 3.48995 -4.68445 m    Global time : 35.3647 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-225.369,-40.252,-988.461)
-Point[1] Position= (-225.368,-40.2293,-988.463)
+Point[0] Position= (-4253.43,3489.95,-4684.45)
+Point[1] Position= (-4253.47,3489.95,-4684.6)
 
-TrackID =77 : ParentID=65 : TrackStatus=1
+TrackID =258 : ParentID=186 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -112.79 20.0183 11.0543 keV
-Vertex : -17.5712 -3.12529 -77.1139 cm   Global time : 2.78828 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-175.712,-31.2529,-771.139)
-Point[1] Position= (-177.032,-31.0188,-771.01)
-Point[2] Position= (-177.51,-31.1273,-770.561)
-Point[3] Position= (-177.572,-30.9676,-770.485)
+Original momentum : -39.9942 23.837 3.89638 keV
+Vertex : -4.24832 3.49943 -4.68356 m    Global time : 35.2395 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4248.32,3499.43,-4683.56)
+Point[1] Position= (-4248.38,3499.47,-4683.55)
 
-TrackID =147 : ParentID=77 : TrackStatus=1
+TrackID =257 : ParentID=186 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.6766 -20.1373 20.1968 keV
-Vertex : -17.751 -3.11273 -77.0561 cm   Global time : 2.821 ns 
+Original momentum : 24.6815 -17.1675 12.3469 keV
+Vertex : -4.24831 3.49943 -4.68356 m    Global time : 35.2394 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-177.51,-31.1273,-770.561)
-Point[1] Position= (-177.542,-31.1507,-770.537)
+Point[0] Position= (-4248.31,3499.43,-4683.56)
+Point[1] Position= (-4248.3,3499.42,-4683.55)
 
-TrackID =146 : ParentID=77 : TrackStatus=1
+TrackID =256 : ParentID=186 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 4.52117 38.6866 14.3845 keV
-Vertex : -17.7032 -3.10188 -77.101 cm   Global time : 2.80872 ns 
+Original momentum : -61.6747 6.13244 6.09797 keV
+Vertex : -4.24675 3.51753 -4.67948 m    Global time : 35.078 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-177.032,-31.0188,-771.01)
-Point[1] Position= (-177.026,-30.9693,-770.992)
+Point[0] Position= (-4246.75,3517.53,-4679.48)
+Point[1] Position= (-4246.96,3517.55,-4679.46)
 
-TrackID =76 : ParentID=65 : TrackStatus=1
+TrackID =185 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 46.0399 1.04789 -12.9661 keV
-Vertex : -15.6679 -2.77777 -68.7812 cm   Global time : 2.48693 ns 
+Original momentum : -15.898 -34.3084 -24.651 keV
+Vertex : -4.23214 3.51637 -4.68081 m    Global time : 35.0063 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-156.679,-27.7777,-687.812)
-Point[1] Position= (-156.598,-27.7759,-687.835)
+Point[0] Position= (-4232.14,3516.37,-4680.81)
+Point[1] Position= (-4232.16,3516.31,-4680.85)
 
-TrackID =75 : ParentID=65 : TrackStatus=1
+TrackID =184 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.3612 21.3899 3.54433 keV
-Vertex : -15.3927 -2.72785 -67.574 cm   Global time : 2.44327 ns 
+Original momentum : 0.483493 25.089 -23.6986 keV
+Vertex : -4.06135 3.4411 -4.70513 m    Global time : 34.3343 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-153.927,-27.2785,-675.74)
-Point[1] Position= (-153.946,-27.2624,-675.737)
+Point[0] Position= (-4061.35,3441.1,-4705.13)
+Point[1] Position= (-4061.35,3441.12,-4705.15)
 
-TrackID =74 : ParentID=65 : TrackStatus=1
+TrackID =183 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -141.44 -20.398 11.7174 keV
-Vertex : -12.701 -2.24847 -55.7643 cm   Global time : 2.01625 ns 
-  Current trajectory has 8 points.
-Point[0] Position= (-127.01,-22.4847,-557.643)
-Point[1] Position= (-129.587,-22.8564,-557.429)
-Point[2] Position= (-130.382,-24.4167,-558.523)
-Point[3] Position= (-131.208,-25.7715,-558.919)
-Point[4] Position= (-132.267,-26.0985,-558.888)
-Point[5] Position= (-132.255,-26.0897,-558.875)
-Point[6] Position= (-132.2,-26.0441,-558.671)
-Point[7] Position= (-132.194,-26.0744,-558.659)
+Original momentum : 20.8045 37.9125 8.4372 keV
+Vertex : -3.83131 3.36892 -4.76827 m    Global time : 33.4432 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-3831.31,3368.92,-4768.27)
+Point[1] Position= (-3831.28,3368.97,-4768.26)
 
-TrackID =148 : ParentID=74 : TrackStatus=1
+TrackID =182 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.7929 14.7432 -12.5674 keV
-Vertex : -13.2255 -2.60897 -55.8875 cm   Global time : 2.11992 ns 
+Original momentum : -15.4347 -31.6959 9.00865 keV
+Vertex : -3.71649 3.30984 -4.82502 m    Global time : 32.944 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-132.255,-26.0897,-558.875)
-Point[1] Position= (-132.215,-26.0725,-558.889)
+Point[0] Position= (-3716.49,3309.84,-4825.02)
+Point[1] Position= (-3716.5,3309.81,-4825.01)
 
-TrackID =73 : ParentID=65 : TrackStatus=1
+TrackID =181 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.5223 82.1849 -16.1032 keV
-Vertex : -12.1162 -2.14525 -53.2059 cm   Global time : 1.92373 ns 
+Original momentum : 62.5988 44.9657 14.0855 keV
+Vertex : -3.62075 3.16832 -4.87024 m    Global time : 32.3201 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-121.162,-21.4525,-532.059)
-Point[1] Position= (-120.997,-20.823,-532.183)
-Point[2] Position= (-121.007,-20.8112,-532.168)
+Point[0] Position= (-3620.75,3168.32,-4870.24)
+Point[1] Position= (-3620.4,3168.57,-4870.16)
+Point[2] Position= (-3620.45,3168.61,-4870.11)
 
-TrackID =72 : ParentID=65 : TrackStatus=1
+TrackID =261 : ParentID=181 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 52.0548 -22.6568 -14.5996 keV
-Vertex : -12.11 -2.14415 -53.1787 cm   Global time : 1.92274 ns 
+Original momentum : -17.4638 -31.6063 5.10853 keV
+Vertex : -3.6204 3.16857 -4.87016 m    Global time : 32.3297 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-121.1,-21.4415,-531.787)
-Point[1] Position= (-120.949,-21.507,-531.829)
+Point[0] Position= (-3620.4,3168.57,-4870.16)
+Point[1] Position= (-3620.41,3168.54,-4870.16)
 
-TrackID =71 : ParentID=65 : TrackStatus=1
+TrackID =180 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 156.628 59.9041 -72.3885 keV
-Vertex : -9.91248 -1.75883 -43.544 cm   Global time : 1.57436 ns 
-  Current trajectory has 9 points.
-Point[0] Position= (-99.1248,-17.5883,-435.44)
-Point[1] Position= (-94.8784,-15.9642,-437.403)
-Point[2] Position= (-93.5077,-16.5956,-438.347)
-Point[3] Position= (-92.4158,-17.311,-441.205)
-Point[4] Position= (-90.8774,-18.6121,-442.051)
-Point[5] Position= (-89.6158,-19.7322,-441.928)
-Point[6] Position= (-89.4171,-20.119,-440.684)
-Point[7] Position= (-89.6449,-20.7632,-440.373)
-Point[8] Position= (-89.6224,-20.8747,-440.223)
+Original momentum : 20.8896 19.6801 43.3511 keV
+Vertex : -3.51736 3.02274 -4.90107 m    Global time : 31.6846 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-3517.36,3022.74,-4901.07)
+Point[1] Position= (-3517.31,3022.78,-4900.98)
 
-TrackID =149 : ParentID=71 : TrackStatus=1
+TrackID =179 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 39.2388 -31.9228 22.4985 keV
-Vertex : -9.35077 -1.65956 -43.8347 cm   Global time : 1.64242 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-93.5077,-16.5956,-438.347)
-Point[1] Position= (-93.4092,-16.6758,-438.291)
+Original momentum : -39.8562 -41.5869 12.6668 keV
+Vertex : -3.49434 3.00212 -4.9034 m    Global time : 31.5745 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-3494.34,3002.12,-4903.4)
+Point[1] Position= (-3494.45,3002,-4903.36)
+Point[2] Position= (-3494.42,3002,-4903.36)
 
-TrackID =70 : ParentID=65 : TrackStatus=1
+TrackID =178 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.066 -7.48776 -9.13189 keV
-Vertex : -7.89084 -1.40602 -34.6688 cm   Global time : 1.25347 ns 
+Original momentum : 35.1792 11.3353 22.6507 keV
+Vertex : -3.08605 2.60774 -5.14926 m    Global time : 29.4981 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-78.9084,-14.0602,-346.688)
-Point[1] Position= (-78.8736,-14.0676,-346.697)
+Point[0] Position= (-3086.05,2607.74,-5149.26)
+Point[1] Position= (-3086,2607.75,-5149.23)
 
-TrackID =69 : ParentID=65 : TrackStatus=1
+TrackID =177 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.034 -32.5276 -2.21765 keV
-Vertex : -5.26861 -0.943078 -23.1444 cm   Global time : 836.805 ps 
+Original momentum : -57.1662 -17.6947 -19.6562 keV
+Vertex : -3.0818 2.59974 -5.15222 m    Global time : 29.4644 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-52.6861,-9.43078,-231.444)
-Point[1] Position= (-52.6778,-9.45773,-231.446)
+Point[0] Position= (-3081.8,2599.74,-5152.22)
+Point[1] Position= (-3082,2599.68,-5152.29)
 
-TrackID =68 : ParentID=65 : TrackStatus=1
+TrackID =176 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.948292 -39.1557 0.17575 keV
-Vertex : -4.61893 -0.828339 -20.2908 cm   Global time : 733.633 ps 
+Original momentum : 10.7892 0.864749 31.5057 keV
+Vertex : -2.977 2.41801 -5.22 m    Global time : 28.696 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-46.1893,-8.28339,-202.908)
-Point[1] Position= (-46.1903,-8.32737,-202.908)
+Point[0] Position= (-2977,2418.01,-5220)
+Point[1] Position= (-2976.99,2418.01,-5219.97)
 
-TrackID =67 : ParentID=65 : TrackStatus=1
+TrackID =175 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 45.7809 9.30893 -13.3091 keV
-Vertex : -4.32808 -0.776519 -19.0141 cm   Global time : 687.472 ps 
+Original momentum : 69.8116 81.2946 126.817 keV
+Vertex : -2.69187 1.92274 -5.14241 m    Global time : 26.6775 ns 
+  Current trajectory has 9 points.
+Point[0] Position= (-2691.87,1922.74,-5142.41)
+Point[1] Position= (-2690.26,1924.61,-5139.5)
+Point[2] Position= (-2689.91,1924.58,-5139.33)
+Point[3] Position= (-2687.37,1924.5,-5138.06)
+Point[4] Position= (-2688.16,1923.67,-5136.11)
+Point[5] Position= (-2689.27,1922.97,-5135.36)
+Point[6] Position= (-2689.18,1922.77,-5135.85)
+Point[7] Position= (-2689.58,1922.43,-5135.77)
+Point[8] Position= (-2689.58,1922.42,-5135.76)
+
+TrackID =263 : ParentID=175 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 8.44935 -18.2836 -34.9416 keV
+Vertex : -2.68918 1.92277 -5.13585 m    Global time : 26.8194 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-43.2808,-7.76519,-190.141)
-Point[1] Position= (-43.1969,-7.74813,-190.166)
+Point[0] Position= (-2689.18,1922.77,-5135.85)
+Point[1] Position= (-2689.17,1922.74,-5135.89)
 
-TrackID =66 : ParentID=65 : TrackStatus=1
+TrackID =262 : ParentID=175 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -41.2425 19.3092 6.36834 keV
-Vertex : -3.44331 -0.618328 -15.1278 cm   Global time : 546.957 ps 
+Original momentum : 7.8317 30.3043 -13.3714 keV
+Vertex : -2.68991 1.92458 -5.13933 m    Global time : 26.7233 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-34.4331,-6.18328,-151.278)
-Point[1] Position= (-34.4996,-6.15216,-151.268)
+Point[0] Position= (-2689.91,1924.58,-5139.33)
+Point[1] Position= (-2689.9,1924.61,-5139.34)
 
-TrackID =64 : ParentID=62 : TrackStatus=1
-Particle name : pi+  PDG code : 211  Charge : 1
-Original momentum : 48.1834 7.89272 -565.929 MeV
-Vertex : -1.88943e-295 -1.54061e-296 1.33116e-293 fm   Global time : 6.40539e-305 ps 
-  Current trajectory has 57 points.
-Point[0] Position= (-1.88943e-307,-1.54061e-308,1.33116e-305)
-Point[1] Position= (0.164087,0.0268785,-1.92726)
-Point[2] Position= (8.20124,1.32339,-96.4339)
-Point[3] Position= (30.1346,4.992,-354.451)
-Point[4] Position= (44.2869,7.40929,-520.775)
-Point[5] Position= (77.4698,13.0741,-910.604)
-Point[6] Position= (102.499,17.636,-1204.24)
-Point[7] Position= (105.593,18.2125,-1240.52)
-Point[8] Position= (107.364,18.5435,-1261.31)
-Point[9] Position= (112.092,19.4363,-1316.83)
-Point[10] Position= (113.916,19.7879,-1338.3)
-Point[11] Position= (117.17,20.417,-1376.56)
-Point[12] Position= (117.938,20.564,-1385.57)
-Point[13] Position= (118.301,20.6338,-1389.84)
-Point[14] Position= (137.969,24.4522,-1620.27)
-Point[15] Position= (143.745,25.5707,-1687.96)
-Point[16] Position= (150.989,26.9888,-1772.75)
-Point[17] Position= (160.999,28.9061,-1889.61)
-Point[18] Position= (174.96,31.6964,-2052.38)
-Point[19] Position= (176.714,32.0602,-2072.83)
-Point[20] Position= (177.971,32.3191,-2087.55)
-Point[21] Position= (194.678,35.7345,-2283.18)
-Point[22] Position= (195.988,35.9989,-2298.46)
-Point[23] Position= (196.702,36.1421,-2306.8)
-Point[24] Position= (197.988,36.4013,-2321.82)
-Point[25] Position= (199.132,36.6308,-2335.15)
-Point[26] Position= (210.489,38.9056,-2467.4)
-Point[27] Position= (213.723,39.558,-2505.06)
-Point[28] Position= (220.546,40.9433,-2584.17)
-Point[29] Position= (240.634,45.0049,-2816.77)
-Point[30] Position= (257.235,48.3968,-3007.82)
-Point[31] Position= (269.333,50.8322,-3147.25)
-Point[32] Position= (307.282,58.5691,-3586.01)
-Point[33] Position= (308.688,58.858,-3602.27)
-Point[34] Position= (320.321,61.2651,-3736.76)
-Point[35] Position= (321.294,61.4663,-3748)
-Point[36] Position= (346.525,66.8325,-4039.03)
-Point[37] Position= (358.631,69.5688,-4178.97)
-Point[38] Position= (373.192,72.9392,-4348.57)
-Point[39] Position= (385.091,75.745,-4487.67)
-Point[40] Position= (385.961,75.9498,-4497.83)
-Point[41] Position= (394.353,77.9318,-4595.72)
-Point[42] Position= (399.991,79.2737,-4661.64)
-Point[43] Position= (401.084,79.5354,-4674.37)
-Point[44] Position= (402.764,79.9376,-4693.93)
-Point[45] Position= (434.682,87.5473,-5064.88)
-Point[46] Position= (440.031,88.8402,-5126.66)
-Point[47] Position= (449.937,91.2335,-5241.18)
-Point[48] Position= (452.986,91.9686,-5276.48)
-Point[49] Position= (460.739,93.8313,-5366.16)
-Point[50] Position= (466.303,95.1758,-5430.59)
-Point[51] Position= (483.11,99.207,-5625.4)
-Point[52] Position= (493.697,101.76,-5748.56)
-Point[53] Position= (497.401,102.66,-5791.6)
-Point[54] Position= (507.121,105.031,-5904.53)
-Point[55] Position= (507.851,105.21,-5913.01)
-Point[56] Position= (515.372,107.015,-6000)
-
-TrackID =201 : ParentID=64 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -198.954 143.346 -77.2732 keV
-Vertex : 0.507851 0.10521 -5.91301 m    Global time : 20.3899 ns 
-  Current trajectory has 15 points.
-Point[0] Position= (507.851,105.21,-5913.01)
-Point[1] Position= (497.175,112.902,-5917.16)
-Point[2] Position= (497.718,113.118,-5918.93)
-Point[3] Position= (497.446,113.318,-5920.15)
-Point[4] Position= (495.51,115.108,-5925.41)
-Point[5] Position= (493.288,115.367,-5933.26)
-Point[6] Position= (494.037,122.423,-5934.35)
-Point[7] Position= (491.753,127.029,-5937.17)
-Point[8] Position= (489.697,131.047,-5936.64)
-Point[9] Position= (489.051,134.171,-5935.12)
-Point[10] Position= (490.008,136.379,-5935.89)
-Point[11] Position= (490.164,137.668,-5936.4)
-Point[12] Position= (491.125,138.649,-5936.68)
-Point[13] Position= (491.282,138.844,-5936.04)
-Point[14] Position= (491.407,138.905,-5936.06)
+TrackID =174 : ParentID=115 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 37.0601 24.5987 29.8371 keV
+Vertex : -2.68326 1.90849 -5.14195 m    Global time : 26.6193 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-2683.26,1908.49,-5141.95)
+Point[1] Position= (-2683.18,1908.54,-5141.88)
 
-TrackID =204 : ParentID=201 : TrackStatus=1
+TrackID =173 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.8588 25.0986 1.99741 keV
-Vertex : 0.490164 0.137668 -5.9364 m    Global time : 20.8904 ns 
+Original momentum : -7.81596 -1.14841 38.9422 keV
+Vertex : -2.68264 1.90728 -5.1419 m    Global time : 26.6145 ns 
   Current trajectory has 2 points.
-Point[0] Position= (490.164,137.668,-5936.4)
-Point[1] Position= (490.141,137.69,-5936.4)
+Point[0] Position= (-2682.64,1907.28,-5141.9)
+Point[1] Position= (-2682.65,1907.28,-5141.86)
 
-TrackID =203 : ParentID=201 : TrackStatus=1
+TrackID =172 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.7095 2.36952 9.10118 keV
-Vertex : 0.49551 0.115108 -5.92541 m    Global time : 20.5656 ns 
+Original momentum : -35.5111 -16.5599 4.66789 keV
+Vertex : -2.67319 1.88691 -5.14076 m    Global time : 26.536 ns 
   Current trajectory has 2 points.
-Point[0] Position= (495.51,115.108,-5925.41)
-Point[1] Position= (495.483,115.11,-5925.4)
+Point[0] Position= (-2673.19,1886.91,-5140.76)
+Point[1] Position= (-2673.23,1886.9,-5140.75)
 
-TrackID =202 : ParentID=201 : TrackStatus=1
+TrackID =171 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 49.8572 -27.202 -16.3755 keV
-Vertex : 0.497718 0.113118 -5.91893 m    Global time : 20.507 ns 
+Original momentum : 22.6133 14.0154 -20.1504 keV
+Vertex : -2.65756 1.85709 -5.13981 m    Global time : 26.4184 ns 
   Current trajectory has 2 points.
-Point[0] Position= (497.718,113.118,-5918.93)
-Point[1] Position= (497.865,113.037,-5918.98)
+Point[0] Position= (-2657.56,1857.09,-5139.81)
+Point[1] Position= (-2657.54,1857.1,-5139.83)
 
-TrackID =200 : ParentID=64 : TrackStatus=1
+TrackID =170 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -45.4765 -12.6286 -6.46902 keV
-Vertex : 0.507121 0.105031 -5.90453 m    Global time : 20.3607 ns 
+Original momentum : 24.5851 13.6415 -45.0957 keV
+Vertex : -2.62629 1.78392 -5.14369 m    Global time : 26.1413 ns 
   Current trajectory has 2 points.
-Point[0] Position= (507.121,105.031,-5904.53)
-Point[1] Position= (507.041,105.009,-5904.54)
+Point[0] Position= (-2626.29,1783.92,-5143.69)
+Point[1] Position= (-2626.23,1783.95,-5143.79)
 
-TrackID =199 : ParentID=64 : TrackStatus=1
+TrackID =169 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.52204 -53.8568 -3.54613 keV
-Vertex : 0.497401 0.10266 -5.7916 m    Global time : 19.9712 ns 
+Original momentum : 43.5041 20.0804 -29.6818 keV
+Vertex : -2.60705 1.73911 -5.14052 m    Global time : 25.9711 ns 
   Current trajectory has 2 points.
-Point[0] Position= (497.401,102.66,-5791.6)
-Point[1] Position= (497.417,102.531,-5791.61)
+Point[0] Position= (-2607.05,1739.11,-5140.52)
+Point[1] Position= (-2606.93,1739.17,-5140.59)
 
-TrackID =198 : ParentID=64 : TrackStatus=1
+TrackID =168 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.4522 41.1576 0.064388 keV
-Vertex : 0.493697 0.10176 -5.74856 m    Global time : 19.8228 ns 
+Original momentum : -92.2136 -25.4884 41.4838 keV
+Vertex : -2.60216 1.72448 -5.13974 m    Global time : 25.9173 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (-2602.16,1724.48,-5139.74)
+Point[1] Position= (-2603.2,1724.2,-5139.27)
+Point[2] Position= (-2603.15,1724.49,-5139.22)
+Point[3] Position= (-2603.16,1724.59,-5139.23)
+Point[4] Position= (-2603.24,1724.71,-5139.31)
+
+TrackID =265 : ParentID=168 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 17.7832 21.5478 15.6458 keV
+Vertex : -2.60316 1.72459 -5.13923 m    Global time : 25.9458 ns 
   Current trajectory has 2 points.
-Point[0] Position= (493.697,101.76,-5748.56)
-Point[1] Position= (493.714,101.817,-5748.56)
+Point[0] Position= (-2603.16,1724.59,-5139.23)
+Point[1] Position= (-2603.14,1724.61,-5139.22)
 
-TrackID =197 : ParentID=64 : TrackStatus=1
+TrackID =264 : ParentID=168 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.30532 -60.9405 -5.50903 keV
-Vertex : 0.48311 0.099207 -5.6254 m    Global time : 19.398 ns 
+Original momentum : 29.9473 5.41847 22.4159 keV
+Vertex : -2.60315 1.72449 -5.13922 m    Global time : 25.9433 ns 
   Current trajectory has 2 points.
-Point[0] Position= (483.11,99.207,-5625.4)
-Point[1] Position= (483.093,99.0095,-5625.42)
+Point[0] Position= (-2603.15,1724.49,-5139.22)
+Point[1] Position= (-2603.12,1724.49,-5139.2)
 
-TrackID =196 : ParentID=64 : TrackStatus=1
+TrackID =167 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.0945 7.25815 1.90133 keV
-Vertex : 0.466303 0.0951758 -5.43059 m    Global time : 18.7262 ns 
+Original momentum : -4.39338 -0.453993 34.8464 keV
+Vertex : -2.60157 1.72314 -5.13972 m    Global time : 25.9122 ns 
   Current trajectory has 2 points.
-Point[0] Position= (466.303,95.1758,-5430.59)
-Point[1] Position= (466.342,95.1833,-5430.59)
+Point[0] Position= (-2601.57,1723.14,-5139.72)
+Point[1] Position= (-2601.58,1723.14,-5139.69)
 
-TrackID =195 : ParentID=64 : TrackStatus=1
+TrackID =166 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 5.0157 46.5011 -0.812483 keV
-Vertex : 0.460739 0.0938313 -5.36616 m    Global time : 18.504 ns 
+Original momentum : -23.2513 -18.609 17.5265 keV
+Vertex : -2.56367 1.66413 -5.15681 m    Global time : 25.6608 ns 
   Current trajectory has 2 points.
-Point[0] Position= (460.739,93.8313,-5366.16)
-Point[1] Position= (460.747,93.9093,-5366.16)
+Point[0] Position= (-2563.67,1664.13,-5156.81)
+Point[1] Position= (-2563.69,1664.11,-5156.79)
 
-TrackID =194 : ParentID=64 : TrackStatus=1
+TrackID =165 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -89.2752 -47.8869 -19.3702 keV
-Vertex : 0.452986 0.0919686 -5.27648 m    Global time : 18.1947 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (452.986,91.9686,-5276.48)
-Point[1] Position= (452.612,91.768,-5276.56)
-Point[2] Position= (452.155,92.2062,-5276.57)
-Point[3] Position= (452.129,92.1761,-5276.6)
+Original momentum : 44.9986 22.8854 48.071 keV
+Vertex : -2.27811 1.21542 -5.14579 m    Global time : 23.8582 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-2278.11,1215.42,-5145.79)
+Point[1] Position= (-2277.91,1215.52,-5145.58)
+Point[2] Position= (-2277.9,1215.53,-5145.56)
 
-TrackID =205 : ParentID=194 : TrackStatus=1
+TrackID =164 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.5124 -31.6678 -16.7195 keV
-Vertex : 0.452612 0.091768 -5.27656 m    Global time : 18.202 ns 
+Original momentum : -26.0007 -9.6282 -18.6705 keV
+Vertex : -2.25047 1.12426 -5.14248 m    Global time : 23.5281 ns 
   Current trajectory has 2 points.
-Point[0] Position= (452.612,91.768,-5276.56)
-Point[1] Position= (452.56,91.7141,-5276.59)
+Point[0] Position= (-2250.47,1124.26,-5142.48)
+Point[1] Position= (-2250.49,1124.26,-5142.49)
 
-TrackID =193 : ParentID=64 : TrackStatus=1
+TrackID =163 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.3024 -31.2634 -5.51354 keV
-Vertex : 0.449937 0.0912335 -5.24118 m    Global time : 18.0729 ns 
+Original momentum : -33.8783 -15.0835 -52.6747 keV
+Vertex : -2.23946 1.08778 -5.13506 m    Global time : 23.3935 ns 
   Current trajectory has 2 points.
-Point[0] Position= (449.937,91.2335,-5241.18)
-Point[1] Position= (449.887,91.1849,-5241.19)
+Point[0] Position= (-2239.46,1087.78,-5135.06)
+Point[1] Position= (-2239.59,1087.72,-5135.25)
 
-TrackID =192 : ParentID=64 : TrackStatus=1
+TrackID =162 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.9498 42.9249 0.874425 keV
-Vertex : 0.440031 0.0888402 -5.12666 m    Global time : 17.678 ns 
+Original momentum : -33.5464 -19.8908 -46.7007 keV
+Vertex : -2.20064 0.99098 -5.1184 m    Global time : 23.0286 ns 
   Current trajectory has 2 points.
-Point[0] Position= (440.031,88.8402,-5126.66)
-Point[1] Position= (440.14,88.9608,-5126.66)
+Point[0] Position= (-2200.64,990.98,-5118.4)
+Point[1] Position= (-2200.74,990.917,-5118.55)
 
-TrackID =191 : ParentID=64 : TrackStatus=1
+TrackID =161 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.8447 36.2973 0.606754 keV
-Vertex : 0.434682 0.0875473 -5.06488 m    Global time : 17.4649 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (434.682,87.5473,-5064.88)
-Point[1] Position= (434.702,87.5901,-5064.88)
+Original momentum : 59.356 2.25175 -73.8206 keV
+Vertex : -2.18119 0.940505 -5.10306 m    Global time : 22.8342 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-2181.19,940.505,-5103.06)
+Point[1] Position= (-2180.63,940.526,-5103.76)
+Point[2] Position= (-2180.57,940.467,-5103.72)
 
-TrackID =190 : ParentID=64 : TrackStatus=1
+TrackID =160 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.3646 -32.5887 -3.80022 keV
-Vertex : 0.402764 0.0799376 -4.69393 m    Global time : 16.1856 ns 
+Original momentum : 27.9625 -3.37711 -29.6167 keV
+Vertex : -2.17482 0.916264 -5.09346 m    Global time : 22.7413 ns 
   Current trajectory has 2 points.
-Point[0] Position= (402.764,79.9376,-4693.93)
-Point[1] Position= (402.743,79.9032,-4693.93)
+Point[0] Position= (-2174.82,916.264,-5093.46)
+Point[1] Position= (-2174.79,916.26,-5093.5)
 
-TrackID =189 : ParentID=64 : TrackStatus=1
+TrackID =159 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -58.1586 -14.1529 -8.97682 keV
-Vertex : 0.399991 0.0792737 -4.66164 m    Global time : 16.0743 ns 
+Original momentum : -15.3819 12.1907 34.5646 keV
+Vertex : -2.14255 0.809165 -5.05082 m    Global time : 22.3275 ns 
   Current trajectory has 2 points.
-Point[0] Position= (399.991,79.2737,-4661.64)
-Point[1] Position= (399.809,79.2294,-4661.67)
+Point[0] Position= (-2142.55,809.165,-5050.82)
+Point[1] Position= (-2142.57,809.179,-5050.78)
 
-TrackID =188 : ParentID=64 : TrackStatus=1
+TrackID =158 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.0609 30.0637 1.12282 keV
-Vertex : 0.394353 0.0779318 -4.59572 m    Global time : 15.847 ns 
+Original momentum : -35.164 -9.73888 -0.374848 keV
+Vertex : -2.1198 0.690005 -4.99203 m    Global time : 21.8641 ns 
   Current trajectory has 2 points.
-Point[0] Position= (394.353,77.9318,-4595.72)
-Point[1] Position= (394.377,77.9632,-4595.72)
+Point[0] Position= (-2119.8,690.005,-4992.03)
+Point[1] Position= (-2119.84,689.996,-4992.03)
 
-TrackID =187 : ParentID=64 : TrackStatus=1
+TrackID =157 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.08042 -32.4252 -1.02492 keV
-Vertex : 0.385961 0.0759498 -4.49783 m    Global time : 15.5094 ns 
+Original momentum : -69.1792 -41.8331 -29.8396 keV
+Vertex : -2.08542 0.612264 -4.92684 m    Global time : 21.4953 ns 
   Current trajectory has 2 points.
-Point[0] Position= (385.961,75.9498,-4497.83)
-Point[1] Position= (385.968,75.9237,-4497.83)
+Point[0] Position= (-2085.42,612.264,-4926.84)
+Point[1] Position= (-2085.95,611.947,-4927.06)
 
-TrackID =186 : ParentID=64 : TrackStatus=1
+TrackID =156 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.1518 17.4714 -3.32083 keV
-Vertex : 0.385091 0.075745 -4.48767 m    Global time : 15.4743 ns 
+Original momentum : -59.9476 -19.0997 -20.0172 keV
+Vertex : -2.05385 0.452052 -4.82723 m    Global time : 20.8403 ns 
   Current trajectory has 2 points.
-Point[0] Position= (385.091,75.745,-4487.67)
-Point[1] Position= (385.067,75.7595,-4487.67)
+Point[0] Position= (-2053.85,452.052,-4827.23)
+Point[1] Position= (-2054.08,451.978,-4827.3)
+
+TrackID =155 : ParentID=115 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -66.6221 7.70231 72.0758 keV
+Vertex : -2.00244 0.153384 -4.73917 m    Global time : 19.7589 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-2002.44,153.384,-4739.17)
+Point[1] Position= (-2003.12,153.463,-4738.43)
+Point[2] Position= (-2003.38,153.34,-4738.47)
 
-TrackID =185 : ParentID=64 : TrackStatus=1
+TrackID =154 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.97932 -34.294 -2.43064 keV
-Vertex : 0.373192 0.0729392 -4.34857 m    Global time : 14.9947 ns 
+Original momentum : -51.0901 -2.98914 33.479 keV
+Vertex : -1.97774 0.0771794 -4.7215 m    Global time : 19.4771 ns 
   Current trajectory has 2 points.
-Point[0] Position= (373.192,72.9392,-4348.57)
-Point[1] Position= (373.187,72.9093,-4348.57)
+Point[0] Position= (-1977.74,77.1794,-4721.5)
+Point[1] Position= (-1977.9,77.1698,-4721.39)
 
-TrackID =184 : ParentID=64 : TrackStatus=1
+TrackID =153 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 84.0512 36.0384 -0.434801 keV
-Vertex : 0.358631 0.0695688 -4.17897 m    Global time : 14.4098 ns 
+Original momentum : -56.319 -28.1484 -57.2097 keV
+Vertex : -1.96666 0.0460599 -4.71412 m    Global time : 19.3607 ns 
   Current trajectory has 3 points.
-Point[0] Position= (358.631,69.5688,-4178.97)
-Point[1] Position= (359.365,69.8834,-4178.98)
-Point[2] Position= (359.52,69.8702,-4179.01)
+Point[0] Position= (-1966.66,46.0599,-4714.12)
+Point[1] Position= (-1967.08,45.8528,-4714.54)
+Point[2] Position= (-1967.09,45.822,-4714.62)
 
-TrackID =183 : ParentID=64 : TrackStatus=1
+TrackID =152 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -69.7081 -27.3714 -12.3594 keV
-Vertex : 0.346525 0.0668325 -4.03903 m    Global time : 13.9272 ns 
+Original momentum : 27.279 15.2703 6.4556 keV
+Vertex : -1.94555 0.00393215 -4.70136 m    Global time : 19.1928 ns 
   Current trajectory has 2 points.
-Point[0] Position= (346.525,66.8325,-4039.03)
-Point[1] Position= (346.141,66.6815,-4039.09)
+Point[0] Position= (-1945.55,3.93215,-4701.36)
+Point[1] Position= (-1945.53,3.94313,-4701.35)
 
-TrackID =182 : ParentID=64 : TrackStatus=1
+TrackID =151 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.94412 32.1822 -0.144892 keV
-Vertex : 0.321294 0.0614663 -3.748 m    Global time : 12.9235 ns 
+Original momentum : -6.31719 -10.5604 -30.9203 keV
+Vertex : -1.92133 -0.0550289 -4.68315 m    Global time : 18.9654 ns 
   Current trajectory has 2 points.
-Point[0] Position= (321.294,61.4663,-3748)
-Point[1] Position= (321.297,61.4903,-3748)
+Point[0] Position= (-1921.33,-55.0289,-4683.15)
+Point[1] Position= (-1921.34,-55.0372,-4683.17)
 
-TrackID =181 : ParentID=64 : TrackStatus=1
+TrackID =150 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.0971 -18.5768 -5.80547 keV
-Vertex : 0.320321 0.0612651 -3.73676 m    Global time : 12.8848 ns 
+Original momentum : 38.2421 87.0873 118.411 keV
+Vertex : -1.91222 -0.0709568 -4.6776 m    Global time : 18.8995 ns 
+  Current trajectory has 7 points.
+Point[0] Position= (-1912.22,-70.9568,-4677.6)
+Point[1] Position= (-1912.16,-70.84,-4677.44)
+Point[2] Position= (-1911.03,-69.5981,-4675)
+Point[3] Position= (-1908.95,-69.4479,-4674.2)
+Point[4] Position= (-1908.68,-69.9112,-4673.62)
+Point[5] Position= (-1908.55,-70.3475,-4672.91)
+Point[6] Position= (-1908.49,-70.3853,-4672.98)
+
+TrackID =266 : ParentID=150 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 30.4087 30.5807 13.4396 keV
+Vertex : -1.90868 -0.0699112 -4.67362 m    Global time : 18.9779 ns 
   Current trajectory has 2 points.
-Point[0] Position= (320.321,61.2651,-3736.76)
-Point[1] Position= (320.261,61.2373,-3736.77)
+Point[0] Position= (-1908.68,-69.9112,-4673.62)
+Point[1] Position= (-1908.63,-69.8639,-4673.6)
 
-TrackID =180 : ParentID=64 : TrackStatus=1
+TrackID =149 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.3954 -21.9504 -4.46677 keV
-Vertex : 0.308688 0.058858 -3.60227 m    Global time : 12.421 ns 
+Original momentum : -31.9445 -13.5197 -0.610388 keV
+Vertex : -1.89754 -0.104868 -4.66534 m    Global time : 18.7658 ns 
   Current trajectory has 2 points.
-Point[0] Position= (308.688,58.858,-3602.27)
-Point[1] Position= (308.656,58.8352,-3602.27)
+Point[0] Position= (-1897.54,-104.868,-4665.34)
+Point[1] Position= (-1897.57,-104.88,-4665.34)
 
-TrackID =179 : ParentID=64 : TrackStatus=1
+TrackID =148 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.9912 20.4429 -3.13659 keV
-Vertex : 0.307282 0.0585691 -3.58601 m    Global time : 12.3649 ns 
+Original momentum : -18.2079 13.0353 27.2419 keV
+Vertex : -1.74832 -0.11733 -4.54739 m    Global time : 18.1137 ns 
   Current trajectory has 2 points.
-Point[0] Position= (307.282,58.5691,-3586.01)
-Point[1] Position= (307.26,58.5859,-3586.02)
+Point[0] Position= (-1748.32,-117.33,-4547.39)
+Point[1] Position= (-1748.33,-117.318,-4547.37)
 
-TrackID =178 : ParentID=64 : TrackStatus=1
+TrackID =147 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -59.419 -54.0354 -12.7435 keV
-Vertex : 0.269333 0.0508322 -3.14725 m    Global time : 10.8518 ns 
+Original momentum : -3.17709 74.7877 -8.59343 keV
+Vertex : -1.27215 -0.16511 -4.40097 m    Global time : 16.4241 ns 
   Current trajectory has 2 points.
-Point[0] Position= (269.333,50.8322,-3147.25)
-Point[1] Position= (268.942,50.477,-3147.33)
+Point[0] Position= (-1272.15,-165.11,-4400.97)
+Point[1] Position= (-1272.17,-164.705,-4401.02)
 
-TrackID =177 : ParentID=64 : TrackStatus=1
+TrackID =146 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.79492 133.378 -16.3665 keV
-Vertex : 0.257235 0.0483968 -3.00782 m    Global time : 10.371 ns 
-  Current trajectory has 7 points.
-Point[0] Position= (257.235,48.3968,-3007.82)
-Point[1] Position= (257.188,49.2012,-3007.92)
-Point[2] Position= (257.88,50.1842,-3007.03)
-Point[3] Position= (257.837,50.3161,-3007)
-Point[4] Position= (257.701,50.4782,-3006.98)
-Point[5] Position= (257.54,50.5285,-3006.81)
-Point[6] Position= (257.504,50.4565,-3006.79)
+Original momentum : -8.30202 -36.8259 5.92347 keV
+Vertex : -1.20079 -0.17388 -4.3662 m    Global time : 16.1512 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1200.79,-173.88,-4366.2)
+Point[1] Position= (-1200.79,-173.919,-4366.19)
 
-TrackID =209 : ParentID=177 : TrackStatus=1
+TrackID =145 : ParentID=115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.3869 15.265 30.8091 keV
-Vertex : 0.25754 0.0505285 -3.00681 m    Global time : 10.4174 ns 
+Original momentum : 8.96151 -38.1953 -14.419 keV
+Vertex : -1.1118 -0.166239 -4.30078 m    Global time : 15.7727 ns 
   Current trajectory has 2 points.
-Point[0] Position= (257.54,50.5285,-3006.81)
-Point[1] Position= (257.525,50.5439,-3006.77)
+Point[0] Position= (-1111.8,-166.239,-4300.78)
+Point[1] Position= (-1111.79,-166.288,-4300.8)
+
+TrackID =144 : ParentID=115 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -20.5029 10.9511 24.1695 keV
+Vertex : -1.08231 -0.167052 -4.27918 m    Global time : 15.6476 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1082.31,-167.052,-4279.18)
+Point[1] Position= (-1082.33,-167.043,-4279.16)
+
+TrackID =143 : ParentID=115 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 3.82519 -147.581 -30.9985 keV
+Vertex : -1.01793 -0.164163 -4.21855 m    Global time : 15.3456 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (-1017.93,-164.163,-4218.55)
+Point[1] Position= (-1017.89,-165.648,-4218.86)
+Point[2] Position= (-1017.95,-166.619,-4219.02)
+Point[3] Position= (-1018.14,-167.27,-4219.13)
+Point[4] Position= (-1018.59,-167.67,-4219.2)
+Point[5] Position= (-1018.57,-167.675,-4219.33)
 
-TrackID =208 : ParentID=177 : TrackStatus=1
+TrackID =269 : ParentID=143 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.16938 34.6544 -1.39498 keV
-Vertex : 0.257701 0.0504782 -3.00698 m    Global time : 10.4115 ns 
+Original momentum : 7.58515 -15.3286 40.9674 keV
+Vertex : -1.01814 -0.16727 -4.21913 m    Global time : 15.3893 ns 
   Current trajectory has 2 points.
-Point[0] Position= (257.701,50.4782,-3006.98)
-Point[1] Position= (257.709,50.5103,-3006.98)
+Point[0] Position= (-1018.14,-167.27,-4219.13)
+Point[1] Position= (-1018.13,-167.293,-4219.07)
 
-TrackID =207 : ParentID=177 : TrackStatus=1
+TrackID =268 : ParentID=143 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.1025 19.564 19.6906 keV
-Vertex : 0.257837 0.0503161 -3.007 m    Global time : 10.4071 ns 
+Original momentum : 12.0961 -8.86176 29.3815 keV
+Vertex : -1.01795 -0.166619 -4.21902 m    Global time : 15.3781 ns 
   Current trajectory has 2 points.
-Point[0] Position= (257.837,50.3161,-3007)
-Point[1] Position= (257.865,50.3367,-3006.98)
+Point[0] Position= (-1017.95,-166.619,-4219.02)
+Point[1] Position= (-1017.94,-166.626,-4219)
 
-TrackID =206 : ParentID=177 : TrackStatus=1
+TrackID =267 : ParentID=143 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.111 46.9537 -41.976 keV
-Vertex : 0.257188 0.0492012 -3.00792 m    Global time : 10.3816 ns 
+Original momentum : 74.9705 -7.3497 13.4389 keV
+Vertex : -1.01789 -0.165648 -4.21886 m    Global time : 15.3635 ns 
   Current trajectory has 2 points.
-Point[0] Position= (257.188,49.2012,-3007.92)
-Point[1] Position= (257.144,49.3706,-3008.07)
+Point[0] Position= (-1017.89,-165.648,-4218.86)
+Point[1] Position= (-1017.47,-165.689,-4218.79)
 
-TrackID =176 : ParentID=64 : TrackStatus=1
+TrackID =114 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.6397 -31.9376 -3.08302 keV
-Vertex : 0.240634 0.0450049 -2.81677 m    Global time : 9.71213 ns 
+Original momentum : 10.674 -57.0105 -3.80144 keV
+Vertex : -0.9503 -0.165135 -4.14154 m    Global time : 14.9809 ns 
   Current trajectory has 2 points.
-Point[0] Position= (240.634,45.0049,-2816.77)
-Point[1] Position= (240.621,44.9765,-2816.77)
+Point[0] Position= (-950.3,-165.135,-4141.54)
+Point[1] Position= (-950.27,-165.296,-4141.55)
 
-TrackID =175 : ParentID=64 : TrackStatus=1
+TrackID =113 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -53.8006 13.9676 -7.56754 keV
-Vertex : 0.220546 0.0409433 -2.58417 m    Global time : 8.91006 ns 
+Original momentum : -42.9449 5.55598 7.626 keV
+Vertex : -0.931492 -0.161956 -4.05976 m    Global time : 14.685 ns 
   Current trajectory has 2 points.
-Point[0] Position= (220.546,40.9433,-2584.17)
-Point[1] Position= (220.406,40.9795,-2584.19)
+Point[0] Position= (-931.492,-161.956,-4059.76)
+Point[1] Position= (-931.555,-161.948,-4059.75)
 
-TrackID =174 : ParentID=64 : TrackStatus=1
+TrackID =112 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.061 -28.3264 -3.57867 keV
-Vertex : 0.213723 0.039558 -2.50506 m    Global time : 8.63724 ns 
+Original momentum : 28.909 26.6304 -9.45778 keV
+Vertex : -0.863509 -0.150523 -3.7654 m    Global time : 13.6198 ns 
   Current trajectory has 2 points.
-Point[0] Position= (213.723,39.558,-2505.06)
-Point[1] Position= (213.704,39.5325,-2505.06)
+Point[0] Position= (-863.509,-150.523,-3765.4)
+Point[1] Position= (-863.474,-150.491,-3765.41)
 
-TrackID =173 : ParentID=64 : TrackStatus=1
+TrackID =111 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.5247 -13.4952 1.32437 keV
-Vertex : 0.210489 0.0389056 -2.4674 m    Global time : 8.5074 ns 
+Original momentum : 31.2809 38.6425 -11.5023 keV
+Vertex : -0.851394 -0.148453 -3.7129 m    Global time : 13.4299 ns 
   Current trajectory has 2 points.
-Point[0] Position= (210.489,38.9056,-2467.4)
-Point[1] Position= (210.521,38.8929,-2467.4)
+Point[0] Position= (-851.394,-148.453,-3712.9)
+Point[1] Position= (-851.33,-148.374,-3712.93)
 
-TrackID =172 : ParentID=64 : TrackStatus=1
+TrackID =110 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.07804 -33.7814 -1.92124 keV
-Vertex : 0.197988 0.0364013 -2.32182 m    Global time : 8.0054 ns 
+Original momentum : 14.4463 28.0875 -5.53179 keV
+Vertex : -0.838527 -0.146246 -3.65709 m    Global time : 13.228 ns 
   Current trajectory has 2 points.
-Point[0] Position= (197.988,36.4013,-2321.82)
-Point[1] Position= (197.987,36.3737,-2321.83)
+Point[0] Position= (-838.527,-146.246,-3657.09)
+Point[1] Position= (-838.517,-146.226,-3657.1)
 
-TrackID =171 : ParentID=64 : TrackStatus=1
+TrackID =109 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -60.2344 -60.6914 -13.7354 keV
-Vertex : 0.196702 0.0361421 -2.3068 m    Global time : 7.95361 ns 
+Original momentum : 60.3321 3.41867 -18.2496 keV
+Vertex : -0.832869 -0.145279 -3.63256 m    Global time : 13.1392 ns 
   Current trajectory has 3 points.
-Point[0] Position= (196.702,36.1421,-2306.8)
-Point[1] Position= (196.239,35.6754,-2306.91)
-Point[2] Position= (196.243,35.6836,-2307)
+Point[0] Position= (-832.869,-145.279,-3632.56)
+Point[1] Position= (-832.838,-145.277,-3632.57)
+Point[2] Position= (-832.915,-145.255,-3632.47)
 
-TrackID =170 : ParentID=64 : TrackStatus=1
+TrackID =270 : ParentID=109 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.3705 29.8427 -2.42871 keV
-Vertex : 0.195988 0.0359989 -2.29846 m    Global time : 7.92485 ns 
+Original momentum : 9.73588 -27.7433 14.2418 keV
+Vertex : -0.832838 -0.145277 -3.63257 m    Global time : 13.14 ns 
   Current trajectory has 2 points.
-Point[0] Position= (195.988,35.9989,-2298.46)
-Point[1] Position= (195.97,36.0262,-2298.47)
+Point[0] Position= (-832.838,-145.277,-3632.57)
+Point[1] Position= (-832.831,-145.298,-3632.56)
 
-TrackID =169 : ParentID=64 : TrackStatus=1
+TrackID =108 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.9587 31.6732 -4.24845 keV
-Vertex : 0.194678 0.0357345 -2.28318 m    Global time : 7.87214 ns 
+Original momentum : 42.1702 28.6627 -13.8098 keV
+Vertex : -0.793487 -0.138647 -3.4619 m    Global time : 12.5217 ns 
   Current trajectory has 2 points.
-Point[0] Position= (194.678,35.7345,-2283.18)
-Point[1] Position= (194.629,35.7835,-2283.18)
+Point[0] Position= (-793.487,-138.647,-3461.9)
+Point[1] Position= (-793.393,-138.583,-3461.93)
 
-TrackID =168 : ParentID=64 : TrackStatus=1
+TrackID =107 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 142.99 98.162 -15.8675 keV
-Vertex : 0.176714 0.0320602 -2.07283 m    Global time : 7.14683 ns 
-  Current trajectory has 8 points.
-Point[0] Position= (176.714,32.0602,-2072.83)
-Point[1] Position= (180.275,34.5055,-2073.22)
-Point[2] Position= (183.938,34.0555,-2073.27)
-Point[3] Position= (186.614,32.942,-2073.48)
-Point[4] Position= (185.192,31.7419,-2072.46)
-Point[5] Position= (184.369,31.7418,-2071.2)
-Point[6] Position= (183.735,31.4488,-2071.33)
-Point[7] Position= (183.731,31.6083,-2071.41)
-
-TrackID =167 : ParentID=64 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -56.3852 -59.8149 -12.8518 keV
-Vertex : 0.17496 0.0316964 -2.05238 m    Global time : 7.07632 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (174.96,31.6964,-2052.38)
-Point[1] Position= (174.568,31.2798,-2052.47)
-Point[2] Position= (174.589,31.3528,-2052.51)
-Point[3] Position= (174.64,31.3627,-2052.56)
+Original momentum : -60.1167 -23.4589 10.2863 keV
+Vertex : -0.774207 -0.13542 -3.37843 m    Global time : 12.2196 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-774.207,-135.42,-3378.43)
+Point[1] Position= (-774.435,-135.508,-3378.39)
 
-TrackID =166 : ParentID=64 : TrackStatus=1
+TrackID =106 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 17.7571 -56.4654 -2.94461 keV
-Vertex : 0.160999 0.0289061 -1.88961 m    Global time : 6.51508 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (160.999,28.9061,-1889.61)
-Point[1] Position= (161.052,28.7386,-1889.62)
-Point[2] Position= (161.049,28.7363,-1889.62)
+Original momentum : 29.5682 -16.0582 -7.47189 keV
+Vertex : -0.748189 -0.130995 -3.26593 m    Global time : 11.8125 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-748.189,-130.995,-3265.93)
+Point[1] Position= (-748.164,-131.009,-3265.93)
 
-TrackID =165 : ParentID=64 : TrackStatus=1
+TrackID =105 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.7022 30.6377 0.896012 keV
-Vertex : 0.150989 0.0269888 -1.77275 m    Global time : 6.11214 ns 
+Original momentum : -36.6145 30.9121 4.80464 keV
+Vertex : -0.744314 -0.130332 -3.24919 m    Global time : 11.752 ns 
   Current trajectory has 2 points.
-Point[0] Position= (150.989,26.9888,-1772.75)
-Point[1] Position= (151.01,27.0191,-1772.75)
+Point[0] Position= (-744.314,-130.332,-3249.19)
+Point[1] Position= (-744.379,-130.276,-3249.19)
 
-TrackID =164 : ParentID=64 : TrackStatus=1
+TrackID =104 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -36.838 -78.3985 -12.1351 keV
-Vertex : 0.143745 0.0255707 -1.68796 m    Global time : 5.81975 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (143.745,25.5707,-1687.96)
-Point[1] Position= (143.455,24.9533,-1688.05)
-Point[2] Position= (143.392,24.9661,-1688.09)
+Original momentum : 34.0147 -4.9356 -9.01974 keV
+Vertex : -0.723472 -0.126818 -3.15922 m    Global time : 11.4263 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-723.472,-126.818,-3159.22)
+Point[1] Position= (-723.442,-126.822,-3159.23)
 
-TrackID =163 : ParentID=64 : TrackStatus=1
+TrackID =103 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -39.103 -13.3587 -5.30508 keV
-Vertex : 0.137969 0.0244522 -1.62027 m    Global time : 5.58638 ns 
+Original momentum : -12.7287 37.8073 -0.205981 keV
+Vertex : -0.707144 -0.124077 -3.08877 m    Global time : 11.1714 ns 
   Current trajectory has 2 points.
-Point[0] Position= (137.969,24.4522,-1620.27)
-Point[1] Position= (137.918,24.435,-1620.28)
+Point[0] Position= (-707.144,-124.077,-3088.77)
+Point[1] Position= (-707.159,-124.033,-3088.77)
 
-TrackID =162 : ParentID=64 : TrackStatus=1
+TrackID =102 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.6847 -65.9566 -7.58311 keV
-Vertex : 0.118301 0.0206338 -1.38984 m    Global time : 4.79185 ns 
+Original momentum : 50.0797 22.8802 -15.9507 keV
+Vertex : -0.691067 -0.121397 -3.0194 m    Global time : 10.9203 ns 
   Current trajectory has 2 points.
-Point[0] Position= (118.301,20.6338,-1389.84)
-Point[1] Position= (118.215,20.3454,-1389.87)
+Point[0] Position= (-691.067,-121.397,-3019.4)
+Point[1] Position= (-690.93,-121.335,-3019.44)
 
-TrackID =161 : ParentID=64 : TrackStatus=1
+TrackID =101 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.8785 -23.7482 0.780464 keV
-Vertex : 0.117938 0.020564 -1.38557 m    Global time : 4.77713 ns 
+Original momentum : -31.675 47.9982 1.94832 keV
+Vertex : -0.67074 -0.117968 -2.93155 m    Global time : 10.6024 ns 
   Current trajectory has 2 points.
-Point[0] Position= (117.938,20.564,-1385.57)
-Point[1] Position= (117.984,20.5325,-1385.57)
+Point[0] Position= (-670.74,-117.968,-2931.55)
+Point[1] Position= (-670.827,-117.836,-2931.54)
 
-TrackID =160 : ParentID=64 : TrackStatus=1
+TrackID =100 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -62.4407 15.7818 -9.32022 keV
-Vertex : 0.11717 0.020417 -1.37656 m    Global time : 4.74606 ns 
+Original momentum : -42.1238 27.8687 5.92173 keV
+Vertex : -0.663426 -0.116732 -2.89996 m    Global time : 10.4881 ns 
   Current trajectory has 2 points.
-Point[0] Position= (117.17,20.417,-1376.56)
-Point[1] Position= (116.937,20.476,-1376.59)
+Point[0] Position= (-663.426,-116.732,-2899.96)
+Point[1] Position= (-663.512,-116.675,-2899.95)
 
-TrackID =159 : ParentID=64 : TrackStatus=1
+TrackID =99 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.431 -3.47049 1.65428 keV
-Vertex : 0.113916 0.0197879 -1.3383 m    Global time : 4.61415 ns 
+Original momentum : -22.6614 26.7717 2.86056 keV
+Vertex : -0.632679 -0.111522 -2.76688 m    Global time : 10.0065 ns 
   Current trajectory has 2 points.
-Point[0] Position= (113.916,19.7879,-1338.3)
-Point[1] Position= (113.945,19.785,-1338.3)
+Point[0] Position= (-632.679,-111.522,-2766.88)
+Point[1] Position= (-632.699,-111.498,-2766.88)
 
-TrackID =158 : ParentID=64 : TrackStatus=1
+TrackID =98 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 57.634 -66.6404 -3.98904 keV
-Vertex : 0.112092 0.0194363 -1.31683 m    Global time : 4.54013 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (112.092,19.4363,-1316.83)
-Point[1] Position= (112.555,18.9011,-1316.87)
-Point[2] Position= (112.49,19.0007,-1316.8)
+Original momentum : 41.5728 9.30822 -12.0476 keV
+Vertex : -0.63094 -0.111224 -2.75936 m    Global time : 9.9793 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-630.94,-111.224,-2759.36)
+Point[1] Position= (-630.879,-111.211,-2759.37)
 
-TrackID =157 : ParentID=64 : TrackStatus=1
+TrackID =97 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.2405 -8.55408 1.54595 keV
-Vertex : 0.107364 0.0185435 -1.26131 m    Global time : 4.34869 ns 
+Original momentum : 31.1554 0.72048 -8.32125 keV
+Vertex : -0.615027 -0.108496 -2.69049 m    Global time : 9.73012 ns 
   Current trajectory has 2 points.
-Point[0] Position= (107.364,18.5435,-1261.31)
-Point[1] Position= (107.4,18.5349,-1261.31)
+Point[0] Position= (-615.027,-108.496,-2690.49)
+Point[1] Position= (-615.004,-108.496,-2690.5)
 
-TrackID =156 : ParentID=64 : TrackStatus=1
+TrackID =96 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 48.5226 7.10482 1.82004 keV
-Vertex : 0.105593 0.0182125 -1.24052 m    Global time : 4.27701 ns 
+Original momentum : 11.2289 -47.4137 -3.2312 keV
+Vertex : -0.61174 -0.107931 -2.67625 m    Global time : 9.67857 ns 
   Current trajectory has 2 points.
-Point[0] Position= (105.593,18.2125,-1240.52)
-Point[1] Position= (105.684,18.2259,-1240.51)
+Point[0] Position= (-611.74,-107.931,-2676.25)
+Point[1] Position= (-611.72,-108.019,-2676.25)
 
-TrackID =155 : ParentID=64 : TrackStatus=1
+TrackID =95 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.8739 -23.7744 -5.17592 keV
-Vertex : 0.102499 0.017636 -1.20424 m    Global time : 4.15192 ns 
+Original momentum : 35.6469 -25.1242 -9.32333 keV
+Vertex : -0.609735 -0.107585 -2.66755 m    Global time : 9.64711 ns 
   Current trajectory has 2 points.
-Point[0] Position= (102.499,17.636,-1204.24)
-Point[1] Position= (102.452,17.6039,-1204.25)
+Point[0] Position= (-609.735,-107.585,-2667.55)
+Point[1] Position= (-609.682,-107.622,-2667.57)
 
-TrackID =154 : ParentID=64 : TrackStatus=1
+TrackID =94 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 55.3584 -97.9841 -9.4907 keV
-Vertex : 7.74698 1.30741 -91.0604 cm   Global time : 3.13951 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (77.4698,13.0741,-910.604)
-Point[1] Position= (78.1832,11.8114,-910.727)
-Point[2] Position= (78.1749,11.7218,-910.298)
+Original momentum : 39.8857 -12.187 -10.6715 keV
+Vertex : -0.605736 -0.106893 -2.6502 m    Global time : 9.58434 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-605.736,-106.893,-2650.2)
+Point[1] Position= (-605.68,-106.91,-2650.22)
 
-TrackID =153 : ParentID=64 : TrackStatus=1
+TrackID =93 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.0649 -1.81293 1.69676 keV
-Vertex : 4.42869 0.740929 -52.0775 cm   Global time : 1.79547 ns 
+Original momentum : -15.9591 30.5104 1.19557 keV
+Vertex : -0.588064 -0.103823 -2.57356 m    Global time : 9.30702 ns 
   Current trajectory has 2 points.
-Point[0] Position= (44.2869,7.40929,-520.775)
-Point[1] Position= (44.3152,7.40778,-520.774)
+Point[0] Position= (-588.064,-103.823,-2573.56)
+Point[1] Position= (-588.077,-103.797,-2573.56)
 
-TrackID =152 : ParentID=64 : TrackStatus=1
+TrackID =92 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.9224 21.1393 -3.31894 keV
-Vertex : 3.01346 0.4992 -35.4451 cm   Global time : 1.22203 ns 
+Original momentum : 7.30552 112.404 -19.9138 keV
+Vertex : -0.579023 -0.102248 -2.53438 m    Global time : 9.16524 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-579.023,-102.248,-2534.38)
+Point[1] Position= (-578.927,-100.771,-2534.64)
+Point[2] Position= (-578.658,-100.955,-2535.48)
+Point[3] Position= (-578.522,-100.888,-2535.39)
+
+TrackID =91 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 24.5179 -50.8516 -7.03726 keV
+Vertex : -0.542671 -0.0959782 -2.37664 m    Global time : 8.59455 ns 
   Current trajectory has 2 points.
-Point[0] Position= (30.1346,4.992,-354.451)
-Point[1] Position= (30.1099,5.01073,-354.454)
+Point[0] Position= (-542.671,-95.9782,-2376.64)
+Point[1] Position= (-542.605,-96.1147,-2376.66)
 
-TrackID =151 : ParentID=64 : TrackStatus=1
+TrackID =90 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -63.9595 -28.3168 -10.865 keV
-Vertex : 0.820124 0.132339 -9.64339 cm   Global time : 332.471 ps 
+Original momentum : 28.6885 11.523 -8.11595 keV
+Vertex : -0.477197 -0.0846315 -2.09164 m    Global time : 7.56359 ns 
   Current trajectory has 2 points.
-Point[0] Position= (8.20124,1.32339,-96.4339)
-Point[1] Position= (7.90565,1.19252,-96.4841)
+Point[0] Position= (-477.197,-84.6315,-2091.64)
+Point[1] Position= (-477.177,-84.6232,-2091.65)
 
-TrackID =150 : ParentID=64 : TrackStatus=1
+TrackID =89 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.4924 79.2278 -9.11503 keV
-Vertex : 0.164087 0.0268785 -1.92726 mm   Global time : 6.64459 ps 
+Original momentum : -27.9657 16.4385 4.618 keV
+Vertex : -0.456244 -0.0810184 -2.00029 m    Global time : 7.23316 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-456.244,-81.0184,-2000.29)
+Point[1] Position= (-456.265,-81.0059,-2000.29)
+
+TrackID =88 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -15.8864 84.0388 -7.47945 keV
+Vertex : -0.448332 -0.0796376 -1.96577 m    Global time : 7.10829 ns 
   Current trajectory has 3 points.
-Point[0] Position= (0.164087,0.0268785,-1.92726)
-Point[1] Position= (-0.0823248,0.627717,-1.99638)
-Point[2] Position= (-0.048382,0.632096,-1.95938)
+Point[0] Position= (-448.332,-79.6376,-1965.77)
+Point[1] Position= (-448.451,-79.005,-1965.83)
+Point[2] Position= (-448.445,-79.0113,-1965.84)
 
-TrackID =63 : ParentID=62 : TrackStatus=1
-Particle name : eta  PDG code : 221  Charge : 0
-Original momentum : -0.664408 0.0949851 -2.08414 GeV
-Vertex : -1.88943e-295 -1.54061e-296 1.33116e-293 fm   Global time : 6.40539e-305 ps 
+TrackID =87 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 25.558 32.8676 -9.09339 keV
+Vertex : -0.415486 -0.0738439 -1.82237 m    Global time : 6.58962 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.88943e-307,-1.54061e-308,1.33116e-305)
-Point[1] Position= (-2.01373e-307,-1.36292e-308,1.32726e-305)
+Point[0] Position= (-415.486,-73.8439,-1822.37)
+Point[1] Position= (-415.451,-73.7993,-1822.38)
 
-TrackID =212 : ParentID=63 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : -0.418481 0.0318667 -1.21085 GeV
-Vertex : -2.01373e-295 -1.36292e-296 1.32726e-293 fm   Global time : 6.41947e-305 ps 
+TrackID =86 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 11.2015 44.5632 -6.63806 keV
+Vertex : -0.415144 -0.0737835 -1.82087 m    Global time : 6.58421 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-2.01373e-307,-1.36292e-308,1.32726e-305)
-Point[1] Position= (-6.64696e-06,5.06156e-07,-1.92327e-05)
+Point[0] Position= (-415.144,-73.7835,-1820.87)
+Point[1] Position= (-415.126,-73.7101,-1820.89)
 
-TrackID =211 : ParentID=63 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : -54.5798 -36.0741 -452.091 MeV
-Vertex : -2.01373e-295 -1.36292e-296 1.32726e-293 fm   Global time : 6.41947e-305 ps 
+TrackID =85 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -65.5895 -28.8224 10.6233 keV
+Vertex : -0.404428 -0.071897 -1.77398 m    Global time : 6.41463 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-2.01373e-307,-1.36292e-308,1.32726e-305)
-Point[1] Position= (-1.34265e-06,-8.87418e-07,-1.11214e-05)
+Point[0] Position= (-404.428,-71.897,-1773.98)
+Point[1] Position= (-404.749,-72.0382,-1773.93)
 
-TrackID =210 : ParentID=63 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : -191.45 99.2076 -421.52 MeV
-Vertex : -2.01373e-295 -1.36292e-296 1.32726e-293 fm   Global time : 6.41947e-305 ps 
+TrackID =84 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 51.0502 -30.1414 -14.4228 keV
+Vertex : -0.390677 -0.069464 -1.71395 m    Global time : 6.19748 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-2.01373e-307,-1.36292e-308,1.32726e-305)
-Point[1] Position= (-1.37196e-05,7.10937e-06,-3.02068e-05)
+Point[0] Position= (-390.677,-69.464,-1713.95)
+Point[1] Position= (-390.514,-69.5601,-1713.99)
 
-TrackID =61 : ParentID=45 : TrackStatus=1
-Particle name : unknown : rho0  PDG code : 113  Charge : 0
-Original momentum : 1.23387 -0.154778 1.10659 GeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+TrackID =83 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 20.52 -26.2958 -4.84551 keV
+Vertex : -0.386597 -0.0687457 -1.69615 m    Global time : 6.1331 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (4.76184e-306,-6.36415e-307,1.77731e-305)
+Point[0] Position= (-386.597,-68.7457,-1696.15)
+Point[1] Position= (-386.581,-68.7669,-1696.15)
 
-TrackID =223 : ParentID=220 : TrackStatus=1
+TrackID =82 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 102.04 84.7872 -37.3493 keV
-Vertex : 43.1506 -17.0985 46.3098 cm   Global time : 2.20554 ns 
-  Current trajectory has 7 points.
-Point[0] Position= (431.506,-170.985,463.098)
-Point[1] Position= (432.451,-170.199,462.752)
-Point[2] Position= (432.865,-169.832,461.974)
-Point[3] Position= (432.83,-169.22,461.096)
-Point[4] Position= (432.828,-169.234,461.104)
-Point[5] Position= (432.713,-169.834,461.43)
-Point[6] Position= (432.563,-169.968,461.57)
+Original momentum : 31.5252 25.5676 -10.0578 keV
+Vertex : -0.337157 -0.0601058 -1.47969 m    Global time : 5.35032 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-337.157,-60.1058,-1479.69)
+Point[1] Position= (-337.116,-60.0726,-1479.7)
 
-TrackID =225 : ParentID=223 : TrackStatus=1
+TrackID =81 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.4201 5.03076 32.2892 keV
-Vertex : 43.2713 -16.9834 46.143 cm   Global time : 2.26265 ns 
+Original momentum : -18.7926 26.5287 2.09726 keV
+Vertex : -0.298035 -0.053305 -1.308 m    Global time : 4.72952 ns 
   Current trajectory has 2 points.
-Point[0] Position= (432.713,-169.834,461.43)
-Point[1] Position= (432.735,-169.83,461.458)
+Point[0] Position= (-298.035,-53.305,-1308)
+Point[1] Position= (-298.049,-53.2851,-1308)
 
-TrackID =224 : ParentID=223 : TrackStatus=1
+TrackID =80 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.0657 -25.7857 -1.14223 keV
-Vertex : 43.2451 -17.0199 46.2752 cm   Global time : 2.2219 ns 
+Original momentum : -1.61562 -50.3449 -0.303748 keV
+Vertex : -0.271039 -0.048604 -1.18957 m    Global time : 4.30128 ns 
   Current trajectory has 2 points.
-Point[0] Position= (432.451,-170.199,462.752)
-Point[1] Position= (432.464,-170.214,462.751)
+Point[0] Position= (-271.039,-48.604,-1189.57)
+Point[1] Position= (-271.042,-48.7046,-1189.57)
 
-TrackID =222 : ParentID=220 : TrackStatus=1
+TrackID =79 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.02572 36.2366 20.5153 keV
-Vertex : 19.9392 -7.88733 21.3656 cm   Global time : 1.01822 ns 
+Original momentum : 32.1412 26.1526 -10.3227 keV
+Vertex : -0.263248 -0.0472343 -1.15543 m    Global time : 4.17785 ns 
   Current trajectory has 2 points.
-Point[0] Position= (199.392,-78.8733,213.656)
-Point[1] Position= (199.387,-78.8406,213.674)
+Point[0] Position= (-263.248,-47.2343,-1155.43)
+Point[1] Position= (-263.204,-47.1987,-1155.45)
 
-TrackID =221 : ParentID=220 : TrackStatus=1
+TrackID =78 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.8808 -31.4277 -28.8202 keV
-Vertex : 7.87314 -3.11443 8.43524 mm   Global time : 40.2026 ps 
-  Current trajectory has 2 points.
-Point[0] Position= (7.87314,-3.11443,8.43524)
-Point[1] Position= (7.91199,-3.17024,8.38407)
+Original momentum : -43.6243 121.031 -12.3376 keV
+Vertex : -0.248471 -0.044633 -1.09066 m    Global time : 3.94363 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (-248.471,-44.633,-1090.66)
+Point[1] Position= (-249.155,-42.7349,-1090.86)
+Point[2] Position= (-248.853,-41.2904,-1090.77)
+Point[3] Position= (-249.371,-40.5132,-1091.29)
+Point[4] Position= (-249.154,-40.0386,-1091.4)
+Point[5] Position= (-249.16,-40.0285,-1091.39)
 
-TrackID =230 : ParentID=226 : TrackStatus=1
+TrackID =77 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 64.1107 -39.963 -14.0456 keV
-Vertex : 31.9685 37.6972 -28.7676 cm   Global time : 1.91143 ns 
+Original momentum : -14.2063 -53.8209 2.11579 keV
+Vertex : -0.243428 -0.0437504 -1.06854 m    Global time : 3.86363 ns 
   Current trajectory has 2 points.
-Point[0] Position= (319.685,376.972,-287.676)
-Point[1] Position= (319.898,376.839,-287.722)
+Point[0] Position= (-243.428,-43.7504,-1068.54)
+Point[1] Position= (-243.464,-43.8877,-1068.53)
 
-TrackID =229 : ParentID=226 : TrackStatus=1
+TrackID =76 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -17.5274 -2.31065 -35.3418 keV
-Vertex : 30.4106 35.181 -27.6846 cm   Global time : 1.80629 ns 
+Original momentum : -25.062 30.8581 2.81051 keV
+Vertex : -22.4522 -4.04207 -98.5721 cm   Global time : 3.56416 ns 
   Current trajectory has 2 points.
-Point[0] Position= (304.106,351.81,-276.846)
-Point[1] Position= (304.092,351.808,-276.874)
+Point[0] Position= (-224.522,-40.4207,-985.721)
+Point[1] Position= (-224.543,-40.3953,-985.719)
+
+TrackID =75 : ParentID=65 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 52.842 -108.454 -23.5523 keV
+Vertex : -21.9629 -3.95667 -96.4321 cm   Global time : 3.48676 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (-219.629,-39.5667,-964.321)
+Point[1] Position= (-219.469,-39.8952,-964.392)
+Point[2] Position= (-219.157,-40.1311,-965.105)
+Point[3] Position= (-218.908,-40.1345,-964.665)
+Point[4] Position= (-218.958,-40.1009,-964.598)
 
-TrackID =228 : ParentID=226 : TrackStatus=1
+TrackID =272 : ParentID=75 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.2977 24.4701 13.3525 keV
-Vertex : 30.0687 34.6397 -27.4449 cm   Global time : 1.78348 ns 
+Original momentum : -4.54677 32.7315 -19.5596 keV
+Vertex : -21.8908 -4.01345 -96.4665 cm   Global time : 3.51433 ns 
   Current trajectory has 2 points.
-Point[0] Position= (300.687,346.397,-274.449)
-Point[1] Position= (300.667,346.416,-274.439)
+Point[0] Position= (-218.908,-40.1345,-964.665)
+Point[1] Position= (-218.911,-40.1093,-964.68)
 
-TrackID =216 : ParentID=211 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : -9.59254 42.8405 -261.986 MeV
-Vertex : -1.34265 -0.887418 -11.1214 nm   Global time : 3.90867e-05 ps 
+TrackID =271 : ParentID=75 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -12.9331 -48.8025 10.1845 keV
+Vertex : -21.9469 -3.98952 -96.4392 cm   Global time : 3.49207 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.34265e-06,-8.87418e-07,-1.11214e-05)
-Point[1] Position= (-219.688,981.133,-6000)
+Point[0] Position= (-219.469,-39.8952,-964.392)
+Point[1] Position= (-219.487,-39.9621,-964.378)
 
-TrackID =242 : ParentID=219 : TrackStatus=1
+TrackID =74 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.529 -10.8994 -13.3138 keV
-Vertex : 8.82425 43.5252 -21.4588 cm   Global time : 1.98745 ns 
+Original momentum : -29.0342 -16.7483 6.08606 keV
+Vertex : -20.256 -3.65639 -88.9653 cm   Global time : 3.21674 ns 
   Current trajectory has 2 points.
-Point[0] Position= (88.2425,435.252,-214.588)
-Point[1] Position= (88.2655,435.245,-214.598)
+Point[0] Position= (-202.56,-36.5639,-889.653)
+Point[1] Position= (-202.577,-36.5741,-889.65)
 
-TrackID =241 : ParentID=219 : TrackStatus=1
+TrackID =73 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.6222 4.01243 14.8395 keV
-Vertex : 8.44851 41.4154 -20.3535 cm   Global time : 1.889 ns 
+Original momentum : 21.3105 -26.9321 -5.02026 keV
+Vertex : -16.9773 -3.06407 -74.5951 cm   Global time : 2.69708 ns 
   Current trajectory has 2 points.
-Point[0] Position= (84.4851,414.154,-203.535)
-Point[1] Position= (84.5024,414.157,-203.526)
+Point[0] Position= (-169.773,-30.6407,-745.951)
+Point[1] Position= (-169.755,-30.6639,-745.956)
 
-TrackID =240 : ParentID=219 : TrackStatus=1
+TrackID =72 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.5183 -22.0333 -36.7594 keV
-Vertex : 8.42167 41.2653 -20.2748 cm   Global time : 1.88199 ns 
+Original momentum : -27.3126 -20.8828 5.80627 keV
+Vertex : -16.9409 -3.05745 -74.4353 cm   Global time : 2.6913 ns 
   Current trajectory has 2 points.
-Point[0] Position= (84.2167,412.653,-202.748)
-Point[1] Position= (84.3067,412.608,-202.822)
+Point[0] Position= (-169.409,-30.5745,-744.353)
+Point[1] Position= (-169.432,-30.5926,-744.348)
 
-TrackID =239 : ParentID=219 : TrackStatus=1
+TrackID =71 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -65.7929 19.8668 4.1112 keV
-Vertex : 7.95551 38.6101 -18.8704 cm   Global time : 1.75811 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (79.5551,386.101,-188.704)
-Point[1] Position= (79.4674,386.127,-188.699)
-Point[2] Position= (79.4228,386.07,-188.718)
+Original momentum : 21.1243 33.8469 -7.94991 keV
+Vertex : -14.5823 -2.63027 -64.0816 cm   Global time : 2.31693 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-145.823,-26.3027,-640.816)
+Point[1] Position= (-145.797,-26.2614,-640.826)
 
-TrackID =243 : ParentID=239 : TrackStatus=1
+TrackID =70 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.3994 4.39834 32.6167 keV
-Vertex : 7.94674 38.6127 -18.8699 cm   Global time : 1.76041 ns 
+Original momentum : 31.7778 9.84133 -8.88839 keV
+Vertex : -13.6204 -2.45585 -59.8528 cm   Global time : 2.16403 ns 
   Current trajectory has 2 points.
-Point[0] Position= (79.4674,386.127,-188.699)
-Point[1] Position= (79.4526,386.131,-188.674)
+Point[0] Position= (-136.204,-24.5585,-598.528)
+Point[1] Position= (-136.177,-24.5502,-598.536)
 
-TrackID =238 : ParentID=219 : TrackStatus=1
+TrackID =69 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.7332 -15.6595 -46.1729 keV
-Vertex : 6.59413 31.0392 -14.8909 cm   Global time : 1.40691 ns 
+Original momentum : 26.4741 34.3015 -9.53604 keV
+Vertex : -11.0575 -1.99057 -48.5852 cm   Global time : 1.75664 ns 
   Current trajectory has 2 points.
-Point[0] Position= (65.9413,310.392,-148.909)
-Point[1] Position= (65.9049,310.368,-148.98)
+Point[0] Position= (-110.575,-19.9057,-485.852)
+Point[1] Position= (-110.536,-19.8548,-485.867)
 
-TrackID =237 : ParentID=219 : TrackStatus=1
+TrackID =68 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 87.9362 -9.72301 -6.37013 keV
-Vertex : 6.42262 30.1526 -14.4256 cm   Global time : 1.36581 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (64.2262,301.526,-144.256)
-Point[1] Position= (64.6326,301.481,-144.286)
-Point[2] Position= (64.5926,301.435,-144.235)
-Point[3] Position= (64.5942,301.431,-144.236)
+Original momentum : -20.1988 -25.2628 4.50185 keV
+Vertex : -4.61913 -0.828438 -20.2908 cm   Global time : 733.633 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (-46.1913,-8.28438,-202.908)
+Point[1] Position= (-46.2066,-8.30344,-202.904)
 
-TrackID =236 : ParentID=219 : TrackStatus=1
+TrackID =67 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.242 -4.20177 2.56752 keV
-Vertex : 4.64632 21.9523 -10.3897 cm   Global time : 991.341 ps 
+Original momentum : 45.7809 9.30893 -13.3091 keV
+Vertex : -4.32808 -0.776519 -19.0141 cm   Global time : 687.472 ps 
   Current trajectory has 2 points.
-Point[0] Position= (46.4632,219.523,-103.897)
-Point[1] Position= (46.4813,219.52,-103.896)
+Point[0] Position= (-43.2808,-7.76519,-190.141)
+Point[1] Position= (-43.1969,-7.74813,-190.166)
 
-TrackID =235 : ParentID=219 : TrackStatus=1
+TrackID =66 : ParentID=65 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.3302 0.470225 -15.8476 keV
-Vertex : 3.2651 15.4371 -7.30226 cm   Global time : 697.029 ps 
+Original momentum : -41.2425 19.3092 6.36834 keV
+Vertex : -3.44331 -0.618328 -15.1278 cm   Global time : 546.957 ps 
   Current trajectory has 2 points.
-Point[0] Position= (32.651,154.371,-73.0226)
-Point[1] Position= (32.6257,154.372,-73.0359)
+Point[0] Position= (-34.4331,-6.18328,-151.278)
+Point[1] Position= (-34.4996,-6.15216,-151.268)
+
+TrackID =201 : ParentID=115 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : -1.3408 1.07664 1.76863 keV
+Vertex : -4.65555 3.74686 -4.19241 m    Global time : 37.9781 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4655.55,3746.86,-4192.41)
+Point[1] Position= (-4660.83,3751.1,-4185.44)
+
+TrackID =64 : ParentID=62 : TrackStatus=1
+Particle name : pi+  PDG code : 211  Charge : 1
+Original momentum : 48.1834 7.89272 -565.929 MeV
+Vertex : -1.88943e-295 -1.54061e-296 1.33116e-293 fm   Global time : 6.40539e-305 ps 
+  Current trajectory has 54 points.
+Point[0] Position= (-1.88943e-307,-1.54061e-308,1.33116e-305)
+Point[1] Position= (2.14536,0.350995,-25.1944)
+Point[2] Position= (15.7791,2.5546,-185.106)
+Point[3] Position= (47.6472,7.61477,-558.058)
+Point[4] Position= (51.9746,8.31676,-608.581)
+Point[5] Position= (52.4472,8.39359,-614.098)
+Point[6] Position= (73.5139,11.8473,-859.984)
+Point[7] Position= (88.7283,14.3586,-1038.68)
+Point[8] Position= (107.013,17.3244,-1253.78)
+Point[9] Position= (123.943,20.1596,-1452.62)
+Point[10] Position= (125.816,20.4788,-1474.68)
+Point[11] Position= (129.631,21.132,-1519.56)
+Point[12] Position= (137.08,22.4108,-1607.21)
+Point[13] Position= (147.393,24.236,-1728.49)
+Point[14] Position= (163.854,27.2439,-1922.83)
+Point[15] Position= (191.192,32.2465,-2247.73)
+Point[16] Position= (195.049,32.9556,-2293.73)
+Point[17] Position= (212.959,36.307,-2507.38)
+Point[18] Position= (214.353,36.575,-2523.99)
+Point[19] Position= (227.528,39.0937,-2680.83)
+Point[20] Position= (232.592,40.0467,-2741.01)
+Point[21] Position= (258.904,45.0146,-3053.64)
+Point[22] Position= (280.939,49.1836,-3314.43)
+Point[23] Position= (282.058,49.3984,-3327.67)
+Point[24] Position= (292.793,51.4348,-3455.04)
+Point[25] Position= (302.682,53.2856,-3572.4)
+Point[26] Position= (303.391,53.4204,-3580.79)
+Point[27] Position= (309.777,54.6343,-3656.48)
+Point[28] Position= (313.683,55.3774,-3703.08)
+Point[29] Position= (328.655,58.2614,-3882.61)
+Point[30] Position= (329.899,58.5039,-3897.57)
+Point[31] Position= (345.807,61.5825,-4088.43)
+Point[32] Position= (347.644,61.9336,-4110.46)
+Point[33] Position= (367.266,65.7847,-4345.26)
+Point[34] Position= (387.241,69.8093,-4584.45)
+Point[35] Position= (392.841,70.9486,-4651.41)
+Point[36] Position= (393.193,71.0207,-4655.63)
+Point[37] Position= (413.457,75.1955,-4898.76)
+Point[38] Position= (418.183,76.1762,-4955.43)
+Point[39] Position= (420.183,76.5879,-4979.46)
+Point[40] Position= (431.125,78.8162,-5111.06)
+Point[41] Position= (431.47,78.8876,-5115.19)
+Point[42] Position= (440.07,80.685,-5218.53)
+Point[43] Position= (445.584,81.8457,-5284.65)
+Point[44] Position= (452.12,83.2204,-5363.08)
+Point[45] Position= (458.457,84.547,-5439.27)
+Point[46] Position= (459.459,84.7541,-5451.32)
+Point[47] Position= (461.129,85.0976,-5471.35)
+Point[48] Position= (476.81,88.2879,-5659.48)
+Point[49] Position= (479.084,88.7509,-5686.81)
+Point[50] Position= (487.323,90.3641,-5785.97)
+Point[51] Position= (495.802,91.9403,-5888.23)
+Point[52] Position= (495.995,91.9762,-5890.58)
+Point[53] Position= (505.044,93.6561,-6000)
+
+TrackID =323 : ParentID=64 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 35.9335 -4.39635 1.57904 keV
+Vertex : 0.495995 0.0919762 -5.89058 m    Global time : 20.3089 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (495.995,91.9762,-5890.58)
+Point[1] Position= (496.029,91.9721,-5890.58)
+
+TrackID =322 : ParentID=64 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 20.9117 24.4363 1.06083 keV
+Vertex : 0.495802 0.0919403 -5.88823 m    Global time : 20.3009 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (495.802,91.9403,-5888.23)
+Point[1] Position= (495.817,91.9582,-5888.23)
+
+TrackID =321 : ParentID=64 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 139.15 314.705 -100.479 keV
+Vertex : 0.487323 0.0903641 -5.78597 m    Global time : 19.9483 ns 
+  Current trajectory has 16 points.
+Point[0] Position= (487.323,90.3641,-5785.97)
+Point[1] Position= (514.666,115.72,-5806.99)
+Point[2] Position= (532.457,136.113,-5819.04)
+Point[3] Position= (533.754,137.438,-5819.75)
+Point[4] Position= (540.453,146.567,-5823.12)
+Point[5] Position= (545.937,155.905,-5821.56)
+Point[6] Position= (544.193,167.445,-5817.12)
+Point[7] Position= (544.161,168.652,-5815.07)
+Point[8] Position= (540.539,173.977,-5805.97)
+Point[9] Position= (532.177,177.223,-5803.78)
+Point[10] Position= (530.644,182.121,-5798.95)
+Point[11] Position= (529.207,184.029,-5797.21)
+Point[12] Position= (528.871,184.697,-5795.08)
+Point[13] Position= (528.418,184.899,-5795.46)
+Point[14] Position= (528.206,185.065,-5795.92)
+Point[15] Position= (527.894,185.174,-5796.16)
+
+TrackID =331 : ParentID=321 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 24.4627 6.13645 -29.9611 keV
+Vertex : 0.528206 0.185065 -5.79592 m    Global time : 20.9352 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (528.206,185.065,-5795.92)
+Point[1] Position= (528.233,185.072,-5795.96)
+
+TrackID =330 : ParentID=321 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -36.8383 4.06545 18.0874 keV
+Vertex : 0.528418 0.184899 -5.79546 m    Global time : 20.9251 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (528.418,184.899,-5795.46)
+Point[1] Position= (528.371,184.904,-5795.43)
+
+TrackID =329 : ParentID=321 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -90.4833 -72.5539 8.07922 keV
+Vertex : 0.530644 0.182121 -5.79895 m    Global time : 20.8508 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (530.644,182.121,-5798.95)
+Point[1] Position= (529.426,181.144,-5798.84)
+Point[2] Position= (529.668,181.075,-5798.84)
+Point[3] Position= (529.878,180.911,-5798.75)
 
-TrackID =234 : ParentID=219 : TrackStatus=1
+TrackID =332 : ParentID=329 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.47508 22.88 44.5493 keV
-Vertex : 2.18838 10.3558 -4.89809 cm   Global time : 467.56 ps 
+Original momentum : 33.5866 27.9125 -28.38 keV
+Vertex : 0.529668 0.181075 -5.79884 m    Global time : 20.8793 ns 
   Current trajectory has 2 points.
-Point[0] Position= (21.8838,103.558,-48.9809)
-Point[1] Position= (21.8989,103.604,-48.8907)
+Point[0] Position= (529.668,181.075,-5798.84)
+Point[1] Position= (529.741,181.135,-5798.9)
 
-TrackID =233 : ParentID=219 : TrackStatus=1
+TrackID =328 : ParentID=321 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -77.6322 48.7905 40.5666 keV
-Vertex : 1.55 7.3431 -3.47292 cm   Global time : 331.517 ps 
-  Current trajectory has 3 points.
-Point[0] Position= (15.5,73.431,-34.7292)
-Point[1] Position= (14.6815,73.9455,-34.3015)
-Point[2] Position= (14.4427,73.7417,-34.5894)
+Original momentum : 31.0478 16.0053 3.32146 keV
+Vertex : 0.544161 0.168652 -5.81507 m    Global time : 20.6255 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (544.161,168.652,-5815.07)
+Point[1] Position= (544.188,168.666,-5815.07)
 
-TrackID =232 : ParentID=219 : TrackStatus=1
+TrackID =327 : ParentID=321 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.6707 20.7101 45.0289 keV
-Vertex : 1.36098 6.44831 -3.05012 cm   Global time : 291.124 ps 
+Original momentum : -38.4638 69.3751 -39.5133 keV
+Vertex : 0.544193 0.167445 -5.81712 m    Global time : 20.6072 ns 
   Current trajectory has 3 points.
-Point[0] Position= (13.6098,64.4831,-30.5012)
-Point[1] Position= (13.6572,64.5305,-30.3981)
-Point[2] Position= (13.6581,64.524,-30.3967)
+Point[0] Position= (544.193,167.445,-5817.12)
+Point[1] Position= (543.881,168.008,-5817.44)
+Point[2] Position= (543.835,168.104,-5817.47)
 
-TrackID =231 : ParentID=219 : TrackStatus=1
+TrackID =326 : ParentID=321 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.761 -29.3964 -95.5729 keV
-Vertex : 1.16267 5.50972 -2.60679 cm   Global time : 248.757 ps 
-  Current trajectory has 4 points.
-Point[0] Position= (11.6267,55.0972,-26.0679)
-Point[1] Position= (11.5018,54.7849,-27.0834)
-Point[2] Position= (11.5746,54.8496,-27.2994)
-Point[3] Position= (11.5804,54.7868,-27.2786)
+Original momentum : 64.134 5.4439 14.0402 keV
+Vertex : 0.545937 0.155905 -5.82156 m    Global time : 20.5194 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (545.937,155.905,-5821.56)
+Point[1] Position= (546.185,155.926,-5821.5)
 
-TrackID =244 : ParentID=231 : TrackStatus=1
+TrackID =325 : ParentID=321 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.2235 -9.21439 -30.8049 keV
-Vertex : 1.15746 5.48496 -2.72994 cm   Global time : 272.992 ps 
+Original momentum : 14.6824 -13.3163 30.5277 keV
+Vertex : 0.540453 0.146567 -5.82312 m    Global time : 20.4459 ns 
   Current trajectory has 2 points.
-Point[0] Position= (11.5746,54.8496,-27.2994)
-Point[1] Position= (11.5839,54.842,-27.3248)
+Point[0] Position= (540.453,146.567,-5823.12)
+Point[1] Position= (540.467,146.554,-5823.09)
 
-TrackID =60 : ParentID=45 : TrackStatus=1
-Particle name : unknown : omega  PDG code : 223  Charge : 0
-Original momentum : -694.865 238.015 909.667 MeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+TrackID =324 : ParentID=321 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 25.5427 -23.4856 -14.1927 keV
+Vertex : 0.533754 0.137438 -5.81975 m    Global time : 20.369 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (-4.14712e-306,1.34179e-306,1.85287e-305)
+Point[0] Position= (533.754,137.438,-5819.75)
+Point[1] Position= (533.78,137.414,-5819.77)
 
-TrackID =245 : ParentID=60 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : -485.715 276.92 118.38 MeV
-Vertex : -4.14712e-294 1.34179e-294 1.85287e-293 fm   Global time : 9.07189e-305 ps 
-  Current trajectory has 2 points.
-Point[0] Position= (-4.14712e-306,1.34179e-306,1.85287e-305)
-Point[1] Position= (-2.32414e-06,1.32506e-06,5.66447e-07)
+TrackID =320 : ParentID=64 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 97.3512 129.295 -15.8378 keV
+Vertex : 0.479084 0.0887509 -5.68681 m    Global time : 19.6064 ns 
+  Current trajectory has 7 points.
+Point[0] Position= (479.084,88.7509,-5686.81)
+Point[1] Position= (480.007,89.9764,-5686.96)
+Point[2] Position= (480.84,90.7414,-5686.9)
+Point[3] Position= (482.835,91.7912,-5686.2)
+Point[4] Position= (484.352,92.3576,-5685.92)
+Point[5] Position= (484.876,92.9087,-5686.17)
+Point[6] Position= (484.918,92.8792,-5685.95)
 
-TrackID =59 : ParentID=45 : TrackStatus=1
-Particle name : eta  PDG code : 221  Charge : 0
-Original momentum : -0.0908679 0.00596782 1.11738 GeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+TrackID =334 : ParentID=320 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 9.30999 14.4556 -46.8033 keV
+Vertex : 0.48084 0.0907414 -5.6869 m    Global time : 19.6368 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (-1.8367e-307,-1.61085e-308,1.33512e-305)
+Point[0] Position= (480.84,90.7414,-5686.9)
+Point[1] Position= (480.858,90.7696,-5686.99)
 
-TrackID =251 : ParentID=59 : TrackStatus=1
-Particle name : pi-  PDG code : -211  Charge : -1
-Original momentum : 65.1721 35.0795 314.139 MeV
-Vertex : -1.8367e-295 -1.61085e-296 1.33512e-293 fm   Global time : 6.40032e-305 ps 
-  Current trajectory has 32 points.
-Point[0] Position= (-1.8367e-307,-1.61085e-308,1.33512e-305)
-Point[1] Position= (55.2582,29.7148,265.569)
-Point[2] Position= (89.938,48.2028,431.273)
-Point[3] Position= (95.9467,51.4019,459.96)
-Point[4] Position= (112.584,60.275,539.398)
-Point[5] Position= (117.042,62.6529,560.703)
-Point[6] Position= (143.754,76.8373,688.259)
-Point[7] Position= (153.724,82.1037,735.822)
-Point[8] Position= (176.48,94.1005,844.319)
-Point[9] Position= (193.395,103.041,925.191)
-Point[10] Position= (202.02,107.591,966.453)
-Point[11] Position= (209.044,111.303,1000)
-Point[12] Position= (217.808,115.929,1041.83)
-Point[13] Position= (247.67,131.615,1184.57)
-Point[14] Position= (309.773,163.948,1481.44)
-Point[15] Position= (331.191,175.16,1584.01)
-Point[16] Position= (384.605,203.418,1840.99)
-Point[17] Position= (397.469,210.217,1902.97)
-Point[18] Position= (408.446,216.062,1955.87)
-Point[19] Position= (424.348,224.593,2032.64)
-Point[20] Position= (441.237,233.638,2114.13)
-Point[21] Position= (474.689,251.522,2275.52)
-Point[22] Position= (478.552,253.579,2294.15)
-Point[23] Position= (482.496,255.685,2313.17)
-Point[24] Position= (509.365,270.06,2442.71)
-Point[25] Position= (515.297,273.246,2471.32)
-Point[26] Position= (540.473,286.763,2592.88)
-Point[27] Position= (577.996,307.031,2774.15)
-Point[28] Position= (579.253,307.709,2780.22)
-Point[29] Position= (591.045,314.086,2837.25)
-Point[30] Position= (606.512,322.441,2912.05)
-Point[31] Position= (616.594,327.865,2960.73)
+TrackID =333 : ParentID=320 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 25.0326 -25.42 -18.9706 keV
+Vertex : 0.480007 0.0899764 -5.68696 m    Global time : 19.6234 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (480.007,89.9764,-5686.96)
+Point[1] Position= (480.037,89.9458,-5686.98)
 
-TrackID =277 : ParentID=251 : TrackStatus=1
+TrackID =319 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.450723 -32.4837 4.71144 keV
-Vertex : 0.606512 0.322441 2.91205 m    Global time : 10.8761 ns 
+Original momentum : -17.0311 32.6151 -2.23746 keV
+Vertex : 0.47681 0.0882879 -5.65948 m    Global time : 19.5122 ns 
   Current trajectory has 2 points.
-Point[0] Position= (606.512,322.441,2912.05)
-Point[1] Position= (606.512,322.416,2912.06)
+Point[0] Position= (476.81,88.2879,-5659.48)
+Point[1] Position= (476.793,88.32,-5659.48)
 
-TrackID =276 : ParentID=251 : TrackStatus=1
+TrackID =318 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.55334 68.6658 -2.84518 keV
-Vertex : 0.591045 0.314086 2.83725 m    Global time : 10.5967 ns 
+Original momentum : 15.6858 39.3865 0.165469 keV
+Vertex : 0.461129 0.0850976 -5.47135 m    Global time : 18.8636 ns 
   Current trajectory has 2 points.
-Point[0] Position= (591.045,314.086,2837.25)
-Point[1] Position= (591.051,314.381,2837.24)
+Point[0] Position= (461.129,85.0976,-5471.35)
+Point[1] Position= (461.15,85.1504,-5471.35)
 
-TrackID =275 : ParentID=251 : TrackStatus=1
+TrackID =317 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.2882 9.19006 -6.4358 keV
-Vertex : 0.579253 0.307709 2.78022 m    Global time : 10.3837 ns 
+Original momentum : -43.6506 7.32412 -5.51513 keV
+Vertex : 0.459459 0.0847541 -5.45132 m    Global time : 18.7945 ns 
   Current trajectory has 2 points.
-Point[0] Position= (579.253,307.709,2780.22)
-Point[1] Position= (579.279,307.717,2780.21)
+Point[0] Position= (459.459,84.7541,-5451.32)
+Point[1] Position= (459.394,84.7651,-5451.33)
 
-TrackID =274 : ParentID=251 : TrackStatus=1
+TrackID =316 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.42407 -36.2641 5.82793 keV
-Vertex : 0.577996 0.307031 2.77415 m    Global time : 10.3611 ns 
+Original momentum : -14.9922 -29.4084 -2.86128 keV
+Vertex : 0.458457 0.084547 -5.43927 m    Global time : 18.753 ns 
   Current trajectory has 2 points.
-Point[0] Position= (577.996,307.031,2774.15)
-Point[1] Position= (577.995,306.995,2774.16)
+Point[0] Position= (458.457,84.547,-5439.27)
+Point[1] Position= (458.445,84.5241,-5439.27)
 
-TrackID =273 : ParentID=251 : TrackStatus=1
+TrackID =315 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.5438 -3.58135 -5.52258 keV
-Vertex : 0.540473 0.286763 2.59288 m    Global time : 9.68406 ns 
+Original momentum : 7.24113 -36.9121 -1.46908 keV
+Vertex : 0.45212 0.0832204 -5.36308 m    Global time : 18.4903 ns 
   Current trajectory has 2 points.
-Point[0] Position= (540.473,286.763,2592.88)
-Point[1] Position= (540.506,286.76,2592.88)
+Point[0] Position= (452.12,83.2204,-5363.08)
+Point[1] Position= (452.128,83.1824,-5363.08)
 
-TrackID =272 : ParentID=251 : TrackStatus=1
+TrackID =314 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.294633 -36.2648 5.44732 keV
-Vertex : 0.509365 0.27006 2.44271 m    Global time : 9.12322 ns 
+Original momentum : 30.9134 -14.5275 1.1399 keV
+Vertex : 0.445584 0.0818457 -5.28465 m    Global time : 18.2199 ns 
   Current trajectory has 2 points.
-Point[0] Position= (509.365,270.06,2442.71)
-Point[1] Position= (509.366,270.025,2442.71)
+Point[0] Position= (445.584,81.8457,-5284.65)
+Point[1] Position= (445.61,81.8337,-5284.65)
 
-TrackID =271 : ParentID=251 : TrackStatus=1
+TrackID =313 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.2676 33.8309 3.19277 keV
-Vertex : 0.482496 0.255685 2.31317 m    Global time : 8.63946 ns 
+Original momentum : -10.8986 -135.04 -21.9854 keV
+Vertex : 0.44007 0.080685 -5.21853 m    Global time : 17.992 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (440.07,80.685,-5218.53)
+Point[1] Position= (439.884,78.3771,-5218.91)
+Point[2] Position= (440.303,76.8952,-5218.95)
+Point[3] Position= (440.044,76.3331,-5218.76)
+Point[4] Position= (440.097,75.9939,-5218.76)
+Point[5] Position= (440.148,75.973,-5218.8)
+
+TrackID =336 : ParentID=313 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 20.4834 -14.1864 32.3325 keV
+Vertex : 0.440097 0.0759939 -5.21876 m    Global time : 18.0647 ns 
   Current trajectory has 2 points.
-Point[0] Position= (482.496,255.685,2313.17)
-Point[1] Position= (482.465,255.729,2313.18)
+Point[0] Position= (440.097,75.9939,-5218.76)
+Point[1] Position= (440.122,75.9765,-5218.72)
 
-TrackID =270 : ParentID=251 : TrackStatus=1
+TrackID =335 : ParentID=313 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.36014 -53.8963 7.53546 keV
-Vertex : 0.478552 0.253579 2.29415 m    Global time : 8.5684 ns 
+Original momentum : 36.195 5.49307 -8.17097 keV
+Vertex : 0.440044 0.0763331 -5.21876 m    Global time : 18.057 ns 
   Current trajectory has 2 points.
-Point[0] Position= (478.552,253.579,2294.15)
-Point[1] Position= (478.572,253.445,2294.17)
+Point[0] Position= (440.044,76.3331,-5218.76)
+Point[1] Position= (440.081,76.3387,-5218.77)
 
-TrackID =269 : ParentID=251 : TrackStatus=1
+TrackID =312 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -69.3787 -31.7205 24.9047 keV
-Vertex : 0.474689 0.251522 2.27552 m    Global time : 8.49885 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (474.689,251.522,2275.52)
-Point[1] Position= (474.283,251.336,2275.67)
-Point[2] Position= (474.277,251.367,2275.68)
+Original momentum : -2.57679 -124.231 -18.0844 keV
+Vertex : 0.43147 0.0788876 -5.11519 m    Global time : 17.6357 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (431.47,78.8876,-5115.19)
+Point[1] Position= (431.431,77.0176,-5115.46)
+Point[2] Position= (431.435,77.009,-5115.47)
+Point[3] Position= (431.863,76.0607,-5115.86)
+Point[4] Position= (432.274,76.0612,-5115.89)
 
-TrackID =280 : ParentID=269 : TrackStatus=1
+TrackID =337 : ParentID=312 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.5633 7.09184 -26.4182 keV
-Vertex : 0.474283 0.251336 2.27567 m    Global time : 8.50896 ns 
+Original momentum : -5.23625 10.0149 -30.4076 keV
+Vertex : 0.431435 0.077009 -5.11547 m    Global time : 17.6623 ns 
   Current trajectory has 2 points.
-Point[0] Position= (474.283,251.336,2275.67)
-Point[1] Position= (474.266,251.342,2275.65)
+Point[0] Position= (431.435,77.009,-5115.47)
+Point[1] Position= (431.431,77.0165,-5115.49)
 
-TrackID =268 : ParentID=251 : TrackStatus=1
+TrackID =311 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.4188 -27.5734 11.341 keV
-Vertex : 0.424348 0.224593 2.03264 m    Global time : 7.59183 ns 
+Original momentum : -43.0554 -4.87033 -5.59699 keV
+Vertex : 0.431125 0.0788162 -5.11106 m    Global time : 17.6214 ns 
   Current trajectory has 2 points.
-Point[0] Position= (424.348,224.593,2032.64)
-Point[1] Position= (424.306,224.556,2032.66)
+Point[0] Position= (431.125,78.8162,-5111.06)
+Point[1] Position= (431.064,78.8092,-5111.07)
 
-TrackID =267 : ParentID=251 : TrackStatus=1
+TrackID =310 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.609 -24.4267 -0.761699 keV
-Vertex : 0.408446 0.216062 1.95587 m    Global time : 7.30513 ns 
+Original momentum : 17.8291 -31.2185 -0.353222 keV
+Vertex : 0.420183 0.0765879 -4.97946 m    Global time : 17.1677 ns 
   Current trajectory has 2 points.
-Point[0] Position= (408.446,216.062,1955.87)
-Point[1] Position= (408.463,216.043,1955.87)
+Point[0] Position= (420.183,76.5879,-4979.46)
+Point[1] Position= (420.2,76.5589,-4979.46)
 
-TrackID =266 : ParentID=251 : TrackStatus=1
+TrackID =309 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.711542 37.6496 -2.44343 keV
-Vertex : 0.397469 0.210217 1.90297 m    Global time : 7.10758 ns 
+Original momentum : 31.8088 -15.1144 1.13552 keV
+Vertex : 0.418183 0.0761762 -4.95543 m    Global time : 17.0849 ns 
   Current trajectory has 2 points.
-Point[0] Position= (397.469,210.217,1902.97)
-Point[1] Position= (397.468,210.256,1902.97)
+Point[0] Position= (418.183,76.1762,-4955.43)
+Point[1] Position= (418.211,76.1628,-4955.43)
 
-TrackID =265 : ParentID=251 : TrackStatus=1
+TrackID =308 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.7019 26.7756 5.00218 keV
-Vertex : 0.384605 0.203418 1.84099 m    Global time : 6.87616 ns 
+Original momentum : -39.8299 -65.0342 -10.3991 keV
+Vertex : 0.413457 0.0751955 -4.89876 m    Global time : 16.8895 ns 
   Current trajectory has 2 points.
-Point[0] Position= (384.605,203.418,1840.99)
-Point[1] Position= (384.569,203.45,1841)
+Point[0] Position= (413.457,75.1955,-4898.76)
+Point[1] Position= (413.229,74.8239,-4898.82)
 
-TrackID =264 : ParentID=251 : TrackStatus=1
+TrackID =307 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.6021 -25.0096 9.04608 keV
-Vertex : 0.331191 0.17516 1.58401 m    Global time : 5.91648 ns 
+Original momentum : 18.0995 -31.7522 -0.381728 keV
+Vertex : 0.393193 0.0710207 -4.65563 m    Global time : 16.0513 ns 
   Current trajectory has 2 points.
-Point[0] Position= (331.191,175.16,1584.01)
-Point[1] Position= (331.17,175.137,1584.02)
+Point[0] Position= (393.193,71.0207,-4655.63)
+Point[1] Position= (393.21,70.9901,-4655.63)
 
-TrackID =263 : ParentID=251 : TrackStatus=1
+TrackID =306 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.5219 -25.9932 -2.87326 keV
-Vertex : 0.309773 0.163948 1.48144 m    Global time : 5.53343 ns 
+Original momentum : 33.6773 10.9069 1.73253 keV
+Vertex : 0.392841 0.0709486 -4.65141 m    Global time : 16.0367 ns 
   Current trajectory has 2 points.
-Point[0] Position= (309.773,163.948,1481.44)
-Point[1] Position= (309.837,163.905,1481.44)
+Point[0] Position= (392.841,70.9486,-4651.41)
+Point[1] Position= (392.871,70.9584,-4651.41)
 
-TrackID =262 : ParentID=251 : TrackStatus=1
+TrackID =305 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.0525 0.176076 -5.82044 keV
-Vertex : 0.24767 0.131615 1.18457 m    Global time : 4.42467 ns 
+Original momentum : -25.9652 21.5042 -2.96392 keV
+Vertex : 0.387241 0.0698093 -4.58445 m    Global time : 15.8058 ns 
   Current trajectory has 2 points.
-Point[0] Position= (247.67,131.615,1184.57)
-Point[1] Position= (247.699,131.615,1184.57)
+Point[0] Position= (387.241,69.8093,-4584.45)
+Point[1] Position= (387.22,69.8268,-4584.45)
 
-TrackID =261 : ParentID=251 : TrackStatus=1
+TrackID =304 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.8664 39.9001 -2.85291 keV
-Vertex : 0.217808 0.115929 1.04183 m    Global time : 3.89149 ns 
+Original momentum : 7.85193 -58.3473 -3.82509 keV
+Vertex : 0.367266 0.0657847 -4.34526 m    Global time : 14.9812 ns 
   Current trajectory has 2 points.
-Point[0] Position= (217.808,115.929,1041.83)
-Point[1] Position= (217.809,115.976,1041.82)
+Point[0] Position= (367.266,65.7847,-4345.26)
+Point[1] Position= (367.289,65.6135,-4345.28)
 
-TrackID =260 : ParentID=251 : TrackStatus=1
+TrackID =303 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -52.558 29.0389 11.8762 keV
-Vertex : 20.202 10.7591 96.6453 cm   Global time : 3.60993 ns 
+Original momentum : -3.36383 -35.718 -2.15574 keV
+Vertex : 0.347644 0.0619336 -4.11046 m    Global time : 14.1717 ns 
   Current trajectory has 2 points.
-Point[0] Position= (202.02,107.591,966.453)
-Point[1] Position= (201.916,107.648,966.476)
+Point[0] Position= (347.644,61.9336,-4110.46)
+Point[1] Position= (347.641,61.9004,-4110.46)
 
-TrackID =259 : ParentID=251 : TrackStatus=1
+TrackID =302 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 67.0211 51.0418 -11.7513 keV
-Vertex : 19.3395 10.3041 92.5191 cm   Global time : 3.45581 ns 
+Original momentum : 77.8636 19.5269 0.32856 keV
+Vertex : 0.345807 0.0615825 -4.08843 m    Global time : 14.0958 ns 
   Current trajectory has 3 points.
-Point[0] Position= (193.395,103.041,925.191)
-Point[1] Position= (193.676,103.255,925.142)
-Point[2] Position= (193.711,103.26,925.123)
+Point[0] Position= (345.807,61.5825,-4088.43)
+Point[1] Position= (346.302,61.7067,-4088.43)
+Point[2] Position= (346.289,61.7186,-4088.43)
 
-TrackID =258 : ParentID=251 : TrackStatus=1
+TrackID =301 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -68.8329 -18.4514 22.5577 keV
-Vertex : 15.3724 8.21037 73.5822 cm   Global time : 2.74842 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (153.724,82.1037,735.822)
-Point[1] Position= (153.447,82.0295,735.913)
-Point[2] Position= (153.393,82.0649,735.938)
+Original momentum : -71.4219 -6.30796 -11.3403 keV
+Vertex : 0.328655 0.0582614 -3.88261 m    Global time : 13.3862 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (328.655,58.2614,-3882.61)
+Point[1] Position= (328.303,58.2304,-3882.66)
+
+TrackID =300 : ParentID=64 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 83.07 90.6556 -6.7159 keV
+Vertex : 0.313683 0.0553774 -3.70308 m    Global time : 12.7672 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (313.683,55.3774,-3703.08)
+Point[1] Position= (314.899,56.7046,-3703.18)
+Point[2] Position= (316.275,57.0277,-3703.4)
+Point[3] Position= (316.892,57.4373,-3703.74)
+Point[4] Position= (317.01,57.5078,-3703.75)
 
-TrackID =281 : ParentID=258 : TrackStatus=1
+TrackID =299 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.0932 -2.61395 32.0401 keV
-Vertex : 15.3447 8.20295 73.5913 cm   Global time : 2.75535 ns 
+Original momentum : 244.801 86.7095 -44.0878 keV
+Vertex : 0.309777 0.0546343 -3.65648 m    Global time : 12.6066 ns 
+  Current trajectory has 14 points.
+Point[0] Position= (309.777,54.6343,-3656.48)
+Point[1] Position= (310.436,54.8675,-3656.6)
+Point[2] Position= (322.942,60.534,-3659.79)
+Point[3] Position= (333.681,61.4547,-3655.31)
+Point[4] Position= (340.441,61.056,-3649.75)
+Point[5] Position= (346.306,59.4145,-3653.17)
+Point[6] Position= (351.419,59.6238,-3655.86)
+Point[7] Position= (351.601,59.466,-3656.19)
+Point[8] Position= (352.291,58.5477,-3659.68)
+Point[9] Position= (352.318,58.6904,-3659.93)
+Point[10] Position= (352.619,59.601,-3662.54)
+Point[11] Position= (352.964,60.9283,-3663.61)
+Point[12] Position= (353.38,61.2797,-3664.22)
+Point[13] Position= (353.363,61.3402,-3664.02)
+
+TrackID =341 : ParentID=299 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 11.799 22.927 21.0838 keV
+Vertex : 0.352964 0.0609283 -3.66361 m    Global time : 13.1029 ns 
   Current trajectory has 2 points.
-Point[0] Position= (153.447,82.0295,735.913)
-Point[1] Position= (153.458,82.0273,735.941)
+Point[0] Position= (352.964,60.9283,-3663.61)
+Point[1] Position= (352.973,60.9464,-3663.59)
 
-TrackID =257 : ParentID=251 : TrackStatus=1
+TrackID =340 : ParentID=299 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.7364 34.4961 1.04564 keV
-Vertex : 14.3754 7.68373 68.8259 cm   Global time : 2.57074 ns 
+Original momentum : -4.39067 38.4537 12.6633 keV
+Vertex : 0.352318 0.0586904 -3.65993 m    Global time : 13.0445 ns 
   Current trajectory has 2 points.
-Point[0] Position= (143.754,76.8373,688.259)
-Point[1] Position= (143.738,76.8734,688.26)
+Point[0] Position= (352.318,58.6904,-3659.93)
+Point[1] Position= (352.312,58.7375,-3659.92)
 
-TrackID =256 : ParentID=251 : TrackStatus=1
+TrackID =339 : ParentID=299 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -49.7211 73.5349 10.904 keV
-Vertex : 11.7042 6.26529 56.0703 cm   Global time : 2.09424 ns 
+Original momentum : 45.9004 -18.2187 13.4412 keV
+Vertex : 0.351601 0.059466 -3.65619 m    Global time : 13.001 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (351.601,59.466,-3656.19)
+Point[1] Position= (351.696,59.4281,-3656.16)
+
+TrackID =338 : ParentID=299 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 14.3787 -32.2543 -2.21562 keV
+Vertex : 0.310436 0.0548675 -3.6566 m    Global time : 12.6117 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (310.436,54.8675,-3656.6)
+Point[1] Position= (310.449,54.8386,-3656.6)
+
+TrackID =298 : ParentID=64 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 5.14088 -98.8088 -11.0931 keV
+Vertex : 0.303391 0.0534204 -3.58079 m    Global time : 12.3456 ns 
   Current trajectory has 3 points.
-Point[0] Position= (117.042,62.6529,560.703)
-Point[1] Position= (116.629,63.263,560.794)
-Point[2] Position= (116.605,63.0611,560.656)
+Point[0] Position= (303.391,53.4204,-3580.79)
+Point[1] Position= (303.444,52.3923,-3580.91)
+Point[2] Position= (303.289,52.3416,-3581.24)
 
-TrackID =255 : ParentID=251 : TrackStatus=1
+TrackID =297 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.70158 61.0884 -4.26983 keV
-Vertex : 11.2584 6.0275 53.9398 cm   Global time : 2.01465 ns 
+Original momentum : -36.8907 -124.935 -22.4905 keV
+Vertex : 0.302682 0.0532856 -3.5724 m    Global time : 12.3167 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (302.682,53.2856,-3572.4)
+Point[1] Position= (302.085,51.2623,-3572.76)
+Point[2] Position= (302.483,49.9381,-3573.83)
+Point[3] Position= (302.349,50.669,-3574.54)
+Point[4] Position= (302.213,50.9352,-3574.38)
+Point[5] Position= (302.22,51.0277,-3574.33)
+
+TrackID =342 : ParentID=297 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 26.7533 11.3479 -26.5251 keV
+Vertex : 0.302213 0.0509352 -3.57438 m    Global time : 12.3961 ns 
   Current trajectory has 2 points.
-Point[0] Position= (112.584,60.275,539.398)
-Point[1] Position= (112.609,60.4754,539.384)
+Point[0] Position= (302.213,50.9352,-3574.38)
+Point[1] Position= (302.244,50.948,-3574.41)
 
-TrackID =254 : ParentID=251 : TrackStatus=1
+TrackID =296 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -39.2222 26.6793 7.75622 keV
-Vertex : 9.59467 5.14019 45.996 cm   Global time : 1.71789 ns 
+Original momentum : 64.4828 42.8496 0.0759609 keV
+Vertex : 0.292793 0.0514348 -3.45504 m    Global time : 11.9121 ns 
   Current trajectory has 2 points.
-Point[0] Position= (95.9467,51.4019,459.96)
-Point[1] Position= (95.8765,51.4496,459.974)
+Point[0] Position= (292.793,51.4348,-3455.04)
+Point[1] Position= (293.167,51.6834,-3455.04)
 
-TrackID =253 : ParentID=251 : TrackStatus=1
+TrackID =295 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -174.302 268.121 123.234 keV
-Vertex : 8.9938 4.82028 43.1273 cm   Global time : 1.61072 ns 
-  Current trajectory has 18 points.
-Point[0] Position= (89.938,48.2028,431.273)
-Point[1] Position= (66.611,71.2616,442.05)
-Point[2] Position= (57.26,93.6873,421.466)
-Point[3] Position= (50.4797,105.581,409.49)
-Point[4] Position= (45.2197,113.562,392.539)
-Point[5] Position= (44.4353,124.263,378.553)
-Point[6] Position= (44.812,124.996,377.179)
-Point[7] Position= (45.9595,127.691,374.858)
-Point[8] Position= (52.7833,130.5,367.67)
-Point[9] Position= (59.8663,129.562,363.411)
-Point[10] Position= (64.4928,128.44,358.594)
-Point[11] Position= (68.5037,129.721,355.59)
-Point[12] Position= (70.0792,129.023,353.204)
-Point[13] Position= (70.7482,129.192,353.002)
-Point[14] Position= (72.761,128.958,352.593)
-Point[15] Position= (72.78,127.941,351.907)
-Point[16] Position= (72.8229,127.51,351.524)
-Point[17] Position= (72.7668,127.481,351.431)
+Original momentum : 3.12411 -34.8443 -1.53675 keV
+Vertex : 0.282058 0.0493984 -3.32767 m    Global time : 11.4729 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (282.058,49.3984,-3327.67)
+Point[1] Position= (282.061,49.3678,-3327.67)
 
-TrackID =287 : ParentID=253 : TrackStatus=1
+TrackID =294 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 68.369 -10.1276 16.0224 keV
-Vertex : 7.2761 12.8958 35.2593 cm   Global time : 2.71439 ns 
+Original momentum : 41.6594 0.866462 1.78159 keV
+Vertex : 0.280939 0.0491836 -3.31443 m    Global time : 11.4273 ns 
   Current trajectory has 2 points.
-Point[0] Position= (72.761,128.958,352.593)
-Point[1] Position= (73.0788,128.911,352.667)
+Point[0] Position= (280.939,49.1836,-3314.43)
+Point[1] Position= (280.992,49.1847,-3314.43)
 
-TrackID =286 : ParentID=253 : TrackStatus=1
+TrackID =293 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.4315 51.3467 -14.4168 keV
-Vertex : 7.07482 12.9192 35.3002 cm   Global time : 2.68831 ns 
+Original momentum : 40.5397 11.6675 1.81461 keV
+Vertex : 0.258904 0.0450146 -3.05364 m    Global time : 10.5281 ns 
   Current trajectory has 2 points.
-Point[0] Position= (70.7482,129.192,353.002)
-Point[1] Position= (70.7561,129.31,352.969)
+Point[0] Position= (258.904,45.0146,-3053.64)
+Point[1] Position= (258.958,45.0301,-3053.63)
 
-TrackID =285 : ParentID=253 : TrackStatus=1
+TrackID =292 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.20669 -32.3519 -3.85696 keV
-Vertex : 7.00792 12.9023 35.3204 cm   Global time : 2.67992 ns 
+Original momentum : -10.3604 -42.5022 -3.49164 keV
+Vertex : 0.232592 0.0400467 -2.74101 m    Global time : 9.45026 ns 
   Current trajectory has 2 points.
-Point[0] Position= (70.0792,129.023,353.204)
-Point[1] Position= (70.0849,128.997,353.201)
+Point[0] Position= (232.592,40.0467,-2741.01)
+Point[1] Position= (232.577,39.9852,-2741.01)
 
-TrackID =284 : ParentID=253 : TrackStatus=1
+TrackID =291 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -46.8701 37.6881 -31.1649 keV
-Vertex : 4.59595 12.7691 37.4858 cm   Global time : 2.38371 ns 
+Original momentum : -13.8612 -45.5032 -4.18877 keV
+Vertex : 0.227528 0.0390937 -2.68083 m    Global time : 9.2428 ns 
   Current trajectory has 2 points.
-Point[0] Position= (45.9595,127.691,374.858)
-Point[1] Position= (45.7656,127.847,374.729)
+Point[0] Position= (227.528,39.0937,-2680.83)
+Point[1] Position= (227.504,39.0136,-2680.84)
 
-TrackID =283 : ParentID=253 : TrackStatus=1
+TrackID =290 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.8753 -17.6331 -27.2783 keV
-Vertex : 4.4812 12.4996 37.7179 cm   Global time : 2.35512 ns 
+Original momentum : -11.605 -36.7524 -3.07804 keV
+Vertex : 0.214353 0.036575 -2.52399 m    Global time : 8.70207 ns 
   Current trajectory has 2 points.
-Point[0] Position= (44.812,124.996,377.179)
-Point[1] Position= (44.8007,124.98,377.156)
+Point[0] Position= (214.353,36.575,-2523.99)
+Point[1] Position= (214.34,36.5349,-2524)
 
-TrackID =282 : ParentID=253 : TrackStatus=1
+TrackID =289 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.5514 -13.13 -13.383 keV
-Vertex : 5.04797 10.5581 40.949 cm   Global time : 2.099 ns 
+Original momentum : 36.8341 -9.42601 1.47323 keV
+Vertex : 0.212959 0.036307 -2.50738 m    Global time : 8.64479 ns 
   Current trajectory has 2 points.
-Point[0] Position= (50.4797,105.581,409.49)
-Point[1] Position= (50.4995,105.571,409.48)
+Point[0] Position= (212.959,36.307,-2507.38)
+Point[1] Position= (212.998,36.2971,-2507.38)
 
-TrackID =252 : ParentID=251 : TrackStatus=1
+TrackID =288 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -162.003 41.9233 63.2058 keV
-Vertex : 5.52582 2.97148 26.5569 cm   Global time : 991.756 ps 
-  Current trajectory has 8 points.
-Point[0] Position= (55.2582,29.7148,265.569)
-Point[1] Position= (51.028,30.8095,267.22)
-Point[2] Position= (48.098,30.7003,269.58)
-Point[3] Position= (47.979,31.3501,270.904)
-Point[4] Position= (49.5001,32.0902,271.754)
-Point[5] Position= (50.8492,32.1139,271.862)
-Point[6] Position= (51.4363,32.3734,271.595)
-Point[7] Position= (51.4461,32.3691,271.586)
+Original momentum : -32.3657 -19.8732 -4.50118 keV
+Vertex : 0.195049 0.0329556 -2.29373 m    Global time : 7.90822 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (195.049,32.9556,-2293.73)
+Point[1] Position= (195.015,32.9345,-2293.73)
 
-TrackID =289 : ParentID=252 : TrackStatus=1
+TrackID =287 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.38016 38.5855 -23.071 keV
-Vertex : 4.95001 3.20902 27.1754 cm   Global time : 1.12261 ns 
+Original momentum : 24.4995 23.5813 1.2442 keV
+Vertex : 0.191192 0.0322465 -2.24773 m    Global time : 7.74964 ns 
   Current trajectory has 2 points.
-Point[0] Position= (49.5001,32.0902,271.754)
-Point[1] Position= (49.5022,32.1493,271.719)
+Point[0] Position= (191.192,32.2465,-2247.73)
+Point[1] Position= (191.212,32.266,-2247.73)
 
-TrackID =288 : ParentID=252 : TrackStatus=1
+TrackID =286 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.5567 -12.5528 48.55 keV
-Vertex : 4.7979 3.13501 27.0904 cm   Global time : 1.09745 ns 
+Original momentum : 3.18964 43.6724 -0.997538 keV
+Vertex : 0.163854 0.0272439 -1.92283 m    Global time : 6.62951 ns 
   Current trajectory has 2 points.
-Point[0] Position= (47.979,31.3501,270.904)
-Point[1] Position= (47.93,31.3201,271.02)
+Point[0] Position= (163.854,27.2439,-1922.83)
+Point[1] Position= (163.858,27.3069,-1922.83)
 
-TrackID =279 : ParentID=251 : TrackStatus=1
-Particle name : mu-  PDG code : 13  Charge : -1
-Original momentum : 76.0224 14.8869 289.948 MeV
-Vertex : 0.616594 0.327865 2.96073 m    Global time : 11.0579 ns 
-  Current trajectory has 31 points.
-Point[0] Position= (616.594,327.865,2960.73)
-Point[1] Position= (664.32,337.279,3143.17)
-Point[2] Position= (697.751,343.88,3271.09)
-Point[3] Position= (726.627,349.649,3381.25)
-Point[4] Position= (734.994,351.347,3413.15)
-Point[5] Position= (742.885,352.941,3443.23)
-Point[6] Position= (743.776,353.123,3446.62)
-Point[7] Position= (745.323,353.439,3452.52)
-Point[8] Position= (767.694,358.022,3537.7)
-Point[9] Position= (798.386,364.317,3654.59)
-Point[10] Position= (852.666,375.494,3861.3)
-Point[11] Position= (853.751,375.718,3865.44)
-Point[12] Position= (933.704,392.197,4170.71)
-Point[13] Position= (942.22,393.964,4203.27)
-Point[14] Position= (963.957,398.451,4286.2)
-Point[15] Position= (969.888,399.676,4308.83)
-Point[16] Position= (1018.81,409.897,4495.12)
-Point[17] Position= (1039.87,414.243,4575.04)
-Point[18] Position= (1086.96,423.958,4753.5)
-Point[19] Position= (1156.39,438.211,5016.16)
-Point[20] Position= (1186.78,444.491,5131.27)
-Point[21] Position= (1205.14,448.298,5200.91)
-Point[22] Position= (1253.85,458.595,5386.24)
-Point[23] Position= (1312.4,470.985,5609.42)
-Point[24] Position= (1318.27,472.241,5631.83)
-Point[25] Position= (1331.18,475.008,5681.03)
-Point[26] Position= (1381.53,485.875,5873.36)
-Point[27] Position= (1389,487.498,5901.87)
-Point[28] Position= (1413.19,492.729,5993.99)
-Point[29] Position= (1413.82,492.865,5996.38)
-Point[30] Position= (1414.77,493.071,6000)
-
-TrackID =318 : ParentID=279 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.8231 -31.3863 14.5235 keV
-Vertex : 1.41382 0.492865 5.99638 m    Global time : 22.1739 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (1413.82,492.865,5996.38)
-Point[1] Position= (1413.74,492.799,5996.42)
-
-TrackID =317 : ParentID=279 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 54.799 -42.9603 -6.70605 keV
-Vertex : 1.41319 0.492729 5.99399 m    Global time : 22.1651 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (1413.19,492.729,5993.99)
-Point[1] Position= (1413.41,492.557,5993.97)
-Point[2] Position= (1413.41,492.62,5993.94)
+TrackID =285 : ParentID=64 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 57.4613 1.31991 1.57012 keV
+Vertex : 0.147393 0.024236 -1.72849 m    Global time : 5.95949 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (147.393,24.236,-1728.49)
+Point[1] Position= (147.551,24.2396,-1728.49)
 
-TrackID =319 : ParentID=317 : TrackStatus=1
+TrackID =284 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.2886 8.66285 21.356 keV
-Vertex : 1.41341 0.492557 5.99397 m    Global time : 22.172 ns 
+Original momentum : -13.8854 -39.1144 -3.50764 keV
+Vertex : 0.13708 0.0224108 -1.60721 m    Global time : 5.54131 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1413.41,492.557,5993.97)
-Point[1] Position= (1413.39,492.564,5993.98)
+Point[0] Position= (137.08,22.4108,-1607.21)
+Point[1] Position= (137.062,22.3604,-1607.21)
 
-TrackID =316 : ParentID=279 : TrackStatus=1
+TrackID =283 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -157.259 20.8798 71.7413 keV
-Vertex : 1.389 0.487498 5.90187 m    Global time : 21.8277 ns 
-  Current trajectory has 8 points.
-Point[0] Position= (1389,487.498,5901.87)
-Point[1] Position= (1386.47,487.833,5903.02)
-Point[2] Position= (1383.48,488.1,5904.67)
-Point[3] Position= (1380.96,487.776,5904.7)
-Point[4] Position= (1380.34,486.689,5903.11)
-Point[5] Position= (1380.93,486.322,5901.92)
-Point[6] Position= (1381.57,486.416,5902.01)
-Point[7] Position= (1381.59,486.437,5902.02)
+Original momentum : 20.4839 25.4242 1.03098 keV
+Vertex : 0.129631 0.021132 -1.51956 m    Global time : 5.23912 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (129.631,21.132,-1519.56)
+Point[1] Position= (129.646,21.1512,-1519.56)
+
+TrackID =282 : ParentID=64 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 13.1883 36.1367 0.154338 keV
+Vertex : 0.125816 0.0204788 -1.47468 m    Global time : 5.08438 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (125.816,20.4788,-1474.68)
+Point[1] Position= (125.831,20.5178,-1474.68)
 
-TrackID =320 : ParentID=316 : TrackStatus=1
+TrackID =281 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.8943 -20.6421 38.3375 keV
-Vertex : 1.38647 0.487833 5.90302 m    Global time : 21.8566 ns 
+Original momentum : 22.3779 50.4298 -0.439973 keV
+Vertex : 0.123943 0.0201596 -1.45262 m    Global time : 5.00835 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1386.47,487.833,5903.02)
-Point[1] Position= (1386.51,487.798,5903.08)
+Point[0] Position= (123.943,20.1596,-1452.62)
+Point[1] Position= (123.998,20.2852,-1452.63)
 
-TrackID =315 : ParentID=279 : TrackStatus=1
+TrackID =280 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.39344 33.8853 -1.57294 keV
-Vertex : 1.38153 0.485875 5.87336 m    Global time : 21.7233 ns 
+Original momentum : -21.5667 -32.6164 -3.86221 keV
+Vertex : 0.107013 0.0173244 -1.25378 m    Global time : 4.32277 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1381.53,485.875,5873.36)
-Point[1] Position= (1381.53,485.903,5873.36)
+Point[0] Position= (107.013,17.3244,-1253.78)
+Point[1] Position= (106.988,17.2875,-1253.79)
+
+TrackID =279 : ParentID=64 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -73.7315 23.7336 -12.1234 keV
+Vertex : 0.0887283 0.0143586 -1.03868 m    Global time : 3.58116 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (88.7283,14.3586,-1038.68)
+Point[1] Position= (88.2867,14.5008,-1038.75)
+Point[2] Position= (88.2682,14.4935,-1038.72)
+
+TrackID =278 : ParentID=64 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 39.3218 -231.22 -55.7055 keV
+Vertex : 7.35139 1.18473 -85.9984 cm   Global time : 2.96506 ns 
+  Current trajectory has 13 points.
+Point[0] Position= (73.5139,11.8473,-859.984)
+Point[1] Position= (73.6906,10.8083,-860.234)
+Point[2] Position= (75.4477,2.36108,-860.109)
+Point[3] Position= (76.1241,-0.80788,-853.753)
+Point[4] Position= (76.7319,-2.23599,-851.351)
+Point[5] Position= (77.2502,-3.16666,-849.925)
+Point[6] Position= (77.4138,-4.75528,-846.26)
+Point[7] Position= (78.3127,-6.30135,-843.821)
+Point[8] Position= (78.407,-7.05091,-842.764)
+Point[9] Position= (78.919,-7.49139,-840.73)
+Point[10] Position= (79.0729,-8.11658,-839.253)
+Point[11] Position= (78.6415,-8.26295,-838.65)
+Point[12] Position= (78.5931,-8.3295,-838.617)
 
-TrackID =314 : ParentID=279 : TrackStatus=1
+TrackID =347 : ParentID=278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -16.0079 28.3436 3.76557 keV
-Vertex : 1.33118 0.475008 5.68103 m    Global time : 21.019 ns 
+Original momentum : -17.8611 25.1482 10.0822 keV
+Vertex : 7.8407 -0.705091 -84.2764 cm   Global time : 3.24444 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1331.18,475.008,5681.03)
-Point[1] Position= (1331.16,475.03,5681.04)
+Point[0] Position= (78.407,-7.05091,-842.764)
+Point[1] Position= (78.3937,-7.03219,-842.756)
 
-TrackID =313 : ParentID=279 : TrackStatus=1
+TrackID =346 : ParentID=278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -42.2555 -37.35 16.8811 keV
-Vertex : 1.31827 0.472241 5.63183 m    Global time : 20.8388 ns 
+Original momentum : 15.4382 -27.2651 -12.3133 keV
+Vertex : 7.72502 -0.316666 -84.9925 cm   Global time : 3.15038 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1318.27,472.241,5631.83)
-Point[1] Position= (1318.15,472.132,5631.88)
+Point[0] Position= (77.2502,-3.16666,-849.925)
+Point[1] Position= (77.2627,-3.18862,-849.935)
 
-TrackID =312 : ParentID=279 : TrackStatus=1
+TrackID =345 : ParentID=278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.9879 -23.852 -5.88196 keV
-Vertex : 1.3124 0.470985 5.60942 m    Global time : 20.7568 ns 
+Original momentum : 26.9383 18.5998 2.57074 keV
+Vertex : 7.67319 -0.223599 -85.1351 cm   Global time : 3.13248 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1312.4,470.985,5609.42)
-Point[1] Position= (1312.45,470.952,5609.41)
+Point[0] Position= (76.7319,-2.23599,-851.351)
+Point[1] Position= (76.7525,-2.22179,-851.349)
 
-TrackID =311 : ParentID=279 : TrackStatus=1
+TrackID =344 : ParentID=278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -85.9325 8.14274 31.0432 keV
-Vertex : 1.25385 0.458595 5.38624 m    Global time : 19.9395 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (1253.85,458.595,5386.24)
-Point[1] Position= (1253.17,458.66,5386.49)
-Point[2] Position= (1252.97,458.751,5386.45)
-Point[3] Position= (1252.97,458.741,5386.44)
+Original momentum : 74.5548 -33.329 -23.0207 keV
+Vertex : 7.54477 0.236108 -86.0109 cm   Global time : 3.04186 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (75.4477,2.36108,-860.109)
+Point[1] Position= (75.9929,2.11736,-860.277)
+Point[2] Position= (75.9937,2.1162,-860.284)
+
+TrackID =343 : ParentID=278 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 4.28879 0.0619143 -36.21 keV
+Vertex : 7.36906 1.08083 -86.0234 cm   Global time : 2.97353 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (73.6906,10.8083,-860.234)
+Point[1] Position= (73.6947,10.8084,-860.269)
 
-TrackID =321 : ParentID=311 : TrackStatus=1
+TrackID =277 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.5158 25.7038 -14.4544 keV
-Vertex : 1.25317 0.45866 5.38649 m    Global time : 19.9531 ns 
+Original momentum : -44.9203 15.5052 -5.94947 keV
+Vertex : 5.24472 0.839359 -61.4098 cm   Global time : 2.11727 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1253.17,458.66,5386.49)
-Point[1] Position= (1253.18,458.679,5386.48)
+Point[0] Position= (52.4472,8.39359,-614.098)
+Point[1] Position= (52.3676,8.42107,-614.109)
+
+TrackID =276 : ParentID=64 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 53.5295 -87.3704 -7.18839 keV
+Vertex : 4.76472 0.761477 -55.8058 cm   Global time : 1.92405 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (47.6472,7.61477,-558.058)
+Point[1] Position= (48.2371,6.65192,-558.137)
+Point[2] Position= (48.0249,6.56866,-558.049)
 
-TrackID =310 : ParentID=279 : TrackStatus=1
+TrackID =275 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.0311 -41.0695 1.29752 keV
-Vertex : 1.20514 0.448298 5.20091 m    Global time : 19.2607 ns 
+Original momentum : 10.1665 -32.9642 -0.77697 keV
+Vertex : 1.57791 0.25546 -18.5106 cm   Global time : 638.193 ps 
   Current trajectory has 2 points.
-Point[0] Position= (1205.14,448.298,5200.91)
-Point[1] Position= (1205.15,448.242,5200.91)
+Point[0] Position= (15.7791,2.5546,-185.106)
+Point[1] Position= (15.7877,2.5266,-185.106)
 
-TrackID =309 : ParentID=279 : TrackStatus=1
+TrackID =274 : ParentID=64 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.6197 -16.0662 9.69167 keV
-Vertex : 1.18678 0.444491 5.13127 m    Global time : 19.0056 ns 
+Original momentum : 54.1428 -24.737 0.691312 keV
+Vertex : 0.214536 0.0350995 -2.51944 cm   Global time : 86.8629 ps 
   Current trajectory has 2 points.
-Point[0] Position= (1186.78,444.491,5131.27)
-Point[1] Position= (1186.76,444.478,5131.28)
+Point[0] Position= (2.14536,0.350995,-25.1944)
+Point[1] Position= (2.3078,0.276781,-25.1924)
 
-TrackID =308 : ParentID=279 : TrackStatus=1
+TrackID =273 : ParentID=201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.6924 7.69839 -7.9658 keV
-Vertex : 1.15639 0.438211 5.01616 m    Global time : 18.5839 ns 
+Original momentum : 24.67 17.0211 34.8583 keV
+Vertex : -4.66083 3.7511 -4.18544 m    Global time : 38.0105 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-4660.83,3751.1,-4185.44)
+Point[1] Position= (-4660.79,3751.13,-4185.39)
+
+TrackID =63 : ParentID=62 : TrackStatus=1
+Particle name : eta  PDG code : 221  Charge : 0
+Original momentum : -0.664408 0.0949851 -2.08414 GeV
+Vertex : -1.88943e-295 -1.54061e-296 1.33116e-293 fm   Global time : 6.40539e-305 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (-1.88943e-307,-1.54061e-308,1.33116e-305)
+Point[1] Position= (-1.98474e-307,-1.40437e-308,1.32817e-305)
+
+TrackID =350 : ParentID=63 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : -0.418481 0.0318667 -1.21085 GeV
+Vertex : -1.98474e-295 -1.40437e-296 1.32817e-293 fm   Global time : 6.41619e-305 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (-1.98474e-307,-1.40437e-308,1.32817e-305)
+Point[1] Position= (-0.000129278,9.8443e-06,-0.000374058)
+
+TrackID =349 : ParentID=63 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : -54.5798 -36.0741 -452.091 MeV
+Vertex : -1.98474e-295 -1.40437e-296 1.32817e-293 fm   Global time : 6.41619e-305 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (-1.98474e-307,-1.40437e-308,1.32817e-305)
+Point[1] Position= (-1.1422e-05,-7.54933e-06,-9.46103e-05)
+
+TrackID =348 : ParentID=63 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : -191.45 99.2076 -421.52 MeV
+Vertex : -1.98474e-295 -1.40437e-296 1.32817e-293 fm   Global time : 6.41619e-305 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (-1.98474e-307,-1.40437e-308,1.32817e-305)
+Point[1] Position= (-6.40766e-05,3.3204e-05,-0.000141079)
+
+TrackID =61 : ParentID=45 : TrackStatus=1
+Particle name : unknown : rho0  PDG code : 113  Charge : 0
+Original momentum : 1.23387 -0.154778 1.10659 GeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (1156.39,438.211,5016.16)
-Point[1] Position= (1156.42,438.218,5016.15)
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (4.76184e-306,-6.36415e-307,1.77731e-305)
 
-TrackID =307 : ParentID=279 : TrackStatus=1
+TrackID =366 : ParentID=358 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.3049 61.5507 -2.81973 keV
-Vertex : 1.08696 0.423958 4.7535 m    Global time : 17.6217 ns 
+Original momentum : 22.1818 48.989 1.26993 keV
+Vertex : 36.4461 -14.4125 39.0505 cm   Global time : 1.86107 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1086.96,423.958,4753.5)
-Point[1] Position= (1087.01,424.172,4753.49)
+Point[0] Position= (364.461,-144.125,390.505)
+Point[1] Position= (364.494,-144.052,390.507)
 
-TrackID =306 : ParentID=279 : TrackStatus=1
+TrackID =365 : ParentID=358 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.4726 -27.2997 8.52161 keV
-Vertex : 1.03987 0.414243 4.57504 m    Global time : 16.968 ns 
+Original momentum : -19.9777 23.6617 29.9176 keV
+Vertex : 28.5624 -11.31 30.5976 cm   Global time : 1.45849 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1039.87,414.243,4575.04)
-Point[1] Position= (1039.85,414.218,4575.05)
+Point[0] Position= (285.624,-113.1,305.976)
+Point[1] Position= (285.605,-113.078,306.005)
 
-TrackID =305 : ParentID=279 : TrackStatus=1
+TrackID =364 : ParentID=358 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.4496 95.6438 12.3827 keV
-Vertex : 1.01881 0.409897 4.49512 m    Global time : 16.6753 ns 
+Original momentum : -55.9075 -57.4112 42.394 keV
+Vertex : 28.5326 -11.2983 30.5657 cm   Global time : 1.45697 ns 
   Current trajectory has 3 points.
-Point[0] Position= (1018.81,409.897,4495.12)
-Point[1] Position= (1018.54,410.9,4495.25)
-Point[2] Position= (1018.58,410.968,4495.16)
-
-TrackID =304 : ParentID=279 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 101.943 -71.4725 -6.37535 keV
-Vertex : 0.969888 0.399676 4.30883 m    Global time : 15.9931 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (969.888,399.676,4308.83)
-Point[1] Position= (970.944,398.935,4308.76)
-Point[2] Position= (971.302,398.242,4309.35)
-Point[3] Position= (970.96,398.696,4309.67)
-Point[4] Position= (970.954,398.668,4309.71)
+Point[0] Position= (285.326,-112.983,305.657)
+Point[1] Position= (285.058,-113.258,305.86)
+Point[2] Position= (285.096,-113.281,305.915)
 
-TrackID =323 : ParentID=304 : TrackStatus=1
+TrackID =367 : ParentID=364 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.057 -18.6214 -6.52478 keV
-Vertex : 0.971302 0.398242 4.30935 m    Global time : 16.0275 ns 
+Original momentum : 26.0112 -19.2329 -26.2853 keV
+Vertex : 28.5058 -11.3258 30.586 cm   Global time : 1.46526 ns 
   Current trajectory has 2 points.
-Point[0] Position= (971.302,398.242,4309.35)
-Point[1] Position= (971.271,398.224,4309.34)
+Point[0] Position= (285.058,-113.258,305.86)
+Point[1] Position= (285.081,-113.275,305.836)
 
-TrackID =322 : ParentID=304 : TrackStatus=1
+TrackID =363 : ParentID=358 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.9297 -21.2055 -9.78274 keV
-Vertex : 0.970944 0.398935 4.30876 m    Global time : 16.0113 ns 
+Original momentum : -19.9501 32.1106 34.0673 keV
+Vertex : 21.8941 -8.66428 23.4612 cm   Global time : 1.1181 ns 
   Current trajectory has 2 points.
-Point[0] Position= (970.944,398.935,4308.76)
-Point[1] Position= (970.924,398.918,4308.76)
+Point[0] Position= (218.941,-86.6428,234.612)
+Point[1] Position= (218.915,-86.5999,234.658)
 
-TrackID =303 : ParentID=279 : TrackStatus=1
+TrackID =362 : ParentID=358 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 4.57757 42.4588 -1.53288 keV
-Vertex : 0.963957 0.398451 4.2862 m    Global time : 15.9102 ns 
+Original momentum : 25.9618 14.3465 -17.2842 keV
+Vertex : 9.28741 -3.67548 9.95057 cm   Global time : 474.259 ps 
   Current trajectory has 2 points.
-Point[0] Position= (963.957,398.451,4286.2)
-Point[1] Position= (963.963,398.508,4286.2)
+Point[0] Position= (92.8741,-36.7548,99.5057)
+Point[1] Position= (92.896,-36.7427,99.4912)
 
-TrackID =302 : ParentID=279 : TrackStatus=1
+TrackID =361 : ParentID=358 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -95.2374 115.797 44.3424 keV
-Vertex : 0.94222 0.393964 4.20327 m    Global time : 15.6066 ns 
-  Current trajectory has 6 points.
-Point[0] Position= (942.22,393.964,4203.27)
-Point[1] Position= (940.239,396.373,4204.19)
-Point[2] Position= (937.829,396.311,4203.92)
-Point[3] Position= (936.82,396.052,4205.01)
-Point[4] Position= (936.578,396.637,4204.43)
-Point[5] Position= (936.703,396.815,4204.41)
+Original momentum : -16.995 -25.9717 7.69746 keV
+Vertex : 8.51761 -3.37084 9.12581 cm   Global time : 434.949 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (85.1761,-33.7084,91.2581)
+Point[1] Position= (85.1638,-33.7271,91.2636)
 
-TrackID =301 : ParentID=279 : TrackStatus=1
+TrackID =360 : ParentID=358 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.2179 -62.2595 4.98496 keV
-Vertex : 0.933704 0.392197 4.17071 m    Global time : 15.4874 ns 
+Original momentum : 64.0361 74.2268 -18.5603 keV
+Vertex : 7.28867 -2.88442 7.80917 cm   Global time : 372.195 ps 
   Current trajectory has 3 points.
-Point[0] Position= (933.704,392.197,4170.71)
-Point[1] Position= (933.739,391.984,4170.73)
-Point[2] Position= (933.781,391.97,4170.69)
+Point[0] Position= (72.8867,-28.8442,78.0917)
+Point[1] Position= (73.5557,-28.0688,77.8978)
+Point[2] Position= (73.6249,-28.4253,77.9046)
 
-TrackID =300 : ParentID=279 : TrackStatus=1
+TrackID =359 : ParentID=358 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 99.4259 133.04 -4.31315 keV
-Vertex : 0.853751 0.375718 3.86544 m    Global time : 14.3698 ns 
-  Current trajectory has 7 points.
-Point[0] Position= (853.751,375.718,3865.44)
-Point[1] Position= (856.036,378.775,3865.34)
-Point[2] Position= (858.716,379.429,3864.01)
-Point[3] Position= (859.155,381.743,3864.5)
-Point[4] Position= (858.9,382.333,3866.19)
-Point[5] Position= (858.972,383.184,3866.05)
-Point[6] Position= (859.052,383.227,3866.13)
+Original momentum : 27.1789 -11.2355 -27.2715 keV
+Vertex : 7.0289 -2.78163 7.53084 cm   Global time : 358.929 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (70.289,-27.8163,75.3084)
+Point[1] Position= (70.3212,-27.8296,75.2761)
 
-TrackID =299 : ParentID=279 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 5.42432 39.2531 -1.86403 keV
-Vertex : 0.852666 0.375494 3.8613 m    Global time : 14.3547 ns 
+TrackID =354 : ParentID=349 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : -9.59254 42.8405 -261.986 MeV
+Vertex : -11.422 -7.54933 -94.6103 nm   Global time : 0.000332513 ps 
   Current trajectory has 2 points.
-Point[0] Position= (852.666,375.494,3861.3)
-Point[1] Position= (852.672,375.539,3861.3)
+Point[0] Position= (-1.1422e-05,-7.54933e-06,-9.46103e-05)
+Point[1] Position= (-16.6828,74.5055,-455.629)
 
-TrackID =298 : ParentID=279 : TrackStatus=1
+TrackID =368 : ParentID=354 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.5194 -34.4292 7.51313 keV
-Vertex : 0.798386 0.364317 3.65459 m    Global time : 13.5978 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (798.386,364.317,3654.59)
-Point[1] Position= (798.369,364.28,3654.6)
+Original momentum : -1.43837 7.41408 -44.6156 MeV
+Vertex : -1.66828 7.45055 -45.5629 cm   Global time : 1.54101 ns 
+  Current trajectory has 57 points.
+Point[0] Position= (-16.6828,74.5055,-455.629)
+Point[1] Position= (-18.4973,84.161,-514.967)
+Point[2] Position= (-20.8045,94.7242,-578.972)
+Point[3] Position= (-21.8746,100.57,-615.366)
+Point[4] Position= (-23.799,111.294,-682.615)
+Point[5] Position= (-24.9917,115.641,-711.009)
+Point[6] Position= (-25.2933,116.671,-717.865)
+Point[7] Position= (-27.3962,124.111,-769.58)
+Point[8] Position= (-32.6628,138.931,-875.153)
+Point[9] Position= (-33.0907,140.075,-883.092)
+Point[10] Position= (-34.6886,144.463,-914.454)
+Point[11] Position= (-48.247,175.959,-1142.69)
+Point[12] Position= (-55.3553,197.721,-1304.22)
+Point[13] Position= (-63.9346,218.882,-1464.42)
+Point[14] Position= (-66.8643,226.361,-1520.63)
+Point[15] Position= (-68.9779,231.793,-1560.71)
+Point[16] Position= (-76.3233,248.671,-1688.97)
+Point[17] Position= (-78.5843,253.527,-1724.61)
+Point[18] Position= (-90.8042,280.212,-1919.52)
+Point[19] Position= (-90.946,280.533,-1921.86)
+Point[20] Position= (-93.1161,285.411,-1955.99)
+Point[21] Position= (-93.8131,287.005,-1966.69)
+Point[22] Position= (-106.308,318.565,-2170.54)
+Point[23] Position= (-110.004,327.607,-2228.33)
+Point[24] Position= (-110.045,327.705,-2228.94)
+Point[25] Position= (-112.569,334.055,-2268.09)
+Point[26] Position= (-118.077,347.487,-2353.96)
+Point[27] Position= (-119.221,350.017,-2369.9)
+Point[28] Position= (-119.877,351.537,-2379.45)
+Point[29] Position= (-132.581,380.783,-2555.14)
+Point[30] Position= (-137.641,392.679,-2629.17)
+Point[31] Position= (-150.879,429.22,-2849.32)
+Point[32] Position= (-157.951,449.539,-2966.17)
+Point[33] Position= (-170.645,482.691,-3147.97)
+Point[34] Position= (-206.319,569.575,-3644.7)
+Point[35] Position= (-208.233,574.096,-3668.26)
+Point[36] Position= (-210.469,579.362,-3695.13)
+Point[37] Position= (-242.846,652.309,-4080.72)
+Point[38] Position= (-260.249,700,-4308.12)
+Point[39] Position= (-263.6,708.465,-4350.99)
+Point[40] Position= (-265.34,712.798,-4373.54)
+Point[41] Position= (-267.22,717.062,-4395.41)
+Point[42] Position= (-289.41,767.877,-4662.4)
+Point[43] Position= (-293.782,779.737,-4725.21)
+Point[44] Position= (-294.288,781.179,-4732.5)
+Point[45] Position= (-301.068,799.48,-4825.95)
+Point[46] Position= (-307.639,817.82,-4917.53)
+Point[47] Position= (-323.231,861.789,-5145.12)
+Point[48] Position= (-327.276,873.96,-5206.4)
+Point[49] Position= (-329.59,880.967,-5241.38)
+Point[50] Position= (-338.058,904.987,-5363.49)
+Point[51] Position= (-340.88,913.914,-5407.73)
+Point[52] Position= (-347.272,937.534,-5523.8)
+Point[53] Position= (-348.418,942.083,-5544.3)
+Point[54] Position= (-354.535,966.755,-5656.64)
+Point[55] Position= (-356.943,977.875,-5707.63)
+Point[56] Position= (-368.182,1054.13,-6000)
+
+TrackID =424 : ParentID=368 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -0.412775 -0.908362 -2.46898 MeV
+Vertex : -0.356943 0.977875 -5.70763 m    Global time : 19.3608 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-356.943,977.875,-5707.63)
+Point[1] Position= (-379.416,938.272,-5806.85)
+Point[2] Position= (-397.402,893.013,-5969.29)
+Point[3] Position= (-400.988,883.06,-6000)
 
-TrackID =297 : ParentID=279 : TrackStatus=1
+TrackID =426 : ParentID=424 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.628 10.8654 8.66733 keV
-Vertex : 0.767694 0.358022 3.5377 m    Global time : 13.1698 ns 
+Original momentum : -67.5538 38.6432 -9.85199 keV
+Vertex : -0.397402 0.893013 -5.96929 m    Global time : 20.3046 ns 
   Current trajectory has 2 points.
-Point[0] Position= (767.694,358.022,3537.7)
-Point[1] Position= (767.67,358.031,3537.71)
+Point[0] Position= (-397.402,893.013,-5969.29)
+Point[1] Position= (-397.807,893.245,-5969.35)
 
-TrackID =296 : ParentID=279 : TrackStatus=1
+TrackID =425 : ParentID=424 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.38643 -47.9826 5.70913 keV
-Vertex : 0.745323 0.353439 3.45252 m    Global time : 12.8579 ns 
+Original momentum : -11.7412 -32.9975 12.9023 keV
+Vertex : -0.379416 0.938272 -5.80685 m    Global time : 19.731 ns 
   Current trajectory has 2 points.
-Point[0] Position= (745.323,353.439,3452.52)
-Point[1] Position= (745.319,353.352,3452.53)
+Point[0] Position= (-379.416,938.272,-5806.85)
+Point[1] Position= (-379.428,938.239,-5806.84)
 
-TrackID =295 : ParentID=279 : TrackStatus=1
+TrackID =423 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.5962 -38.2788 -3.58302 keV
-Vertex : 0.743776 0.353123 3.44662 m    Global time : 12.8363 ns 
+Original momentum : 36.9626 -23.7092 -8.94649 keV
+Vertex : -0.354535 0.966755 -5.65664 m    Global time : 19.1865 ns 
   Current trajectory has 2 points.
-Point[0] Position= (743.776,353.123,3446.62)
-Point[1] Position= (743.837,353.049,3446.61)
+Point[0] Position= (-354.535,966.755,-5656.64)
+Point[1] Position= (-354.479,966.719,-5656.65)
 
-TrackID =294 : ParentID=279 : TrackStatus=1
+TrackID =422 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -70.7057 -174.623 69.6188 keV
-Vertex : 0.742885 0.352941 3.44323 m    Global time : 12.8239 ns 
-  Current trajectory has 11 points.
-Point[0] Position= (742.885,352.941,3443.23)
-Point[1] Position= (740.594,347.283,3445.48)
-Point[2] Position= (737.391,345.681,3449.61)
-Point[3] Position= (736.183,341.485,3449.14)
-Point[4] Position= (736.038,338.113,3448.65)
-Point[5] Position= (736.217,336.352,3450.71)
-Point[6] Position= (737.729,336.851,3451.66)
-Point[7] Position= (738.773,336.589,3452.37)
-Point[8] Position= (738.722,336.712,3452.5)
-Point[9] Position= (738.652,336.743,3452.55)
-Point[10] Position= (738.517,336.766,3452.62)
+Original momentum : -145.133 -90.1303 -42.2951 keV
+Vertex : -0.348418 0.942083 -5.5443 m    Global time : 18.8023 ns 
+  Current trajectory has 8 points.
+Point[0] Position= (-348.418,942.083,-5544.3)
+Point[1] Position= (-348.645,941.942,-5544.37)
+Point[2] Position= (-349.405,941.044,-5544.6)
+Point[3] Position= (-350.886,938.703,-5544.61)
+Point[4] Position= (-351.971,937.785,-5546.25)
+Point[5] Position= (-352.537,936.513,-5545.72)
+Point[6] Position= (-352.494,935.892,-5545.51)
+Point[7] Position= (-352.499,935.885,-5545.53)
+
+TrackID =428 : ParentID=422 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -61.2381 37.8992 -14.5765 keV
+Vertex : -0.349405 0.941044 -5.5446 m    Global time : 18.8179 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-349.405,941.044,-5544.6)
+Point[1] Position= (-349.716,941.236,-5544.68)
+Point[2] Position= (-349.73,941.218,-5544.77)
 
-TrackID =325 : ParentID=294 : TrackStatus=1
+TrackID =427 : ParentID=422 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.7986 30.2492 -13.9429 keV
-Vertex : 0.738652 0.336743 3.45255 m    Global time : 13.1055 ns 
+Original momentum : -35.3006 31.5053 -8.08679 keV
+Vertex : -0.348645 0.941942 -5.54437 m    Global time : 18.8052 ns 
   Current trajectory has 2 points.
-Point[0] Position= (738.652,336.743,3452.55)
-Point[1] Position= (738.651,336.767,3452.54)
+Point[0] Position= (-348.645,941.942,-5544.37)
+Point[1] Position= (-348.708,941.998,-5544.38)
 
-TrackID =324 : ParentID=294 : TrackStatus=1
+TrackID =421 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.5494 27.9514 7.86204 keV
-Vertex : 0.738722 0.336712 3.4525 m    Global time : 13.1032 ns 
+Original momentum : -42.2216 11.1444 2.99537 keV
+Vertex : -0.347272 0.937534 -5.5238 m    Global time : 18.7322 ns 
   Current trajectory has 2 points.
-Point[0] Position= (738.722,336.712,3452.5)
-Point[1] Position= (738.738,336.735,3452.51)
+Point[0] Position= (-347.272,937.534,-5523.8)
+Point[1] Position= (-347.333,937.55,-5523.8)
 
-TrackID =293 : ParentID=279 : TrackStatus=1
+TrackID =420 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.4433 4.2775 9.53276 keV
-Vertex : 0.734994 0.351347 3.41315 m    Global time : 12.7138 ns 
+Original momentum : -46.7565 -23.591 -4.68424 keV
+Vertex : -0.34088 0.913914 -5.40773 m    Global time : 18.3365 ns 
   Current trajectory has 2 points.
-Point[0] Position= (734.994,351.347,3413.15)
-Point[1] Position= (734.967,351.35,3413.16)
+Point[0] Position= (-340.88,913.914,-5407.73)
+Point[1] Position= (-340.983,913.862,-5407.74)
 
-TrackID =292 : ParentID=279 : TrackStatus=1
+TrackID =419 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.1412 -85.007 8.56989 keV
-Vertex : 0.726627 0.349649 3.38125 m    Global time : 12.597 ns 
+Original momentum : -13.8584 -28.2361 -5.79935 keV
+Vertex : -0.338058 0.904987 -5.36349 m    Global time : 18.1856 ns 
   Current trajectory has 2 points.
-Point[0] Position= (726.627,349.649,3381.25)
-Point[1] Position= (726.744,348.993,3381.32)
+Point[0] Position= (-338.058,904.987,-5363.49)
+Point[1] Position= (-338.068,904.967,-5363.49)
 
-TrackID =291 : ParentID=279 : TrackStatus=1
+TrackID =418 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.8135 -31.2804 7.13908 keV
-Vertex : 0.697751 0.34388 3.27109 m    Global time : 12.1938 ns 
+Original momentum : -33.8419 27.0602 5.72668 keV
+Vertex : -0.32959 0.880967 -5.24138 m    Global time : 17.7695 ns 
   Current trajectory has 2 points.
-Point[0] Position= (697.751,343.88,3271.09)
-Point[1] Position= (697.736,343.852,3271.09)
+Point[0] Position= (-329.59,880.967,-5241.38)
+Point[1] Position= (-329.639,881.006,-5241.37)
 
-TrackID =290 : ParentID=279 : TrackStatus=1
+TrackID =417 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.3051 107.562 -2.41905 keV
-Vertex : 0.66432 0.337279 3.14317 m    Global time : 11.7256 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (664.32,337.279,3143.17)
-Point[1] Position= (664.885,338.715,3143.14)
-Point[2] Position= (664.357,338.878,3142.83)
-Point[3] Position= (664.289,338.904,3142.85)
+Original momentum : -80.273 -35.8273 -9.73116 keV
+Vertex : -0.327276 0.87396 -5.2064 m    Global time : 17.6503 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-327.276,873.96,-5206.4)
+Point[1] Position= (-327.925,873.671,-5206.48)
+Point[2] Position= (-327.871,873.527,-5206.47)
 
-TrackID =278 : ParentID=251 : TrackStatus=1
-Particle name : anti_nu_mu  PDG code : -14  Charge : 0
-Original momentum : -11.0912 20.0309 23.6342 MeV
-Vertex : 0.616594 0.327865 2.96073 m    Global time : 11.0579 ns 
+TrackID =416 : ParentID=368 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 22.8691 29.5076 3.08602 keV
+Vertex : -0.323231 0.861789 -5.14512 m    Global time : 17.4414 ns 
   Current trajectory has 2 points.
-Point[0] Position= (616.594,327.865,2960.73)
-Point[1] Position= (-809.691,2903.77,6000)
-
-TrackID =250 : ParentID=59 : TrackStatus=1
-Particle name : pi+  PDG code : 211  Charge : 1
-Original momentum : 5.79927 -7.68826 132.999 MeV
-Vertex : -1.8367e-295 -1.61085e-296 1.33512e-293 fm   Global time : 6.40032e-305 ps 
-  Current trajectory has 154 points.
-Point[0] Position= (-1.8367e-307,-1.61085e-308,1.33512e-305)
-Point[1] Position= (3.43179,-4.57622,80.9361)
-Point[2] Position= (4.25899,-5.67511,99.8541)
-Point[3] Position= (6.18873,-8.22888,143.392)
-Point[4] Position= (8.02938,-10.7441,185.901)
-Point[5] Position= (9.41484,-12.626,217.493)
-Point[6] Position= (11.5958,-15.5837,267.403)
-Point[7] Position= (14.5169,-19.5018,333.329)
-Point[8] Position= (15.0292,-20.2005,345.094)
-Point[9] Position= (15.9428,-21.4462,366.416)
-Point[10] Position= (17.6546,-23.7121,403.391)
-Point[11] Position= (18.2265,-24.4781,415.431)
-Point[12] Position= (18.3494,-24.6423,418.026)
-Point[13] Position= (18.4738,-24.8072,420.641)
-Point[14] Position= (18.6263,-25.0112,423.863)
-Point[15] Position= (18.8983,-25.3803,429.646)
-Point[16] Position= (19.6162,-26.3449,444.833)
-Point[17] Position= (24.6086,-33.0494,550.469)
-Point[18] Position= (27.2725,-36.5003,605.741)
-Point[19] Position= (28.2009,-37.6879,624.863)
-Point[20] Position= (28.4623,-38.0243,630.279)
-Point[21] Position= (35.4454,-46.9545,772.795)
-Point[22] Position= (37.6005,-49.8105,817.225)
-Point[23] Position= (38.0188,-50.375,825.873)
-Point[24] Position= (39.5923,-52.5468,859.376)
-Point[25] Position= (42.4519,-56.6356,921.272)
-Point[26] Position= (47.5244,-63.9305,1031.61)
-Point[27] Position= (48.2362,-64.9833,1047.49)
-Point[28] Position= (50.2014,-67.9286,1091.18)
-Point[29] Position= (50.372,-68.1839,1094.95)
-Point[30] Position= (55.2966,-76.0267,1208.07)
-Point[31] Position= (59.5422,-83.0221,1308.74)
-Point[32] Position= (61.3007,-85.9904,1350.35)
-Point[33] Position= (63.544,-89.8191,1403.36)
-Point[34] Position= (70.7967,-102.435,1575.93)
-Point[35] Position= (72.4358,-105.489,1616.92)
-Point[36] Position= (74.7283,-109.807,1674.63)
-Point[37] Position= (78.3316,-116.382,1763.98)
-Point[38] Position= (87.2894,-133.982,2001.09)
-Point[39] Position= (88.9279,-137.073,2043.09)
-Point[40] Position= (89.7691,-138.619,2064.34)
-Point[41] Position= (89.8481,-138.766,2066.35)
-Point[42] Position= (92.1728,-143.247,2126.71)
-Point[43] Position= (93.2188,-145.309,2154.37)
-Point[44] Position= (93.2335,-145.337,2154.75)
-Point[45] Position= (95.9061,-150.545,2223.55)
-Point[46] Position= (96.4644,-151.664,2238.19)
-Point[47] Position= (96.7256,-152.186,2245.01)
-Point[48] Position= (97.0921,-152.909,2254.48)
-Point[49] Position= (97.2214,-153.164,2257.84)
-Point[50] Position= (97.548,-153.808,2266.32)
-Point[51] Position= (98.9454,-156.5,2301.49)
-Point[52] Position= (99.0956,-156.787,2305.28)
-Point[53] Position= (104.018,-166.309,2428.34)
-Point[54] Position= (104.162,-166.593,2432.01)
-Point[55] Position= (104.663,-167.579,2444.66)
-Point[56] Position= (105.628,-169.492,2469.16)
-Point[57] Position= (106.432,-171.064,2489.24)
-Point[58] Position= (106.976,-172.058,2502.29)
-Point[59] Position= (110.026,-177.427,2573.56)
-Point[60] Position= (111.772,-180.446,2614.12)
-Point[61] Position= (116.379,-188.378,2721.63)
-Point[62] Position= (116.437,-188.478,2723)
-Point[63] Position= (117.042,-189.507,2737.02)
-Point[64] Position= (118.518,-191.992,2771.16)
-Point[65] Position= (119.702,-193.989,2798.64)
-Point[66] Position= (120.875,-195.993,2826.16)
-Point[67] Position= (121.908,-197.734,2850.08)
-Point[68] Position= (124.766,-202.532,2917.52)
-Point[69] Position= (125.655,-204.117,2939.7)
-Point[70] Position= (126.81,-206.125,2968)
-Point[71] Position= (128.402,-208.884,3006.67)
-Point[72] Position= (130.499,-212.494,3057.73)
-Point[73] Position= (130.689,-212.826,3062.44)
-Point[74] Position= (130.945,-213.271,3068.73)
-Point[75] Position= (133.869,-218.396,3140.84)
-Point[76] Position= (134.557,-219.585,3157.31)
-Point[77] Position= (134.993,-220.337,3167.72)
-Point[78] Position= (136.178,-222.383,3195.83)
-Point[79] Position= (136.524,-222.989,3204.08)
-Point[80] Position= (139.736,-228.523,3278.63)
-Point[81] Position= (143.444,-234.572,3361.37)
-Point[82] Position= (143.488,-234.643,3362.35)
-Point[83] Position= (144.605,-236.427,3386.91)
-Point[84] Position= (146.094,-238.747,3419.16)
-Point[85] Position= (150.826,-245.991,3522.56)
-Point[86] Position= (151.083,-246.372,3528.09)
-Point[87] Position= (151.494,-246.974,3537.07)
-Point[88] Position= (153.127,-249.416,3574.73)
-Point[89] Position= (153.854,-250.541,3592.1)
-Point[90] Position= (155.182,-252.611,3624.55)
-Point[91] Position= (155.717,-253.419,3637.59)
-Point[92] Position= (158.652,-257.869,3711.29)
-Point[93] Position= (159.086,-258.556,3722.74)
-Point[94] Position= (160.091,-260.165,3749.51)
-Point[95] Position= (163.689,-265.866,3844.68)
-Point[96] Position= (164.332,-266.909,3861.96)
-Point[97] Position= (164.402,-267.02,3863.8)
-Point[98] Position= (166.109,-269.751,3908.42)
-Point[99] Position= (166.507,-270.373,3918.56)
-Point[100] Position= (166.582,-270.489,3920.46)
-Point[101] Position= (168.263,-273.078,3963.71)
-Point[102] Position= (168.66,-273.674,3973.79)
-Point[103] Position= (168.731,-273.782,3975.61)
-Point[104] Position= (169.813,-275.397,4002.84)
-Point[105] Position= (170.447,-276.377,4018.96)
-Point[106] Position= (171.228,-277.583,4038.58)
-Point[107] Position= (171.888,-278.623,4055.49)
-Point[108] Position= (172.032,-278.854,4059.23)
-Point[109] Position= (173.424,-281.145,4095.51)
-Point[110] Position= (173.955,-282.029,4109.5)
-Point[111] Position= (174.872,-283.484,4133.08)
-Point[112] Position= (176.647,-286.296,4178.25)
-Point[113] Position= (181.07,-292.92,4286.58)
-Point[114] Position= (182.805,-295.419,4327.45)
-Point[115] Position= (182.962,-295.643,4331.12)
-Point[116] Position= (184.221,-297.427,4360.48)
-Point[117] Position= (185.854,-299.81,4399.78)
-Point[118] Position= (186.081,-300.144,4405.27)
-Point[119] Position= (189.799,-305.741,4496.55)
-Point[120] Position= (189.984,-306.003,4500.91)
-Point[121] Position= (190.542,-306.789,4514.01)
-Point[122] Position= (194.035,-311.831,4598.65)
-Point[123] Position= (194.373,-312.307,4606.75)
-Point[124] Position= (196.04,-314.7,4646.54)
-Point[125] Position= (198.566,-318.33,4707.23)
-Point[126] Position= (198.847,-318.741,4714.13)
-Point[127] Position= (201.059,-321.926,4767.54)
-Point[128] Position= (203.269,-324.972,4820.1)
-Point[129] Position= (204.339,-326.443,4845.38)
-Point[130] Position= (211.008,-335.807,5001.77)
-Point[131] Position= (212.74,-338.088,5041.3)
-Point[132] Position= (215.946,-342.199,5113.84)
-Point[133] Position= (218.642,-345.553,5173.87)
-Point[134] Position= (220.554,-347.918,5215.78)
-Point[135] Position= (220.633,-348.015,5217.54)
-Point[136] Position= (225.049,-353.679,5320.39)
-Point[137] Position= (225.804,-354.66,5338.17)
-Point[138] Position= (227.421,-356.763,5376.04)
-Point[139] Position= (227.741,-357.19,5383.64)
-Point[140] Position= (229.222,-359.152,5419.14)
-Point[141] Position= (229.81,-359.916,5432.96)
-Point[142] Position= (232.725,-363.73,5501.72)
-Point[143] Position= (234.937,-366.606,5552.94)
-Point[144] Position= (235.081,-366.795,5556.33)
-Point[145] Position= (236.255,-368.301,5583.86)
-Point[146] Position= (236.927,-369.156,5599.69)
-Point[147] Position= (239.392,-372.27,5658)
-Point[148] Position= (243.214,-377.219,5749.64)
-Point[149] Position= (245.397,-380.079,5802.59)
-Point[150] Position= (245.514,-380.231,5805.46)
-Point[151] Position= (250.923,-387.405,5939.1)
-Point[152] Position= (253.436,-390.617,5997.56)
-Point[153] Position= (253.544,-390.753,6000)
-
-TrackID =449 : ParentID=250 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.6774 -26.143 1.60823 keV
-Vertex : 0.253436 -0.390617 5.99756 m    Global time : 29.2179 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (253.436,-390.617,5997.56)
-Point[1] Position= (253.412,-390.643,5997.56)
-
-TrackID =448 : ParentID=250 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 17.7521 -26.6213 -0.685477 keV
-Vertex : 0.250923 -0.387405 5.9391 m    Global time : 28.9316 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (250.923,-387.405,5939.1)
-Point[1] Position= (250.936,-387.424,5939.1)
-
-TrackID =447 : ParentID=250 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.8134 32.5118 2.96776 keV
-Vertex : 0.245514 -0.380231 5.80546 m    Global time : 28.2773 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (245.514,-380.231,5805.46)
-Point[1] Position= (245.527,-380.202,5805.46)
-
-TrackID =446 : ParentID=250 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.0022 -43.7413 0.239609 keV
-Vertex : 0.239392 -0.37227 5.658 m    Global time : 27.5555 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (239.392,-372.27,5658)
-Point[1] Position= (239.442,-372.358,5658)
-
-TrackID =445 : ParentID=250 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.8691 46.1891 5.3986 keV
-Vertex : 0.236927 -0.369156 5.59969 m    Global time : 27.2701 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (236.927,-369.156,5599.69)
-Point[1] Position= (236.975,-369.058,5599.7)
+Point[0] Position= (-323.231,861.789,-5145.12)
+Point[1] Position= (-323.208,861.819,-5145.12)
 
-TrackID =444 : ParentID=250 : TrackStatus=1
+TrackID =415 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 45.1593 8.58676 1.58557 keV
-Vertex : 0.236255 -0.368301 5.58386 m    Global time : 27.1926 ns 
+Original momentum : -18.9403 25.1448 5.20379 keV
+Vertex : -0.307639 0.81782 -4.91753 m    Global time : 16.6665 ns 
   Current trajectory has 2 points.
-Point[0] Position= (236.255,-368.301,5583.86)
-Point[1] Position= (236.328,-368.288,5583.87)
+Point[0] Position= (-307.639,817.82,-4917.53)
+Point[1] Position= (-307.653,817.838,-4917.53)
 
-TrackID =443 : ParentID=250 : TrackStatus=1
+TrackID =414 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.3888 -19.7478 2.23033 keV
-Vertex : 0.235081 -0.366795 5.55633 m    Global time : 27.0579 ns 
+Original momentum : 3.93554 40.4038 6.11545 keV
+Vertex : -0.301068 0.79948 -4.82595 m    Global time : 16.3541 ns 
   Current trajectory has 2 points.
-Point[0] Position= (235.081,-366.795,5556.33)
-Point[1] Position= (235.05,-366.814,5556.33)
+Point[0] Position= (-301.068,799.48,-4825.95)
+Point[1] Position= (-301.063,799.53,-4825.95)
 
-TrackID =442 : ParentID=250 : TrackStatus=1
+TrackID =413 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.17322 32.6065 3.22923 keV
-Vertex : 0.234937 -0.366606 5.55294 m    Global time : 27.0413 ns 
+Original momentum : 32.4906 -2.73607 -3.88411 keV
+Vertex : -0.294288 0.781179 -4.7325 m    Global time : 16.0357 ns 
   Current trajectory has 2 points.
-Point[0] Position= (234.937,-366.606,5552.94)
-Point[1] Position= (234.939,-366.581,5552.94)
+Point[0] Position= (-294.288,781.179,-4732.5)
+Point[1] Position= (-294.264,781.176,-4732.51)
 
-TrackID =441 : ParentID=250 : TrackStatus=1
+TrackID =412 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.765 -7.75907 0.160286 keV
-Vertex : 0.232725 -0.36373 5.50172 m    Global time : 26.7906 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (232.725,-363.73,5501.72)
-Point[1] Position= (232.77,-363.739,5501.72)
+Original momentum : 40.42 -78.2762 -26.565 keV
+Vertex : -0.293782 0.779737 -4.72521 m    Global time : 16.0108 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-293.782,779.737,-4725.21)
+Point[1] Position= (-293.494,779.179,-4725.39)
+Point[2] Position= (-293.466,778.994,-4725.34)
 
-TrackID =440 : ParentID=250 : TrackStatus=1
+TrackID =429 : ParentID=412 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.319156 -47.1099 0.528105 keV
-Vertex : 0.227741 -0.35719 5.38364 m    Global time : 26.2128 ns 
+Original momentum : -44.2479 -7.8368 -3.52181 keV
+Vertex : -0.293494 0.779179 -4.72539 m    Global time : 16.0231 ns 
   Current trajectory has 2 points.
-Point[0] Position= (227.741,-357.19,5383.64)
-Point[1] Position= (227.741,-357.27,5383.64)
+Point[0] Position= (-293.494,779.179,-4725.39)
+Point[1] Position= (-293.562,779.167,-4725.4)
 
-TrackID =439 : ParentID=250 : TrackStatus=1
+TrackID =411 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.4628 32.4032 5.47905 keV
-Vertex : 0.227421 -0.356763 5.37604 m    Global time : 26.1756 ns 
+Original momentum : -30.0301 -10.877 -1.0525 keV
+Vertex : -0.28941 0.767877 -4.6624 m    Global time : 15.7971 ns 
   Current trajectory has 2 points.
-Point[0] Position= (227.421,-356.763,5376.04)
-Point[1] Position= (227.386,-356.72,5376.05)
+Point[0] Position= (-289.41,767.877,-4662.4)
+Point[1] Position= (-289.432,767.869,-4662.4)
 
-TrackID =438 : ParentID=250 : TrackStatus=1
+TrackID =410 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -39.164 1.55301 3.97477 keV
-Vertex : 0.225804 -0.35466 5.33817 m    Global time : 25.9903 ns 
+Original momentum : -24.8473 56.6675 9.40855 keV
+Vertex : -0.26722 0.717062 -4.39541 m    Global time : 14.8875 ns 
   Current trajectory has 2 points.
-Point[0] Position= (225.804,-354.66,5338.17)
-Point[1] Position= (225.759,-354.658,5338.17)
+Point[0] Position= (-267.22,717.062,-4395.41)
+Point[1] Position= (-267.304,717.255,-4395.38)
 
-TrackID =437 : ParentID=250 : TrackStatus=1
+TrackID =409 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.5785 72.3221 11.3473 keV
-Vertex : 0.220633 -0.348015 5.21754 m    Global time : 25.4002 ns 
+Original momentum : -27.5433 18.3514 4.87904 keV
+Vertex : -0.26534 0.712798 -4.37354 m    Global time : 14.8129 ns 
   Current trajectory has 2 points.
-Point[0] Position= (220.633,-348.015,5217.54)
-Point[1] Position= (220.734,-347.622,5217.61)
+Point[0] Position= (-265.34,712.798,-4373.54)
+Point[1] Position= (-265.361,712.812,-4373.54)
 
-TrackID =436 : ParentID=250 : TrackStatus=1
+TrackID =408 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.6032 -24.6729 0.0385517 keV
-Vertex : 0.220554 -0.347918 5.21578 m    Global time : 25.3916 ns 
+Original momentum : 30.4617 13.1698 -0.84778 keV
+Vertex : -0.2636 0.708465 -4.35099 m    Global time : 14.736 ns 
   Current trajectory has 2 points.
-Point[0] Position= (220.554,-347.918,5215.78)
-Point[1] Position= (220.625,-347.961,5215.78)
+Point[0] Position= (-263.6,708.465,-4350.99)
+Point[1] Position= (-263.577,708.476,-4350.99)
 
-TrackID =435 : ParentID=250 : TrackStatus=1
+TrackID =407 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -70.9795 51.289 17.4971 keV
-Vertex : 0.218642 -0.345553 5.17387 m    Global time : 25.1865 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (218.642,-345.553,5173.87)
-Point[1] Position= (218.621,-345.538,5173.87)
-Point[2] Position= (218.288,-345.464,5174.18)
-Point[3] Position= (218.291,-345.474,5174.18)
+Original momentum : -50.7284 21.7232 5.07181 keV
+Vertex : -0.260249 0.7 -4.30812 m    Global time : 14.5898 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-260.249,700,-4308.12)
+Point[1] Position= (-260.377,700.055,-4308.11)
 
-TrackID =450 : ParentID=435 : TrackStatus=1
+TrackID =406 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.7798 36.785 -20.1697 keV
-Vertex : 0.218621 -0.345538 5.17387 m    Global time : 25.187 ns 
+Original momentum : -0.392433 -35.0045 -8.34638 keV
+Vertex : -0.242846 0.652309 -4.08072 m    Global time : 13.8126 ns 
   Current trajectory has 2 points.
-Point[0] Position= (218.621,-345.538,5173.87)
-Point[1] Position= (218.606,-345.486,5173.84)
+Point[0] Position= (-242.846,652.309,-4080.72)
+Point[1] Position= (-242.846,652.276,-4080.73)
 
-TrackID =434 : ParentID=250 : TrackStatus=1
+TrackID =405 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.1497 -47.9482 0.302821 keV
-Vertex : 0.215946 -0.342199 5.11384 m    Global time : 24.8929 ns 
+Original momentum : -24.1643 -27.6169 -4.77254 keV
+Vertex : -0.210469 0.579362 -3.69513 m    Global time : 12.4991 ns 
   Current trajectory has 2 points.
-Point[0] Position= (215.946,-342.199,5113.84)
-Point[1] Position= (215.993,-342.304,5113.84)
+Point[0] Position= (-210.469,579.362,-3695.13)
+Point[1] Position= (-210.493,579.335,-3695.13)
 
-TrackID =433 : ParentID=250 : TrackStatus=1
+TrackID =404 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -203.452 -261.7 171.658 keV
-Vertex : 0.211008 -0.335807 5.00177 m    Global time : 24.3448 ns 
-  Current trajectory has 26 points.
-Point[0] Position= (211.008,-335.807,5001.77)
-Point[1] Position= (209.238,-338.083,5003.26)
-Point[2] Position= (199.272,-347.067,5009.91)
-Point[3] Position= (186.388,-365.567,5013.34)
-Point[4] Position= (176.626,-384.991,5013.88)
-Point[5] Position= (174.992,-392.433,5017.09)
-Point[6] Position= (174.786,-392.806,5017.46)
-Point[7] Position= (167.421,-403.441,5025.89)
-Point[8] Position= (167.647,-408.297,5026.36)
-Point[9] Position= (169.908,-417.169,5031.16)
-Point[10] Position= (177.069,-435.085,5033.45)
-Point[11] Position= (186.37,-443.822,5041.1)
-Point[12] Position= (191.787,-449.648,5050.62)
-Point[13] Position= (191.861,-450.098,5052.88)
-Point[14] Position= (190.665,-452.595,5058.61)
-Point[15] Position= (189.814,-452.117,5061.28)
-Point[16] Position= (189.015,-450.691,5067.44)
-Point[17] Position= (188.225,-450.387,5072.79)
-Point[18] Position= (185.477,-447.817,5074.72)
-Point[19] Position= (182.872,-448.395,5072.77)
-Point[20] Position= (182.868,-448.397,5072.76)
-Point[21] Position= (181.677,-448.851,5072.63)
-Point[22] Position= (180.274,-449.604,5072.79)
-Point[23] Position= (179.703,-449.953,5072.17)
-Point[24] Position= (179.636,-449.988,5072.23)
-Point[25] Position= (179.686,-450.005,5072.19)
+Original momentum : 12.9953 29.5269 3.59837 keV
+Vertex : -0.208233 0.574096 -3.66826 m    Global time : 12.4075 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-208.233,574.096,-3668.26)
+Point[1] Position= (-208.223,574.118,-3668.26)
 
-TrackID =462 : ParentID=433 : TrackStatus=1
+TrackID =403 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.9416 19.2535 -30.185 keV
-Vertex : 0.181677 -0.448851 5.07263 m    Global time : 25.6023 ns 
+Original momentum : 22.7367 56.735 5.36294 keV
+Vertex : -0.206319 0.569575 -3.6447 m    Global time : 12.3272 ns 
   Current trajectory has 2 points.
-Point[0] Position= (181.677,-448.851,5072.63)
-Point[1] Position= (181.662,-448.83,5072.59)
+Point[0] Position= (-206.319,569.575,-3644.7)
+Point[1] Position= (-206.245,569.758,-3644.68)
 
-TrackID =461 : ParentID=433 : TrackStatus=1
+TrackID =402 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.3353 -19.8424 -25.4757 keV
-Vertex : 0.182868 -0.448397 5.07276 m    Global time : 25.5857 ns 
+Original momentum : 405.518 -31.7728 -214.711 keV
+Vertex : -0.170645 0.482691 -3.14797 m    Global time : 10.6409 ns 
+  Current trajectory has 30 points.
+Point[0] Position= (-170.645,482.691,-3147.97)
+Point[1] Position= (-148.469,480.953,-3159.71)
+Point[2] Position= (-146.893,480.969,-3160.26)
+Point[3] Position= (-142.651,480.328,-3161.41)
+Point[4] Position= (-78.5186,469.798,-3183.55)
+Point[5] Position= (-65.7714,461.27,-3178.91)
+Point[6] Position= (-61.764,453.315,-3174.16)
+Point[7] Position= (-59.7913,450.739,-3173.18)
+Point[8] Position= (-46.2707,434.023,-3166.68)
+Point[9] Position= (-28.2576,410.842,-3166.9)
+Point[10] Position= (-27.285,406.703,-3168.54)
+Point[11] Position= (-26.3356,403.35,-3170.88)
+Point[12] Position= (-19.66,380.28,-3191.64)
+Point[13] Position= (-12.9392,378.37,-3196.24)
+Point[14] Position= (-10.9778,377.318,-3197.39)
+Point[15] Position= (-10.1794,377.066,-3197.96)
+Point[16] Position= (4.35888,374.017,-3209.07)
+Point[17] Position= (12.2747,373.596,-3211.96)
+Point[18] Position= (24.7337,374.5,-3219.58)
+Point[19] Position= (33.46,382.439,-3219.79)
+Point[20] Position= (38.1028,384.165,-3218.64)
+Point[21] Position= (40.134,385.016,-3217.14)
+Point[22] Position= (41.678,384.654,-3217.02)
+Point[23] Position= (43.249,381.313,-3219.02)
+Point[24] Position= (41.6784,379.014,-3220.44)
+Point[25] Position= (41.3416,378.828,-3220.56)
+Point[26] Position= (39.2509,378.567,-3220.65)
+Point[27] Position= (39.1907,378.596,-3220.66)
+Point[28] Position= (38.4486,379.568,-3221.27)
+Point[29] Position= (38.3128,379.878,-3221.07)
+
+TrackID =448 : ParentID=402 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -35.828 -21.8344 8.39197 keV
+Vertex : 0.0391907 0.378596 -3.22066 m    Global time : 12.5017 ns 
   Current trajectory has 2 points.
-Point[0] Position= (182.868,-448.397,5072.76)
-Point[1] Position= (182.877,-448.413,5072.74)
+Point[0] Position= (39.1907,378.596,-3220.66)
+Point[1] Position= (39.1417,378.567,-3220.65)
 
-TrackID =460 : ParentID=433 : TrackStatus=1
+TrackID =447 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -52.0691 -7.03252 -4.60162 keV
-Vertex : 0.189814 -0.452117 5.06128 m    Global time : 25.3933 ns 
+Original momentum : 6.14832 -44.7377 -20.0851 keV
+Vertex : 0.0413416 0.378828 -3.22056 m    Global time : 12.4724 ns 
   Current trajectory has 2 points.
-Point[0] Position= (189.814,-452.117,5061.28)
-Point[1] Position= (189.697,-452.132,5061.27)
+Point[0] Position= (41.3416,378.828,-3220.56)
+Point[1] Position= (41.3533,378.742,-3220.6)
 
-TrackID =459 : ParentID=433 : TrackStatus=1
+TrackID =446 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 39.3504 -23.55 17.258 keV
-Vertex : 0.190665 -0.452595 5.05861 m    Global time : 25.3684 ns 
+Original momentum : 66.2538 25.4622 7.80142 keV
+Vertex : 0.041678 0.384654 -3.21702 m    Global time : 12.3874 ns 
   Current trajectory has 2 points.
-Point[0] Position= (190.665,-452.595,5058.61)
-Point[1] Position= (190.738,-452.639,5058.65)
+Point[0] Position= (41.678,384.654,-3217.02)
+Point[1] Position= (41.991,384.774,-3216.98)
 
-TrackID =458 : ParentID=433 : TrackStatus=1
+TrackID =445 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.1118 30.2807 6.73975 keV
-Vertex : 0.191861 -0.450098 5.05288 m    Global time : 25.3155 ns 
+Original momentum : 5.43443 35.8317 47.8735 keV
+Vertex : 0.040134 0.385016 -3.21714 m    Global time : 12.3725 ns 
   Current trajectory has 2 points.
-Point[0] Position= (191.861,-450.098,5052.88)
-Point[1] Position= (191.81,-450.05,5052.89)
+Point[0] Position= (40.134,385.016,-3217.14)
+Point[1] Position= (40.1506,385.126,-3216.99)
 
-TrackID =457 : ParentID=433 : TrackStatus=1
+TrackID =444 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.90076 5.52784 33.6458 keV
-Vertex : 0.169908 -0.417169 5.03116 m    Global time : 24.9615 ns 
+Original momentum : 17.7998 39.4041 -45.0349 keV
+Vertex : 0.0381028 0.384165 -3.21864 m    Global time : 12.3488 ns 
   Current trajectory has 2 points.
-Point[0] Position= (169.908,-417.169,5031.16)
-Point[1] Position= (169.912,-417.164,5031.19)
+Point[0] Position= (38.1028,384.165,-3218.64)
+Point[1] Position= (38.1629,384.297,-3218.79)
 
-TrackID =456 : ParentID=433 : TrackStatus=1
+TrackID =443 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.5958 -22.6132 -28.1087 keV
-Vertex : 0.167647 -0.408297 5.02636 m    Global time : 24.8929 ns 
+Original momentum : -2.3973 -37.6462 -9.06309 keV
+Vertex : 0.0122747 0.373596 -3.21196 m    Global time : 12.1089 ns 
   Current trajectory has 2 points.
-Point[0] Position= (167.647,-408.297,5026.36)
-Point[1] Position= (167.606,-408.331,5026.32)
+Point[0] Position= (12.2747,373.596,-3211.96)
+Point[1] Position= (12.2721,373.555,-3211.97)
 
-TrackID =455 : ParentID=433 : TrackStatus=1
+TrackID =442 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.3893 7.23076 27.5479 keV
-Vertex : 0.174786 -0.392806 5.01746 m    Global time : 24.7644 ns 
+Original momentum : 22.221 7.2986 57.0721 keV
+Vertex : 0.00435888 0.374017 -3.20907 m    Global time : 12.0492 ns 
   Current trajectory has 2 points.
-Point[0] Position= (174.786,-392.806,5017.46)
-Point[1] Position= (174.804,-392.799,5017.48)
+Point[0] Position= (4.35888,374.017,-3209.07)
+Point[1] Position= (4.43164,374.041,-3208.88)
 
-TrackID =454 : ParentID=433 : TrackStatus=1
+TrackID =441 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.1649 -19.7852 -32.928 keV
-Vertex : 0.174992 -0.392433 5.01709 m    Global time : 24.7609 ns 
+Original momentum : 21.8438 -29.4041 35.5159 keV
+Vertex : -0.0101794 0.377066 -3.19796 m    Global time : 11.9253 ns 
   Current trajectory has 2 points.
-Point[0] Position= (174.992,-392.433,5017.09)
-Point[1] Position= (174.954,-392.464,5017.04)
+Point[0] Position= (-10.1794,377.066,-3197.96)
+Point[1] Position= (-10.1343,377.005,-3197.89)
 
-TrackID =453 : ParentID=433 : TrackStatus=1
+TrackID =440 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.9262 14.2527 29.8205 keV
-Vertex : 0.176626 -0.384991 5.01388 m    Global time : 24.7103 ns 
+Original momentum : -0.593695 -30.2215 12.1718 keV
+Vertex : -0.0109778 0.377318 -3.19739 m    Global time : 11.9187 ns 
   Current trajectory has 2 points.
-Point[0] Position= (176.626,-384.991,5013.88)
-Point[1] Position= (176.62,-384.98,5013.9)
+Point[0] Position= (-10.9778,377.318,-3197.39)
+Point[1] Position= (-10.9783,377.296,-3197.39)
 
-TrackID =452 : ParentID=433 : TrackStatus=1
+TrackID =439 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.1945 14.1501 29.2911 keV
-Vertex : 0.199272 -0.347067 5.00991 m    Global time : 24.4485 ns 
+Original momentum : 9.55662 29.3566 -11.1311 keV
+Vertex : -0.0129392 0.37837 -3.19624 m    Global time : 11.9023 ns 
   Current trajectory has 2 points.
-Point[0] Position= (199.272,-347.067,5009.91)
-Point[1] Position= (199.26,-347.055,5009.93)
+Point[0] Position= (-12.9392,378.37,-3196.24)
+Point[1] Position= (-12.9319,378.392,-3196.25)
 
-TrackID =451 : ParentID=433 : TrackStatus=1
+TrackID =438 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.6134 -28.006 18.7948 keV
-Vertex : 0.209238 -0.338083 5.00326 m    Global time : 24.3631 ns 
+Original momentum : 19.999 21.8107 -18.3417 keV
+Vertex : -0.0263356 0.40335 -3.17088 m    Global time : 11.656 ns 
   Current trajectory has 2 points.
-Point[0] Position= (209.238,-338.083,5003.26)
-Point[1] Position= (209.309,-338.138,5003.3)
+Point[0] Position= (-26.3356,403.35,-3170.88)
+Point[1] Position= (-26.3183,403.369,-3170.89)
 
-TrackID =432 : ParentID=250 : TrackStatus=1
+TrackID =437 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.9405 36.0295 3.68768 keV
-Vertex : 0.204339 -0.326443 4.84538 m    Global time : 23.5806 ns 
+Original momentum : 14.7836 -16.6383 29.2035 keV
+Vertex : -0.027285 0.406703 -3.16854 m    Global time : 11.6309 ns 
   Current trajectory has 2 points.
-Point[0] Position= (204.339,-326.443,4845.38)
-Point[1] Position= (204.351,-326.405,4845.38)
+Point[0] Position= (-27.285,406.703,-3168.54)
+Point[1] Position= (-27.2706,406.687,-3168.51)
 
-TrackID =431 : ParentID=250 : TrackStatus=1
+TrackID =436 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.4708 -33.4747 0.564853 keV
-Vertex : 0.203269 -0.324972 4.8201 m    Global time : 23.4571 ns 
+Original momentum : 21.638 -6.17359 27.3801 keV
+Vertex : -0.0282576 0.410842 -3.1669 m    Global time : 11.6039 ns 
   Current trajectory has 2 points.
-Point[0] Position= (203.269,-324.972,4820.1)
-Point[1] Position= (203.255,-325.004,4820.1)
+Point[0] Position= (-28.2576,410.842,-3166.9)
+Point[1] Position= (-28.2381,410.837,-3166.88)
 
-TrackID =430 : ParentID=250 : TrackStatus=1
+TrackID =435 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.8041 -32.4921 2.14436 keV
-Vertex : 0.201059 -0.321926 4.76754 m    Global time : 23.2003 ns 
+Original momentum : 31.5511 22.1049 56.6013 keV
+Vertex : -0.0462707 0.434023 -3.16668 m    Global time : 11.4358 ns 
   Current trajectory has 2 points.
-Point[0] Position= (201.059,-321.926,4767.54)
-Point[1] Position= (201.015,-321.973,4767.54)
+Point[0] Position= (-46.2707,434.023,-3166.68)
+Point[1] Position= (-46.1366,434.117,-3166.44)
 
-TrackID =429 : ParentID=250 : TrackStatus=1
+TrackID =434 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.545 -44.2303 1.02677 keV
-Vertex : 0.198847 -0.318741 4.71413 m    Global time : 22.9394 ns 
+Original momentum : 21.5854 3.67441 -33.6387 keV
+Vertex : -0.0597913 0.450739 -3.17318 m    Global time : 11.3112 ns 
   Current trajectory has 2 points.
-Point[0] Position= (198.847,-318.741,4714.13)
-Point[1] Position= (198.984,-318.884,4714.14)
+Point[0] Position= (-59.7913,450.739,-3173.18)
+Point[1] Position= (-59.7657,450.744,-3173.22)
 
-TrackID =428 : ParentID=250 : TrackStatus=1
+TrackID =433 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.347 -18.5604 0.215471 keV
-Vertex : 0.198566 -0.31833 4.70723 m    Global time : 22.9057 ns 
+Original momentum : -25.705 -19.1202 -9.55016 keV
+Vertex : -0.0657714 0.46127 -3.17891 m    Global time : 11.2375 ns 
   Current trajectory has 2 points.
-Point[0] Position= (198.566,-318.33,4707.23)
-Point[1] Position= (198.635,-318.36,4707.23)
+Point[0] Position= (-65.7714,461.27,-3178.91)
+Point[1] Position= (-65.7918,461.255,-3178.92)
 
-TrackID =427 : ParentID=250 : TrackStatus=1
+TrackID =432 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.5701 16.8734 1.37813 keV
-Vertex : 0.19604 -0.3147 4.64654 m    Global time : 22.6092 ns 
+Original momentum : -22.239 -47.5803 -47.341 keV
+Vertex : -0.142651 0.480328 -3.16141 m    Global time : 10.7973 ns 
   Current trajectory has 2 points.
-Point[0] Position= (196.04,-314.7,4646.54)
-Point[1] Position= (196.062,-314.687,4646.54)
+Point[0] Position= (-142.651,480.328,-3161.41)
+Point[1] Position= (-142.754,480.108,-3161.63)
 
-TrackID =426 : ParentID=250 : TrackStatus=1
+TrackID =431 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 66.0034 46.7746 9.47175 keV
-Vertex : 0.194373 -0.312307 4.60675 m    Global time : 22.4148 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (194.373,-312.307,4606.75)
-Point[1] Position= (194.808,-311.999,4606.82)
-Point[2] Position= (194.814,-311.994,4606.81)
+Original momentum : 8.64711 32.5218 12.0229 keV
+Vertex : -0.146893 0.480969 -3.16026 m    Global time : 10.7748 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-146.893,480.969,-3160.26)
+Point[1] Position= (-146.885,480.998,-3160.25)
 
-TrackID =425 : ParentID=250 : TrackStatus=1
+TrackID =430 : ParentID=402 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -17.2651 -48.025 1.60994 keV
-Vertex : 0.194035 -0.311831 4.59865 m    Global time : 22.3753 ns 
+Original momentum : 5.29062 69.74 11.4987 keV
+Vertex : -0.148469 0.480953 -3.15971 m    Global time : 10.7663 ns 
   Current trajectory has 2 points.
-Point[0] Position= (194.035,-311.831,4598.65)
-Point[1] Position= (194,-311.93,4598.66)
+Point[0] Position= (-148.469,480.953,-3159.71)
+Point[1] Position= (-148.444,481.277,-3159.66)
 
-TrackID =424 : ParentID=250 : TrackStatus=1
+TrackID =401 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -41.2332 -11.2648 3.67707 keV
-Vertex : 0.189799 -0.305741 4.49655 m    Global time : 21.8766 ns 
+Original momentum : 55.4847 -7.69397 -8.05389 keV
+Vertex : -0.157951 0.449539 -2.96617 m    Global time : 10.023 ns 
   Current trajectory has 2 points.
-Point[0] Position= (189.799,-305.741,4496.55)
-Point[1] Position= (189.742,-305.757,4496.56)
+Point[0] Position= (-157.951,449.539,-2966.17)
+Point[1] Position= (-157.804,449.519,-2966.2)
 
-TrackID =423 : ParentID=250 : TrackStatus=1
+TrackID =400 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.6615 -29.1714 -0.843547 keV
-Vertex : 0.186081 -0.300144 4.40527 m    Global time : 21.4309 ns 
+Original momentum : -44.6664 -15.3191 -2.21208 keV
+Vertex : -0.150879 0.42922 -2.84932 m    Global time : 9.62666 ns 
   Current trajectory has 2 points.
-Point[0] Position= (186.081,-300.144,4405.27)
-Point[1] Position= (186.092,-300.166,4405.27)
+Point[0] Position= (-150.879,429.22,-2849.32)
+Point[1] Position= (-150.956,429.193,-2849.33)
 
-TrackID =422 : ParentID=250 : TrackStatus=1
+TrackID =399 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.71807 -31.6385 -0.154474 keV
-Vertex : 0.185854 -0.29981 4.39978 m    Global time : 21.4041 ns 
+Original momentum : 29.4068 -19.887 -6.54673 keV
+Vertex : -0.137641 0.392679 -2.62917 m    Global time : 8.88091 ns 
   Current trajectory has 2 points.
-Point[0] Position= (185.854,-299.81,4399.78)
-Point[1] Position= (185.849,-299.834,4399.78)
+Point[0] Position= (-137.641,392.679,-2629.17)
+Point[1] Position= (-137.613,392.66,-2629.17)
 
-TrackID =421 : ParentID=250 : TrackStatus=1
+TrackID =398 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.7642 6.82337 1.28922 keV
-Vertex : 0.184221 -0.297427 4.36048 m    Global time : 21.2122 ns 
+Original momentum : -11.3562 -34.9666 -6.32979 keV
+Vertex : -0.132581 0.380783 -2.55514 m    Global time : 8.63022 ns 
   Current trajectory has 2 points.
-Point[0] Position= (184.221,-297.427,4360.48)
-Point[1] Position= (184.281,-297.417,4360.48)
+Point[0] Position= (-132.581,380.783,-2555.14)
+Point[1] Position= (-132.592,380.748,-2555.14)
 
-TrackID =420 : ParentID=250 : TrackStatus=1
+TrackID =397 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -4.55103 -46.5891 0.499043 keV
-Vertex : 0.182962 -0.295643 4.33112 m    Global time : 21.0688 ns 
+Original momentum : -9.60037 32.7777 4.76009 keV
+Vertex : -0.119877 0.351537 -2.37945 m    Global time : 8.03461 ns 
   Current trajectory has 2 points.
-Point[0] Position= (182.962,-295.643,4331.12)
-Point[1] Position= (182.954,-295.721,4331.12)
+Point[0] Position= (-119.877,351.537,-2379.45)
+Point[1] Position= (-119.885,351.565,-2379.45)
 
-TrackID =419 : ParentID=250 : TrackStatus=1
+TrackID =396 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.8586 12.0417 1.13168 keV
-Vertex : 0.182805 -0.295419 4.32745 m    Global time : 21.0509 ns 
+Original momentum : -57.5095 3.0824 1.27879 keV
+Vertex : -0.119221 0.350017 -2.3699 m    Global time : 8.00228 ns 
   Current trajectory has 2 points.
-Point[0] Position= (182.805,-295.419,4327.45)
-Point[1] Position= (182.836,-295.408,4327.45)
+Point[0] Position= (-119.221,350.017,-2369.9)
+Point[1] Position= (-119.38,350.026,-2369.9)
 
-TrackID =418 : ParentID=250 : TrackStatus=1
+TrackID =395 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.7753 99.1645 20.4847 keV
-Vertex : 0.174872 -0.283484 4.13308 m    Global time : 20.102 ns 
+Original momentum : 76.5595 29.9048 -7.28747 keV
+Vertex : -0.118077 0.347487 -2.35396 m    Global time : 7.94829 ns 
   Current trajectory has 3 points.
-Point[0] Position= (174.872,-283.484,4133.08)
-Point[1] Position= (174.919,-283.26,4133.12)
-Point[2] Position= (175.198,-282.842,4133.17)
+Point[0] Position= (-118.077,347.487,-2353.96)
+Point[1] Position= (-117.555,347.691,-2354.01)
+Point[2] Position= (-117.548,347.624,-2353.99)
 
-TrackID =463 : ParentID=418 : TrackStatus=1
+TrackID =394 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.9338 -1.25383 -60.3432 keV
-Vertex : 0.174919 -0.28326 4.13312 m    Global time : 20.1059 ns 
+Original momentum : 46.2698 29.5655 -1.35793 keV
+Vertex : -0.112569 0.334055 -2.26809 m    Global time : 7.65777 ns 
   Current trajectory has 2 points.
-Point[0] Position= (174.919,-283.26,4133.12)
-Point[1] Position= (174.961,-283.264,4132.92)
+Point[0] Position= (-112.569,334.055,-2268.09)
+Point[1] Position= (-112.455,334.127,-2268.09)
 
-TrackID =417 : ParentID=250 : TrackStatus=1
+TrackID =393 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.7028 34.8184 5.30551 keV
-Vertex : 0.173955 -0.282029 4.1095 m    Global time : 19.9869 ns 
+Original momentum : -3.49992 -54.1535 -11.5252 keV
+Vertex : -0.110045 0.327705 -2.22894 m    Global time : 7.52522 ns 
   Current trajectory has 2 points.
-Point[0] Position= (173.955,-282.029,4109.5)
-Point[1] Position= (173.93,-281.986,4109.51)
+Point[0] Position= (-110.045,327.705,-2228.94)
+Point[1] Position= (-110.054,327.569,-2228.97)
 
-TrackID =416 : ParentID=250 : TrackStatus=1
+TrackID =392 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.6014 25.369 2.57477 keV
-Vertex : 0.173424 -0.281145 4.09551 m    Global time : 19.9187 ns 
+Original momentum : 33.164 39.9143 1.52845 keV
+Vertex : -0.110004 0.327607 -2.22833 m    Global time : 7.52314 ns 
   Current trajectory has 2 points.
-Point[0] Position= (173.424,-281.145,4095.51)
-Point[1] Position= (173.452,-281.119,4095.52)
+Point[0] Position= (-110.004,327.607,-2228.33)
+Point[1] Position= (-109.933,327.693,-2228.33)
 
-TrackID =415 : ParentID=250 : TrackStatus=1
+TrackID =391 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.5671 54.0071 7.6482 keV
-Vertex : 0.172032 -0.278854 4.05923 m    Global time : 19.7416 ns 
+Original momentum : 40.2708 -2.63215 -4.71894 keV
+Vertex : -0.106308 0.318565 -2.17054 m    Global time : 7.32762 ns 
   Current trajectory has 2 points.
-Point[0] Position= (172.032,-278.854,4059.23)
-Point[1] Position= (172.125,-278.678,4059.26)
+Point[0] Position= (-106.308,318.565,-2170.54)
+Point[1] Position= (-106.259,318.561,-2170.55)
 
-TrackID =414 : ParentID=250 : TrackStatus=1
+TrackID =390 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.26445 34.8357 4.04473 keV
-Vertex : 0.171888 -0.278623 4.05549 m    Global time : 19.7233 ns 
+Original momentum : -36.5817 -1.57548 0.849601 keV
+Vertex : -0.0938131 0.287005 -1.96669 m    Global time : 6.63826 ns 
   Current trajectory has 2 points.
-Point[0] Position= (171.888,-278.623,4055.49)
-Point[1] Position= (171.885,-278.592,4055.49)
+Point[0] Position= (-93.8131,287.005,-1966.69)
+Point[1] Position= (-93.8485,287.003,-1966.69)
 
-TrackID =413 : ParentID=250 : TrackStatus=1
+TrackID =389 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 45.2949 -16.6186 0.53373 keV
-Vertex : 0.171228 -0.277583 4.03858 m    Global time : 19.6408 ns 
+Original momentum : -31.0098 7.45372 2.14864 keV
+Vertex : -0.0931161 0.285411 -1.95599 m    Global time : 6.6021 ns 
   Current trajectory has 2 points.
-Point[0] Position= (171.228,-277.583,4038.58)
-Point[1] Position= (171.309,-277.613,4038.58)
+Point[0] Position= (-93.1161,285.411,-1955.99)
+Point[1] Position= (-93.1384,285.417,-1955.99)
 
-TrackID =412 : ParentID=250 : TrackStatus=1
+TrackID =388 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -60.4281 86.5013 24.268 keV
-Vertex : 0.170447 -0.276377 4.01896 m    Global time : 19.5451 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (170.447,-276.377,4018.96)
-Point[1] Position= (169.719,-275.334,4019.25)
-Point[2] Position= (169.852,-275.291,4019.28)
+Original momentum : 27.2902 -252.968 -107.937 keV
+Vertex : -0.090946 0.280533 -1.92186 m    Global time : 6.48685 ns 
+  Current trajectory has 16 points.
+Point[0] Position= (-90.946,280.533,-1921.86)
+Point[1] Position= (-90.4454,275.892,-1923.84)
+Point[2] Position= (-90.6909,274.81,-1924.21)
+Point[3] Position= (-94.2985,260.498,-1926.47)
+Point[4] Position= (-93.0032,249.296,-1928.28)
+Point[5] Position= (-93.8157,248.545,-1919.1)
+Point[6] Position= (-92.1724,251.097,-1916.8)
+Point[7] Position= (-90.6729,251.581,-1915.16)
+Point[8] Position= (-87.3301,252.753,-1912.77)
+Point[9] Position= (-86.4786,253.038,-1911.59)
+Point[10] Position= (-83.8659,252.632,-1909.77)
+Point[11] Position= (-82.6899,251.098,-1908.12)
+Point[12] Position= (-82.2487,250.876,-1906.37)
+Point[13] Position= (-81.6588,249.832,-1906.13)
+Point[14] Position= (-81.6265,249.625,-1906.4)
+Point[15] Position= (-81.6295,249.627,-1906.44)
 
-TrackID =411 : ParentID=250 : TrackStatus=1
+TrackID =457 : ParentID=388 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.4692 119.104 28.7312 keV
-Vertex : 0.169813 -0.275397 4.00284 m    Global time : 19.4664 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (169.813,-275.397,4002.84)
-Point[1] Position= (170.376,-273.558,4003.29)
-Point[2] Position= (169.794,-272.876,4004.49)
-Point[3] Position= (169.685,-272.875,4005.16)
-Point[4] Position= (169.595,-272.949,4005.14)
+Original momentum : 36.6004 -10.8891 -2.92114 keV
+Vertex : -0.0816265 0.249625 -1.9064 m    Global time : 7.03566 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-81.6265,249.625,-1906.4)
+Point[1] Position= (-81.5873,249.614,-1906.4)
 
-TrackID =464 : ParentID=411 : TrackStatus=1
+TrackID =456 : ParentID=388 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.91067 -1.85063 36.8613 keV
-Vertex : 0.169685 -0.272875 4.00516 m    Global time : 19.5294 ns 
+Original momentum : 42.4546 -3.04137 7.46032 keV
+Vertex : -0.0816588 0.249832 -1.90613 m    Global time : 7.02769 ns 
   Current trajectory has 2 points.
-Point[0] Position= (169.685,-272.875,4005.16)
-Point[1] Position= (169.678,-272.877,4005.2)
+Point[0] Position= (-81.6588,249.832,-1906.13)
+Point[1] Position= (-81.5994,249.828,-1906.12)
 
-TrackID =410 : ParentID=250 : TrackStatus=1
+TrackID =455 : ParentID=388 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -16.0943 40.0661 5.71433 keV
-Vertex : 0.16866 -0.273674 3.97379 m    Global time : 19.3247 ns 
+Original momentum : 31.8284 14.7477 -8.68863 keV
+Vertex : -0.0838659 0.252632 -1.90977 m    Global time : 6.95061 ns 
   Current trajectory has 2 points.
-Point[0] Position= (168.66,-273.674,3973.79)
-Point[1] Position= (168.637,-273.617,3973.8)
+Point[0] Position= (-83.8659,252.632,-1909.77)
+Point[1] Position= (-83.836,252.646,-1909.78)
 
-TrackID =409 : ParentID=250 : TrackStatus=1
+TrackID =454 : ParentID=388 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -83.0772 -8.75982 12.8631 keV
-Vertex : 0.168263 -0.273078 3.96371 m    Global time : 19.2755 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (168.263,-273.078,3963.71)
-Point[1] Position= (167.723,-273.135,3963.79)
-Point[2] Position= (167.782,-273.055,3963.84)
+Original momentum : -1.60177 35.366 10.5583 keV
+Vertex : -0.0864786 0.253038 -1.91159 m    Global time : 6.91501 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-86.4786,253.038,-1911.59)
+Point[1] Position= (-86.4802,253.072,-1911.58)
 
-TrackID =465 : ParentID=409 : TrackStatus=1
+TrackID =453 : ParentID=388 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.8838 22.0388 -8.53089 keV
-Vertex : 0.167723 -0.273135 3.96379 m    Global time : 19.2868 ns 
+Original momentum : 25.406 14.9299 -21.5902 keV
+Vertex : -0.0873301 0.252753 -1.91277 m    Global time : 6.89918 ns 
   Current trajectory has 2 points.
-Point[0] Position= (167.723,-273.135,3963.79)
-Point[1] Position= (167.706,-273.118,3963.79)
+Point[0] Position= (-87.3301,252.753,-1912.77)
+Point[1] Position= (-87.3056,252.767,-1912.8)
 
-TrackID =408 : ParentID=250 : TrackStatus=1
+TrackID =452 : ParentID=388 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 19.1676 -50.5253 0.342573 keV
-Vertex : 0.166582 -0.270489 3.92046 m    Global time : 19.0646 ns 
+Original momentum : 14.8309 -36.2505 -2.49297 keV
+Vertex : -0.0906729 0.251581 -1.91516 m    Global time : 6.85827 ns 
   Current trajectory has 2 points.
-Point[0] Position= (166.582,-270.489,3920.46)
-Point[1] Position= (166.627,-270.609,3920.46)
+Point[0] Position= (-90.6729,251.581,-1915.16)
+Point[1] Position= (-90.6562,251.541,-1915.17)
 
-TrackID =407 : ParentID=250 : TrackStatus=1
+TrackID =451 : ParentID=388 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.85241 32.288 3.93836 keV
-Vertex : 0.166507 -0.270373 3.91856 m    Global time : 19.0553 ns 
+Original momentum : -0.607627 38.2801 -10.4161 keV
+Vertex : -0.0921724 0.251097 -1.9168 m    Global time : 6.83761 ns 
   Current trajectory has 2 points.
-Point[0] Position= (166.507,-270.373,3918.56)
-Point[1] Position= (166.5,-270.347,3918.56)
+Point[0] Position= (-92.1724,251.097,-1916.8)
+Point[1] Position= (-92.1731,251.141,-1916.81)
 
-TrackID =406 : ParentID=250 : TrackStatus=1
+TrackID =450 : ParentID=388 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.2346 6.47333 0.919729 keV
-Vertex : 0.166109 -0.269751 3.90842 m    Global time : 19.0058 ns 
+Original momentum : 10.3211 2.54222 -34.5529 keV
+Vertex : -0.0906909 0.27481 -1.92421 m    Global time : 6.53079 ns 
   Current trajectory has 2 points.
-Point[0] Position= (166.109,-269.751,3908.42)
-Point[1] Position= (166.145,-269.745,3908.42)
+Point[0] Position= (-90.6909,274.81,-1924.21)
+Point[1] Position= (-90.6812,274.813,-1924.24)
 
-TrackID =405 : ParentID=250 : TrackStatus=1
+TrackID =449 : ParentID=388 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.424 9.42942 3.45078 keV
-Vertex : 0.164402 -0.26702 3.8638 m    Global time : 18.7883 ns 
+Original momentum : 17.6945 4.67211 -26.1777 keV
+Vertex : -0.0904454 0.275892 -1.92384 m    Global time : 6.5224 ns 
   Current trajectory has 2 points.
-Point[0] Position= (164.402,-267.02,3863.8)
-Point[1] Position= (164.375,-267.013,3863.81)
+Point[0] Position= (-90.4454,275.892,-1923.84)
+Point[1] Position= (-90.4327,275.896,-1923.86)
 
-TrackID =404 : ParentID=250 : TrackStatus=1
+TrackID =387 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -36.1225 -9.00316 2.81515 keV
-Vertex : 0.164332 -0.266909 3.86196 m    Global time : 18.7792 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (164.332,-266.909,3861.96)
-Point[1] Position= (164.295,-266.918,3861.96)
+Original momentum : 100.765 30.0322 -12.8613 keV
+Vertex : -0.0908042 0.280212 -1.91952 m    Global time : 6.47898 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-90.8042,280.212,-1919.52)
+Point[1] Position= (-89.6327,280.561,-1919.67)
+Point[2] Position= (-89.4643,280.499,-1919.57)
+Point[3] Position= (-89.4106,280.367,-1919.55)
 
-TrackID =403 : ParentID=250 : TrackStatus=1
+TrackID =458 : ParentID=387 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.9794 -30.4469 -0.733108 keV
-Vertex : 0.160091 -0.260165 3.74951 m    Global time : 18.2309 ns 
+Original momentum : 16.4152 12.8692 32.1856 keV
+Vertex : -0.0894643 0.280499 -1.91957 m    Global time : 6.50386 ns 
   Current trajectory has 2 points.
-Point[0] Position= (160.091,-260.165,3749.51)
-Point[1] Position= (160.106,-260.191,3749.51)
+Point[0] Position= (-89.4643,280.499,-1919.57)
+Point[1] Position= (-89.4467,280.513,-1919.54)
 
-TrackID =402 : ParentID=250 : TrackStatus=1
+TrackID =386 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 104.462 -6.46995 11.2945 keV
-Vertex : 0.158652 -0.257869 3.71129 m    Global time : 18.0446 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (158.652,-257.869,3711.29)
-Point[1] Position= (159.854,-257.944,3711.42)
-Point[2] Position= (159.691,-258.102,3711.54)
+Original momentum : -46.2831 -12.5971 -1.15061 keV
+Vertex : -0.0785843 0.253527 -1.72461 m    Global time : 5.82145 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-78.5843,253.527,-1724.61)
+Point[1] Position= (-78.6667,253.505,-1724.61)
 
-TrackID =401 : ParentID=250 : TrackStatus=1
+TrackID =385 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.4634 -9.71593 -0.122574 keV
-Vertex : 0.155717 -0.253419 3.63759 m    Global time : 17.6852 ns 
+Original momentum : -26.9032 24.5644 3.74583 keV
+Vertex : -0.0763233 0.248671 -1.68897 m    Global time : 5.70122 ns 
   Current trajectory has 2 points.
-Point[0] Position= (155.717,-253.419,3637.59)
-Point[1] Position= (155.751,-253.429,3637.59)
+Point[0] Position= (-76.3233,248.671,-1688.97)
+Point[1] Position= (-76.3494,248.695,-1688.96)
+
+TrackID =384 : ParentID=368 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -198.411 23.9101 -24.4335 keV
+Vertex : -0.0689779 0.231793 -1.56071 m    Global time : 5.26897 ns 
+  Current trajectory has 10 points.
+Point[0] Position= (-68.9779,231.793,-1560.71)
+Point[1] Position= (-71.9922,232.157,-1561.08)
+Point[2] Position= (-77.6841,231.658,-1561.47)
+Point[3] Position= (-79.4229,232.099,-1560.81)
+Point[4] Position= (-82.7023,231.546,-1559.83)
+Point[5] Position= (-84.4051,230.259,-1559.59)
+Point[6] Position= (-83.5694,228.299,-1560.39)
+Point[7] Position= (-82.0322,227.91,-1559.4)
+Point[8] Position= (-81.447,228.231,-1559.9)
+Point[9] Position= (-81.4161,228.195,-1559.93)
 
-TrackID =400 : ParentID=250 : TrackStatus=1
+TrackID =461 : ParentID=384 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.6313 -34.2246 1.99177 keV
-Vertex : 0.155182 -0.252611 3.62455 m    Global time : 17.6217 ns 
+Original momentum : -30.8068 -10.0878 -7.94661 keV
+Vertex : -0.0844051 0.230259 -1.55959 m    Global time : 5.43516 ns 
   Current trajectory has 2 points.
-Point[0] Position= (155.182,-252.611,3624.55)
-Point[1] Position= (155.136,-252.665,3624.55)
+Point[0] Position= (-84.4051,230.259,-1559.59)
+Point[1] Position= (-84.4295,230.251,-1559.6)
 
-TrackID =399 : ParentID=250 : TrackStatus=1
+TrackID =460 : ParentID=384 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.4518 -29.5791 -0.83314 keV
-Vertex : 0.153854 -0.250541 3.5921 m    Global time : 17.4634 ns 
+Original momentum : 13.8848 6.07999 51.2128 keV
+Vertex : -0.0794229 0.232099 -1.56081 m    Global time : 5.3709 ns 
   Current trajectory has 2 points.
-Point[0] Position= (153.854,-250.541,3592.1)
-Point[1] Position= (153.881,-250.573,3592.1)
+Point[0] Position= (-79.4229,232.099,-1560.81)
+Point[1] Position= (-79.391,232.113,-1560.7)
 
-TrackID =398 : ParentID=250 : TrackStatus=1
+TrackID =459 : ParentID=384 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 52.9007 10.5523 2.60499 keV
-Vertex : 0.153127 -0.249416 3.57473 m    Global time : 17.3787 ns 
+Original momentum : 3.04962 -33.224 -5.00777 keV
+Vertex : -0.0719922 0.232157 -1.56108 m    Global time : 5.29681 ns 
   Current trajectory has 2 points.
-Point[0] Position= (153.127,-249.416,3574.73)
-Point[1] Position= (153.252,-249.391,3574.74)
+Point[0] Position= (-71.9922,232.157,-1561.08)
+Point[1] Position= (-71.9897,232.13,-1561.08)
 
-TrackID =397 : ParentID=250 : TrackStatus=1
+TrackID =383 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.7197 29.6261 2.97401 keV
-Vertex : 0.150826 -0.245991 3.52256 m    Global time : 17.1243 ns 
+Original momentum : 12.4355 51.6904 3.61178 keV
+Vertex : -0.0668643 0.226361 -1.52063 m    Global time : 5.13388 ns 
   Current trajectory has 2 points.
-Point[0] Position= (150.826,-245.991,3522.56)
-Point[1] Position= (150.849,-245.961,3522.56)
+Point[0] Position= (-66.8643,226.361,-1520.63)
+Point[1] Position= (-66.8359,226.479,-1520.62)
 
-TrackID =396 : ParentID=250 : TrackStatus=1
+TrackID =382 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.9151 -0.499709 0.354628 keV
-Vertex : 0.146094 -0.238747 3.41916 m    Global time : 16.6199 ns 
+Original momentum : -26.7552 -44.9881 -7.44665 keV
+Vertex : -0.0639346 0.218882 -1.46442 m    Global time : 4.94448 ns 
   Current trajectory has 2 points.
-Point[0] Position= (146.094,-238.747,3419.16)
-Point[1] Position= (146.137,-238.747,3419.16)
+Point[0] Position= (-63.9346,218.882,-1464.42)
+Point[1] Position= (-63.9947,218.781,-1464.44)
 
-TrackID =395 : ParentID=250 : TrackStatus=1
+TrackID =381 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -54.8241 -25.7493 5.89598 keV
-Vertex : 0.144605 -0.236427 3.38691 m    Global time : 16.4625 ns 
+Original momentum : 30.2509 -25.4132 -6.39022 keV
+Vertex : -0.0553553 0.197721 -1.30422 m    Global time : 4.40468 ns 
   Current trajectory has 2 points.
-Point[0] Position= (144.605,-236.427,3386.91)
-Point[1] Position= (144.431,-236.508,3386.93)
+Point[0] Position= (-55.3553,197.721,-1304.22)
+Point[1] Position= (-55.3196,197.691,-1304.23)
 
-TrackID =394 : ParentID=250 : TrackStatus=1
+TrackID =380 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -48.5695 -3.49799 5.39004 keV
-Vertex : 0.143488 -0.234643 3.36235 m    Global time : 16.3427 ns 
+Original momentum : -7.01968 33.0566 3.76698 keV
+Vertex : -0.048247 0.175959 -1.14269 m    Global time : 3.86044 ns 
   Current trajectory has 2 points.
-Point[0] Position= (143.488,-234.643,3362.35)
-Point[1] Position= (143.397,-234.649,3362.36)
+Point[0] Position= (-48.247,175.959,-1142.69)
+Point[1] Position= (-48.2527,175.987,-1142.68)
 
-TrackID =393 : ParentID=250 : TrackStatus=1
+TrackID =379 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -48.1011 -79.1182 8.68731 keV
-Vertex : 0.143444 -0.234572 3.36137 m    Global time : 16.3379 ns 
+Original momentum : -0.296387 83.0058 4.99834 keV
+Vertex : -3.46886 14.4463 -91.4454 cm   Global time : 3.09056 ns 
   Current trajectory has 3 points.
-Point[0] Position= (143.444,-234.572,3361.37)
-Point[1] Position= (143.008,-235.288,3361.45)
-Point[2] Position= (143.089,-235.498,3361.38)
+Point[0] Position= (-34.6886,144.463,-914.454)
+Point[1] Position= (-34.6907,145.041,-914.42)
+Point[2] Position= (-34.7113,145.027,-914.339)
 
-TrackID =392 : ParentID=250 : TrackStatus=1
+TrackID =378 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 93.4013 -79.9747 11.4311 keV
-Vertex : 0.139736 -0.228523 3.27863 m    Global time : 15.9343 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (139.736,-228.523,3278.63)
-Point[1] Position= (139.826,-228.6,3278.65)
-Point[2] Position= (140.795,-229.898,3278.44)
-Point[3] Position= (140.934,-230.358,3277.42)
-Point[4] Position= (141.225,-230.449,3277.82)
+Original momentum : -44.3568 81.7338 5.54963 keV
+Vertex : -3.30907 14.0075 -88.3092 cm   Global time : 2.98478 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-33.0907,140.075,-883.092)
+Point[1] Position= (-33.494,140.818,-883.042)
+Point[2] Position= (-33.4795,140.972,-883.045)
 
-TrackID =466 : ParentID=392 : TrackStatus=1
+TrackID =377 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 17.3915 8.63829 26.0636 keV
-Vertex : 0.139826 -0.2286 3.27865 m    Global time : 15.936 ns 
+Original momentum : -37.875 6.34921 1.51268 keV
+Vertex : -3.26628 13.8931 -87.5153 cm   Global time : 2.95799 ns 
   Current trajectory has 2 points.
-Point[0] Position= (139.826,-228.6,3278.65)
-Point[1] Position= (139.839,-228.593,3278.67)
+Point[0] Position= (-32.6628,138.931,-875.153)
+Point[1] Position= (-32.7036,138.938,-875.152)
 
-TrackID =391 : ParentID=250 : TrackStatus=1
+TrackID =376 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.3403 -33.1134 0.48892 keV
-Vertex : 0.136524 -0.222989 3.20408 m    Global time : 15.5707 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (136.524,-222.989,3204.08)
-Point[1] Position= (136.504,-223.025,3204.08)
+Original momentum : 112.95 9.20725 -16.5961 keV
+Vertex : -2.73962 12.4111 -76.958 cm   Global time : 2.60193 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-27.3962,124.111,-769.58)
+Point[1] Position= (-25.9293,124.231,-769.795)
+Point[2] Position= (-25.2546,123.879,-770.118)
+Point[3] Position= (-25.1952,123.84,-770.122)
 
-TrackID =390 : ParentID=250 : TrackStatus=1
+TrackID =462 : ParentID=376 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.0246 36.2672 4.44072 keV
-Vertex : 0.136178 -0.222383 3.19583 m    Global time : 15.5305 ns 
+Original momentum : -7.28 -28.8203 15.918 keV
+Vertex : -2.59293 12.4231 -76.9795 cm   Global time : 2.62461 ns 
   Current trajectory has 2 points.
-Point[0] Position= (136.178,-222.383,3195.83)
-Point[1] Position= (136.217,-222.328,3195.83)
+Point[0] Position= (-25.9293,124.231,-769.795)
+Point[1] Position= (-25.9352,124.207,-769.783)
 
-TrackID =389 : ParentID=250 : TrackStatus=1
+TrackID =375 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.86437 -45.0619 -0.446686 keV
-Vertex : 0.134557 -0.219585 3.15731 m    Global time : 15.3426 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (134.557,-219.585,3157.31)
-Point[1] Position= (134.562,-219.655,3157.3)
+Original momentum : -86.4759 99.6456 1.5576 keV
+Vertex : -2.52933 11.6671 -71.7865 cm   Global time : 2.4275 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (-25.2933,116.671,-717.865)
+Point[1] Position= (-26.69,118.281,-717.84)
+Point[2] Position= (-26.7702,119.327,-716.94)
+Point[3] Position= (-27.3019,118.746,-716.511)
+Point[4] Position= (-27.3128,118.749,-716.526)
 
-TrackID =388 : ParentID=250 : TrackStatus=1
+TrackID =374 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -41.5364 20.3287 6.29449 keV
-Vertex : 0.133869 -0.218396 3.14084 m    Global time : 15.2624 ns 
+Original momentum : 3.96067 31.9804 3.59598 keV
+Vertex : -2.49917 11.5641 -71.1009 cm   Global time : 2.40435 ns 
   Current trajectory has 2 points.
-Point[0] Position= (133.869,-218.396,3140.84)
-Point[1] Position= (133.8,-218.362,3140.85)
+Point[0] Position= (-24.9917,115.641,-711.009)
+Point[1] Position= (-24.9887,115.665,-711.006)
 
-TrackID =387 : ParentID=250 : TrackStatus=1
+TrackID =373 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.8775 40.3701 6.1718 keV
-Vertex : 0.130945 -0.213271 3.06873 m    Global time : 14.9109 ns 
+Original momentum : 60.069 17.7633 -3.61149 keV
+Vertex : -2.3799 11.1294 -68.2615 cm   Global time : 2.30845 ns 
   Current trajectory has 2 points.
-Point[0] Position= (130.945,-213.271,3068.73)
-Point[1] Position= (130.924,-213.214,3068.74)
+Point[0] Position= (-23.799,111.294,-682.615)
+Point[1] Position= (-23.5938,111.355,-682.628)
 
-TrackID =386 : ParentID=250 : TrackStatus=1
+TrackID =372 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -36.5011 -27.0602 2.5319 keV
-Vertex : 0.130689 -0.212826 3.06244 m    Global time : 14.8802 ns 
+Original momentum : 6.88515 33.7663 4.13 keV
+Vertex : -2.18746 10.057 -61.5366 cm   Global time : 2.08119 ns 
   Current trajectory has 2 points.
-Point[0] Position= (130.689,-212.826,3062.44)
-Point[1] Position= (130.632,-212.869,3062.45)
+Point[0] Position= (-21.8746,100.57,-615.366)
+Point[1] Position= (-21.8687,100.599,-615.362)
 
-TrackID =385 : ParentID=250 : TrackStatus=1
+TrackID =371 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.8423 23.689 4.86039 keV
-Vertex : 0.130499 -0.212494 3.05773 m    Global time : 14.8573 ns 
+Original momentum : -20.6523 -30.4862 -5.72087 keV
+Vertex : -2.08045 9.47242 -57.8972 cm   Global time : 1.95818 ns 
   Current trajectory has 2 points.
-Point[0] Position= (130.499,-212.494,3057.73)
-Point[1] Position= (130.469,-212.469,3057.74)
+Point[0] Position= (-20.8045,94.7242,-578.972)
+Point[1] Position= (-20.8252,94.6935,-578.978)
 
-TrackID =384 : ParentID=250 : TrackStatus=1
+TrackID =370 : ParentID=368 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -58.8418 -55.7486 7.87427 keV
-Vertex : 0.128402 -0.208884 3.00667 m    Global time : 14.6084 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (128.402,-208.884,3006.67)
-Point[1] Position= (128.013,-209.252,3006.72)
-Point[2] Position= (128.01,-209.251,3006.71)
+Original momentum : -132.382 1.25697 -12.5545 keV
+Vertex : -1.84973 8.4161 -51.4967 cm   Global time : 1.74164 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (-18.4973,84.161,-514.967)
+Point[1] Position= (-18.8147,84.164,-514.997)
+Point[2] Position= (-20.2788,83.3196,-515.439)
+Point[3] Position= (-21.242,82.6989,-515.681)
+Point[4] Position= (-21.6039,82.7695,-515.371)
+Point[5] Position= (-21.6111,82.7606,-515.368)
 
-TrackID =383 : ParentID=250 : TrackStatus=1
+TrackID =463 : ParentID=370 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.6615 30.8448 4.20222 keV
-Vertex : 0.12681 -0.206125 2.968 m    Global time : 14.4199 ns 
+Original momentum : -18.5221 39.1886 -14.453 keV
+Vertex : -1.88147 8.4164 -51.4997 cm   Global time : 1.74587 ns 
   Current trajectory has 2 points.
-Point[0] Position= (126.81,-206.125,2968)
-Point[1] Position= (126.802,-206.102,2968)
+Point[0] Position= (-18.8147,84.164,-514.997)
+Point[1] Position= (-18.8441,84.2262,-515.02)
 
-TrackID =382 : ParentID=250 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.469 15.5791 1.79898 keV
-Vertex : 0.125655 -0.204117 2.9397 m    Global time : 14.2821 ns 
+TrackID =369 : ParentID=354 : TrackStatus=1
+Particle name : e+  PDG code : -11  Charge : 1
+Original momentum : -8.15403 35.4257 -217.366 MeV
+Vertex : -1.66828 7.45055 -45.5629 cm   Global time : 1.54101 ns 
+  Current trajectory has 62 points.
+Point[0] Position= (-16.6828,74.5055,-455.629)
+Point[1] Position= (-24.6607,109.094,-667.652)
+Point[2] Position= (-31.5364,140.038,-857.382)
+Point[3] Position= (-34.4994,153.655,-940.887)
+Point[4] Position= (-39.8886,178.75,-1093.92)
+Point[5] Position= (-40.1626,180.138,-1102.24)
+Point[6] Position= (-40.7286,183.04,-1119.62)
+Point[7] Position= (-50.1155,231.046,-1407.98)
+Point[8] Position= (-51.808,239.507,-1458.81)
+Point[9] Position= (-56.7407,264.107,-1606.6)
+Point[10] Position= (-57.1096,265.987,-1617.86)
+Point[11] Position= (-60.5445,283.703,-1723.86)
+Point[12] Position= (-61.19,287.003,-1743.64)
+Point[13] Position= (-64.0862,301.617,-1831.39)
+Point[14] Position= (-64.2296,302.33,-1835.68)
+Point[15] Position= (-68.5675,323.944,-1966.04)
+Point[16] Position= (-70.0009,331.081,-2008.97)
+Point[17] Position= (-71.0643,336.454,-2041.35)
+Point[18] Position= (-71.78,340.028,-2062.93)
+Point[19] Position= (-74.1135,351.79,-2133.78)
+Point[20] Position= (-74.3823,353.161,-2142.03)
+Point[21] Position= (-75.4057,358.213,-2172.47)
+Point[22] Position= (-75.5773,359.057,-2177.57)
+Point[23] Position= (-77.2804,367.691,-2229.5)
+Point[24] Position= (-84.6639,405.75,-2457.67)
+Point[25] Position= (-95.7635,459.248,-2781.08)
+Point[26] Position= (-96.5024,462.769,-2802.61)
+Point[27] Position= (-103.84,497.772,-3017.4)
+Point[28] Position= (-105.539,505.912,-3067.59)
+Point[29] Position= (-106.511,510.495,-3095.74)
+Point[30] Position= (-108.543,519.98,-3154.09)
+Point[31] Position= (-109.17,522.904,-3172.08)
+Point[32] Position= (-110.275,528.089,-3204)
+Point[33] Position= (-111.004,531.503,-3225)
+Point[34] Position= (-112.18,537.11,-3259.48)
+Point[35] Position= (-114.417,547.782,-3325.09)
+Point[36] Position= (-117.056,560.276,-3402.01)
+Point[37] Position= (-118.075,565.118,-3431.81)
+Point[38] Position= (-121.188,580.202,-3524.17)
+Point[39] Position= (-123.784,592.993,-3602.25)
+Point[40] Position= (-125.4,600.786,-3649.57)
+Point[41] Position= (-129.471,620.506,-3768.51)
+Point[42] Position= (-138.307,662.749,-4023.09)
+Point[43] Position= (-140.232,671.043,-4073.7)
+Point[44] Position= (-140.356,671.576,-4076.95)
+Point[45] Position= (-145.355,692.913,-4206.39)
+Point[46] Position= (-152.648,724.052,-4395.65)
+Point[47] Position= (-152.792,724.662,-4399.38)
+Point[48] Position= (-155.909,737.783,-4479.57)
+Point[49] Position= (-161.317,761.265,-4622.82)
+Point[50] Position= (-164.998,776.746,-4717.13)
+Point[51] Position= (-168.779,792.445,-4812.66)
+Point[52] Position= (-170.472,799.347,-4854.56)
+Point[53] Position= (-177.79,828.797,-5033.18)
+Point[54] Position= (-179.322,834.858,-5069.99)
+Point[55] Position= (-180.19,838.276,-5090.74)
+Point[56] Position= (-189.418,874.844,-5312.64)
+Point[57] Position= (-196.908,905.157,-5494.9)
+Point[58] Position= (-214.211,974.847,-5916.01)
+Point[59] Position= (-215.44,979.89,-5946.23)
+Point[60] Position= (-216.996,986.242,-5984.24)
+Point[61] Position= (-217.64,988.877,-6000)
+
+TrackID =357 : ParentID=61 : TrackStatus=1
+Particle name : pi-  PDG code : -211  Charge : -1
+Original momentum : 39.2324 185.893 -88.1089 MeV
+Vertex : 4.76184e-294 -6.36415e-295 1.77731e-293 fm   Global time : 8.90921e-305 ps 
+  Current trajectory has 10 points.
+Point[0] Position= (4.76184e-306,-6.36415e-307,1.77731e-305)
+Point[1] Position= (1.83715,8.70648,-4.12707)
+Point[2] Position= (6.67874,31.6519,-14.9963)
+Point[3] Position= (23.9059,113.219,-53.5828)
+Point[4] Position= (24.5006,116.041,-54.9165)
+Point[5] Position= (41.2813,195.693,-92.585)
+Point[6] Position= (44.8898,212.87,-100.713)
+Point[7] Position= (45.5012,215.779,-102.091)
+Point[8] Position= (51.5734,244.623,-115.757)
+Point[9] Position= (51.7127,245.297,-116.076)
+
+TrackID =535 : ParentID=357 : TrackStatus=1
+Particle name : Mg24  PDG code : 1000120240  Charge : 12
+Original momentum : 365.32 -48.4531 -251.871 MeV
+Vertex : 5.17127 24.5297 -11.6076 cm   Global time : 1.10752 ns 
   Current trajectory has 2 points.
-Point[0] Position= (125.655,-204.117,2939.7)
-Point[1] Position= (125.694,-204.1,2939.71)
+Point[0] Position= (51.7127,245.297,-116.076)
+Point[1] Position= (51.714,245.296,-116.077)
 
-TrackID =381 : ParentID=250 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 95.8898 121.626 40.5964 keV
-Vertex : 0.124766 -0.202532 2.91752 m    Global time : 14.174 ns 
-  Current trajectory has 7 points.
-Point[0] Position= (124.766,-202.532,2917.52)
-Point[1] Position= (126.839,-199.903,2918.4)
-Point[2] Position= (126.756,-198.024,2916.46)
-Point[3] Position= (127.162,-197.618,2915.52)
-Point[4] Position= (127.362,-197.096,2914.27)
-Point[5] Position= (127.15,-196.609,2913.45)
-Point[6] Position= (127.085,-196.526,2913.66)
+TrackID =534 : ParentID=357 : TrackStatus=1
+Particle name : alpha  PDG code : 1000020040  Charge : 2
+Original momentum : -177.106 267.635 172.406 MeV
+Vertex : 5.17127 24.5297 -11.6076 cm   Global time : 1.10752 ns 
+  Current trajectory has 9 points.
+Point[0] Position= (51.7127,245.297,-116.076)
+Point[1] Position= (51.6955,245.322,-116.06)
+Point[2] Position= (51.6805,245.346,-116.045)
+Point[3] Position= (51.6671,245.368,-116.032)
+Point[4] Position= (51.6557,245.387,-116.021)
+Point[5] Position= (51.6454,245.404,-116.01)
+Point[6] Position= (51.6367,245.418,-116.001)
+Point[7] Position= (51.63,245.429,-115.994)
+Point[8] Position= (51.6289,245.431,-115.993)
 
-TrackID =467 : ParentID=381 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.87587 -28.0071 -13.4114 keV
-Vertex : 0.127162 -0.197618 2.91552 m    Global time : 14.2607 ns 
+TrackID =60 : ParentID=45 : TrackStatus=1
+Particle name : unknown : omega  PDG code : 223  Charge : 0
+Original momentum : -694.865 238.015 909.667 MeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (127.162,-197.618,2915.52)
-Point[1] Position= (127.155,-197.639,2915.51)
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (-4.14712e-306,1.34179e-306,1.85287e-305)
 
-TrackID =380 : ParentID=250 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.1108 -10.3126 -0.231942 keV
-Vertex : 0.121908 -0.197734 2.85008 m    Global time : 13.8454 ns 
+TrackID =555 : ParentID=60 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : -485.715 276.92 118.38 MeV
+Vertex : -4.14712e-294 1.34179e-294 1.85287e-293 fm   Global time : 9.07189e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (121.908,-197.734,2850.08)
-Point[1] Position= (121.948,-197.745,2850.08)
+Point[0] Position= (-4.14712e-306,1.34179e-306,1.85287e-305)
+Point[1] Position= (-5.00806e-05,2.85524e-05,1.22058e-05)
 
-TrackID =379 : ParentID=250 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.5353 -19.5243 2.00628 keV
-Vertex : 0.120875 -0.195993 2.82616 m    Global time : 13.7288 ns 
+TrackID =59 : ParentID=45 : TrackStatus=1
+Particle name : eta  PDG code : 221  Charge : 0
+Original momentum : -0.0908679 0.00596782 1.11738 GeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (120.875,-195.993,2826.16)
-Point[1] Position= (120.841,-196.013,2826.17)
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (-1.86975e-307,-1.58915e-308,1.33918e-305)
+
+TrackID =561 : ParentID=59 : TrackStatus=1
+Particle name : pi-  PDG code : -211  Charge : -1
+Original momentum : 65.1721 35.0795 314.139 MeV
+Vertex : -1.86975e-295 -1.58915e-296 1.33918e-293 fm   Global time : 6.41545e-305 ps 
+  Current trajectory has 87 points.
+Point[0] Position= (-1.86975e-307,-1.58915e-308,1.33918e-305)
+Point[1] Position= (3.25647,1.75383,15.7032)
+Point[2] Position= (16.604,8.95202,80.0356)
+Point[3] Position= (29.4294,15.8718,141.861)
+Point[4] Position= (31.0805,16.7655,149.825)
+Point[5] Position= (31.5434,17.0154,152.057)
+Point[6] Position= (44.8508,24.1946,216.32)
+Point[7] Position= (53.9114,29.0724,260.208)
+Point[8] Position= (56.3448,30.3873,272.019)
+Point[9] Position= (83.9517,45.2178,405.973)
+Point[10] Position= (116.624,62.7002,564.711)
+Point[11] Position= (152.226,81.8618,738.17)
+Point[12] Position= (176.143,94.7294,855.005)
+Point[13] Position= (180.198,96.9222,874.882)
+Point[14] Position= (182.013,97.9056,883.788)
+Point[15] Position= (197.482,106.364,960.27)
+Point[16] Position= (205.497,110.735,1000)
+Point[17] Position= (225.114,121.561,1097.25)
+Point[18] Position= (248.946,134.722,1215.62)
+Point[19] Position= (256.458,138.862,1252.94)
+Point[20] Position= (259.836,140.725,1269.71)
+Point[21] Position= (260.835,141.276,1274.67)
+Point[22] Position= (266.194,144.238,1301.27)
+Point[23] Position= (301.56,163.767,1477.09)
+Point[24] Position= (335.981,182.59,1647.25)
+Point[25] Position= (354.448,192.668,1738.05)
+Point[26] Position= (365.675,198.786,1793.23)
+Point[27] Position= (370.091,201.202,1814.92)
+Point[28] Position= (389.692,211.919,1911.11)
+Point[29] Position= (391.512,212.913,1920.03)
+Point[30] Position= (420.703,228.804,2062.94)
+Point[31] Position= (424.828,231.053,2083.13)
+Point[32] Position= (429.762,233.741,2107.32)
+Point[33] Position= (434.16,236.135,2128.85)
+Point[34] Position= (439.865,239.228,2156.82)
+Point[35] Position= (443.326,241.107,2173.85)
+Point[36] Position= (469.998,255.579,2305.35)
+Point[37] Position= (497.587,270.609,2441.28)
+Point[38] Position= (513.172,279.072,2517.99)
+Point[39] Position= (540.887,294.188,2654.67)
+Point[40] Position= (545.303,296.616,2676.48)
+Point[41] Position= (558.96,304.131,2743.94)
+Point[42] Position= (567.436,308.814,2785.84)
+Point[43] Position= (571.468,311.048,2805.81)
+Point[44] Position= (571.71,311.182,2807.01)
+Point[45] Position= (572.146,311.423,2809.16)
+Point[46] Position= (574.324,312.628,2819.93)
+Point[47] Position= (639.267,348.506,3139.47)
+Point[48] Position= (655.305,357.357,3218.19)
+Point[49] Position= (659.461,359.648,3238.58)
+Point[50] Position= (688.104,375.311,3378.45)
+Point[51] Position= (694.303,378.66,3408.56)
+Point[52] Position= (694.749,378.901,3410.73)
+Point[53] Position= (704.804,384.296,3459.39)
+Point[54] Position= (706.663,385.296,3468.39)
+Point[55] Position= (752.507,409.869,3689.99)
+Point[56] Position= (765.959,417.073,3755.31)
+Point[57] Position= (792.444,431.129,3883.69)
+Point[58] Position= (809.66,440.228,3967.04)
+Point[59] Position= (817.425,444.321,4004.55)
+Point[60] Position= (875.268,475.065,4284.31)
+Point[61] Position= (877.911,476.472,4297.1)
+Point[62] Position= (878.286,476.671,4298.9)
+Point[63] Position= (901.855,489.21,4412.7)
+Point[64] Position= (905.822,491.324,4431.88)
+Point[65] Position= (924.205,501.152,4520.72)
+Point[66] Position= (929.921,504.186,4548.34)
+Point[67] Position= (944.544,511.901,4619.01)
+Point[68] Position= (946.107,512.721,4626.57)
+Point[69] Position= (976.109,528.415,4771.78)
+Point[70] Position= (992.775,537.193,4852.87)
+Point[71] Position= (994.682,538.199,4862.15)
+Point[72] Position= (1004.32,543.275,4908.98)
+Point[73] Position= (1053.16,568.928,5146.4)
+Point[74] Position= (1060.5,572.795,5182.04)
+Point[75] Position= (1072.08,579.012,5238.41)
+Point[76] Position= (1087.93,587.56,5315.71)
+Point[77] Position= (1119.76,604.84,5470.93)
+Point[78] Position= (1121.29,605.671,5478.4)
+Point[79] Position= (1124,607.134,5491.57)
+Point[80] Position= (1152.71,622.55,5630.4)
+Point[81] Position= (1153.94,623.209,5636.32)
+Point[82] Position= (1179.05,636.781,5757.43)
+Point[83] Position= (1200.36,648.295,5860.16)
+Point[84] Position= (1204.71,650.651,5881.15)
+Point[85] Position= (1218.89,658.344,5949.96)
+Point[86] Position= (1229.17,663.936,6000)
+
+TrackID =642 : ParentID=561 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 39.0661 -18.524 -3.89327 keV
+Vertex : 1.21889 0.658344 5.94996 m    Global time : 22.211 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (1218.89,658.344,5949.96)
+Point[1] Position= (1218.95,658.318,5949.96)
+
+TrackID =641 : ParentID=561 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 162.706 21.8892 -7.24936 keV
+Vertex : 1.20471 0.650651 5.88115 m    Global time : 21.9539 ns 
+  Current trajectory has 7 points.
+Point[0] Position= (1204.71,650.651,5881.15)
+Point[1] Position= (1208.38,651.145,5880.98)
+Point[2] Position= (1210.79,651.565,5882.4)
+Point[3] Position= (1212.36,653.086,5882.16)
+Point[4] Position= (1213.89,653.531,5882.32)
+Point[5] Position= (1214.44,653.611,5883)
+Point[6] Position= (1214.58,653.776,5883.01)
 
-TrackID =378 : ParentID=250 : TrackStatus=1
+TrackID =640 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 56.1983 -22.6644 1.14599 keV
-Vertex : 0.117042 -0.189507 2.73702 m    Global time : 13.2945 ns 
+Original momentum : 39.5385 5.28334 -6.99566 keV
+Vertex : 1.20036 0.648295 5.86016 m    Global time : 21.8755 ns 
   Current trajectory has 2 points.
-Point[0] Position= (117.042,-189.507,2737.02)
-Point[1] Position= (117.219,-189.578,2737.03)
+Point[0] Position= (1200.36,648.295,5860.16)
+Point[1] Position= (1200.41,648.301,5860.15)
 
-TrackID =377 : ParentID=250 : TrackStatus=1
+TrackID =639 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -45.0078 14.6436 6.23847 keV
-Vertex : 0.116437 -0.188478 2.723 m    Global time : 13.2262 ns 
+Original momentum : 27.602 20.1124 -6.65703 keV
+Vertex : 1.17905 0.636781 5.75743 m    Global time : 21.4916 ns 
   Current trajectory has 2 points.
-Point[0] Position= (116.437,-188.478,2723)
-Point[1] Position= (116.358,-188.452,2723.01)
+Point[0] Position= (1179.05,636.781,5757.43)
+Point[1] Position= (1179.07,636.799,5757.43)
 
-TrackID =376 : ParentID=250 : TrackStatus=1
+TrackID =638 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.9321 -34.9227 0.685567 keV
-Vertex : 0.116379 -0.188378 2.72163 m    Global time : 13.2195 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (116.379,-188.378,2721.63)
-Point[1] Position= (116.354,-188.421,2721.63)
+Original momentum : 102.502 -40.7764 -3.49007 keV
+Vertex : 1.15394 0.623209 5.63632 m    Global time : 21.039 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (1153.94,623.209,5636.32)
+Point[1] Position= (1155.21,622.702,5636.28)
+Point[2] Position= (1155.15,623.308,5636.55)
 
-TrackID =375 : ParentID=250 : TrackStatus=1
+TrackID =637 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 69.3737 24.4334 6.5632 keV
-Vertex : 0.110026 -0.177427 2.57356 m    Global time : 12.4982 ns 
+Original momentum : 14.7193 -36.6429 2.74423 keV
+Vertex : 1.15271 0.62255 5.6304 m    Global time : 21.0169 ns 
   Current trajectory has 2 points.
-Point[0] Position= (110.026,-177.427,2573.56)
-Point[1] Position= (110.383,-177.301,2573.59)
+Point[0] Position= (1152.71,622.55,5630.4)
+Point[1] Position= (1152.73,622.507,5630.41)
 
-TrackID =374 : ParentID=250 : TrackStatus=1
+TrackID =636 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.5656 73.2211 17.351 keV
-Vertex : 0.106976 -0.172058 2.50229 m    Global time : 12.151 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (106.976,-172.058,2502.29)
-Point[1] Position= (106.696,-171.527,2502.41)
-Point[2] Position= (106.707,-171.563,2502.4)
+Original momentum : -83.423 85.5505 23.7113 keV
+Vertex : 1.124 0.607134 5.49157 m    Global time : 20.4982 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (1124,607.134,5491.57)
+Point[1] Position= (1122.8,608.367,5491.91)
+Point[2] Position= (1122.76,608.385,5491.91)
+Point[3] Position= (1122.32,608.893,5491.86)
+Point[4] Position= (1122.3,608.873,5491.75)
 
-TrackID =373 : ParentID=250 : TrackStatus=1
+TrackID =643 : ParentID=636 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -184.058 -158.64 84.5204 keV
-Vertex : 0.106432 -0.171064 2.48924 m    Global time : 12.0875 ns 
-  Current trajectory has 15 points.
-Point[0] Position= (106.432,-171.064,2489.24)
-Point[1] Position= (96.5414,-179.588,2493.79)
-Point[2] Position= (94.2321,-181.651,2495.06)
-Point[3] Position= (91.6798,-189.662,2500.28)
-Point[4] Position= (91.4561,-190.2,2501.34)
-Point[5] Position= (91.1342,-194.996,2507.24)
-Point[6] Position= (89.1575,-198.38,2511.7)
-Point[7] Position= (89.1619,-199.333,2512.78)
-Point[8] Position= (88.0651,-201.136,2516.64)
-Point[9] Position= (88.0714,-199.481,2519.87)
-Point[10] Position= (86.2911,-199.309,2521.91)
-Point[11] Position= (86.9433,-199.517,2521.93)
-Point[12] Position= (86.9504,-199.524,2521.91)
-Point[13] Position= (87.3463,-199.773,2521.49)
-Point[14] Position= (87.3386,-199.759,2521.52)
+Original momentum : -33.47 -28.3132 5.70081 keV
+Vertex : 1.12276 0.608385 5.49191 m    Global time : 20.5242 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (1122.76,608.385,5491.91)
+Point[1] Position= (1122.71,608.343,5491.92)
 
-TrackID =472 : ParentID=373 : TrackStatus=1
+TrackID =635 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.7816 -4.66689 -20.6047 keV
-Vertex : 0.0869504 -0.199524 2.52191 m    Global time : 12.5718 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (86.9504,-199.524,2521.91)
-Point[1] Position= (86.9318,-199.528,2521.9)
+Original momentum : -48.2348 -5.98495 13.3525 keV
+Vertex : 1.12129 0.605671 5.4784 m    Global time : 20.449 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (1121.29,605.671,5478.4)
+Point[1] Position= (1121.21,605.661,5478.42)
+Point[2] Position= (1121.16,605.662,5478.42)
 
-TrackID =471 : ParentID=373 : TrackStatus=1
+TrackID =634 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 56.8063 -29.5186 34.8335 keV
-Vertex : 0.0869433 -0.199517 2.52193 m    Global time : 12.5714 ns 
+Original momentum : 11.885 -30.2432 2.08275 keV
+Vertex : 1.11976 0.60484 5.47093 m    Global time : 20.4211 ns 
   Current trajectory has 2 points.
-Point[0] Position= (86.9433,-199.517,2521.93)
-Point[1] Position= (87.2259,-199.663,2522.1)
+Point[0] Position= (1119.76,604.84,5470.93)
+Point[1] Position= (1119.77,604.818,5470.93)
 
-TrackID =470 : ParentID=373 : TrackStatus=1
+TrackID =633 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.698 -14.615 -30.3597 keV
-Vertex : 0.0862911 -0.199309 2.52191 m    Global time : 12.5615 ns 
+Original momentum : -10.0684 -46.6523 9.83055 keV
+Vertex : 1.08793 0.58756 5.31571 m    Global time : 19.8414 ns 
   Current trajectory has 2 points.
-Point[0] Position= (86.2911,-199.309,2521.91)
-Point[1] Position= (86.2881,-199.321,2521.89)
+Point[0] Position= (1087.93,587.56,5315.71)
+Point[1] Position= (1087.91,587.474,5315.73)
 
-TrackID =469 : ParentID=373 : TrackStatus=1
+TrackID =632 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.8275 22.6778 17.4062 keV
-Vertex : 0.0914561 -0.1902 2.50134 m    Global time : 12.307 ns 
+Original momentum : 20.998 -32.2761 0.880214 keV
+Vertex : 1.07208 0.579012 5.23841 m    Global time : 19.5528 ns 
   Current trajectory has 2 points.
-Point[0] Position= (91.4561,-190.2,2501.34)
-Point[1] Position= (91.4282,-190.175,2501.36)
+Point[0] Position= (1072.08,579.012,5238.41)
+Point[1] Position= (1072.1,578.977,5238.41)
 
-TrackID =468 : ParentID=373 : TrackStatus=1
+TrackID =631 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.9141 10.8154 0.983527 keV
-Vertex : 0.0942321 -0.181651 2.49506 m    Global time : 12.2165 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (94.2321,-181.651,2495.06)
-Point[1] Position= (94.2039,-181.642,2495.06)
+Original momentum : 101.628 -385.06 212.344 keV
+Vertex : 1.0605 0.572795 5.18204 m    Global time : 19.3423 ns 
+  Current trajectory has 17 points.
+Point[0] Position= (1060.5,572.795,5182.04)
+Point[1] Position= (1068.42,542.759,5198.61)
+Point[2] Position= (1062.74,476.737,5209.97)
+Point[3] Position= (1057.4,424.432,5221.28)
+Point[4] Position= (1037.27,408.051,5229.56)
+Point[5] Position= (1018.91,408.886,5229.01)
+Point[6] Position= (1008.54,421.189,5234.23)
+Point[7] Position= (1010.65,431.224,5242.94)
+Point[8] Position= (1009.14,434.173,5250.87)
+Point[9] Position= (1003.5,433.727,5254.18)
+Point[10] Position= (1004.97,428.486,5254.38)
+Point[11] Position= (1004.16,424.591,5255.56)
+Point[12] Position= (1004.44,422.15,5257.33)
+Point[13] Position= (1003.94,420.235,5256.4)
+Point[14] Position= (1003.2,419.203,5255.64)
+Point[15] Position= (1002.81,418.962,5254.95)
+Point[16] Position= (1002.72,418.906,5254.93)
+
+TrackID =648 : ParentID=631 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 3.1011 2.03384 39.2275 keV
+Vertex : 1.0035 0.433727 5.25418 m    Global time : 20.8018 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (1003.5,433.727,5254.18)
+Point[1] Position= (1003.51,433.729,5254.23)
+
+TrackID =647 : ParentID=631 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -27.1435 64.7552 -28.0242 keV
+Vertex : 1.01065 0.431224 5.24294 m    Global time : 20.671 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (1010.65,431.224,5242.94)
+Point[1] Position= (1010.57,431.406,5242.86)
+Point[2] Position= (1010.52,431.558,5242.75)
 
-TrackID =372 : ParentID=250 : TrackStatus=1
+TrackID =649 : ParentID=647 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.1431 50.2176 9.11071 keV
-Vertex : 0.105628 -0.169492 2.46916 m    Global time : 11.9897 ns 
+Original momentum : -34.3277 -10.8548 -0.31111 keV
+Vertex : 1.01057 0.431406 5.24286 m    Global time : 20.6759 ns 
   Current trajectory has 2 points.
-Point[0] Position= (105.628,-169.492,2469.16)
-Point[1] Position= (105.575,-169.367,2469.19)
+Point[0] Position= (1010.57,431.406,5242.86)
+Point[1] Position= (1010.54,431.396,5242.86)
 
-TrackID =371 : ParentID=250 : TrackStatus=1
+TrackID =646 : ParentID=631 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.6729 -58.9645 2.29524 keV
-Vertex : 0.104663 -0.167579 2.44466 m    Global time : 11.8704 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (104.663,-167.579,2444.66)
-Point[1] Position= (104.658,-167.589,2444.66)
-Point[2] Position= (104.668,-167.646,2444.7)
+Original momentum : -41.0855 -37.5561 9.42922 keV
+Vertex : 1.01891 0.408886 5.22901 m    Global time : 20.4519 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (1018.91,408.886,5229.01)
+Point[1] Position= (1018.8,408.788,5229.03)
 
-TrackID =473 : ParentID=371 : TrackStatus=1
+TrackID =645 : ParentID=631 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.0088 -20.3401 -21.5416 keV
-Vertex : 0.104658 -0.167589 2.44466 m    Global time : 11.8707 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (104.658,-167.589,2444.66)
-Point[1] Position= (104.606,-167.62,2444.63)
+Original momentum : -12.0373 83.4331 166.949 keV
+Vertex : 1.0574 0.424432 5.22128 m    Global time : 20.1579 ns 
+  Current trajectory has 8 points.
+Point[0] Position= (1057.4,424.432,5221.28)
+Point[1] Position= (1057.06,426.794,5226)
+Point[2] Position= (1058.8,430.665,5225.93)
+Point[3] Position= (1058.45,432.882,5223.9)
+Point[4] Position= (1060.37,434.167,5222.69)
+Point[5] Position= (1062.1,434.69,5222.27)
+Point[6] Position= (1062.64,435.194,5223.18)
+Point[7] Position= (1062.46,435.071,5223.16)
 
-TrackID =370 : ParentID=250 : TrackStatus=1
+TrackID =644 : ParentID=631 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 5.85496 47.3073 6.74612 keV
-Vertex : 0.104162 -0.166593 2.43201 m    Global time : 11.8088 ns 
+Original momentum : 10.3874 9.35042 70.3838 keV
+Vertex : 1.06842 0.542759 5.19861 m    Global time : 19.5197 ns 
   Current trajectory has 2 points.
-Point[0] Position= (104.162,-166.593,2432.01)
-Point[1] Position= (104.172,-166.508,2432.02)
+Point[0] Position= (1068.42,542.759,5198.61)
+Point[1] Position= (1068.47,542.804,5198.94)
 
-TrackID =369 : ParentID=250 : TrackStatus=1
+TrackID =630 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.4754 32.3074 5.42388 keV
-Vertex : 0.104018 -0.166309 2.42834 m    Global time : 11.7909 ns 
+Original momentum : 29.9198 -12.8011 -3.60642 keV
+Vertex : 1.05316 0.568928 5.1464 m    Global time : 19.2092 ns 
   Current trajectory has 2 points.
-Point[0] Position= (104.018,-166.309,2428.34)
-Point[1] Position= (103.996,-166.274,2428.34)
+Point[0] Position= (1053.16,568.928,5146.4)
+Point[1] Position= (1053.18,568.918,5146.39)
 
-TrackID =368 : ParentID=250 : TrackStatus=1
+TrackID =629 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 48.5803 -13.6034 0.679727 keV
-Vertex : 0.0990956 -0.156787 2.30528 m    Global time : 11.1919 ns 
+Original momentum : -17.5771 -35.3959 9.25484 keV
+Vertex : 1.00432 0.543275 4.90898 m    Global time : 18.3228 ns 
   Current trajectory has 2 points.
-Point[0] Position= (99.0956,-156.787,2305.28)
-Point[1] Position= (99.193,-156.815,2305.28)
+Point[0] Position= (1004.32,543.275,4908.98)
+Point[1] Position= (1004.3,543.232,4908.99)
 
-TrackID =367 : ParentID=250 : TrackStatus=1
+TrackID =628 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -81.0432 30.582 16.5302 keV
-Vertex : 0.097548 -0.153808 2.26632 m    Global time : 11.0023 ns 
+Original momentum : 3.07518 -84.4953 16.6056 keV
+Vertex : 0.994682 0.538199 4.86215 m    Global time : 18.1479 ns 
   Current trajectory has 3 points.
-Point[0] Position= (97.548,-153.808,2266.32)
-Point[1] Position= (96.8973,-153.563,2266.45)
-Point[2] Position= (97.0171,-153.594,2266.57)
+Point[0] Position= (994.682,538.199,4862.15)
+Point[1] Position= (994.705,537.557,4862.27)
+Point[2] Position= (994.722,537.56,4862.23)
 
-TrackID =366 : ParentID=250 : TrackStatus=1
+TrackID =627 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.0264 -19.3848 1.76614 keV
-Vertex : 0.0972214 -0.153164 2.25784 m    Global time : 10.961 ns 
+Original momentum : -34.7602 4.95074 8.02458 keV
+Vertex : 0.992775 0.537193 4.85287 m    Global time : 18.1133 ns 
   Current trajectory has 2 points.
-Point[0] Position= (97.2214,-153.164,2257.84)
-Point[1] Position= (97.1887,-153.184,2257.85)
+Point[0] Position= (992.775,537.193,4852.87)
+Point[1] Position= (992.742,537.198,4852.87)
 
-TrackID =365 : ParentID=250 : TrackStatus=1
+TrackID =626 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.2188 -70.7596 1.79527 keV
-Vertex : 0.0970921 -0.152909 2.25448 m    Global time : 10.9447 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (97.0921,-152.909,2254.48)
-Point[1] Position= (97.257,-153.309,2254.49)
+Original momentum : 167.149 24.8862 -6.61222 keV
+Vertex : 0.976109 0.528415 4.77178 m    Global time : 17.8106 ns 
+  Current trajectory has 8 points.
+Point[0] Position= (976.109,528.415,4771.78)
+Point[1] Position= (980.067,529.004,4771.63)
+Point[2] Position= (982.501,529.051,4769.59)
+Point[3] Position= (984.563,530.261,4770.11)
+Point[4] Position= (984.876,530.299,4770.36)
+Point[5] Position= (986.136,530.975,4771.33)
+Point[6] Position= (987.004,531.306,4770.78)
+Point[7] Position= (986.941,531.605,4770.71)
 
-TrackID =364 : ParentID=250 : TrackStatus=1
+TrackID =625 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.0529 -14.0022 1.65503 keV
-Vertex : 0.0967256 -0.152186 2.24501 m    Global time : 10.8986 ns 
+Original momentum : -35.9943 30.4825 6.61962 keV
+Vertex : 0.946107 0.512721 4.62657 m    Global time : 17.2684 ns 
   Current trajectory has 2 points.
-Point[0] Position= (96.7256,-152.186,2245.01)
-Point[1] Position= (96.7021,-152.197,2245.01)
+Point[0] Position= (946.107,512.721,4626.57)
+Point[1] Position= (946.044,512.774,4626.58)
 
-TrackID =363 : ParentID=250 : TrackStatus=1
+TrackID =624 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 49.1922 27.8696 4.81873 keV
-Vertex : 0.0964644 -0.151664 2.23819 m    Global time : 10.8654 ns 
+Original momentum : 31.6035 4.46782 -5.86801 keV
+Vertex : 0.944544 0.511901 4.61901 m    Global time : 17.2401 ns 
   Current trajectory has 2 points.
-Point[0] Position= (96.4644,-151.664,2238.19)
-Point[1] Position= (96.5956,-151.589,2238.21)
+Point[0] Position= (944.544,511.901,4619.01)
+Point[1] Position= (944.568,511.904,4619.01)
 
-TrackID =362 : ParentID=250 : TrackStatus=1
+TrackID =623 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.83909 -38.0231 -0.583865 keV
-Vertex : 0.0959061 -0.150545 2.22355 m    Global time : 10.7942 ns 
+Original momentum : 29.093 -12.5889 -3.53128 keV
+Vertex : 0.929921 0.504186 4.54834 m    Global time : 16.9762 ns 
   Current trajectory has 2 points.
-Point[0] Position= (95.9061,-150.545,2223.55)
-Point[1] Position= (95.8997,-150.586,2223.55)
+Point[0] Position= (929.921,504.186,4548.34)
+Point[1] Position= (929.942,504.177,4548.33)
 
-TrackID =361 : ParentID=250 : TrackStatus=1
+TrackID =622 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.6507 165.394 53.8953 keV
-Vertex : 0.0932335 -0.145337 2.15475 m    Global time : 10.4594 ns 
-  Current trajectory has 7 points.
-Point[0] Position= (93.2335,-145.337,2154.75)
-Point[1] Position= (93.2586,-144.947,2154.87)
-Point[2] Position= (94.297,-141.913,2156.38)
-Point[3] Position= (94.8101,-141.427,2157.28)
-Point[4] Position= (94.8033,-141.354,2157.71)
-Point[5] Position= (95.3772,-142.044,2158.16)
-Point[6] Position= (95.5859,-141.951,2158.45)
+Original momentum : 21.53 232.692 27.5852 keV
+Vertex : 0.924205 0.501152 4.52072 m    Global time : 16.873 ns 
+  Current trajectory has 12 points.
+Point[0] Position= (924.205,501.152,4520.72)
+Point[1] Position= (925.164,511.522,4521.94)
+Point[2] Position= (926.161,517.708,4522.36)
+Point[3] Position= (927.766,524.984,4522.22)
+Point[4] Position= (932.52,525.373,4518.94)
+Point[5] Position= (936.344,526.378,4521.1)
+Point[6] Position= (939.476,527.719,4522.19)
+Point[7] Position= (940.7,525.898,4522.81)
+Point[8] Position= (942.211,525.526,4522.13)
+Point[9] Position= (942.513,525.153,4521.16)
+Point[10] Position= (942.875,525.031,4521.17)
+Point[11] Position= (943.008,525.054,4521.24)
 
-TrackID =477 : ParentID=361 : TrackStatus=1
+TrackID =652 : ParentID=622 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.443 -12.3622 25.8048 keV
-Vertex : 0.0948033 -0.141354 2.15771 m    Global time : 10.5237 ns 
+Original momentum : 10.991 -39.4293 -8.67972 keV
+Vertex : 0.942875 0.525031 4.52117 m    Global time : 17.2959 ns 
   Current trajectory has 2 points.
-Point[0] Position= (94.8033,-141.354,2157.71)
-Point[1] Position= (94.7511,-141.373,2157.75)
+Point[0] Position= (942.875,525.031,4521.17)
+Point[1] Position= (942.89,524.98,4521.16)
 
-TrackID =476 : ParentID=361 : TrackStatus=1
+TrackID =651 : ParentID=622 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.6055 37.9004 -6.00158 keV
-Vertex : 0.0948101 -0.141427 2.15728 m    Global time : 10.5169 ns 
+Original momentum : 37.1046 33.9532 27.8853 keV
+Vertex : 0.939476 0.527719 4.52219 m    Global time : 17.2147 ns 
   Current trajectory has 2 points.
-Point[0] Position= (94.8101,-141.427,2157.28)
-Point[1] Position= (94.8253,-141.381,2157.27)
-
-TrackID =475 : ParentID=361 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.6598 72.8916 -48.4604 keV
-Vertex : 0.094297 -0.141913 2.15638 m    Global time : 10.5011 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (94.297,-141.913,2156.38)
-Point[1] Position= (94.4437,-141.339,2155.99)
-Point[2] Position= (94.4316,-141.24,2155.86)
-Point[3] Position= (94.4274,-141.238,2155.86)
+Point[0] Position= (939.476,527.719,4522.19)
+Point[1] Position= (939.578,527.812,4522.26)
 
-TrackID =478 : ParentID=475 : TrackStatus=1
+TrackID =650 : ParentID=622 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.2186 1.3205 4.02213 keV
-Vertex : 0.0944437 -0.141339 2.15599 m    Global time : 10.5147 ns 
+Original momentum : 24.9095 -4.70732 26.8331 keV
+Vertex : 0.926161 0.517708 4.52236 m    Global time : 17.0094 ns 
   Current trajectory has 2 points.
-Point[0] Position= (94.4437,-141.339,2155.99)
-Point[1] Position= (94.412,-141.338,2156)
+Point[0] Position= (926.161,517.708,4522.36)
+Point[1] Position= (926.186,517.703,4522.38)
 
-TrackID =474 : ParentID=361 : TrackStatus=1
+TrackID =621 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.3237 16.7165 -17.2418 keV
-Vertex : 0.0932586 -0.144947 2.15487 m    Global time : 10.4636 ns 
+Original momentum : -6.42422 -32.8328 6.21538 keV
+Vertex : 0.905822 0.491324 4.43188 m    Global time : 16.5413 ns 
   Current trajectory has 2 points.
-Point[0] Position= (93.2586,-144.947,2154.87)
-Point[1] Position= (93.24,-144.934,2154.86)
+Point[0] Position= (905.822,491.324,4431.88)
+Point[1] Position= (905.817,491.297,4431.89)
 
-TrackID =360 : ParentID=250 : TrackStatus=1
+TrackID =620 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.1266 -20.2997 0.980083 keV
-Vertex : 0.0932188 -0.145309 2.15437 m    Global time : 10.4575 ns 
+Original momentum : 27.5232 27.6966 -7.02308 keV
+Vertex : 0.901855 0.48921 4.4127 m    Global time : 16.4696 ns 
   Current trajectory has 2 points.
-Point[0] Position= (93.2188,-145.309,2154.37)
-Point[1] Position= (93.2003,-145.324,2154.37)
+Point[0] Position= (901.855,489.21,4412.7)
+Point[1] Position= (901.887,489.242,4412.69)
 
-TrackID =359 : ParentID=250 : TrackStatus=1
+TrackID =619 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.2029 18.3927 5.03108 keV
-Vertex : 0.0898481 -0.138766 2.06635 m    Global time : 10.0294 ns 
+Original momentum : -31.1283 -14.9688 9.49182 keV
+Vertex : 0.878286 0.476671 4.2989 m    Global time : 16.0446 ns 
   Current trajectory has 2 points.
-Point[0] Position= (89.8481,-138.766,2066.35)
-Point[1] Position= (89.8066,-138.745,2066.35)
-
-TrackID =358 : ParentID=250 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 43.1748 36.8913 5.63512 keV
-Vertex : 0.0897691 -0.138619 2.06434 m    Global time : 10.0197 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (89.7691,-138.619,2064.34)
-Point[1] Position= (89.8852,-138.519,2064.36)
-Point[2] Position= (89.8819,-138.512,2064.36)
+Point[0] Position= (878.286,476.671,4298.9)
+Point[1] Position= (878.257,476.657,4298.91)
 
-TrackID =357 : ParentID=250 : TrackStatus=1
+TrackID =618 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.87777 -33.2009 -0.321171 keV
-Vertex : 0.0889279 -0.137073 2.04309 m    Global time : 9.91628 ns 
+Original momentum : -38.1679 -16.9243 11.8144 keV
+Vertex : 0.877911 0.476472 4.2971 m    Global time : 16.0378 ns 
   Current trajectory has 2 points.
-Point[0] Position= (88.9279,-137.073,2043.09)
-Point[1] Position= (88.9195,-137.101,2043.09)
+Point[0] Position= (877.911,476.472,4297.1)
+Point[1] Position= (877.857,476.448,4297.11)
 
-TrackID =356 : ParentID=250 : TrackStatus=1
+TrackID =617 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -51.6227 -18.0857 4.92295 keV
-Vertex : 0.0872894 -0.133982 2.00109 m    Global time : 9.71204 ns 
+Original momentum : 36.2909 -17.9168 -3.73137 keV
+Vertex : 0.875268 0.475065 4.28431 m    Global time : 15.9901 ns 
   Current trajectory has 2 points.
-Point[0] Position= (87.2894,-133.982,2001.09)
-Point[1] Position= (87.1622,-134.026,2001.1)
+Point[0] Position= (875.268,475.065,4284.31)
+Point[1] Position= (875.312,475.044,4284.31)
 
-TrackID =355 : ParentID=250 : TrackStatus=1
+TrackID =616 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.3878 -31.2629 -0.75526 keV
-Vertex : 0.0783316 -0.116382 1.76398 m    Global time : 8.55936 ns 
+Original momentum : 29.0503 -30.2377 -0.784435 keV
+Vertex : 0.817425 0.444321 4.00455 m    Global time : 14.9453 ns 
   Current trajectory has 2 points.
-Point[0] Position= (78.3316,-116.382,1763.98)
-Point[1] Position= (78.3814,-116.43,1763.97)
+Point[0] Position= (817.425,444.321,4004.55)
+Point[1] Position= (817.463,444.282,4004.55)
 
-TrackID =354 : ParentID=250 : TrackStatus=1
+TrackID =615 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.2227 -29.2574 2.49366 keV
-Vertex : 0.0724358 -0.105489 1.61692 m    Global time : 7.84451 ns 
+Original momentum : -35.7532 -11.3389 10.2906 keV
+Vertex : 0.80966 0.440228 3.96704 m    Global time : 14.8053 ns 
   Current trajectory has 2 points.
-Point[0] Position= (72.4358,-105.489,1616.92)
-Point[1] Position= (72.3714,-105.54,1616.92)
+Point[0] Position= (809.66,440.228,3967.04)
+Point[1] Position= (809.62,440.215,3967.05)
 
-TrackID =353 : ParentID=250 : TrackStatus=1
+TrackID =614 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -16.6856 28.4907 4.34388 keV
-Vertex : 0.0707967 -0.102435 1.57593 m    Global time : 7.64528 ns 
+Original momentum : -46.774 16.1128 10.6815 keV
+Vertex : 0.792444 0.431129 3.88369 m    Global time : 14.494 ns 
   Current trajectory has 2 points.
-Point[0] Position= (70.7967,-102.435,1575.93)
-Point[1] Position= (70.7835,-102.412,1575.94)
+Point[0] Position= (792.444,431.129,3883.69)
+Point[1] Position= (792.349,431.161,3883.71)
 
-TrackID =352 : ParentID=250 : TrackStatus=1
+TrackID =613 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -16.2527 32.1223 4.90805 keV
-Vertex : 0.063544 -0.0898191 1.40336 m    Global time : 6.80663 ns 
+Original momentum : -52.4164 50.7855 11.2009 keV
+Vertex : 0.765959 0.417073 3.75531 m    Global time : 14.0147 ns 
   Current trajectory has 2 points.
-Point[0] Position= (63.544,-89.8191,1403.36)
-Point[1] Position= (63.5286,-89.7886,1403.36)
+Point[0] Position= (765.959,417.073,3755.31)
+Point[1] Position= (765.689,417.334,3755.37)
 
-TrackID =351 : ParentID=250 : TrackStatus=1
+TrackID =612 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -48.9082 -0.99336 5.43163 keV
-Vertex : 0.0613007 -0.0859904 1.35035 m    Global time : 6.54907 ns 
+Original momentum : -18.9823 -25.4819 7.89234 keV
+Vertex : 0.752507 0.409869 3.68999 m    Global time : 13.7708 ns 
   Current trajectory has 2 points.
-Point[0] Position= (61.3007,-85.9904,1350.35)
-Point[1] Position= (61.2082,-85.9923,1350.36)
+Point[0] Position= (752.507,409.869,3689.99)
+Point[1] Position= (752.492,409.85,3689.99)
 
-TrackID =350 : ParentID=250 : TrackStatus=1
+TrackID =611 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.4666 29.8296 3.08048 keV
-Vertex : 0.0595422 -0.0830221 1.30874 m    Global time : 6.34691 ns 
+Original momentum : 19.6782 -38.6549 2.28893 keV
+Vertex : 0.706663 0.385296 3.46839 m    Global time : 12.9431 ns 
   Current trajectory has 2 points.
-Point[0] Position= (59.5422,-83.0221,1308.74)
-Point[1] Position= (59.5536,-82.9987,1308.74)
+Point[0] Position= (706.663,385.296,3468.39)
+Point[1] Position= (706.691,385.241,3468.39)
 
-TrackID =349 : ParentID=250 : TrackStatus=1
+TrackID =610 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 51.0791 -4.5857 1.27544 keV
-Vertex : 0.0552966 -0.0760267 1.20807 m    Global time : 5.85795 ns 
+Original momentum : -3.14145 39.1355 -2.00543 keV
+Vertex : 0.704804 0.384296 3.45939 m    Global time : 12.9095 ns 
   Current trajectory has 2 points.
-Point[0] Position= (55.2966,-76.0267,1208.07)
-Point[1] Position= (55.4032,-76.0363,1208.07)
+Point[0] Position= (704.804,384.296,3459.39)
+Point[1] Position= (704.8,384.341,3459.39)
 
-TrackID =348 : ParentID=250 : TrackStatus=1
+TrackID =609 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 104.658 206.592 93.6556 keV
-Vertex : 0.050372 -0.0681839 1.09495 m    Global time : 5.30858 ns 
+Original momentum : -197.808 24.1357 87.9353 keV
+Vertex : 0.694749 0.378901 3.41073 m    Global time : 12.7278 ns 
   Current trajectory has 11 points.
-Point[0] Position= (50.372,-68.1839,1094.95)
-Point[1] Position= (55.6572,-57.7511,1099.67)
-Point[2] Position= (55.953,-51.7408,1094.82)
-Point[3] Position= (56.202,-49.6797,1092.61)
-Point[4] Position= (54.0428,-43.5361,1091.39)
-Point[5] Position= (54.7529,-38.6094,1093.34)
-Point[6] Position= (56.3094,-35.1817,1091.37)
-Point[7] Position= (56.7793,-35.5632,1088.47)
-Point[8] Position= (57.3986,-34.2604,1087.01)
-Point[9] Position= (57.3073,-33.472,1086.79)
-Point[10] Position= (57.2819,-33.4365,1086.42)
+Point[0] Position= (694.749,378.901,3410.73)
+Point[1] Position= (690.709,379.394,3412.52)
+Point[2] Position= (683.801,378.745,3414.2)
+Point[3] Position= (680.22,376.218,3417.55)
+Point[4] Position= (679.372,375.32,3418.43)
+Point[5] Position= (678.979,374.804,3418.64)
+Point[6] Position= (677.188,372.65,3418.53)
+Point[7] Position= (678.228,373.27,3420.42)
+Point[8] Position= (679.602,373.73,3421.18)
+Point[9] Position= (679.959,374.288,3422.04)
+Point[10] Position= (679.726,374.207,3422.28)
 
-TrackID =481 : ParentID=348 : TrackStatus=1
+TrackID =655 : ParentID=609 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 46.7489 49.0652 1.18966 keV
-Vertex : 0.0573073 -0.033472 1.08679 m    Global time : 5.72525 ns 
+Original momentum : 29.2919 -27.7952 51.9845 keV
+Vertex : 0.678979 0.374804 3.41864 m    Global time : 12.9049 ns 
   Current trajectory has 2 points.
-Point[0] Position= (57.3073,-33.472,1086.79)
-Point[1] Position= (57.5009,-33.2688,1086.79)
+Point[0] Position= (678.979,374.804,3418.64)
+Point[1] Position= (679.092,374.697,3418.84)
 
-TrackID =480 : ParentID=348 : TrackStatus=1
+TrackID =654 : ParentID=609 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.64514 -8.80115 -51.9041 keV
-Vertex : 0.056202 -0.0496797 1.09261 m    Global time : 5.49318 ns 
+Original momentum : 35.8687 -29.1553 -3.51821 keV
+Vertex : 0.679372 0.37532 3.41843 m    Global time : 12.8974 ns 
   Current trajectory has 2 points.
-Point[0] Position= (56.202,-49.6797,1092.61)
-Point[1] Position= (56.2079,-49.6993,1092.49)
+Point[0] Position= (679.372,375.32,3418.43)
+Point[1] Position= (679.431,375.272,3418.43)
 
-TrackID =479 : ParentID=348 : TrackStatus=1
+TrackID =653 : ParentID=609 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.0295 9.74526 12.3346 keV
-Vertex : 0.055953 -0.0517408 1.09482 m    Global time : 5.4671 ns 
+Original momentum : -0.370293 37.0267 14.0173 keV
+Vertex : 0.690709 0.379394 3.41252 m    Global time : 12.7657 ns 
   Current trajectory has 2 points.
-Point[0] Position= (55.953,-51.7408,1094.82)
-Point[1] Position= (55.9823,-51.7319,1094.83)
+Point[0] Position= (690.709,379.394,3412.52)
+Point[1] Position= (690.709,379.436,3412.54)
 
-TrackID =347 : ParentID=250 : TrackStatus=1
+TrackID =608 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.6154 -107.096 9.61747 keV
-Vertex : 0.0502014 -0.0679286 1.09118 m    Global time : 5.2903 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (50.2014,-67.9286,1091.18)
-Point[1] Position= (50.0739,-69.2154,1091.3)
-Point[2] Position= (50.4372,-69.1875,1092.06)
-Point[3] Position= (50.5706,-69.0649,1092.11)
+Original momentum : 5.31879 35.1638 -3.60712 keV
+Vertex : 0.694303 0.37866 3.40856 m    Global time : 12.7197 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (694.303,378.66,3408.56)
+Point[1] Position= (694.308,378.693,3408.56)
 
-TrackID =346 : ParentID=250 : TrackStatus=1
+TrackID =607 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.5184 -30.5584 -0.982823 keV
-Vertex : 3.95923 -5.25468 85.9376 cm   Global time : 4.16533 ns 
+Original momentum : 29.5624 -13.7345 -3.37938 keV
+Vertex : 0.688104 0.375311 3.37845 m    Global time : 12.6073 ns 
   Current trajectory has 2 points.
-Point[0] Position= (39.5923,-52.5468,859.376)
-Point[1] Position= (39.6141,-52.5777,859.375)
+Point[0] Position= (688.104,375.311,3378.45)
+Point[1] Position= (688.126,375.3,3378.44)
 
-TrackID =345 : ParentID=250 : TrackStatus=1
+TrackID =606 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 49.4489 -90.6606 6.80865 keV
-Vertex : 3.80188 -5.0375 82.5873 cm   Global time : 4.00277 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (38.0188,-50.375,825.873)
-Point[1] Position= (38.571,-51.3876,825.949)
-Point[2] Position= (38.6293,-51.9192,825.828)
-Point[3] Position= (38.6106,-51.919,825.816)
+Original momentum : 27.2604 19.1696 -6.44456 keV
+Vertex : 0.659461 0.359648 3.23858 m    Global time : 12.0851 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (659.461,359.648,3238.58)
+Point[1] Position= (659.483,359.664,3238.57)
 
-TrackID =344 : ParentID=250 : TrackStatus=1
+TrackID =605 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.4559 54.8564 8.14612 keV
-Vertex : 3.76005 -4.98105 81.7225 cm   Global time : 3.9608 ns 
+Original momentum : -20.0711 32.5523 2.03517 keV
+Vertex : 0.655305 0.357357 3.21819 m    Global time : 12.009 ns 
   Current trajectory has 2 points.
-Point[0] Position= (37.6005,-49.8105,817.225)
-Point[1] Position= (37.7581,-49.5858,817.258)
+Point[0] Position= (655.305,357.357,3218.19)
+Point[1] Position= (655.284,357.392,3218.19)
 
-TrackID =343 : ParentID=250 : TrackStatus=1
+TrackID =604 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.0755734 40.4716 4.94485 keV
-Vertex : 3.54454 -4.69545 77.2795 cm   Global time : 3.74525 ns 
+Original momentum : -57.567 31.8356 13.0692 keV
+Vertex : 0.639267 0.348506 3.13947 m    Global time : 11.7151 ns 
   Current trajectory has 2 points.
-Point[0] Position= (35.4454,-46.9545,772.795)
-Point[1] Position= (35.4453,-46.9048,772.801)
+Point[0] Position= (639.267,348.506,3139.47)
+Point[1] Position= (639.034,348.635,3139.52)
 
-TrackID =342 : ParentID=250 : TrackStatus=1
+TrackID =603 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.5894 -44.9835 -0.301099 keV
-Vertex : 2.84623 -3.80243 63.0279 cm   Global time : 3.05401 ns 
+Original momentum : 26.9827 -20.1409 -1.96028 keV
+Vertex : 0.574324 0.312628 2.81993 m    Global time : 10.5225 ns 
   Current trajectory has 2 points.
-Point[0] Position= (28.4623,-38.0243,630.279)
-Point[1] Position= (28.4853,-38.1005,630.279)
+Point[0] Position= (574.324,312.628,2819.93)
+Point[1] Position= (574.346,312.612,2819.93)
 
-TrackID =341 : ParentID=250 : TrackStatus=1
+TrackID =602 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 102.006 -36.0037 9.36542 keV
-Vertex : 2.72725 -3.65003 60.5741 cm   Global time : 2.93501 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (27.2725,-36.5003,605.741)
-Point[1] Position= (27.9591,-36.7427,605.804)
-Point[2] Position= (27.8461,-36.3379,605.65)
+Original momentum : 23.3169 27.5952 -6.3367 keV
+Vertex : 0.572146 0.311423 2.80916 m    Global time : 10.4823 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (572.146,311.423,2809.16)
+Point[1] Position= (572.168,311.45,2809.16)
 
-TrackID =482 : ParentID=341 : TrackStatus=1
+TrackID =601 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 49.8125 27.4878 34.6048 keV
-Vertex : 2.79591 -3.67427 60.5804 cm   Global time : 2.94674 ns 
+Original momentum : -43.4196 15.1902 9.49373 keV
+Vertex : 0.57171 0.311182 2.80701 m    Global time : 10.4743 ns 
   Current trajectory has 2 points.
-Point[0] Position= (27.9591,-36.7427,605.804)
-Point[1] Position= (28.1565,-36.6338,605.941)
+Point[0] Position= (571.71,311.182,2807.01)
+Point[1] Position= (571.636,311.208,2807.03)
 
-TrackID =340 : ParentID=250 : TrackStatus=1
+TrackID =600 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.7031 -43.8812 2.89969 keV
-Vertex : 2.46086 -3.30494 55.0469 cm   Global time : 2.66699 ns 
+Original momentum : -36.3655 -40.8717 15.4549 keV
+Vertex : 0.571468 0.311048 2.80581 m    Global time : 10.4698 ns 
   Current trajectory has 2 points.
-Point[0] Position= (24.6086,-33.0494,550.469)
-Point[1] Position= (24.533,-33.1542,550.475)
+Point[0] Position= (571.468,311.048,2805.81)
+Point[1] Position= (571.371,310.939,2805.86)
 
-TrackID =339 : ParentID=250 : TrackStatus=1
+TrackID =599 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.9925 -15.9446 2.05946 keV
-Vertex : 1.96162 -2.63449 44.4833 cm   Global time : 2.15481 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (19.6162,-26.3449,444.833)
-Point[1] Position= (19.5914,-26.3581,444.834)
+Original momentum : 79.8275 -2.58469 -8.80822 keV
+Vertex : 0.567436 0.308814 2.78584 m    Global time : 10.3953 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (567.436,308.814,2785.84)
+Point[1] Position= (567.945,308.797,2785.79)
+Point[2] Position= (567.866,308.78,2785.67)
 
-TrackID =338 : ParentID=250 : TrackStatus=1
+TrackID =598 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.7827 -25.3224 -1.06789 keV
-Vertex : 1.88983 -2.53803 42.9646 cm   Global time : 2.08118 ns 
+Original momentum : 42.5958 -41.9391 -0.0493661 keV
+Vertex : 0.55896 0.304131 2.74394 m    Global time : 10.2389 ns 
   Current trajectory has 2 points.
-Point[0] Position= (18.8983,-25.3803,429.646)
-Point[1] Position= (18.9141,-25.3995,429.646)
+Point[0] Position= (558.96,304.131,2743.94)
+Point[1] Position= (559.089,304.004,2743.94)
 
-TrackID =337 : ParentID=250 : TrackStatus=1
+TrackID =597 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.9608 22.3313 2.58325 keV
-Vertex : 1.86263 -2.50112 42.3863 cm   Global time : 2.05314 ns 
+Original momentum : 37.7216 2.68659 -6.32863 keV
+Vertex : 0.545303 0.296616 2.67648 m    Global time : 9.98719 ns 
   Current trajectory has 2 points.
-Point[0] Position= (18.6263,-25.0112,423.863)
-Point[1] Position= (18.6948,-24.9739,423.867)
+Point[0] Position= (545.303,296.616,2676.48)
+Point[1] Position= (545.343,296.619,2676.47)
 
-TrackID =336 : ParentID=250 : TrackStatus=1
+TrackID =596 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.53253 36.2572 4.30884 keV
-Vertex : 1.84738 -2.48072 42.0641 cm   Global time : 2.03752 ns 
+Original momentum : 62.1864 -32.2367 -3.65039 keV
+Vertex : 0.540887 0.294188 2.65467 m    Global time : 9.90582 ns 
   Current trajectory has 2 points.
-Point[0] Position= (18.4738,-24.8072,420.641)
-Point[1] Position= (18.4713,-24.7721,420.645)
+Point[0] Position= (540.887,294.188,2654.67)
+Point[1] Position= (541.168,294.042,2654.65)
 
-TrackID =335 : ParentID=250 : TrackStatus=1
+TrackID =595 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -51.3856 -13.7327 5.62979 keV
-Vertex : 1.83494 -2.46423 41.8026 cm   Global time : 2.02484 ns 
+Original momentum : 20.5958 -25.7734 -0.142178 keV
+Vertex : 0.513172 0.279072 2.51799 m    Global time : 9.39585 ns 
   Current trajectory has 2 points.
-Point[0] Position= (18.3494,-24.6423,418.026)
-Point[1] Position= (18.2308,-24.674,418.039)
+Point[0] Position= (513.172,279.072,2517.99)
+Point[1] Position= (513.188,279.053,2517.99)
 
-TrackID =334 : ParentID=250 : TrackStatus=1
+TrackID =594 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.1542 -22.1342 2.29093 keV
-Vertex : 1.82265 -2.44781 41.5431 cm   Global time : 2.01226 ns 
+Original momentum : 36.1024 2.94928 -6.18391 keV
+Vertex : 0.497587 0.270609 2.44128 m    Global time : 9.10961 ns 
   Current trajectory has 2 points.
-Point[0] Position= (18.2265,-24.4781,415.431)
-Point[1] Position= (18.1905,-24.5029,415.434)
+Point[0] Position= (497.587,270.609,2441.28)
+Point[1] Position= (497.622,270.612,2441.28)
 
-TrackID =333 : ParentID=250 : TrackStatus=1
+TrackID =593 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 63.3191 135.415 38.7016 keV
-Vertex : 1.76546 -2.37121 40.3391 cm   Global time : 1.95389 ns 
-  Current trajectory has 6 points.
-Point[0] Position= (17.6546,-23.7121,403.391)
-Point[1] Position= (17.6692,-23.681,403.4)
-Point[2] Position= (18.2685,-22.7163,403.975)
-Point[3] Position= (17.6084,-21.2498,404.073)
-Point[4] Position= (18.5109,-20.9631,403.484)
-Point[5] Position= (18.6928,-21.2541,403.494)
+Original momentum : -29.8301 15.9078 5.57037 keV
+Vertex : 0.469998 0.255579 2.30535 m    Global time : 8.60239 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (469.998,255.579,2305.35)
+Point[1] Position= (469.973,255.592,2305.35)
 
-TrackID =484 : ParentID=333 : TrackStatus=1
+TrackID =592 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -43.2502 -23.2496 69.4576 keV
-Vertex : 1.82685 -2.27163 40.3975 cm   Global time : 1.96931 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (18.2685,-22.7163,403.975)
-Point[1] Position= (17.9502,-22.8874,404.486)
-Point[2] Position= (17.9864,-22.8652,404.419)
+Original momentum : 44.0571 22.3898 -8.67234 keV
+Vertex : 0.443326 0.241107 2.17385 m    Global time : 8.11177 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (443.326,241.107,2173.85)
+Point[1] Position= (443.413,241.151,2173.83)
 
-TrackID =483 : ParentID=333 : TrackStatus=1
+TrackID =591 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.20387 20.2989 -24.1262 keV
-Vertex : 1.76692 -2.3681 40.34 cm   Global time : 1.9543 ns 
+Original momentum : 25.3657 31.3653 -6.81395 keV
+Vertex : 0.439865 0.239228 2.15682 m    Global time : 8.04824 ns 
   Current trajectory has 2 points.
-Point[0] Position= (17.6692,-23.681,403.4)
-Point[1] Position= (17.6621,-23.6655,403.382)
+Point[0] Position= (439.865,239.228,2156.82)
+Point[1] Position= (439.896,239.267,2156.81)
 
-TrackID =332 : ParentID=250 : TrackStatus=1
+TrackID =590 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.875 -25.7328 -0.860282 keV
-Vertex : 1.50292 -2.02005 34.5094 cm   Global time : 1.6714 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (15.0292,-20.2005,345.094)
-Point[1] Position= (15.0454,-20.2205,345.093)
+Original momentum : 72.9912 207.751 13.0816 keV
+Vertex : 0.43416 0.236135 2.12885 m    Global time : 7.94386 ns 
+  Current trajectory has 13 points.
+Point[0] Position= (434.16,236.135,2128.85)
+Point[1] Position= (434.885,238.198,2128.98)
+Point[2] Position= (434.112,244.748,2129.56)
+Point[3] Position= (434.946,248.333,2129.81)
+Point[4] Position= (434.915,250.574,2126.98)
+Point[5] Position= (437.128,251.265,2124.74)
+Point[6] Position= (437.42,251.12,2124.72)
+Point[7] Position= (437.996,250.505,2124.64)
+Point[8] Position= (438.502,248.791,2124.53)
+Point[9] Position= (437.199,248.8,2124.25)
+Point[10] Position= (436.899,248.826,2124.28)
+Point[11] Position= (436.727,249.059,2123.87)
+Point[12] Position= (436.734,249.061,2123.88)
 
-TrackID =331 : ParentID=250 : TrackStatus=1
+TrackID =661 : ParentID=590 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.307 47.1758 5.69479 keV
-Vertex : 1.45169 -1.95018 33.3329 cm   Global time : 1.6144 ns 
+Original momentum : -24.8456 14.8726 19.054 keV
+Vertex : 0.436899 0.248826 2.12428 m    Global time : 8.19934 ns 
   Current trajectory has 2 points.
-Point[0] Position= (14.5169,-19.5018,333.329)
-Point[1] Position= (14.5379,-19.4142,333.34)
+Point[0] Position= (436.899,248.826,2124.28)
+Point[1] Position= (436.878,248.839,2124.29)
 
-TrackID =330 : ParentID=250 : TrackStatus=1
+TrackID =660 : ParentID=590 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.3553 -28.1859 1.13688 keV
-Vertex : 1.15958 -1.55837 26.7403 cm   Global time : 1.29501 ns 
+Original momentum : 22.055 7.97495 -26.0184 keV
+Vertex : 0.437996 0.250505 2.12464 m    Global time : 8.14673 ns 
   Current trajectory has 2 points.
-Point[0] Position= (11.5958,-15.5837,267.403)
-Point[1] Position= (11.575,-15.6099,267.404)
+Point[0] Position= (437.996,250.505,2124.64)
+Point[1] Position= (438.015,250.512,2124.61)
 
-TrackID =329 : ParentID=250 : TrackStatus=1
+TrackID =659 : ParentID=590 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.5966 9.98121 1.57973 keV
-Vertex : 0.941484 -1.2626 21.7493 cm   Global time : 1.05323 ns 
+Original momentum : 23.5955 21.158 5.89766 keV
+Vertex : 0.43742 0.25112 2.12472 m    Global time : 8.13568 ns 
   Current trajectory has 2 points.
-Point[0] Position= (9.41484,-12.626,217.493)
-Point[1] Position= (9.48581,-12.6101,217.496)
+Point[0] Position= (437.42,251.12,2124.72)
+Point[1] Position= (437.437,251.135,2124.72)
 
-TrackID =328 : ParentID=250 : TrackStatus=1
+TrackID =658 : ParentID=590 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.9052 24.0716 1.9566 keV
-Vertex : 0.618873 -0.822888 14.3392 cm   Global time : 694.311 ps 
+Original momentum : -21.121 20.5831 -14.7492 keV
+Vertex : 0.434915 0.250574 2.12698 m    Global time : 8.09469 ns 
   Current trajectory has 2 points.
-Point[0] Position= (6.18873,-8.22888,143.392)
-Point[1] Position= (6.20377,-8.21156,143.394)
+Point[0] Position= (434.915,250.574,2126.98)
+Point[1] Position= (434.899,250.59,2126.97)
 
-TrackID =327 : ParentID=250 : TrackStatus=1
+TrackID =657 : ParentID=590 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 54.9361 -47.752 2.317 keV
-Vertex : 0.425899 -0.567511 9.98541 cm   Global time : 483.447 ps 
+Original momentum : 16.9139 -0.885184 -40.226 keV
+Vertex : 0.434112 0.244748 2.12956 m    Global time : 8.02026 ns 
   Current trajectory has 2 points.
-Point[0] Position= (4.25899,-5.67511,99.8541)
-Point[1] Position= (4.53181,-5.91225,99.8656)
+Point[0] Position= (434.112,244.748,2129.56)
+Point[1] Position= (434.137,244.747,2129.51)
 
-TrackID =326 : ParentID=250 : TrackStatus=1
+TrackID =656 : ParentID=590 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -43.9885 55.3362 12.3417 keV
-Vertex : 0.343179 -0.457622 8.09361 cm   Global time : 391.833 ps 
+Original momentum : 17.3713 7.09012 -50.3711 keV
+Vertex : 0.434885 0.238198 2.12898 m    Global time : 7.9623 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.43179,-4.57622,80.9361)
-Point[1] Position= (3.22135,-4.3115,80.9951)
+Point[0] Position= (434.885,238.198,2128.98)
+Point[1] Position= (434.926,238.215,2128.86)
 
-TrackID =249 : ParentID=59 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : -161.858 -21.4214 670.519 MeV
-Vertex : -1.8367e-295 -1.61085e-296 1.33512e-293 fm   Global time : 6.40032e-305 ps 
+TrackID =589 : ParentID=561 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -56.1562 -16.726 17.395 keV
+Vertex : 0.429762 0.233741 2.10732 m    Global time : 7.86348 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.8367e-307,-1.61085e-308,1.33512e-305)
-Point[1] Position= (-9.30679e-06,-1.23173e-06,3.85547e-05)
-
-TrackID =58 : ParentID=45 : TrackStatus=1
-Particle name : pi+  PDG code : 211  Charge : 1
-Original momentum : -0.492956 -0.27734 2.82536 GeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
-  Current trajectory has 66 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (-43.4907,-24.4852,249.284)
-Point[2] Position= (-45.4181,-25.5702,260.332)
-Point[3] Position= (-54.5418,-30.7054,312.616)
-Point[4] Position= (-69.8004,-39.2915,400.041)
-Point[5] Position= (-109.514,-61.6413,627.55)
-Point[6] Position= (-116.438,-65.5385,667.216)
-Point[7] Position= (-136.067,-76.5893,779.659)
-Point[8] Position= (-146.453,-82.4338,839.14)
-Point[9] Position= (-158.811,-89.386,909.906)
-Point[10] Position= (-160.81,-90.5108,921.356)
-Point[11] Position= (-164.713,-92.7069,943.71)
-Point[12] Position= (-168.218,-94.679,963.785)
-Point[13] Position= (-174.29,-98.0966,998.566)
-Point[14] Position= (-174.541,-98.2376,1000)
-Point[15] Position= (-176.795,-99.5074,1012.92)
-Point[16] Position= (-194.572,-109.515,1114.77)
-Point[17] Position= (-195.46,-110.015,1119.86)
-Point[18] Position= (-244.794,-137.778,1402.57)
-Point[19] Position= (-261.367,-147.098,1497.55)
-Point[20] Position= (-291.592,-164.109,1670.84)
-Point[21] Position= (-295.415,-166.261,1692.77)
-Point[22] Position= (-304.231,-171.223,1743.33)
-Point[23] Position= (-324.479,-182.613,1859.42)
-Point[24] Position= (-336.619,-189.44,1928.98)
-Point[25] Position= (-339.281,-190.937,1944.24)
-Point[26] Position= (-374.444,-210.714,2145.82)
-Point[27] Position= (-400.788,-225.533,2296.93)
-Point[28] Position= (-420.279,-236.503,2408.73)
-Point[29] Position= (-435.013,-244.803,2493.27)
-Point[30] Position= (-442.342,-248.929,2535.31)
-Point[31] Position= (-445.612,-250.77,2554.07)
-Point[32] Position= (-457.279,-257.339,2621.03)
-Point[33] Position= (-507.874,-285.853,2911.5)
-Point[34] Position= (-534.29,-300.753,3063.21)
-Point[35] Position= (-539.178,-303.512,3091.29)
-Point[36] Position= (-544.061,-306.268,3119.33)
-Point[37] Position= (-551.119,-310.248,3159.87)
-Point[38] Position= (-578.057,-325.441,3314.59)
-Point[39] Position= (-584.935,-329.318,3354.08)
-Point[40] Position= (-601.562,-338.69,3449.57)
-Point[41] Position= (-631.47,-355.545,3621.37)
-Point[42] Position= (-670.043,-377.273,3842.94)
-Point[43] Position= (-702.373,-395.492,4028.71)
-Point[44] Position= (-705.9,-397.479,4048.97)
-Point[45] Position= (-716.939,-403.7,4112.41)
-Point[46] Position= (-730.34,-411.25,4189.43)
-Point[47] Position= (-730.501,-411.341,4190.35)
-Point[48] Position= (-764.359,-430.418,4384.94)
-Point[49] Position= (-784.731,-441.894,4502.06)
-Point[50] Position= (-795.376,-447.888,4563.28)
-Point[51] Position= (-799.792,-450.376,4588.68)
-Point[52] Position= (-848.487,-477.801,4868.97)
-Point[53] Position= (-850.247,-478.788,4879.08)
-Point[54] Position= (-853.976,-480.878,4900.49)
-Point[55] Position= (-866.962,-488.154,4975.07)
-Point[56] Position= (-890.391,-501.28,5109.61)
-Point[57] Position= (-896.124,-504.49,5142.52)
-Point[58] Position= (-897.557,-505.292,5150.75)
-Point[59] Position= (-906.739,-510.435,5203.47)
-Point[60] Position= (-913.297,-514.11,5241.12)
-Point[61] Position= (-929.004,-522.914,5331.31)
-Point[62] Position= (-944.54,-531.623,5420.53)
-Point[63] Position= (-974.291,-548.278,5591.27)
-Point[64] Position= (-999.446,-562.32,5735.43)
-Point[65] Position= (-1045.62,-588.076,6000)
-
-TrackID =548 : ParentID=58 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 81.6476 48.3785 28.6882 keV
-Vertex : -0.999446 -0.56232 5.73543 m    Global time : 19.5329 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-999.446,-562.32,5735.43)
-Point[1] Position= (-998.603,-561.821,5735.73)
-Point[2] Position= (-998.572,-562.011,5735.8)
-Point[3] Position= (-998.564,-562.03,5735.79)
+Point[0] Position= (429.762,233.741,2107.32)
+Point[1] Position= (429.582,233.687,2107.37)
 
-TrackID =547 : ParentID=58 : TrackStatus=1
+TrackID =588 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.6379 63.9774 5.38724 keV
-Vertex : -0.974291 -0.548278 5.59127 m    Global time : 19.042 ns 
+Original momentum : 53.1331 73.4307 -9.98498 keV
+Vertex : 0.424828 0.231053 2.08313 m    Global time : 7.77322 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-974.291,-548.278,5591.27)
-Point[1] Position= (-974.452,-547.989,5591.29)
-Point[2] Position= (-974.408,-548.048,5591.28)
-
-TrackID =546 : ParentID=58 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 109.894 -37.6182 29.629 keV
-Vertex : -0.94454 -0.531623 5.42053 m    Global time : 18.4605 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-944.54,-531.623,5420.53)
-Point[1] Position= (-942.993,-532.153,5420.95)
-Point[2] Position= (-943.002,-533.085,5420.95)
-Point[3] Position= (-943.127,-532.815,5420.67)
+Point[0] Position= (424.828,231.053,2083.13)
+Point[1] Position= (425.289,231.69,2083.04)
+Point[2] Position= (425.369,231.715,2082.88)
 
-TrackID =545 : ParentID=58 : TrackStatus=1
+TrackID =587 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.4936 -33.2834 2.72678 keV
-Vertex : -0.929004 -0.522914 5.33131 m    Global time : 18.1567 ns 
+Original momentum : 45.0168 17.8563 -8.54864 keV
+Vertex : 0.420703 0.228804 2.06294 m    Global time : 7.69785 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-929.004,-522.914,5331.31)
-Point[1] Position= (-928.972,-522.956,5331.31)
+Point[0] Position= (420.703,228.804,2062.94)
+Point[1] Position= (420.788,228.838,2062.92)
 
-TrackID =544 : ParentID=58 : TrackStatus=1
+TrackID =586 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -16.5157 29.0727 1.07847 keV
-Vertex : -0.913297 -0.51411 5.24112 m    Global time : 17.8495 ns 
+Original momentum : 39.8002 24.2982 -8.37249 keV
+Vertex : 0.391512 0.212913 1.92003 m    Global time : 7.16447 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-913.297,-514.11,5241.12)
-Point[1] Position= (-913.311,-514.087,5241.13)
+Point[0] Position= (391.512,212.913,1920.03)
+Point[1] Position= (391.58,212.955,1920.01)
 
-TrackID =543 : ParentID=58 : TrackStatus=1
+TrackID =585 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -47.0889 50.5074 1.47215 keV
-Vertex : -0.906739 -0.510435 5.20347 m    Global time : 17.7213 ns 
+Original momentum : 25.6034 -30.4324 -0.104126 keV
+Vertex : 0.389692 0.211919 1.91111 m    Global time : 7.13118 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-906.739,-510.435,5203.47)
-Point[1] Position= (-906.944,-510.215,5203.47)
+Point[0] Position= (389.692,211.919,1911.11)
+Point[1] Position= (389.722,211.883,1911.11)
 
-TrackID =542 : ParentID=58 : TrackStatus=1
+TrackID =584 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -42.8599 41.6886 0.158656 keV
-Vertex : -0.897557 -0.505292 5.15075 m    Global time : 17.5418 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-897.557,-505.292,5150.75)
-Point[1] Position= (-897.687,-505.166,5150.75)
+Original momentum : -128.27 -153.562 94.4989 keV
+Vertex : 0.365675 0.198786 1.79323 m    Global time : 6.69127 ns 
+  Current trajectory has 10 points.
+Point[0] Position= (365.675,198.786,1793.23)
+Point[1] Position= (360.637,192.755,1796.94)
+Point[2] Position= (355.865,191.657,1798.35)
+Point[3] Position= (351.505,189.367,1797.15)
+Point[4] Position= (350.857,188.176,1796.15)
+Point[5] Position= (350.58,187.563,1795.29)
+Point[6] Position= (349.946,186.395,1793.25)
+Point[7] Position= (349.992,186.64,1791.62)
+Point[8] Position= (349.577,186.207,1790.96)
+Point[9] Position= (349.595,186.022,1790.71)
 
-TrackID =541 : ParentID=58 : TrackStatus=1
+TrackID =664 : ParentID=584 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.4207 -9.26283 -5.27886 keV
-Vertex : -0.896124 -0.50449 5.14252 m    Global time : 17.5138 ns 
+Original momentum : 5.8699 39.7635 -24.9838 keV
+Vertex : 0.35058 0.187563 1.79529 m    Global time : 6.89093 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-896.124,-504.49,5142.52)
-Point[1] Position= (-896.148,-504.497,5142.52)
+Point[0] Position= (350.58,187.563,1795.29)
+Point[1] Position= (350.59,187.631,1795.24)
 
-TrackID =540 : ParentID=58 : TrackStatus=1
+TrackID =663 : ParentID=584 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -17.3812 36.3926 2.14763 keV
-Vertex : -0.890391 -0.50128 5.10961 m    Global time : 17.4017 ns 
+Original momentum : -56.5048 14.192 7.45085 keV
+Vertex : 0.350857 0.188176 1.79615 m    Global time : 6.87805 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-890.391,-501.28,5109.61)
-Point[1] Position= (-890.412,-501.236,5109.61)
+Point[0] Position= (350.857,188.176,1796.15)
+Point[1] Position= (350.693,188.217,1796.17)
 
-TrackID =539 : ParentID=58 : TrackStatus=1
+TrackID =662 : ParentID=584 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.7534 -22.9447 3.67343 keV
-Vertex : -0.866962 -0.488154 4.97507 m    Global time : 16.9435 ns 
+Original momentum : 2.13498 14.335 -36.3483 keV
+Vertex : 0.355865 0.191657 1.79835 m    Global time : 6.81028 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-866.962,-488.154,4975.07)
-Point[1] Position= (-866.937,-488.174,4975.07)
+Point[0] Position= (355.865,191.657,1798.35)
+Point[1] Position= (355.867,191.673,1798.31)
 
-TrackID =538 : ParentID=58 : TrackStatus=1
+TrackID =583 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.2178 -46.4049 -4.77618 keV
-Vertex : -0.853976 -0.480878 4.90049 m    Global time : 16.6895 ns 
+Original momentum : -43.1304 25.244 8.78936 keV
+Vertex : 0.354448 0.192668 1.73805 m    Global time : 6.48537 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-853.976,-480.878,4900.49)
-Point[1] Position= (-854.005,-480.965,4900.48)
+Point[0] Position= (354.448,192.668,1738.05)
+Point[1] Position= (354.36,192.719,1738.07)
 
-TrackID =537 : ParentID=58 : TrackStatus=1
+TrackID =582 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.1 -31.7827 -5.80365 keV
-Vertex : -0.850247 -0.478788 4.87908 m    Global time : 16.6166 ns 
+Original momentum : -54.6498 6.32809 13.8869 keV
+Vertex : 0.335981 0.18259 1.64725 m    Global time : 6.14656 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-850.247,-478.788,4879.08)
-Point[1] Position= (-850.278,-478.827,4879.07)
+Point[0] Position= (335.981,182.59,1647.25)
+Point[1] Position= (335.835,182.607,1647.29)
 
-TrackID =536 : ParentID=58 : TrackStatus=1
+TrackID =581 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.5993 -20.7263 6.40072 keV
-Vertex : -0.848487 -0.477801 4.86897 m    Global time : 16.5822 ns 
+Original momentum : 2.49729 -37.6866 5.25444 keV
+Vertex : 0.30156 0.163767 1.47709 m    Global time : 5.51182 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-848.487,-477.801,4868.97)
-Point[1] Position= (-848.434,-477.83,4868.98)
+Point[0] Position= (301.56,163.767,1477.09)
+Point[1] Position= (301.563,163.728,1477.1)
 
-TrackID =535 : ParentID=58 : TrackStatus=1
+TrackID =580 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -39.8267 70.2317 6.46895 keV
-Vertex : -0.799792 -0.450376 4.58868 m    Global time : 15.6277 ns 
+Original momentum : 28.1838 87.8833 -6.16819 keV
+Vertex : 0.266194 0.144238 1.30127 m    Global time : 4.85607 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-799.792,-450.376,4588.68)
-Point[1] Position= (-800.051,-449.919,4588.72)
-Point[2] Position= (-800.063,-449.917,4588.75)
+Point[0] Position= (266.194,144.238,1301.27)
+Point[1] Position= (266.446,145.025,1301.22)
+Point[2] Position= (266.411,145.015,1301.08)
 
-TrackID =534 : ParentID=58 : TrackStatus=1
+TrackID =579 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -44.9571 -18.5934 -7.22531 keV
-Vertex : -0.795376 -0.447888 4.56328 m    Global time : 15.5412 ns 
+Original momentum : 8.77571 54.5045 -4.48214 keV
+Vertex : 0.260835 0.141276 1.27467 m    Global time : 4.75682 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-795.376,-447.888,4563.28)
-Point[1] Position= (-795.461,-447.924,4563.26)
+Point[0] Position= (260.835,141.276,1274.67)
+Point[1] Position= (260.857,141.413,1274.65)
 
-TrackID =533 : ParentID=58 : TrackStatus=1
+TrackID =578 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.3405 -21.7273 3.17726 keV
-Vertex : -0.784731 -0.441894 4.50206 m    Global time : 15.3327 ns 
+Original momentum : -3.03531 -32.9334 5.50257 keV
+Vertex : 0.259836 0.140725 1.26971 m    Global time : 4.73834 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-784.731,-441.894,4502.06)
-Point[1] Position= (-784.712,-441.911,4502.06)
+Point[0] Position= (259.836,140.725,1269.71)
+Point[1] Position= (259.833,140.698,1269.71)
 
-TrackID =532 : ParentID=58 : TrackStatus=1
+TrackID =577 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.0275 -13.6416 4.763 keV
-Vertex : -0.764359 -0.430418 4.38494 m    Global time : 14.9339 ns 
+Original momentum : 20.5707 -24.9599 -0.232282 keV
+Vertex : 0.256458 0.138862 1.25294 m    Global time : 4.6758 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-764.359,-430.418,4384.94)
-Point[1] Position= (-764.337,-430.428,4384.94)
+Point[0] Position= (256.458,138.862,1252.94)
+Point[1] Position= (256.473,138.844,1252.94)
 
-TrackID =531 : ParentID=58 : TrackStatus=1
+TrackID =576 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -4.60806 31.4967 3.30889 keV
-Vertex : -0.730501 -0.411341 4.19035 m    Global time : 14.2712 ns 
+Original momentum : -25.7094 36.1597 3.31814 keV
+Vertex : 0.248946 0.134722 1.21562 m    Global time : 4.53659 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-730.501,-411.341,4190.35)
-Point[1] Position= (-730.504,-411.318,4190.36)
+Point[0] Position= (248.946,134.722,1215.62)
+Point[1] Position= (248.907,134.776,1215.62)
 
-TrackID =530 : ParentID=58 : TrackStatus=1
+TrackID =575 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 4.88951 32.9259 5.21204 keV
-Vertex : -0.73034 -0.41125 4.18943 m    Global time : 14.2681 ns 
+Original momentum : 33.3763 4.45142 -5.95018 keV
+Vertex : 0.225114 0.121561 1.09725 m    Global time : 4.09511 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-730.34,-411.25,4189.43)
-Point[1] Position= (-730.336,-411.224,4189.44)
+Point[0] Position= (225.114,121.561,1097.25)
+Point[1] Position= (225.141,121.565,1097.25)
 
-TrackID =529 : ParentID=58 : TrackStatus=1
+TrackID =574 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.1341 1.78957 -4.68161 keV
-Vertex : -0.716939 -0.4037 4.11241 m    Global time : 14.0058 ns 
+Original momentum : -10.4962 -32.9794 7.10809 keV
+Vertex : 19.7482 10.6364 96.027 cm   Global time : 3.58418 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-716.939,-403.7,4112.41)
-Point[1] Position= (-716.971,-403.699,4112.41)
+Point[0] Position= (197.482,106.364,960.27)
+Point[1] Position= (197.475,106.342,960.275)
 
-TrackID =528 : ParentID=58 : TrackStatus=1
+TrackID =573 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.4405 16.0591 -2.18593 keV
-Vertex : -0.7059 -0.397479 4.04897 m    Global time : 13.7898 ns 
+Original momentum : 38.8523 17.9752 -7.81608 keV
+Vertex : 18.2013 9.79056 88.3788 cm   Global time : 3.29889 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-705.9,-397.479,4048.97)
-Point[1] Position= (-705.92,-397.468,4048.97)
+Point[0] Position= (182.013,97.9056,883.788)
+Point[1] Position= (182.051,97.9229,883.78)
 
-TrackID =527 : ParentID=58 : TrackStatus=1
+TrackID =572 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.4722 -0.569808 -4.74069 keV
-Vertex : -0.702373 -0.395492 4.02871 m    Global time : 13.7207 ns 
+Original momentum : -37.1384 -0.866245 9.27377 keV
+Vertex : 18.0198 9.69222 87.4882 cm   Global time : 3.26567 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-702.373,-395.492,4028.71)
-Point[1] Position= (-702.401,-395.492,4028.7)
+Point[0] Position= (180.198,96.9222,874.882)
+Point[1] Position= (180.17,96.9215,874.889)
 
-TrackID =526 : ParentID=58 : TrackStatus=1
+TrackID =571 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.7966 -25.731 -5.77569 keV
-Vertex : -0.670043 -0.377273 3.84294 m    Global time : 13.0881 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-670.043,-377.273,3842.94)
-Point[1] Position= (-670.07,-377.299,3842.93)
+Original momentum : 74.3879 49.8935 -11.8691 keV
+Vertex : 15.2226 8.18618 73.817 cm   Global time : 2.75551 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (152.226,81.8618,738.17)
+Point[1] Position= (152.858,82.2856,738.069)
+Point[2] Position= (152.91,82.1905,737.913)
 
-TrackID =525 : ParentID=58 : TrackStatus=1
+TrackID =570 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.22093 -33.3793 -2.36951 keV
-Vertex : -0.63147 -0.355545 3.62137 m    Global time : 12.3335 ns 
+Original momentum : 28.4002 -54.566 4.32345 keV
+Vertex : 11.6624 6.27002 56.4711 cm   Global time : 2.10814 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-631.47,-355.545,3621.37)
-Point[1] Position= (-631.471,-355.571,3621.37)
+Point[0] Position= (116.624,62.7002,564.711)
+Point[1] Position= (116.717,62.5216,564.725)
 
-TrackID =524 : ParentID=58 : TrackStatus=1
+TrackID =569 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.8546 -37.06 -5.43508 keV
-Vertex : -0.601562 -0.33869 3.44957 m    Global time : 11.7485 ns 
+Original momentum : -36.6998 11.2976 8.00331 keV
+Vertex : 8.39517 4.52178 40.5973 cm   Global time : 1.51567 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-601.562,-338.69,3449.57)
-Point[1] Position= (-601.591,-338.741,3449.56)
+Point[0] Position= (83.9517,45.2178,405.973)
+Point[1] Position= (83.9103,45.2305,405.982)
 
-TrackID =523 : ParentID=58 : TrackStatus=1
+TrackID =568 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -42.4051 -177.488 7.51758 keV
-Vertex : -0.584935 -0.329318 3.35408 m    Global time : 11.4233 ns 
-  Current trajectory has 9 points.
-Point[0] Position= (-584.935,-329.318,3354.08)
-Point[1] Position= (-586.084,-334.13,3354.28)
-Point[2] Position= (-587.261,-337.157,3356.27)
-Point[3] Position= (-587.587,-337.757,3356.41)
-Point[4] Position= (-588.116,-340.176,3356.82)
-Point[5] Position= (-588.713,-340.973,3356.73)
-Point[6] Position= (-589.216,-341.404,3356.72)
-Point[7] Position= (-589.356,-341.427,3356.67)
-Point[8] Position= (-589.492,-341.608,3356.57)
+Original momentum : -37.1404 -18.6629 11.7715 keV
+Vertex : 5.63448 3.03873 27.2019 cm   Global time : 1.01565 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (56.3448,30.3873,272.019)
+Point[1] Position= (56.2929,30.3613,272.035)
 
-TrackID =552 : ParentID=523 : TrackStatus=1
+TrackID =567 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.6536 40.5366 -28.0182 keV
-Vertex : -0.589356 -0.341427 3.35667 m    Global time : 11.5819 ns 
+Original momentum : 32.6857 33.7933 -8.01688 keV
+Vertex : 5.39114 2.90724 26.0208 cm   Global time : 971.564 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-589.356,-341.427,3356.67)
-Point[1] Position= (-589.458,-341.305,3356.59)
+Point[0] Position= (53.9114,29.0724,260.208)
+Point[1] Position= (53.9688,29.1317,260.194)
 
-TrackID =551 : ParentID=523 : TrackStatus=1
+TrackID =566 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.1456 -1.3598 -34.3943 keV
-Vertex : -0.589216 -0.341404 3.35672 m    Global time : 11.579 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-589.216,-341.404,3356.72)
-Point[1] Position= (-589.204,-341.406,3356.69)
+Original momentum : 89.2062 189.342 6.64402 keV
+Vertex : 4.48508 2.41946 21.632 cm   Global time : 807.722 ps 
+  Current trajectory has 10 points.
+Point[0] Position= (44.8508,24.1946,216.32)
+Point[1] Position= (46.5409,27.782,216.445)
+Point[2] Position= (52.0325,28.2475,218.902)
+Point[3] Position= (56.3529,30.0821,219.431)
+Point[4] Position= (58.7305,30.3413,219.575)
+Point[5] Position= (60.9865,31.3812,221.124)
+Point[6] Position= (62.3008,32.7473,222.127)
+Point[7] Position= (62.8537,33.8081,223.007)
+Point[8] Position= (62.4991,34.2403,223.508)
+Point[9] Position= (62.5248,34.2573,223.566)
 
-TrackID =550 : ParentID=523 : TrackStatus=1
+TrackID =666 : ParentID=566 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.1223 25.183 19.5446 keV
-Vertex : -0.588713 -0.340973 3.35673 m    Global time : 11.568 ns 
+Original momentum : 1.42261 -28.037 17.0324 keV
+Vertex : 5.87305 3.03413 21.9575 cm   Global time : 973.102 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-588.713,-340.973,3356.73)
-Point[1] Position= (-588.737,-340.945,3356.75)
+Point[0] Position= (58.7305,30.3413,219.575)
+Point[1] Position= (58.7316,30.3199,219.588)
 
-TrackID =549 : ParentID=523 : TrackStatus=1
+TrackID =665 : ParentID=566 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.2061 3.05495 39.2026 keV
-Vertex : -0.587587 -0.337757 3.35641 m    Global time : 11.5218 ns 
+Original momentum : -18.5893 17.8354 39.145 keV
+Vertex : 4.65409 2.7782 21.6445 cm   Global time : 842.624 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-587.587,-337.757,3356.41)
-Point[1] Position= (-587.567,-337.753,3356.46)
+Point[0] Position= (46.5409,27.782,216.445)
+Point[1] Position= (46.5096,27.812,216.511)
 
-TrackID =522 : ParentID=58 : TrackStatus=1
+TrackID =565 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 17.5627 -45.5411 0.962271 keV
-Vertex : -0.578057 -0.325441 3.31459 m    Global time : 11.2888 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-578.057,-325.441,3314.59)
-Point[1] Position= (-578.025,-325.525,3314.59)
+Original momentum : 48.2937 102.036 -7.57198 keV
+Vertex : 3.15434 1.70154 15.2057 cm   Global time : 567.781 ps 
+  Current trajectory has 4 points.
+Point[0] Position= (31.5434,17.0154,152.057)
+Point[1] Position= (31.7372,17.4249,152.026)
+Point[2] Position= (31.5047,18.0545,152.218)
+Point[3] Position= (31.3745,17.8738,152.194)
 
-TrackID =521 : ParentID=58 : TrackStatus=1
+TrackID =667 : ParentID=565 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.09664 50.8132 6.41832 keV
-Vertex : -0.551119 -0.310248 3.15987 m    Global time : 10.7619 ns 
+Original momentum : 43.4242 28.8291 -40.7358 keV
+Vertex : 3.17372 1.74249 15.2026 cm   Global time : 574.788 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-551.119,-310.248,3159.87)
-Point[1] Position= (-551.134,-310.14,3159.88)
+Point[0] Position= (31.7372,17.4249,152.026)
+Point[1] Position= (31.9065,17.5373,151.867)
 
-TrackID =520 : ParentID=58 : TrackStatus=1
+TrackID =564 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 74.5121 -146.225 25.4728 keV
-Vertex : -0.544061 -0.306268 3.11933 m    Global time : 10.6238 ns 
-  Current trajectory has 8 points.
-Point[0] Position= (-544.061,-306.268,3119.33)
-Point[1] Position= (-542.35,-309.626,3119.92)
-Point[2] Position= (-543.434,-311.764,3121.17)
-Point[3] Position= (-543.26,-313.217,3120.95)
-Point[4] Position= (-543.934,-313.956,3122.11)
-Point[5] Position= (-544.894,-314.078,3122.32)
-Point[6] Position= (-544.879,-314.253,3122.4)
-Point[7] Position= (-544.849,-314.257,3122.46)
+Original momentum : -39.4229 43.2779 7.12147 keV
+Vertex : 3.10805 1.67655 14.9825 cm   Global time : 559.449 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (31.0805,16.7655,149.825)
+Point[1] Position= (30.9649,16.8924,149.846)
 
-TrackID =553 : ParentID=520 : TrackStatus=1
+TrackID =563 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.70707 -35.4113 -20.1704 keV
-Vertex : -0.54326 -0.313217 3.12095 m    Global time : 10.718 ns 
+Original momentum : 17.0957 -49.3849 5.00066 keV
+Vertex : 2.94294 1.58718 14.1861 cm   Global time : 529.711 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-543.26,-313.217,3120.95)
-Point[1] Position= (-543.255,-313.261,3120.92)
+Point[0] Position= (29.4294,15.8718,141.861)
+Point[1] Position= (29.4671,15.7628,141.872)
 
-TrackID =519 : ParentID=58 : TrackStatus=1
+TrackID =562 : ParentID=561 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.8011 -134.3 12.3845 keV
-Vertex : -0.539178 -0.303512 3.09129 m    Global time : 10.5283 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (-539.178,-303.512,3091.29)
-Point[1] Position= (-538.562,-305.759,3091.49)
-Point[2] Position= (-537.911,-304.622,3092.6)
-Point[3] Position= (-537.103,-304.283,3093.3)
-Point[4] Position= (-537.253,-304.562,3093.06)
+Original momentum : 4.33537 -51.3691 7.82561 keV
+Vertex : 1.6604 0.895202 8.00356 cm   Global time : 298.852 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (16.604,8.95202,80.0356)
+Point[1] Position= (16.6134,8.84046,80.0526)
 
-TrackID =554 : ParentID=519 : TrackStatus=1
+TrackID =554 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.3076 -25.8559 32.7767 keV
-Vertex : -0.538562 -0.305759 3.09149 m    Global time : 10.5578 ns 
+Original momentum : -14.5124 15.717 28.6238 keV
+Vertex : -44.4098 11.0194 -20.1107 cm   Global time : 3.53022 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-538.562,-305.759,3091.49)
-Point[1] Position= (-538.576,-305.795,3091.54)
+Point[0] Position= (-444.098,110.194,-201.107)
+Point[1] Position= (-444.108,110.205,-201.088)
 
-TrackID =518 : ParentID=58 : TrackStatus=1
+TrackID =553 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -45.4975 -31.4512 -7.90397 keV
-Vertex : -0.53429 -0.300753 3.06321 m    Global time : 10.4327 ns 
+Original momentum : -0.208486 -28.047 28.938 keV
+Vertex : -40.8375 12.1734 -19.2863 cm   Global time : 3.33875 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-534.29,-300.753,3063.21)
-Point[1] Position= (-534.406,-300.834,3063.19)
+Point[0] Position= (-408.375,121.734,-192.863)
+Point[1] Position= (-408.376,121.711,-192.839)
+
+TrackID =552 : ParentID=529 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -742.428 -280.572 -625.772 keV
+Vertex : -37.9261 13.0829 -18.6191 cm   Global time : 3.18397 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-379.261,130.829,-186.191)
+Point[1] Position= (-379.446,130.599,-186.343)
+Point[2] Position= (-379.361,130.442,-186.075)
 
-TrackID =517 : ParentID=58 : TrackStatus=1
+TrackID =551 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.411812 -32.307 -2.1966 keV
-Vertex : -0.507874 -0.285853 2.9115 m    Global time : 9.91601 ns 
+Original momentum : -13.1032 28.5496 14.5889 keV
+Vertex : -35.654 13.6975 -18.0595 cm   Global time : 3.067 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-507.874,-285.853,2911.5)
-Point[1] Position= (-507.875,-285.877,2911.5)
+Point[0] Position= (-356.54,136.975,-180.595)
+Point[1] Position= (-356.548,136.993,-180.586)
 
-TrackID =516 : ParentID=58 : TrackStatus=1
+TrackID =550 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.4634 -9.50445 6.8822 keV
-Vertex : -0.457279 -0.257339 2.62103 m    Global time : 8.92674 ns 
+Original momentum : 2.14238 14.918 -33.1692 keV
+Vertex : -35.5589 13.7232 -18.0361 cm   Global time : 3.0621 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-457.279,-257.339,2621.03)
-Point[1] Position= (-457.24,-257.349,2621.03)
+Point[0] Position= (-355.589,137.232,-180.361)
+Point[1] Position= (-355.587,137.242,-180.384)
 
-TrackID =515 : ParentID=58 : TrackStatus=1
+TrackID =549 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -57.3412 -37.8571 -8.93424 keV
-Vertex : -0.445612 -0.25077 2.55407 m    Global time : 8.69871 ns 
+Original momentum : -4.12833 27.2548 -20.1671 keV
+Vertex : -35.3772 13.7722 -17.9913 cm   Global time : 3.05275 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-445.612,-250.77,2554.07)
-Point[1] Position= (-445.863,-250.936,2554.03)
+Point[0] Position= (-353.772,137.722,-179.913)
+Point[1] Position= (-353.774,137.739,-179.926)
 
-TrackID =514 : ParentID=58 : TrackStatus=1
+TrackID =548 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.8636 21.178 -1.67231 keV
-Vertex : -0.442342 -0.248929 2.53531 m    Global time : 8.63482 ns 
+Original momentum : 13.1853 -19.3494 -50.5604 keV
+Vertex : -33.0634 14.3984 -17.4155 cm   Global time : 2.93357 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-442.342,-248.929,2535.31)
-Point[1] Position= (-442.369,-248.91,2535.31)
+Point[0] Position= (-330.634,143.984,-174.155)
+Point[1] Position= (-330.612,143.952,-174.237)
 
-TrackID =513 : ParentID=58 : TrackStatus=1
+TrackID =547 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.6198 -47.0608 4.34996 keV
-Vertex : -0.435013 -0.244803 2.49327 m    Global time : 8.49163 ns 
+Original momentum : -13.3598 19.7887 24.7654 keV
+Vertex : -32.4389 14.5683 -17.2597 cm   Global time : 2.90139 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-435.013,-244.803,2493.27)
-Point[1] Position= (-434.923,-244.933,2493.28)
+Point[0] Position= (-324.389,145.683,-172.597)
+Point[1] Position= (-324.398,145.696,-172.582)
 
-TrackID =512 : ParentID=58 : TrackStatus=1
+TrackID =546 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 72.6718 32.4596 22.65 keV
-Vertex : -0.420279 -0.236503 2.40873 m    Global time : 8.20372 ns 
+Original momentum : -630.166 102.761 -539.27 keV
+Vertex : -31.8938 14.7409 -17.1384 cm   Global time : 2.87354 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-420.279,-236.503,2408.73)
-Point[1] Position= (-419.779,-236.28,2408.89)
+Point[0] Position= (-318.938,147.409,-171.384)
+Point[1] Position= (-319.169,147.447,-171.582)
 
-TrackID =511 : ParentID=58 : TrackStatus=1
+TrackID =545 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 81.7929 -22.934 19.5429 keV
-Vertex : -0.400788 -0.225533 2.29693 m    Global time : 7.82295 ns 
+Original momentum : -749.106 -657.064 -494.355 keV
+Vertex : -24.9351 17.121 -15.4547 cm   Global time : 2.5185 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-400.788,-225.533,2296.93)
-Point[1] Position= (-400.15,-225.712,2297.08)
-Point[2] Position= (-400.129,-225.683,2297)
+Point[0] Position= (-249.351,171.21,-154.547)
+Point[1] Position= (-249.73,170.877,-154.797)
+Point[2] Position= (-249.733,170.883,-154.8)
 
-TrackID =510 : ParentID=58 : TrackStatus=1
+TrackID =544 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 39.4841 11.1291 9.75095 keV
-Vertex : -0.374444 -0.210714 2.14582 m    Global time : 7.30834 ns 
+Original momentum : -13.6788 21.481 29.0224 keV
+Vertex : -24.1822 17.3514 -15.3117 cm   Global time : 2.48171 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-374.444,-210.714,2145.82)
-Point[1] Position= (-374.391,-210.699,2145.84)
+Point[0] Position= (-241.822,173.514,-153.117)
+Point[1] Position= (-241.832,173.531,-153.094)
 
-TrackID =509 : ParentID=58 : TrackStatus=1
+TrackID =543 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.6988 -15.1592 7.55156 keV
-Vertex : -0.339281 -0.190937 1.94424 m    Global time : 6.62179 ns 
+Original momentum : -15.7571 11.956 47.501 keV
+Vertex : -19.4442 18.7659 -14.4724 cm   Global time : 2.25117 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-339.281,-190.937,1944.24)
-Point[1] Position= (-339.221,-190.959,1944.25)
+Point[0] Position= (-194.442,187.659,-144.724)
+Point[1] Position= (-194.464,187.675,-144.659)
 
-TrackID =508 : ParentID=58 : TrackStatus=1
+TrackID =542 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.5735 19.8224 -1.46982 keV
-Vertex : -0.336619 -0.18944 1.92898 m    Global time : 6.56983 ns 
+Original momentum : 11.6331 -37.6116 -16.7241 keV
+Vertex : -17.4187 19.3706 -14.1119 cm   Global time : 2.15261 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-336.619,-189.44,1928.98)
-Point[1] Position= (-336.638,-189.425,1928.98)
+Point[0] Position= (-174.187,193.706,-141.119)
+Point[1] Position= (-174.176,193.671,-141.134)
 
-TrackID =507 : ParentID=58 : TrackStatus=1
+TrackID =541 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.026 12.5639 8.31107 keV
-Vertex : -0.324479 -0.182613 1.85942 m    Global time : 6.3329 ns 
+Original momentum : -17.2787 24.4776 39.2775 keV
+Vertex : -16.2005 19.7296 -13.903 cm   Global time : 2.09345 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-324.479,-182.613,1859.42)
-Point[1] Position= (-324.447,-182.601,1859.42)
+Point[0] Position= (-162.005,197.296,-139.03)
+Point[1] Position= (-162.027,197.326,-138.981)
 
-TrackID =506 : ParentID=58 : TrackStatus=1
+TrackID =540 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.4086 -43.6609 -6.2564 keV
-Vertex : -0.304231 -0.171223 1.74333 m    Global time : 5.93755 ns 
+Original momentum : -9.43289 35.095 -2.78647 keV
+Vertex : -14.2448 20.1759 -13.6935 cm   Global time : 2.00306 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-304.231,-171.223,1743.33)
-Point[1] Position= (-304.286,-171.315,1743.32)
+Point[0] Position= (-142.448,201.759,-136.935)
+Point[1] Position= (-142.455,201.783,-136.937)
 
-TrackID =505 : ParentID=58 : TrackStatus=1
+TrackID =539 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.811 49.8316 2.19801 keV
-Vertex : -0.295415 -0.166261 1.69277 m    Global time : 5.76533 ns 
+Original momentum : -10.4319 35.0866 6.12444 keV
+Vertex : -10.7245 20.9704 -13.3234 cm   Global time : 1.84066 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-295.415,-166.261,1692.77)
-Point[1] Position= (-295.543,-166.091,1692.78)
+Point[0] Position= (-107.245,209.704,-133.234)
+Point[1] Position= (-107.253,209.729,-133.229)
 
-TrackID =504 : ParentID=58 : TrackStatus=1
+TrackID =538 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.0983 -97.3128 7.70057 keV
-Vertex : -0.291592 -0.164109 1.67084 m    Global time : 5.69066 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-291.592,-164.109,1670.84)
-Point[1] Position= (-291.171,-165.213,1670.93)
-Point[2] Position= (-290.639,-165.03,1671.13)
-Point[3] Position= (-290.621,-165.023,1671.16)
+Original momentum : -9.58726 19.2321 30.909 keV
+Vertex : -7.83173 21.6238 -13.0142 cm   Global time : 1.70718 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-78.3173,216.238,-130.142)
+Point[1] Position= (-78.3244,216.253,-130.12)
 
-TrackID =503 : ParentID=58 : TrackStatus=1
+TrackID =537 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -92.9626 18.2414 -5.50771 keV
-Vertex : -0.261367 -0.147098 1.49755 m    Global time : 5.10047 ns 
+Original momentum : -18.3568 62.6786 -62.952 keV
+Vertex : -6.42949 21.9401 -12.8633 cm   Global time : 1.64248 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-261.367,-147.098,1497.55)
-Point[1] Position= (-262.246,-146.925,1497.5)
-Point[2] Position= (-262.475,-146.999,1497.47)
+Point[0] Position= (-64.2949,219.401,-128.633)
+Point[1] Position= (-64.3843,219.706,-128.939)
+Point[2] Position= (-64.3601,219.735,-128.942)
+
+TrackID =668 : ParentID=537 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 13.3215 -13.4676 -30.3974 keV
+Vertex : -6.43843 21.9706 -12.8939 cm   Global time : 1.65091 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-64.3843,219.706,-128.939)
+Point[1] Position= (-64.3753,219.697,-128.96)
 
-TrackID =502 : ParentID=58 : TrackStatus=1
+TrackID =536 : ParentID=529 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.4681 68.869 16.8378 keV
-Vertex : -0.244794 -0.137778 1.40257 m    Global time : 4.77698 ns 
+Original momentum : -13.7225 -64.1057 94.9526 keV
+Vertex : 4.57455 24.3947 -11.6693 cm   Global time : 1.13502 ns 
+  Current trajectory has 7 points.
+Point[0] Position= (45.7455,243.947,-116.693)
+Point[1] Position= (45.8584,243.547,-116.319)
+Point[2] Position= (45.7042,243.345,-115.829)
+Point[3] Position= (45.551,243.55,-115.386)
+Point[4] Position= (45.4119,243.201,-115.916)
+Point[5] Position= (45.7042,242.968,-115.965)
+Point[6] Position= (45.69,242.988,-115.954)
+
+TrackID =528 : ParentID=357 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -73.6553 19.6435 -7.54814 keV
+Vertex : 4.55012 21.5779 -10.2091 cm   Global time : 974.219 ps 
   Current trajectory has 3 points.
-Point[0] Position= (-244.794,-137.778,1402.57)
-Point[1] Position= (-244.674,-137.454,1402.65)
-Point[2] Position= (-244.692,-137.465,1402.69)
+Point[0] Position= (45.5012,215.779,-102.091)
+Point[1] Position= (45.2708,215.841,-102.115)
+Point[2] Position= (45.2132,215.805,-102.148)
 
-TrackID =555 : ParentID=502 : TrackStatus=1
+TrackID =669 : ParentID=528 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.2617 26.9263 15.3266 keV
-Vertex : -0.244674 -0.137454 1.40265 m    Global time : 4.78508 ns 
+Original momentum : -26.6516 14.8806 30.3751 keV
+Vertex : 4.52708 21.5841 -10.2115 cm   Global time : 979.609 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-244.674,-137.454,1402.65)
-Point[1] Position= (-244.661,-137.431,1402.66)
+Point[0] Position= (45.2708,215.841,-102.115)
+Point[1] Position= (45.2456,215.855,-102.086)
 
-TrackID =501 : ParentID=58 : TrackStatus=1
+TrackID =527 : ParentID=357 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 57.0163 15.498 15.1781 keV
-Vertex : -0.19546 -0.110015 1.11986 m    Global time : 3.81411 ns 
+Original momentum : -26.415 13.6715 14.1199 keV
+Vertex : 4.48898 21.287 -10.0713 cm   Global time : 961.082 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-195.46,-110.015,1119.86)
-Point[1] Position= (-195.278,-109.966,1119.91)
+Point[0] Position= (44.8898,212.87,-100.713)
+Point[1] Position= (44.8748,212.878,-100.705)
 
-TrackID =500 : ParentID=58 : TrackStatus=1
+TrackID =526 : ParentID=357 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -58.4002 30.6477 -2.84508 keV
-Vertex : -0.194572 -0.109515 1.11477 m    Global time : 3.79678 ns 
+Original momentum : 11.6879 19.1481 39.8621 keV
+Vertex : 2.45006 11.6041 -5.49165 cm   Global time : 523.949 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-194.572,-109.515,1114.77)
-Point[1] Position= (-194.798,-109.397,1114.76)
+Point[0] Position= (24.5006,116.041,-54.9165)
+Point[1] Position= (24.5192,116.071,-54.853)
 
-TrackID =499 : ParentID=58 : TrackStatus=1
+TrackID =525 : ParentID=357 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 19.4284 -48.951 1.3454 keV
-Vertex : -0.176795 -0.0995074 1.01292 m    Global time : 3.44988 ns 
+Original momentum : -34.5616 2.16301 -14.7961 keV
+Vertex : 2.39059 11.3219 -5.35828 cm   Global time : 511.212 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-176.795,-99.5074,1012.92)
-Point[1] Position= (-176.752,-99.6164,1012.92)
+Point[0] Position= (23.9059,113.219,-53.5828)
+Point[1] Position= (23.8703,113.222,-53.598)
 
-TrackID =498 : ParentID=58 : TrackStatus=1
+TrackID =524 : ParentID=357 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.7715 -29.3222 -3.92465 keV
-Vertex : -16.8218 -9.4679 96.3785 cm   Global time : 3.28253 ns 
+Original momentum : -11.7266 17.4001 28.0581 keV
+Vertex : 1.83715 8.70648 -4.12707 mm   Global time : 39.3216 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-168.218,-94.679,963.785)
-Point[1] Position= (-168.226,-94.7,963.782)
+Point[0] Position= (1.83715,8.70648,-4.12707)
+Point[1] Position= (1.82685,8.72177,-4.10242)
 
-TrackID =497 : ParentID=58 : TrackStatus=1
+TrackID =523 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.8306 -73.5178 4.49216 keV
-Vertex : -16.4713 -9.27069 94.371 cm   Global time : 3.21416 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-164.713,-92.7069,943.71)
-Point[1] Position= (-164.52,-93.1682,943.739)
-Point[2] Position= (-164.524,-93.1677,943.735)
+Original momentum : 28.3255 29.1954 2.0821 keV
+Vertex : -0.216996 0.986242 -5.98424 m    Global time : 20.2437 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-216.996,986.242,-5984.24)
+Point[1] Position= (-216.962,986.278,-5984.24)
 
-TrackID =496 : ParentID=58 : TrackStatus=1
+TrackID =522 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.733 24.5418 -1.29617 keV
-Vertex : -16.081 -9.05108 92.1356 cm   Global time : 3.13802 ns 
+Original momentum : -25.0795 -19.379 -3.21481 keV
+Vertex : -0.21544 0.97989 -5.94623 m    Global time : 20.115 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-160.81,-90.5108,921.356)
-Point[1] Position= (-160.842,-90.4841,921.355)
+Point[0] Position= (-215.44,979.89,-5946.23)
+Point[1] Position= (-215.458,979.876,-5946.23)
 
-TrackID =495 : ParentID=58 : TrackStatus=1
+TrackID =521 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.5508 -23.7066 -6.35522 keV
-Vertex : -15.8811 -8.9386 90.9906 cm   Global time : 3.09903 ns 
+Original momentum : -12.2411 -35.6296 -6.90673 keV
+Vertex : -0.214211 0.974847 -5.91601 m    Global time : 20.0127 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-158.811,-89.386,909.906)
-Point[1] Position= (-158.85,-89.4151,909.898)
+Point[0] Position= (-214.211,974.847,-5916.01)
+Point[1] Position= (-214.224,974.809,-5916.02)
 
-TrackID =494 : ParentID=58 : TrackStatus=1
+TrackID =520 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.9394 -21.0839 3.58714 keV
-Vertex : -14.6453 -8.24338 83.914 cm   Global time : 2.858 ns 
+Original momentum : -1.88359 40.8905 5.19565 keV
+Vertex : -0.196908 0.905157 -5.4949 m    Global time : 18.5878 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-146.453,-82.4338,839.14)
-Point[1] Position= (-146.432,-82.4507,839.143)
+Point[0] Position= (-196.908,905.157,-5494.9)
+Point[1] Position= (-196.91,905.208,-5494.9)
 
-TrackID =493 : ParentID=58 : TrackStatus=1
+TrackID =519 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.6531 20.435 10.017 keV
-Vertex : -13.6067 -7.65893 77.9659 cm   Global time : 2.65541 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-136.067,-76.5893,779.659)
-Point[1] Position= (-136.019,-76.562,779.672)
+Original momentum : -53.6007 89.5553 6.24033 keV
+Vertex : -0.189418 0.874844 -5.31264 m    Global time : 17.971 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-189.418,874.844,-5312.64)
+Point[1] Position= (-190.028,875.862,-5312.57)
+Point[2] Position= (-189.996,875.942,-5312.42)
+Point[3] Position= (-190.08,875.948,-5312.37)
 
-TrackID =492 : ParentID=58 : TrackStatus=1
+TrackID =670 : ParentID=519 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -59.7886 24.7991 -3.81666 keV
-Vertex : -11.6438 -6.55385 66.7216 cm   Global time : 2.27244 ns 
+Original momentum : 19.7419 29.1966 29.6678 keV
+Vertex : -0.189996 0.875942 -5.31242 m    Global time : 17.9948 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-116.438,-65.5385,667.216)
-Point[1] Position= (-116.66,-65.4465,667.202)
+Point[0] Position= (-189.996,875.942,-5312.42)
+Point[1] Position= (-189.964,875.989,-5312.37)
 
-TrackID =491 : ParentID=58 : TrackStatus=1
+TrackID =518 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -43.3322 83.1892 9.41182 keV
-Vertex : -10.9514 -6.16413 62.755 cm   Global time : 2.13735 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (-109.514,-61.6413,627.55)
-Point[1] Position= (-109.565,-61.544,627.561)
-Point[2] Position= (-109.648,-61.118,627.636)
-Point[3] Position= (-109.629,-61.0703,627.694)
-Point[4] Position= (-109.613,-61.063,627.717)
+Original momentum : -32.7823 0.431655 0.38228 keV
+Vertex : -0.18019 0.838276 -5.09074 m    Global time : 17.2202 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-180.19,838.276,-5090.74)
+Point[1] Position= (-180.215,838.277,-5090.74)
 
-TrackID =557 : ParentID=491 : TrackStatus=1
+TrackID =517 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.7396 -19.5977 8.35426 keV
-Vertex : -10.9648 -6.1118 62.7636 cm   Global time : 2.14844 ns 
+Original momentum : -37.0561 -14.6983 -2.45283 keV
+Vertex : -0.179322 0.834858 -5.06999 m    Global time : 17.15 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-109.648,-61.118,627.636)
-Point[1] Position= (-109.631,-61.1321,627.642)
+Point[0] Position= (-179.322,834.858,-5069.99)
+Point[1] Position= (-179.365,834.841,-5069.99)
 
-TrackID =556 : ParentID=491 : TrackStatus=1
+TrackID =516 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -39.8391 -6.3375 -7.45183 keV
-Vertex : -10.9565 -6.1544 62.7561 cm   Global time : 2.13937 ns 
+Original momentum : -34.6042 -22.6181 -3.99237 keV
+Vertex : -0.17779 0.828797 -5.03318 m    Global time : 17.0254 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-109.565,-61.544,627.561)
-Point[1] Position= (-109.614,-61.5519,627.552)
+Point[0] Position= (-177.79,828.797,-5033.18)
+Point[1] Position= (-177.834,828.768,-5033.19)
 
-TrackID =490 : ParentID=58 : TrackStatus=1
+TrackID =515 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.0867 34.709 6.51548 keV
-Vertex : -6.98004 -3.92915 40.0041 cm   Global time : 1.36248 ns 
+Original momentum : -34.6079 10.1526 1.7814 keV
+Vertex : -0.170472 0.799347 -4.85456 m    Global time : 16.4211 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-69.8004,-39.2915,400.041)
-Point[1] Position= (-69.7906,-39.2577,400.047)
+Point[0] Position= (-170.472,799.347,-4854.56)
+Point[1] Position= (-170.504,799.356,-4854.56)
 
-TrackID =489 : ParentID=58 : TrackStatus=1
+TrackID =514 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.8931 -25.8028 3.32923 keV
-Vertex : -5.45418 -3.07054 31.2616 cm   Global time : 1.06472 ns 
+Original momentum : 38.2005 21.7689 0.145784 keV
+Vertex : -0.168779 0.792445 -4.81266 m    Global time : 16.2793 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-54.5418,-30.7054,312.616)
-Point[1] Position= (-54.5167,-30.7305,312.619)
+Point[0] Position= (-168.779,792.445,-4812.66)
+Point[1] Position= (-168.724,792.476,-4812.66)
 
-TrackID =488 : ParentID=58 : TrackStatus=1
+TrackID =513 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.5333 43.322 12.7789 keV
-Vertex : -4.54181 -2.55702 26.0332 cm   Global time : 886.647 ps 
+Original momentum : -25.7472 -22.3261 -3.81137 keV
+Vertex : -0.164998 0.776746 -4.71713 m    Global time : 15.9561 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-45.4181,-25.5702,260.332)
-Point[1] Position= (-45.3399,-25.4627,260.364)
+Point[0] Position= (-164.998,776.746,-4717.13)
+Point[1] Position= (-165.02,776.728,-4717.13)
 
-TrackID =487 : ParentID=58 : TrackStatus=1
+TrackID =512 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.8006 -17.6039 -6.64275 keV
-Vertex : -4.34907 -2.44852 24.9284 cm   Global time : 849.018 ps 
+Original momentum : -32.6335 -5.40746 -0.729934 keV
+Vertex : -0.161317 0.761265 -4.62282 m    Global time : 15.6371 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-43.4907,-24.4852,249.284)
-Point[1] Position= (-43.5447,-24.5097,249.275)
+Point[0] Position= (-161.317,761.265,-4622.82)
+Point[1] Position= (-161.342,761.261,-4622.82)
 
-TrackID =485 : ParentID=249 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : -85.051 44.95 453.684 MeV
-Vertex : -9.30679 -1.23173 38.5547 nm   Global time : 0.000134872 ps 
-  Current trajectory has 4 points.
-Point[0] Position= (-9.30679e-06,-1.23173e-06,3.85547e-05)
-Point[1] Position= (-176.824,93.4524,943.224)
-Point[2] Position= (-187.467,99.0776,1000)
-Point[3] Position= (-1124.8,594.465,6000)
+TrackID =511 : ParentID=369 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -19.184 -27.076 -4.82085 keV
+Vertex : -0.155909 0.737783 -4.47957 m    Global time : 15.1526 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-155.909,737.783,-4479.57)
+Point[1] Position= (-155.924,737.761,-4479.58)
 
-TrackID =57 : ParentID=45 : TrackStatus=1
-Particle name : unknown : rho-  PDG code : -213  Charge : -1
-Original momentum : 0.454599 0.329004 8.64056 GeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+TrackID =510 : ParentID=369 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -24.6634 -21.5803 -3.65624 keV
+Vertex : -0.152792 0.724662 -4.39938 m    Global time : 14.8813 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (1.67561e-307,2.37286e-307,1.99953e-305)
+Point[0] Position= (-152.792,724.662,-4399.38)
+Point[1] Position= (-152.811,724.645,-4399.38)
 
-TrackID =559 : ParentID=57 : TrackStatus=1
-Particle name : pi-  PDG code : -211  Charge : -1
-Original momentum : 0.158211 0.553631 4.02749 GeV
-Vertex : 1.67561e-295 2.37286e-295 1.99953e-293 fm   Global time : 8.63153e-305 ps 
-  Current trajectory has 55 points.
-Point[0] Position= (1.67561e-307,2.37286e-307,1.99953e-305)
-Point[1] Position= (0.021073,0.073741,0.536443)
-Point[2] Position= (1.39446,4.88027,35.5042)
-Point[3] Position= (18.8753,66.0385,480.501)
-Point[4] Position= (25.2955,88.457,643.697)
-Point[5] Position= (34.6362,121.146,881.694)
-Point[6] Position= (36.7852,128.669,936.442)
-Point[7] Position= (39.2829,137.421,1000.12)
-Point[8] Position= (43.2334,151.304,1101.13)
-Point[9] Position= (43.5458,152.403,1109.12)
-Point[10] Position= (46.0415,161.181,1172.96)
-Point[11] Position= (50.4277,176.591,1285.04)
-Point[12] Position= (53.618,187.789,1366.47)
-Point[13] Position= (57.1421,200.154,1456.37)
-Point[14] Position= (61.2,214.391,1559.87)
-Point[15] Position= (63.9251,223.96,1629.41)
-Point[16] Position= (65.4218,229.215,1667.61)
-Point[17] Position= (80.8863,283.57,2062.43)
-Point[18] Position= (91.9111,322.361,2344.24)
-Point[19] Position= (96.5527,338.7,2462.89)
-Point[20] Position= (97.4549,341.875,2485.95)
-Point[21] Position= (102.863,360.889,2624)
-Point[22] Position= (106.329,373.06,2712.37)
-Point[23] Position= (112.158,393.527,2860.96)
-Point[24] Position= (113.554,398.433,2896.58)
-Point[25] Position= (122.295,429.181,3119.76)
-Point[26] Position= (130.602,458.388,3331.84)
-Point[27] Position= (139.537,489.808,3559.89)
-Point[28] Position= (139.885,491.035,3568.79)
-Point[29] Position= (141.684,497.363,3614.73)
-Point[30] Position= (143.659,504.316,3665.18)
-Point[31] Position= (143.737,504.59,3667.18)
-Point[32] Position= (150.411,528.092,3837.7)
-Point[33] Position= (152.724,536.235,3896.79)
-Point[34] Position= (152.818,536.567,3899.19)
-Point[35] Position= (166.527,584.961,4250.22)
-Point[36] Position= (169.708,596.186,4331.62)
-Point[37] Position= (178.634,627.672,4560.04)
-Point[38] Position= (183.1,643.412,4674.25)
-Point[39] Position= (183.909,646.257,4694.91)
-Point[40] Position= (185.608,652.24,4738.33)
-Point[41] Position= (189.574,666.204,4839.67)
-Point[42] Position= (197.899,695.446,5051.84)
-Point[43] Position= (201.649,708.624,5147.45)
-Point[44] Position= (202.104,710.222,5159.04)
-Point[45] Position= (206.124,724.366,5261.62)
-Point[46] Position= (214.485,753.79,5475.03)
-Point[47] Position= (219.608,771.775,5605.4)
-Point[48] Position= (221.1,777.014,5643.36)
-Point[49] Position= (221.538,778.548,5654.48)
-Point[50] Position= (223.847,786.627,5713.02)
-Point[51] Position= (227.152,798.203,5796.85)
-Point[52] Position= (229.004,804.684,5843.79)
-Point[53] Position= (232.818,818.037,5940.49)
-Point[54] Position= (235.165,826.252,6000)
-
-TrackID =612 : ParentID=559 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.8762 32.637 -3.64527 keV
-Vertex : 0.232818 0.818037 5.94049 m    Global time : 20.0292 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (232.818,818.037,5940.49)
-Point[1] Position= (232.876,818.092,5940.49)
-
-TrackID =611 : ParentID=559 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.9422 -9.29214 3.65025 keV
-Vertex : 0.229004 0.804684 5.84379 m    Global time : 19.7031 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (229.004,804.684,5843.79)
-Point[1] Position= (228.979,804.677,5843.79)
-
-TrackID =610 : ParentID=559 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -109.473 -93.271 38.6909 keV
-Vertex : 0.227152 0.798203 5.79685 m    Global time : 19.5449 ns 
-  Current trajectory has 6 points.
-Point[0] Position= (227.152,798.203,5796.85)
-Point[1] Position= (225.04,796.403,5797.6)
-Point[2] Position= (223.83,796.404,5797.31)
-Point[3] Position= (223.45,795.216,5796.43)
-Point[4] Position= (224.203,795.475,5796.14)
-Point[5] Position= (224.212,795.484,5796.23)
+TrackID =509 : ParentID=369 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 73.6167 36.8399 -3.49594 keV
+Vertex : -0.152648 0.724052 -4.39565 m    Global time : 14.8687 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-152.648,724.052,-4395.65)
+Point[1] Position= (-152.148,724.302,-4395.67)
+Point[2] Position= (-152.177,724.335,-4395.7)
+
+TrackID =508 : ParentID=369 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -5.66383 -56.1178 -12.3498 keV
+Vertex : -0.145355 0.692913 -4.20639 m    Global time : 14.2284 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-145.355,692.913,-4206.39)
+Point[1] Position= (-145.371,692.757,-4206.42)
+
+TrackID =507 : ParentID=369 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 11.3148 -38.17 -8.35172 keV
+Vertex : -0.140356 0.671576 -4.07695 m    Global time : 13.7905 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-140.356,671.576,-4076.95)
+Point[1] Position= (-140.342,671.53,-4076.96)
+
+TrackID =506 : ParentID=369 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 31.5426 -8.86521 -3.74044 keV
+Vertex : -0.140232 0.671043 -4.0737 m    Global time : 13.7795 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-140.232,671.043,-4073.7)
+Point[1] Position= (-140.207,671.036,-4073.71)
+
+TrackID =505 : ParentID=369 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 730.806 695.314 -796.081 keV
+Vertex : -0.138307 0.662749 -4.02309 m    Global time : 13.6083 ns 
+  Current trajectory has 52 points.
+Point[0] Position= (-138.307,662.749,-4023.09)
+Point[1] Position= (-117.138,686.698,-4045.56)
+Point[2] Position= (-99.6318,709.256,-4067.9)
+Point[3] Position= (-90.1369,724.192,-4082.28)
+Point[4] Position= (-68.0463,805.747,-4184.14)
+Point[5] Position= (-65.3398,817.876,-4192.07)
+Point[6] Position= (-29.2743,939.931,-4252.93)
+Point[7] Position= (-26.9474,949.967,-4258.71)
+Point[8] Position= (2.89794,1165.26,-4377.09)
+Point[9] Position= (13.3139,1191.64,-4413.82)
+Point[10] Position= (50.7163,1286.69,-4468.52)
+Point[11] Position= (80.2122,1373.28,-4594.97)
+Point[12] Position= (79.7702,1384.54,-4614.56)
+Point[13] Position= (79.8203,1386.63,-4619.64)
+Point[14] Position= (83.6022,1398.1,-4646.79)
+Point[15] Position= (84.6481,1400.96,-4656.75)
+Point[16] Position= (83.0947,1419.44,-4703.08)
+Point[17] Position= (50.425,1411.9,-5141.77)
+Point[18] Position= (-22.4079,1408.87,-5215.65)
+Point[19] Position= (-24.262,1410.99,-5220.12)
+Point[20] Position= (-27.6333,1451.64,-5282.95)
+Point[21] Position= (-24.6591,1463.24,-5304.56)
+Point[22] Position= (-24.7817,1474.23,-5329.3)
+Point[23] Position= (-17.3604,1491.44,-5357.79)
+Point[24] Position= (-12.2339,1504.65,-5377.43)
+Point[25] Position= (-8.2511,1512.87,-5389.99)
+Point[26] Position= (2.62846,1535.71,-5414.78)
+Point[27] Position= (22.9936,1557.21,-5445.36)
+Point[28] Position= (38.7317,1569.95,-5458.81)
+Point[29] Position= (60.9022,1620.69,-5487.16)
+Point[30] Position= (62.4565,1631.04,-5492.81)
+Point[31] Position= (63.3195,1638.3,-5498.2)
+Point[32] Position= (83.4089,1703.08,-5549.28)
+Point[33] Position= (89.3493,1712.54,-5555.33)
+Point[34] Position= (110.368,1742.87,-5582.9)
+Point[35] Position= (163.097,1791.44,-5634.76)
+Point[36] Position= (186.107,1803.52,-5637.79)
+Point[37] Position= (216.335,1817.23,-5643.34)
+Point[38] Position= (306.312,1850.69,-5700.31)
+Point[39] Position= (404.105,1855.52,-5701.14)
+Point[40] Position= (425.926,1858.63,-5714.31)
+Point[41] Position= (428.688,1858.81,-5716.1)
+Point[42] Position= (432.937,1859.09,-5718.41)
+Point[43] Position= (511.483,1816.45,-5811.93)
+Point[44] Position= (571.731,1768.93,-5846.99)
+Point[45] Position= (573.77,1765.97,-5851.73)
+Point[46] Position= (577.786,1759.67,-5859.62)
+Point[47] Position= (578.626,1758.37,-5860.69)
+Point[48] Position= (584.567,1671.97,-5896.22)
+Point[49] Position= (560.302,1674.72,-5963.32)
+Point[50] Position= (542.881,1645.18,-5998.68)
+Point[51] Position= (541.027,1643.89,-6000)
+
+TrackID =714 : ParentID=505 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -24.5238 11.4022 22.4205 keV
+Vertex : 0.542881 1.64518 -5.99868 m    Global time : 25.2158 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (542.881,1645.18,-5998.68)
+Point[1] Position= (542.859,1645.19,-5998.66)
+
+TrackID =713 : ParentID=505 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 37.7864 36.2177 -16.2454 keV
+Vertex : 0.577786 1.75967 -5.85962 m    Global time : 24.1909 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (577.786,1759.67,-5859.62)
+Point[1] Position= (577.879,1759.76,-5859.66)
+
+TrackID =712 : ParentID=505 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -8.75596 19.5168 -26.4972 keV
+Vertex : 0.57377 1.76597 -5.85173 m    Global time : 24.1381 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (573.77,1765.97,-5851.73)
+Point[1] Position= (573.763,1765.98,-5851.75)
+
+TrackID =711 : ParentID=505 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -13.5882 -83.4951 43.2404 keV
+Vertex : 0.571731 1.76893 -5.84699 m    Global time : 24.1091 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (571.731,1768.93,-5846.99)
+Point[1] Position= (571.603,1768.13,-5846.58)
+Point[2] Position= (571.326,1768.07,-5846.55)
 
-TrackID =613 : ParentID=610 : TrackStatus=1
+TrackID =710 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.03289 -26.7423 39.2088 keV
-Vertex : 0.22383 0.796404 5.79731 m    Global time : 19.5958 ns 
+Original momentum : 33.5232 31.0092 -1.89283 keV
+Vertex : 0.511483 1.81645 -5.81193 m    Global time : 23.7342 ns 
   Current trajectory has 2 points.
-Point[0] Position= (223.83,796.404,5797.31)
-Point[1] Position= (223.816,796.356,5797.38)
+Point[0] Position= (511.483,1816.45,-5811.93)
+Point[1] Position= (511.536,1816.5,-5811.94)
 
-TrackID =609 : ParentID=559 : TrackStatus=1
+TrackID =709 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 190.813 -316.927 183.923 keV
-Vertex : 0.223847 0.786627 5.71302 m    Global time : 19.2622 ns 
-  Current trajectory has 22 points.
-Point[0] Position= (223.847,786.627,5713.02)
-Point[1] Position= (231.459,763.28,5722.2)
-Point[2] Position= (232.808,711.551,5734.32)
-Point[3] Position= (247.495,692.07,5734.31)
-Point[4] Position= (251.004,689.18,5732.83)
-Point[5] Position= (258.65,681.364,5730.54)
-Point[6] Position= (285.092,659.965,5723.96)
-Point[7] Position= (293.632,653.575,5718.51)
-Point[8] Position= (308.838,668.843,5713.1)
-Point[9] Position= (314.484,668.178,5710.24)
-Point[10] Position= (322.276,667.188,5699.83)
-Point[11] Position= (324.585,673.097,5696.42)
-Point[12] Position= (330.16,676.87,5692.43)
-Point[13] Position= (335.16,681.076,5687.18)
-Point[14] Position= (341.104,681.589,5688.93)
-Point[15] Position= (345.999,681.312,5691.03)
-Point[16] Position= (349.495,682.387,5691.45)
-Point[17] Position= (349.614,682.362,5691.41)
-Point[18] Position= (351.327,682.025,5690.41)
-Point[19] Position= (352.315,680.526,5690.29)
-Point[20] Position= (353.431,680.279,5690.5)
-Point[21] Position= (353.722,680.406,5690.66)
+Original momentum : 69.9635 127.335 20.7806 keV
+Vertex : 0.432937 1.85909 -5.71841 m    Global time : 23.1685 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (432.937,1859.09,-5718.41)
+Point[1] Position= (434.256,1861.49,-5718.02)
+Point[2] Position= (434.391,1862.93,-5716.39)
+Point[3] Position= (434.714,1862.85,-5716.57)
+Point[4] Position= (435.851,1862.66,-5716.62)
+Point[5] Position= (435.69,1862.32,-5716.59)
 
-TrackID =625 : ParentID=609 : TrackStatus=1
+TrackID =716 : ParentID=709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.5428 -6.78191 -45.7785 keV
-Vertex : 0.353431 0.680279 5.6905 m    Global time : 20.8586 ns 
+Original momentum : 15.8452 -4.38185 36.0251 keV
+Vertex : 0.435851 1.86266 -5.71662 m    Global time : 23.2554 ns 
   Current trajectory has 2 points.
-Point[0] Position= (353.431,680.279,5690.5)
-Point[1] Position= (353.496,680.263,5690.39)
+Point[0] Position= (435.851,1862.66,-5716.62)
+Point[1] Position= (435.87,1862.66,-5716.58)
 
-TrackID =624 : ParentID=609 : TrackStatus=1
+TrackID =715 : ParentID=709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.9394 18.4777 -2.74268 keV
-Vertex : 0.351327 0.682025 5.69041 m    Global time : 20.8137 ns 
+Original momentum : -6.20986 -31.6268 -27.5108 keV
+Vertex : 0.434714 1.86285 -5.71657 m    Global time : 23.2365 ns 
   Current trajectory has 2 points.
-Point[0] Position= (351.327,682.025,5690.41)
-Point[1] Position= (351.35,682.04,5690.41)
+Point[0] Position= (434.714,1862.85,-5716.57)
+Point[1] Position= (434.705,1862.81,-5716.61)
 
-TrackID =623 : ParentID=609 : TrackStatus=1
+TrackID =708 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.4506 -6.15639 33.2648 keV
-Vertex : 0.349614 0.682362 5.69141 m    Global time : 20.7886 ns 
+Original momentum : -17.8265 11.485 -32.0607 keV
+Vertex : 0.428688 1.85881 -5.7161 m    Global time : 23.1471 ns 
   Current trajectory has 2 points.
-Point[0] Position= (349.614,682.362,5691.41)
-Point[1] Position= (349.634,682.355,5691.45)
+Point[0] Position= (428.688,1858.81,-5716.1)
+Point[1] Position= (428.669,1858.82,-5716.14)
 
-TrackID =622 : ParentID=609 : TrackStatus=1
+TrackID =707 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.505405 -17.7989 45.2805 keV
-Vertex : 0.345999 0.681312 5.69103 m    Global time : 20.7469 ns 
+Original momentum : -3.98683 36.9218 -3.54502 keV
+Vertex : 0.425926 1.85863 -5.71431 m    Global time : 23.1326 ns 
   Current trajectory has 2 points.
-Point[0] Position= (345.999,681.312,5691.03)
-Point[1] Position= (346,681.279,5691.12)
+Point[0] Position= (425.926,1858.63,-5714.31)
+Point[1] Position= (425.922,1858.66,-5714.31)
 
-TrackID =621 : ParentID=609 : TrackStatus=1
+TrackID =706 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 46.9476 -63.835 -8.45362 keV
-Vertex : 0.33016 0.67687 5.69243 m    Global time : 20.5668 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (330.16,676.87,5692.43)
-Point[1] Position= (330.446,676.48,5692.37)
-Point[2] Position= (330.469,676.501,5692.34)
+Original momentum : 44.0104 -92.7777 11.8026 keV
+Vertex : 0.404105 1.85552 -5.70114 m    Global time : 23.0215 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (404.105,1855.52,-5701.14)
+Point[1] Position= (404.595,1854.49,-5701.01)
+Point[2] Position= (404.998,1854.17,-5701.04)
+Point[3] Position= (404.999,1854.17,-5701.03)
 
-TrackID =626 : ParentID=621 : TrackStatus=1
+TrackID =705 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.21213 -32.6741 -14.4135 keV
-Vertex : 0.330446 0.67648 5.69237 m    Global time : 20.5773 ns 
+Original momentum : -4.43405 -16.656 -29.8416 keV
+Vertex : 0.306312 1.85069 -5.70031 m    Global time : 22.6227 ns 
   Current trajectory has 2 points.
-Point[0] Position= (330.446,676.48,5692.37)
-Point[1] Position= (330.454,676.448,5692.36)
+Point[0] Position= (306.312,1850.69,-5700.31)
+Point[1] Position= (306.308,1850.67,-5700.34)
 
-TrackID =620 : ParentID=609 : TrackStatus=1
+TrackID =704 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.9089 18.5174 -14.9553 keV
-Vertex : 0.324585 0.673097 5.69642 m    Global time : 20.5063 ns 
+Original momentum : -9.1554 29.9219 21.1939 keV
+Vertex : 0.216335 1.81723 -5.64334 m    Global time : 22.1752 ns 
   Current trajectory has 2 points.
-Point[0] Position= (324.585,673.097,5696.42)
-Point[1] Position= (324.567,673.112,5696.41)
+Point[0] Position= (216.335,1817.23,-5643.34)
+Point[1] Position= (216.326,1817.26,-5643.32)
 
-TrackID =619 : ParentID=609 : TrackStatus=1
+TrackID =703 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.1189 -13.7163 -17.0663 keV
-Vertex : 0.314484 0.668178 5.71024 m    Global time : 20.3595 ns 
+Original momentum : -14.5898 27.8444 -21.8114 keV
+Vertex : 0.186107 1.80352 -5.63779 m    Global time : 22.034 ns 
   Current trajectory has 2 points.
-Point[0] Position= (314.484,668.178,5710.24)
-Point[1] Position= (314.466,668.168,5710.23)
+Point[0] Position= (186.107,1803.52,-5637.79)
+Point[1] Position= (186.091,1803.55,-5637.82)
 
-TrackID =618 : ParentID=609 : TrackStatus=1
+TrackID =702 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.05016 -34.8208 -84.6656 keV
-Vertex : 0.293632 0.653575 5.71851 m    Global time : 20.1685 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (293.632,653.575,5718.51)
-Point[1] Position= (293.703,653.268,5717.77)
-Point[2] Position= (293.636,653.269,5717.81)
+Original momentum : -23.3029 106.374 41.0162 keV
+Vertex : 0.163097 1.79144 -5.63476 m    Global time : 21.9259 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (163.097,1791.44,-5634.76)
+Point[1] Position= (162.783,1792.87,-5634.2)
+Point[2] Position= (161.792,1792.71,-5634.07)
+Point[3] Position= (161.668,1792.41,-5634.09)
 
-TrackID =617 : ParentID=609 : TrackStatus=1
+TrackID =701 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.3083 -17.8278 -15.154 keV
-Vertex : 0.251004 0.68918 5.73283 m    Global time : 19.8219 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (251.004,689.18,5732.83)
-Point[1] Position= (250.988,689.167,5732.82)
+Original momentum : -66.1777 -2.71064 -61.983 keV
+Vertex : 0.110368 1.74287 -5.5829 m    Global time : 21.5658 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (110.368,1742.87,-5582.9)
+Point[1] Position= (109.897,1742.86,-5583.34)
+Point[2] Position= (109.958,1742.94,-5583.31)
+Point[3] Position= (109.979,1742.95,-5583.27)
 
-TrackID =616 : ParentID=609 : TrackStatus=1
+TrackID =718 : ParentID=701 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.67582 19.5278 -33.182 keV
-Vertex : 0.247495 0.69207 5.73431 m    Global time : 19.7939 ns 
+Original momentum : 4.2126 34.2761 -13.071 keV
+Vertex : 0.109958 1.74294 -5.58331 m    Global time : 21.5813 ns 
   Current trajectory has 2 points.
-Point[0] Position= (247.495,692.07,5734.31)
-Point[1] Position= (247.498,692.091,5734.28)
+Point[0] Position= (109.958,1742.94,-5583.31)
+Point[1] Position= (109.962,1742.97,-5583.33)
 
-TrackID =615 : ParentID=609 : TrackStatus=1
+TrackID =717 : ParentID=701 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.3352 -22.6872 7.67403 keV
-Vertex : 0.232808 0.711551 5.73432 m    Global time : 19.6552 ns 
+Original momentum : 31.1903 -24.7566 5.42781 keV
+Vertex : 0.109897 1.74286 -5.58334 m    Global time : 21.5781 ns 
   Current trajectory has 2 points.
-Point[0] Position= (232.808,711.551,5734.32)
-Point[1] Position= (232.777,711.527,5734.33)
+Point[0] Position= (109.897,1742.86,-5583.34)
+Point[1] Position= (109.934,1742.83,-5583.34)
 
-TrackID =614 : ParentID=609 : TrackStatus=1
+TrackID =700 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.4966 -14.9977 16.2675 keV
-Vertex : 0.231459 0.76328 5.7222 m    Global time : 19.3976 ns 
+Original momentum : -30.6349 30.5991 3.80389 keV
+Vertex : 0.0893493 1.71254 -5.55533 m    Global time : 21.3801 ns 
   Current trajectory has 2 points.
-Point[0] Position= (231.459,763.28,5722.2)
-Point[1] Position= (231.425,763.264,5722.22)
+Point[0] Position= (89.3493,1712.54,-5555.33)
+Point[1] Position= (89.3059,1712.58,-5555.32)
 
-TrackID =608 : ParentID=559 : TrackStatus=1
+TrackID =699 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.5658 14.2066 0.890907 keV
-Vertex : 0.221538 0.778548 5.65448 m    Global time : 19.0648 ns 
+Original momentum : -50.8498 26.3856 -15.1944 keV
+Vertex : 0.0834089 1.70308 -5.54928 m    Global time : 21.3286 ns 
   Current trajectory has 2 points.
-Point[0] Position= (221.538,778.548,5654.48)
-Point[1] Position= (221.5,778.563,5654.48)
+Point[0] Position= (83.4089,1703.08,-5549.28)
+Point[1] Position= (83.2579,1703.16,-5549.32)
 
-TrackID =607 : ParentID=559 : TrackStatus=1
+TrackID =698 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -464.906 -109.963 277.757 keV
-Vertex : 0.2211 0.777014 5.64336 m    Global time : 19.0273 ns 
-  Current trajectory has 12 points.
-Point[0] Position= (221.1,777.014,5643.36)
-Point[1] Position= (220.16,776.792,5643.92)
-Point[2] Position= (194.295,773.322,5666.43)
-Point[3] Position= (184.474,754.905,5704.85)
-Point[4] Position= (204.877,738.494,5808.22)
-Point[5] Position= (196.887,760.517,5879.34)
-Point[6] Position= (190.766,744.029,5931.66)
-Point[7] Position= (199.02,710.041,5959.43)
-Point[8] Position= (218.996,684.311,5977.98)
-Point[9] Position= (226.92,668.737,5997.43)
-Point[10] Position= (226.718,668.547,5998.55)
-Point[11] Position= (226.134,668.11,6000)
-
-TrackID =631 : ParentID=607 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.589904 55.256 17.7969 keV
-Vertex : 0.226718 0.668547 5.99855 m    Global time : 21.079 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (226.718,668.547,5998.55)
-Point[1] Position= (226.72,668.703,5998.6)
-
-TrackID =630 : ParentID=607 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -61.6677 87.4851 61.4011 keV
-Vertex : 0.196887 0.760517 5.87934 m    Global time : 20.2057 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (196.887,760.517,5879.34)
-Point[1] Position= (196.545,761.001,5879.68)
-Point[2] Position= (195.631,761.771,5880.65)
-Point[3] Position= (194.968,761.905,5881.08)
-Point[4] Position= (194.894,761.864,5881.17)
+Original momentum : 4.9215 -19.4547 -33.3798 keV
+Vertex : 0.0633195 1.6383 -5.4982 m    Global time : 20.9923 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (63.3195,1638.3,-5498.2)
+Point[1] Position= (63.3249,1638.27,-5498.23)
 
-TrackID =632 : ParentID=630 : TrackStatus=1
+TrackID =697 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.1584 9.57058 17.268 keV
-Vertex : 0.196545 0.761001 5.87968 m    Global time : 20.2154 ns 
+Original momentum : -43.71 3.83474 -7.62303 keV
+Vertex : 0.0624565 1.63104 -5.49281 m    Global time : 20.9558 ns 
   Current trajectory has 2 points.
-Point[0] Position= (196.545,761.001,5879.68)
-Point[1] Position= (196.565,761.008,5879.7)
+Point[0] Position= (62.4565,1631.04,-5492.81)
+Point[1] Position= (62.391,1631.04,-5492.82)
 
-TrackID =629 : ParentID=607 : TrackStatus=1
+TrackID =696 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 48.0742 23.3764 25.9177 keV
-Vertex : 0.184474 0.754905 5.70485 m    Global time : 19.3862 ns 
+Original momentum : -5.69191 -16.8058 -32.4715 keV
+Vertex : 0.0609022 1.62069 -5.48716 m    Global time : 20.9083 ns 
   Current trajectory has 2 points.
-Point[0] Position= (184.474,754.905,5704.85)
-Point[1] Position= (184.617,754.975,5704.92)
+Point[0] Position= (60.9022,1620.69,-5487.16)
+Point[1] Position= (60.8965,1620.67,-5487.19)
 
-TrackID =628 : ParentID=607 : TrackStatus=1
+TrackID =695 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -163.752 2.5742 -52.6302 keV
-Vertex : 0.194295 0.773322 5.66643 m    Global time : 19.1859 ns 
+Original momentum : 151.325 -56.7096 20.4132 keV
+Vertex : 0.0387317 1.56995 -5.45881 m    Global time : 20.6644 ns 
   Current trajectory has 7 points.
-Point[0] Position= (194.295,773.322,5666.43)
-Point[1] Position= (193.21,773.339,5666.08)
-Point[2] Position= (192.879,771.076,5664.34)
-Point[3] Position= (192.91,770.545,5664.24)
-Point[4] Position= (192.661,769.943,5664.59)
-Point[5] Position= (192.938,769.492,5664.43)
-Point[6] Position= (193.061,769.584,5664.35)
+Point[0] Position= (38.7317,1569.95,-5458.81)
+Point[1] Position= (42.0963,1568.69,-5458.36)
+Point[2] Position= (44.6012,1569.99,-5457.14)
+Point[3] Position= (46.4734,1569.01,-5458.04)
+Point[4] Position= (46.6392,1567.73,-5458.69)
+Point[5] Position= (46.8241,1567.29,-5458.34)
+Point[6] Position= (46.7222,1567.19,-5458.17)
 
-TrackID =636 : ParentID=628 : TrackStatus=1
+TrackID =719 : ParentID=695 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.7977 -25.0818 3.14084 keV
-Vertex : 0.192938 0.769492 5.66443 m    Global time : 19.2631 ns 
+Original momentum : -28.0279 14.4612 -8.85764 keV
+Vertex : 0.0468241 1.56729 -5.45834 m    Global time : 20.8034 ns 
   Current trajectory has 2 points.
-Point[0] Position= (192.938,769.492,5664.43)
-Point[1] Position= (192.954,769.473,5664.43)
+Point[0] Position= (46.8241,1567.29,-5458.34)
+Point[1] Position= (46.8028,1567.3,-5458.35)
 
-TrackID =635 : ParentID=628 : TrackStatus=1
+TrackID =694 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -18.7471 -20.0164 23.3335 keV
-Vertex : 0.192661 0.769943 5.66459 m    Global time : 19.252 ns 
+Original momentum : 8.56183 49.8658 27.465 keV
+Vertex : 0.00262846 1.53571 -5.41478 m    Global time : 20.4035 ns 
   Current trajectory has 2 points.
-Point[0] Position= (192.661,769.943,5664.59)
-Point[1] Position= (192.644,769.925,5664.61)
+Point[0] Position= (2.62846,1535.71,-5414.78)
+Point[1] Position= (2.65212,1535.85,-5414.7)
 
-TrackID =634 : ParentID=628 : TrackStatus=1
+TrackID =693 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.1616 -49.9105 -65.2586 keV
-Vertex : 0.19291 0.770545 5.66424 m    Global time : 19.2392 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (192.91,770.545,5664.24)
-Point[1] Position= (193.062,770.253,5663.86)
-Point[2] Position= (193.089,770.226,5663.77)
+Original momentum : 35.9187 0.713284 10.0203 keV
+Vertex : -0.0082511 1.51287 -5.38999 m    Global time : 20.2655 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-8.2511,1512.87,-5389.99)
+Point[1] Position= (-8.2149,1512.88,-5389.98)
 
-TrackID =637 : ParentID=634 : TrackStatus=1
+TrackID =692 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.20246 38.532 -9.63186 keV
-Vertex : 0.193062 0.770253 5.66386 m    Global time : 19.2493 ns 
+Original momentum : 64.9778 -13.0026 13.8141 keV
+Vertex : -0.0122339 1.50465 -5.37743 m    Global time : 20.2049 ns 
   Current trajectory has 2 points.
-Point[0] Position= (193.062,770.253,5663.86)
-Point[1] Position= (193.072,770.3,5663.84)
+Point[0] Position= (-12.2339,1504.65,-5377.43)
+Point[1] Position= (-11.9656,1504.6,-5377.37)
 
-TrackID =633 : ParentID=628 : TrackStatus=1
+TrackID =691 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -72.3719 22.5478 -16.8985 keV
-Vertex : 0.19321 0.773339 5.66608 m    Global time : 19.1978 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (193.21,773.339,5666.08)
-Point[1] Position= (192.841,773.454,5666)
-Point[2] Position= (192.794,773.507,5666.02)
+Original momentum : -36.4049 25.7453 2.38484 keV
+Vertex : -0.0173604 1.49144 -5.35779 m    Global time : 20.111 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-17.3604,1491.44,-5357.79)
+Point[1] Position= (-17.4153,1491.48,-5357.79)
 
-TrackID =638 : ParentID=633 : TrackStatus=1
+TrackID =690 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.5122 17.4881 12.8185 keV
-Vertex : 0.192841 0.773454 5.666 m    Global time : 19.2066 ns 
+Original momentum : -28.4629 31.918 8.96294 keV
+Vertex : -0.0247817 1.47423 -5.3293 m    Global time : 19.9791 ns 
   Current trajectory has 2 points.
-Point[0] Position= (192.841,773.454,5666)
-Point[1] Position= (192.863,773.469,5666.01)
+Point[0] Position= (-24.7817,1474.23,-5329.3)
+Point[1] Position= (-24.8225,1474.28,-5329.28)
 
-TrackID =627 : ParentID=607 : TrackStatus=1
+TrackID =689 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.298 36.9804 -16.1689 keV
-Vertex : 0.22016 0.776792 5.64392 m    Global time : 19.0324 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (220.16,776.792,5643.92)
-Point[1] Position= (220.118,776.855,5643.9)
+Original momentum : 54.944 5.98539 2.78128 keV
+Vertex : -0.0246591 1.46324 -5.30456 m    Global time : 19.8741 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-24.6591,1463.24,-5304.56)
+Point[1] Position= (-24.546,1463.25,-5304.56)
+Point[2] Position= (-24.4754,1463.27,-5304.52)
 
-TrackID =606 : ParentID=559 : TrackStatus=1
+TrackID =688 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.5457 -46.5321 8.27628 keV
-Vertex : 0.219608 0.771775 5.6054 m    Global time : 18.8993 ns 
+Original momentum : -12.2351 28.8067 14.792 keV
+Vertex : -0.0276333 1.45164 -5.28295 m    Global time : 19.779 ns 
   Current trajectory has 2 points.
-Point[0] Position= (219.608,771.775,5605.4)
-Point[1] Position= (219.671,771.664,5605.42)
+Point[0] Position= (-27.6333,1451.64,-5282.95)
+Point[1] Position= (-27.6437,1451.67,-5282.94)
 
-TrackID =605 : ParentID=559 : TrackStatus=1
+TrackID =687 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -44.6296 -18.025 6.56676 keV
-Vertex : 0.214485 0.75379 5.47503 m    Global time : 18.4597 ns 
+Original momentum : -66.4991 29.6184 8.86965 keV
+Vertex : -0.024262 1.41099 -5.22012 m    Global time : 19.4941 ns 
   Current trajectory has 2 points.
-Point[0] Position= (214.485,753.79,5475.03)
-Point[1] Position= (214.404,753.757,5475.04)
+Point[0] Position= (-24.262,1410.99,-5220.12)
+Point[1] Position= (-24.5981,1411.14,-5220.08)
 
-TrackID =604 : ParentID=559 : TrackStatus=1
+TrackID =686 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.70391 -33.7613 5.68149 keV
-Vertex : 0.206124 0.724366 5.26162 m    Global time : 17.7402 ns 
+Original momentum : -52.6683 -18.9869 11.4101 keV
+Vertex : -0.0224079 1.40887 -5.21565 m    Global time : 19.4738 ns 
   Current trajectory has 2 points.
-Point[0] Position= (206.124,724.366,5261.62)
-Point[1] Position= (206.127,724.338,5261.62)
+Point[0] Position= (-22.4079,1408.87,-5215.65)
+Point[1] Position= (-22.5507,1408.82,-5215.62)
 
-TrackID =603 : ParentID=559 : TrackStatus=1
+TrackID =685 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.2536 -46.6204 10.031 keV
-Vertex : 0.202104 0.710222 5.15904 m    Global time : 17.3943 ns 
+Original momentum : 1.1925 35.6277 0.71467 keV
+Vertex : 0.050425 1.4119 -5.14177 m    Global time : 19.0828 ns 
   Current trajectory has 2 points.
-Point[0] Position= (202.104,710.222,5159.04)
-Point[1] Position= (202.054,710.119,5159.06)
+Point[0] Position= (50.425,1411.9,-5141.77)
+Point[1] Position= (50.4261,1411.93,-5141.77)
 
-TrackID =602 : ParentID=559 : TrackStatus=1
+TrackID =684 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.9071 -56.4129 10.8283 keV
-Vertex : 0.201649 0.708624 5.14745 m    Global time : 17.3552 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (201.649,708.624,5147.45)
-Point[1] Position= (201.784,708.4,5147.49)
+Original momentum : 30.3867 124.728 30.884 keV
+Vertex : 0.0830947 1.41944 -4.70308 m    Global time : 17.5326 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (83.0947,1419.44,-4703.08)
+Point[1] Position= (83.5859,1421.46,-4702.58)
+Point[2] Position= (83.4123,1422.78,-4701.92)
+Point[3] Position= (83.4962,1423.53,-4701.61)
+Point[4] Position= (83.4962,1423.53,-4701.61)
 
-TrackID =601 : ParentID=559 : TrackStatus=1
+TrackID =683 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -42.0329 22.084 0.830738 keV
-Vertex : 0.197899 0.695446 5.05184 m    Global time : 17.0329 ns 
+Original momentum : 36.9678 -31.0581 -9.04418 keV
+Vertex : 0.0846481 1.40096 -4.65675 m    Global time : 17.3476 ns 
   Current trajectory has 2 points.
-Point[0] Position= (197.899,695.446,5051.84)
-Point[1] Position= (197.826,695.484,5051.84)
+Point[0] Position= (84.6481,1400.96,-4656.75)
+Point[1] Position= (84.7177,1400.9,-4656.77)
 
-TrackID =600 : ParentID=559 : TrackStatus=1
+TrackID =682 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -303.215 31.1664 101.117 keV
-Vertex : 0.189574 0.666204 4.83967 m    Global time : 16.3175 ns 
-  Current trajectory has 16 points.
-Point[0] Position= (189.574,666.204,4839.67)
-Point[1] Position= (163.49,668.885,4848.37)
-Point[2] Position= (154.701,681.275,4861.37)
-Point[3] Position= (154.229,682.19,4861.46)
-Point[4] Position= (146.372,695.178,4859.24)
-Point[5] Position= (140.456,706.081,4859.43)
-Point[6] Position= (139.478,713.744,4858.68)
-Point[7] Position= (138.578,715.278,4855.96)
-Point[8] Position= (134.005,717.385,4852.25)
-Point[9] Position= (132.421,718.412,4856.43)
-Point[10] Position= (131.271,716.32,4859.69)
-Point[11] Position= (129.592,714.562,4861.8)
-Point[12] Position= (127.426,713.039,4862.08)
-Point[13] Position= (126.813,712,4861.83)
-Point[14] Position= (125.856,711.596,4862.06)
-Point[15] Position= (125.855,711.333,4861.82)
+Original momentum : 26.8595 55.0072 16.9552 keV
+Vertex : 0.0836022 1.3981 -4.64679 m    Global time : 17.3088 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (83.6022,1398.1,-4646.79)
+Point[1] Position= (83.6968,1398.29,-4646.74)
 
-TrackID =645 : ParentID=600 : TrackStatus=1
+TrackID =681 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -55.8018 -9.83107 10.6621 keV
-Vertex : 0.125856 0.711596 4.86206 m    Global time : 17.1792 ns 
+Original momentum : -29.0397 43.3777 13.2175 keV
+Vertex : 0.0797702 1.38454 -4.61456 m    Global time : 17.1781 ns 
   Current trajectory has 2 points.
-Point[0] Position= (125.856,711.596,4862.06)
-Point[1] Position= (125.702,711.569,4862.09)
+Point[0] Position= (79.7702,1384.54,-4614.56)
+Point[1] Position= (79.7021,1384.64,-4614.53)
 
-TrackID =644 : ParentID=600 : TrackStatus=1
+TrackID =680 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.15676 -21.2337 -58.2472 keV
-Vertex : 0.126813 0.712 4.86183 m    Global time : 17.1614 ns 
+Original momentum : -20.2056 40.3683 18.8609 keV
+Vertex : 0.0802122 1.37328 -4.59497 m    Global time : 17.0942 ns 
   Current trajectory has 2 points.
-Point[0] Position= (126.813,712,4861.83)
-Point[1] Position= (126.795,711.929,4861.64)
+Point[0] Position= (80.2122,1373.28,-4594.97)
+Point[1] Position= (80.1745,1373.36,-4594.93)
 
-TrackID =643 : ParentID=600 : TrackStatus=1
+TrackID =679 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.495103 26.9314 17.6846 keV
-Vertex : 0.132421 0.718412 4.85643 m    Global time : 17.032 ns 
+Original momentum : 8.66708 29.4705 27.5871 keV
+Vertex : 0.0507163 1.28669 -4.46852 m    Global time : 16.5221 ns 
   Current trajectory has 2 points.
-Point[0] Position= (132.421,718.412,4856.43)
-Point[1] Position= (132.421,718.431,4856.44)
+Point[0] Position= (50.7163,1286.69,-4468.52)
+Point[1] Position= (50.7273,1286.73,-4468.49)
 
-TrackID =642 : ParentID=600 : TrackStatus=1
+TrackID =678 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.1062 -4.51424 26.676 keV
-Vertex : 0.138578 0.715278 4.85596 m    Global time : 16.9297 ns 
+Original momentum : -22.9008 31.9498 21.9877 keV
+Vertex : 0.0133139 1.19164 -4.41382 m    Global time : 16.1016 ns 
   Current trajectory has 2 points.
-Point[0] Position= (138.578,715.278,4855.96)
-Point[1] Position= (138.555,715.273,4855.99)
+Point[0] Position= (13.3139,1191.64,-4413.82)
+Point[1] Position= (13.2787,1191.69,-4413.79)
+
+TrackID =677 : ParentID=505 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -45.013 127.729 70.8988 keV
+Vertex : 0.00289794 1.16526 -4.37709 m    Global time : 15.9315 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (2.89794,1165.26,-4377.09)
+Point[1] Position= (1.99401,1167.82,-4375.67)
+Point[2] Position= (0.354189,1168.61,-4376.79)
+Point[3] Position= (-0.316602,1167.57,-4377.18)
+Point[4] Position= (-0.173643,1167.33,-4377.19)
+Point[5] Position= (-0.0955661,1167.06,-4377.16)
 
-TrackID =641 : ParentID=600 : TrackStatus=1
+TrackID =721 : ParentID=677 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 17.2916 44.1673 18.6362 keV
-Vertex : 0.139478 0.713744 4.85868 m    Global time : 16.9009 ns 
+Original momentum : -31.6064 -11.3415 -15.557 keV
+Vertex : -0.000173643 1.16733 -4.37719 m    Global time : 16.0219 ns 
   Current trajectory has 2 points.
-Point[0] Position= (139.478,713.744,4858.68)
-Point[1] Position= (139.513,713.835,4858.72)
+Point[0] Position= (-0.173643,1167.33,-4377.19)
+Point[1] Position= (-0.204957,1167.32,-4377.21)
 
-TrackID =640 : ParentID=600 : TrackStatus=1
+TrackID =720 : ParentID=677 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.0914 22.8782 37.1579 keV
-Vertex : 0.154229 0.68219 4.86146 m    Global time : 16.6317 ns 
+Original momentum : -30.7961 -20.0592 21.1935 keV
+Vertex : -0.000316602 1.16757 -4.37718 m    Global time : 16.0161 ns 
   Current trajectory has 2 points.
-Point[0] Position= (154.229,682.19,4861.46)
-Point[1] Position= (154.283,682.237,4861.54)
+Point[0] Position= (-0.316602,1167.57,-4377.18)
+Point[1] Position= (-0.357926,1167.54,-4377.15)
 
-TrackID =639 : ParentID=600 : TrackStatus=1
+TrackID =676 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.4206 -12.1086 -28.9526 keV
-Vertex : 0.154701 0.681275 4.86137 m    Global time : 16.6243 ns 
+Original momentum : -39.1286 10.5766 -2.82276 keV
+Vertex : -0.0269474 0.949967 -4.25871 m    Global time : 15.0364 ns 
   Current trajectory has 2 points.
-Point[0] Position= (154.701,681.275,4861.37)
-Point[1] Position= (154.657,681.258,4861.32)
+Point[0] Position= (-26.9474,949.967,-4258.71)
+Point[1] Position= (-26.995,949.98,-4258.71)
 
-TrackID =599 : ParentID=559 : TrackStatus=1
+TrackID =675 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.6946 -25.06 3.77744 keV
-Vertex : 0.185608 0.65224 4.73833 m    Global time : 15.9758 ns 
+Original momentum : 29.8287 -16.6901 -18.587 keV
+Vertex : -0.0292743 0.939931 -4.25293 m    Global time : 14.9935 ns 
   Current trajectory has 2 points.
-Point[0] Position= (185.608,652.24,4738.33)
-Point[1] Position= (185.639,652.214,4738.33)
+Point[0] Position= (-29.2743,939.931,-4252.93)
+Point[1] Position= (-29.2412,939.913,-4252.95)
 
-TrackID =598 : ParentID=559 : TrackStatus=1
+TrackID =674 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.6018 -29.6014 5.8283 keV
-Vertex : 0.183909 0.646257 4.69491 m    Global time : 15.8294 ns 
+Original momentum : 32.6886 -1.59674 8.49113 keV
+Vertex : -0.0680463 0.805747 -4.18414 m    Global time : 14.4327 ns 
   Current trajectory has 2 points.
-Point[0] Position= (183.909,646.257,4694.91)
-Point[1] Position= (183.896,646.233,4694.91)
+Point[0] Position= (-68.0463,805.747,-4184.14)
+Point[1] Position= (-68.0198,805.746,-4184.14)
 
-TrackID =597 : ParentID=559 : TrackStatus=1
+TrackID =673 : ParentID=505 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.6048 -35.0553 6.61208 keV
-Vertex : 0.1831 0.643412 4.67425 m    Global time : 15.7598 ns 
+Original momentum : 170.201 20.5342 57.7677 keV
+Vertex : -0.0901369 0.724192 -4.08228 m    Global time : 13.9605 ns 
+  Current trajectory has 8 points.
+Point[0] Position= (-90.1369,724.192,-4082.28)
+Point[1] Position= (-89.0187,724.327,-4081.9)
+Point[2] Position= (-85.0017,724.662,-4079.58)
+Point[3] Position= (-82.8369,723.754,-4077.18)
+Point[4] Position= (-82.6896,723.798,-4074.91)
+Point[5] Position= (-83.0041,722.869,-4076.18)
+Point[6] Position= (-83.6442,722.898,-4076.44)
+Point[7] Position= (-83.4891,722.828,-4076.38)
+
+TrackID =672 : ParentID=505 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 28.2085 -13.4309 6.46911 keV
+Vertex : -0.0996318 0.709256 -4.0679 m    Global time : 13.8784 ns 
   Current trajectory has 2 points.
-Point[0] Position= (183.1,643.412,4674.25)
-Point[1] Position= (183.09,643.377,4674.26)
+Point[0] Position= (-99.6318,709.256,-4067.9)
+Point[1] Position= (-99.6116,709.246,-4067.89)
+
+TrackID =671 : ParentID=505 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 131.819 8.71977 100.107 keV
+Vertex : -0.117138 0.686698 -4.04556 m    Global time : 13.748 ns 
+  Current trajectory has 7 points.
+Point[0] Position= (-117.138,686.698,-4045.56)
+Point[1] Position= (-114.121,686.897,-4043.27)
+Point[2] Position= (-111.548,687.235,-4042.14)
+Point[3] Position= (-110.774,687.472,-4040.6)
+Point[4] Position= (-110.806,687.217,-4040.12)
+Point[5] Position= (-110.591,687.104,-4039.41)
+Point[6] Position= (-110.652,687.116,-4039.43)
 
-TrackID =596 : ParentID=559 : TrackStatus=1
+TrackID =722 : ParentID=671 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.7899 64.5935 -1.79883 keV
-Vertex : 0.178634 0.627672 4.56004 m    Global time : 15.3747 ns 
+Original momentum : -26.6581 -24.3982 4.30631 keV
+Vertex : -0.110806 0.687217 -4.04012 m    Global time : 13.8573 ns 
   Current trajectory has 2 points.
-Point[0] Position= (178.634,627.672,4560.04)
-Point[1] Position= (178.424,628.022,4560.03)
+Point[0] Position= (-110.806,687.217,-4040.12)
+Point[1] Position= (-110.831,687.194,-4040.11)
 
-TrackID =595 : ParentID=559 : TrackStatus=1
+TrackID =504 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.737 -32.6496 5.21109 keV
-Vertex : 0.169708 0.596186 4.33162 m    Global time : 14.6045 ns 
+Original momentum : 63.6024 -18.0274 -9.61102 keV
+Vertex : -0.129471 0.620506 -3.76851 m    Global time : 12.747 ns 
   Current trajectory has 2 points.
-Point[0] Position= (169.708,596.186,4331.62)
-Point[1] Position= (169.723,596.154,4331.63)
+Point[0] Position= (-129.471,620.506,-3768.51)
+Point[1] Position= (-129.217,620.434,-3768.55)
 
-TrackID =594 : ParentID=559 : TrackStatus=1
+TrackID =503 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -43.4726 19.9901 1.20192 keV
-Vertex : 0.166527 0.584961 4.25022 m    Global time : 14.3301 ns 
+Original momentum : 7.10801 74.5422 6.48484 keV
+Vertex : -0.1254 0.600786 -3.64957 m    Global time : 12.3447 ns 
   Current trajectory has 2 points.
-Point[0] Position= (166.527,584.961,4250.22)
-Point[1] Position= (166.45,584.996,4250.22)
+Point[0] Position= (-125.4,600.786,-3649.57)
+Point[1] Position= (-125.361,601.187,-3649.54)
 
-TrackID =593 : ParentID=559 : TrackStatus=1
+TrackID =502 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 111.236 -111.08 36.0787 keV
-Vertex : 0.152818 0.536567 3.89919 m    Global time : 13.1465 ns 
-  Current trajectory has 7 points.
-Point[0] Position= (152.818,536.567,3899.19)
-Point[1] Position= (154.766,534.622,3899.83)
-Point[2] Position= (156.458,533.106,3900.34)
-Point[3] Position= (153.914,533.644,3900.18)
-Point[4] Position= (153.034,534.817,3898.93)
-Point[5] Position= (153.43,535.113,3897.78)
-Point[6] Position= (153.867,534.873,3897.64)
+Original momentum : 50.0284 -68.0709 -20.301 keV
+Vertex : -0.123784 0.592993 -3.60225 m    Global time : 12.1846 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-123.784,592.993,-3602.25)
+Point[1] Position= (-123.396,592.465,-3602.41)
+Point[2] Position= (-123.402,592.484,-3602.4)
 
-TrackID =646 : ParentID=593 : TrackStatus=1
+TrackID =501 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.44065 -34.2669 16.1538 keV
-Vertex : 0.156458 0.533106 3.90034 m    Global time : 13.2044 ns 
+Original momentum : -60.0302 -42.2992 -10.3286 keV
+Vertex : -0.121188 0.580202 -3.52417 m    Global time : 11.9205 ns 
   Current trajectory has 2 points.
-Point[0] Position= (156.458,533.106,3900.34)
-Point[1] Position= (156.449,533.068,3900.36)
+Point[0] Position= (-121.188,580.202,-3524.17)
+Point[1] Position= (-121.5,579.982,-3524.22)
 
-TrackID =592 : ParentID=559 : TrackStatus=1
+TrackID =500 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.1174 37.3454 -2.94456 keV
-Vertex : 0.152724 0.536235 3.89679 m    Global time : 13.1384 ns 
+Original momentum : -13.1439 37.0715 4.92592 keV
+Vertex : -0.118075 0.565118 -3.43181 m    Global time : 11.6082 ns 
   Current trajectory has 2 points.
-Point[0] Position= (152.724,536.235,3896.79)
-Point[1] Position= (152.706,536.28,3896.78)
+Point[0] Position= (-118.075,565.118,-3431.81)
+Point[1] Position= (-118.09,565.161,-3431.81)
 
-TrackID =591 : ParentID=559 : TrackStatus=1
+TrackID =499 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -36.253 20.2024 0.336525 keV
-Vertex : 0.150411 0.528092 3.8377 m    Global time : 12.9392 ns 
+Original momentum : -0.116678 -33.2637 -6.53277 keV
+Vertex : -0.117056 0.560276 -3.40201 m    Global time : 11.5074 ns 
   Current trajectory has 2 points.
-Point[0] Position= (150.411,528.092,3837.7)
-Point[1] Position= (150.365,528.118,3837.7)
+Point[0] Position= (-117.056,560.276,-3402.01)
+Point[1] Position= (-117.056,560.249,-3402.02)
 
-TrackID =590 : ParentID=559 : TrackStatus=1
+TrackID =498 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.9807 -47.9359 8.63579 keV
-Vertex : 0.143737 0.50459 3.66718 m    Global time : 12.3642 ns 
+Original momentum : -22.4301 22.525 3.42478 keV
+Vertex : -0.114417 0.547782 -3.32509 m    Global time : 11.2473 ns 
   Current trajectory has 2 points.
-Point[0] Position= (143.737,504.59,3667.18)
-Point[1] Position= (143.758,504.496,3667.19)
+Point[0] Position= (-114.417,547.782,-3325.09)
+Point[1] Position= (-114.433,547.798,-3325.09)
 
-TrackID =589 : ParentID=559 : TrackStatus=1
+TrackID =497 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -16.1178 -28.5757 5.66329 keV
-Vertex : 0.143659 0.504316 3.66518 m    Global time : 12.3575 ns 
+Original momentum : -31.9557 -26.3855 -4.94586 keV
+Vertex : -0.11218 0.53711 -3.25948 m    Global time : 11.0255 ns 
   Current trajectory has 2 points.
-Point[0] Position= (143.659,504.316,3665.18)
-Point[1] Position= (143.646,504.293,3665.19)
+Point[0] Position= (-112.18,537.11,-3259.48)
+Point[1] Position= (-112.221,537.076,-3259.48)
 
-TrackID =588 : ParentID=559 : TrackStatus=1
+TrackID =496 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 48.8715 34.9128 -3.15923 keV
-Vertex : 0.141684 0.497363 3.61473 m    Global time : 12.1874 ns 
+Original momentum : -26.0253 46.6809 5.62656 keV
+Vertex : -0.111004 0.531503 -3.225 m    Global time : 10.9089 ns 
   Current trajectory has 2 points.
-Point[0] Position= (141.684,497.363,3614.73)
-Point[1] Position= (141.834,497.471,3614.72)
+Point[0] Position= (-111.004,531.503,-3225)
+Point[1] Position= (-111.064,531.612,-3224.99)
 
-TrackID =587 : ParentID=559 : TrackStatus=1
+TrackID =495 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.905 -7.60477 0.839862 keV
-Vertex : 0.139885 0.491035 3.56879 m    Global time : 12.0325 ns 
+Original momentum : 34.0408 -10.3972 -4.14278 keV
+Vertex : -0.110275 0.528089 -3.204 m    Global time : 10.8379 ns 
   Current trajectory has 2 points.
-Point[0] Position= (139.885,491.035,3568.79)
-Point[1] Position= (139.907,491.029,3568.79)
+Point[0] Position= (-110.275,528.089,-3204)
+Point[1] Position= (-110.244,528.079,-3204)
 
-TrackID =586 : ParentID=559 : TrackStatus=1
+TrackID =494 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -50.3475 -31.7036 9.92395 keV
-Vertex : 0.139537 0.489808 3.55989 m    Global time : 12.0025 ns 
+Original momentum : -33.9389 16.0587 2.38753 keV
+Vertex : -0.10917 0.522904 -3.17208 m    Global time : 10.73 ns 
   Current trajectory has 2 points.
-Point[0] Position= (139.537,489.808,3559.89)
-Point[1] Position= (139.381,489.71,3559.92)
+Point[0] Position= (-109.17,522.904,-3172.08)
+Point[1] Position= (-109.205,522.92,-3172.08)
 
-TrackID =585 : ParentID=559 : TrackStatus=1
+TrackID =493 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.2577 -8.15889 3.70459 keV
-Vertex : 0.130602 0.458388 3.33184 m    Global time : 11.2336 ns 
+Original momentum : 42.3026 -15.9564 -6.13582 keV
+Vertex : -0.108543 0.51998 -3.15409 m    Global time : 10.6691 ns 
   Current trajectory has 2 points.
-Point[0] Position= (130.602,458.388,3331.84)
-Point[1] Position= (130.571,458.38,3331.85)
+Point[0] Position= (-108.543,519.98,-3154.09)
+Point[1] Position= (-108.476,519.955,-3154.1)
 
-TrackID =584 : ParentID=559 : TrackStatus=1
+TrackID =492 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.7066 57.5682 -5.02363 keV
-Vertex : 0.122295 0.429181 3.11976 m    Global time : 10.5185 ns 
+Original momentum : -3.74742 -78.1792 -18.9958 keV
+Vertex : -0.106511 0.510495 -3.09574 m    Global time : 10.4718 ns 
   Current trajectory has 3 points.
-Point[0] Position= (122.295,429.181,3119.76)
-Point[1] Position= (122.313,429.228,3119.76)
-Point[2] Position= (122.309,429.307,3119.75)
+Point[0] Position= (-106.511,510.495,-3095.74)
+Point[1] Position= (-106.535,509.993,-3095.86)
+Point[2] Position= (-106.541,509.984,-3095.86)
 
-TrackID =647 : ParentID=584 : TrackStatus=1
+TrackID =491 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.9242 6.00766 30.2192 keV
-Vertex : 0.122313 0.429228 3.11976 m    Global time : 10.52 ns 
+Original momentum : 6.27778 -38.6911 -8.08503 keV
+Vertex : -0.105539 0.505912 -3.06759 m    Global time : 10.3766 ns 
   Current trajectory has 2 points.
-Point[0] Position= (122.313,429.228,3119.76)
-Point[1] Position= (122.338,429.235,3119.79)
+Point[0] Position= (-105.539,505.912,-3067.59)
+Point[1] Position= (-105.532,505.866,-3067.59)
 
-TrackID =583 : ParentID=559 : TrackStatus=1
+TrackID =490 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.46594 -63.9801 13.3687 keV
-Vertex : 0.113554 0.398433 2.89658 m    Global time : 9.76602 ns 
+Original momentum : 24.8976 25.0159 1.97789 keV
+Vertex : -0.10384 0.497772 -3.0174 m    Global time : 10.2069 ns 
   Current trajectory has 2 points.
-Point[0] Position= (113.554,398.433,2896.58)
-Point[1] Position= (113.526,398.188,2896.63)
+Point[0] Position= (-103.84,497.772,-3017.4)
+Point[1] Position= (-103.818,497.795,-3017.4)
 
-TrackID =582 : ParentID=559 : TrackStatus=1
+TrackID =489 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.186 7.94141 1.90984 keV
-Vertex : 0.112158 0.393527 2.86096 m    Global time : 9.64592 ns 
+Original momentum : -12.0779 -32.2636 -6.07251 keV
+Vertex : -0.0965024 0.462769 -2.80261 m    Global time : 9.4806 ns 
   Current trajectory has 2 points.
-Point[0] Position= (112.158,393.527,2860.96)
-Point[1] Position= (112.116,393.536,2860.96)
+Point[0] Position= (-96.5024,462.769,-2802.61)
+Point[1] Position= (-96.5129,462.74,-2802.62)
 
-TrackID =581 : ParentID=559 : TrackStatus=1
+TrackID =488 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.1949 -16.9445 2.28735 keV
-Vertex : 0.106329 0.37306 2.71237 m    Global time : 9.14492 ns 
+Original momentum : 18.5181 44.7231 4.35101 keV
+Vertex : -0.0957635 0.459248 -2.78108 m    Global time : 9.40779 ns 
   Current trajectory has 2 points.
-Point[0] Position= (106.329,373.06,2712.37)
-Point[1] Position= (106.348,373.047,2712.37)
+Point[0] Position= (-95.7635,459.248,-2781.08)
+Point[1] Position= (-95.7295,459.33,-2781.07)
 
-TrackID =580 : ParentID=559 : TrackStatus=1
+TrackID =487 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.675 -30.6682 5.90828 keV
-Vertex : 0.102863 0.360889 2.624 m    Global time : 8.84697 ns 
+Original momentum : -42.3818 61.1556 6.08321 keV
+Vertex : -0.0846639 0.40575 -2.45767 m    Global time : 8.31372 ns 
   Current trajectory has 2 points.
-Point[0] Position= (102.863,360.889,2624)
-Point[1] Position= (102.852,360.863,2624)
+Point[0] Position= (-84.6639,405.75,-2457.67)
+Point[1] Position= (-84.8881,406.074,-2457.64)
 
-TrackID =579 : ParentID=559 : TrackStatus=1
+TrackID =486 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -117.356 -38.0033 25.2801 keV
-Vertex : 0.0974549 0.341875 2.48595 m    Global time : 8.38152 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (97.4549,341.875,2485.95)
-Point[1] Position= (95.7278,341.316,2486.32)
-Point[2] Position= (95.2995,341.023,2486.39)
-Point[3] Position= (95.3281,340.97,2486.4)
-
-TrackID =648 : ParentID=579 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.38996 0.447266 59.326 keV
-Vertex : 0.0957278 0.341316 2.48632 m    Global time : 8.40735 ns 
+Original momentum : -24.9177 21.2414 3.27323 keV
+Vertex : -0.0772804 0.367691 -2.2295 m    Global time : 7.54173 ns 
   Current trajectory has 2 points.
-Point[0] Position= (95.7278,341.316,2486.32)
-Point[1] Position= (95.7566,341.317,2486.5)
+Point[0] Position= (-77.2804,367.691,-2229.5)
+Point[1] Position= (-77.2995,367.707,-2229.5)
 
-TrackID =578 : ParentID=559 : TrackStatus=1
+TrackID =485 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -41.7429 -23.5246 7.18976 keV
-Vertex : 0.0965527 0.3387 2.46289 m    Global time : 8.30378 ns 
+Original momentum : 2.06855 -32.0023 -6.43693 keV
+Vertex : -0.0755773 0.359057 -2.17757 m    Global time : 7.36601 ns 
   Current trajectory has 2 points.
-Point[0] Position= (96.5527,338.7,2462.89)
-Point[1] Position= (96.4767,338.657,2462.9)
+Point[0] Position= (-75.5773,359.057,-2177.57)
+Point[1] Position= (-75.5758,359.033,-2177.57)
 
-TrackID =577 : ParentID=559 : TrackStatus=1
+TrackID =484 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.1974 -12.4816 1.61455 keV
-Vertex : 0.0919111 0.322361 2.34424 m    Global time : 7.90372 ns 
+Original momentum : -21.8429 35.4607 4.87779 keV
+Vertex : -0.0754057 0.358213 -2.17247 m    Global time : 7.34878 ns 
   Current trajectory has 2 points.
-Point[0] Position= (91.9111,322.361,2344.24)
-Point[1] Position= (91.9362,322.351,2344.24)
+Point[0] Position= (-75.4057,358.213,-2172.47)
+Point[1] Position= (-75.4343,358.26,-2172.47)
 
-TrackID =576 : ParentID=559 : TrackStatus=1
+TrackID =483 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.2502 29.2574 -3.55418 keV
-Vertex : 0.0808863 0.28357 2.06243 m    Global time : 6.95358 ns 
+Original momentum : 27.8101 16.7266 0.822347 keV
+Vertex : -0.0743823 0.353161 -2.14203 m    Global time : 7.24579 ns 
   Current trajectory has 2 points.
-Point[0] Position= (80.8863,283.57,2062.43)
-Point[1] Position= (80.902,283.596,2062.43)
+Point[0] Position= (-74.3823,353.161,-2142.03)
+Point[1] Position= (-74.3616,353.173,-2142.03)
 
-TrackID =575 : ParentID=559 : TrackStatus=1
+TrackID =482 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -87.5476 -62.7799 23.9802 keV
-Vertex : 0.0654218 0.229215 1.66761 m    Global time : 5.62239 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (65.4218,229.215,1667.61)
-Point[1] Position= (64.3333,228.435,1667.91)
-Point[2] Position= (63.7937,228.222,1667.79)
-Point[3] Position= (63.8557,228.27,1667.74)
+Original momentum : -26.6145 19.1462 2.97629 keV
+Vertex : -0.0741135 0.35179 -2.13378 m    Global time : 7.21789 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-74.1135,351.79,-2133.78)
+Point[1] Position= (-74.1339,351.804,-2133.78)
 
-TrackID =574 : ParentID=559 : TrackStatus=1
+TrackID =481 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -72.9197 41.4271 4.0834 keV
-Vertex : 0.0639251 0.22396 1.62941 m    Global time : 5.49361 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (63.9251,223.96,1629.41)
-Point[1] Position= (63.4055,224.255,1629.44)
-Point[2] Position= (63.4409,224.183,1629.37)
+Original momentum : 35.0076 22.3035 0.821643 keV
+Vertex : -0.07178 0.340028 -2.06293 m    Global time : 6.97819 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-71.78,340.028,-2062.93)
+Point[1] Position= (-71.7353,340.057,-2062.93)
 
-TrackID =573 : ParentID=559 : TrackStatus=1
+TrackID =480 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 50.7703 -32.2702 6.05178 keV
-Vertex : 0.0612 0.214391 1.55987 m    Global time : 5.25913 ns 
+Original momentum : 41.7152 16.28 -0.666296 keV
+Vertex : -0.0710643 0.336454 -2.04135 m    Global time : 6.90519 ns 
   Current trajectory has 2 points.
-Point[0] Position= (61.2,214.391,1559.87)
-Point[1] Position= (61.3583,214.29,1559.89)
+Point[0] Position= (-71.0643,336.454,-2041.35)
+Point[1] Position= (-71.001,336.479,-2041.35)
 
-TrackID =572 : ParentID=559 : TrackStatus=1
+TrackID =479 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.5367 -29.6054 6.62561 keV
-Vertex : 0.0571421 0.200154 1.45637 m    Global time : 4.9102 ns 
+Original momentum : -61.9933 24.7673 1.74308 keV
+Vertex : -0.0700009 0.331081 -2.00897 m    Global time : 6.79565 ns 
   Current trajectory has 2 points.
-Point[0] Position= (57.1421,200.154,1456.37)
-Point[1] Position= (57.1126,200.12,1456.38)
+Point[0] Position= (-70.0009,331.081,-2008.97)
+Point[1] Position= (-70.2483,331.18,-2008.96)
 
-TrackID =571 : ParentID=559 : TrackStatus=1
+TrackID =478 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 54.4731 -68.3862 14.9956 keV
-Vertex : 0.053618 0.187789 1.36647 m    Global time : 4.60708 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (53.618,187.789,1366.47)
-Point[1] Position= (54.0614,187.232,1366.59)
-Point[2] Position= (54.0471,187.245,1366.59)
+Original momentum : -94.0597 -55.7988 -18.1514 keV
+Vertex : -0.0685675 0.323944 -1.96604 m    Global time : 6.65039 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (-68.5675,323.944,-1966.04)
+Point[1] Position= (-69.7452,323.245,-1966.27)
+Point[2] Position= (-69.5293,323.519,-1966.23)
+Point[3] Position= (-69.176,323.599,-1965.92)
+Point[4] Position= (-69.1762,323.599,-1965.92)
 
-TrackID =570 : ParentID=559 : TrackStatus=1
+TrackID =723 : ParentID=478 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.3742 -9.06112 4.30204 keV
-Vertex : 0.0504277 0.176591 1.28504 m    Global time : 4.33252 ns 
+Original momentum : 0.441734 31.7528 -8.43843 keV
+Vertex : -0.0695293 0.323519 -1.96623 m    Global time : 6.67904 ns 
   Current trajectory has 2 points.
-Point[0] Position= (50.4277,176.591,1285.04)
-Point[1] Position= (50.3834,176.581,1285.04)
+Point[0] Position= (-69.5293,323.519,-1966.23)
+Point[1] Position= (-69.529,323.543,-1966.24)
 
-TrackID =569 : ParentID=559 : TrackStatus=1
+TrackID =477 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.8645 -17.1541 4.82023 keV
-Vertex : 0.0460415 0.161181 1.17296 m    Global time : 3.95465 ns 
+Original momentum : -27.9205 -26.973 -5.06273 keV
+Vertex : -0.0642296 0.30233 -1.83568 m    Global time : 6.2094 ns 
   Current trajectory has 2 points.
-Point[0] Position= (46.0415,161.181,1172.96)
-Point[1] Position= (46.0134,161.166,1172.96)
+Point[0] Position= (-64.2296,302.33,-1835.68)
+Point[1] Position= (-64.2609,302.3,-1835.69)
 
-TrackID =568 : ParentID=559 : TrackStatus=1
+TrackID =476 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.7176 3.46286 -0.496833 keV
-Vertex : 0.0435458 0.152403 1.10912 m    Global time : 3.73941 ns 
+Original momentum : -12.5366 32.7487 4.61087 keV
+Vertex : -0.0640862 0.301617 -1.83139 m    Global time : 6.19486 ns 
   Current trajectory has 2 points.
-Point[0] Position= (43.5458,152.403,1109.12)
-Point[1] Position= (43.5886,152.406,1109.12)
+Point[0] Position= (-64.0862,301.617,-1831.39)
+Point[1] Position= (-64.0975,301.647,-1831.38)
 
-TrackID =567 : ParentID=559 : TrackStatus=1
+TrackID =475 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.2489 -27.0468 4.11185 keV
-Vertex : 0.0432334 0.151304 1.10113 m    Global time : 3.71247 ns 
+Original momentum : -38.1212 -28.1778 -5.72021 keV
+Vertex : -0.06119 0.287003 -1.74364 m    Global time : 5.89797 ns 
   Current trajectory has 2 points.
-Point[0] Position= (43.2334,151.304,1101.13)
-Point[1] Position= (43.2609,151.276,1101.13)
+Point[0] Position= (-61.19,287.003,-1743.64)
+Point[1] Position= (-61.2571,286.954,-1743.65)
 
-TrackID =566 : ParentID=559 : TrackStatus=1
+TrackID =474 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.5188 6.95849 1.41052 keV
-Vertex : 0.0392829 0.137421 1.00012 m    Global time : 3.37193 ns 
+Original momentum : 24.8855 -51.9218 -12.9174 keV
+Vertex : -0.0605445 0.283703 -1.72386 m    Global time : 5.83107 ns 
   Current trajectory has 2 points.
-Point[0] Position= (39.2829,137.421,1000.12)
-Point[1] Position= (39.2573,137.427,1000.12)
+Point[0] Position= (-60.5445,283.703,-1723.86)
+Point[1] Position= (-60.4714,283.55,-1723.9)
 
-TrackID =565 : ParentID=559 : TrackStatus=1
+TrackID =473 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 5.59118 -31.4512 5.13738 keV
-Vertex : 3.67852 12.8669 93.6442 cm   Global time : 3.15723 ns 
+Original momentum : 32.4513 -50.3265 -13.1926 keV
+Vertex : -0.0571096 0.265987 -1.61786 m    Global time : 5.4724 ns 
   Current trajectory has 2 points.
-Point[0] Position= (36.7852,128.669,936.442)
-Point[1] Position= (36.7893,128.646,936.446)
+Point[0] Position= (-57.1096,265.987,-1617.86)
+Point[1] Position= (-57.0048,265.825,-1617.9)
 
-TrackID =564 : ParentID=559 : TrackStatus=1
+TrackID =472 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -82.1418 -33.2288 15.7367 keV
-Vertex : 3.46362 12.1146 88.1694 cm   Global time : 2.97264 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (34.6362,121.146,881.694)
-Point[1] Position= (33.9447,120.866,881.826)
-Point[2] Position= (33.8846,120.742,881.783)
+Original momentum : -48.4747 -12.5805 -2.9921 keV
+Vertex : -0.0567407 0.264107 -1.6066 m    Global time : 5.43428 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-56.7407,264.107,-1606.6)
+Point[1] Position= (-56.8367,264.082,-1606.6)
 
-TrackID =563 : ParentID=559 : TrackStatus=1
+TrackID =471 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.81 45.785 -1.86699 keV
-Vertex : 2.52955 8.8457 64.3697 cm   Global time : 2.17024 ns 
+Original momentum : -26.0756 -20.7798 -3.71163 keV
+Vertex : -0.051808 0.239507 -1.45881 m    Global time : 4.93427 ns 
   Current trajectory has 2 points.
-Point[0] Position= (25.2955,88.457,643.697)
-Point[1] Position= (25.2094,88.5771,643.693)
+Point[0] Position= (-51.808,239.507,-1458.81)
+Point[1] Position= (-51.8288,239.491,-1458.81)
 
-TrackID =562 : ParentID=559 : TrackStatus=1
+TrackID =470 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 57.537 22.5567 -1.59804 keV
-Vertex : 1.88753 6.60385 48.0501 cm   Global time : 1.62002 ns 
+Original momentum : 15.1598 42.1063 4.51023 keV
+Vertex : -0.0501155 0.231046 -1.40798 m    Global time : 4.76229 ns 
   Current trajectory has 2 points.
-Point[0] Position= (18.8753,66.0385,480.501)
-Point[1] Position= (19.0647,66.1128,480.496)
+Point[0] Position= (-50.1155,231.046,-1407.98)
+Point[1] Position= (-50.0923,231.111,-1407.98)
 
-TrackID =561 : ParentID=559 : TrackStatus=1
+TrackID =469 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.5544 -20.2491 2.828 keV
-Vertex : 0.139446 0.488027 3.55042 cm   Global time : 119.704 ps 
+Original momentum : 19.086 36.4824 3.76966 keV
+Vertex : -0.0407286 0.18304 -1.11962 m    Global time : 3.78669 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.39446,4.88027,35.5042)
-Point[1] Position= (1.41214,4.86569,35.5063)
+Point[0] Position= (-40.7286,183.04,-1119.62)
+Point[1] Position= (-40.7044,183.086,-1119.62)
 
-TrackID =560 : ParentID=559 : TrackStatus=1
+TrackID =468 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 39.9666 -46.9084 8.69527 keV
-Vertex : 21.073 73.741 536.443 um   Global time : 1.80864 ps 
+Original momentum : -7.89425 -40.8538 -8.34149 keV
+Vertex : -0.0401626 0.180138 -1.10224 m    Global time : 3.72787 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.021073,0.073741,0.536443)
-Point[1] Position= (0.154887,-0.0833151,0.565556)
+Point[0] Position= (-40.1626,180.138,-1102.24)
+Point[1] Position= (-40.1732,180.083,-1102.25)
 
-TrackID =558 : ParentID=57 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : 0.2538 -0.255448 3.8036 GeV
-Vertex : 1.67561e-295 2.37286e-295 1.99953e-293 fm   Global time : 8.63153e-305 ps 
+TrackID =467 : ParentID=369 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 45.0502 -21.483 -7.579 keV
+Vertex : -0.0398886 0.17875 -1.09392 m    Global time : 3.69971 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.67561e-307,2.37286e-307,1.99953e-305)
-Point[1] Position= (6.239e-05,-6.27951e-05,0.000935015)
+Point[0] Position= (-39.8886,178.75,-1093.92)
+Point[1] Position= (-39.7981,178.707,-1093.93)
 
-TrackID =56 : ParentID=45 : TrackStatus=1
-Particle name : unknown : rho+  PDG code : 213  Charge : 1
-Original momentum : -0.728762 0.0396097 10.1864 GeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+TrackID =466 : ParentID=369 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -67.6772 -45.2701 -11.6056 keV
+Vertex : -3.44994 15.3655 -94.0887 cm   Global time : 3.18213 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-34.4994,153.655,-940.887)
+Point[1] Position= (-34.8848,153.397,-940.954)
+Point[2] Position= (-34.9739,153.426,-941.062)
+
+TrackID =724 : ParentID=466 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 0.233433 -36.3642 -9.83228 keV
+Vertex : -3.48848 15.3397 -94.0954 cm   Global time : 3.19196 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (-6.58667e-307,9.6971e-309,1.99922e-305)
+Point[0] Position= (-34.8848,153.397,-940.954)
+Point[1] Position= (-34.8846,153.36,-940.964)
 
-TrackID =652 : ParentID=56 : TrackStatus=1
-Particle name : pi+  PDG code : 211  Charge : 1
-Original momentum : -0.366575 0.370196 7.28053 GeV
-Vertex : -6.58667e-295 9.6971e-297 1.99922e-293 fm   Global time : 8.63072e-305 ps 
-  Current trajectory has 62 points.
-Point[0] Position= (-6.58667e-307,9.6971e-309,1.99922e-305)
-Point[1] Position= (-6.77091,6.84346,134.512)
-Point[2] Position= (-10.1012,10.2121,200.643)
-Point[3] Position= (-11.2361,11.3602,223.179)
-Point[4] Position= (-15.6877,15.8623,311.552)
-Point[5] Position= (-18.1813,18.3844,361.04)
-Point[6] Position= (-25.7575,26.0507,511.378)
-Point[7] Position= (-32.5631,32.9355,646.437)
-Point[8] Position= (-33.525,33.9081,665.527)
-Point[9] Position= (-39.4995,39.9466,784.091)
-Point[10] Position= (-40.4116,40.8679,802.188)
-Point[11] Position= (-46.2259,46.742,917.568)
-Point[12] Position= (-50.1747,50.7316,995.925)
-Point[13] Position= (-57.0232,57.6477,1131.78)
-Point[14] Position= (-67.3323,68.0535,1336.3)
-Point[15] Position= (-70.7095,71.4627,1403.33)
-Point[16] Position= (-72.4479,73.218,1437.85)
-Point[17] Position= (-77.3147,78.1323,1534.49)
-Point[18] Position= (-78.6577,79.4882,1561.16)
-Point[19] Position= (-81.4851,82.344,1617.32)
-Point[20] Position= (-88.2696,89.1987,1752.1)
-Point[21] Position= (-89.7972,90.7432,1782.46)
-Point[22] Position= (-95.4565,96.4682,1894.95)
-Point[23] Position= (-100.525,101.591,1995.67)
-Point[24] Position= (-117.739,118.974,2337.51)
-Point[25] Position= (-125.121,126.425,2483.97)
-Point[26] Position= (-130.03,131.376,2581.28)
-Point[27] Position= (-131.755,133.116,2615.47)
-Point[28] Position= (-147.383,148.869,2925.13)
-Point[29] Position= (-158.892,160.457,3153.05)
-Point[30] Position= (-164.097,165.701,3256.09)
-Point[31] Position= (-164.471,166.077,3263.49)
-Point[32] Position= (-165.182,166.793,3277.57)
-Point[33] Position= (-165.644,167.259,3286.73)
-Point[34] Position= (-168.754,170.393,3348.33)
-Point[35] Position= (-178.088,179.805,3533.23)
-Point[36] Position= (-179.162,180.889,3554.51)
-Point[37] Position= (-179.553,181.284,3562.25)
-Point[38] Position= (-183.446,185.216,3639.38)
-Point[39] Position= (-187.545,189.359,3720.61)
-Point[40] Position= (-187.8,189.617,3725.65)
-Point[41] Position= (-192.363,194.232,3816.11)
-Point[42] Position= (-192.842,194.716,3825.61)
-Point[43] Position= (-206.761,208.793,4101.48)
-Point[44] Position= (-207.855,209.9,4123.16)
-Point[45] Position= (-213.676,215.792,4238.58)
-Point[46] Position= (-214.076,216.196,4246.51)
-Point[47] Position= (-216.173,218.318,4288.08)
-Point[48] Position= (-217.209,219.365,4308.6)
-Point[49] Position= (-223.128,225.347,4425.93)
-Point[50] Position= (-228.742,231.02,4537.19)
-Point[51] Position= (-235.989,238.344,4680.77)
-Point[52] Position= (-236.477,238.838,4690.45)
-Point[53] Position= (-239.768,242.166,4755.65)
-Point[54] Position= (-253.506,256.068,5027.79)
-Point[55] Position= (-256.006,258.597,5077.28)
-Point[56] Position= (-268.341,271.08,5321.53)
-Point[57] Position= (-271.609,274.389,5386.23)
-Point[58] Position= (-286.459,289.412,5680.09)
-Point[59] Position= (-287.07,290.029,5692.17)
-Point[60] Position= (-296.28,299.328,5874.17)
-Point[61] Position= (-302.65,305.755,6000)
-
-TrackID =712 : ParentID=652 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.2452 -6.11706 -0.275546 keV
-Vertex : -0.29628 0.299328 5.87417 m    Global time : 19.648 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-296.28,299.328,5874.17)
-Point[1] Position= (-296.302,299.323,5874.17)
-
-TrackID =711 : ParentID=652 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.39706 -43.5892 4.47158 keV
-Vertex : -0.28707 0.290029 5.69217 m    Global time : 19.0393 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-287.07,290.029,5692.17)
-Point[1] Position= (-287.06,289.965,5692.18)
-
-TrackID =710 : ParentID=652 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.0943 13.3124 1.7976 keV
-Vertex : -0.286459 0.289412 5.68009 m    Global time : 18.9988 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-286.459,289.412,5680.09)
-Point[1] Position= (-286.438,289.422,5680.09)
-
-TrackID =709 : ParentID=652 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.7628 -20.397 5.1633 keV
-Vertex : -0.271609 0.274389 5.38623 m    Global time : 18.0159 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-271.609,274.389,5386.23)
-Point[1] Position= (-271.544,274.356,5386.24)
-
-TrackID =708 : ParentID=652 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -18.3292 33.6102 -1.20694 keV
-Vertex : -0.268341 0.27108 5.32153 m    Global time : 17.7995 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-268.341,271.08,5321.53)
-Point[1] Position= (-268.361,271.116,5321.53)
-
-TrackID =707 : ParentID=652 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -36.6962 16.7199 -1.11339 keV
-Vertex : -0.256006 0.258597 5.07728 m    Global time : 16.9825 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-256.006,258.597,5077.28)
-Point[1] Position= (-256.05,258.617,5077.28)
-
-TrackID =706 : ParentID=652 : TrackStatus=1
+TrackID =465 : ParentID=369 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -103.156 106.433 -0.307263 keV
+Vertex : -3.15364 14.0038 -85.7382 cm   Global time : 2.89973 ns 
+  Current trajectory has 7 points.
+Point[0] Position= (-31.5364,140.038,-857.382)
+Point[1] Position= (-33.5119,142.076,-857.388)
+Point[2] Position= (-35.5645,143.069,-857.131)
+Point[3] Position= (-36.038,143.242,-856.898)
+Point[4] Position= (-36.5486,143.466,-856.798)
+Point[5] Position= (-36.5472,143.527,-856.822)
+Point[6] Position= (-36.4182,143.943,-856.926)
+
+TrackID =727 : ParentID=465 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 45.9412 24.4589 3.73439 keV
-Vertex : -0.253506 0.256068 5.02779 m    Global time : 16.817 ns 
+Original momentum : -24.698 2.03908 -22.7344 keV
+Vertex : -3.65472 14.3527 -85.6822 cm   Global time : 2.98323 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-253.506,256.068,5027.79)
-Point[1] Position= (-253.406,256.121,5027.8)
+Point[0] Position= (-36.5472,143.527,-856.822)
+Point[1] Position= (-36.567,143.529,-856.84)
 
-TrackID =705 : ParentID=652 : TrackStatus=1
+TrackID =726 : ParentID=465 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.2742 -3.56148 -0.301979 keV
-Vertex : -0.239768 0.242166 4.75565 m    Global time : 15.9067 ns 
+Original momentum : 0.363289 16.4479 42.2156 keV
+Vertex : -3.65486 14.3466 -85.6798 cm   Global time : 2.98191 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-239.768,242.166,4755.65)
-Point[1] Position= (-239.81,242.162,4755.65)
+Point[0] Position= (-36.5486,143.466,-856.798)
+Point[1] Position= (-36.5481,143.492,-856.732)
 
-TrackID =704 : ParentID=652 : TrackStatus=1
+TrackID =725 : ParentID=465 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.2327 -30.9488 2.00226 keV
-Vertex : -0.236477 0.238838 4.69045 m    Global time : 15.6886 ns 
+Original momentum : -11.8903 -14.5819 -27.355 keV
+Vertex : -3.6038 14.3242 -85.6898 cm   Global time : 2.97216 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-236.477,238.838,4690.45)
-Point[1] Position= (-236.489,238.812,4690.45)
+Point[0] Position= (-36.038,143.242,-856.898)
+Point[1] Position= (-36.0473,143.231,-856.92)
 
-TrackID =703 : ParentID=652 : TrackStatus=1
+TrackID =464 : ParentID=369 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.434353 -44.2588 4.17217 keV
-Vertex : -0.235989 0.238344 4.68077 m    Global time : 15.6563 ns 
+Original momentum : -25.3601 29.2855 4.20079 keV
+Vertex : -2.46607 10.9094 -66.7652 cm   Global time : 2.25808 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-235.989,238.344,4680.77)
-Point[1] Position= (-235.989,238.278,4680.77)
+Point[0] Position= (-24.6607,109.094,-667.652)
+Point[1] Position= (-24.6888,109.126,-667.648)
 
-TrackID =702 : ParentID=652 : TrackStatus=1
+TrackID =728 : ParentID=533 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.9626 24.0575 -1.28551 keV
-Vertex : -0.228742 0.23102 4.53719 m    Global time : 15.176 ns 
+Original momentum : -20.6165 34.6444 -5.94068 keV
+Vertex : -19.1746 23.3542 22.349 cm   Global time : 2.50178 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-228.742,231.02,4537.19)
-Point[1] Position= (-228.757,231.038,4537.19)
+Point[0] Position= (-191.746,233.542,223.49)
+Point[1] Position= (-191.746,233.542,223.49)
 
-TrackID =701 : ParentID=652 : TrackStatus=1
+TrackID =730 : ParentID=532 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -16.6805 -101.783 14.8948 keV
-Vertex : -0.223128 0.225347 4.42593 m    Global time : 14.8039 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-223.128,225.347,4425.93)
-Point[1] Position= (-223.317,224.196,4426.1)
-Point[2] Position= (-223.496,224.138,4426.42)
+Original momentum : 308.264 47.9772 -135.742 keV
+Vertex : 13.5635 32.3737 -24.6171 cm   Global time : 1.73139 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (135.635,323.737,-246.171)
+Point[1] Position= (135.659,323.741,-246.182)
 
-TrackID =700 : ParentID=652 : TrackStatus=1
+TrackID =729 : ParentID=532 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.3279 34.8652 1.52483 keV
-Vertex : -0.217209 0.219365 4.3086 m    Global time : 14.4114 ns 
+Original momentum : -53.7665 -217.692 -195.825 keV
+Vertex : 6.75205 24.2289 -17.0232 cm   Global time : 1.29597 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-217.209,219.365,4308.6)
-Point[1] Position= (-217.168,219.417,4308.61)
+Point[0] Position= (67.5205,242.289,-170.232)
+Point[1] Position= (67.5173,242.276,-170.243)
 
-TrackID =699 : ParentID=652 : TrackStatus=1
+TrackID =560 : ParentID=59 : TrackStatus=1
+Particle name : pi+  PDG code : 211  Charge : 1
+Original momentum : 5.79927 -7.68826 132.999 MeV
+Vertex : -1.86975e-295 -1.58915e-296 1.33918e-293 fm   Global time : 6.41545e-305 ps 
+  Current trajectory has 147 points.
+Point[0] Position= (-1.86975e-307,-1.58915e-308,1.33918e-305)
+Point[1] Position= (0.0219157,-0.0290543,0.50261)
+Point[2] Position= (1.07093,-1.40926,24.4191)
+Point[3] Position= (4.00795,-5.45755,94.158)
+Point[4] Position= (4.982,-6.76314,117.184)
+Point[5] Position= (5.22018,-7.09185,122.876)
+Point[6] Position= (6.03721,-8.2429,142.828)
+Point[7] Position= (9.22018,-12.7666,220.87)
+Point[8] Position= (9.53808,-13.2436,228.431)
+Point[9] Position= (9.87608,-13.7543,236.465)
+Point[10] Position= (12.9511,-18.3011,308.44)
+Point[11] Position= (15.7619,-22.4328,372.531)
+Point[12] Position= (21.9741,-31.4184,516.25)
+Point[13] Position= (23.3241,-33.293,546.776)
+Point[14] Position= (25.2502,-35.9305,589.963)
+Point[15] Position= (30.0523,-42.6617,700.866)
+Point[16] Position= (30.7048,-43.5638,715.992)
+Point[17] Position= (30.8643,-43.7807,719.63)
+Point[18] Position= (31.9739,-45.2837,744.944)
+Point[19] Position= (34.0526,-48.1562,793.318)
+Point[20] Position= (34.4208,-48.6912,802.36)
+Point[21] Position= (36.0151,-51.0625,842.358)
+Point[22] Position= (37.2586,-52.9737,874.256)
+Point[23] Position= (37.6143,-53.5272,883.576)
+Point[24] Position= (38.0868,-54.2554,895.952)
+Point[25] Position= (38.1484,-54.3514,897.589)
+Point[26] Position= (41.5861,-60.0856,993.577)
+Point[27] Position= (41.6883,-60.2558,996.541)
+Point[28] Position= (42.7003,-61.8442,1025.42)
+Point[29] Position= (45.3069,-66.1411,1102.28)
+Point[30] Position= (47.0074,-69.0163,1153.77)
+Point[31] Position= (48.4041,-71.4214,1196.26)
+Point[32] Position= (50.7636,-75.3806,1267.5)
+Point[33] Position= (52.4338,-78.2531,1318.71)
+Point[34] Position= (53.9495,-81.0675,1366.57)
+Point[35] Position= (55.4181,-83.9133,1412.87)
+Point[36] Position= (55.7215,-84.5096,1422.39)
+Point[37] Position= (55.9117,-84.8819,1428.29)
+Point[38] Position= (57.0929,-87.2353,1466.02)
+Point[39] Position= (57.7043,-88.4424,1485.25)
+Point[40] Position= (58.6206,-90.217,1513.63)
+Point[41] Position= (59.477,-91.915,1541.06)
+Point[42] Position= (61.6844,-96.4823,1614.93)
+Point[43] Position= (63.4551,-100.277,1677.37)
+Point[44] Position= (64.5144,-102.592,1714.75)
+Point[45] Position= (65.8448,-105.432,1760.65)
+Point[46] Position= (66.295,-106.409,1776.24)
+Point[47] Position= (66.3536,-106.535,1778.23)
+Point[48] Position= (66.9401,-107.812,1798.43)
+Point[49] Position= (66.9583,-107.851,1799.05)
+Point[50] Position= (67.5603,-109.107,1819.06)
+Point[51] Position= (71.6459,-118.42,1979.87)
+Point[52] Position= (72.9769,-121.305,2030.6)
+Point[53] Position= (73.0954,-121.557,2035.06)
+Point[54] Position= (73.0974,-121.562,2035.13)
+Point[55] Position= (73.3891,-122.187,2046.05)
+Point[56] Position= (73.9761,-123.472,2068.2)
+Point[57] Position= (73.9983,-123.523,2069.05)
+Point[58] Position= (76.1328,-128.427,2153.03)
+Point[59] Position= (77.483,-131.9,2211.36)
+Point[60] Position= (78.1065,-133.444,2237.15)
+Point[61] Position= (78.408,-134.162,2249.21)
+Point[62] Position= (79.1839,-135.941,2279.17)
+Point[63] Position= (79.666,-137.013,2297.6)
+Point[64] Position= (80.0089,-137.778,2310.86)
+Point[65] Position= (80.269,-138.357,2320.9)
+Point[66] Position= (83.5196,-145.283,2442.75)
+Point[67] Position= (84.4555,-147.321,2474.17)
+Point[68] Position= (84.8933,-148.316,2489.01)
+Point[69] Position= (84.9992,-148.556,2492.58)
+Point[70] Position= (86.5021,-152.075,2544.7)
+Point[71] Position= (87.1116,-153.517,2565.89)
+Point[72] Position= (87.4403,-154.257,2576.74)
+Point[73] Position= (87.9247,-155.341,2592.57)
+Point[74] Position= (91.1253,-162.868,2699.08)
+Point[75] Position= (91.6686,-164.126,2717.01)
+Point[76] Position= (92.9247,-166.957,2757.34)
+Point[77] Position= (93.8635,-169.107,2788.22)
+Point[78] Position= (100.309,-183.367,2997.36)
+Point[79] Position= (100.725,-184.277,3010.64)
+Point[80] Position= (101.471,-185.947,3035.04)
+Point[81] Position= (102.328,-187.913,3063.76)
+Point[82] Position= (103.195,-189.944,3093.34)
+Point[83] Position= (103.84,-191.427,3115.35)
+Point[84] Position= (104.165,-192.166,3126.35)
+Point[85] Position= (107.951,-200.725,3249.54)
+Point[86] Position= (108.165,-201.209,3256.5)
+Point[87] Position= (109.02,-203.141,3284.28)
+Point[88] Position= (109.236,-203.622,3291.25)
+Point[89] Position= (110.982,-207.464,3346.63)
+Point[90] Position= (111.701,-209.074,3369.89)
+Point[91] Position= (112.424,-210.736,3393.9)
+Point[92] Position= (113.761,-213.857,3438.26)
+Point[93] Position= (114.892,-216.415,3474.72)
+Point[94] Position= (117.125,-221.456,3545.9)
+Point[95] Position= (118.386,-224.38,3587.34)
+Point[96] Position= (118.515,-224.68,3591.63)
+Point[97] Position= (118.821,-225.389,3601.73)
+Point[98] Position= (121.052,-230.351,3672.27)
+Point[99] Position= (122.273,-233.066,3711.35)
+Point[100] Position= (123.218,-235.059,3740.21)
+Point[101] Position= (124.337,-237.319,3772.91)
+Point[102] Position= (126.267,-241.374,3830.72)
+Point[103] Position= (129.858,-249.031,3937.42)
+Point[104] Position= (131.501,-252.428,3984.38)
+Point[105] Position= (132.202,-253.82,4003.95)
+Point[106] Position= (133.646,-256.612,4044.07)
+Point[107] Position= (135.568,-260.36,4098.73)
+Point[108] Position= (137.456,-264.133,4153.7)
+Point[109] Position= (142.681,-276.134,4324.49)
+Point[110] Position= (142.736,-276.266,4326.33)
+Point[111] Position= (145.472,-282.716,4415.98)
+Point[112] Position= (147.596,-287.997,4490.31)
+Point[113] Position= (148.111,-289.361,4509.3)
+Point[114] Position= (149.041,-291.865,4543.94)
+Point[115] Position= (149.047,-291.883,4544.19)
+Point[116] Position= (151.65,-299.133,4644.75)
+Point[117] Position= (152.052,-300.248,4660.58)
+Point[118] Position= (154.182,-305.976,4741.74)
+Point[119] Position= (156.752,-312.552,4833.59)
+Point[120] Position= (157.239,-313.704,4849.86)
+Point[121] Position= (160.48,-321.213,4956.83)
+Point[122] Position= (160.761,-321.825,4965.54)
+Point[123] Position= (163.923,-328.694,5062.48)
+Point[124] Position= (164.309,-329.528,5074.48)
+Point[125] Position= (164.757,-330.487,5088.25)
+Point[126] Position= (165.827,-332.762,5121.38)
+Point[127] Position= (166.081,-333.288,5129.09)
+Point[128] Position= (167.007,-335.226,5157.57)
+Point[129] Position= (169.484,-340.287,5231.91)
+Point[130] Position= (169.638,-340.605,5236.64)
+Point[131] Position= (171.564,-344.67,5296.38)
+Point[132] Position= (175.765,-354.179,5431.98)
+Point[133] Position= (175.873,-354.437,5435.63)
+Point[134] Position= (177.611,-358.485,5492.65)
+Point[135] Position= (178.444,-360.411,5519.74)
+Point[136] Position= (179.084,-361.833,5540.01)
+Point[137] Position= (179.096,-361.858,5540.37)
+Point[138] Position= (179.485,-362.716,5552.58)
+Point[139] Position= (183.039,-370.306,5662.02)
+Point[140] Position= (184.871,-374.168,5718.38)
+Point[141] Position= (185.376,-375.211,5733.4)
+Point[142] Position= (186.594,-377.736,5769.38)
+Point[143] Position= (192.615,-389.465,5939.03)
+Point[144] Position= (193.914,-391.901,5974.88)
+Point[145] Position= (194.413,-392.817,5988.36)
+Point[146] Position= (194.845,-393.613,6000)
+
+TrackID =854 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -15.0821 -31.973 0.190787 keV
+Vertex : 0.193914 -0.391901 5.97488 m    Global time : 29.1601 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (193.914,-391.901,5974.88)
+Point[1] Position= (193.9,-391.929,5974.88)
+
+TrackID =853 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 16.1487 40.1421 4.83154 keV
+Vertex : 0.192615 -0.389465 5.93903 m    Global time : 28.9841 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (192.615,-389.465,5939.03)
+Point[1] Position= (192.638,-389.408,5939.04)
+
+TrackID =852 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -31.9039 11.7742 3.58886 keV
+Vertex : 0.186594 -0.377736 5.76938 m    Global time : 28.1517 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (186.594,-377.736,5769.38)
+Point[1] Position= (186.568,-377.726,5769.39)
+
+TrackID =851 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 16.2836 -39.0437 -0.650272 keV
+Vertex : 0.183039 -0.370306 5.66202 m    Global time : 27.625 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (183.039,-370.306,5662.02)
+Point[1] Position= (183.06,-370.358,5662.02)
+
+TrackID =850 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 12.8976 34.5663 3.97912 keV
+Vertex : 0.179485 -0.362716 5.55258 m    Global time : 27.0882 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (179.485,-362.716,5552.58)
+Point[1] Position= (179.498,-362.682,5552.59)
+
+TrackID =849 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 26.1295 19.3623 2.05187 keV
+Vertex : 0.179084 -0.361833 5.54001 m    Global time : 27.0266 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (179.084,-361.833,5540.01)
+Point[1] Position= (179.104,-361.819,5540.01)
+
+TrackID =848 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -51.0333 -26.8511 4.49468 keV
+Vertex : 0.178444 -0.360411 5.51974 m    Global time : 26.9271 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (178.444,-360.411,5519.74)
+Point[1] Position= (178.301,-360.486,5519.75)
+
+TrackID =847 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.52582 182.377 22.7049 keV
-Vertex : -0.216173 0.218318 4.28808 m    Global time : 14.3428 ns 
-  Current trajectory has 8 points.
-Point[0] Position= (-216.173,218.318,4288.08)
-Point[1] Position= (-216.229,222.337,4288.58)
-Point[2] Position= (-218.855,223.911,4290.43)
-Point[3] Position= (-217.838,225.727,4288.59)
-Point[4] Position= (-218.988,227.311,4288.09)
-Point[5] Position= (-220.109,227.034,4287.24)
-Point[6] Position= (-220.522,227.286,4287.07)
-Point[7] Position= (-220.653,227.25,4287.06)
+Original momentum : 53.2927 -11.5157 1.79786 keV
+Vertex : 0.177611 -0.358485 5.49265 m    Global time : 26.7943 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (177.611,-358.485,5492.65)
+Point[1] Position= (177.74,-358.513,5492.66)
 
-TrackID =713 : ParentID=699 : TrackStatus=1
+TrackID =846 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.9342 20.3936 25.8165 keV
-Vertex : -0.216229 0.222337 4.28858 m    Global time : 14.3827 ns 
+Original momentum : -37.3604 -5.01073 2.81246 keV
+Vertex : 0.175873 -0.354437 5.43563 m    Global time : 26.5147 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-216.229,222.337,4288.58)
-Point[1] Position= (-216.184,222.367,4288.62)
+Point[0] Position= (175.873,-354.437,5435.63)
+Point[1] Position= (175.835,-354.442,5435.64)
 
-TrackID =698 : ParentID=652 : TrackStatus=1
+TrackID =845 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 69.4891 -2.53926 8.42577 keV
-Vertex : -0.214076 0.216196 4.24651 m    Global time : 14.2037 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-214.076,216.196,4246.51)
-Point[1] Position= (-213.763,216.185,4246.55)
+Original momentum : 121.04 -49.4105 17.4961 keV
+Vertex : 0.175765 -0.354179 5.43198 m    Global time : 26.4967 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (175.765,-354.179,5431.98)
+Point[1] Position= (177.719,-354.977,5432.26)
+Point[2] Position= (178.684,-355.042,5431)
+Point[3] Position= (179.542,-355.193,5431.3)
+Point[4] Position= (179.28,-355.457,5431.43)
 
-TrackID =697 : ParentID=652 : TrackStatus=1
+TrackID =844 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 46.5224 13.8024 3.96216 keV
-Vertex : -0.213676 0.215792 4.23858 m    Global time : 14.1772 ns 
+Original momentum : 46.173 -3.10095 1.37997 keV
+Vertex : 0.171564 -0.34467 5.29638 m    Global time : 25.832 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-213.676,215.792,4238.58)
-Point[1] Position= (-213.591,215.817,4238.59)
+Point[0] Position= (171.564,-344.67,5296.38)
+Point[1] Position= (171.639,-344.675,5296.38)
 
-TrackID =696 : ParentID=652 : TrackStatus=1
+TrackID =843 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 50.6733 -34.8536 8.09686 keV
-Vertex : -0.207855 0.2099 4.12316 m    Global time : 13.7912 ns 
+Original momentum : 11.9202 -40.4749 -0.536533 keV
+Vertex : 0.169638 -0.340605 5.23664 m    Global time : 25.5392 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-207.855,209.9,4123.16)
-Point[1] Position= (-207.686,209.784,4123.19)
+Point[0] Position= (169.638,-340.605,5236.64)
+Point[1] Position= (169.654,-340.659,5236.64)
 
-TrackID =695 : ParentID=652 : TrackStatus=1
+TrackID =842 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.041 -29.3085 1.7238 keV
-Vertex : -0.206761 0.208793 4.10148 m    Global time : 13.7186 ns 
+Original momentum : 47.8113 21.407 3.81519 keV
+Vertex : 0.169484 -0.340287 5.23191 m    Global time : 25.516 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-206.761,208.793,4101.48)
-Point[1] Position= (-206.779,208.767,4101.48)
+Point[0] Position= (169.484,-340.287,5231.91)
+Point[1] Position= (169.589,-340.24,5231.92)
 
-TrackID =694 : ParentID=652 : TrackStatus=1
+TrackID =841 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.5546 -27.6684 1.53179 keV
-Vertex : -0.192842 0.194716 3.82561 m    Global time : 12.7959 ns 
+Original momentum : 30.7377 22.8171 2.65253 keV
+Vertex : 0.167007 -0.335226 5.15757 m    Global time : 25.1517 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-192.842,194.716,3825.61)
-Point[1] Position= (-192.861,194.692,3825.61)
+Point[0] Position= (167.007,-335.226,5157.57)
+Point[1] Position= (167.04,-335.202,5157.58)
 
-TrackID =693 : ParentID=652 : TrackStatus=1
+TrackID =840 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.0434 26.0692 -1.30078 keV
-Vertex : -0.192363 0.194232 3.81611 m    Global time : 12.7641 ns 
+Original momentum : 49.715 -5.34443 1.57815 keV
+Vertex : 0.166081 -0.333288 5.12909 m    Global time : 25.0121 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-192.363,194.232,3816.11)
-Point[1] Position= (-192.396,194.261,3816.11)
+Point[0] Position= (166.081,-333.288,5129.09)
+Point[1] Position= (166.179,-333.299,5129.09)
 
-TrackID =692 : ParentID=652 : TrackStatus=1
+TrackID =839 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.0393 38.4988 0.717626 keV
-Vertex : -0.1878 0.189617 3.72565 m    Global time : 12.4616 ns 
+Original momentum : -43.8822 0.709053 4.2391 keV
+Vertex : 0.165827 -0.332762 5.12138 m    Global time : 24.9744 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-187.8,189.617,3725.65)
-Point[1] Position= (-187.775,189.669,3725.65)
+Point[0] Position= (165.827,-332.762,5121.38)
+Point[1] Position= (165.763,-332.761,5121.39)
 
-TrackID =691 : ParentID=652 : TrackStatus=1
+TrackID =838 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -60.5421 0.101132 0.523933 keV
-Vertex : -0.187545 0.189359 3.72061 m    Global time : 12.4447 ns 
+Original momentum : -38.4563 -43.2047 3.04943 keV
+Vertex : 0.164757 -0.330487 5.08825 m    Global time : 24.812 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-187.545,189.359,3720.61)
-Point[1] Position= (-187.735,189.36,3720.61)
+Point[0] Position= (164.757,-330.487,5088.25)
+Point[1] Position= (164.649,-330.609,5088.26)
 
-TrackID =690 : ParentID=652 : TrackStatus=1
+TrackID =837 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.1989 -43.4048 3.60115 keV
-Vertex : -0.183446 0.185216 3.63938 m    Global time : 12.173 ns 
+Original momentum : -23.901 73.8373 14.8377 keV
+Vertex : 0.164309 -0.329528 5.07448 m    Global time : 24.7445 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-183.446,185.216,3639.38)
-Point[1] Position= (-183.465,185.148,3639.39)
+Point[0] Position= (164.309,-329.528,5074.48)
+Point[1] Position= (164.163,-329.077,5074.57)
 
-TrackID =689 : ParentID=652 : TrackStatus=1
+TrackID =836 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.5486 -21.6291 1.12475 keV
-Vertex : -0.179553 0.181284 3.56225 m    Global time : 11.915 ns 
+Original momentum : 37.3145 -11.4471 0.181875 keV
+Vertex : 0.163923 -0.328694 5.06248 m    Global time : 24.6857 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-179.553,181.284,3562.25)
-Point[1] Position= (-179.619,181.249,3562.26)
+Point[0] Position= (163.923,-328.694,5062.48)
+Point[1] Position= (163.965,-328.707,5062.48)
 
-TrackID =688 : ParentID=652 : TrackStatus=1
+TrackID =835 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.6835 -8.02362 -0.0813845 keV
-Vertex : -0.179162 0.180889 3.55451 m    Global time : 11.8891 ns 
+Original momentum : -44.0631 70.2379 16.5804 keV
+Vertex : 0.160761 -0.321825 4.96554 m    Global time : 24.2107 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-179.162,180.889,3554.51)
-Point[1] Position= (-179.197,180.881,3554.51)
+Point[0] Position= (160.761,-321.825,4965.54)
+Point[1] Position= (160.441,-321.316,4965.66)
 
-TrackID =687 : ParentID=652 : TrackStatus=1
+TrackID =834 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.2464 -13.9494 3.56006 keV
-Vertex : -0.178088 0.179805 3.53323 m    Global time : 11.8179 ns 
+Original momentum : 25.8288 27.2164 3.10698 keV
+Vertex : 0.16048 -0.321213 4.95683 m    Global time : 24.168 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-178.088,179.805,3533.23)
-Point[1] Position= (-178.059,179.793,3533.23)
+Point[0] Position= (160.48,-321.213,4956.83)
+Point[1] Position= (160.507,-321.185,4956.83)
 
-TrackID =686 : ParentID=652 : TrackStatus=1
+TrackID =833 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -42.645 2.27198 -0.482163 keV
-Vertex : -0.168754 0.170393 3.34833 m    Global time : 11.1995 ns 
+Original momentum : -4.20494 -62.3395 1.3331 keV
+Vertex : 0.157239 -0.313704 4.84986 m    Global time : 23.6441 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-168.754,170.393,3348.33)
-Point[1] Position= (-168.812,170.396,3348.33)
+Point[0] Position= (157.239,-313.704,4849.86)
+Point[1] Position= (157.225,-313.915,4849.86)
 
-TrackID =685 : ParentID=652 : TrackStatus=1
+TrackID =832 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.4686 23.3517 2.61963 keV
-Vertex : -0.165644 0.167259 3.28673 m    Global time : 10.9934 ns 
+Original momentum : -61.8949 31.8691 11.0628 keV
+Vertex : 0.154182 -0.305976 4.74174 m    Global time : 23.1145 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-165.644,167.259,3286.73)
-Point[1] Position= (-165.589,167.293,3286.73)
+Point[0] Position= (154.182,-305.976,4741.74)
+Point[1] Position= (153.899,-305.83,4741.79)
 
-TrackID =684 : ParentID=652 : TrackStatus=1
+TrackID =831 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.8831 42.913 1.19526 keV
-Vertex : -0.165182 0.166793 3.27757 m    Global time : 10.9628 ns 
+Original momentum : -2.0614 -34.1534 -0.671845 keV
+Vertex : 0.152052 -0.300248 4.66058 m    Global time : 22.7171 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-165.182,166.793,3277.57)
-Point[1] Position= (-165.142,166.87,3277.57)
+Point[0] Position= (152.052,-300.248,4660.58)
+Point[1] Position= (152.051,-300.277,4660.58)
 
-TrackID =683 : ParentID=652 : TrackStatus=1
+TrackID =830 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.9821 119.253 8.74543 keV
-Vertex : -0.164471 0.166077 3.26349 m    Global time : 10.9157 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (-164.471,166.077,3263.49)
-Point[1] Position= (-164.258,167.769,3263.61)
-Point[2] Position= (-164.472,168.493,3263.88)
-Point[3] Position= (-164.098,168.793,3264.41)
-Point[4] Position= (-164.087,168.757,3264.46)
+Original momentum : 34.1798 -6.7348 0.34716 keV
+Vertex : 0.149047 -0.291883 4.54419 m    Global time : 22.1473 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (149.047,-291.883,4544.19)
+Point[1] Position= (149.077,-291.889,4544.19)
 
-TrackID =714 : ParentID=683 : TrackStatus=1
+TrackID =829 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.2695 -9.11558 26.362 keV
-Vertex : -0.164472 0.168493 3.26388 m    Global time : 10.954 ns 
+Original momentum : -10.4105 73.4253 13.7265 keV
+Vertex : 0.149041 -0.291865 4.54394 m    Global time : 22.1461 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-164.472,168.493,3263.88)
-Point[1] Position= (-164.508,168.482,3263.91)
+Point[0] Position= (149.041,-291.865,4543.94)
+Point[1] Position= (148.984,-291.467,4544.02)
 
-TrackID =682 : ParentID=652 : TrackStatus=1
+TrackID =828 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.0131 -33.7653 2.22168 keV
-Vertex : -0.164097 0.165701 3.25609 m    Global time : 10.891 ns 
+Original momentum : -38.9608 54.8814 11.6967 keV
+Vertex : 0.148111 -0.289361 4.5093 m    Global time : 21.9764 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-164.097,165.701,3256.09)
-Point[1] Position= (-164.12,165.662,3256.1)
+Point[0] Position= (148.111,-289.361,4509.3)
+Point[1] Position= (147.947,-289.129,4509.35)
 
-TrackID =681 : ParentID=652 : TrackStatus=1
+TrackID =827 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 79.9753 40.5188 9.90008 keV
-Vertex : -0.158892 0.160457 3.15305 m    Global time : 10.5463 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-158.892,160.457,3153.05)
-Point[1] Position= (-158.272,160.771,3153.13)
-Point[2] Position= (-158.257,160.717,3153.19)
+Original momentum : 28.7021 46.0604 6.79796 keV
+Vertex : 0.147596 -0.287997 4.49031 m    Global time : 21.8835 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (147.596,-287.997,4490.31)
+Point[1] Position= (147.666,-287.884,4490.33)
 
-TrackID =715 : ParentID=681 : TrackStatus=1
+TrackID =826 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.0087 -28.5892 -27.275 keV
-Vertex : -0.158272 0.160771 3.15313 m    Global time : 10.5597 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-158.272,160.771,3153.13)
-Point[1] Position= (-158.25,160.732,3153.09)
+Original momentum : -31.9363 119.925 32.8195 keV
+Vertex : 0.145472 -0.282716 4.41598 m    Global time : 21.5196 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (145.472,-282.716,4415.98)
+Point[1] Position= (144.976,-280.853,4416.49)
+Point[2] Position= (145.118,-279.886,4415.98)
+Point[3] Position= (145.142,-279.838,4415.67)
 
-TrackID =680 : ParentID=652 : TrackStatus=1
+TrackID =825 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 39.1909 40.7701 3.04332 keV
-Vertex : -0.147383 0.148869 2.92513 m    Global time : 9.78397 ns 
+Original momentum : 1.98324 -33.601 -0.853889 keV
+Vertex : 0.142736 -0.276266 4.32633 m    Global time : 21.0808 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-147.383,148.869,2925.13)
-Point[1] Position= (-147.279,148.977,2925.14)
+Point[0] Position= (142.736,-276.266,4326.33)
+Point[1] Position= (142.737,-276.293,4326.33)
 
-TrackID =679 : ParentID=652 : TrackStatus=1
+TrackID =824 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.0851 37.1552 -1.16637 keV
-Vertex : -0.131755 0.133116 2.61547 m    Global time : 8.74821 ns 
+Original momentum : -34.1901 7.26747 3.30444 keV
+Vertex : 0.142681 -0.276134 4.32449 m    Global time : 21.0718 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-131.755,133.116,2615.47)
-Point[1] Position= (-131.784,133.167,2615.47)
+Point[0] Position= (142.681,-276.134,4324.49)
+Point[1] Position= (142.651,-276.127,4324.49)
 
-TrackID =678 : ParentID=652 : TrackStatus=1
+TrackID =823 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -134.936 -105.707 27.3247 keV
-Vertex : -0.13003 0.131376 2.58128 m    Global time : 8.63386 ns 
-  Current trajectory has 7 points.
-Point[0] Position= (-130.03,131.376,2581.28)
-Point[1] Position= (-133.372,128.758,2581.96)
-Point[2] Position= (-134.835,126.868,2579.99)
-Point[3] Position= (-134.994,124.855,2579.9)
-Point[4] Position= (-134.864,123.353,2580.26)
-Point[5] Position= (-134.26,124.254,2580.28)
-Point[6] Position= (-133.995,124.104,2580.16)
+Original momentum : 34.1851 -1.74687 0.497765 keV
+Vertex : 0.137456 -0.264133 4.1537 m    Global time : 20.2362 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (137.456,-264.133,4153.7)
+Point[1] Position= (137.485,-264.135,4153.7)
 
-TrackID =716 : ParentID=678 : TrackStatus=1
+TrackID =822 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.9974 -6.40491 -11.0251 keV
-Vertex : -0.134994 0.124855 2.5799 m    Global time : 8.74059 ns 
+Original momentum : -30.7854 -23.2981 1.61914 keV
+Vertex : 0.135568 -0.26036 4.09873 m    Global time : 19.9673 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-134.994,124.855,2579.9)
-Point[1] Position= (-135.05,124.846,2579.89)
+Point[0] Position= (135.568,-260.36,4098.73)
+Point[1] Position= (135.534,-260.386,4098.73)
 
-TrackID =677 : ParentID=652 : TrackStatus=1
+TrackID =821 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.7576 -34.8563 4.54447 keV
-Vertex : -0.125121 0.126425 2.48397 m    Global time : 8.30837 ns 
+Original momentum : 17.3313 48.3793 6.55284 keV
+Vertex : 0.133646 -0.256612 4.04407 m    Global time : 19.6999 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-125.121,126.425,2483.97)
-Point[1] Position= (-125.094,126.381,2483.98)
+Point[0] Position= (133.646,-256.612,4044.07)
+Point[1] Position= (133.684,-256.508,4044.08)
 
-TrackID =676 : ParentID=652 : TrackStatus=1
+TrackID =820 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.2678 -68.0947 11.3445 keV
-Vertex : -0.117739 0.118974 2.33751 m    Global time : 7.81849 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-117.739,118.974,2337.51)
-Point[1] Position= (-117.516,118.566,2337.58)
-Point[2] Position= (-117.517,118.57,2337.58)
+Original momentum : 28.6667 15.8107 1.61724 keV
+Vertex : 0.132202 -0.25382 4.00395 m    Global time : 19.5036 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (132.202,-253.82,4003.95)
+Point[1] Position= (132.224,-253.808,4003.95)
 
-TrackID =675 : ParentID=652 : TrackStatus=1
+TrackID =819 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.2853 27.7696 -1.26043 keV
-Vertex : -0.100525 0.101591 1.99567 m    Global time : 6.67512 ns 
+Original momentum : -4.10177 -42.673 -0.279158 keV
+Vertex : 0.131501 -0.252428 3.98438 m    Global time : 19.4078 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-100.525,101.591,1995.67)
-Point[1] Position= (-100.541,101.614,1995.67)
+Point[0] Position= (131.501,-252.428,3984.38)
+Point[1] Position= (131.496,-252.486,3984.38)
 
-TrackID =674 : ParentID=652 : TrackStatus=1
+TrackID =818 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.86505 -32.8892 2.95153 keV
-Vertex : -0.0954565 0.0964682 1.89495 m    Global time : 6.33822 ns 
+Original momentum : -36.8382 16.4807 4.76359 keV
+Vertex : 0.126267 -0.241374 3.83072 m    Global time : 18.6562 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-95.4565,96.4682,1894.95)
-Point[1] Position= (-95.4534,96.4424,1894.95)
+Point[0] Position= (126.267,-241.374,3830.72)
+Point[1] Position= (126.222,-241.354,3830.73)
 
-TrackID =673 : ParentID=652 : TrackStatus=1
+TrackID =817 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.9541 -28.0473 1.57197 keV
-Vertex : -0.0897972 0.0907432 1.78246 m    Global time : 5.96195 ns 
+Original momentum : -5.80795 35.6216 4.543 keV
+Vertex : 0.123218 -0.235059 3.74021 m    Global time : 18.2135 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-89.7972,90.7432,1782.46)
-Point[1] Position= (-89.8346,90.7082,1782.46)
+Point[0] Position= (123.218,-235.059,3740.21)
+Point[1] Position= (123.213,-235.026,3740.21)
 
-TrackID =672 : ParentID=652 : TrackStatus=1
+TrackID =816 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -57.8967 -59.3765 6.85564 keV
-Vertex : -0.0882696 0.0891987 1.7521 m    Global time : 5.86041 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-88.2696,89.1987,1752.1)
-Point[1] Position= (-88.673,88.7851,1752.15)
-Point[2] Position= (-88.7268,88.6863,1752.05)
+Original momentum : -66.7097 103.617 32.2046 keV
+Vertex : 0.122273 -0.233066 3.71135 m    Global time : 18.0724 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (122.273,-233.066,3711.35)
+Point[1] Position= (121.248,-231.474,3711.84)
+Point[2] Position= (121.099,-230.93,3713.05)
+Point[3] Position= (120.806,-230.306,3713.22)
+Point[4] Position= (120.79,-230.354,3713.33)
 
-TrackID =671 : ParentID=652 : TrackStatus=1
+TrackID =855 : ParentID=816 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.9807 23.9245 -1.30032 keV
-Vertex : -0.0814851 0.082344 1.61732 m    Global time : 5.40961 ns 
+Original momentum : 9.37943 -4.04301 30.838 keV
+Vertex : 0.121099 -0.23093 3.71305 m    Global time : 18.1204 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-81.4851,82.344,1617.32)
-Point[1] Position= (-81.5084,82.3654,1617.32)
+Point[0] Position= (121.099,-230.93,3713.05)
+Point[1] Position= (121.106,-230.933,3713.07)
 
-TrackID =670 : ParentID=652 : TrackStatus=1
+TrackID =815 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.9694 29.0644 -1.29051 keV
-Vertex : -0.0786577 0.0794882 1.56116 m    Global time : 5.22177 ns 
+Original momentum : 37.4214 -25.6725 -0.00665994 keV
+Vertex : 0.121052 -0.230351 3.67227 m    Global time : 17.8814 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-78.6577,79.4882,1561.16)
-Point[1] Position= (-78.6912,79.5231,1561.16)
+Point[0] Position= (121.052,-230.351,3672.27)
+Point[1] Position= (121.11,-230.391,3672.27)
 
-TrackID =669 : ParentID=652 : TrackStatus=1
+TrackID =814 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.4651 49.1374 3.51158 keV
-Vertex : -0.0773147 0.0781323 1.53449 m    Global time : 5.13256 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-77.3147,78.1323,1534.49)
-Point[1] Position= (-77.1709,78.3069,1534.5)
+Original momentum : -204.984 -22.4303 70.0918 keV
+Vertex : 0.118821 -0.225389 3.60173 m    Global time : 17.5365 ns 
+  Current trajectory has 9 points.
+Point[0] Position= (118.821,-225.389,3601.73)
+Point[1] Position= (114.232,-225.891,3603.3)
+Point[2] Position= (109.963,-230.855,3603.93)
+Point[3] Position= (109.777,-231.127,3603.87)
+Point[4] Position= (109.183,-231.198,3603.68)
+Point[5] Position= (107.527,-230.799,3602.98)
+Point[6] Position= (107.061,-230.544,3601.75)
+Point[7] Position= (106.627,-230.027,3602.13)
+Point[8] Position= (106.636,-230.053,3602.08)
 
-TrackID =668 : ParentID=652 : TrackStatus=1
+TrackID =858 : ParentID=814 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.07887 -39.23 3.13591 keV
-Vertex : -0.0724479 0.073218 1.43785 m    Global time : 4.80931 ns 
+Original momentum : 1.78243 -25.3922 -19.1934 keV
+Vertex : 0.109183 -0.231198 3.60368 m    Global time : 17.6493 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-72.4479,73.218,1437.85)
-Point[1] Position= (-72.4588,73.1708,1437.85)
+Point[0] Position= (109.183,-231.198,3603.68)
+Point[1] Position= (109.184,-231.217,3603.66)
 
-TrackID =667 : ParentID=652 : TrackStatus=1
+TrackID =857 : ParentID=814 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -41.1253 -36.3017 2.72549 keV
-Vertex : -0.0707095 0.0714627 1.40333 m    Global time : 4.69386 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-70.7095,71.4627,1403.33)
-Point[1] Position= (-70.8108,71.3733,1403.34)
+Original momentum : 4.91534 -128.581 26.0118 keV
+Vertex : 0.109777 -0.231127 3.60387 m    Global time : 17.641 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (109.777,-231.127,3603.87)
+Point[1] Position= (109.856,-233.189,3604.28)
+Point[2] Position= (109.656,-234.163,3605.22)
+Point[3] Position= (110.369,-234.072,3605.77)
+Point[4] Position= (110.297,-234.132,3605.85)
 
-TrackID =666 : ParentID=652 : TrackStatus=1
+TrackID =859 : ParentID=857 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.80486 33.503 -0.781307 keV
-Vertex : -0.0673323 0.0680535 1.3363 m    Global time : 4.46965 ns 
+Original momentum : 10.2412 36.1831 33.0721 keV
+Vertex : 0.110369 -0.234072 3.60577 m    Global time : 17.7071 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-67.3323,68.0535,1336.3)
-Point[1] Position= (-67.3354,68.0805,1336.3)
+Point[0] Position= (110.369,-234.072,3605.77)
+Point[1] Position= (110.39,-234.001,3605.83)
 
-TrackID =665 : ParentID=652 : TrackStatus=1
+TrackID =856 : ParentID=814 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.6482 39.5106 0.313176 keV
-Vertex : -0.0570232 0.0576477 1.13178 m    Global time : 3.7856 ns 
+Original momentum : -28.6462 27.7395 29.3486 keV
+Vertex : 0.114232 -0.225891 3.6033 m    Global time : 17.578 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-57.0232,57.6477,1131.78)
-Point[1] Position= (-57.007,57.6981,1131.78)
+Point[0] Position= (114.232,-225.891,3603.3)
+Point[1] Position= (114.177,-225.838,3603.36)
 
-TrackID =664 : ParentID=652 : TrackStatus=1
+TrackID =813 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.4771 32.5244 -1.24855 keV
-Vertex : -5.01747 5.07316 99.5925 cm   Global time : 3.33117 ns 
+Original momentum : 31.626 13.5316 1.68718 keV
+Vertex : 0.118515 -0.22468 3.59163 m    Global time : 17.4872 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-50.1747,50.7316,995.925)
-Point[1] Position= (-50.1986,50.7677,995.923)
+Point[0] Position= (118.515,-224.68,3591.63)
+Point[1] Position= (118.542,-224.669,3591.64)
 
-TrackID =663 : ParentID=652 : TrackStatus=1
+TrackID =812 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.68738 34.3357 -0.764598 keV
-Vertex : -4.62259 4.6742 91.7568 cm   Global time : 3.06908 ns 
+Original momentum : 36.7002 13.7939 2.05689 keV
+Vertex : 0.117125 -0.221456 3.5459 m    Global time : 17.2637 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-46.2259,46.742,917.568)
-Point[1] Position= (-46.2291,46.7713,917.567)
+Point[0] Position= (117.125,-221.456,3545.9)
+Point[1] Position= (117.166,-221.44,3545.91)
 
-TrackID =662 : ParentID=652 : TrackStatus=1
+TrackID =811 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.8698 27.0658 1.10265 keV
-Vertex : -4.04116 4.08679 80.2188 cm   Global time : 2.68316 ns 
+Original momentum : 48.4189 5.96751 2.28468 keV
+Vertex : 0.114892 -0.216415 3.47472 m    Global time : 16.9158 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-40.4116,40.8679,802.188)
-Point[1] Position= (-40.3892,40.8933,802.189)
+Point[0] Position= (114.892,-216.415,3474.72)
+Point[1] Position= (114.982,-216.404,3474.72)
 
-TrackID =661 : ParentID=652 : TrackStatus=1
+TrackID =810 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.8326 6.20757 2.32458 keV
-Vertex : -3.94995 3.99466 78.4091 cm   Global time : 2.62263 ns 
+Original momentum : 34.3506 -26.1583 -0.206587 keV
+Vertex : 0.113761 -0.213857 3.43826 m    Global time : 16.7377 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-39.4995,39.9466,784.091)
-Point[1] Position= (-39.4757,39.9512,784.093)
+Point[0] Position= (113.761,-213.857,3438.26)
+Point[1] Position= (113.809,-213.894,3438.26)
 
-TrackID =660 : ParentID=652 : TrackStatus=1
+TrackID =809 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.3891 14.2329 2.37064 keV
-Vertex : -3.3525 3.39081 66.5527 cm   Global time : 2.22606 ns 
+Original momentum : 24.5191 32.2064 3.88336 keV
+Vertex : 0.112424 -0.210736 3.3939 m    Global time : 16.5209 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-33.525,33.9081,665.527)
-Point[1] Position= (-33.4904,33.9225,665.53)
+Point[0] Position= (112.424,-210.736,3393.9)
+Point[1] Position= (112.454,-210.696,3393.9)
 
-TrackID =659 : ParentID=652 : TrackStatus=1
+TrackID =808 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.607 30.0967 1.38979 keV
-Vertex : -3.25631 3.29355 64.6437 cm   Global time : 2.16221 ns 
+Original momentum : 79.1988 -23.3286 5.75067 keV
+Vertex : 0.111701 -0.209074 3.36989 m    Global time : 16.4036 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-32.5631,32.9355,646.437)
-Point[1] Position= (-32.5314,32.9713,646.439)
+Point[0] Position= (111.701,-209.074,3369.89)
+Point[1] Position= (112.245,-209.234,3369.93)
 
-TrackID =658 : ParentID=652 : TrackStatus=1
+TrackID =807 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.4156 8.06665 -0.860432 keV
-Vertex : -2.57575 2.60507 51.1378 cm   Global time : 1.71046 ns 
+Original momentum : -31.3485 -55.9047 2.97384 keV
+Vertex : 0.10902 -0.203141 3.28428 m    Global time : 15.9855 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-25.7575,26.0507,511.378)
-Point[1] Position= (-25.7974,26.0593,511.377)
+Point[0] Position= (109.02,-203.141,3284.28)
+Point[1] Position= (108.906,-203.343,3284.3)
+
+TrackID =806 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -73.3156 27.4295 13.1585 keV
+Vertex : 0.108165 -0.201209 3.2565 m    Global time : 15.8498 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (108.165,-201.209,3256.5)
+Point[1] Position= (108.101,-201.185,3256.52)
+Point[2] Position= (107.797,-201.234,3256.52)
 
-TrackID =657 : ParentID=652 : TrackStatus=1
+TrackID =860 : ParentID=806 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.313 22.0598 2.23929 keV
-Vertex : -1.81813 1.83844 36.104 cm   Global time : 1.2076 ns 
+Original momentum : -4.46624 29.441 19.2368 keV
+Vertex : 0.108101 -0.201185 3.25652 m    Global time : 15.8513 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-18.1813,18.3844,361.04)
-Point[1] Position= (-18.139,18.4116,361.042)
+Point[0] Position= (108.101,-201.185,3256.52)
+Point[1] Position= (108.096,-201.158,3256.53)
 
-TrackID =656 : ParentID=652 : TrackStatus=1
+TrackID =805 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.8665 -44.3051 6.70969 keV
-Vertex : -1.56877 1.58623 31.1552 cm   Global time : 1.04208 ns 
+Original momentum : -42.6128 18.495 5.71854 keV
+Vertex : 0.107951 -0.200725 3.24954 m    Global time : 15.8158 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-15.6877,15.8623,311.552)
-Point[1] Position= (-15.6134,15.7556,311.569)
+Point[0] Position= (107.951,-200.725,3249.54)
+Point[1] Position= (107.879,-200.694,3249.55)
 
-TrackID =655 : ParentID=652 : TrackStatus=1
+TrackID =804 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.8453 31.3534 1.32355 keV
-Vertex : -1.12361 1.13602 22.3179 cm   Global time : 746.488 ps 
+Original momentum : 30.473 15.3116 1.81176 keV
+Vertex : 0.104165 -0.192166 3.12635 m    Global time : 15.2142 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-11.2361,11.3602,223.179)
-Point[1] Position= (-11.2046,11.3985,223.181)
+Point[0] Position= (104.165,-192.166,3126.35)
+Point[1] Position= (104.19,-192.154,3126.35)
+
+TrackID =803 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 65.548 97.7536 25.0075 keV
+Vertex : 0.10384 -0.191427 3.11535 m    Global time : 15.1605 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (103.84,-191.427,3115.35)
+Point[1] Position= (104.768,-190.043,3115.7)
+Point[2] Position= (105.365,-190.503,3116.17)
+Point[3] Position= (105.308,-190.82,3116.27)
 
-TrackID =654 : ParentID=652 : TrackStatus=1
+TrackID =802 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.43811 44.9076 -0.42959 keV
-Vertex : -1.01012 1.02121 20.0643 cm   Global time : 671.11 ps 
+Original momentum : 29.1667 -43.6688 0.125932 keV
+Vertex : 0.103195 -0.189944 3.09334 m    Global time : 15.053 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-10.1012,10.2121,200.643)
-Point[1] Position= (-10.105,10.2809,200.643)
+Point[0] Position= (103.195,-189.944,3093.34)
+Point[1] Position= (103.259,-190.041,3093.34)
 
-TrackID =653 : ParentID=652 : TrackStatus=1
+TrackID =801 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -56.2182 -35.1731 3.26723 keV
-Vertex : -0.677091 0.684346 13.4512 cm   Global time : 449.912 ps 
+Original momentum : -77.4248 22.6966 13.3549 keV
+Vertex : 0.102328 -0.187913 3.06376 m    Global time : 14.9086 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-6.77091,6.84346,134.512)
-Point[1] Position= (-6.98089,6.71209,134.524)
-Point[2] Position= (-7.01271,6.72349,134.491)
+Point[0] Position= (102.328,-187.913,3063.76)
+Point[1] Position= (101.812,-187.762,3063.85)
+Point[2] Position= (101.822,-187.785,3063.85)
 
-TrackID =717 : ParentID=653 : TrackStatus=1
+TrackID =800 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.54718 -31.2818 -7.44853 keV
-Vertex : -0.698089 0.671209 13.4524 cm   Global time : 456.333 ps 
+Original momentum : 30.3695 22.7398 2.69781 keV
+Vertex : 0.101471 -0.185947 3.03504 m    Global time : 14.7684 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-6.98089,6.71209,134.524)
-Point[1] Position= (-6.98352,6.68896,134.518)
+Point[0] Position= (101.471,-185.947,3035.04)
+Point[1] Position= (101.503,-185.923,3035.05)
 
-TrackID =650 : ParentID=558 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : 0.0416147 -0.131665 1.49166 GeV
-Vertex : 62.39 -62.7951 935.015 nm   Global time : 0.00313478 ps 
+TrackID =799 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 39.539 27.3652 3.97915 keV
+Vertex : 0.100725 -0.184277 3.01064 m    Global time : 14.6493 ns 
   Current trajectory has 2 points.
-Point[0] Position= (6.239e-05,-6.27951e-05,0.000935015)
-Point[1] Position= (167.389,-529.602,6000)
+Point[0] Position= (100.725,-184.277,3010.64)
+Point[1] Position= (100.796,-184.228,3010.65)
 
-TrackID =649 : ParentID=558 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : 0.212184 -0.123782 2.31192 GeV
-Vertex : 62.39 -62.7951 935.015 nm   Global time : 0.00313478 ps 
+TrackID =798 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 1.68959 -34.99 -0.689103 keV
+Vertex : 0.100309 -0.183367 2.99736 m    Global time : 14.5845 ns 
   Current trajectory has 2 points.
-Point[0] Position= (6.239e-05,-6.27951e-05,0.000935015)
-Point[1] Position= (550.67,-321.245,6000)
+Point[0] Position= (100.309,-183.367,2997.36)
+Point[1] Position= (100.311,-183.398,2997.36)
 
-TrackID =651 : ParentID=56 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : -0.296396 -0.334165 1.98628 GeV
-Vertex : -6.58667e-295 9.6971e-297 1.99922e-293 fm   Global time : 8.63072e-305 ps 
+TrackID =797 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 38.2243 -30.1245 0.128412 keV
+Vertex : 0.0938635 -0.169107 2.78822 m    Global time : 13.5638 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-6.58667e-307,9.6971e-309,1.99922e-305)
-Point[1] Position= (-8.53806e-05,-9.62604e-05,0.000572174)
+Point[0] Position= (93.8635,-169.107,2788.22)
+Point[1] Position= (93.9339,-169.162,2788.22)
 
-TrackID =55 : ParentID=45 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : 215.811 -42.1338 881.219 MeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+TrackID =796 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 31.7753 8.91714 1.20943 keV
+Vertex : 0.0929247 -0.166957 2.75734 m    Global time : 13.4131 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (4.99978e-05,-9.7613e-06,0.000204156)
+Point[0] Position= (92.9247,-166.957,2757.34)
+Point[1] Position= (92.9493,-166.95,2757.34)
 
-TrackID =54 : ParentID=45 : TrackStatus=1
-Particle name : unknown : rho-  PDG code : -213  Charge : -1
-Original momentum : -0.592879 0.111279 29.2101 GeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+TrackID =795 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -9.81476 -71.7659 2.71793 keV
+Vertex : 0.0911253 -0.162868 2.69908 m    Global time : 13.1288 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (-3.18021e-307,9.23194e-309,2.00079e-305)
+Point[0] Position= (91.1253,-162.868,2699.08)
+Point[1] Position= (91.0771,-163.22,2699.1)
 
-TrackID =723 : ParentID=54 : TrackStatus=1
-Particle name : pi-  PDG code : -211  Charge : -1
-Original momentum : -0.596191 0.400302 17.9435 GeV
-Vertex : -3.18021e-295 9.23194e-297 2.00079e-293 fm   Global time : 8.62177e-305 ps 
-  Current trajectory has 57 points.
-Point[0] Position= (-3.18021e-307,9.23194e-309,2.00079e-305)
-Point[1] Position= (-1.54106,1.03473,46.3756)
-Point[2] Position= (-14.2542,9.56465,428.775)
-Point[3] Position= (-15.2625,10.2415,459.109)
-Point[4] Position= (-19.4623,13.0595,585.427)
-Point[5] Position= (-20.0691,13.4665,603.673)
-Point[6] Position= (-20.2839,13.6105,610.131)
-Point[7] Position= (-20.8955,14.0206,628.518)
-Point[8] Position= (-25.0452,16.8041,753.294)
-Point[9] Position= (-28.1379,18.8788,846.329)
-Point[10] Position= (-35.8032,24.0197,1076.97)
-Point[11] Position= (-38.3887,25.7533,1154.8)
-Point[12] Position= (-38.5459,25.8587,1159.53)
-Point[13] Position= (-45.0706,30.2324,1355.88)
-Point[14] Position= (-55.457,37.195,1668.39)
-Point[15] Position= (-59.6713,40.021,1795.2)
-Point[16] Position= (-62.2754,41.7656,1873.54)
-Point[17] Position= (-64.5679,43.3009,1942.51)
-Point[18] Position= (-64.6931,43.3847,1946.27)
-Point[19] Position= (-65.6522,44.027,1975.12)
-Point[20] Position= (-66.9778,44.9151,2015)
-Point[21] Position= (-67.4935,45.2607,2030.51)
-Point[22] Position= (-69.8318,46.8276,2100.87)
-Point[23] Position= (-70.6012,47.3434,2124.02)
-Point[24] Position= (-73.4768,49.2719,2210.58)
-Point[25] Position= (-75.192,50.4228,2262.25)
-Point[26] Position= (-75.5046,50.6326,2271.67)
-Point[27] Position= (-79.5176,53.324,2392.52)
-Point[28] Position= (-83.347,55.894,2507.88)
-Point[29] Position= (-89.2431,59.8495,2685.48)
-Point[30] Position= (-90.6019,60.7617,2726.42)
-Point[31] Position= (-91.4878,61.3565,2753.12)
-Point[32] Position= (-92.213,61.8434,2774.98)
-Point[33] Position= (-103.652,69.5203,3119.57)
-Point[34] Position= (-107.352,72.0034,3231.03)
-Point[35] Position= (-107.741,72.2641,3242.73)
-Point[36] Position= (-107.943,72.4001,3248.84)
-Point[37] Position= (-110.82,74.3299,3335.47)
-Point[38] Position= (-116.994,78.4694,3521.43)
-Point[39] Position= (-133.165,89.3162,4008.87)
-Point[40] Position= (-133.612,89.6164,4022.35)
-Point[41] Position= (-135.639,90.977,4083.45)
-Point[42] Position= (-137.845,92.4573,4149.92)
-Point[43] Position= (-141.595,94.9765,4262.97)
-Point[44] Position= (-148.817,99.8322,4480.82)
-Point[45] Position= (-150.902,101.235,4543.73)
-Point[46] Position= (-151.344,101.532,4557.05)
-Point[47] Position= (-153.112,102.721,4610.4)
-Point[48] Position= (-161.494,108.356,4863.23)
-Point[49] Position= (-161.756,108.532,4871.14)
-Point[50] Position= (-168.528,113.083,5075.35)
-Point[51] Position= (-178.778,119.97,5384.44)
-Point[52] Position= (-187.341,125.721,5642.52)
-Point[53] Position= (-187.696,125.96,5653.23)
-Point[54] Position= (-187.705,125.966,5653.51)
-Point[55] Position= (-195.69,131.328,5894.29)
-Point[56] Position= (-199.194,133.682,6000)
-
-TrackID =778 : ParentID=723 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -56.8777 9.07722 1.15211 keV
-Vertex : -0.19569 0.131328 5.89429 m    Global time : 19.6775 ns 
+TrackID =794 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 26.0026 76.4696 14.0081 keV
+Vertex : 0.0879247 -0.155341 2.59257 m    Global time : 12.6091 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-195.69,131.328,5894.29)
-Point[1] Position= (-195.844,131.353,5894.29)
-Point[2] Position= (-195.865,131.317,5894.32)
+Point[0] Position= (87.9247,-155.341,2592.57)
+Point[1] Position= (88.0991,-154.828,2592.66)
+Point[2] Position= (88.1066,-154.856,2592.66)
 
-TrackID =777 : ParentID=723 : TrackStatus=1
+TrackID =793 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.8438 3.61973 -0.000204363 keV
-Vertex : -0.187705 0.125966 5.65351 m    Global time : 18.8737 ns 
+Original momentum : 11.9381 36.0085 4.17654 keV
+Vertex : 0.0874403 -0.154257 2.57674 m    Global time : 12.5319 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-187.705,125.966,5653.51)
-Point[1] Position= (-187.739,125.97,5653.51)
+Point[0] Position= (87.4403,-154.257,2576.74)
+Point[1] Position= (87.4529,-154.219,2576.75)
 
-TrackID =776 : ParentID=723 : TrackStatus=1
+TrackID =792 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -62.643 31.077 1.99984 keV
-Vertex : -0.187696 0.12596 5.65323 m    Global time : 18.8728 ns 
+Original momentum : 27.0808 -20.038 -0.546198 keV
+Vertex : 0.0871116 -0.153517 2.56589 m    Global time : 12.4789 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-187.696,125.96,5653.23)
-Point[1] Position= (-187.977,126.099,5653.23)
+Point[0] Position= (87.1116,-153.517,2565.89)
+Point[1] Position= (87.1335,-153.533,2565.88)
 
-TrackID =775 : ParentID=723 : TrackStatus=1
+TrackID =791 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.10769 47.1372 1.19684 keV
-Vertex : -0.187341 0.125721 5.64252 m    Global time : 18.837 ns 
+Original momentum : 20.9394 78.1633 14.3022 keV
+Vertex : 0.0865021 -0.152075 2.5447 m    Global time : 12.3755 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-187.341,125.721,5642.52)
-Point[1] Position= (-187.337,125.802,5642.52)
+Point[0] Position= (86.5021,-152.075,2544.7)
+Point[1] Position= (86.6434,-151.547,2544.79)
 
-TrackID =774 : ParentID=723 : TrackStatus=1
+TrackID =790 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.8279 25.9392 2.13034 keV
-Vertex : -0.178778 0.11997 5.38444 m    Global time : 17.9755 ns 
+Original momentum : 28.0353 60.7125 9.77535 keV
+Vertex : 0.0849992 -0.148556 2.49258 m    Global time : 12.1214 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-178.778,119.97,5384.44)
-Point[1] Position= (-178.738,120.003,5384.44)
+Point[0] Position= (84.9992,-148.556,2492.58)
+Point[1] Position= (85.1145,-148.306,2492.62)
 
-TrackID =773 : ParentID=723 : TrackStatus=1
+TrackID =789 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.8817 -35.3097 2.54452 keV
-Vertex : -0.168528 0.113083 5.07535 m    Global time : 16.9436 ns 
+Original momentum : 31.6953 11.3035 1.43841 keV
+Vertex : 0.0848933 -0.148316 2.48901 m    Global time : 12.1039 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-168.528,113.083,5075.35)
-Point[1] Position= (-168.516,113.047,5075.36)
+Point[0] Position= (84.8933,-148.316,2489.01)
+Point[1] Position= (84.9189,-148.307,2489.01)
 
-TrackID =772 : ParentID=723 : TrackStatus=1
+TrackID =788 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 50.3841 74.0926 7.88141 keV
-Vertex : -0.161756 0.108532 4.87114 m    Global time : 16.2619 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-161.756,108.532,4871.14)
-Point[1] Position= (-161.332,109.155,4871.21)
-Point[2] Position= (-161.379,109.254,4871.08)
-
-TrackID =771 : ParentID=723 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.9273 -35.9889 3.85948 keV
-Vertex : -0.161494 0.108356 4.86323 m    Global time : 16.2355 ns 
+Original momentum : 34.2947 20.7482 2.68974 keV
+Vertex : 0.0844555 -0.147321 2.47417 m    Global time : 12.0316 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-161.494,108.356,4863.23)
-Point[1] Position= (-161.446,108.297,4863.24)
+Point[0] Position= (84.4555,-147.321,2474.17)
+Point[1] Position= (84.4963,-147.296,2474.17)
 
-TrackID =770 : ParentID=723 : TrackStatus=1
+TrackID =787 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.1027 48.0029 0.908933 keV
-Vertex : -0.153112 0.102721 4.6104 m    Global time : 15.3914 ns 
+Original momentum : -8.17256 31.9096 3.61916 keV
+Vertex : 0.079666 -0.137013 2.2976 m    Global time : 11.1712 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-153.112,102.721,4610.4)
-Point[1] Position= (-153.14,102.815,4610.4)
+Point[0] Position= (79.666,-137.013,2297.6)
+Point[1] Position= (79.6596,-136.988,2297.61)
 
-TrackID =769 : ParentID=723 : TrackStatus=1
+TrackID =786 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 83.8893 -52.4117 13.6212 keV
-Vertex : -0.151344 0.101532 4.55705 m    Global time : 15.2133 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-151.344,101.532,4557.05)
-Point[1] Position= (-151.18,101.429,4557.08)
-Point[2] Position= (-151.08,101.316,4557.05)
-Point[3] Position= (-151.136,101.106,4556.94)
+Original momentum : 36.8788 -23.4954 0.391793 keV
+Vertex : 0.0791839 -0.135941 2.27917 m    Global time : 11.0813 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (79.1839,-135.941,2279.17)
+Point[1] Position= (79.2369,-135.975,2279.17)
 
-TrackID =780 : ParentID=769 : TrackStatus=1
+TrackID =785 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.61801 18.7303 -41.6138 keV
-Vertex : -0.15108 0.101316 4.55705 m    Global time : 15.2199 ns 
+Original momentum : 22.124 59.7514 8.91173 keV
+Vertex : 0.078408 -0.134162 2.24921 m    Global time : 10.9354 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-151.08,101.316,4557.05)
-Point[1] Position= (-151.064,101.347,4556.98)
+Point[0] Position= (78.408,-134.162,2249.21)
+Point[1] Position= (78.4885,-133.945,2249.24)
 
-TrackID =779 : ParentID=769 : TrackStatus=1
+TrackID =784 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.2151 9.09425 44.3888 keV
-Vertex : -0.15118 0.101429 4.55708 m    Global time : 15.2167 ns 
+Original momentum : -38.3737 -11.3136 2.54512 keV
+Vertex : 0.0781065 -0.133444 2.23715 m    Global time : 10.8766 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-151.18,101.429,4557.08)
-Point[1] Position= (-151.132,101.448,4557.17)
+Point[0] Position= (78.1065,-133.444,2237.15)
+Point[1] Position= (78.0612,-133.458,2237.15)
 
-TrackID =768 : ParentID=723 : TrackStatus=1
+TrackID =783 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.1845 18.1431 0.0366163 keV
-Vertex : -0.150902 0.101235 4.54373 m    Global time : 15.1688 ns 
+Original momentum : -37.7398 46.6288 8.93531 keV
+Vertex : 0.077483 -0.1319 2.21136 m    Global time : 10.751 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-150.902,101.235,4543.73)
-Point[1] Position= (-150.949,101.258,4543.73)
+Point[0] Position= (77.483,-131.9,2211.36)
+Point[1] Position= (77.3645,-131.753,2211.39)
 
-TrackID =767 : ParentID=723 : TrackStatus=1
+TrackID =782 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 57.8512 -17.5326 5.90857 keV
-Vertex : -0.148817 0.0998322 4.48082 m    Global time : 14.9588 ns 
+Original momentum : 10.3196 -32.3274 -0.479991 keV
+Vertex : 0.0761328 -0.128427 2.15303 m    Global time : 10.4668 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-148.817,99.8322,4480.82)
-Point[1] Position= (-148.634,99.777,4480.84)
+Point[0] Position= (76.1328,-128.427,2153.03)
+Point[1] Position= (76.1412,-128.453,2153.03)
 
-TrackID =766 : ParentID=723 : TrackStatus=1
+TrackID =781 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -66.3782 -87.2698 11.5114 keV
-Vertex : -0.141595 0.0949765 4.26297 m    Global time : 14.2315 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-141.595,94.9765,4262.97)
-Point[1] Position= (-142.418,93.8934,4263.11)
-Point[2] Position= (-142.893,94.1065,4262.86)
-Point[3] Position= (-142.895,94.106,4262.87)
+Original momentum : 7.50634 33.7313 3.51023 keV
+Vertex : 0.0739983 -0.123523 2.06905 m    Global time : 10.0578 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (73.9983,-123.523,2069.05)
+Point[1] Position= (74.0048,-123.494,2069.06)
 
-TrackID =765 : ParentID=723 : TrackStatus=1
+TrackID =780 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -17.9929 -30.3507 1.29838 keV
-Vertex : -0.137845 0.0924573 4.14992 m    Global time : 13.8541 ns 
+Original momentum : 21.9998 25.5272 2.55295 keV
+Vertex : 0.0739761 -0.123472 2.0682 m    Global time : 10.0536 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-137.845,92.4573,4149.92)
-Point[1] Position= (-137.861,92.4301,4149.92)
+Point[0] Position= (73.9761,-123.472,2068.2)
+Point[1] Position= (73.994,-123.452,2068.2)
 
-TrackID =764 : ParentID=723 : TrackStatus=1
+TrackID =779 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -48.0292 41.4841 1.4139 keV
-Vertex : -0.135639 0.090977 4.08345 m    Global time : 13.6322 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-135.639,90.977,4083.45)
-Point[1] Position= (-135.808,91.1229,4083.45)
+Original momentum : 5.83545 76.061 12.6549 keV
+Vertex : 0.0730974 -0.121562 2.03513 m    Global time : 9.89258 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (73.0974,-121.562,2035.13)
+Point[1] Position= (73.1232,-121.225,2035.19)
+Point[2] Position= (73.1008,-121.093,2035.19)
 
-TrackID =763 : ParentID=723 : TrackStatus=1
+TrackID =861 : ParentID=779 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.209866 41.5348 0.755362 keV
-Vertex : -0.133612 0.0896164 4.02235 m    Global time : 13.4282 ns 
+Original momentum : 34.0162 5.30655 22.0886 keV
+Vertex : 0.0731232 -0.121225 2.03519 m    Global time : 9.9002 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-133.612,89.6164,4022.35)
-Point[1] Position= (-133.612,89.6695,4022.35)
+Point[0] Position= (73.1232,-121.225,2035.19)
+Point[1] Position= (73.1653,-121.219,2035.21)
 
-TrackID =762 : ParentID=723 : TrackStatus=1
+TrackID =778 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.90674 -71.6289 6.57703 keV
-Vertex : -0.133165 0.0893162 4.00887 m    Global time : 13.3832 ns 
+Original momentum : 13.5962 -33.5309 -0.392635 keV
+Vertex : 0.0730954 -0.121557 2.03506 m    Global time : 9.89222 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-133.165,89.3162,4008.87)
-Point[1] Position= (-133.174,88.9711,4008.9)
+Point[0] Position= (73.0954,-121.557,2035.06)
+Point[1] Position= (73.1082,-121.589,2035.06)
 
-TrackID =761 : ParentID=723 : TrackStatus=1
+TrackID =777 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.1835 -9.04986 0.4399 keV
-Vertex : -0.116994 0.0784694 3.52143 m    Global time : 11.756 ns 
+Original momentum : -41.735 -7.30663 3.25913 keV
+Vertex : 0.0729769 -0.121305 2.0306 m    Global time : 9.87052 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-116.994,78.4694,3521.43)
-Point[1] Position= (-117.037,78.4592,3521.43)
+Point[0] Position= (72.9769,-121.305,2030.6)
+Point[1] Position= (72.9207,-121.315,2030.6)
 
-TrackID =760 : ParentID=723 : TrackStatus=1
+TrackID =776 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.15482 53.003 1.6422 keV
-Vertex : -0.11082 0.0743299 3.33547 m    Global time : 11.1352 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-110.82,74.3299,3335.47)
-Point[1] Position= (-110.815,74.4439,3335.47)
-Point[2] Position= (-110.816,74.4768,3335.5)
+Original momentum : -192.436 5.07852 61.3256 keV
+Vertex : 0.0716459 -0.11842 1.97987 m    Global time : 9.62346 ns 
+  Current trajectory has 9 points.
+Point[0] Position= (71.6459,-118.42,1979.87)
+Point[1] Position= (68.183,-118.329,1980.97)
+Point[2] Position= (64.0241,-122.242,1979.24)
+Point[3] Position= (59.5254,-123.014,1977.78)
+Point[4] Position= (56.5751,-121.059,1978.28)
+Point[5] Position= (54.3946,-120.529,1977.71)
+Point[6] Position= (53.7511,-121.464,1976.56)
+Point[7] Position= (53.8165,-120.642,1976.32)
+Point[8] Position= (53.8478,-120.567,1976.41)
 
-TrackID =759 : ParentID=723 : TrackStatus=1
+TrackID =863 : ParentID=776 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 51.5777 29.5885 4.52405 keV
-Vertex : -0.107943 0.0724001 3.24884 m    Global time : 10.846 ns 
+Original momentum : 22.0705 32.9963 -34.3329 keV
+Vertex : 0.0538165 -0.120642 1.97632 m    Global time : 9.86756 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-107.943,72.4001,3248.84)
-Point[1] Position= (-107.788,72.4893,3248.85)
+Point[0] Position= (53.8165,-120.642,1976.32)
+Point[1] Position= (53.8651,-120.57,1976.24)
 
-TrackID =758 : ParentID=723 : TrackStatus=1
+TrackID =862 : ParentID=776 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.6161 -34.8349 1.92207 keV
-Vertex : -0.107741 0.0722641 3.24273 m    Global time : 10.8256 ns 
+Original momentum : -36.0635 55.6011 -25.7237 keV
+Vertex : 0.0543946 -0.120529 1.97771 m    Global time : 9.82764 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-107.741,72.2641,3242.73)
-Point[1] Position= (-107.798,72.2027,3242.73)
+Point[0] Position= (54.3946,-120.529,1977.71)
+Point[1] Position= (54.2261,-120.27,1977.59)
 
-TrackID =757 : ParentID=723 : TrackStatus=1
+TrackID =775 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.6901 -15.2012 3.32348 keV
-Vertex : -0.107352 0.0720034 3.23103 m    Global time : 10.7865 ns 
+Original momentum : 33.8189 12.2189 1.58301 keV
+Vertex : 0.0675603 -0.109107 1.81906 m    Global time : 8.84071 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-107.352,72.0034,3231.03)
-Point[1] Position= (-107.302,71.9838,3231.04)
+Point[0] Position= (67.5603,-109.107,1819.06)
+Point[1] Position= (67.5918,-109.095,1819.06)
 
-TrackID =756 : ParentID=723 : TrackStatus=1
+TrackID =774 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.245 -10.8179 2.25956 keV
-Vertex : -0.103652 0.0695203 3.11957 m    Global time : 10.4144 ns 
+Original momentum : -22.5661 22.5731 3.55238 keV
+Vertex : 0.0669583 -0.107851 1.79905 m    Global time : 8.74329 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-103.652,69.5203,3119.57)
-Point[1] Position= (-103.629,69.5124,3119.57)
+Point[0] Position= (66.9583,-107.851,1799.05)
+Point[1] Position= (66.9419,-107.835,1799.06)
 
-TrackID =755 : ParentID=723 : TrackStatus=1
+TrackID =773 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.0038 34.9912 2.48557 keV
-Vertex : -0.092213 0.0618434 2.77498 m    Global time : 9.26403 ns 
+Original momentum : -0.482288 -60.5798 1.4271 keV
+Vertex : 0.0669401 -0.107812 1.79843 m    Global time : 8.74026 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-92.213,61.8434,2774.98)
-Point[1] Position= (-92.1574,61.9042,2774.98)
+Point[0] Position= (66.9401,-107.812,1798.43)
+Point[1] Position= (66.9386,-108.002,1798.44)
 
-TrackID =754 : ParentID=723 : TrackStatus=1
+TrackID =772 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.5988 25.4511 -0.0332223 keV
-Vertex : -0.0914878 0.0613565 2.75312 m    Global time : 9.19105 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-91.4878,61.3565,2753.12)
-Point[1] Position= (-91.5234,61.3861,2753.12)
+Original momentum : 81.488 -22.179 6.39829 keV
+Vertex : 0.0663536 -0.106535 1.77823 m    Global time : 8.6419 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (66.3536,-106.535,1778.23)
+Point[1] Position= (66.9468,-106.697,1778.28)
+Point[2] Position= (66.9739,-106.662,1778.36)
 
-TrackID =753 : ParentID=723 : TrackStatus=1
+TrackID =771 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.03737 42.0358 0.60607 keV
-Vertex : -0.0906019 0.0607617 2.72642 m    Global time : 9.10192 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-90.6019,60.7617,2726.42)
-Point[1] Position= (-90.6114,60.8187,2726.42)
+Original momentum : 41.2521 99.8051 22.2485 keV
+Vertex : 0.066295 -0.106409 1.77624 m    Global time : 8.6322 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (66.295,-106.409,1776.24)
+Point[1] Position= (66.8071,-105.17,1776.51)
+Point[2] Position= (67.688,-105.055,1776.43)
+Point[3] Position= (67.6928,-104.916,1776.43)
 
-TrackID =752 : ParentID=723 : TrackStatus=1
+TrackID =770 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.2743 5.50085 0.069183 keV
-Vertex : -0.0892431 0.0598495 2.68548 m    Global time : 8.96523 ns 
+Original momentum : 32.4555 -12.8446 0.0048533 keV
+Vertex : 0.0658448 -0.105432 1.76065 m    Global time : 8.55633 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-89.2431,59.8495,2685.48)
-Point[1] Position= (-89.2849,59.8555,2685.48)
+Point[0] Position= (65.8448,-105.432,1760.65)
+Point[1] Position= (65.8731,-105.443,1760.65)
 
-TrackID =751 : ParentID=723 : TrackStatus=1
+TrackID =769 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.7921 -23.8272 3.13923 keV
-Vertex : -0.083347 0.055894 2.50788 m    Global time : 8.37234 ns 
+Original momentum : -22.4136 27.0728 4.11438 keV
+Vertex : 0.0645144 -0.102592 1.71475 m    Global time : 8.33287 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-83.347,55.894,2507.88)
-Point[1] Position= (-83.3099,55.8662,2507.88)
+Point[0] Position= (64.5144,-102.592,1714.75)
+Point[1] Position= (64.4943,-102.568,1714.75)
 
-TrackID =750 : ParentID=723 : TrackStatus=1
+TrackID =768 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.0167 43.8424 4.26844 keV
-Vertex : -0.0795176 0.053324 2.39252 m    Global time : 7.98723 ns 
+Original momentum : 51.8199 -3.37038 2.16838 keV
+Vertex : 0.0616844 -0.0964823 1.61493 m    Global time : 7.84708 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-79.5176,53.324,2392.52)
-Point[1] Position= (-79.37,53.471,2392.54)
+Point[0] Position= (61.6844,-96.4823,1614.93)
+Point[1] Position= (61.7961,-96.4896,1614.94)
 
-TrackID =749 : ParentID=723 : TrackStatus=1
+TrackID =767 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 65.4421 69.4374 9.55312 keV
-Vertex : -0.0755046 0.0506326 2.27167 m    Global time : 7.58377 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-75.5046,50.6326,2271.67)
-Point[1] Position= (-74.8723,51.3035,2271.76)
-Point[2] Position= (-74.6307,51.2983,2271.9)
+Original momentum : -21.0753 -66.0161 3.38121 keV
+Vertex : 0.059477 -0.091915 1.54106 m    Global time : 7.48756 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (59.477,-91.915,1541.06)
+Point[1] Position= (59.3844,-92.2051,1541.08)
 
-TrackID =748 : ParentID=723 : TrackStatus=1
+TrackID =766 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.3037 -17.2084 3.17637 keV
-Vertex : -0.075192 0.0504228 2.26225 m    Global time : 7.55234 ns 
+Original momentum : -22.238 33.8646 5.19299 keV
+Vertex : 0.0586206 -0.090217 1.51363 m    Global time : 7.35407 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-75.192,50.4228,2262.25)
-Point[1] Position= (-75.1486,50.4023,2262.26)
+Point[0] Position= (58.6206,-90.217,1513.63)
+Point[1] Position= (58.5932,-90.1752,1513.64)
 
-TrackID =747 : ParentID=723 : TrackStatus=1
+TrackID =765 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -212.801 117.115 47.1239 keV
-Vertex : -0.0734768 0.0492719 2.21058 m    Global time : 7.37984 ns 
-  Current trajectory has 12 points.
-Point[0] Position= (-73.4768,49.2719,2210.58)
-Point[1] Position= (-84.009,55.0683,2212.92)
-Point[2] Position= (-91.153,55.9608,2214.33)
-Point[3] Position= (-95.7449,55.5823,2221.02)
-Point[4] Position= (-94.5521,51.2919,2224.47)
-Point[5] Position= (-96.1307,48.4721,2227.62)
-Point[6] Position= (-97.0269,47.4699,2228.99)
-Point[7] Position= (-96.809,46.5776,2231.74)
-Point[8] Position= (-97.5098,47.7077,2233.56)
-Point[9] Position= (-97.2614,46.8579,2234.06)
-Point[10] Position= (-97.4115,46.3276,2234.49)
-Point[11] Position= (-97.4384,46.3056,2234.49)
+Original momentum : 35.4591 -2.49732 0.492197 keV
+Vertex : 0.0577043 -0.0884424 1.48525 m    Global time : 7.21593 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (57.7043,-88.4424,1485.25)
+Point[1] Position= (57.7365,-88.4446,1485.25)
 
-TrackID =784 : ParentID=747 : TrackStatus=1
+TrackID =764 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.9591 -27.5647 -18.7227 keV
-Vertex : -0.0972614 0.0468579 2.23406 m    Global time : 7.80104 ns 
+Original momentum : 37.5743 -12.0472 0.324342 keV
+Vertex : 0.0570929 -0.0872353 1.46602 m    Global time : 7.12235 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-97.2614,46.8579,2234.06)
-Point[1] Position= (-97.1582,46.7916,2234.02)
+Point[0] Position= (57.0929,-87.2353,1466.02)
+Point[1] Position= (57.1358,-87.249,1466.02)
 
-TrackID =783 : ParentID=747 : TrackStatus=1
+TrackID =763 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.6156 -29.2079 -6.33156 keV
-Vertex : -0.0970269 0.0474699 2.22899 m    Global time : 7.72256 ns 
+Original momentum : 23.6464 38.7554 4.64819 keV
+Vertex : 0.0559117 -0.0848819 1.42829 m    Global time : 6.93875 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-97.0269,47.4699,2228.99)
-Point[1] Position= (-97.0858,47.4216,2228.98)
+Point[0] Position= (55.9117,-84.8819,1428.29)
+Point[1] Position= (55.9492,-84.8205,1428.3)
 
-TrackID =782 : ParentID=747 : TrackStatus=1
+TrackID =762 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.0244 15.9491 10.7843 keV
-Vertex : -0.0957449 0.0555823 2.22102 m    Global time : 7.6018 ns 
+Original momentum : -14.1716 45.0388 6.52519 keV
+Vertex : 0.0557215 -0.0845096 1.42239 m    Global time : 6.91004 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-95.7449,55.5823,2221.02)
-Point[1] Position= (-95.7238,55.5948,2221.02)
+Point[0] Position= (55.7215,-84.5096,1422.39)
+Point[1] Position= (55.6967,-84.4307,1422.4)
 
-TrackID =781 : ParentID=747 : TrackStatus=1
+TrackID =761 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -45.7985 -19.8419 -31.7174 keV
-Vertex : -0.091153 0.0559608 2.21433 m    Global time : 7.53245 ns 
+Original momentum : -16.4714 54.1299 8.5669 keV
+Vertex : 0.0554181 -0.0839133 1.41287 m    Global time : 6.86372 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-91.153,55.9608,2214.33)
-Point[1] Position= (-91.2882,55.9022,2214.23)
+Point[0] Position= (55.4181,-83.9133,1412.87)
+Point[1] Position= (55.3733,-83.7659,1412.89)
 
-TrackID =746 : ParentID=723 : TrackStatus=1
+TrackID =760 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.24142 116.056 10.795 keV
-Vertex : -0.0706012 0.0473434 2.12402 m    Global time : 7.09086 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-70.6012,47.3434,2124.02)
-Point[1] Position= (-70.5167,48.9152,2124.17)
-Point[2] Position= (-69.813,49.6535,2124.23)
-Point[3] Position= (-69.5932,49.8627,2124.48)
+Original momentum : 12.2728 41.1925 4.74738 keV
+Vertex : 0.0539495 -0.0810675 1.36657 m    Global time : 6.63844 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (53.9495,-81.0675,1366.57)
+Point[1] Position= (53.9667,-81.0098,1366.57)
 
-TrackID =745 : ParentID=723 : TrackStatus=1
+TrackID =759 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 41.0652 -39.5816 5.45119 keV
-Vertex : -0.0698318 0.0468276 2.10087 m    Global time : 7.01357 ns 
+Original momentum : 71.481 52.2679 12.0153 keV
+Vertex : 0.0524338 -0.0782531 1.31871 m    Global time : 6.40564 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-69.8318,46.8276,2100.87)
-Point[1] Position= (-69.7214,46.7212,2100.88)
-Point[2] Position= (-69.7061,46.732,2100.86)
+Point[0] Position= (52.4338,-78.2531,1318.71)
+Point[1] Position= (53.0258,-77.8202,1318.81)
+Point[2] Position= (52.9503,-77.8948,1318.9)
 
-TrackID =744 : ParentID=723 : TrackStatus=1
+TrackID =758 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.742 62.1668 2.14912 keV
-Vertex : -0.0674935 0.0452607 2.03051 m    Global time : 6.77869 ns 
+Original momentum : 27.6588 46.9562 5.92325 keV
+Vertex : 0.0507636 -0.0753806 1.2675 m    Global time : 6.15664 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-67.4935,45.2607,2030.51)
-Point[1] Position= (-67.5875,45.507,2030.52)
+Point[0] Position= (50.7636,-75.3806,1267.5)
+Point[1] Position= (50.8314,-75.2655,1267.52)
 
-TrackID =743 : ParentID=723 : TrackStatus=1
+TrackID =757 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -56.5546 6.56077 1.13983 keV
-Vertex : -0.0669778 0.0449151 2.015 m    Global time : 6.7269 ns 
+Original momentum : -41.5287 11.6912 4.71838 keV
+Vertex : 0.0484041 -0.0714214 1.19626 m    Global time : 5.81024 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-66.9778,44.9151,2015)
-Point[1] Position= (-67.1299,44.9328,2015)
+Point[0] Position= (48.4041,-71.4214,1196.26)
+Point[1] Position= (48.3455,-71.4049,1196.27)
 
-TrackID =742 : ParentID=723 : TrackStatus=1
+TrackID =756 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.38036 41.9389 0.613757 keV
-Vertex : -0.0656522 0.044027 1.97512 m    Global time : 6.59377 ns 
+Original momentum : -15.7046 35.741 4.71373 keV
+Vertex : 0.0470074 -0.0690163 1.15377 m    Global time : 5.60364 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-65.6522,44.027,1975.12)
-Point[1] Position= (-65.6607,44.0833,1975.12)
+Point[0] Position= (47.0074,-69.0163,1153.77)
+Point[1] Position= (46.9896,-68.9758,1153.78)
 
-TrackID =741 : ParentID=723 : TrackStatus=1
+TrackID =755 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.0162 -29.3742 3.38751 keV
-Vertex : -0.0646931 0.0433847 1.94627 m    Global time : 6.49747 ns 
+Original momentum : 48.5646 -8.72576 1.40001 keV
+Vertex : 0.0453069 -0.0661411 1.10228 m    Global time : 5.35331 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-64.6931,43.3847,1946.27)
-Point[1] Position= (-64.6535,43.3459,1946.28)
+Point[0] Position= (45.3069,-66.1411,1102.28)
+Point[1] Position= (45.3993,-66.1577,1102.28)
 
-TrackID =740 : ParentID=723 : TrackStatus=1
+TrackID =754 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.20309 -85.5911 9.04022 keV
-Vertex : -0.0645679 0.0433009 1.94251 m    Global time : 6.4849 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-64.5679,43.3009,1942.51)
-Point[1] Position= (-64.5846,42.6522,1942.58)
-Point[2] Position= (-64.5851,42.6661,1942.58)
+Original momentum : 23.1242 -21.9939 -0.535921 keV
+Vertex : 0.0427003 -0.0618442 1.02542 m    Global time : 4.97966 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (42.7003,-61.8442,1025.42)
+Point[1] Position= (42.7169,-61.86,1025.42)
 
-TrackID =739 : ParentID=723 : TrackStatus=1
+TrackID =753 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -52.8729 43.3312 1.83723 keV
-Vertex : -0.0622754 0.0417656 1.87354 m    Global time : 6.25466 ns 
+Original momentum : 42.6777 -47.4869 1.58017 keV
+Vertex : 4.16883 -6.02558 99.6541 cm   Global time : 4.83928 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-62.2754,41.7656,1873.54)
-Point[1] Position= (-62.4994,41.9491,1873.55)
+Point[0] Position= (41.6883,-60.2558,996.541)
+Point[1] Position= (41.8406,-60.4253,996.547)
 
-TrackID =738 : ParentID=723 : TrackStatus=1
+TrackID =752 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.0117 8.87442 2.34967 keV
-Vertex : -0.0596713 0.040021 1.7952 m    Global time : 5.99313 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-59.6713,40.021,1795.2)
-Point[1] Position= (-59.6353,40.0299,1795.21)
+Original momentum : 32.0448 -115.267 12.5373 keV
+Vertex : 4.15861 -6.00856 99.3577 cm   Global time : 4.82487 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (41.5861,-60.0856,993.577)
+Point[1] Position= (42.0397,-61.7171,993.754)
+Point[2] Position= (42.5664,-62.2286,992.926)
+Point[3] Position= (42.726,-62.1932,992.463)
+Point[4] Position= (42.6343,-62.2069,992.482)
 
-TrackID =737 : ParentID=723 : TrackStatus=1
+TrackID =751 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.35956 -32.3131 1.75663 keV
-Vertex : -0.055457 0.037195 1.66839 m    Global time : 5.56977 ns 
+Original momentum : 7.27127 32.7813 3.27545 keV
+Vertex : 3.81484 -5.43514 89.7589 cm   Global time : 4.35824 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-55.457,37.195,1668.39)
-Point[1] Position= (-55.4568,37.1711,1668.39)
+Point[0] Position= (38.1484,-54.3514,897.589)
+Point[1] Position= (38.1543,-54.3249,897.591)
 
-TrackID =736 : ParentID=723 : TrackStatus=1
+TrackID =750 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -46.8951 -16.085 1.2027 keV
-Vertex : -0.0450706 0.0302324 1.35588 m    Global time : 4.5265 ns 
+Original momentum : 30.1831 -24.2268 -0.429064 keV
+Vertex : 3.80868 -5.42554 89.5952 cm   Global time : 4.35029 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-45.0706,30.2324,1355.88)
-Point[1] Position= (-45.1609,30.2014,1355.88)
+Point[0] Position= (38.0868,-54.2554,895.952)
+Point[1] Position= (38.1199,-54.2819,895.952)
 
-TrackID =735 : ParentID=723 : TrackStatus=1
+TrackID =749 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.885 -24.8499 2.35856 keV
-Vertex : -0.0385459 0.0258587 1.15953 m    Global time : 3.871 ns 
+Original momentum : 45.8939 19.1091 2.88961 keV
+Vertex : 3.72586 -5.29737 87.4256 cm   Global time : 4.24481 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-38.5459,25.8587,1159.53)
-Point[1] Position= (-38.5288,25.8393,1159.54)
+Point[0] Position= (37.2586,-52.9737,874.256)
+Point[1] Position= (37.3478,-52.9365,874.261)
+
+TrackID =748 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 138.877 -19.8475 21.5025 keV
+Vertex : 3.60151 -5.10625 84.2358 cm   Global time : 4.08974 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (36.0151,-51.0625,842.358)
+Point[1] Position= (36.886,-51.187,842.492)
+Point[2] Position= (38.8331,-50.8294,841.909)
+Point[3] Position= (38.926,-50.7033,843.262)
+Point[4] Position= (38.854,-50.8132,842.993)
+Point[5] Position= (38.7691,-50.6244,842.595)
 
-TrackID =734 : ParentID=723 : TrackStatus=1
+TrackID =865 : ParentID=748 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.9913 -56.8608 4.16456 keV
-Vertex : -0.0383887 0.0257533 1.1548 m    Global time : 3.85521 ns 
+Original momentum : -42.4343 -12.0572 3.1751 keV
+Vertex : 3.8854 -5.08132 84.2993 cm   Global time : 4.15587 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-38.3887,25.7533,1154.8)
-Point[1] Position= (-38.4509,25.5764,1154.82)
+Point[0] Position= (38.854,-50.8132,842.993)
+Point[1] Position= (38.7915,-50.831,842.998)
 
-TrackID =733 : ParentID=723 : TrackStatus=1
+TrackID =864 : ParentID=748 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.9947 -56.8932 4.16159 keV
-Vertex : -0.0358032 0.0240197 1.07697 m    Global time : 3.59537 ns 
+Original momentum : 7.30536 15.607 33.3553 keV
+Vertex : 3.6886 -5.1187 84.2492 cm   Global time : 4.10083 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-35.8032,24.0197,1076.97)
-Point[1] Position= (-35.8507,23.8511,1076.98)
+Point[0] Position= (36.886,-51.187,842.492)
+Point[1] Position= (36.8935,-51.171,842.527)
 
-TrackID =732 : ParentID=723 : TrackStatus=1
+TrackID =747 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.0158 32.3053 0.182552 keV
-Vertex : -2.81379 1.88788 84.6329 cm   Global time : 2.8254 ns 
+Original momentum : 31.0481 16.6007 1.49805 keV
+Vertex : 3.44208 -4.86912 80.236 cm   Global time : 3.89533 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-28.1379,18.8788,846.329)
-Point[1] Position= (-28.1818,18.9261,846.329)
+Point[0] Position= (34.4208,-48.6912,802.36)
+Point[1] Position= (34.4484,-48.6764,802.362)
 
-TrackID =731 : ParentID=723 : TrackStatus=1
+TrackID =746 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.15933 37.3041 0.865852 keV
-Vertex : -2.50452 1.68041 75.3294 cm   Global time : 2.51481 ns 
+Original momentum : -12.7799 30.3583 3.89557 keV
+Vertex : 3.40526 -4.81562 79.3318 cm   Global time : 3.85137 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-25.0452,16.8041,753.294)
-Point[1] Position= (-25.0365,16.8437,753.295)
+Point[0] Position= (34.0526,-48.1562,793.318)
+Point[1] Position= (34.0426,-48.1325,793.321)
 
-TrackID =730 : ParentID=723 : TrackStatus=1
+TrackID =745 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.916 33.4514 0.0696831 keV
-Vertex : -2.08955 1.40206 62.8518 cm   Global time : 2.09825 ns 
+Original momentum : 24.0473 -23.81 -0.837548 keV
+Vertex : 3.19739 -4.52837 74.4944 cm   Global time : 3.61624 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-20.8955,14.0206,628.518)
-Point[1] Position= (-20.91,14.053,628.518)
+Point[0] Position= (31.9739,-45.2837,744.944)
+Point[1] Position= (31.9935,-45.3031,744.943)
 
-TrackID =729 : ParentID=723 : TrackStatus=1
+TrackID =744 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.0772 -31.5771 2.11867 keV
-Vertex : -2.02839 1.36105 61.0131 cm   Global time : 2.03687 ns 
+Original momentum : -11.0062 -31.1203 0.184771 keV
+Vertex : 3.08643 -4.37807 71.963 cm   Global time : 3.49319 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-20.2839,13.6105,610.131)
-Point[1] Position= (-20.276,13.5858,610.132)
+Point[0] Position= (30.8643,-43.7807,719.63)
+Point[1] Position= (30.8558,-43.8047,719.63)
 
-TrackID =728 : ParentID=723 : TrackStatus=1
+TrackID =743 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 52.2984 32.4292 4.7329 keV
-Vertex : -2.00691 1.34665 60.3673 cm   Global time : 2.01531 ns 
+Original momentum : -51.8108 -19.9451 5.49118 keV
+Vertex : 3.07048 -4.35638 71.5992 cm   Global time : 3.4755 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-20.0691,13.4665,603.673)
-Point[1] Position= (-19.8976,13.5728,603.688)
+Point[0] Position= (30.7048,-43.5638,715.992)
+Point[1] Position= (30.5722,-43.6148,716.006)
 
-TrackID =727 : ParentID=723 : TrackStatus=1
+TrackID =742 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.69334 40.9863 0.513114 keV
-Vertex : -1.94623 1.30595 58.5427 cm   Global time : 1.9544 ns 
+Original momentum : 37.2043 -34.2706 -0.0114546 keV
+Vertex : 3.00523 -4.26617 70.0866 cm   Global time : 3.40199 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-19.4623,13.0595,585.427)
-Point[1] Position= (-19.4736,13.113,585.428)
+Point[0] Position= (30.0523,-42.6617,700.866)
+Point[1] Position= (30.1274,-42.7309,700.866)
 
-TrackID =726 : ParentID=723 : TrackStatus=1
+TrackID =741 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.3217 -13.0206 0.37506 keV
-Vertex : -1.52625 1.02415 45.9109 cm   Global time : 1.53269 ns 
+Original momentum : 32.6854 2.69291 0.254832 keV
+Vertex : 2.52502 -3.59305 58.9963 cm   Global time : 2.863 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-15.2625,10.2415,459.109)
-Point[1] Position= (-15.2881,10.2309,459.109)
+Point[0] Position= (25.2502,-35.9305,589.963)
+Point[1] Position= (25.2751,-35.9284,589.964)
 
-TrackID =725 : ParentID=723 : TrackStatus=1
+TrackID =740 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.2395 13.6063 -0.257948 keV
-Vertex : -1.42542 0.956465 42.8775 cm   Global time : 1.43143 ns 
+Original momentum : -30.8385 -49.1478 3.12252 keV
+Vertex : 2.19741 -3.14184 51.625 cm   Global time : 2.50475 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-14.2542,9.56465,428.775)
-Point[1] Position= (-14.2757,9.57465,428.775)
+Point[0] Position= (21.9741,-31.4184,516.25)
+Point[1] Position= (21.8869,-31.5573,516.259)
 
-TrackID =724 : ParentID=723 : TrackStatus=1
+TrackID =739 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.3329 14.8469 2.38858 keV
-Vertex : -0.154106 0.103473 4.63756 cm   Global time : 154.821 ps 
+Original momentum : 15.8495 -51.0629 0.132337 keV
+Vertex : 1.57619 -2.24328 37.2531 cm   Global time : 1.8064 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.54106,1.03473,46.3756)
-Point[1] Position= (-1.4999,1.05156,46.3783)
+Point[0] Position= (15.7619,-22.4328,372.531)
+Point[1] Position= (15.7984,-22.5506,372.532)
 
-TrackID =721 : ParentID=55 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : 99.5129 -34.8647 658.178 MeV
-Vertex : 49.9978 -9.7613 204.156 nm   Global time : 0.000709584 ps 
+TrackID =738 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -0.436575 36.93 4.34038 keV
+Vertex : 0.987608 -1.37543 23.6465 cm   Global time : 1.14528 ns 
   Current trajectory has 2 points.
-Point[0] Position= (4.99978e-05,-9.7613e-06,0.000204156)
-Point[1] Position= (907.168,-317.83,6000)
+Point[0] Position= (9.87608,-13.7543,236.465)
+Point[1] Position= (9.87564,-13.7173,236.47)
 
-TrackID =719 : ParentID=651 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : -0.234866 -0.32985 1.71694 GeV
-Vertex : -85.3806 -96.2604 572.174 nm   Global time : 0.00196053 ps 
-  Current trajectory has 4 points.
-Point[0] Position= (-8.53806e-05,-9.62604e-05,0.000572174)
-Point[1] Position= (-116.005,-162.92,848.03)
-Point[2] Position= (-136.794,-192.115,1000)
-Point[3] Position= (-820.761,-1152.69,6000)
+TrackID =737 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 18.6838 48.7013 6.22167 keV
+Vertex : 0.953808 -1.32436 22.8431 cm   Global time : 1.10625 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (9.53808,-13.2436,228.431)
+Point[1] Position= (9.57939,-13.1359,228.444)
 
-TrackID =718 : ParentID=651 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : -61.5268 -4.31085 269.324 MeV
-Vertex : -85.3806 -96.2604 572.174 nm   Global time : 0.00196053 ps 
-  Current trajectory has 4 points.
-Point[0] Position= (-8.53806e-05,-9.62604e-05,0.000572174)
-Point[1] Position= (-199.511,-13.9787,873.328)
-Point[2] Position= (-228.449,-16.0062,1000)
-Point[3] Position= (-1370.69,-96.037,6000)
+TrackID =736 : ParentID=560 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -165.386 403.953 709.996 keV
+Vertex : 0.922018 -1.27666 22.087 cm   Global time : 1.06952 ns 
+  Current trajectory has 47 points.
+Point[0] Position= (9.22018,-12.7666,220.87)
+Point[1] Position= (-115.63,116.331,435.843)
+Point[2] Position= (-136.913,145.79,467.642)
+Point[3] Position= (-142.248,151.582,476.175)
+Point[4] Position= (-146.852,153.318,496.043)
+Point[5] Position= (-146.962,150.928,568.854)
+Point[6] Position= (-137.87,144.886,579.81)
+Point[7] Position= (-115.748,118.599,592.807)
+Point[8] Position= (-111.141,113.452,597.302)
+Point[9] Position= (-110.768,112.901,597.791)
+Point[10] Position= (-91.4226,84.8188,611.098)
+Point[11] Position= (-85.043,76.6916,617.394)
+Point[12] Position= (-85.0246,76.6601,617.42)
+Point[13] Position= (-59.3225,41.6545,646.718)
+Point[14] Position= (-57.9796,40.0273,648.283)
+Point[15] Position= (-22.9233,-31.3159,732.39)
+Point[16] Position= (1.67779,-99.9261,770.898)
+Point[17] Position= (30.4261,-174.554,808.053)
+Point[18] Position= (24.6125,-198.48,816.566)
+Point[19] Position= (31.6678,-209.572,822.834)
+Point[20] Position= (43.4115,-204.696,850.679)
+Point[21] Position= (46.8398,-194.52,881.871)
+Point[22] Position= (47.6216,-194.248,882.259)
+Point[23] Position= (76.0298,-184.985,895.886)
+Point[24] Position= (100.682,-185.023,901.796)
+Point[25] Position= (103.978,-187.443,902.476)
+Point[26] Position= (157.104,-188.468,876.041)
+Point[27] Position= (186.746,-200.639,891.01)
+Point[28] Position= (192.106,-204.258,891.166)
+Point[29] Position= (196.201,-211.025,891.918)
+Point[30] Position= (220.207,-219.311,879.337)
+Point[31] Position= (219.675,-220.502,872.561)
+Point[32] Position= (234.65,-221.24,862.896)
+Point[33] Position= (244.575,-220.093,852.261)
+Point[34] Position= (245.511,-223.49,851.99)
+Point[35] Position= (245.64,-225.925,850.828)
+Point[36] Position= (246.822,-232.122,847.962)
+Point[37] Position= (244.538,-236.342,844.42)
+Point[38] Position= (247.616,-236.019,847.655)
+Point[39] Position= (248.073,-236.068,850.214)
+Point[40] Position= (248.957,-235.777,852.928)
+Point[41] Position= (249.466,-233.564,852.94)
+Point[42] Position= (248.469,-233.825,854.466)
+Point[43] Position= (248.218,-235.081,854.304)
+Point[44] Position= (248.443,-235.673,854.426)
+Point[45] Position= (248.679,-235.784,854.597)
+Point[46] Position= (248.716,-235.767,854.544)
+
+TrackID =890 : ParentID=736 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -12.2063 32.7556 0.669023 keV
+Vertex : 24.8073 -23.6068 85.0214 cm   Global time : 6.40148 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (248.073,-236.068,850.214)
+Point[1] Position= (248.065,-236.047,850.214)
+
+TrackID =889 : ParentID=736 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -32.8451 2.70526 -20.1416 keV
+Vertex : 24.564 -22.5925 85.0828 cm   Global time : 6.22472 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (245.64,-225.925,850.828)
+Point[1] Position= (245.614,-225.923,850.812)
+
+TrackID =888 : ParentID=736 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 57.8857 -4.79816 14.6804 keV
+Vertex : 24.5511 -22.349 85.199 cm   Global time : 6.20289 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (245.511,-223.49,851.99)
+Point[1] Position= (245.621,-223.499,852.018)
+
+TrackID =887 : ParentID=736 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -17.2829 65.2641 -43.9415 keV
+Vertex : 21.9675 -22.0502 87.2561 cm   Global time : 5.99738 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (219.675,-220.502,872.561)
+Point[1] Position= (219.611,-220.26,872.399)
+
+TrackID =886 : ParentID=736 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -60.8349 -67.2622 -18.9233 keV
+Vertex : 19.6201 -21.1025 89.1918 cm   Global time : 5.8248 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (196.201,-211.025,891.918)
+Point[1] Position= (195.889,-211.369,891.821)
+Point[2] Position= (195.822,-211.371,891.755)
 
-TrackID =722 : ParentID=54 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : 0.0210353 -0.29235 10.3934 GeV
-Vertex : -3.18021e-295 9.23194e-297 2.00079e-293 fm   Global time : 8.62177e-305 ps 
+TrackID =885 : ParentID=736 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 26.9558 2.54816 34.3109 keV
+Vertex : 19.2106 -20.4258 89.1166 cm   Global time : 5.77944 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-3.18021e-307,9.23194e-309,2.00079e-305)
-Point[1] Position= (7.57711e-06,-0.000105307,0.00374381)
+Point[0] Position= (192.106,-204.258,891.166)
+Point[1] Position= (192.132,-204.256,891.2)
 
-TrackID =53 : ParentID=45 : TrackStatus=1
-Particle name : eta  PDG code : 221  Charge : 0
-Original momentum : -0.0523895 -0.289938 -1.59192 GeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+TrackID =884 : ParentID=736 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -10.7216 -32.7579 25.3854 keV
+Vertex : 18.6746 -20.0639 89.101 cm   Global time : 5.74201 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (-1.8345e-307,-2.05657e-308,1.33146e-305)
+Point[0] Position= (186.746,-200.639,891.01)
+Point[1] Position= (186.736,-200.67,891.033)
 
-TrackID =789 : ParentID=53 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : -125.935 -39.3921 -610.417 MeV
-Vertex : -1.8345e-295 -2.05657e-296 1.33146e-293 fm   Global time : 6.40431e-305 ps 
+TrackID =883 : ParentID=736 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 45.3116 -189.501 -239.957 keV
+Vertex : 15.7104 -18.8468 87.6041 cm   Global time : 5.58854 ns 
+  Current trajectory has 17 points.
+Point[0] Position= (157.104,-188.468,876.041)
+Point[1] Position= (161.785,-193.926,871.19)
+Point[2] Position= (162.578,-198.376,870.695)
+Point[3] Position= (152.706,-212.497,874.355)
+Point[4] Position= (152.777,-212.998,874.948)
+Point[5] Position= (153.796,-215.663,878.014)
+Point[6] Position= (151.643,-209.219,877.119)
+Point[7] Position= (154.815,-209.739,874.158)
+Point[8] Position= (154.995,-213.727,874.346)
+Point[9] Position= (157.078,-211.449,873.168)
+Point[10] Position= (157.343,-210.649,872.757)
+Point[11] Position= (157.048,-210.383,872.314)
+Point[12] Position= (157.239,-210.309,871.03)
+Point[13] Position= (157.546,-209.454,870.131)
+Point[14] Position= (157.95,-208.773,870.019)
+Point[15] Position= (158.128,-208.827,869.811)
+Point[16] Position= (158.127,-208.832,869.81)
+
+TrackID =897 : ParentID=883 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -4.77969 -39.708 6.18482 keV
+Vertex : 15.795 -20.8773 87.0019 cm   Global time : 6.02759 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.8345e-307,-2.05657e-308,1.33146e-305)
-Point[1] Position= (-1.89552e-07,-5.92912e-08,-9.18772e-07)
+Point[0] Position= (157.95,-208.773,870.019)
+Point[1] Position= (157.946,-208.806,870.024)
 
-TrackID =788 : ParentID=53 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : -58.8615 -64.2144 -385.127 MeV
-Vertex : -1.8345e-295 -2.05657e-296 1.33146e-293 fm   Global time : 6.40431e-305 ps 
+TrackID =896 : ParentID=883 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -31.582 2.48722 -8.60055 keV
+Vertex : 15.7239 -21.0309 87.103 cm   Global time : 5.99706 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.8345e-307,-2.05657e-308,1.33146e-305)
-Point[1] Position= (-2.44101e-05,-2.663e-05,-0.000159714)
+Point[0] Position= (157.239,-210.309,871.03)
+Point[1] Position= (157.221,-210.308,871.025)
 
-TrackID =787 : ParentID=53 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : 132.396 -186.387 -596.68 MeV
-Vertex : -1.8345e-295 -2.05657e-296 1.33146e-293 fm   Global time : 6.40431e-305 ps 
+TrackID =895 : ParentID=883 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -34.5051 -12.2986 15.3134 keV
+Vertex : 15.7343 -21.0649 87.2757 cm   Global time : 5.97366 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.8345e-307,-2.05657e-308,1.33146e-305)
-Point[1] Position= (2.6487e-05,-3.72883e-05,-0.000119371)
+Point[0] Position= (157.343,-210.649,872.757)
+Point[1] Position= (157.315,-210.659,872.77)
 
-TrackID =52 : ParentID=45 : TrackStatus=1
-Particle name : unknown : rho+  PDG code : 213  Charge : 1
-Original momentum : 0.123192 -0.0912588 -1.30392 GeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+TrackID =894 : ParentID=883 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -36.038 -4.08686 -41.0125 keV
+Vertex : 15.4815 -20.9739 87.4158 cm   Global time : 5.89038 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (4.43257e-307,-4.79843e-307,6.71372e-306)
+Point[0] Position= (154.815,-209.739,874.158)
+Point[1] Position= (154.758,-209.746,874.094)
 
-TrackID =805 : ParentID=797 : TrackStatus=1
+TrackID =893 : ParentID=883 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.1331 -23.2217 -17.9461 keV
-Vertex : 10.6675 45.1724 -55.1575 cm   Global time : 2.98087 ns 
+Original momentum : 34.7672 16.462 31.0465 keV
+Vertex : 15.3796 -21.5663 87.8014 cm   Global time : 5.79505 ns 
   Current trajectory has 2 points.
-Point[0] Position= (106.675,451.724,-551.575)
-Point[1] Position= (106.684,451.71,-551.586)
+Point[0] Position= (153.796,-215.663,878.014)
+Point[1] Position= (153.839,-215.642,878.053)
 
-TrackID =804 : ParentID=797 : TrackStatus=1
+TrackID =892 : ParentID=883 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.9034 18.666 18.669 keV
-Vertex : 8.86726 37.3741 -45.6928 cm   Global time : 2.46825 ns 
+Original momentum : -43.9865 -13.4309 3.56483 keV
+Vertex : 15.2777 -21.2998 87.4948 cm   Global time : 5.76146 ns 
   Current trajectory has 2 points.
-Point[0] Position= (88.6726,373.741,-456.928)
-Point[1] Position= (88.6989,373.757,-456.912)
+Point[0] Position= (152.777,-212.998,874.948)
+Point[1] Position= (152.729,-213.013,874.951)
+
+TrackID =891 : ParentID=883 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 42.7949 51.8579 -71.5151 keV
+Vertex : 16.1785 -19.3926 87.119 cm   Global time : 5.6388 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (161.785,-193.926,871.19)
+Point[1] Position= (162.036,-193.622,870.771)
+Point[2] Position= (162.015,-193.697,870.707)
 
-TrackID =803 : ParentID=797 : TrackStatus=1
+TrackID =882 : ParentID=736 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.22364 -45.8741 -46.0355 keV
-Vertex : 7.89404 33.1403 -40.5725 cm   Global time : 2.19055 ns 
+Original momentum : 2.10754 -5.57538 33.6917 keV
+Vertex : 10.3978 -18.7443 90.2476 cm   Global time : 5.35478 ns 
   Current trajectory has 2 points.
-Point[0] Position= (78.9404,331.403,-405.725)
-Point[1] Position= (78.9238,331.298,-405.83)
+Point[0] Position= (103.978,-187.443,902.476)
+Point[1] Position= (103.979,-187.446,902.497)
 
-TrackID =802 : ParentID=797 : TrackStatus=1
+TrackID =881 : ParentID=736 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.1742 14.5142 2.43205 keV
-Vertex : 7.59391 31.8307 -38.9869 cm   Global time : 2.1046 ns 
+Original momentum : 15.0397 30.0681 8.71471 keV
+Vertex : 10.0682 -18.5023 90.1796 cm   Global time : 5.33573 ns 
   Current trajectory has 2 points.
-Point[0] Position= (75.9391,318.307,-389.869)
-Point[1] Position= (75.9083,318.319,-389.867)
+Point[0] Position= (100.682,-185.023,901.796)
+Point[1] Position= (100.692,-185.004,901.802)
 
-TrackID =801 : ParentID=797 : TrackStatus=1
+TrackID =880 : ParentID=736 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.3226 101.103 65.9889 keV
-Vertex : 7.10636 29.7197 -36.4307 cm   Global time : 1.96602 ns 
-  Current trajectory has 6 points.
-Point[0] Position= (71.0636,297.197,-364.307)
-Point[1] Position= (71.298,297.757,-363.942)
-Point[2] Position= (71.7975,297.031,-363.9)
-Point[3] Position= (72.061,296.867,-363.609)
-Point[4] Position= (72.047,296.896,-363.571)
-Point[5] Position= (72.017,296.906,-363.557)
+Original momentum : 49.2422 -26.8002 4.69635 keV
+Vertex : 4.34115 -20.4696 85.0679 cm   Global time : 4.91802 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (43.4115,-204.696,850.679)
+Point[1] Position= (43.4931,-204.74,850.687)
 
-TrackID =809 : ParentID=801 : TrackStatus=1
+TrackID =879 : ParentID=736 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.34479 27.1486 -17.4195 keV
-Vertex : 7.2047 29.6896 -36.3571 cm   Global time : 1.99919 ns 
+Original momentum : 34.0998 -25.728 -15.1818 keV
+Vertex : 3.16678 -20.9572 82.2834 cm   Global time : 4.7869 ns 
   Current trajectory has 2 points.
-Point[0] Position= (72.047,296.896,-363.571)
-Point[1] Position= (72.0477,296.91,-363.58)
+Point[0] Position= (31.6678,-209.572,822.834)
+Point[1] Position= (31.7035,-209.599,822.818)
 
-TrackID =808 : ParentID=801 : TrackStatus=1
+TrackID =878 : ParentID=736 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.9458 23.6786 -8.00825 keV
-Vertex : 7.2061 29.6867 -36.3609 cm   Global time : 1.99763 ns 
+Original momentum : -65.2261 18.853 14.9317 keV
+Vertex : 3.04261 -17.4554 80.8053 cm   Global time : 4.60707 ns 
   Current trajectory has 2 points.
-Point[0] Position= (72.061,296.867,-363.609)
-Point[1] Position= (72.0786,296.883,-363.615)
+Point[0] Position= (30.4261,-174.554,808.053)
+Point[1] Position= (30.1381,-174.471,808.119)
 
-TrackID =807 : ParentID=801 : TrackStatus=1
+TrackID =877 : ParentID=736 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.396 27.4204 -1.49449 keV
-Vertex : 7.1298 29.7757 -36.3942 cm   Global time : 1.97576 ns 
+Original momentum : -12.7487 -43.5485 -27.5362 keV
+Vertex : -5.79796 4.00273 64.8283 cm   Global time : 3.41909 ns 
   Current trajectory has 2 points.
-Point[0] Position= (71.298,297.757,-363.942)
-Point[1] Position= (71.3474,297.79,-363.944)
+Point[0] Position= (-57.9796,40.0273,648.283)
+Point[1] Position= (-58.0085,39.9286,648.221)
 
-TrackID =800 : ParentID=797 : TrackStatus=1
+TrackID =876 : ParentID=736 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -4.20339 -38.1985 -36.3896 keV
-Vertex : 4.01272 16.6297 -20.4682 cm   Global time : 1.10288 ns 
+Original momentum : -36.9948 -16.4072 17.32 keV
+Vertex : -5.93225 4.16545 64.6718 cm   Global time : 3.40801 ns 
   Current trajectory has 2 points.
-Point[0] Position= (40.1272,166.297,-204.682)
-Point[1] Position= (40.1177,166.211,-204.764)
+Point[0] Position= (-59.3225,41.6545,646.718)
+Point[1] Position= (-59.3764,41.6306,646.743)
 
-TrackID =799 : ParentID=797 : TrackStatus=1
+TrackID =875 : ParentID=736 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 201.309 -55.9814 -82.4294 keV
-Vertex : 2.76331 11.4046 -14.0542 cm   Global time : 756.928 ps 
-  Current trajectory has 13 points.
-Point[0] Position= (27.6331,114.046,-140.542)
-Point[1] Position= (28.8299,113.713,-141.032)
-Point[2] Position= (33.2251,108.205,-143.54)
-Point[3] Position= (34.7225,102.671,-143.919)
-Point[4] Position= (34.3854,98.7652,-146.769)
-Point[5] Position= (35.1786,95.0466,-147.519)
-Point[6] Position= (35.1979,94.4417,-147.733)
-Point[7] Position= (34.484,92.0738,-148.859)
-Point[8] Position= (35.3789,90.9761,-149.277)
-Point[9] Position= (35.4606,90.3126,-149.53)
-Point[10] Position= (35.8581,89.5146,-148.581)
-Point[11] Position= (36.1766,88.9372,-148.456)
-Point[12] Position= (36.123,88.8686,-148.388)
+Original momentum : 14.1846 -54.492 -55.2158 keV
+Vertex : -8.50246 7.66601 61.742 cm   Global time : 3.19074 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-85.0246,76.6601,617.42)
+Point[1] Position= (-84.9384,76.3288,617.084)
+Point[2] Position= (-84.9382,76.3271,617.083)
 
-TrackID =813 : ParentID=799 : TrackStatus=1
+TrackID =874 : ParentID=736 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -36.456 -0.411761 15.1371 keV
-Vertex : 3.54606 9.03126 -14.953 cm   Global time : 1.04834 ns 
+Original momentum : -22.2495 19.0244 40.9691 keV
+Vertex : -8.5043 7.66916 61.7394 cm   Global time : 3.19055 ns 
   Current trajectory has 2 points.
-Point[0] Position= (35.4606,90.3126,-149.53)
-Point[1] Position= (35.4189,90.3121,-149.513)
+Point[0] Position= (-85.043,76.6916,617.394)
+Point[1] Position= (-85.0875,76.7296,617.476)
 
-TrackID =812 : ParentID=799 : TrackStatus=1
+TrackID =873 : ParentID=736 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.66461 12.2876 -30.4113 keV
-Vertex : 3.53789 9.09761 -14.9277 cm   Global time : 1.03808 ns 
+Original momentum : -23.2862 10.8497 37.5337 keV
+Vertex : -9.14226 8.48188 61.1098 cm   Global time : 3.14033 ns 
   Current trajectory has 2 points.
-Point[0] Position= (35.3789,90.9761,-149.277)
-Point[1] Position= (35.3842,90.9859,-149.301)
+Point[0] Position= (-91.4226,84.8188,611.098)
+Point[1] Position= (-91.4592,84.8359,611.157)
 
-TrackID =811 : ParentID=799 : TrackStatus=1
+TrackID =872 : ParentID=736 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.1096 -7.77 -9.67034 keV
-Vertex : 3.51979 9.44417 -14.7733 cm   Global time : 985.192 ps 
+Original momentum : -12.8543 34.8563 68.7491 keV
+Vertex : -11.0768 11.2901 59.7791 cm   Global time : 2.99038 ns 
   Current trajectory has 2 points.
-Point[0] Position= (35.1979,94.4417,-147.733)
-Point[1] Position= (35.2505,94.4315,-147.746)
+Point[0] Position= (-110.768,112.901,597.791)
+Point[1] Position= (-110.845,113.108,598.199)
 
-TrackID =810 : ParentID=799 : TrackStatus=1
+TrackID =871 : ParentID=736 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 46.2361 48.1083 -27.6412 keV
-Vertex : 2.88299 11.3713 -14.1032 cm   Global time : 767.998 ps 
+Original momentum : 31.3323 20.205 0.029401 keV
+Vertex : -11.1141 11.3452 59.7302 cm   Global time : 2.98697 ns 
   Current trajectory has 2 points.
-Point[0] Position= (28.8299,113.713,-141.032)
-Point[1] Position= (29.0547,113.947,-141.167)
+Point[0] Position= (-111.141,113.452,597.302)
+Point[1] Position= (-111.11,113.472,597.302)
 
-TrackID =798 : ParentID=797 : TrackStatus=1
+TrackID =870 : ParentID=736 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.5356 32.485 16.4784 keV
-Vertex : 0.819895 3.36644 -4.14832 cm   Global time : 223.446 ps 
+Original momentum : -28.5961 -7.93649 17.7484 keV
+Vertex : -11.5748 11.8599 59.2807 cm   Global time : 2.95305 ns 
   Current trajectory has 2 points.
-Point[0] Position= (8.19895,33.6644,-41.4832)
-Point[1] Position= (8.14225,33.7228,-41.4536)
-
-TrackID =790 : ParentID=789 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : -61.3794 -82.887 -434.451 MeV
-Vertex : -1.89552 -0.592912 -9.18772 Ang  Global time : 3.20794e-06 ps 
-  Current trajectory has 4 points.
-Point[0] Position= (-1.89552e-07,-5.92912e-08,-9.18772e-07)
-Point[1] Position= (-119.022,-160.729,-842.456)
-Point[2] Position= (-141.28,-190.786,-1000)
-Point[3] Position= (-847.682,-1144.71,-6000)
+Point[0] Position= (-115.748,118.599,592.807)
+Point[1] Position= (-115.772,118.592,592.822)
 
-TrackID =786 : ParentID=722 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : 0.0303631 -0.121129 6.54372 GeV
-Vertex : 0.00757711 -0.105307 3.74381 um   Global time : 0.012494 ps 
+TrackID =869 : ParentID=736 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 2.69967 32.5386 16.6583 keV
+Vertex : -14.6962 15.0928 56.8854 cm   Global time : 2.7413 ns 
   Current trajectory has 2 points.
-Point[0] Position= (7.57711e-06,-0.000105307,0.00374381)
-Point[1] Position= (27.8402,-111.064,6000)
+Point[0] Position= (-146.962,150.928,568.854)
+Point[1] Position= (-146.96,150.951,568.865)
 
-TrackID =785 : ParentID=722 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : -0.00932788 -0.171221 3.84967 GeV
-Vertex : 0.00757711 -0.105307 3.74381 um   Global time : 0.012494 ps 
+TrackID =868 : ParentID=736 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -12.0923 -32.5181 -5.29141 keV
+Vertex : -14.6852 15.3318 49.6043 cm   Global time : 2.44857 ns 
   Current trajectory has 2 points.
-Point[0] Position= (7.57711e-06,-0.000105307,0.00374381)
-Point[1] Position= (-14.5382,-266.86,6000)
+Point[0] Position= (-146.852,153.318,496.043)
+Point[1] Position= (-146.859,153.297,496.039)
 
-TrackID =796 : ParentID=52 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : 56.967 -182.503 -764.313 MeV
-Vertex : 4.43257e-295 -4.79843e-295 6.71372e-294 fm   Global time : 8.76574e-305 ps 
-  Current trajectory has 2 points.
-Point[0] Position= (4.43257e-307,-4.79843e-307,6.71372e-306)
-Point[1] Position= (4.20781e-06,-1.34804e-05,-5.64553e-05)
+TrackID =867 : ParentID=736 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 30.6736 135.882 24.8328 keV
+Vertex : -14.2248 15.1582 47.6175 cm   Global time : 2.36741 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (-142.248,151.582,476.175)
+Point[1] Position= (-141.262,153.158,475.288)
+Point[2] Position= (-141.017,154.308,475.529)
+Point[3] Position= (-141.187,153.591,475.705)
+Point[4] Position= (-141.402,153.635,475.609)
 
-TrackID =51 : ParentID=45 : TrackStatus=1
-Particle name : unknown : rho-  PDG code : -213  Charge : -1
-Original momentum : 0.177917 -0.04267 -6.1605 GeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+TrackID =866 : ParentID=736 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -34.3759 15.7409 -35.4524 keV
+Vertex : -11.563 11.6331 43.5843 cm   Global time : 2.12784 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (9.90814e-309,-6.2358e-308,6.67102e-306)
-
-TrackID =817 : ParentID=51 : TrackStatus=1
-Particle name : pi-  PDG code : -211  Charge : -1
-Original momentum : 0.266364 -0.263612 -4.01216 GeV
-Vertex : 9.90814e-297 -6.2358e-296 6.67102e-294 fm   Global time : 8.63505e-305 ps 
-  Current trajectory has 69 points.
-Point[0] Position= (9.90814e-309,-6.2358e-308,6.67102e-306)
-Point[1] Position= (1.49082,-1.47508,-22.454)
-Point[2] Position= (3.27988,-3.2455,-49.4092)
-Point[3] Position= (9.43954,-9.33843,-142.185)
-Point[4] Position= (11.2364,-11.1149,-169.23)
-Point[5] Position= (16.2511,-16.0709,-244.673)
-Point[6] Position= (19.8302,-19.6063,-298.512)
-Point[7] Position= (24.5577,-24.2742,-369.619)
-Point[8] Position= (39.0944,-38.6191,-588.272)
-Point[9] Position= (41.0241,-40.5241,-617.309)
-Point[10] Position= (53.5698,-52.9066,-806.115)
-Point[11] Position= (56.6143,-55.9119,-851.904)
-Point[12] Position= (60.7121,-59.9554,-913.52)
-Point[13] Position= (63.3133,-62.5224,-952.65)
-Point[14] Position= (68.6069,-67.7447,-1032.27)
-Point[15] Position= (68.6075,-67.7453,-1032.28)
-Point[16] Position= (71.2779,-70.3813,-1072.42)
-Point[17] Position= (79.2068,-78.2036,-1191.48)
-Point[18] Position= (87.282,-86.1696,-1312.78)
-Point[19] Position= (88.4976,-87.3692,-1331.05)
-Point[20] Position= (94.3715,-93.1671,-1419.37)
-Point[21] Position= (94.7457,-93.5361,-1425)
-Point[22] Position= (98.2396,-96.9839,-1477.53)
-Point[23] Position= (102.6,-101.289,-1543.12)
-Point[24] Position= (107.142,-105.77,-1611.43)
-Point[25] Position= (109.203,-107.803,-1642.41)
-Point[26] Position= (117.806,-116.286,-1771.74)
-Point[27] Position= (118.156,-116.63,-1776.99)
-Point[28] Position= (120.132,-118.579,-1806.68)
-Point[29] Position= (127.764,-126.114,-1921.37)
-Point[30] Position= (133.096,-131.378,-2001.5)
-Point[31] Position= (138.271,-136.474,-2079.16)
-Point[32] Position= (145.995,-144.029,-2194.37)
-Point[33] Position= (149.26,-147.222,-2243.06)
-Point[34] Position= (158.211,-155.965,-2376.52)
-Point[35] Position= (158.526,-156.273,-2381.22)
-Point[36] Position= (160.409,-158.113,-2409.32)
-Point[37] Position= (164.986,-162.584,-2477.62)
-Point[38] Position= (172.632,-170.048,-2591.71)
-Point[39] Position= (176.614,-173.934,-2651.1)
-Point[40] Position= (179.244,-176.503,-2690.33)
-Point[41] Position= (185.826,-182.935,-2788.54)
-Point[42] Position= (186.883,-183.967,-2804.29)
-Point[43] Position= (198.192,-194.994,-2972.85)
-Point[44] Position= (204.581,-201.218,-3068.07)
-Point[45] Position= (211.081,-207.556,-3165.01)
-Point[46] Position= (213.524,-209.941,-3201.47)
-Point[47] Position= (214.305,-210.702,-3213.1)
-Point[48] Position= (218.301,-214.607,-3272.77)
-Point[49] Position= (219.871,-216.142,-3296.23)
-Point[50] Position= (221.299,-217.538,-3317.56)
-Point[51] Position= (230.51,-226.556,-3455.28)
-Point[52] Position= (246.316,-242.048,-3691.61)
-Point[53] Position= (252.413,-248.031,-3782.81)
-Point[54] Position= (284.804,-279.807,-4267.27)
-Point[55] Position= (287.473,-282.422,-4307.17)
-Point[56] Position= (297.638,-292.378,-4459.08)
-Point[57] Position= (317.374,-311.721,-4754.06)
-Point[58] Position= (330.689,-324.752,-4953.04)
-Point[59] Position= (334.204,-328.189,-5005.53)
-Point[60] Position= (337.868,-331.771,-5060.26)
-Point[61] Position= (342.869,-336.658,-5135)
-Point[62] Position= (356.197,-349.68,-5334.22)
-Point[63] Position= (371.534,-364.655,-5563.25)
-Point[64] Position= (375.49,-368.516,-5622.3)
-Point[65] Position= (383.134,-375.974,-5736.36)
-Point[66] Position= (389.268,-381.952,-5827.8)
-Point[67] Position= (395.672,-388.189,-5923.24)
-Point[68] Position= (400.822,-393.205,-6000)
-
-TrackID =884 : ParentID=817 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -17.4005 30.1881 -4.35113 keV
-Vertex : 0.395672 -0.388189 -5.92324 m    Global time : 19.856 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (395.672,-388.189,-5923.24)
-Point[1] Position= (395.656,-388.162,-5923.25)
-
-TrackID =883 : ParentID=817 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.1184 36.6979 -4.98474 keV
-Vertex : 0.389268 -0.381952 -5.8278 m    Global time : 19.5361 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (389.268,-381.952,-5827.8)
-Point[1] Position= (389.25,-381.908,-5827.81)
-
-TrackID =882 : ParentID=817 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.1259 19.4679 -0.536187 keV
-Vertex : 0.383134 -0.375974 -5.73636 m    Global time : 19.2296 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (383.134,-375.974,-5736.36)
-Point[1] Position= (383.158,-375.957,-5736.36)
-
-TrackID =881 : ParentID=817 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.74548 -35.3354 1.4895 keV
-Vertex : 0.37549 -0.368516 -5.6223 m    Global time : 18.8472 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (375.49,-368.516,-5622.3)
-Point[1] Position= (375.496,-368.549,-5622.3)
-
-TrackID =880 : ParentID=817 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.1831 54.0209 -5.3951 keV
-Vertex : 0.371534 -0.364655 -5.56325 m    Global time : 18.6493 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (371.534,-364.655,-5563.25)
-Point[1] Position= (371.602,-364.496,-5563.27)
-
-TrackID =879 : ParentID=817 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.9501 38.8826 -6.0024 keV
-Vertex : 0.356197 -0.34968 -5.33422 m    Global time : 17.8815 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (356.197,-349.68,-5334.22)
-Point[1] Position= (356.163,-349.62,-5334.23)
-
-TrackID =878 : ParentID=817 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.0421 -18.6229 -2.68046 keV
-Vertex : 0.342869 -0.336658 -5.135 m    Global time : 17.2137 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (342.869,-336.658,-5135)
-Point[1] Position= (342.829,-336.679,-5135)
+Point[0] Position= (-115.63,116.331,435.843)
+Point[1] Position= (-115.704,116.365,435.768)
 
-TrackID =877 : ParentID=817 : TrackStatus=1
+TrackID =735 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 60.7801 -44.3989 1.43185 keV
-Vertex : 0.337868 -0.331771 -5.06026 m    Global time : 16.9631 ns 
+Original momentum : -51.4401 7.23179 6.40639 keV
+Vertex : 0.603721 -0.82429 14.2828 cm   Global time : 691.592 ps 
   Current trajectory has 2 points.
-Point[0] Position= (337.868,-331.771,-5060.26)
-Point[1] Position= (338.197,-332.011,-5060.26)
+Point[0] Position= (6.03721,-8.2429,142.828)
+Point[1] Position= (5.92447,-8.22705,142.842)
 
-TrackID =876 : ParentID=817 : TrackStatus=1
+TrackID =734 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.5419 31.3353 -1.98778 keV
-Vertex : 0.334204 -0.328189 -5.00553 m    Global time : 16.7797 ns 
+Original momentum : 8.46993 37.9672 4.0122 keV
+Vertex : 0.522018 -0.709185 12.2876 cm   Global time : 594.979 ps 
   Current trajectory has 2 points.
-Point[0] Position= (334.204,-328.189,-5005.53)
-Point[1] Position= (334.23,-328.153,-5005.53)
+Point[0] Position= (5.22018,-7.09185,122.876)
+Point[1] Position= (5.22966,-7.04936,122.881)
 
-TrackID =875 : ParentID=817 : TrackStatus=1
+TrackID =733 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.1161 -20.9575 2.01548 keV
-Vertex : 0.330689 -0.324752 -4.95304 m    Global time : 16.6037 ns 
+Original momentum : -39.8166 24.2647 6.22561 keV
+Vertex : 0.4982 -0.676314 11.7184 cm   Global time : 567.414 ps 
   Current trajectory has 2 points.
-Point[0] Position= (330.689,-324.752,-4953.04)
-Point[1] Position= (330.761,-324.787,-4953.03)
+Point[0] Position= (4.982,-6.76314,117.184)
+Point[1] Position= (4.91432,-6.7219,117.195)
 
-TrackID =874 : ParentID=817 : TrackStatus=1
+TrackID =732 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.0640186 -73.0637 -0.433391 keV
-Vertex : 0.317374 -0.311721 -4.75406 m    Global time : 15.9367 ns 
+Original momentum : 91.9484 33.2516 11.5617 keV
+Vertex : 0.107093 -0.140926 2.44191 cm   Global time : 118.236 ps 
   Current trajectory has 3 points.
-Point[0] Position= (317.374,-311.721,-4754.06)
-Point[1] Position= (317.374,-311.851,-4754.06)
-Point[2] Position= (317.359,-311.997,-4754.08)
+Point[0] Position= (1.07093,-1.40926,24.4191)
+Point[1] Position= (2.00735,-1.07062,24.5368)
+Point[2] Position= (1.94296,-0.818968,24.2215)
 
-TrackID =885 : ParentID=874 : TrackStatus=1
+TrackID =731 : ParentID=560 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.1606 -1.03976 19.0655 keV
-Vertex : 0.317374 -0.311851 -4.75406 m    Global time : 15.9397 ns 
+Original momentum : -28.0578 -33.0408 1.98957 keV
+Vertex : 21.9157 -29.0543 502.61 um   Global time : 2.43357 ps 
   Current trajectory has 2 points.
-Point[0] Position= (317.374,-311.851,-4754.06)
-Point[1] Position= (317.352,-311.851,-4754.04)
+Point[0] Position= (0.0219157,-0.0290543,0.50261)
+Point[1] Position= (-0.0176943,-0.075699,0.505419)
 
-TrackID =873 : ParentID=817 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 92.2015 12.5009 -3.10311 keV
-Vertex : 0.297638 -0.292378 -4.45908 m    Global time : 14.9478 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (297.638,-292.378,-4459.08)
-Point[1] Position= (298.475,-292.264,-4459.11)
-Point[2] Position= (298.42,-292.077,-4459.12)
+TrackID =559 : ParentID=59 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : -161.858 -21.4214 670.519 MeV
+Vertex : -1.86975e-295 -1.58915e-296 1.33918e-293 fm   Global time : 6.41545e-305 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (-1.86975e-307,-1.58915e-308,1.33918e-305)
+Point[1] Position= (-3.32039e-06,-4.39443e-07,1.37552e-05)
+
+TrackID =58 : ParentID=45 : TrackStatus=1
+Particle name : pi+  PDG code : 211  Charge : 1
+Original momentum : -0.492956 -0.27734 2.82536 GeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+  Current trajectory has 67 points.
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (-10.255,-5.76635,58.7718)
+Point[2] Position= (-28.617,-16.0936,164.021)
+Point[3] Position= (-80.9001,-45.4915,463.556)
+Point[4] Position= (-83.5772,-46.9966,478.887)
+Point[5] Position= (-98.7438,-55.5193,565.751)
+Point[6] Position= (-125.451,-70.4951,718.655)
+Point[7] Position= (-144.6,-81.2147,828.283)
+Point[8] Position= (-159.365,-89.4826,912.842)
+Point[9] Position= (-174.399,-97.9036,998.967)
+Point[10] Position= (-174.579,-98.0047,1000)
+Point[11] Position= (-178.27,-100.073,1021.15)
+Point[12] Position= (-187.3,-105.134,1072.88)
+Point[13] Position= (-202.16,-113.469,1158.01)
+Point[14] Position= (-213.656,-119.92,1223.89)
+Point[15] Position= (-223.868,-125.652,1282.41)
+Point[16] Position= (-266.618,-149.654,1527.36)
+Point[17] Position= (-358.721,-201.283,2054.32)
+Point[18] Position= (-382.379,-214.52,2189.6)
+Point[19] Position= (-382.388,-214.525,2189.65)
+Point[20] Position= (-401.224,-225.047,2297.31)
+Point[21] Position= (-410.169,-230.045,2348.45)
+Point[22] Position= (-443.334,-248.585,2538.09)
+Point[23] Position= (-449.111,-251.817,2571.14)
+Point[24] Position= (-472.386,-264.848,2704.33)
+Point[25] Position= (-498.196,-279.307,2852.03)
+Point[26] Position= (-508.866,-285.283,2913.08)
+Point[27] Position= (-515.865,-289.203,2953.14)
+Point[28] Position= (-516.731,-289.687,2958.09)
+Point[29] Position= (-516.85,-289.754,2958.77)
+Point[30] Position= (-518.004,-290.4,2965.37)
+Point[31] Position= (-521.863,-292.561,2987.45)
+Point[32] Position= (-536.952,-301.008,3073.74)
+Point[33] Position= (-546.325,-306.253,3127.34)
+Point[34] Position= (-556.612,-312.009,3186.17)
+Point[35] Position= (-583.32,-326.94,3338.85)
+Point[36] Position= (-636.569,-356.723,3643.26)
+Point[37] Position= (-651.044,-364.824,3726.03)
+Point[38] Position= (-656.755,-368.02,3758.68)
+Point[39] Position= (-664.51,-372.36,3803.01)
+Point[40] Position= (-725.929,-406.707,4153.99)
+Point[41] Position= (-733.881,-411.156,4199.43)
+Point[42] Position= (-742.396,-415.92,4248.09)
+Point[43] Position= (-742.639,-416.056,4249.48)
+Point[44] Position= (-752.352,-421.49,4304.97)
+Point[45] Position= (-768.029,-430.257,4394.52)
+Point[46] Position= (-774.6,-433.93,4432.05)
+Point[47] Position= (-786.23,-440.427,4498.45)
+Point[48] Position= (-803.287,-449.962,4595.83)
+Point[49] Position= (-819.648,-459.109,4689.22)
+Point[50] Position= (-840.445,-470.737,4807.91)
+Point[51] Position= (-851.343,-476.831,4870.12)
+Point[52] Position= (-856.324,-479.616,4898.56)
+Point[53] Position= (-859.915,-481.625,4919.07)
+Point[54] Position= (-867.935,-486.109,4964.86)
+Point[55] Position= (-888.883,-497.817,5084.48)
+Point[56] Position= (-904.427,-506.507,5173.24)
+Point[57] Position= (-915.733,-512.829,5237.79)
+Point[58] Position= (-924.039,-517.475,5285.2)
+Point[59] Position= (-935.737,-524.015,5351.95)
+Point[60] Position= (-947.85,-530.793,5421.08)
+Point[61] Position= (-969.317,-542.809,5543.57)
+Point[62] Position= (-987.196,-552.824,5645.64)
+Point[63] Position= (-1032.33,-578.098,5903.37)
+Point[64] Position= (-1034.09,-579.081,5913.39)
+Point[65] Position= (-1038.13,-581.346,5936.49)
+Point[66] Position= (-1049.26,-587.575,6000)
+
+TrackID =962 : ParentID=58 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 15.4886 -42.8622 0.580525 keV
+Vertex : -1.03813 -0.581346 5.93649 m    Global time : 20.2195 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1038.13,-581.346,5936.49)
+Point[1] Position= (-1038.11,-581.414,5936.49)
+
+TrackID =961 : ParentID=58 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 27.9304 30.3281 9.65451 keV
+Vertex : -1.03409 -0.579081 5.91339 m    Global time : 20.1408 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1034.09,-579.081,5913.39)
+Point[1] Position= (-1034.05,-579.04,5913.41)
+
+TrackID =960 : ParentID=58 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 101.028 59.0852 38.4375 keV
+Vertex : -1.03233 -0.578098 5.90337 m    Global time : 20.1067 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (-1032.33,-578.098,5903.37)
+Point[1] Position= (-1031.34,-577.515,5903.75)
+Point[2] Position= (-1030.26,-576.566,5903.92)
+Point[3] Position= (-1029.86,-576.425,5904.69)
+Point[4] Position= (-1029.91,-576.355,5904.95)
 
-TrackID =872 : ParentID=817 : TrackStatus=1
+TrackID =959 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 17.6333 -40.3222 1.91722 keV
-Vertex : 0.287473 -0.282422 -4.30717 m    Global time : 14.4386 ns 
+Original momentum : -40.5088 26.2864 -2.18495 keV
+Vertex : -0.987196 -0.552824 5.64564 m    Global time : 19.2288 ns 
   Current trajectory has 2 points.
-Point[0] Position= (287.473,-282.422,-4307.17)
-Point[1] Position= (287.499,-282.481,-4307.17)
+Point[0] Position= (-987.196,-552.824,5645.64)
+Point[1] Position= (-987.27,-552.776,5645.64)
 
-TrackID =871 : ParentID=817 : TrackStatus=1
+TrackID =958 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.46371 -75.6149 -0.414671 keV
-Vertex : 0.284804 -0.279807 -4.26727 m    Global time : 14.3048 ns 
+Original momentum : -49.6778 -32.6305 -8.31959 keV
+Vertex : -0.969317 -0.542809 5.54357 m    Global time : 18.8812 ns 
   Current trajectory has 2 points.
-Point[0] Position= (284.804,-279.807,-4267.27)
-Point[1] Position= (284.823,-280.222,-4267.27)
+Point[0] Position= (-969.317,-542.809,5543.57)
+Point[1] Position= (-969.469,-542.909,5543.54)
 
-TrackID =870 : ParentID=817 : TrackStatus=1
+TrackID =957 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.3761 -33.3953 -0.892353 keV
-Vertex : 0.252413 -0.248031 -3.78281 m    Global time : 12.6808 ns 
+Original momentum : 45.9354 50.0946 17.8743 keV
+Vertex : -0.94785 -0.530793 5.42108 m    Global time : 18.4639 ns 
   Current trajectory has 2 points.
-Point[0] Position= (252.413,-248.031,-3782.81)
-Point[1] Position= (252.386,-248.071,-3782.81)
+Point[0] Position= (-947.85,-530.793,5421.08)
+Point[1] Position= (-947.641,-530.565,5421.16)
 
-TrackID =869 : ParentID=817 : TrackStatus=1
+TrackID =956 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.14134 -51.8783 0.835859 keV
-Vertex : 0.246316 -0.242048 -3.69161 m    Global time : 12.3751 ns 
+Original momentum : -53.2474 48.1498 0.510679 keV
+Vertex : -0.935737 -0.524015 5.35195 m    Global time : 18.2285 ns 
   Current trajectory has 2 points.
-Point[0] Position= (246.316,-242.048,-3691.61)
-Point[1] Position= (246.318,-242.159,-3691.61)
+Point[0] Position= (-935.737,-524.015,5351.95)
+Point[1] Position= (-935.992,-523.785,5351.95)
 
-TrackID =868 : ParentID=817 : TrackStatus=1
+TrackID =955 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.9135 30.3508 -4.74351 keV
-Vertex : 0.23051 -0.226556 -3.45528 m    Global time : 11.5828 ns 
+Original momentum : -31.2894 20.0985 -2.12945 keV
+Vertex : -0.924039 -0.517475 5.2852 m    Global time : 18.0011 ns 
   Current trajectory has 2 points.
-Point[0] Position= (230.51,-226.556,-3455.28)
-Point[1] Position= (230.489,-226.526,-3455.28)
+Point[0] Position= (-924.039,-517.475,5285.2)
+Point[1] Position= (-924.07,-517.455,5285.2)
 
-TrackID =867 : ParentID=817 : TrackStatus=1
+TrackID =954 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.02765 53.7309 -6.0151 keV
-Vertex : 0.221299 -0.217538 -3.31756 m    Global time : 11.1212 ns 
+Original momentum : 19.1124 40.0753 9.32718 keV
+Vertex : -0.915733 -0.512829 5.23779 m    Global time : 17.8396 ns 
   Current trajectory has 2 points.
-Point[0] Position= (221.299,-217.538,-3317.56)
-Point[1] Position= (221.313,-217.408,-3317.58)
+Point[0] Position= (-915.733,-512.829,5237.79)
+Point[1] Position= (-915.703,-512.767,5237.81)
 
-TrackID =866 : ParentID=817 : TrackStatus=1
+TrackID =953 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 41.1525 8.73653 0.444933 keV
-Vertex : 0.219871 -0.216142 -3.29623 m    Global time : 11.0496 ns 
+Original momentum : 32.4506 -10.5294 5.84774 keV
+Vertex : -0.904427 -0.506507 5.17324 m    Global time : 17.6198 ns 
   Current trajectory has 2 points.
-Point[0] Position= (219.871,-216.142,-3296.23)
-Point[1] Position= (219.925,-216.13,-3296.22)
+Point[0] Position= (-904.427,-506.507,5173.24)
+Point[1] Position= (-904.399,-506.516,5173.25)
 
-TrackID =865 : ParentID=817 : TrackStatus=1
+TrackID =952 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.4005 -32.2712 -1.48314 keV
-Vertex : 0.218301 -0.214607 -3.27277 m    Global time : 10.971 ns 
+Original momentum : -30.069 -55.5545 -6.68636 keV
+Vertex : -0.888883 -0.497817 5.08448 m    Global time : 17.3174 ns 
   Current trajectory has 2 points.
-Point[0] Position= (218.301,-214.607,-3272.77)
-Point[1] Position= (218.264,-214.65,-3272.78)
+Point[0] Position= (-888.883,-497.817,5084.48)
+Point[1] Position= (-888.989,-498.012,5084.46)
 
-TrackID =864 : ParentID=817 : TrackStatus=1
+TrackID =951 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.5185 8.07945 0.4459 keV
-Vertex : 0.214305 -0.210702 -3.2131 m    Global time : 10.771 ns 
+Original momentum : -8.48066 -41.3581 -3.74236 keV
+Vertex : -0.867935 -0.486109 4.96486 m    Global time : 16.91 ns 
   Current trajectory has 2 points.
-Point[0] Position= (214.305,-210.702,-3213.1)
-Point[1] Position= (214.374,-210.69,-3213.1)
+Point[0] Position= (-867.935,-486.109,4964.86)
+Point[1] Position= (-867.946,-486.164,4964.86)
 
-TrackID =863 : ParentID=817 : TrackStatus=1
+TrackID =950 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 68.2793 0.0796114 0.00878392 keV
-Vertex : 0.213524 -0.209941 -3.20147 m    Global time : 10.732 ns 
+Original momentum : 34.4629 7.99976 8.13422 keV
+Vertex : -0.859915 -0.481625 4.91907 m    Global time : 16.754 ns 
   Current trajectory has 2 points.
-Point[0] Position= (213.524,-209.941,-3201.47)
-Point[1] Position= (213.813,-209.94,-3201.47)
+Point[0] Position= (-859.915,-481.625,4919.07)
+Point[1] Position= (-859.882,-481.617,4919.08)
 
-TrackID =862 : ParentID=817 : TrackStatus=1
+TrackID =949 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.206206 32.9029 -3.2116 keV
-Vertex : 0.211081 -0.207556 -3.16501 m    Global time : 10.6098 ns 
+Original momentum : -15.1733 -41.518 -4.75231 keV
+Vertex : -0.856324 -0.479616 4.89856 m    Global time : 16.6842 ns 
   Current trajectory has 2 points.
-Point[0] Position= (211.081,-207.556,-3165.01)
-Point[1] Position= (211.081,-207.53,-3165.02)
+Point[0] Position= (-856.324,-479.616,4898.56)
+Point[1] Position= (-856.346,-479.678,4898.55)
 
-TrackID =861 : ParentID=817 : TrackStatus=1
+TrackID =948 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.0968308 50.9697 -5.90756 keV
-Vertex : 0.204581 -0.201218 -3.06807 m    Global time : 10.2848 ns 
+Original momentum : 8.42859 -50.1826 -0.858154 keV
+Vertex : -0.851343 -0.476831 4.87012 m    Global time : 16.5873 ns 
   Current trajectory has 2 points.
-Point[0] Position= (204.581,-201.218,-3068.07)
-Point[1] Position= (204.581,-201.112,-3068.08)
+Point[0] Position= (-851.343,-476.831,4870.12)
+Point[1] Position= (-851.326,-476.934,4870.12)
 
-TrackID =860 : ParentID=817 : TrackStatus=1
+TrackID =947 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.7856 5.68985 0.740629 keV
-Vertex : 0.198192 -0.194994 -2.97285 m    Global time : 9.9656 ns 
+Original momentum : 15.1623 -41.6249 0.536997 keV
+Vertex : -0.840445 -0.470737 4.80791 m    Global time : 16.3754 ns 
   Current trajectory has 2 points.
-Point[0] Position= (198.192,-194.994,-2972.85)
-Point[1] Position= (198.221,-194.99,-2972.85)
+Point[0] Position= (-840.445,-470.737,4807.91)
+Point[1] Position= (-840.423,-470.798,4807.91)
 
-TrackID =859 : ParentID=817 : TrackStatus=1
+TrackID =946 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 62.5954 -123.883 -6.33398 keV
-Vertex : 0.186883 -0.183967 -2.80429 m    Global time : 9.40057 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (186.883,-183.967,-2804.29)
-Point[1] Position= (187.972,-186.123,-2804.4)
-Point[2] Position= (189.578,-186.485,-2805.24)
-Point[3] Position= (190.787,-186.802,-2805.26)
-Point[4] Position= (191.353,-186.904,-2805.13)
+Original momentum : 62.9628 -36.8271 12.8755 keV
+Vertex : -0.819648 -0.459109 4.68922 m    Global time : 15.9711 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-819.648,-459.109,4689.22)
+Point[1] Position= (-819.322,-459.3,4689.29)
 
-TrackID =858 : ParentID=817 : TrackStatus=1
+TrackID =945 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.748 13.0256 -4.42082 keV
-Vertex : 0.185826 -0.182935 -2.78854 m    Global time : 9.34774 ns 
+Original momentum : 27.8721 -33.9975 3.49276 keV
+Vertex : -0.803287 -0.449962 4.59583 m    Global time : 15.653 ns 
   Current trajectory has 2 points.
-Point[0] Position= (185.826,-182.935,-2788.54)
-Point[1] Position= (185.794,-182.923,-2788.54)
+Point[0] Position= (-803.287,-449.962,4595.83)
+Point[1] Position= (-803.246,-450.012,4595.83)
 
-TrackID =857 : ParentID=817 : TrackStatus=1
+TrackID =944 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.04687 -33.4449 0.877822 keV
-Vertex : 0.179244 -0.176503 -2.69033 m    Global time : 9.01854 ns 
+Original momentum : 34.866 30.017 11.283 keV
+Vertex : -0.78623 -0.440427 4.49845 m    Global time : 15.3213 ns 
   Current trajectory has 2 points.
-Point[0] Position= (179.244,-176.503,-2690.33)
-Point[1] Position= (179.241,-176.53,-2690.33)
+Point[0] Position= (-786.23,-440.427,4498.45)
+Point[1] Position= (-786.17,-440.375,4498.47)
 
-TrackID =856 : ParentID=817 : TrackStatus=1
+TrackID =943 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -46.8935 -10.8717 -4.72704 keV
-Vertex : 0.176614 -0.173934 -2.6511 m    Global time : 8.88701 ns 
+Original momentum : -28.7296 -21.3157 -5.80612 keV
+Vertex : -0.7746 -0.43393 4.43205 m    Global time : 15.0951 ns 
   Current trajectory has 2 points.
-Point[0] Position= (176.614,-173.934,-2651.1)
-Point[1] Position= (176.529,-173.954,-2651.1)
+Point[0] Position= (-774.6,-433.93,4432.05)
+Point[1] Position= (-774.628,-433.95,4432.04)
 
-TrackID =855 : ParentID=817 : TrackStatus=1
+TrackID =942 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.55154 -34.0191 1.58776 keV
-Vertex : 0.172632 -0.170048 -2.59171 m    Global time : 8.68793 ns 
+Original momentum : -35.7511 -20.8046 -6.54681 keV
+Vertex : -0.768029 -0.430257 4.39452 m    Global time : 14.9673 ns 
   Current trajectory has 2 points.
-Point[0] Position= (172.632,-170.048,-2591.71)
-Point[1] Position= (172.64,-170.078,-2591.71)
+Point[0] Position= (-768.029,-430.257,4394.52)
+Point[1] Position= (-768.075,-430.284,4394.51)
 
-TrackID =854 : ParentID=817 : TrackStatus=1
+TrackID =941 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 46.6607 -29.625 2.06524 keV
-Vertex : 0.164986 -0.162584 -2.47762 m    Global time : 8.30546 ns 
+Original momentum : 25.4539 25.1277 8.26087 keV
+Vertex : -0.752352 -0.42149 4.30497 m    Global time : 14.6623 ns 
   Current trajectory has 2 points.
-Point[0] Position= (164.986,-162.584,-2477.62)
-Point[1] Position= (165.103,-162.658,-2477.61)
+Point[0] Position= (-752.352,-421.49,4304.97)
+Point[1] Position= (-752.327,-421.466,4304.97)
 
-TrackID =853 : ParentID=817 : TrackStatus=1
+TrackID =940 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.33635 38.3763 -4.44243 keV
-Vertex : 0.160409 -0.158113 -2.40932 m    Global time : 8.07653 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (160.409,-158.113,-2409.32)
-Point[1] Position= (160.402,-158.07,-2409.33)
+Original momentum : 64.0945 -71.7801 13.5387 keV
+Vertex : -0.742639 -0.416056 4.24948 m    Global time : 14.4733 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-742.639,-416.056,4249.48)
+Point[1] Position= (-742.003,-416.769,4249.61)
+Point[2] Position= (-741.873,-416.857,4249.74)
 
-TrackID =852 : ParentID=817 : TrackStatus=1
+TrackID =939 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.442 23.6861 -0.959181 keV
-Vertex : 0.158526 -0.156273 -2.38122 m    Global time : 7.98233 ns 
+Original momentum : 39.36 59.9437 18.1983 keV
+Vertex : -0.742396 -0.41592 4.24809 m    Global time : 14.4686 ns 
   Current trajectory has 2 points.
-Point[0] Position= (158.526,-156.273,-2381.22)
-Point[1] Position= (158.568,-156.244,-2381.23)
+Point[0] Position= (-742.396,-415.92,4248.09)
+Point[1] Position= (-742.193,-415.61,4248.18)
 
-TrackID =851 : ParentID=817 : TrackStatus=1
+TrackID =938 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.63461 31.7941 -2.57565 keV
-Vertex : 0.158211 -0.155965 -2.37652 m    Global time : 7.96654 ns 
+Original momentum : 6.511 35.7242 5.98806 keV
+Vertex : -0.733881 -0.411156 4.19943 m    Global time : 14.3028 ns 
   Current trajectory has 2 points.
-Point[0] Position= (158.211,-155.965,-2376.52)
-Point[1] Position= (158.217,-155.94,-2376.52)
+Point[0] Position= (-733.881,-411.156,4199.43)
+Point[1] Position= (-733.875,-411.121,4199.44)
 
-TrackID =850 : ParentID=817 : TrackStatus=1
+TrackID =937 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.4239 -45.6329 -0.221807 keV
-Vertex : 0.14926 -0.147222 -2.24306 m    Global time : 7.51915 ns 
+Original momentum : -37.7572 -5.1774 -5.63384 keV
+Vertex : -0.725929 -0.406707 4.15399 m    Global time : 14.148 ns 
   Current trajectory has 2 points.
-Point[0] Position= (149.26,-147.222,-2243.06)
-Point[1] Position= (149.235,-147.303,-2243.06)
+Point[0] Position= (-725.929,-406.707,4153.99)
+Point[1] Position= (-725.97,-406.712,4153.98)
+
+TrackID =936 : ParentID=58 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 206.02 -306.241 144.678 keV
+Vertex : -0.66451 -0.37236 3.80301 m    Global time : 12.9526 ns 
+  Current trajectory has 24 points.
+Point[0] Position= (-664.51,-372.36,3803.01)
+Point[1] Position= (-656.566,-384.169,3808.59)
+Point[2] Position= (-656.26,-385.126,3809.14)
+Point[3] Position= (-649.139,-422.761,3825.23)
+Point[4] Position= (-646.596,-432.972,3833.33)
+Point[5] Position= (-646.439,-433.346,3833.63)
+Point[6] Position= (-639.67,-447.333,3844.11)
+Point[7] Position= (-636.142,-449.98,3847.3)
+Point[8] Position= (-623.859,-453.449,3852.21)
+Point[9] Position= (-622.62,-454.22,3852)
+Point[10] Position= (-610.803,-461.956,3847.35)
+Point[11] Position= (-604.954,-463.713,3846)
+Point[12] Position= (-590.881,-465.158,3840.79)
+Point[13] Position= (-579.963,-463.581,3835.04)
+Point[14] Position= (-571.038,-465.895,3833.13)
+Point[15] Position= (-564.274,-468.709,3830.25)
+Point[16] Position= (-560.094,-470.142,3828.49)
+Point[17] Position= (-563.295,-472.609,3826.45)
+Point[18] Position= (-565.471,-474.518,3824.19)
+Point[19] Position= (-565.402,-476.261,3826.56)
+Point[20] Position= (-564.962,-478.095,3828)
+Point[21] Position= (-564.298,-477.422,3826.74)
+Point[22] Position= (-564.493,-477.117,3826.19)
+Point[23] Position= (-564.47,-477.096,3826.18)
 
-TrackID =849 : ParentID=817 : TrackStatus=1
+TrackID =973 : ParentID=936 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.214419 -34.3026 1.07816 keV
-Vertex : 0.145995 -0.144029 -2.19437 m    Global time : 7.35592 ns 
+Original momentum : 21.5403 -37.803 11.1884 keV
+Vertex : -0.560094 -0.470142 3.82849 m    Global time : 14.1387 ns 
   Current trajectory has 2 points.
-Point[0] Position= (145.995,-144.029,-2194.37)
-Point[1] Position= (145.995,-144.058,-2194.36)
+Point[0] Position= (-560.094,-470.142,3828.49)
+Point[1] Position= (-560.061,-470.199,3828.5)
 
-TrackID =848 : ParentID=817 : TrackStatus=1
+TrackID =972 : ParentID=936 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 4.13426 41.8209 -4.21484 keV
-Vertex : 0.138271 -0.136474 -2.07916 m    Global time : 6.96972 ns 
+Original momentum : -14.5262 -45.9375 -28.6711 keV
+Vertex : -0.604954 -0.463713 3.846 m    Global time : 13.7445 ns 
   Current trajectory has 2 points.
-Point[0] Position= (138.271,-136.474,-2079.16)
-Point[1] Position= (138.277,-136.419,-2079.17)
+Point[0] Position= (-604.954,-463.713,3846)
+Point[1] Position= (-604.992,-463.832,3845.92)
 
-TrackID =847 : ParentID=817 : TrackStatus=1
+TrackID =971 : ParentID=936 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.86357 -38.1752 1.48505 keV
-Vertex : 0.133096 -0.131378 -2.0015 m    Global time : 6.70939 ns 
+Original momentum : 13.5905 19.6974 31.2938 keV
+Vertex : -0.610803 -0.461956 3.84735 m    Global time : 13.7007 ns 
   Current trajectory has 2 points.
-Point[0] Position= (133.096,-131.378,-2001.5)
-Point[1] Position= (133.104,-131.42,-2001.5)
+Point[0] Position= (-610.803,-461.956,3847.35)
+Point[1] Position= (-610.788,-461.934,3847.39)
 
-TrackID =846 : ParentID=817 : TrackStatus=1
+TrackID =970 : ParentID=936 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.2653 70.1623 -8.4366 keV
-Vertex : 0.127764 -0.126114 -1.92137 m    Global time : 6.44076 ns 
+Original momentum : 24.4048 4.97131 51.0775 keV
+Vertex : -0.62262 -0.45422 3.852 m    Global time : 13.6014 ns 
   Current trajectory has 2 points.
-Point[0] Position= (127.764,-126.114,-1921.37)
-Point[1] Position= (127.899,-125.738,-1921.41)
+Point[0] Position= (-622.62,-454.22,3852)
+Point[1] Position= (-622.555,-454.206,3852.14)
 
-TrackID =845 : ParentID=817 : TrackStatus=1
+TrackID =969 : ParentID=936 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.3763 86.4517 -11.9744 keV
-Vertex : 0.120132 -0.118579 -1.80668 m    Global time : 6.0563 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (120.132,-118.579,-1806.68)
-Point[1] Position= (120.42,-117.895,-1806.77)
-Point[2] Position= (120.275,-117.743,-1806.76)
+Original momentum : 14.1013 71.327 19.4099 keV
+Vertex : -0.636142 -0.44998 3.8473 m    Global time : 13.5039 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-636.142,-449.98,3847.3)
+Point[1] Position= (-636.066,-449.595,3847.41)
 
-TrackID =886 : ParentID=845 : TrackStatus=1
+TrackID =968 : ParentID=936 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.4466 23.2096 11.1919 keV
-Vertex : 0.12042 -0.117895 -1.80677 m    Global time : 6.07002 ns 
+Original momentum : -23.1175 -26.4659 4.20686 keV
+Vertex : -0.63967 -0.447333 3.84411 m    Global time : 13.4699 ns 
   Current trajectory has 2 points.
-Point[0] Position= (120.42,-117.895,-1806.77)
-Point[1] Position= (120.444,-117.873,-1806.76)
+Point[0] Position= (-639.67,-447.333,3844.11)
+Point[1] Position= (-639.691,-447.357,3844.11)
 
-TrackID =844 : ParentID=817 : TrackStatus=1
+TrackID =967 : ParentID=936 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -183.367 182.063 -93.734 keV
-Vertex : 0.118156 -0.11663 -1.77699 m    Global time : 5.95679 ns 
-  Current trajectory has 13 points.
-Point[0] Position= (118.156,-116.63,-1776.99)
-Point[1] Position= (106.817,-105.372,-1782.79)
-Point[2] Position= (108.288,-94.7542,-1774.44)
-Point[3] Position= (112.971,-95.3872,-1776.25)
-Point[4] Position= (116.188,-95.2619,-1778.53)
-Point[5] Position= (116.253,-89.4008,-1781.31)
-Point[6] Position= (113.946,-84.7103,-1781.95)
-Point[7] Position= (114.578,-80.522,-1782.8)
-Point[8] Position= (111.639,-79.4321,-1781.57)
-Point[9] Position= (109.671,-78.2969,-1779.76)
-Point[10] Position= (109.023,-79.1043,-1778.04)
-Point[11] Position= (108.789,-78.8424,-1776.97)
-Point[12] Position= (109.017,-78.934,-1776.74)
+Original momentum : -30.3167 -6.02466 12.127 keV
+Vertex : -0.646439 -0.433346 3.83363 m    Global time : 13.357 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-646.439,-433.346,3833.63)
+Point[1] Position= (-646.463,-433.351,3833.64)
 
-TrackID =888 : ParentID=844 : TrackStatus=1
+TrackID =966 : ParentID=936 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -41.0227 7.40783 13.8145 keV
-Vertex : 0.116188 -0.0952619 -1.77853 m    Global time : 6.25208 ns 
+Original momentum : -32.9366 -10.3133 4.94461 keV
+Vertex : -0.646596 -0.432972 3.83333 m    Global time : 13.354 ns 
   Current trajectory has 2 points.
-Point[0] Position= (116.188,-95.2619,-1778.53)
-Point[1] Position= (116.128,-95.2512,-1778.51)
+Point[0] Position= (-646.596,-432.972,3833.33)
+Point[1] Position= (-646.625,-432.981,3833.33)
 
-TrackID =887 : ParentID=844 : TrackStatus=1
+TrackID =965 : ParentID=936 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.7641 -46.4374 39.2358 keV
-Vertex : 0.112971 -0.0953872 -1.77625 m    Global time : 6.21799 ns 
+Original momentum : -32.5412 0.410074 11.3225 keV
+Vertex : -0.649139 -0.422761 3.82523 m    Global time : 13.2757 ns 
   Current trajectory has 2 points.
-Point[0] Position= (112.971,-95.3872,-1776.25)
-Point[1] Position= (113.101,-95.5821,-1776.08)
+Point[0] Position= (-649.139,-422.761,3825.23)
+Point[1] Position= (-649.166,-422.761,3825.24)
 
-TrackID =843 : ParentID=817 : TrackStatus=1
+TrackID =964 : ParentID=936 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.5635 12.7149 -3.83277 keV
-Vertex : 0.117806 -0.116286 -1.77174 m    Global time : 5.93919 ns 
+Original momentum : 25.2214 23.6798 47.0627 keV
+Vertex : -0.65626 -0.385126 3.80914 m    Global time : 13.0422 ns 
   Current trajectory has 2 points.
-Point[0] Position= (117.806,-116.286,-1771.74)
-Point[1] Position= (117.784,-116.276,-1771.74)
+Point[0] Position= (-656.26,-385.126,3809.14)
+Point[1] Position= (-656.188,-385.059,3809.28)
 
-TrackID =842 : ParentID=817 : TrackStatus=1
+TrackID =963 : ParentID=936 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.2945 -21.5858 2.08207 keV
-Vertex : 0.109203 -0.107803 -1.64241 m    Global time : 5.50564 ns 
+Original momentum : 7.30925 -27.9582 -50.1829 keV
+Vertex : -0.656566 -0.384169 3.80859 m    Global time : 13.0358 ns 
   Current trajectory has 2 points.
-Point[0] Position= (109.203,-107.803,-1642.41)
-Point[1] Position= (109.245,-107.83,-1642.4)
+Point[0] Position= (-656.566,-384.169,3808.59)
+Point[1] Position= (-656.545,-384.247,3808.45)
 
-TrackID =841 : ParentID=817 : TrackStatus=1
+TrackID =935 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.02859 95.5757 -15.0305 keV
-Vertex : 0.107142 -0.10577 -1.61143 m    Global time : 5.40178 ns 
+Original momentum : 82.7723 -25.9163 19.7893 keV
+Vertex : -0.656755 -0.36802 3.75868 m    Global time : 12.8016 ns 
   Current trajectory has 3 points.
-Point[0] Position= (107.142,-105.77,-1611.43)
-Point[1] Position= (107.195,-104.942,-1611.56)
-Point[2] Position= (106.893,-104.741,-1611.38)
+Point[0] Position= (-656.755,-368.02,3758.68)
+Point[1] Position= (-656.077,-368.233,3758.84)
+Point[2] Position= (-656.102,-368.23,3758.85)
 
-TrackID =889 : ParentID=841 : TrackStatus=1
+TrackID =934 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.3227 -16.0828 36.7541 keV
-Vertex : 0.107195 -0.104942 -1.61156 m    Global time : 5.41681 ns 
+Original momentum : -28.0429 -14.8091 -5.32147 keV
+Vertex : -0.651044 -0.364824 3.72603 m    Global time : 12.6904 ns 
   Current trajectory has 2 points.
-Point[0] Position= (107.195,-104.942,-1611.56)
-Point[1] Position= (107.208,-104.963,-1611.51)
+Point[0] Position= (-651.044,-364.824,3726.03)
+Point[1] Position= (-651.064,-364.835,3726.02)
 
-TrackID =840 : ParentID=817 : TrackStatus=1
+TrackID =933 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.5754 -16.8259 1.93703 keV
-Vertex : 0.1026 -0.101289 -1.54312 m    Global time : 5.17282 ns 
+Original momentum : -32.0758 1.89039 -4.37617 keV
+Vertex : -0.636569 -0.356723 3.64326 m    Global time : 12.4085 ns 
   Current trajectory has 2 points.
-Point[0] Position= (102.6,-101.289,-1543.12)
-Point[1] Position= (102.627,-101.303,-1543.12)
+Point[0] Position= (-636.569,-356.723,3643.26)
+Point[1] Position= (-636.593,-356.721,3643.26)
 
-TrackID =839 : ParentID=817 : TrackStatus=1
+TrackID =932 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.9367 48.1375 -4.39792 keV
-Vertex : 0.0982396 -0.0969839 -1.47753 m    Global time : 4.95296 ns 
+Original momentum : 30.4995 -12.0786 5.25641 keV
+Vertex : -0.58332 -0.32694 3.33885 m    Global time : 11.3717 ns 
   Current trajectory has 2 points.
-Point[0] Position= (98.2396,-96.9839,-1477.53)
-Point[1] Position= (98.3976,-96.8067,-1477.55)
+Point[0] Position= (-583.32,-326.94,3338.85)
+Point[1] Position= (-583.296,-326.949,3338.85)
 
-TrackID =838 : ParentID=817 : TrackStatus=1
+TrackID =931 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 47.0511 35.365 -2.59257 keV
-Vertex : 0.0947457 -0.0935361 -1.425 m    Global time : 4.77685 ns 
+Original momentum : 47.6843 28.0399 14.3353 keV
+Vertex : -0.556612 -0.312009 3.18617 m    Global time : 10.8517 ns 
   Current trajectory has 2 points.
-Point[0] Position= (94.7457,-93.5361,-1425)
-Point[1] Position= (94.8833,-93.4327,-1425)
-
-TrackID =837 : ParentID=817 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -53.1018 -68.4911 -6.41101 keV
-Vertex : 0.0943715 -0.0931671 -1.41937 m    Global time : 4.75799 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (94.3715,-93.1671,-1419.37)
-Point[1] Position= (93.9598,-93.6981,-1419.42)
-Point[2] Position= (93.9541,-93.6994,-1419.43)
+Point[0] Position= (-556.612,-312.009,3186.17)
+Point[1] Position= (-556.482,-311.933,3186.21)
 
-TrackID =836 : ParentID=817 : TrackStatus=1
+TrackID =930 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 43.3597 4.09226 0.753671 keV
-Vertex : 0.0884976 -0.0873692 -1.33105 m    Global time : 4.4619 ns 
+Original momentum : 36.2921 8.97567 8.69337 keV
+Vertex : -0.546325 -0.306253 3.12734 m    Global time : 10.6513 ns 
   Current trajectory has 2 points.
-Point[0] Position= (88.4976,-87.3692,-1331.05)
-Point[1] Position= (88.5593,-87.3633,-1331.04)
+Point[0] Position= (-546.325,-306.253,3127.34)
+Point[1] Position= (-546.286,-306.244,3127.35)
 
-TrackID =835 : ParentID=817 : TrackStatus=1
+TrackID =929 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.7316 36.9658 -7.73357 keV
-Vertex : 0.087282 -0.0861696 -1.31278 m    Global time : 4.40067 ns 
+Original momentum : 1.24501 -71.7883 -1.68072 keV
+Vertex : -0.536952 -0.301008 3.07374 m    Global time : 10.4687 ns 
   Current trajectory has 2 points.
-Point[0] Position= (87.282,-86.1696,-1312.78)
-Point[1] Position= (87.1952,-86.0846,-1312.8)
+Point[0] Position= (-536.952,-301.008,3073.74)
+Point[1] Position= (-536.946,-301.352,3073.73)
 
-TrackID =834 : ParentID=817 : TrackStatus=1
+TrackID =928 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.6292 18.3917 -4.39571 keV
-Vertex : 0.0792068 -0.0782036 -1.19148 m    Global time : 3.99406 ns 
+Original momentum : -29.1642 -23.5916 -5.9686 keV
+Vertex : -0.521863 -0.292561 2.98745 m    Global time : 10.1748 ns 
   Current trajectory has 2 points.
-Point[0] Position= (79.2068,-78.2036,-1191.48)
-Point[1] Position= (79.1806,-78.1874,-1191.49)
+Point[0] Position= (-521.863,-292.561,2987.45)
+Point[1] Position= (-521.894,-292.586,2987.44)
 
-TrackID =833 : ParentID=817 : TrackStatus=1
+TrackID =927 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.0281 -27.0287 -1.3414 keV
-Vertex : 0.0712779 -0.0703813 -1.07242 m    Global time : 3.59492 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (71.2779,-70.3813,-1072.42)
-Point[1] Position= (71.2512,-70.409,-1072.42)
+Original momentum : 10.1279 64.7374 12.5344 keV
+Vertex : -0.518004 -0.2904 2.96537 m    Global time : 10.0997 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-518.004,-290.4,2965.37)
+Point[1] Position= (-518,-290.378,2965.38)
+Point[2] Position= (-517.986,-290.297,2965.46)
 
-TrackID =832 : ParentID=817 : TrackStatus=1
+TrackID =974 : ParentID=927 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.1758 273.646 -93.4591 keV
-Vertex : 0.0686075 -0.0677453 -1.03228 m    Global time : 3.46038 ns 
-  Current trajectory has 15 points.
-Point[0] Position= (68.6075,-67.7453,-1032.28)
-Point[1] Position= (69.1336,-58.666,-1035.91)
-Point[2] Position= (76.2613,-44.1423,-1042.98)
-Point[3] Position= (76.2347,-44.2454,-1043.81)
-Point[4] Position= (78.0663,-42.6095,-1051.81)
-Point[5] Position= (76.1196,-42.3273,-1052.87)
-Point[6] Position= (71.9472,-39.6826,-1054.11)
-Point[7] Position= (76.3906,-38.5768,-1058.2)
-Point[8] Position= (79.8325,-39.5494,-1061.4)
-Point[9] Position= (81.3952,-41.9186,-1063.35)
-Point[10] Position= (81.6342,-42.178,-1065.51)
-Point[11] Position= (81.9446,-41.5864,-1066.94)
-Point[12] Position= (82.4151,-41.6542,-1066.6)
-Point[13] Position= (82.7468,-41.7026,-1066.5)
-Point[14] Position= (82.8069,-41.7699,-1066.28)
+Original momentum : 8.88012 27.2618 -28.1245 keV
+Vertex : -0.518 -0.290378 2.96538 m    Global time : 10.1002 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-518,-290.378,2965.38)
+Point[1] Position= (-517.99,-290.345,2965.34)
 
-TrackID =898 : ParentID=832 : TrackStatus=1
+TrackID =926 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.8387 -0.637463 -8.52406 keV
-Vertex : 0.0827468 -0.0417026 -1.0665 m    Global time : 3.9907 ns 
+Original momentum : 41.6203 -7.31528 8.41057 keV
+Vertex : -0.51685 -0.289754 2.95877 m    Global time : 10.0772 ns 
   Current trajectory has 2 points.
-Point[0] Position= (82.7468,-41.7026,-1066.5)
-Point[1] Position= (82.7691,-41.7031,-1066.51)
+Point[0] Position= (-516.85,-289.754,2958.77)
+Point[1] Position= (-516.792,-289.764,2958.78)
 
-TrackID =897 : ParentID=832 : TrackStatus=1
+TrackID =925 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.15436 19.8599 42.362 keV
-Vertex : 0.0824151 -0.0416542 -1.0666 m    Global time : 3.98309 ns 
+Original momentum : -10.6586 33.2667 2.61717 keV
+Vertex : -0.516731 -0.289687 2.95809 m    Global time : 10.0749 ns 
   Current trajectory has 2 points.
-Point[0] Position= (82.4151,-41.6542,-1066.6)
-Point[1] Position= (82.3991,-41.6193,-1066.52)
+Point[0] Position= (-516.731,-289.687,2958.09)
+Point[1] Position= (-516.74,-289.658,2958.09)
 
-TrackID =896 : ParentID=832 : TrackStatus=1
+TrackID =924 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.61765 65.1185 11.4112 keV
-Vertex : 0.0819446 -0.0415864 -1.06694 m    Global time : 3.97273 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (81.9446,-41.5864,-1066.94)
-Point[1] Position= (81.9509,-41.3328,-1066.89)
+Original momentum : 49.2463 -64.4568 8.91013 keV
+Vertex : -0.515865 -0.289203 2.95314 m    Global time : 10.058 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-515.865,-289.203,2953.14)
+Point[1] Position= (-515.539,-289.63,2953.2)
+Point[2] Position= (-515.519,-289.634,2953.19)
 
-TrackID =895 : ParentID=832 : TrackStatus=1
+TrackID =923 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.3302 -17.1661 -12.9798 keV
-Vertex : 0.0816342 -0.042178 -1.06551 m    Global time : 3.95138 ns 
+Original momentum : -32.5687 -32.3225 -6.71108 keV
+Vertex : -0.508866 -0.285283 2.91308 m    Global time : 9.92157 ns 
   Current trajectory has 2 points.
-Point[0] Position= (81.6342,-42.178,-1065.51)
-Point[1] Position= (81.6125,-42.1922,-1065.52)
+Point[0] Position= (-508.866,-285.283,2913.08)
+Point[1] Position= (-508.919,-285.336,2913.07)
 
-TrackID =894 : ParentID=832 : TrackStatus=1
+TrackID =922 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -43.5628 10.0188 -45.6321 keV
-Vertex : 0.0719472 -0.0396826 -1.05411 m    Global time : 3.7811 ns 
+Original momentum : -4.88569 45.1613 5.6552 keV
+Vertex : -0.498196 -0.279307 2.85203 m    Global time : 9.71363 ns 
   Current trajectory has 2 points.
-Point[0] Position= (71.9472,-39.6826,-1054.11)
-Point[1] Position= (71.7916,-39.6468,-1054.27)
+Point[0] Position= (-498.196,-279.307,2852.03)
+Point[1] Position= (-498.204,-279.235,2852.04)
 
-TrackID =893 : ParentID=832 : TrackStatus=1
+TrackID =921 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.82742 -27.1942 -36.9324 keV
-Vertex : 0.0761196 -0.0423273 -1.05287 m    Global time : 3.73755 ns 
+Original momentum : -35.9224 28.1026 -1.45043 keV
+Vertex : -0.472386 -0.264848 2.70433 m    Global time : 9.21059 ns 
   Current trajectory has 2 points.
-Point[0] Position= (76.1196,-42.3273,-1052.87)
-Point[1] Position= (76.1083,-42.372,-1052.93)
+Point[0] Position= (-472.386,-264.848,2704.33)
+Point[1] Position= (-472.443,-264.803,2704.33)
 
-TrackID =892 : ParentID=832 : TrackStatus=1
+TrackID =920 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.2638 80.4787 -15.0936 keV
-Vertex : 0.0780663 -0.0426095 -1.05181 m    Global time : 3.71901 ns 
+Original momentum : -70.3983 57.41 1.4941 keV
+Vertex : -0.449111 -0.251817 2.57114 m    Global time : 8.75696 ns 
   Current trajectory has 3 points.
-Point[0] Position= (78.0663,-42.6095,-1051.81)
-Point[1] Position= (78.1962,-42.0373,-1051.91)
-Point[2] Position= (78.2137,-42.1051,-1051.9)
+Point[0] Position= (-449.111,-251.817,2571.14)
+Point[1] Position= (-449.717,-251.323,2571.16)
+Point[2] Position= (-449.714,-251.425,2571.22)
 
-TrackID =891 : ParentID=832 : TrackStatus=1
+TrackID =919 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.9728 -51.4831 -20.5524 keV
-Vertex : 0.0762347 -0.0442454 -1.04381 m    Global time : 3.65574 ns 
+Original momentum : -59.1681 -16.844 -8.15607 keV
+Vertex : -0.443334 -0.248585 2.53809 m    Global time : 8.64439 ns 
   Current trajectory has 3 points.
-Point[0] Position= (76.2347,-44.2454,-1043.81)
-Point[1] Position= (76.0842,-44.4441,-1043.89)
-Point[2] Position= (76.0873,-44.5304,-1043.93)
+Point[0] Position= (-443.334,-248.585,2538.09)
+Point[1] Position= (-443.522,-248.638,2538.07)
+Point[2] Position= (-443.514,-248.7,2538.06)
 
-TrackID =890 : ParentID=832 : TrackStatus=1
+TrackID =918 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.3661 6.13448 33.1534 keV
-Vertex : 0.0691336 -0.058666 -1.03591 m    Global time : 3.52647 ns 
+Original momentum : 20.8628 -66.5634 1.98617 keV
+Vertex : -0.410169 -0.230045 2.34845 m    Global time : 7.99847 ns 
   Current trajectory has 2 points.
-Point[0] Position= (69.1336,-58.666,-1035.91)
-Point[1] Position= (69.1586,-58.6588,-1035.87)
+Point[0] Position= (-410.169,-230.045,2348.45)
+Point[1] Position= (-410.076,-230.342,2348.46)
 
-TrackID =831 : ParentID=817 : TrackStatus=1
+TrackID =917 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.316 -27.4778 -1.73509 keV
-Vertex : 0.0686069 -0.0677447 -1.03227 m    Global time : 3.46035 ns 
+Original momentum : -5.02112 -50.0297 -3.23913 keV
+Vertex : -0.401224 -0.225047 2.29731 m    Global time : 7.82431 ns 
   Current trajectory has 2 points.
-Point[0] Position= (68.6069,-67.7447,-1032.27)
-Point[1] Position= (68.572,-67.7774,-1032.27)
+Point[0] Position= (-401.224,-225.047,2297.31)
+Point[1] Position= (-401.234,-225.147,2297.31)
 
-TrackID =830 : ParentID=817 : TrackStatus=1
+TrackID =916 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -18.0164 -34.3589 -0.421856 keV
-Vertex : 6.33133 -6.25224 -95.265 cm   Global time : 3.19345 ns 
+Original momentum : -29.4559 -11.72 -5.2708 keV
+Vertex : -0.382388 -0.214525 2.18965 m    Global time : 7.45762 ns 
   Current trajectory has 2 points.
-Point[0] Position= (63.3133,-62.5224,-952.65)
-Point[1] Position= (63.2934,-62.5602,-952.651)
+Point[0] Position= (-382.388,-214.525,2189.65)
+Point[1] Position= (-382.409,-214.533,2189.65)
 
-TrackID =829 : ParentID=817 : TrackStatus=1
+TrackID =915 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 43.6634 -35.2706 2.12383 keV
-Vertex : 6.07121 -5.99554 -91.352 cm   Global time : 3.06227 ns 
+Original momentum : 31.5564 5.52852 7.13918 keV
+Vertex : -0.382379 -0.21452 2.1896 m    Global time : 7.45745 ns 
   Current trajectory has 2 points.
-Point[0] Position= (60.7121,-59.9554,-913.52)
-Point[1] Position= (60.8257,-60.0472,-913.514)
+Point[0] Position= (-382.379,-214.52,2189.6)
+Point[1] Position= (-382.355,-214.515,2189.61)
 
-TrackID =828 : ParentID=817 : TrackStatus=1
+TrackID =914 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.7349 29.0969 -1.97859 keV
-Vertex : 5.66143 -5.59119 -85.1904 cm   Global time : 2.85573 ns 
+Original momentum : 31.686 -16.0707 5.25065 keV
+Vertex : -0.358721 -0.201283 2.05432 m    Global time : 6.9967 ns 
   Current trajectory has 2 points.
-Point[0] Position= (56.6143,-55.9119,-851.904)
-Point[1] Position= (56.6254,-55.8899,-851.905)
+Point[0] Position= (-358.721,-201.283,2054.32)
+Point[1] Position= (-358.691,-201.298,2054.33)
 
-TrackID =827 : ParentID=817 : TrackStatus=1
+TrackID =913 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.6092 50.0968 -7.81252 keV
-Vertex : 5.35698 -5.29066 -80.6115 cm   Global time : 2.70223 ns 
+Original momentum : 40.8981 4.36733 9.34551 keV
+Vertex : -0.266618 -0.149654 1.52736 m    Global time : 5.20189 ns 
   Current trajectory has 2 points.
-Point[0] Position= (53.5698,-52.9066,-806.115)
-Point[1] Position= (53.5127,-52.7799,-806.135)
+Point[0] Position= (-266.618,-149.654,1527.36)
+Point[1] Position= (-266.564,-149.648,1527.37)
 
-TrackID =826 : ParentID=817 : TrackStatus=1
+TrackID =912 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 88.3471 -100.517 -4.87877 keV
-Vertex : 4.10241 -4.05241 -61.7309 cm   Global time : 2.06933 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (41.0241,-40.5241,-617.309)
-Point[1] Position= (42.4815,-42.1823,-617.39)
-Point[2] Position= (43.5653,-41.243,-617.227)
-Point[3] Position= (43.4615,-41.1817,-616.991)
-Point[4] Position= (43.1846,-41.058,-616.635)
+Original momentum : 33.8672 -37.0851 4.8125 keV
+Vertex : -0.223868 -0.125652 1.28241 m    Global time : 4.36764 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-223.868,-125.652,1282.41)
+Point[1] Position= (-223.8,-125.726,1282.42)
 
-TrackID =899 : ParentID=826 : TrackStatus=1
+TrackID =911 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.99462 -26.4812 16.2802 keV
-Vertex : 4.34615 -4.11817 -61.6991 cm   Global time : 2.12584 ns 
+Original momentum : 37.0733 -4.03635 7.51721 keV
+Vertex : -0.213656 -0.11992 1.22389 m    Global time : 4.16835 ns 
   Current trajectory has 2 points.
-Point[0] Position= (43.4615,-41.1817,-616.991)
-Point[1] Position= (43.4682,-41.2013,-616.979)
+Point[0] Position= (-213.656,-119.92,1223.89)
+Point[1] Position= (-213.617,-119.924,1223.9)
 
-TrackID =825 : ParentID=817 : TrackStatus=1
+TrackID =910 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -60.7107 23.6826 -9.84163 keV
-Vertex : 3.90944 -3.86191 -58.8272 cm   Global time : 1.97199 ns 
+Original momentum : -78.281 -30.2241 -9.54066 keV
+Vertex : -0.20216 -0.113469 1.15801 m    Global time : 3.94396 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-202.16,-113.469,1158.01)
+Point[1] Position= (-202.644,-113.655,1157.95)
+Point[2] Position= (-202.715,-113.599,1157.96)
+
+TrackID =975 : ParentID=910 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -23.542 -30.8498 3.33733 keV
+Vertex : -0.202644 -0.113655 1.15795 m    Global time : 3.95463 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-202.644,-113.655,1157.95)
+Point[1] Position= (-202.67,-113.69,1157.95)
+
+TrackID =909 : ParentID=58 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 54.8399 12.7842 14.183 keV
+Vertex : -0.1873 -0.105134 1.07288 m    Global time : 3.65403 ns 
   Current trajectory has 2 points.
-Point[0] Position= (39.0944,-38.6191,-588.272)
-Point[1] Position= (38.86,-38.5277,-588.31)
+Point[0] Position= (-187.3,-105.134,1072.88)
+Point[1] Position= (-187.146,-105.098,1072.92)
 
-TrackID =824 : ParentID=817 : TrackStatus=1
+TrackID =908 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.6595 -18.8661 1.93515 keV
-Vertex : 2.45577 -2.42742 -36.9619 cm   Global time : 1.23903 ns 
+Original momentum : -27.6459 26.5872 -0.756994 keV
+Vertex : -0.17827 -0.100073 1.02115 m    Global time : 3.47785 ns 
   Current trajectory has 2 points.
-Point[0] Position= (24.5577,-24.2742,-369.619)
-Point[1] Position= (24.629,-24.3057,-369.616)
+Point[0] Position= (-178.27,-100.073,1021.15)
+Point[1] Position= (-178.3,-100.045,1021.15)
 
-TrackID =823 : ParentID=817 : TrackStatus=1
+TrackID =907 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.807 -30.1498 2.19967 keV
-Vertex : 1.98302 -1.96063 -29.8512 cm   Global time : 1.00066 ns 
+Original momentum : -53.1294 28.7606 -2.82079 keV
+Vertex : -15.9365 -8.94826 91.2842 cm   Global time : 3.10899 ns 
   Current trajectory has 2 points.
-Point[0] Position= (19.8302,-19.6063,-298.512)
-Point[1] Position= (19.8732,-19.6483,-298.509)
+Point[0] Position= (-159.365,-89.4826,912.842)
+Point[1] Position= (-159.531,-89.3929,912.833)
 
-TrackID =822 : ParentID=817 : TrackStatus=1
+TrackID =906 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.0967 -21.2671 -1.69409 keV
-Vertex : 1.62511 -1.60709 -24.4673 cm   Global time : 820.187 ps 
+Original momentum : -5.67671 53.0213 7.07506 keV
+Vertex : -14.46 -8.12147 82.8283 cm   Global time : 2.821 ns 
   Current trajectory has 2 points.
-Point[0] Position= (16.2511,-16.0709,-244.673)
-Point[1] Position= (16.2261,-16.0899,-244.675)
+Point[0] Position= (-144.6,-81.2147,828.283)
+Point[1] Position= (-144.613,-81.0905,828.3)
+
+TrackID =905 : ParentID=58 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -49.3394 -177.022 6.82569 keV
+Vertex : -12.5451 -7.04951 71.8655 cm   Global time : 2.44763 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (-125.451,-70.4951,718.655)
+Point[1] Position= (-125.64,-71.1731,718.681)
+Point[2] Position= (-127.212,-72.8997,719.189)
+Point[3] Position= (-128.712,-72.5723,720.767)
+Point[4] Position= (-128.693,-73.0057,722.177)
+Point[5] Position= (-128.338,-73.2909,722.348)
 
-TrackID =821 : ParentID=817 : TrackStatus=1
+TrackID =976 : ParentID=905 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -66.0407 -79.9039 -9.68754 keV
-Vertex : 1.12364 -1.11149 -16.923 cm   Global time : 567.288 ps 
+Original momentum : -61.9177 -72.0289 -42.0835 keV
+Vertex : -12.7212 -7.28997 71.9189 cm   Global time : 2.47818 ns 
   Current trajectory has 3 points.
-Point[0] Position= (11.2364,-11.1149,-169.23)
-Point[1] Position= (10.4911,-12.0168,-169.339)
-Point[2] Position= (10.6179,-11.8415,-168.971)
+Point[0] Position= (-127.212,-72.8997,719.189)
+Point[1] Position= (-127.893,-73.6921,718.726)
+Point[2] Position= (-127.786,-73.7765,718.419)
 
-TrackID =820 : ParentID=817 : TrackStatus=1
+TrackID =977 : ParentID=976 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.3239 7.14599 -3.57626 keV
-Vertex : 0.943954 -0.933843 -14.2185 cm   Global time : 476.626 ps 
+Original momentum : -12.2668 29.0735 -12.3323 keV
+Vertex : -12.7893 -7.36921 71.8726 cm   Global time : 2.49732 ns 
   Current trajectory has 2 points.
-Point[0] Position= (9.43954,-9.33843,-142.185)
-Point[1] Position= (9.41642,-9.33315,-142.187)
+Point[0] Position= (-127.893,-73.6921,718.726)
+Point[1] Position= (-127.903,-73.6683,718.716)
 
-TrackID =819 : ParentID=817 : TrackStatus=1
+TrackID =904 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.9522 27.0049 -1.64994 keV
-Vertex : 0.327988 -0.32455 -4.94092 cm   Global time : 165.628 ps 
+Original momentum : 65.7065 -46.4622 13.5274 keV
+Vertex : -9.87438 -5.55193 56.5751 cm   Global time : 1.92686 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.27988,-3.2455,-49.4092)
-Point[1] Position= (3.29207,-3.22608,-49.4104)
+Point[0] Position= (-98.7438,-55.5193,565.751)
+Point[1] Position= (-98.3081,-55.8274,565.84)
 
-TrackID =818 : ParentID=817 : TrackStatus=1
+TrackID =903 : ParentID=58 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.25689 34.5627 -3.37315 keV
-Vertex : 0.149082 -0.147508 -2.2454 cm   Global time : 75.2695 ps 
+Original momentum : 9.59268 -51.5909 -0.645491 keV
+Vertex : -8.35772 -4.69966 47.8887 cm   Global time : 1.63101 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.49082,-1.47508,-22.454)
-Point[1] Position= (1.49191,-1.44527,-22.4569)
+Point[0] Position= (-83.5772,-46.9966,478.887)
+Point[1] Position= (-83.556,-47.1104,478.886)
 
-TrackID =816 : ParentID=51 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : -0.107501 0.225513 -1.4886 GeV
-Vertex : 9.90814e-297 -6.2358e-296 6.67102e-294 fm   Global time : 8.63505e-305 ps 
+TrackID =902 : ParentID=58 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 40.0206 81.1435 23.6162 keV
+Vertex : -8.09001 -4.54915 46.3556 cm   Global time : 1.57879 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-80.9001,-45.4915,463.556)
+Point[1] Position= (-80.8273,-45.3438,463.599)
+Point[2] Position= (-80.517,-44.6378,463.693)
+Point[3] Position= (-80.5547,-44.6821,463.782)
+
+TrackID =901 : ParentID=58 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 86.5043 -5.7578 22.4792 keV
+Vertex : -2.8617 -1.60936 16.4021 cm   Global time : 558.625 ps 
+  Current trajectory has 3 points.
+Point[0] Position= (-28.617,-16.0936,164.021)
+Point[1] Position= (-27.8968,-16.1416,164.209)
+Point[2] Position= (-27.8171,-16.175,164.186)
+
+TrackID =900 : ParentID=58 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -63.1761 -31.9406 -9.092 keV
+Vertex : -1.0255 -0.576635 5.87718 cm   Global time : 200.166 ps 
   Current trajectory has 2 points.
-Point[0] Position= (9.90814e-309,-6.2358e-308,6.67102e-306)
-Point[1] Position= (-9.15265e-06,1.92001e-05,-0.000126739)
+Point[0] Position= (-10.255,-5.76635,58.7718)
+Point[1] Position= (-10.5532,-5.91708,58.7289)
 
-TrackID =50 : ParentID=45 : TrackStatus=1
-Particle name : proton  PDG code : 2212  Charge : 1
-Original momentum : 0.244023 0.145296 -4.469 GeV
+TrackID =898 : ParentID=559 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : -85.051 44.95 453.684 MeV
+Vertex : -3.32039 -0.439443 13.7552 nm   Global time : 4.81184e-05 ps 
+  Current trajectory has 4 points.
+Point[0] Position= (-3.32039e-06,-4.39443e-07,1.37552e-05)
+Point[1] Position= (-176.824,93.4524,943.224)
+Point[2] Position= (-187.467,99.0776,1000)
+Point[3] Position= (-1124.8,594.465,6000)
+
+TrackID =57 : ParentID=45 : TrackStatus=1
+Particle name : unknown : rho-  PDG code : -213  Charge : -1
+Original momentum : 0.454599 0.329004 8.64056 GeV
 Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
-  Current trajectory has 63 points.
+  Current trajectory has 2 points.
 Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (3.86843,2.30227,-70.8584)
-Point[2] Position= (5.49833,3.27146,-100.715)
-Point[3] Position= (5.69461,3.3882,-104.311)
-Point[4] Position= (11.2264,6.67687,-205.658)
-Point[5] Position= (12.9874,7.72313,-237.921)
-Point[6] Position= (16.1493,9.60167,-295.855)
-Point[7] Position= (44.2187,26.2643,-810.347)
-Point[8] Position= (59.8094,35.5376,-1096.3)
-Point[9] Position= (69.9291,41.5627,-1281.95)
-Point[10] Position= (70.6637,42.0009,-1295.43)
-Point[11] Position= (71.4105,42.4465,-1309.13)
-Point[12] Position= (75.7238,45.0214,-1388.25)
-Point[13] Position= (95.1083,56.3867,-1741.9)
-Point[14] Position= (99.3175,58.8363,-1818.46)
-Point[15] Position= (115.018,67.9856,-2104.03)
-Point[16] Position= (120.829,71.3757,-2209.76)
-Point[17] Position= (124.187,73.3351,-2270.84)
-Point[18] Position= (125.522,74.1142,-2295.14)
-Point[19] Position= (126.27,74.5506,-2308.74)
-Point[20] Position= (130.417,76.9838,-2384.19)
-Point[21] Position= (130.672,77.1336,-2388.83)
-Point[22] Position= (132.598,78.2649,-2423.89)
-Point[23] Position= (135.304,79.8544,-2473.17)
-Point[24] Position= (138.628,81.8057,-2533.67)
-Point[25] Position= (141.596,83.5464,-2587.7)
-Point[26] Position= (143.524,84.6765,-2622.8)
-Point[27] Position= (144.715,85.375,-2644.47)
-Point[28] Position= (157.059,92.6212,-2869.11)
-Point[29] Position= (158.343,93.3746,-2892.47)
-Point[30] Position= (158.81,93.6485,-2900.96)
-Point[31] Position= (169.141,99.7137,-3088.95)
-Point[32] Position= (175.175,103.255,-3198.61)
-Point[33] Position= (180.266,106.243,-3291.01)
-Point[34] Position= (188.7,111.193,-3444.07)
-Point[35] Position= (193.527,114.025,-3531.65)
-Point[36] Position= (198.259,116.799,-3617.51)
-Point[37] Position= (198.276,116.809,-3617.8)
-Point[38] Position= (199.937,117.782,-3647.93)
-Point[39] Position= (202.671,119.384,-3697.56)
-Point[40] Position= (204.884,120.679,-3737.73)
-Point[41] Position= (205.947,121.301,-3757.05)
-Point[42] Position= (206.089,121.384,-3759.63)
-Point[43] Position= (207.257,122.067,-3780.85)
-Point[44] Position= (208.953,123.059,-3811.66)
-Point[45] Position= (211.081,124.303,-3850.35)
-Point[46] Position= (229.445,135.052,-4184.01)
-Point[47] Position= (237.621,139.832,-4332.53)
-Point[48] Position= (248.457,146.144,-4529.29)
-Point[49] Position= (249.677,146.855,-4551.45)
-Point[50] Position= (265.233,155.91,-4833.92)
-Point[51] Position= (276.609,162.523,-5040.31)
-Point[52] Position= (277.331,162.942,-5053.42)
-Point[53] Position= (285.234,167.537,-5196.75)
-Point[54] Position= (285.361,167.611,-5199.05)
-Point[55] Position= (292.224,171.607,-5323.63)
-Point[56] Position= (295.252,173.373,-5378.69)
-Point[57] Position= (296.261,173.961,-5397.04)
-Point[58] Position= (310.582,182.311,-5657.36)
-Point[59] Position= (319.767,187.662,-5824.29)
-Point[60] Position= (323.469,189.81,-5891.53)
-Point[61] Position= (327.82,192.332,-5970.54)
-Point[62] Position= (329.442,193.272,-6000)
-
-TrackID =960 : ParentID=50 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.612 -12.3393 0.129355 keV
-Vertex : 0.32782 0.192332 -5.97054 m    Global time : 20.3896 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (327.82,192.332,-5970.54)
-Point[1] Position= (327.859,192.318,-5970.54)
-
-TrackID =959 : ParentID=50 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.738545 -41.5747 -3.10641 keV
-Vertex : 0.323469 0.18981 -5.89153 m    Global time : 20.1197 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (323.469,189.81,-5891.53)
-Point[1] Position= (323.468,189.757,-5891.54)
-
-TrackID =958 : ParentID=50 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.0879 56.5606 -0.668684 keV
-Vertex : 0.319767 0.187662 -5.82429 m    Global time : 19.8901 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (319.767,187.662,-5824.29)
-Point[1] Position= (319.833,187.837,-5824.29)
-
-TrackID =957 : ParentID=50 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.3933 -80.0416 -8.28323 keV
-Vertex : 0.310582 0.182311 -5.65736 m    Global time : 19.32 ns 
+Point[1] Position= (1.67561e-307,2.37286e-307,1.99953e-305)
+
+TrackID =979 : ParentID=57 : TrackStatus=1
+Particle name : pi-  PDG code : -211  Charge : -1
+Original momentum : 0.158211 0.553631 4.02749 GeV
+Vertex : 1.67561e-295 2.37286e-295 1.99953e-293 fm   Global time : 8.63153e-305 ps 
+  Current trajectory has 48 points.
+Point[0] Position= (1.67561e-307,2.37286e-307,1.99953e-305)
+Point[1] Position= (3.74337,13.1016,95.3181)
+Point[2] Position= (8.37628,29.3286,213.354)
+Point[3] Position= (11.5423,40.4265,294.075)
+Point[4] Position= (14.2927,50.0737,364.267)
+Point[5] Position= (15.7109,55.0458,400.448)
+Point[6] Position= (39.2182,137.652,1001.49)
+Point[7] Position= (49.5971,174.159,1267.3)
+Point[8] Position= (51.6751,181.478,1320.62)
+Point[9] Position= (59.4282,208.742,1519.32)
+Point[10] Position= (60.4441,212.315,1545.37)
+Point[11] Position= (61.0392,214.407,1560.63)
+Point[12] Position= (66.3153,232.946,1695.88)
+Point[13] Position= (77.4476,272.078,1981.54)
+Point[14] Position= (83.3843,292.955,2133.87)
+Point[15] Position= (99.9121,351.081,2557.77)
+Point[16] Position= (100.076,351.659,2561.98)
+Point[17] Position= (105.717,371.513,2706.77)
+Point[18] Position= (107.029,376.133,2740.46)
+Point[19] Position= (110.249,387.471,2823.14)
+Point[20] Position= (111.5,391.873,2855.25)
+Point[21] Position= (119.419,419.674,3058.05)
+Point[22] Position= (124.676,438.08,3192.39)
+Point[23] Position= (126.587,444.764,3241.17)
+Point[24] Position= (126.738,445.292,3245.02)
+Point[25] Position= (132.009,463.726,3379.55)
+Point[26] Position= (134.525,472.521,3443.74)
+Point[27] Position= (146.044,512.842,3738.1)
+Point[28] Position= (148.361,520.953,3797.32)
+Point[29] Position= (149.376,524.508,3823.28)
+Point[30] Position= (154.813,543.562,3962.49)
+Point[31] Position= (162.824,571.642,4167.59)
+Point[32] Position= (183.463,643.87,4695.21)
+Point[33] Position= (185.025,649.334,4735.13)
+Point[34] Position= (188.576,661.75,4825.86)
+Point[35] Position= (190.666,669.05,4879.2)
+Point[36] Position= (191.023,670.296,4888.31)
+Point[37] Position= (191.339,671.397,4896.36)
+Point[38] Position= (197.794,693.937,5061.09)
+Point[39] Position= (198.364,695.928,5075.65)
+Point[40] Position= (204.44,717.155,5230.76)
+Point[41] Position= (208.934,732.828,5345.32)
+Point[42] Position= (210.053,736.72,5373.76)
+Point[43] Position= (221.85,777.89,5674.65)
+Point[44] Position= (223.942,785.185,5727.95)
+Point[45] Position= (224.745,787.983,5748.4)
+Point[46] Position= (226.087,792.659,5782.58)
+Point[47] Position= (234.631,822.408,6000)
+
+TrackID =1025 : ParentID=979 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -53.1968 0.84544 4.78856 keV
+Vertex : 0.226087 0.792659 5.78258 m    Global time : 19.495 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (226.087,792.659,5782.58)
+Point[1] Position= (225.965,792.661,5782.59)
+
+TrackID =1024 : ParentID=979 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -5.46994 33.1894 -3.19893 keV
+Vertex : 0.224745 0.787983 5.7484 m    Global time : 19.3798 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (224.745,787.983,5748.4)
+Point[1] Position= (224.741,788.01,5748.4)
+
+TrackID =1023 : ParentID=979 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -72.9688 -17.9881 10.9997 keV
+Vertex : 0.223942 0.785185 5.72795 m    Global time : 19.3109 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (223.942,785.185,5727.95)
+Point[1] Position= (223.539,785.086,5728.01)
+
+TrackID =1022 : ParentID=979 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 57.4807 48.9782 -3.33683 keV
+Vertex : 0.22185 0.77789 5.67465 m    Global time : 19.1312 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (221.85,777.89,5674.65)
+Point[1] Position= (222.164,778.158,5674.63)
+
+TrackID =1021 : ParentID=979 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -46.6152 27.2737 0.977974 keV
+Vertex : 0.210053 0.73672 5.37376 m    Global time : 18.1168 ns 
   Current trajectory has 3 points.
-Point[0] Position= (310.582,182.311,-5657.36)
-Point[1] Position= (310.843,181.687,-5657.43)
-Point[2] Position= (310.767,181.572,-5657.45)
+Point[0] Position= (210.053,736.72,5373.76)
+Point[1] Position= (210.047,736.723,5373.76)
+Point[2] Position= (210.02,736.761,5373.75)
 
-TrackID =956 : ParentID=50 : TrackStatus=1
+TrackID =1026 : ParentID=1021 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 74.9578 -45.8544 -5.05469 keV
-Vertex : 0.296261 0.173961 -5.39704 m    Global time : 18.431 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (296.261,173.961,-5397.04)
-Point[1] Position= (296.77,173.65,-5397.08)
-Point[2] Position= (296.695,173.361,-5397.06)
-Point[3] Position= (296.774,173.405,-5397.1)
+Original momentum : -26.9798 -9.40142 19.2716 keV
+Vertex : 0.210047 0.736723 5.37376 m    Global time : 18.1171 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (210.047,736.723,5373.76)
+Point[1] Position= (210.024,736.715,5373.78)
 
-TrackID =961 : ParentID=956 : TrackStatus=1
+TrackID =1020 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.9188 -0.0234052 30.8795 keV
-Vertex : 0.29677 0.17365 -5.39708 m    Global time : 18.4428 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (296.77,173.65,-5397.08)
-Point[1] Position= (296.776,173.65,-5397.05)
+Original momentum : -229.508 96.9417 56.7189 keV
+Vertex : 0.208934 0.732828 5.34532 m    Global time : 18.0209 ns 
+  Current trajectory has 13 points.
+Point[0] Position= (208.934,732.828,5345.32)
+Point[1] Position= (206.035,734.053,5346.03)
+Point[2] Position= (204.064,734.808,5346.8)
+Point[3] Position= (195.198,735.745,5353.9)
+Point[4] Position= (199.136,739.421,5358.5)
+Point[5] Position= (201.156,740.639,5362.65)
+Point[6] Position= (202.481,741.173,5368.14)
+Point[7] Position= (205.437,743.019,5369.89)
+Point[8] Position= (207.449,745.127,5370.78)
+Point[9] Position= (207.908,747.235,5370.18)
+Point[10] Position= (207.196,748.141,5368.92)
+Point[11] Position= (207.412,748.359,5368.78)
+Point[12] Position= (207.635,748.334,5368.64)
 
-TrackID =955 : ParentID=50 : TrackStatus=1
+TrackID =1032 : ParentID=1020 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 39.0336 3.06697 0.710533 keV
-Vertex : 0.295252 0.173373 -5.37869 m    Global time : 18.3684 ns 
+Original momentum : 12.7366 28.2416 15.3668 keV
+Vertex : 0.207412 0.748359 5.36878 m    Global time : 18.4432 ns 
   Current trajectory has 2 points.
-Point[0] Position= (295.252,173.373,-5378.69)
-Point[1] Position= (295.296,173.376,-5378.69)
+Point[0] Position= (207.412,748.359,5368.78)
+Point[1] Position= (207.423,748.383,5368.79)
 
-TrackID =954 : ParentID=50 : TrackStatus=1
+TrackID =1031 : ParentID=1020 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.3186 -41.2589 -2.27488 keV
-Vertex : 0.292224 0.171607 -5.32363 m    Global time : 18.1803 ns 
+Original momentum : 19.7995 -28.7694 -13.8002 keV
+Vertex : 0.207196 0.748141 5.36892 m    Global time : 18.4365 ns 
   Current trajectory has 2 points.
-Point[0] Position= (292.224,171.607,-5323.63)
-Point[1] Position= (292.274,171.529,-5323.64)
+Point[0] Position= (207.196,748.141,5368.92)
+Point[1] Position= (207.217,748.112,5368.91)
 
-TrackID =953 : ParentID=50 : TrackStatus=1
+TrackID =1030 : ParentID=1020 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.1318 -31.9058 -3.0296 keV
-Vertex : 0.285361 0.167611 -5.19905 m    Global time : 17.7549 ns 
+Original momentum : 19.3492 -23.1235 11.4926 keV
+Vertex : 0.205437 0.743019 5.36989 m    Global time : 18.3468 ns 
   Current trajectory has 2 points.
-Point[0] Position= (285.361,167.611,-5199.05)
-Point[1] Position= (285.349,167.583,-5199.06)
+Point[0] Position= (205.437,743.019,5369.89)
+Point[1] Position= (205.451,743.002,5369.9)
 
-TrackID =952 : ParentID=50 : TrackStatus=1
+TrackID =1029 : ParentID=1020 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.4064 -15.1705 0.0278633 keV
-Vertex : 0.285234 0.167537 -5.19675 m    Global time : 17.747 ns 
+Original momentum : 17.5966 37.6957 -7.58704 keV
+Vertex : 0.201156 0.740639 5.36265 m    Global time : 18.2527 ns 
   Current trajectory has 2 points.
-Point[0] Position= (285.234,167.537,-5196.75)
-Point[1] Position= (285.261,167.524,-5196.75)
+Point[0] Position= (201.156,740.639,5362.65)
+Point[1] Position= (201.179,740.689,5362.64)
 
-TrackID =951 : ParentID=50 : TrackStatus=1
+TrackID =1028 : ParentID=1020 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -86.6682 -60.5506 -18.119 keV
-Vertex : 0.277331 0.162942 -5.05342 m    Global time : 17.2575 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (277.331,162.942,-5053.42)
-Point[1] Position= (276.531,162.383,-5053.59)
-Point[2] Position= (275.951,162.189,-5053.97)
-Point[3] Position= (275.915,162.198,-5053.86)
+Original momentum : -12.6188 -31.4446 15.6754 keV
+Vertex : 0.199136 0.739421 5.3585 m    Global time : 18.2101 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (199.136,739.421,5358.5)
+Point[1] Position= (199.123,739.389,5358.52)
 
-TrackID =962 : ParentID=951 : TrackStatus=1
+TrackID =1027 : ParentID=1020 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.51996 -24.0372 23.5065 keV
-Vertex : 0.276531 0.162383 -5.05359 m    Global time : 17.2736 ns 
+Original momentum : -17.1768 46.2166 -26.4568 keV
+Vertex : 0.204064 0.734808 5.3468 m    Global time : 18.062 ns 
   Current trajectory has 2 points.
-Point[0] Position= (276.531,162.383,-5053.59)
-Point[1] Position= (276.524,162.363,-5053.57)
+Point[0] Position= (204.064,734.808,5346.8)
+Point[1] Position= (204.02,734.927,5346.73)
 
-TrackID =950 : ParentID=50 : TrackStatus=1
+TrackID =1019 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 50.0662 64.2057 -1.78634 keV
-Vertex : 0.276609 0.162523 -5.04031 m    Global time : 17.2128 ns 
+Original momentum : -12.3314 46.3214 -3.5749 keV
+Vertex : 0.20444 0.717155 5.23076 m    Global time : 17.6347 ns 
   Current trajectory has 2 points.
-Point[0] Position= (276.609,162.523,-5040.31)
-Point[1] Position= (276.939,162.946,-5040.32)
+Point[0] Position= (204.44,717.155,5230.76)
+Point[1] Position= (204.417,717.238,5230.75)
 
-TrackID =949 : ParentID=50 : TrackStatus=1
+TrackID =1018 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.4634 32.3512 0.602028 keV
-Vertex : 0.265233 0.15591 -4.83392 m    Global time : 16.5079 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (265.233,155.91,-4833.92)
-Point[1] Position= (265.247,155.939,-4833.92)
+Original momentum : -9.93604 -67.3236 14.3636 keV
+Vertex : 0.198364 0.695928 5.07565 m    Global time : 17.1118 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (198.364,695.928,5075.65)
+Point[1] Position= (198.32,695.631,5075.71)
+Point[2] Position= (198.248,695.625,5075.74)
 
-TrackID =948 : ParentID=50 : TrackStatus=1
+TrackID =1017 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.6306 -19.4033 -3.07735 keV
-Vertex : 0.249677 0.146855 -4.55145 m    Global time : 15.5433 ns 
+Original momentum : 40.8809 1.693 -0.180236 keV
+Vertex : 0.197794 0.693937 5.06109 m    Global time : 17.0628 ns 
   Current trajectory has 2 points.
-Point[0] Position= (249.677,146.855,-4551.45)
-Point[1] Position= (249.658,146.841,-4551.45)
+Point[0] Position= (197.794,693.937,5061.09)
+Point[1] Position= (197.844,693.939,5061.09)
 
-TrackID =947 : ParentID=50 : TrackStatus=1
+TrackID =1016 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.3408 -37.8092 -2.11955 keV
-Vertex : 0.248457 0.146144 -4.52929 m    Global time : 15.4676 ns 
+Original momentum : 40.0761 -25.4047 4.14389 keV
+Vertex : 0.191339 0.671397 4.89636 m    Global time : 16.5074 ns 
   Current trajectory has 2 points.
-Point[0] Position= (248.457,146.144,-4529.29)
-Point[1] Position= (248.471,146.1,-4529.29)
+Point[0] Position= (191.339,671.397,4896.36)
+Point[1] Position= (191.409,671.353,4896.36)
 
-TrackID =946 : ParentID=50 : TrackStatus=1
+TrackID =1015 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.3318 -5.16969 -3.15026 keV
-Vertex : 0.237621 0.139832 -4.33253 m    Global time : 14.7957 ns 
+Original momentum : -22.4358 36.0244 -2.2665 keV
+Vertex : 0.191023 0.670296 4.88831 m    Global time : 16.4802 ns 
   Current trajectory has 2 points.
-Point[0] Position= (237.621,139.832,-4332.53)
-Point[1] Position= (237.594,139.828,-4332.53)
+Point[0] Position= (191.023,670.296,4888.31)
+Point[1] Position= (190.993,670.344,4888.3)
 
-TrackID =945 : ParentID=50 : TrackStatus=1
+TrackID =1014 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.66859 45.5129 -1.01719 keV
-Vertex : 0.229445 0.135052 -4.18401 m    Global time : 14.2885 ns 
+Original momentum : -35.6399 -21.1653 6.02466 keV
+Vertex : 0.190666 0.66905 4.8792 m    Global time : 16.4495 ns 
   Current trajectory has 2 points.
-Point[0] Position= (229.445,135.052,-4184.01)
-Point[1] Position= (229.434,135.125,-4184.01)
+Point[0] Position= (190.666,669.05,4879.2)
+Point[1] Position= (190.62,669.022,4879.21)
 
-TrackID =944 : ParentID=50 : TrackStatus=1
+TrackID =1013 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 53.4542 -40.4236 -2.84713 keV
-Vertex : 0.211081 0.124303 -3.85035 m    Global time : 13.149 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (211.081,124.303,-3850.35)
-Point[1] Position= (211.297,124.14,-3850.36)
+Original momentum : 58.3777 59.7663 -3.59691 keV
+Vertex : 0.188576 0.66175 4.82586 m    Global time : 16.2697 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (188.576,661.75,4825.86)
+Point[1] Position= (188.988,662.172,4825.83)
+Point[2] Position= (189.012,662.157,4825.86)
 
-TrackID =943 : ParentID=50 : TrackStatus=1
+TrackID =1012 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.5923 -4.25883 0.3097 keV
-Vertex : 0.208953 0.123059 -3.81166 m    Global time : 13.0168 ns 
+Original momentum : 6.52365 38.4911 -4.00177 keV
+Vertex : 0.185025 0.649334 4.73513 m    Global time : 15.9638 ns 
   Current trajectory has 2 points.
-Point[0] Position= (208.953,123.059,-3811.66)
-Point[1] Position= (209.02,123.052,-3811.66)
+Point[0] Position= (185.025,649.334,4735.13)
+Point[1] Position= (185.033,649.377,4735.13)
 
-TrackID =942 : ParentID=50 : TrackStatus=1
+TrackID =1011 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 62.5498 -23.1193 -1.7402 keV
-Vertex : 0.206089 0.121384 -3.75963 m    Global time : 12.8392 ns 
+Original momentum : 24.0064 -26.4292 3.95309 keV
+Vertex : 0.183463 0.64387 4.69521 m    Global time : 15.8293 ns 
   Current trajectory has 2 points.
-Point[0] Position= (206.089,121.384,-3759.63)
-Point[1] Position= (206.338,121.292,-3759.64)
+Point[0] Position= (183.463,643.87,4695.21)
+Point[1] Position= (183.486,643.846,4695.22)
 
-TrackID =941 : ParentID=50 : TrackStatus=1
+TrackID =1010 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.3214 35.8728 -1.5717 keV
-Vertex : 0.205947 0.121301 -3.75705 m    Global time : 12.8304 ns 
+Original momentum : -29.6893 18.34 -0.147158 keV
+Vertex : 0.162824 0.571642 4.16759 m    Global time : 14.0505 ns 
   Current trajectory has 2 points.
-Point[0] Position= (205.947,121.301,-3757.05)
-Point[1] Position= (205.924,121.345,-3757.05)
+Point[0] Position= (162.824,571.642,4167.59)
+Point[1] Position= (162.798,571.657,4167.59)
 
-TrackID =940 : ParentID=50 : TrackStatus=1
+TrackID =1009 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.2792 29.2511 0.804562 keV
-Vertex : 0.204884 0.120679 -3.73773 m    Global time : 12.7644 ns 
+Original momentum : 21.109 -62.7943 12.2387 keV
+Vertex : 0.154813 0.543562 3.96249 m    Global time : 13.3591 ns 
   Current trajectory has 2 points.
-Point[0] Position= (204.884,120.679,-3737.73)
-Point[1] Position= (204.904,120.707,-3737.73)
+Point[0] Position= (154.813,543.562,3962.49)
+Point[1] Position= (154.899,543.306,3962.54)
 
-TrackID =939 : ParentID=50 : TrackStatus=1
+TrackID =1008 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.9208 26.2915 0.870227 keV
-Vertex : 0.202671 0.119384 -3.69756 m    Global time : 12.6272 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (202.671,119.384,-3697.56)
-Point[1] Position= (202.688,119.406,-3697.56)
+Original momentum : -8.65436 71.3758 -4.32869 keV
+Vertex : 0.149376 0.524508 3.82328 m    Global time : 12.8898 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (149.376,524.508,3823.28)
+Point[1] Position= (149.334,524.851,3823.26)
+Point[2] Position= (149.309,524.807,3823.25)
 
-TrackID =938 : ParentID=50 : TrackStatus=1
+TrackID =1007 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.9219 -4.55571 0.412409 keV
-Vertex : 0.199937 0.117782 -3.64793 m    Global time : 12.4577 ns 
+Original momentum : 27.2333 45.8169 -4.51682 keV
+Vertex : 0.148361 0.520953 3.79732 m    Global time : 12.8023 ns 
   Current trajectory has 2 points.
-Point[0] Position= (199.937,117.782,-3647.93)
-Point[1] Position= (199.988,117.776,-3647.93)
+Point[0] Position= (148.361,520.953,3797.32)
+Point[1] Position= (148.423,521.059,3797.31)
 
-TrackID =937 : ParentID=50 : TrackStatus=1
+TrackID =1006 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 47.8801 -13.148 -0.248749 keV
-Vertex : 0.198276 0.116809 -3.6178 m    Global time : 12.3548 ns 
+Original momentum : 22.2761 25.1362 -3.18963 keV
+Vertex : 0.146044 0.512842 3.7381 m    Global time : 12.6026 ns 
   Current trajectory has 2 points.
-Point[0] Position= (198.276,116.809,-3617.8)
-Point[1] Position= (198.368,116.783,-3617.8)
+Point[0] Position= (146.044,512.842,3738.1)
+Point[1] Position= (146.062,512.863,3738.1)
 
-TrackID =936 : ParentID=50 : TrackStatus=1
+TrackID =1005 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -39.8837 -21.0184 -4.93476 keV
-Vertex : 0.198259 0.116799 -3.61751 m    Global time : 12.3538 ns 
+Original momentum : 28.5959 40.1651 -4.20604 keV
+Vertex : 0.134525 0.472521 3.44374 m    Global time : 11.6102 ns 
   Current trajectory has 2 points.
-Point[0] Position= (198.259,116.799,-3617.51)
-Point[1] Position= (198.197,116.766,-3617.51)
+Point[0] Position= (134.525,472.521,3443.74)
+Point[1] Position= (134.579,472.598,3443.73)
 
-TrackID =935 : ParentID=50 : TrackStatus=1
+TrackID =1004 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.9315 59.9615 -3.25092 keV
-Vertex : 0.193527 0.114025 -3.53165 m    Global time : 12.0606 ns 
+Original momentum : -9.66928 32.9044 -2.95887 keV
+Vertex : 0.132009 0.463726 3.37955 m    Global time : 11.3938 ns 
   Current trajectory has 2 points.
-Point[0] Position= (193.527,114.025,-3531.65)
-Point[1] Position= (193.453,114.237,-3531.66)
+Point[0] Position= (132.009,463.726,3379.55)
+Point[1] Position= (132.001,463.753,3379.54)
 
-TrackID =934 : ParentID=50 : TrackStatus=1
+TrackID =1003 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -111.546 28.739 -18.684 keV
-Vertex : 0.1887 0.111193 -3.44407 m    Global time : 11.7615 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (188.7,111.193,-3444.07)
-Point[1] Position= (187.357,111.539,-3444.29)
-Point[2] Position= (186.833,111.998,-3444.33)
-Point[3] Position= (186.807,112.141,-3444.32)
+Original momentum : 33.582 15.461 -2.08016 keV
+Vertex : 0.126738 0.445292 3.24502 m    Global time : 10.9403 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (126.738,445.292,3245.02)
+Point[1] Position= (126.771,445.307,3245.02)
 
-TrackID =963 : ParentID=934 : TrackStatus=1
+TrackID =1002 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.7252 26.7616 -22.3449 keV
-Vertex : 0.187357 0.111539 -3.44429 m    Global time : 11.7825 ns 
+Original momentum : -5.84343 -31.996 5.69028 keV
+Vertex : 0.126587 0.444764 3.24117 m    Global time : 10.9273 ns 
   Current trajectory has 2 points.
-Point[0] Position= (187.357,111.539,-3444.29)
-Point[1] Position= (187.391,111.575,-3444.32)
+Point[0] Position= (126.587,444.764,3241.17)
+Point[1] Position= (126.583,444.74,3241.18)
 
-TrackID =933 : ParentID=50 : TrackStatus=1
+TrackID =1001 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 43.1011 -28.8549 -1.24639 keV
-Vertex : 0.180266 0.106243 -3.29101 m    Global time : 11.2388 ns 
+Original momentum : -12.9388 -36.861 7.11479 keV
+Vertex : 0.124676 0.43808 3.19239 m    Global time : 10.7628 ns 
   Current trajectory has 2 points.
-Point[0] Position= (180.266,106.243,-3291.01)
-Point[1] Position= (180.359,106.181,-3291.01)
+Point[0] Position= (124.676,438.08,3192.39)
+Point[1] Position= (124.661,438.037,3192.4)
+
+TrackID =1000 : ParentID=979 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -45.0009 91.161 -0.609737 keV
+Vertex : 0.119419 0.419674 3.05805 m    Global time : 10.3099 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (119.419,419.674,3058.05)
+Point[1] Position= (118.932,420.66,3058.05)
+Point[2] Position= (118.866,420.254,3058.23)
 
-TrackID =932 : ParentID=50 : TrackStatus=1
+TrackID =999 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -17.6493 -37.7207 -3.94131 keV
-Vertex : 0.175175 0.103255 -3.19861 m    Global time : 10.9233 ns 
+Original momentum : -45.1939 10.3673 2.46902 keV
+Vertex : 0.1115 0.391873 2.85525 m    Global time : 9.62623 ns 
   Current trajectory has 2 points.
-Point[0] Position= (175.175,103.255,-3198.61)
-Point[1] Position= (175.152,103.206,-3198.62)
+Point[0] Position= (111.5,391.873,2855.25)
+Point[1] Position= (111.425,391.89,2855.25)
 
-TrackID =931 : ParentID=50 : TrackStatus=1
+TrackID =998 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -281.792 -58.9902 -104.11 keV
-Vertex : 0.169141 0.0997137 -3.08895 m    Global time : 10.5487 ns 
-  Current trajectory has 18 points.
-Point[0] Position= (169.141,99.7137,-3088.95)
-Point[1] Position= (147.231,95.127,-3097.04)
-Point[2] Position= (129.909,94.1292,-3106.39)
-Point[3] Position= (118.174,89.6965,-3110.24)
-Point[4] Position= (106.084,87.8278,-3108.62)
-Point[5] Position= (101.964,96.3307,-3111.35)
-Point[6] Position= (101.796,97.1364,-3111.18)
-Point[7] Position= (100.261,103.547,-3107.15)
-Point[8] Position= (104.101,102.633,-3111.54)
-Point[9] Position= (107.858,100.208,-3112.67)
-Point[10] Position= (109.087,100.159,-3111.5)
-Point[11] Position= (111.003,102.005,-3109.41)
-Point[12] Position= (113.197,103.349,-3108.92)
-Point[13] Position= (113.2,103.408,-3109.05)
-Point[14] Position= (112.629,104.017,-3110.75)
-Point[15] Position= (112.499,104.425,-3111.47)
-Point[16] Position= (111.578,104.248,-3112.25)
-Point[17] Position= (111.424,104.438,-3112.55)
+Original momentum : -34.0084 1.88268 2.21721 keV
+Vertex : 0.110249 0.387471 2.82314 m    Global time : 9.51798 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (110.249,387.471,2823.14)
+Point[1] Position= (110.22,387.472,2823.14)
 
-TrackID =967 : ParentID=931 : TrackStatus=1
+TrackID =997 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.8212 13.5537 -5.33632 keV
-Vertex : 0.1132 0.103408 -3.10905 m    Global time : 11.3729 ns 
+Original momentum : 21.8211 -38.3726 6.37655 keV
+Vertex : 0.107029 0.376133 2.74046 m    Global time : 9.23924 ns 
   Current trajectory has 2 points.
-Point[0] Position= (113.2,103.408,-3109.05)
-Point[1] Position= (113.224,103.419,-3109.06)
+Point[0] Position= (107.029,376.133,2740.46)
+Point[1] Position= (107.062,376.076,2740.47)
 
-TrackID =966 : ParentID=931 : TrackStatus=1
+TrackID =996 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.7924 -23.2688 -7.29953 keV
-Vertex : 0.109087 0.100159 -3.1115 m    Global time : 11.3006 ns 
+Original momentum : 36.4684 22.3092 -2.66841 keV
+Vertex : 0.105717 0.371513 2.70677 m    Global time : 9.12564 ns 
   Current trajectory has 2 points.
-Point[0] Position= (109.087,100.159,-3111.5)
-Point[1] Position= (109.122,100.133,-3111.51)
+Point[0] Position= (105.717,371.513,2706.77)
+Point[1] Position= (105.767,371.543,2706.76)
 
-TrackID =965 : ParentID=931 : TrackStatus=1
+TrackID =995 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.77689 22.808 -36.3247 keV
-Vertex : 0.101796 0.0971364 -3.11118 m    Global time : 11.1133 ns 
+Original momentum : -30.7481 42.0541 -1.88951 keV
+Vertex : 0.100076 0.351659 2.56198 m    Global time : 8.63752 ns 
   Current trajectory has 2 points.
-Point[0] Position= (101.796,97.1364,-3111.18)
-Point[1] Position= (101.794,97.1679,-3111.23)
+Point[0] Position= (100.076,351.659,2561.98)
+Point[1] Position= (100.01,351.751,2561.98)
 
-TrackID =964 : ParentID=931 : TrackStatus=1
+TrackID =994 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.82429 0.988338 -39.6866 keV
-Vertex : 0.118174 0.0896965 -3.11024 m    Global time : 10.9321 ns 
+Original momentum : -33.5794 -2.89993 2.83498 keV
+Vertex : 0.0999121 0.351081 2.55777 m    Global time : 8.6233 ns 
   Current trajectory has 2 points.
-Point[0] Position= (118.174,89.6965,-3110.24)
-Point[1] Position= (118.167,89.6977,-3110.29)
+Point[0] Position= (99.9121,351.081,2557.77)
+Point[1] Position= (99.8848,351.079,2557.77)
 
-TrackID =930 : ParentID=50 : TrackStatus=1
+TrackID =993 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -89.8189 31.8809 -13.1012 keV
-Vertex : 0.15881 0.0936485 -2.90096 m    Global time : 9.90676 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (158.81,93.6485,-2900.96)
-Point[1] Position= (157.971,93.9461,-2901.08)
-Point[2] Position= (158.074,93.9103,-2901.33)
+Original momentum : 19.5842 -26.2928 3.91793 keV
+Vertex : 0.0833843 0.292955 2.13387 m    Global time : 7.1942 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (83.3843,292.955,2133.87)
+Point[1] Position= (83.3994,292.935,2133.87)
 
-TrackID =968 : ParentID=930 : TrackStatus=1
+TrackID =992 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.1241 -36.8496 10.8267 keV
-Vertex : 0.157971 0.0939461 -2.90108 m    Global time : 9.92295 ns 
+Original momentum : -42.0961 2.19305 3.10233 keV
+Vertex : 0.0774476 0.272078 1.98154 m    Global time : 6.68066 ns 
   Current trajectory has 2 points.
-Point[0] Position= (157.971,93.9461,-2901.08)
-Point[1] Position= (157.987,93.9013,-2901.07)
+Point[0] Position= (77.4476,272.078,1981.54)
+Point[1] Position= (77.3916,272.081,1981.55)
 
-TrackID =929 : ParentID=50 : TrackStatus=1
+TrackID =991 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.8011 3.03511 -3.56311 keV
-Vertex : 0.157059 0.0926212 -2.86911 m    Global time : 9.79797 ns 
+Original momentum : 41.2015 22.2322 -2.48438 keV
+Vertex : 0.0663153 0.232946 1.69588 m    Global time : 5.71761 ns 
   Current trajectory has 2 points.
-Point[0] Position= (157.059,92.6212,-2869.11)
-Point[1] Position= (157.015,92.6246,-2869.11)
+Point[0] Position= (66.3153,232.946,1695.88)
+Point[1] Position= (66.3847,232.983,1695.88)
 
-TrackID =928 : ParentID=50 : TrackStatus=1
+TrackID =990 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.5384 -61.7416 -5.32258 keV
-Vertex : 0.144715 0.085375 -2.64447 m    Global time : 9.03084 ns 
+Original momentum : 11.458 34.1766 -3.83552 keV
+Vertex : 0.0610392 0.214407 1.56063 m    Global time : 5.26165 ns 
   Current trajectory has 2 points.
-Point[0] Position= (144.715,85.375,-2644.47)
-Point[1] Position= (144.755,85.1617,-2644.49)
+Point[0] Position= (61.0392,214.407,1560.63)
+Point[1] Position= (61.0501,214.44,1560.63)
 
-TrackID =927 : ParentID=50 : TrackStatus=1
+TrackID =989 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.3997 -181.511 -42.2011 keV
-Vertex : 0.143524 0.0846765 -2.6228 m    Global time : 8.95683 ns 
-  Current trajectory has 9 points.
-Point[0] Position= (143.524,84.6765,-2622.8)
-Point[1] Position= (142.618,79.4378,-2624.02)
-Point[2] Position= (143.387,75.182,-2625.05)
-Point[3] Position= (145.717,72.9642,-2624.15)
-Point[4] Position= (145.649,72.5947,-2621.58)
-Point[5] Position= (144.255,71.3928,-2621.31)
-Point[6] Position= (144.535,70.7638,-2621.55)
-Point[7] Position= (144.362,70.6584,-2621.2)
-Point[8] Position= (144.378,70.661,-2621.17)
+Original momentum : 75.3455 120.807 0.166541 keV
+Vertex : 0.0604441 0.212315 1.54537 m    Global time : 5.21019 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (60.4441,212.315,1545.37)
+Point[1] Position= (61.8026,214.493,1545.37)
+Point[2] Position= (61.9706,216.115,1544.64)
+Point[3] Position= (61.9137,216.229,1544.79)
+Point[4] Position= (61.9572,216.335,1545.01)
+Point[5] Position= (62.0914,216.312,1545.07)
 
-TrackID =970 : ParentID=927 : TrackStatus=1
+TrackID =1034 : ParentID=989 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.0342 -45.8726 -18.7267 keV
-Vertex : 0.144535 0.0707638 -2.62155 m    Global time : 9.16328 ns 
+Original momentum : 14.9887 46.1003 -15.7744 keV
+Vertex : 0.0619572 0.216335 1.54501 m    Global time : 5.27623 ns 
   Current trajectory has 2 points.
-Point[0] Position= (144.535,70.7638,-2621.55)
-Point[1] Position= (144.513,70.6704,-2621.59)
+Point[0] Position= (61.9572,216.335,1545.01)
+Point[1] Position= (61.988,216.43,1544.98)
 
-TrackID =969 : ParentID=927 : TrackStatus=1
+TrackID =1033 : ParentID=989 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.3105 -8.24878 -17.2928 keV
-Vertex : 0.144255 0.0713928 -2.62131 m    Global time : 9.15092 ns 
+Original momentum : -49.3878 37.2005 -7.86494 keV
+Vertex : 0.0619137 0.216229 1.54479 m    Global time : 5.27096 ns 
   Current trajectory has 2 points.
-Point[0] Position= (144.255,71.3928,-2621.31)
-Point[1] Position= (144.219,71.3839,-2621.33)
+Point[0] Position= (61.9137,216.229,1544.79)
+Point[1] Position= (61.7477,216.354,1544.77)
 
-TrackID =926 : ParentID=50 : TrackStatus=1
+TrackID =988 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.0525 40.2819 0.401167 keV
-Vertex : 0.141596 0.0835464 -2.5877 m    Global time : 8.83696 ns 
+Original momentum : -17.1011 31.3162 -2.36463 keV
+Vertex : 0.0594282 0.208742 1.51932 m    Global time : 5.12238 ns 
   Current trajectory has 2 points.
-Point[0] Position= (141.596,83.5464,-2587.7)
-Point[1] Position= (141.667,83.6337,-2587.7)
+Point[0] Position= (59.4282,208.742,1519.32)
+Point[1] Position= (59.4125,208.771,1519.32)
 
-TrackID =925 : ParentID=50 : TrackStatus=1
+TrackID =987 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.6759 32.9206 -0.962244 keV
-Vertex : 0.138628 0.0818057 -2.53367 m    Global time : 8.65246 ns 
+Original momentum : -24.5327 29.6977 -1.65115 keV
+Vertex : 0.0516751 0.181478 1.32062 m    Global time : 4.45247 ns 
   Current trajectory has 2 points.
-Point[0] Position= (138.628,81.8057,-2533.67)
-Point[1] Position= (138.615,81.8357,-2533.67)
+Point[0] Position= (51.6751,181.478,1320.62)
+Point[1] Position= (51.6484,181.51,1320.62)
 
-TrackID =924 : ParentID=50 : TrackStatus=1
+TrackID =986 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.13984 36.8394 -0.683905 keV
-Vertex : 0.135304 0.0798544 -2.47317 m    Global time : 8.44583 ns 
+Original momentum : 38.3857 -32.4126 5.47343 keV
+Vertex : 0.0495971 0.174159 1.2673 m    Global time : 4.2727 ns 
   Current trajectory has 2 points.
-Point[0] Position= (135.304,79.8544,-2473.17)
-Point[1] Position= (135.296,79.8925,-2473.17)
+Point[0] Position= (49.5971,174.159,1267.3)
+Point[1] Position= (49.6744,174.094,1267.31)
 
-TrackID =923 : ParentID=50 : TrackStatus=1
+TrackID =985 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.1827 30.9141 0.755365 keV
-Vertex : 0.132598 0.0782649 -2.42389 m    Global time : 8.27754 ns 
+Original momentum : 29.9141 -55.1821 10.3984 keV
+Vertex : 0.0392182 0.137652 1.00149 m    Global time : 3.37653 ns 
   Current trajectory has 2 points.
-Point[0] Position= (132.598,78.2649,-2423.89)
-Point[1] Position= (132.62,78.2964,-2423.89)
+Point[0] Position= (39.2182,137.652,1001.49)
+Point[1] Position= (39.324,137.456,1001.52)
 
-TrackID =922 : ParentID=50 : TrackStatus=1
+TrackID =984 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -44.861 6.4083 -4.33014 keV
-Vertex : 0.130672 0.0771336 -2.38883 m    Global time : 8.15782 ns 
+Original momentum : -1.01237 37.8998 -3.73515 keV
+Vertex : 1.57109 5.50458 40.0448 cm   Global time : 1.35012 ns 
   Current trajectory has 2 points.
-Point[0] Position= (130.672,77.1336,-2388.83)
-Point[1] Position= (130.601,77.1437,-2388.84)
+Point[0] Position= (15.7109,55.0458,400.448)
+Point[1] Position= (15.7098,55.0859,400.444)
 
-TrackID =921 : ParentID=50 : TrackStatus=1
+TrackID =983 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 43.1364 76.9307 -2.88807 keV
-Vertex : 0.130417 0.0769838 -2.38419 m    Global time : 8.14198 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (130.417,76.9838,-2384.19)
-Point[1] Position= (130.764,77.6024,-2384.22)
-Point[2] Position= (130.686,77.63,-2384.2)
+Original momentum : -19.1511 -32.681 6.70311 keV
+Vertex : 1.42927 5.00737 36.4267 cm   Global time : 1.22814 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (14.2927,50.0737,364.267)
+Point[1] Position= (14.2721,50.0384,364.274)
 
-TrackID =920 : ParentID=50 : TrackStatus=1
+TrackID =982 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.386 -16.9685 -3.92034 keV
-Vertex : 0.12627 0.0745506 -2.30874 m    Global time : 7.88431 ns 
+Original momentum : 56.085 11.7237 -0.573262 keV
+Vertex : 1.15423 4.04265 29.4075 cm   Global time : 991.486 ps 
   Current trajectory has 2 points.
-Point[0] Position= (126.27,74.5506,-2308.74)
-Point[1] Position= (126.233,74.5322,-2308.75)
+Point[0] Position= (11.5423,40.4265,294.075)
+Point[1] Position= (11.6955,40.4586,294.074)
 
-TrackID =919 : ParentID=50 : TrackStatus=1
+TrackID =981 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.0269 36.3123 0.331892 keV
-Vertex : 0.125522 0.0741142 -2.29514 m    Global time : 7.83785 ns 
+Original momentum : 50.687 -18.9629 3.51894 keV
+Vertex : 0.837628 2.93286 21.3354 cm   Global time : 719.332 ps 
   Current trajectory has 2 points.
-Point[0] Position= (125.522,74.1142,-2295.14)
-Point[1] Position= (125.641,74.2124,-2295.14)
+Point[0] Position= (8.37628,29.3286,213.354)
+Point[1] Position= (8.49736,29.2833,213.362)
 
-TrackID =918 : ParentID=50 : TrackStatus=1
+TrackID =980 : ParentID=979 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.714 -5.3371 -2.9582 keV
-Vertex : 0.124187 0.0733351 -2.27084 m    Global time : 7.75489 ns 
+Original momentum : -33.07 -1.53576 2.59939 keV
+Vertex : 0.374337 1.31016 9.53181 cm   Global time : 321.368 ps 
   Current trajectory has 2 points.
-Point[0] Position= (124.187,73.3351,-2270.84)
-Point[1] Position= (124.164,73.3312,-2270.85)
+Point[0] Position= (3.74337,13.1016,95.3181)
+Point[1] Position= (3.71751,13.1004,95.3202)
 
-TrackID =917 : ParentID=50 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.9306 90.151 -5.38425 keV
-Vertex : 0.120829 0.0713757 -2.20976 m    Global time : 7.54628 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (120.829,71.3757,-2209.76)
-Point[1] Position= (120.815,71.7991,-2209.78)
-Point[2] Position= (120.901,72.1021,-2209.79)
+TrackID =978 : ParentID=57 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : 0.2538 -0.255448 3.8036 GeV
+Vertex : 1.67561e-295 2.37286e-295 1.99953e-293 fm   Global time : 8.63153e-305 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (1.67561e-307,2.37286e-307,1.99953e-305)
+Point[1] Position= (5.80525e-05,-5.84294e-05,0.00087001)
 
-TrackID =971 : ParentID=917 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.69783 2.52044 39.8534 keV
-Vertex : 0.120815 0.0717991 -2.20978 m    Global time : 7.55441 ns 
+TrackID =56 : ParentID=45 : TrackStatus=1
+Particle name : unknown : rho+  PDG code : 213  Charge : 1
+Original momentum : -0.728762 0.0396097 10.1864 GeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (120.815,71.7991,-2209.78)
-Point[1] Position= (120.806,71.8021,-2209.74)
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (-6.58667e-307,9.6971e-309,1.99922e-305)
 
-TrackID =916 : ParentID=50 : TrackStatus=1
+TrackID =1038 : ParentID=56 : TrackStatus=1
+Particle name : pi+  PDG code : 211  Charge : 1
+Original momentum : -0.366575 0.370196 7.28053 GeV
+Vertex : -6.58667e-295 9.6971e-297 1.99922e-293 fm   Global time : 8.63072e-305 ps 
+  Current trajectory has 49 points.
+Point[0] Position= (-6.58667e-307,9.6971e-309,1.99922e-305)
+Point[1] Position= (-9.40205,9.49695,186.762)
+Point[2] Position= (-13.0633,13.1955,259.493)
+Point[3] Position= (-13.1688,13.3021,261.589)
+Point[4] Position= (-14.3603,14.5061,285.265)
+Point[5] Position= (-18.8953,19.0892,375.408)
+Point[6] Position= (-20.0392,20.2454,398.161)
+Point[7] Position= (-24.8105,25.0696,493.079)
+Point[8] Position= (-34.588,34.9596,687.685)
+Point[9] Position= (-46.061,46.5592,916.019)
+Point[10] Position= (-48.3341,48.8564,961.25)
+Point[11] Position= (-67.1532,67.8762,1335.63)
+Point[12] Position= (-76.9626,77.7941,1530.7)
+Point[13] Position= (-78.5982,79.4473,1563.22)
+Point[14] Position= (-80.4962,81.3659,1600.96)
+Point[15] Position= (-82.169,83.0574,1634.23)
+Point[16] Position= (-86.453,87.3902,1719.44)
+Point[17] Position= (-91.6056,92.5958,1821.86)
+Point[18] Position= (-95.7741,96.8069,1904.71)
+Point[19] Position= (-96.7916,97.8347,1924.94)
+Point[20] Position= (-97.2909,98.3391,1934.86)
+Point[21] Position= (-98.092,99.1484,1950.78)
+Point[22] Position= (-98.9785,100.044,1968.4)
+Point[23] Position= (-101.115,102.203,2010.87)
+Point[24] Position= (-114.974,116.221,2286.4)
+Point[25] Position= (-124.08,125.438,2467.67)
+Point[26] Position= (-128.599,130.015,2557.69)
+Point[27] Position= (-138.359,139.886,2751.93)
+Point[28] Position= (-142.419,143.994,2832.73)
+Point[29] Position= (-146.237,147.855,2908.66)
+Point[30] Position= (-157.711,159.454,3136.8)
+Point[31] Position= (-164.82,166.646,3278.19)
+Point[32] Position= (-166.01,167.85,3301.86)
+Point[33] Position= (-166.536,168.383,3312.34)
+Point[34] Position= (-171.286,173.185,3406.83)
+Point[35] Position= (-177.164,179.126,3523.76)
+Point[36] Position= (-186.476,188.543,3709.13)
+Point[37] Position= (-187.362,189.439,3726.76)
+Point[38] Position= (-214.841,217.251,4273.84)
+Point[39] Position= (-224.13,226.669,4458.84)
+Point[40] Position= (-226,228.567,4496.11)
+Point[41] Position= (-242.469,245.219,4823.03)
+Point[42] Position= (-250.794,253.63,4988.2)
+Point[43] Position= (-262.587,265.532,5222.08)
+Point[44] Position= (-274.571,277.64,5459.8)
+Point[45] Position= (-276.254,279.343,5493.2)
+Point[46] Position= (-283.947,287.121,5645.84)
+Point[47] Position= (-295.079,298.373,5866.69)
+Point[48] Position= (-301.802,305.162,6000)
+
+TrackID =1085 : ParentID=1038 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 41.2364 17.1753 3.16884 keV
+Vertex : -0.295079 0.298373 5.86669 m    Global time : 19.6228 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-295.079,298.373,5866.69)
+Point[1] Position= (-295.016,298.399,5866.69)
+
+TrackID =1084 : ParentID=1038 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 14.7795 -35.9492 4.073 keV
+Vertex : -0.283947 0.287121 5.64584 m    Global time : 18.8841 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-283.947,287.121,5645.84)
+Point[1] Position= (-283.93,287.081,5645.84)
+
+TrackID =1083 : ParentID=1038 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 29.1437 -18.6649 3.60687 keV
+Vertex : -0.276254 0.279343 5.4932 m    Global time : 18.3735 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-276.254,279.343,5493.2)
+Point[1] Position= (-276.228,279.327,5493.21)
+
+TrackID =1082 : ParentID=1038 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 32.1574 -29.2586 4.98737 keV
+Vertex : -0.274571 0.27764 5.4598 m    Global time : 18.2618 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-274.571,277.64,5459.8)
+Point[1] Position= (-274.524,277.598,5459.81)
+
+TrackID =1081 : ParentID=1038 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 25.5083 28.938 1.2733 keV
+Vertex : -0.262587 0.265532 5.22208 m    Global time : 17.4666 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-262.587,265.532,5222.08)
+Point[1] Position= (-262.56,265.563,5222.08)
+
+TrackID =1080 : ParentID=1038 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 31.4883 15.9442 2.0014 keV
+Vertex : -0.250794 0.25363 4.9882 m    Global time : 16.6844 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-250.794,253.63,4988.2)
+Point[1] Position= (-250.766,253.644,4988.2)
+
+TrackID =1079 : ParentID=1038 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 10.7296 60.059 1.12105 keV
+Vertex : -0.242469 0.245219 4.82303 m    Global time : 16.1319 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-242.469,245.219,4823.03)
+Point[1] Position= (-242.434,245.411,4823.04)
+
+TrackID =1078 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -17.7876 -42.7762 -4.51425 keV
-Vertex : 0.115018 0.0679856 -2.10403 m    Global time : 7.18523 ns 
+Original momentum : 32.878 -6.80184 3.11157 keV
+Vertex : -0.226 0.228567 4.49611 m    Global time : 15.0384 ns 
   Current trajectory has 2 points.
-Point[0] Position= (115.018,67.9856,-2104.03)
-Point[1] Position= (114.989,67.9146,-2104.04)
+Point[0] Position= (-226,228.567,4496.11)
+Point[1] Position= (-225.974,228.561,4496.11)
 
-TrackID =915 : ParentID=50 : TrackStatus=1
+TrackID =1077 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.1275 36.6612 0.428385 keV
-Vertex : 0.0993175 0.0588363 -1.81846 m    Global time : 6.20998 ns 
+Original momentum : -15.1673 -42.4274 3.39816 keV
+Vertex : -0.22413 0.226669 4.45884 m    Global time : 14.9138 ns 
   Current trajectory has 2 points.
-Point[0] Position= (99.3175,58.8363,-1818.46)
-Point[1] Position= (99.4139,58.9244,-1818.45)
+Point[0] Position= (-224.13,226.669,4458.84)
+Point[1] Position= (-224.153,226.603,4458.85)
 
-TrackID =914 : ParentID=50 : TrackStatus=1
+TrackID =1076 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.68284 43.0314 -0.151316 keV
-Vertex : 0.0951083 0.0563867 -1.7419 m    Global time : 5.94854 ns 
+Original momentum : 54.6619 -93.8829 19.3324 keV
+Vertex : -0.214841 0.217251 4.27384 m    Global time : 14.295 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-214.841,217.251,4273.84)
+Point[1] Position= (-214.161,216.084,4274.09)
+Point[2] Position= (-214.091,215.272,4273.64)
+Point[3] Position= (-214.217,215.47,4273.58)
+
+TrackID =1075 : ParentID=1038 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -5.35234 -36.5598 2.93513 keV
+Vertex : -0.187362 0.189439 3.72676 m    Global time : 12.4652 ns 
   Current trajectory has 2 points.
-Point[0] Position= (95.1083,56.3867,-1741.9)
-Point[1] Position= (95.1178,56.448,-1741.9)
+Point[0] Position= (-187.362,189.439,3726.76)
+Point[1] Position= (-187.367,189.402,3726.77)
+
+TrackID =1074 : ParentID=1038 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 41.1378 88.2631 6.84847 keV
+Vertex : -0.186476 0.188543 3.70913 m    Global time : 12.4062 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-186.476,188.543,3709.13)
+Point[1] Position= (-186.064,189.427,3709.2)
+Point[2] Position= (-186.125,189.368,3709.06)
 
-TrackID =913 : ParentID=50 : TrackStatus=1
+TrackID =1073 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.64 39.796 0.295001 keV
-Vertex : 0.0757238 0.0450214 -1.38825 m    Global time : 4.74084 ns 
+Original momentum : -38.029 -2.34885 -0.369823 keV
+Vertex : -0.177164 0.179126 3.52376 m    Global time : 11.7862 ns 
   Current trajectory has 2 points.
-Point[0] Position= (75.7238,45.0214,-1388.25)
-Point[1] Position= (75.7434,45.0748,-1388.25)
+Point[0] Position= (-177.164,179.126,3523.76)
+Point[1] Position= (-177.204,179.123,3523.76)
 
-TrackID =912 : ParentID=50 : TrackStatus=1
+TrackID =1072 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.723 -60.5163 -5.13485 keV
-Vertex : 0.0714105 0.0424465 -1.30913 m    Global time : 4.47063 ns 
+Original momentum : 5.76823 -32.3455 3.00021 keV
+Vertex : -0.171286 0.173185 3.40683 m    Global time : 11.395 ns 
   Current trajectory has 2 points.
-Point[0] Position= (71.4105,42.4465,-1309.13)
-Point[1] Position= (71.6334,42.1308,-1309.15)
+Point[0] Position= (-171.286,173.185,3406.83)
+Point[1] Position= (-171.281,173.16,3406.83)
 
-TrackID =911 : ParentID=50 : TrackStatus=1
+TrackID =1071 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.6743 -20.6146 -0.461132 keV
-Vertex : 0.0706637 0.0420009 -1.29543 m    Global time : 4.42384 ns 
+Original momentum : 32.1461 59.1767 3.04676 keV
+Vertex : -0.166536 0.168383 3.31234 m    Global time : 11.079 ns 
   Current trajectory has 2 points.
-Point[0] Position= (70.6637,42.0009,-1295.43)
-Point[1] Position= (70.7156,41.9725,-1295.43)
+Point[0] Position= (-166.536,168.383,3312.34)
+Point[1] Position= (-166.405,168.625,3312.35)
 
-TrackID =910 : ParentID=50 : TrackStatus=1
+TrackID =1070 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 60.4541 0.640914 -0.332032 keV
-Vertex : 0.0699291 0.0415627 -1.28195 m    Global time : 4.37783 ns 
+Original momentum : 41.8285 -15.5188 4.86396 keV
+Vertex : -0.16601 0.16785 3.30186 m    Global time : 11.0439 ns 
   Current trajectory has 2 points.
-Point[0] Position= (69.9291,41.5627,-1281.95)
-Point[1] Position= (70.1176,41.5647,-1281.95)
+Point[0] Position= (-166.01,167.85,3301.86)
+Point[1] Position= (-165.946,167.827,3301.87)
 
-TrackID =909 : ParentID=50 : TrackStatus=1
+TrackID =1069 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -71.5497 -18.5726 -10.047 keV
-Vertex : 0.0598094 0.0355376 -1.0963 m    Global time : 3.74381 ns 
+Original momentum : 50.1456 -54.2537 10.7192 keV
+Vertex : -0.16482 0.166646 3.27819 m    Global time : 10.9648 ns 
   Current trajectory has 3 points.
-Point[0] Position= (59.8094,35.5376,-1096.3)
-Point[1] Position= (59.7188,35.5141,-1096.31)
-Point[2] Position= (59.643,35.6307,-1096.24)
+Point[0] Position= (-164.82,166.646,3278.19)
+Point[1] Position= (-164.767,166.589,3278.2)
+Point[2] Position= (-164.573,166.486,3278.18)
 
-TrackID =972 : ParentID=909 : TrackStatus=1
+TrackID =1086 : ParentID=1069 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.6666 -21.601 -8.17187 keV
-Vertex : 0.0597188 0.0355141 -1.09631 m    Global time : 3.74599 ns 
+Original momentum : -6.2007 -17.973 29.2939 keV
+Vertex : -0.164767 0.166589 3.2782 m    Global time : 10.9666 ns 
   Current trajectory has 2 points.
-Point[0] Position= (59.7188,35.5141,-1096.31)
-Point[1] Position= (59.6506,35.4779,-1096.32)
+Point[0] Position= (-164.767,166.589,3278.2)
+Point[1] Position= (-164.772,166.573,3278.23)
 
-TrackID =908 : ParentID=50 : TrackStatus=1
+TrackID =1068 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 48.0078 -5.21176 0.119588 keV
-Vertex : 4.42187 2.62643 -81.0347 cm   Global time : 2.76731 ns 
+Original momentum : -36.4169 31.6153 -1.16315 keV
+Vertex : -0.157711 0.159454 3.1368 m    Global time : 10.4919 ns 
   Current trajectory has 2 points.
-Point[0] Position= (44.2187,26.2643,-810.347)
-Point[1] Position= (44.3055,26.2549,-810.347)
+Point[0] Position= (-157.711,159.454,3136.8)
+Point[1] Position= (-157.776,159.511,3136.8)
 
-TrackID =907 : ParentID=50 : TrackStatus=1
+TrackID =1067 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.8583 22.299 -1.75313 keV
-Vertex : 1.61493 0.960167 -29.5855 cm   Global time : 1.01034 ns 
+Original momentum : -37.5373 8.0192 -0.850688 keV
+Vertex : -0.146237 0.147855 2.90866 m    Global time : 9.72879 ns 
   Current trajectory has 2 points.
-Point[0] Position= (16.1493,9.60167,-295.855)
-Point[1] Position= (16.1296,9.61937,-295.857)
+Point[0] Position= (-146.237,147.855,2908.66)
+Point[1] Position= (-146.277,147.863,2908.66)
 
-TrackID =906 : ParentID=50 : TrackStatus=1
+TrackID =1066 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.7224 -25.443 -3.14064 keV
-Vertex : 1.29874 0.772313 -23.7921 cm   Global time : 812.496 ps 
+Original momentum : -23.3357 -26.5818 1.40594 keV
+Vertex : -0.142419 0.143994 2.83273 m    Global time : 9.47482 ns 
   Current trajectory has 2 points.
-Point[0] Position= (12.9874,7.72313,-237.921)
-Point[1] Position= (12.97,7.70272,-237.924)
+Point[0] Position= (-142.419,143.994,2832.73)
+Point[1] Position= (-142.44,143.97,2832.73)
 
-TrackID =905 : ParentID=50 : TrackStatus=1
+TrackID =1065 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.9998 -33.7496 -5.78324 keV
-Vertex : 1.12264 0.667687 -20.5658 cm   Global time : 702.319 ps 
+Original momentum : -21.275 35.7197 -1.1911 keV
+Vertex : -0.138359 0.139886 2.75193 m    Global time : 9.20456 ns 
   Current trajectory has 2 points.
-Point[0] Position= (11.2264,6.67687,-205.658)
-Point[1] Position= (11.1476,6.60689,-205.67)
+Point[0] Position= (-138.359,139.886,2751.93)
+Point[1] Position= (-138.386,139.932,2751.93)
 
-TrackID =904 : ParentID=50 : TrackStatus=1
+TrackID =1064 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.7591 24.1738 0.943162 keV
-Vertex : 0.569461 0.33882 -10.4311 cm   Global time : 356.221 ps 
+Original momentum : 56.95 -4.12879 6.29652 keV
+Vertex : -0.128599 0.130015 2.55769 m    Global time : 8.55487 ns 
   Current trajectory has 2 points.
-Point[0] Position= (5.69461,3.3882,-104.311)
-Point[1] Position= (5.71967,3.41084,-104.31)
+Point[0] Position= (-128.599,130.015,2557.69)
+Point[1] Position= (-128.443,130.004,2557.71)
 
-TrackID =903 : ParentID=50 : TrackStatus=1
+TrackID =1063 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.1866 -26.187 -0.796645 keV
-Vertex : 0.549833 0.327146 -10.0715 cm   Global time : 343.94 ps 
+Original momentum : -24.5768 42.6656 -1.02938 keV
+Vertex : -0.12408 0.125438 2.46767 m    Global time : 8.25377 ns 
   Current trajectory has 2 points.
-Point[0] Position= (5.49833,3.27146,-100.715)
-Point[1] Position= (5.5223,3.24653,-100.716)
+Point[0] Position= (-124.08,125.438,2467.67)
+Point[1] Position= (-124.126,125.518,2467.66)
+
+TrackID =1062 : ParentID=1038 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -131.142 11.1799 9.65118 keV
+Vertex : -0.114974 0.116221 2.2864 m    Global time : 7.64747 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (-114.974,116.221,2286.4)
+Point[1] Position= (-117.092,116.401,2286.55)
+Point[2] Position= (-118.324,116.988,2287.27)
+Point[3] Position= (-117.672,116.925,2286.78)
+Point[4] Position= (-117.657,116.9,2286.86)
 
-TrackID =902 : ParentID=50 : TrackStatus=1
+TrackID =1061 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -80.1885 8.248 -10.6932 keV
-Vertex : 0.386843 0.230227 -7.08584 cm   Global time : 241.98 ps 
+Original momentum : 49.401 -64.4709 12.3442 keV
+Vertex : -0.101115 0.102203 2.01087 m    Global time : 6.72588 ns 
   Current trajectory has 3 points.
-Point[0] Position= (3.86843,2.30227,-70.8584)
-Point[1] Position= (3.34137,2.35648,-70.9287)
-Point[2] Position= (3.33906,2.35792,-70.9297)
+Point[0] Position= (-101.115,102.203,2010.87)
+Point[1] Position= (-100.782,101.768,2010.95)
+Point[2] Position= (-100.785,101.773,2010.93)
 
-TrackID =901 : ParentID=816 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : -0.0849487 0.161988 -1.338 GeV
-Vertex : -9.15265 19.2001 -126.739 nm   Global time : 0.000430381 ps 
+TrackID =1060 : ParentID=1038 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 13.0355 -33.096 3.59076 keV
+Vertex : -0.0989785 0.100044 1.9684 m    Global time : 6.58384 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-9.15265e-06,1.92001e-05,-0.000126739)
-Point[1] Position= (-380.937,726.404,-6000)
-
-TrackID =49 : ParentID=45 : TrackStatus=1
-Particle name : pi+  PDG code : 211  Charge : 1
-Original momentum : 0.488645 0.445824 -10.7884 GeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
-  Current trajectory has 54 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (1.95393,1.78261,-43.1402)
-Point[2] Position= (11.6758,10.648,-257.756)
-Point[3] Position= (12.9785,11.8358,-286.516)
-Point[4] Position= (31.8521,29.0444,-703.174)
-Point[5] Position= (57.8846,52.7541,-1277.32)
-Point[6] Position= (68.6994,62.6056,-1515.92)
-Point[7] Position= (77.729,70.8348,-1715.21)
-Point[8] Position= (83.8259,76.3965,-1849.87)
-Point[9] Position= (85.0036,77.4715,-1875.89)
-Point[10] Position= (86.8944,79.197,-1917.67)
-Point[11] Position= (90.078,82.1022,-1988.02)
-Point[12] Position= (92.9132,84.6891,-2050.69)
-Point[13] Position= (103.663,94.4955,-2288.32)
-Point[14] Position= (104.912,95.6351,-2315.94)
-Point[15] Position= (107.229,97.7488,-2367.17)
-Point[16] Position= (107.37,97.8771,-2370.29)
-Point[17] Position= (110.017,100.286,-2428.78)
-Point[18] Position= (110.196,100.449,-2432.74)
-Point[19] Position= (113.826,103.753,-2512.97)
-Point[20] Position= (117.724,107.302,-2599.15)
-Point[21] Position= (124.331,113.311,-2745.2)
-Point[22] Position= (133.323,121.491,-2944.11)
-Point[23] Position= (136.066,123.986,-3004.79)
-Point[24] Position= (142.004,129.386,-3136.14)
-Point[25] Position= (144.091,131.284,-3182.28)
-Point[26] Position= (144.886,132.005,-3199.83)
-Point[27] Position= (146.015,133.031,-3224.78)
-Point[28] Position= (148.735,135.503,-3284.87)
-Point[29] Position= (150.793,137.373,-3330.32)
-Point[30] Position= (150.888,137.46,-3332.43)
-Point[31] Position= (151.97,138.442,-3356.32)
-Point[32] Position= (155.654,141.789,-3437.69)
-Point[33] Position= (170.171,154.973,-3758.17)
-Point[34] Position= (171.98,156.615,-3798.09)
-Point[35] Position= (172.336,156.939,-3805.96)
-Point[36] Position= (177.441,161.575,-3918.63)
-Point[37] Position= (179.593,163.528,-3966.13)
-Point[38] Position= (184.368,167.866,-4071.56)
-Point[39] Position= (184.672,168.142,-4078.26)
-Point[40] Position= (186.371,169.687,-4115.79)
-Point[41] Position= (191.284,174.155,-4224.32)
-Point[42] Position= (196.948,179.307,-4349.51)
-Point[43] Position= (228.291,207.828,-5042.74)
-Point[44] Position= (238.982,217.55,-5279.22)
-Point[45] Position= (239.069,217.629,-5281.15)
-Point[46] Position= (242.365,220.625,-5354.02)
-Point[47] Position= (252.767,230.079,-5584.03)
-Point[48] Position= (253.557,230.797,-5601.49)
-Point[49] Position= (255.158,232.252,-5636.9)
-Point[50] Position= (262.703,239.104,-5803.74)
-Point[51] Position= (265.042,241.228,-5855.47)
-Point[52] Position= (265.56,241.698,-5866.92)
-Point[53] Position= (271.578,247.162,-6000)
-
-TrackID =1024 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -53.0636 1.45073 -5.12079 keV
-Vertex : 0.26556 0.241698 -5.86692 m    Global time : 19.6082 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (265.56,241.698,-5866.92)
-Point[1] Position= (265.438,241.702,-5866.93)
-
-TrackID =1023 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.2245 11.893 -2.46384 keV
-Vertex : 0.265042 0.241228 -5.85547 m    Global time : 19.5699 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (265.042,241.228,-5855.47)
-Point[1] Position= (265.007,241.24,-5855.47)
-
-TrackID =1022 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.0678 27.5543 -1.36262 keV
-Vertex : 0.262703 0.239104 -5.80374 m    Global time : 19.397 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (262.703,239.104,-5803.74)
-Point[1] Position= (262.678,239.132,-5803.74)
-
-TrackID =1021 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 17.7709 27.8588 0.878512 keV
-Vertex : 0.255158 0.232252 -5.6369 m    Global time : 18.8394 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (255.158,232.252,-5636.9)
-Point[1] Position= (255.172,232.274,-5636.9)
-
-TrackID =1020 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.1023 -5.80166 0.0587371 keV
-Vertex : 0.253557 0.230797 -5.60149 m    Global time : 18.7211 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (253.557,230.797,-5601.49)
-Point[1] Position= (253.595,230.791,-5601.49)
-
-TrackID =1019 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.11558 -131.24 -22.2042 keV
-Vertex : 0.252767 0.230079 -5.58403 m    Global time : 18.6627 ns 
-  Current trajectory has 7 points.
-Point[0] Position= (252.767,230.079,-5584.03)
-Point[1] Position= (252.798,229.506,-5584.12)
-Point[2] Position= (252.64,228.987,-5584.23)
-Point[3] Position= (253.606,227.457,-5584.05)
-Point[4] Position= (253.061,227.468,-5582.83)
-Point[5] Position= (253.355,227.039,-5583.25)
-Point[6] Position= (253.428,227.015,-5583.09)
+Point[0] Position= (-98.9785,100.044,1968.4)
+Point[1] Position= (-98.9665,100.014,1968.4)
 
-TrackID =1025 : ParentID=1019 : TrackStatus=1
+TrackID =1059 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.9106 -13.7914 28.3569 keV
-Vertex : 0.252798 0.229506 -5.58412 m    Global time : 18.6704 ns 
+Original momentum : 33.757 -18.2407 4.08426 keV
+Vertex : -0.098092 0.0991484 1.95078 m    Global time : 6.52491 ns 
   Current trajectory has 2 points.
-Point[0] Position= (252.798,229.506,-5584.12)
-Point[1] Position= (252.828,229.49,-5584.09)
+Point[0] Position= (-98.092,99.1484,1950.78)
+Point[1] Position= (-98.0554,99.1286,1950.79)
 
-TrackID =1018 : ParentID=49 : TrackStatus=1
+TrackID =1058 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.34 -10.2016 -2.90898 keV
-Vertex : 0.242365 0.220625 -5.35402 m    Global time : 17.894 ns 
+Original momentum : -26.5386 21.9214 -1.28681 keV
+Vertex : -0.0972909 0.0983391 1.93486 m    Global time : 6.47165 ns 
   Current trajectory has 2 points.
-Point[0] Position= (242.365,220.625,-5354.02)
-Point[1] Position= (242.341,220.617,-5354.02)
+Point[0] Position= (-97.2909,98.3391,1934.86)
+Point[1] Position= (-97.3133,98.3576,1934.86)
 
-TrackID =1017 : ParentID=49 : TrackStatus=1
+TrackID =1057 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.8272 -31.0962 -3.87287 keV
-Vertex : 0.239069 0.217629 -5.28115 m    Global time : 17.6505 ns 
+Original momentum : -3.51381 -66.7295 7.63392 keV
+Vertex : -0.0967916 0.0978347 1.92494 m    Global time : 6.43846 ns 
   Current trajectory has 2 points.
-Point[0] Position= (239.069,217.629,-5281.15)
-Point[1] Position= (239.042,217.594,-5281.15)
+Point[0] Position= (-96.7916,97.8347,1924.94)
+Point[1] Position= (-96.8058,97.5636,1924.97)
 
-TrackID =1016 : ParentID=49 : TrackStatus=1
+TrackID =1056 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -59.0397 6.6212 -5.87983 keV
-Vertex : 0.238982 0.21755 -5.27922 m    Global time : 17.644 ns 
+Original momentum : 22.8167 23.4911 1.00613 keV
+Vertex : -0.0957741 0.0968069 1.90471 m    Global time : 6.37082 ns 
   Current trajectory has 2 points.
-Point[0] Position= (238.982,217.55,-5279.22)
-Point[1] Position= (238.804,217.57,-5279.24)
+Point[0] Position= (-95.7741,96.8069,1904.71)
+Point[1] Position= (-95.7568,96.8248,1904.71)
 
-TrackID =1015 : ParentID=49 : TrackStatus=1
+TrackID =1055 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.63676 -36.031 -2.64683 keV
-Vertex : 0.228291 0.207828 -5.04274 m    Global time : 16.8537 ns 
+Original momentum : 23.2216 -52.2191 7.06486 keV
+Vertex : -0.0916056 0.0925958 1.82186 m    Global time : 6.0937 ns 
   Current trajectory has 2 points.
-Point[0] Position= (228.291,207.828,-5042.74)
-Point[1] Position= (228.294,207.794,-5042.74)
+Point[0] Position= (-91.6056,92.5958,1821.86)
+Point[1] Position= (-91.5414,92.4514,1821.88)
 
-TrackID =1014 : ParentID=49 : TrackStatus=1
+TrackID =1054 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.5281 16.6315 -2.43535 keV
-Vertex : 0.196948 0.179307 -4.34951 m    Global time : 14.5368 ns 
+Original momentum : 59.4176 26.3261 5.80916 keV
+Vertex : -0.086453 0.0873902 1.71944 m    Global time : 5.75112 ns 
   Current trajectory has 2 points.
-Point[0] Position= (196.948,179.307,-4349.51)
-Point[1] Position= (196.908,179.326,-4349.51)
+Point[0] Position= (-86.453,87.3902,1719.44)
+Point[1] Position= (-86.2292,87.4894,1719.46)
 
-TrackID =1013 : ParentID=49 : TrackStatus=1
+TrackID =1053 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.4956 -77.5473 -11.5685 keV
-Vertex : 0.191284 0.174155 -4.22432 m    Global time : 14.1184 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (191.284,174.155,-4224.32)
-Point[1] Position= (191.066,173.619,-4224.4)
-Point[2] Position= (191.035,173.593,-4224.43)
+Original momentum : 27.1954 -32.4076 4.79045 keV
+Vertex : -0.082169 0.0830574 1.63423 m    Global time : 5.46611 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-82.169,83.0574,1634.23)
+Point[1] Position= (-82.1322,83.0135,1634.23)
 
-TrackID =1026 : ParentID=1013 : TrackStatus=1
+TrackID =1052 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.90257 -35.0913 19.0841 keV
-Vertex : 0.191066 0.173619 -4.2244 m    Global time : 14.1303 ns 
+Original momentum : -36.8742 13.2253 -1.02254 keV
+Vertex : -0.0804962 0.0813659 1.60096 m    Global time : 5.35484 ns 
   Current trajectory has 2 points.
-Point[0] Position= (191.066,173.619,-4224.4)
-Point[1] Position= (191.075,173.576,-4224.38)
+Point[0] Position= (-80.4962,81.3659,1600.96)
+Point[1] Position= (-80.5377,81.3808,1600.96)
 
-TrackID =1012 : ParentID=49 : TrackStatus=1
+TrackID =1051 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 120.888 14.0296 -8.33384 keV
-Vertex : 0.186371 0.169687 -4.11579 m    Global time : 13.7557 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (186.371,169.687,-4115.79)
-Point[1] Position= (188.117,169.89,-4115.91)
-Point[2] Position= (188.948,170.741,-4116.12)
-Point[3] Position= (189.288,170.604,-4116.54)
+Original momentum : -29.2065 60.0019 -0.168423 keV
+Vertex : -0.0785982 0.0794473 1.56322 m    Global time : 5.22861 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-78.5982,79.4473,1563.22)
+Point[1] Position= (-78.6416,79.5363,1563.22)
+Point[2] Position= (-78.7314,79.6452,1563.23)
 
-TrackID =1011 : ParentID=49 : TrackStatus=1
+TrackID =1087 : ParentID=1051 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.6798 -16.5481 -0.446326 keV
-Vertex : 0.184672 0.168142 -4.07826 m    Global time : 13.6302 ns 
+Original momentum : 8.82023 10.7285 -29.1466 keV
+Vertex : -0.0786416 0.0795363 1.56322 m    Global time : 5.23116 ns 
   Current trajectory has 2 points.
-Point[0] Position= (184.672,168.142,-4078.26)
-Point[1] Position= (184.692,168.13,-4078.26)
+Point[0] Position= (-78.6416,79.5363,1563.22)
+Point[1] Position= (-78.6351,79.5442,1563.2)
 
-TrackID =1010 : ParentID=49 : TrackStatus=1
+TrackID =1050 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.30442 -54.9066 -5.29501 keV
-Vertex : 0.184368 0.167866 -4.07156 m    Global time : 13.6078 ns 
+Original momentum : -34.5274 1.96635 -0.663935 keV
+Vertex : -0.0769626 0.0777941 1.5307 m    Global time : 5.11984 ns 
   Current trajectory has 2 points.
-Point[0] Position= (184.368,167.866,-4071.56)
-Point[1] Position= (184.365,167.729,-4071.57)
+Point[0] Position= (-76.9626,77.7941,1530.7)
+Point[1] Position= (-76.9921,77.7958,1530.7)
 
-TrackID =1009 : ParentID=49 : TrackStatus=1
+TrackID =1049 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.7563 -30.8401 -3.0911 keV
-Vertex : 0.179593 0.163528 -3.96613 m    Global time : 13.2555 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (179.593,163.528,-3966.13)
-Point[1] Position= (179.58,163.502,-3966.13)
+Original momentum : 37.0531 88.8515 6.39721 keV
+Vertex : -0.0671532 0.0678762 1.33563 m    Global time : 4.46737 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-67.1532,67.8762,1335.63)
+Point[1] Position= (-67.0936,68.0191,1335.64)
+Point[2] Position= (-67.0904,68.0283,1335.64)
+Point[3] Position= (-67.0269,68.3296,1335.36)
 
-TrackID =1008 : ParentID=49 : TrackStatus=1
+TrackID =1089 : ParentID=1049 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.5029 24.7342 -1.18888 keV
-Vertex : 0.177441 0.161575 -3.91863 m    Global time : 13.0967 ns 
+Original momentum : 15.62 28.9207 34.9964 keV
+Vertex : -0.0670904 0.0680283 1.33564 m    Global time : 4.47035 ns 
   Current trajectory has 2 points.
-Point[0] Position= (177.441,161.575,-3918.63)
-Point[1] Position= (177.422,161.595,-3918.64)
+Point[0] Position= (-67.0904,68.0283,1335.64)
+Point[1] Position= (-67.0625,68.0798,1335.7)
 
-TrackID =1007 : ParentID=49 : TrackStatus=1
+TrackID =1088 : ParentID=1049 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.0289 -24.7563 -1.09684 keV
-Vertex : 0.172336 0.156939 -3.80596 m    Global time : 12.7202 ns 
+Original momentum : 16.4102 -0.00423538 29.2091 keV
+Vertex : -0.0670936 0.0680191 1.33564 m    Global time : 4.47016 ns 
   Current trajectory has 2 points.
-Point[0] Position= (172.336,156.939,-3805.96)
-Point[1] Position= (172.354,156.92,-3805.97)
+Point[0] Position= (-67.0936,68.0191,1335.64)
+Point[1] Position= (-67.0805,68.0191,1335.66)
 
-TrackID =1006 : ParentID=49 : TrackStatus=1
+TrackID =1048 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.40672 49.7541 -0.0623571 keV
-Vertex : 0.17198 0.156615 -3.79809 m    Global time : 12.6939 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (171.98,156.615,-3798.09)
-Point[1] Position= (171.996,156.715,-3798.09)
+Original momentum : 23.2732 184.666 25.3219 keV
+Vertex : -4.83341 4.88564 96.125 cm   Global time : 3.21516 ns 
+  Current trajectory has 9 points.
+Point[0] Position= (-48.3341,48.8564,961.25)
+Point[1] Position= (-47.6699,54.1268,961.973)
+Point[2] Position= (-46.5416,58.2903,962.974)
+Point[3] Position= (-47.1205,60.9688,964.703)
+Point[4] Position= (-47.5974,60.3943,963.242)
+Point[5] Position= (-47.7173,59.9301,961.951)
+Point[6] Position= (-47.6849,59.9566,961.908)
+Point[7] Position= (-47.4758,60.2823,961.754)
+Point[8] Position= (-47.5261,60.3191,961.775)
 
-TrackID =1005 : ParentID=49 : TrackStatus=1
+TrackID =1092 : ParentID=1048 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.1633 -38.2584 -4.78805 keV
-Vertex : 0.170171 0.154973 -3.75817 m    Global time : 12.5604 ns 
+Original momentum : -23.4601 -22.617 -16.2819 keV
+Vertex : -4.74758 6.02823 96.1754 cm   Global time : 3.40286 ns 
   Current trajectory has 2 points.
-Point[0] Position= (170.171,154.973,-3758.17)
-Point[1] Position= (170.13,154.911,-3758.18)
+Point[0] Position= (-47.4758,60.2823,961.754)
+Point[1] Position= (-47.4983,60.2606,961.738)
 
-TrackID =1004 : ParentID=49 : TrackStatus=1
+TrackID =1091 : ParentID=1048 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -36.3239 28.5873 -2.56562 keV
-Vertex : 0.155654 0.141789 -3.43769 m    Global time : 11.4894 ns 
+Original momentum : 5.7859 -19.4973 -33.6092 keV
+Vertex : -4.76849 5.99566 96.1908 cm   Global time : 3.39385 ns 
   Current trajectory has 2 points.
-Point[0] Position= (155.654,141.789,-3437.69)
-Point[1] Position= (155.595,141.836,-3437.7)
+Point[0] Position= (-47.6849,59.9566,961.908)
+Point[1] Position= (-47.6784,59.9345,961.87)
 
-TrackID =1003 : ParentID=49 : TrackStatus=1
+TrackID =1090 : ParentID=1048 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.6704 -30.3344 -4.06844 keV
-Vertex : 0.15197 0.138442 -3.35632 m    Global time : 11.2174 ns 
+Original momentum : 42.5357 22.5662 -12.3373 keV
+Vertex : -4.75974 6.03943 96.3242 cm   Global time : 3.37095 ns 
   Current trajectory has 2 points.
-Point[0] Position= (151.97,138.442,-3356.32)
-Point[1] Position= (151.937,138.406,-3356.33)
+Point[0] Position= (-47.5974,60.3943,963.242)
+Point[1] Position= (-47.5151,60.4379,963.219)
+
+TrackID =1047 : ParentID=1038 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -290.768 -99.1035 81.4327 keV
+Vertex : -4.6061 4.65592 91.6019 cm   Global time : 3.06387 ns 
+  Current trajectory has 15 points.
+Point[0] Position= (-46.061,46.5592,916.019)
+Point[1] Position= (-66.4551,41.9207,914.869)
+Point[2] Position= (-82.0152,20.0291,915.794)
+Point[3] Position= (-82.1378,20.0476,915.84)
+Point[4] Position= (-83.2791,20.0429,916.291)
+Point[5] Position= (-92.6636,14.458,923.493)
+Point[6] Position= (-97.2683,5.29276,925.478)
+Point[7] Position= (-88.6966,6.99541,923.519)
+Point[8] Position= (-82.6544,6.77935,920.446)
+Point[9] Position= (-78.3155,9.17589,918.885)
+Point[10] Position= (-75.1967,7.42117,920.412)
+Point[11] Position= (-73.5436,7.60397,923.015)
+Point[12] Position= (-71.812,6.36851,923.283)
+Point[13] Position= (-70.7309,6.13473,922.363)
+Point[14] Position= (-70.5582,6.41956,922.296)
+
+TrackID =1095 : ParentID=1047 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 14.732 28.6037 26.2416 keV
+Vertex : -8.86966 0.699541 92.3519 cm   Global time : 3.60739 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-88.6966,6.99541,923.519)
+Point[1] Position= (-88.6777,7.03199,923.553)
+
+TrackID =1094 : ParentID=1047 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -68.2364 72.0076 -28.6877 keV
+Vertex : -8.32791 2.00429 91.6291 cm   Global time : 3.35109 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-83.2791,20.0429,916.291)
+Point[1] Position= (-84.0383,20.844,915.972)
+Point[2] Position= (-83.8778,21.2253,915.781)
 
-TrackID =1002 : ParentID=49 : TrackStatus=1
+TrackID =1093 : ParentID=1047 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.8161 -5.56557 -0.0417535 keV
-Vertex : 0.150888 0.13746 -3.33243 m    Global time : 11.1375 ns 
+Original momentum : -2.53619 40.0652 -4.8969 keV
+Vertex : -8.21378 2.00476 91.584 cm   Global time : 3.34247 ns 
   Current trajectory has 2 points.
-Point[0] Position= (150.888,137.46,-3332.43)
-Point[1] Position= (150.939,137.453,-3332.43)
+Point[0] Position= (-82.1378,20.0476,915.84)
+Point[1] Position= (-82.1408,20.0959,915.834)
+
+TrackID =1046 : ParentID=1038 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 50.3712 73.1746 6.53899 keV
+Vertex : -3.4588 3.49596 68.7685 cm   Global time : 2.30015 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-34.588,34.9596,687.685)
+Point[1] Position= (-34.1739,35.5611,687.739)
+Point[2] Position= (-34.2643,35.5989,687.681)
 
-TrackID =1001 : ParentID=49 : TrackStatus=1
+TrackID =1045 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.8743 23.3396 -2.01497 keV
-Vertex : 0.150793 0.137373 -3.33032 m    Global time : 11.1305 ns 
+Original momentum : 37.5428 20.795 2.64127 keV
+Vertex : -2.48105 2.50696 49.3079 cm   Global time : 1.64924 ns 
   Current trajectory has 2 points.
-Point[0] Position= (150.793,137.373,-3330.32)
-Point[1] Position= (150.756,137.4,-3330.32)
+Point[0] Position= (-24.8105,25.0696,493.079)
+Point[1] Position= (-24.7585,25.0984,493.082)
 
-TrackID =1000 : ParentID=49 : TrackStatus=1
+TrackID =1044 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -48.5886 -7.26377 -4.88272 keV
-Vertex : 0.148735 0.135503 -3.28487 m    Global time : 10.9786 ns 
+Original momentum : -28.3638 -30.6291 1.84097 keV
+Vertex : -2.00392 2.02454 39.8161 cm   Global time : 1.33176 ns 
   Current trajectory has 2 points.
-Point[0] Position= (148.735,135.503,-3284.87)
-Point[1] Position= (148.642,135.489,-3284.88)
+Point[0] Position= (-20.0392,20.2454,398.161)
+Point[1] Position= (-20.076,20.2057,398.163)
 
-TrackID =999 : ParentID=49 : TrackStatus=1
+TrackID =1043 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -55.9396 58.9058 -6.58101 keV
-Vertex : 0.146015 0.133031 -3.22478 m    Global time : 10.7778 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (146.015,133.031,-3224.78)
-Point[1] Position= (145.645,133.421,-3224.82)
-Point[2] Position= (145.649,133.425,-3224.82)
+Original momentum : -161.975 83.0307 19.5217 keV
+Vertex : -1.88953 1.90892 37.5408 cm   Global time : 1.25566 ns 
+  Current trajectory has 9 points.
+Point[0] Position= (-18.8953,19.0892,375.408)
+Point[1] Position= (-23.3046,21.3494,375.939)
+Point[2] Position= (-24.7606,23.5811,375.783)
+Point[3] Position= (-23.8041,26.6239,375.619)
+Point[4] Position= (-23.787,26.2213,375.273)
+Point[5] Position= (-23.0242,25.0471,373.685)
+Point[6] Position= (-23.8981,25.7368,374.091)
+Point[7] Position= (-23.7757,25.3838,373.473)
+Point[8] Position= (-23.7273,25.3262,373.555)
 
-TrackID =998 : ParentID=49 : TrackStatus=1
+TrackID =1098 : ParentID=1043 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.473062 -40.6338 -3.27671 keV
-Vertex : 0.144886 0.132005 -3.19983 m    Global time : 10.6944 ns 
+Original momentum : -31.9511 -14.0467 1.56993 keV
+Vertex : -2.38981 2.57368 37.4091 cm   Global time : 1.42305 ns 
   Current trajectory has 2 points.
-Point[0] Position= (144.886,132.005,-3199.83)
-Point[1] Position= (144.886,131.955,-3199.84)
+Point[0] Position= (-23.8981,25.7368,374.091)
+Point[1] Position= (-23.926,25.7245,374.093)
 
-TrackID =997 : ParentID=49 : TrackStatus=1
+TrackID =1097 : ParentID=1043 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.2053 -15.2669 -4.02942 keV
-Vertex : 0.144091 0.131284 -3.18228 m    Global time : 10.6357 ns 
+Original momentum : -48.0542 -18.172 -10.0923 keV
+Vertex : -2.3787 2.62213 37.5273 cm   Global time : 1.3763 ns 
   Current trajectory has 2 points.
-Point[0] Position= (144.091,131.284,-3182.28)
-Point[1] Position= (144.043,131.264,-3182.29)
+Point[0] Position= (-23.787,26.2213,375.273)
+Point[1] Position= (-23.8924,26.1815,375.251)
 
-TrackID =996 : ParentID=49 : TrackStatus=1
+TrackID =1096 : ParentID=1043 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.5306 -0.385678 -2.52987 keV
-Vertex : 0.142004 0.129386 -3.13614 m    Global time : 10.4815 ns 
+Original momentum : 27.8604 -7.33777 22.5773 keV
+Vertex : -2.47606 2.35811 37.5783 cm   Global time : 1.33315 ns 
   Current trajectory has 2 points.
-Point[0] Position= (142.004,129.386,-3136.14)
-Point[1] Position= (141.979,129.386,-3136.15)
+Point[0] Position= (-24.7606,23.5811,375.783)
+Point[1] Position= (-24.7337,23.574,375.805)
 
-TrackID =995 : ParentID=49 : TrackStatus=1
+TrackID =1042 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.96358 33.1065 0.61382 keV
-Vertex : 0.136066 0.123986 -3.00479 m    Global time : 10.0425 ns 
+Original momentum : 14.9142 31.97 0.344552 keV
+Vertex : -1.43603 1.45061 28.5265 cm   Global time : 954.148 ps 
   Current trajectory has 2 points.
-Point[0] Position= (136.066,123.986,-3004.79)
-Point[1] Position= (136.073,124.014,-3004.79)
+Point[0] Position= (-14.3603,14.5061,285.265)
+Point[1] Position= (-14.347,14.5346,285.265)
 
-TrackID =994 : ParentID=49 : TrackStatus=1
+TrackID =1041 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.00464 34.7324 0.48272 keV
-Vertex : 0.133323 0.121491 -2.94411 m    Global time : 9.83973 ns 
+Original momentum : -17.0095 -28.3232 1.65675 keV
+Vertex : -1.31688 1.33021 26.1589 cm   Global time : 874.96 ps 
   Current trajectory has 2 points.
-Point[0] Position= (133.323,121.491,-2944.11)
-Point[1] Position= (133.328,121.522,-2944.11)
-
-TrackID =993 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 45.9938 26.3779 0.417068 keV
-Vertex : 0.124331 0.113311 -2.7452 m    Global time : 9.17495 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (124.331,113.311,-2745.2)
-Point[1] Position= (124.435,113.37,-2745.2)
-
-TrackID =992 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.1054 -2.14677 -2.67062 keV
-Vertex : 0.117724 0.107302 -2.59915 m    Global time : 8.68681 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (117.724,107.302,-2599.15)
-Point[1] Position= (117.698,107.3,-2599.15)
-
-TrackID =991 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.08348 -34.2613 -2.29412 keV
-Vertex : 0.113826 0.103753 -2.51297 m    Global time : 8.39879 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (113.826,103.753,-2512.97)
-Point[1] Position= (113.832,103.723,-2512.97)
-
-TrackID =990 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.1131 36.4462 -1.02275 keV
-Vertex : 0.110196 0.100449 -2.43274 m    Global time : 8.13065 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (110.196,100.449,-2432.74)
-Point[1] Position= (110.172,100.495,-2432.74)
-
-TrackID =989 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 43.3516 25.315 0.539344 keV
-Vertex : 0.110017 0.100286 -2.42878 m    Global time : 8.11741 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (110.017,100.286,-2428.78)
-Point[1] Position= (110.103,100.336,-2428.78)
-
-TrackID =988 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.12675 -36.4655 -2.53726 keV
-Vertex : 0.10737 0.0978771 -2.37029 m    Global time : 7.92192 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (107.37,97.8771,-2370.29)
-Point[1] Position= (107.377,97.8405,-2370.29)
-
-TrackID =987 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -402.687 823.335 -785.822 keV
-Vertex : 0.107229 0.0977488 -2.36717 m    Global time : 7.91151 ns 
-  Current trajectory has 73 points.
-Point[0] Position= (107.229,97.7488,-2367.17)
-Point[1] Position= (75.3738,163.473,-2425.23)
-Point[2] Position= (72.2865,165.675,-2432.8)
-Point[3] Position= (56.2476,180.078,-2480.43)
-Point[4] Position= (54.3847,181.123,-2484.91)
-Point[5] Position= (51.7187,182.459,-2489.92)
-Point[6] Position= (41.3557,186.044,-2511.24)
-Point[7] Position= (34.6092,188.023,-2523.94)
-Point[8] Position= (-1.59492,185.447,-2590.6)
-Point[9] Position= (-7.21298,186.417,-2600.64)
-Point[10] Position= (-12.995,186.794,-2612.85)
-Point[11] Position= (-14.4857,186.964,-2615.76)
-Point[12] Position= (-194.392,205.606,-2815.24)
-Point[13] Position= (-230.617,221.375,-2849.87)
-Point[14] Position= (-295.746,287.009,-2899.05)
-Point[15] Position= (-335.675,328.563,-2921.03)
-Point[16] Position= (-352.602,346.845,-2925.66)
-Point[17] Position= (-355.414,349.717,-2925.46)
-Point[18] Position= (-426.26,432.684,-2910.83)
-Point[19] Position= (-439.718,446.084,-2906.3)
-Point[20] Position= (-456.277,460.016,-2902.7)
-Point[21] Position= (-460.898,464.517,-2902.75)
-Point[22] Position= (-629.998,596.65,-2943.9)
-Point[23] Position= (-724.711,663.248,-2911.04)
-Point[24] Position= (-734.802,669.078,-2906.63)
-Point[25] Position= (-799.796,713.871,-2856.12)
-Point[26] Position= (-873.678,776.693,-2802.51)
-Point[27] Position= (-919.021,826.221,-2749.6)
-Point[28] Position= (-924.475,831.816,-2745.78)
-Point[29] Position= (-928.422,835.212,-2743.48)
-Point[30] Position= (-953.24,864.031,-2715.77)
-Point[31] Position= (-984.037,883.137,-2688.83)
-Point[32] Position= (-1019.52,907.117,-2651.85)
-Point[33] Position= (-1187.98,1185.27,-2581.68)
-Point[34] Position= (-1186.57,1206.37,-2574.47)
-Point[35] Position= (-1168.55,1306.41,-2554.42)
-Point[36] Position= (-1163.28,1313.13,-2548)
-Point[37] Position= (-1156.98,1319.49,-2539.69)
-Point[38] Position= (-1143.68,1329.9,-2531.09)
-Point[39] Position= (-1028.3,1359.04,-2385.41)
-Point[40] Position= (-1024.3,1366.1,-2368.86)
-Point[41] Position= (-1023.98,1383.46,-2319.52)
-Point[42] Position= (-1024.92,1387.44,-2314.51)
-Point[43] Position= (-1011.44,1428.72,-2272.35)
-Point[44] Position= (-1006.97,1462.9,-2219.03)
-Point[45] Position= (-993.76,1520.6,-2198.57)
-Point[46] Position= (-994.315,1559.21,-2188.55)
-Point[47] Position= (-992.582,1590.32,-2189.47)
-Point[48] Position= (-992.593,1590.73,-2189.44)
-Point[49] Position= (-996.983,1609.34,-2187.16)
-Point[50] Position= (-1046.92,1649.03,-2193.79)
-Point[51] Position= (-1057.81,1675.63,-2180.06)
-Point[52] Position= (-1058.63,1676.95,-2178.98)
-Point[53] Position= (-1059.44,1678.57,-2178.32)
-Point[54] Position= (-1122.19,1722.09,-2160.1)
-Point[55] Position= (-1178.66,1715.53,-2129.6)
-Point[56] Position= (-1219.41,1691.61,-2111.92)
-Point[57] Position= (-1220.33,1691.36,-2111.43)
-Point[58] Position= (-1244.35,1690.53,-2103.68)
-Point[59] Position= (-1262.66,1687.16,-2102.49)
-Point[60] Position= (-1269.11,1681.27,-2090.4)
-Point[61] Position= (-1271.72,1679.75,-2087.7)
-Point[62] Position= (-1279.95,1678.4,-2081.45)
-Point[63] Position= (-1282.63,1679.33,-2073.17)
-Point[64] Position= (-1284.23,1682.34,-2067.39)
-Point[65] Position= (-1287.12,1684.44,-2063.15)
-Point[66] Position= (-1285.75,1685.62,-2060.3)
-Point[67] Position= (-1284.64,1687.02,-2059.82)
-Point[68] Position= (-1282.61,1688.22,-2059.93)
-Point[69] Position= (-1282.08,1687.08,-2060.08)
-Point[70] Position= (-1281.86,1685.89,-2060.55)
-Point[71] Position= (-1281.72,1685.16,-2060.84)
-Point[72] Position= (-1281.71,1685.19,-2060.84)
-
-TrackID =1074 : ParentID=987 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.4667 -4.60311 25.2149 keV
-Vertex : -1.28208 1.68708 -2.06008 m    Global time : 20.8098 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-1282.08,1687.08,-2060.08)
-Point[1] Position= (-1282.05,1687.07,-2060.05)
-
-TrackID =1073 : ParentID=987 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.4394 48.8138 46.897 keV
-Vertex : -1.28464 1.68702 -2.05982 m    Global time : 20.7617 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-1284.64,1687.02,-2059.82)
-Point[1] Position= (-1284.77,1687.26,-2059.59)
-
-TrackID =1072 : ParentID=987 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.8955 -7.57454 29.0201 keV
-Vertex : -1.27172 1.67975 -2.0877 m    Global time : 20.4368 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-1271.72,1679.75,-2087.7)
-Point[1] Position= (-1271.69,1679.74,-2087.67)
-
-TrackID =1071 : ParentID=987 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.3724 139.168 137.652 keV
-Vertex : -1.24435 1.69053 -2.10368 m    Global time : 20.1684 ns 
-  Current trajectory has 10 points.
-Point[0] Position= (-1244.35,1690.53,-2103.68)
-Point[1] Position= (-1245.17,1694.9,-2099.36)
-Point[2] Position= (-1242.19,1697.38,-2097.79)
-Point[3] Position= (-1241.95,1696.63,-2093.86)
-Point[4] Position= (-1241.76,1696.5,-2093.78)
-Point[5] Position= (-1241.02,1696.24,-2093.6)
-Point[6] Position= (-1239.51,1694.66,-2093.57)
-Point[7] Position= (-1238.58,1695.7,-2094.26)
-Point[8] Position= (-1239.05,1695.15,-2094.83)
-Point[9] Position= (-1239.04,1695.07,-2094.49)
+Point[0] Position= (-13.1688,13.3021,261.589)
+Point[1] Position= (-13.182,13.2801,261.591)
 
-TrackID =1077 : ParentID=1071 : TrackStatus=1
+TrackID =1040 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.2516 -12.336 27.4046 keV
-Vertex : -1.24102 1.69624 -2.0936 m    Global time : 20.323 ns 
+Original momentum : 2.12433 57.8601 0.443743 keV
+Vertex : -1.30633 1.31955 25.9493 cm   Global time : 867.946 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-1241.02,1696.24,-2093.6)
-Point[1] Position= (-1241.03,1696.23,-2093.58)
+Point[0] Position= (-13.0633,13.1955,259.493)
+Point[1] Position= (-13.0574,13.3576,259.494)
 
-TrackID =1076 : ParentID=1071 : TrackStatus=1
+TrackID =1039 : ParentID=1038 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.8285 -6.69298 44.4471 keV
-Vertex : -1.24176 1.6965 -2.09378 m    Global time : 20.3128 ns 
+Original momentum : 48.8621 -1.26543 4.88622 keV
+Vertex : -0.940205 0.949695 18.6762 cm   Global time : 624.679 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-1241.76,1696.5,-2093.78)
-Point[1] Position= (-1241.78,1696.49,-2093.71)
+Point[0] Position= (-9.40205,9.49695,186.762)
+Point[1] Position= (-9.31008,9.49457,186.772)
 
-TrackID =1075 : ParentID=1071 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.5774 25.0973 6.46954 keV
-Vertex : -1.24219 1.69738 -2.09779 m    Global time : 20.2675 ns 
+TrackID =1036 : ParentID=978 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : 0.0416147 -0.131665 1.49166 GeV
+Vertex : 58.0525 -58.4294 870.01 nm   Global time : 0.00291684 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-1242.19,1697.38,-2097.79)
-Point[1] Position= (-1242.21,1697.41,-2097.79)
+Point[0] Position= (5.80525e-05,-5.84294e-05,0.00087001)
+Point[1] Position= (167.389,-529.602,6000)
 
-TrackID =1070 : ParentID=987 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.804 -4.96531 -33.0187 keV
-Vertex : -1.22033 1.69136 -2.11143 m    Global time : 20.0318 ns 
+TrackID =1035 : ParentID=978 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : 0.212184 -0.123782 2.31192 GeV
+Vertex : 58.0525 -58.4294 870.01 nm   Global time : 0.00291684 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-1220.33,1691.36,-2111.43)
-Point[1] Position= (-1220.35,1691.36,-2111.46)
+Point[0] Position= (5.80525e-05,-5.84294e-05,0.00087001)
+Point[1] Position= (550.67,-321.245,6000)
 
-TrackID =1069 : ParentID=987 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.7861 -35.1011 15.3654 keV
-Vertex : -1.21941 1.69161 -2.11192 m    Global time : 20.0257 ns 
+TrackID =1037 : ParentID=56 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : -0.296396 -0.334165 1.98628 GeV
+Vertex : -6.58667e-295 9.6971e-297 1.99922e-293 fm   Global time : 8.63072e-305 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (-6.58667e-307,9.6971e-309,1.99922e-305)
+Point[1] Position= (-0.000100985,-0.000113853,0.000676747)
+
+TrackID =55 : ParentID=45 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : 215.811 -42.1338 881.219 MeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-1219.41,1691.61,-2111.92)
-Point[1] Position= (-1219.38,1691.56,-2111.9)
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (1.85697e-06,-3.62544e-07,7.58253e-06)
 
-TrackID =1068 : ParentID=987 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.3416 -11.9853 36.0275 keV
-Vertex : -1.12219 1.72209 -2.1601 m    Global time : 19.4517 ns 
+TrackID =54 : ParentID=45 : TrackStatus=1
+Particle name : unknown : rho-  PDG code : -213  Charge : -1
+Original momentum : -0.592879 0.111279 29.2101 GeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-1122.19,1722.09,-2160.1)
-Point[1] Position= (-1122.14,1722.07,-2160.04)
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (-3.18021e-307,9.23194e-309,2.00079e-305)
 
-TrackID =1067 : ParentID=987 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.6474 -12.8755 84.8556 keV
-Vertex : -1.05863 1.67695 -2.17898 m    Global time : 19.0858 ns 
+TrackID =1104 : ParentID=54 : TrackStatus=1
+Particle name : pi-  PDG code : -211  Charge : -1
+Original momentum : -0.596191 0.400302 17.9435 GeV
+Vertex : -3.18021e-295 9.23194e-297 2.00079e-293 fm   Global time : 8.62177e-305 ps 
+  Current trajectory has 60 points.
+Point[0] Position= (-3.18021e-307,9.23194e-309,2.00079e-305)
+Point[1] Position= (-0.287498,0.19304,8.65302)
+Point[2] Position= (-3.1316,2.10372,94.2822)
+Point[3] Position= (-4.80899,3.23111,144.792)
+Point[4] Position= (-6.43918,4.32697,193.893)
+Point[5] Position= (-7.64525,5.13748,230.213)
+Point[6] Position= (-8.06837,5.42184,242.954)
+Point[7] Position= (-10.2347,6.87756,308.195)
+Point[8] Position= (-14.505,9.745,436.756)
+Point[9] Position= (-14.6887,9.86837,442.288)
+Point[10] Position= (-17.7317,11.9113,533.893)
+Point[11] Position= (-25.779,17.3124,776.163)
+Point[12] Position= (-27.0823,18.1862,815.399)
+Point[13] Position= (-28.4938,19.1327,857.889)
+Point[14] Position= (-29.0009,19.4728,873.158)
+Point[15] Position= (-30.5437,20.5071,919.631)
+Point[16] Position= (-34.9499,23.4605,1052.36)
+Point[17] Position= (-38.3936,25.7674,1156.11)
+Point[18] Position= (-38.6774,25.9575,1164.66)
+Point[19] Position= (-45.5784,30.5805,1372.64)
+Point[20] Position= (-46.3038,31.0668,1394.51)
+Point[21] Position= (-56.9792,38.2291,1716.45)
+Point[22] Position= (-62.9175,42.2136,1895.59)
+Point[23] Position= (-66.9828,44.9428,2018.24)
+Point[24] Position= (-68.3963,45.8923,2060.89)
+Point[25] Position= (-68.9625,46.2725,2077.98)
+Point[26] Position= (-69.5272,46.6516,2095.02)
+Point[27] Position= (-80.3718,53.9308,2422.32)
+Point[28] Position= (-89.5875,60.1169,2700.4)
+Point[29] Position= (-93.674,62.8588,2823.65)
+Point[30] Position= (-94.0199,63.0908,2834.08)
+Point[31] Position= (-94.1085,63.1503,2836.75)
+Point[32] Position= (-96.9723,65.0712,2923.09)
+Point[33] Position= (-100.996,67.7701,3044.36)
+Point[34] Position= (-102.309,68.6517,3083.97)
+Point[35] Position= (-114.099,76.5694,3439.52)
+Point[36] Position= (-114.3,76.7044,3445.58)
+Point[37] Position= (-114.302,76.7055,3445.63)
+Point[38] Position= (-115.096,77.2385,3469.57)
+Point[39] Position= (-116.191,77.9742,3502.61)
+Point[40] Position= (-116.997,78.5154,3526.91)
+Point[41] Position= (-117.353,78.7545,3537.65)
+Point[42] Position= (-119.14,79.9546,3591.56)
+Point[43] Position= (-121.068,81.2477,3649.7)
+Point[44] Position= (-129.439,86.8603,3902.03)
+Point[45] Position= (-136.198,91.3909,4105.75)
+Point[46] Position= (-137.774,92.4471,4153.26)
+Point[47] Position= (-139.051,93.3026,4191.75)
+Point[48] Position= (-139.116,93.3464,4193.72)
+Point[49] Position= (-152.118,102.048,4585.22)
+Point[50] Position= (-160.727,107.804,4844.42)
+Point[51] Position= (-162.438,108.947,4895.92)
+Point[52] Position= (-163.826,109.874,4937.7)
+Point[53] Position= (-172.378,115.592,5195.18)
+Point[54] Position= (-173.429,116.295,5226.82)
+Point[55] Position= (-186.421,124.982,5617.91)
+Point[56] Position= (-186.592,125.097,5623.06)
+Point[57] Position= (-191.75,128.545,5778.34)
+Point[58] Position= (-192.704,129.183,5807.07)
+Point[59] Position= (-199.111,133.466,6000)
+
+TrackID =1162 : ParentID=1104 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -45.5492 42.4798 1.33093 keV
+Vertex : -0.192704 0.129183 5.80707 m    Global time : 19.3863 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-192.704,129.183,5807.07)
+Point[1] Position= (-192.857,129.326,5807.07)
+
+TrackID =1161 : ParentID=1104 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -45.5518 -8.19277 0.763067 keV
+Vertex : -0.19175 0.128545 5.77834 m    Global time : 19.2904 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-191.75,128.545,5778.34)
+Point[1] Position= (-191.825,128.532,5778.35)
+
+TrackID =1160 : ParentID=1104 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 55.567 -9.33429 5.17919 keV
+Vertex : -0.186592 0.125097 5.62306 m    Global time : 18.772 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-186.592,125.097,5623.06)
+Point[1] Position= (-186.445,125.072,5623.07)
+
+TrackID =1159 : ParentID=1104 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -13.6674 71.228 3.09928 keV
+Vertex : -0.186421 0.124982 5.61791 m    Global time : 18.7548 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-186.421,124.982,5617.91)
+Point[1] Position= (-186.488,125.333,5617.93)
+
+TrackID =1158 : ParentID=1104 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 37.164 4.9356 2.505 keV
+Vertex : -0.173429 0.116295 5.22682 m    Global time : 17.4492 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-173.429,116.295,5226.82)
+Point[1] Position= (-173.391,116.3,5226.82)
+
+TrackID =1157 : ParentID=1104 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -18.2828 45.4913 0.73142 keV
+Vertex : -0.172378 0.115592 5.19518 m    Global time : 17.3436 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-172.378,115.592,5195.18)
+Point[1] Position= (-172.413,115.677,5195.18)
+
+TrackID =1156 : ParentID=1104 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 8.17378 36.4948 0.830027 keV
+Vertex : -0.163826 0.109874 4.9377 m    Global time : 16.484 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-163.826,109.874,4937.7)
+Point[1] Position= (-163.818,109.911,4937.7)
+
+TrackID =1155 : ParentID=1104 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -78.1608 8.88933 3.24068 keV
+Vertex : -0.162438 0.108947 4.89592 m    Global time : 16.3445 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-1058.63,1676.95,-2178.98)
-Point[1] Position= (-1058.22,1676.83,-2178.21)
-Point[2] Position= (-1058.08,1676.77,-2178.14)
+Point[0] Position= (-162.438,108.947,4895.92)
+Point[1] Position= (-162.911,109,4895.93)
+Point[2] Position= (-162.908,109.001,4895.94)
+
+TrackID =1154 : ParentID=1104 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -16.0202 -38.7106 2.04728 keV
+Vertex : -0.160727 0.107804 4.84442 m    Global time : 16.1726 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-160.727,107.804,4844.42)
+Point[1] Position= (-160.748,107.753,4844.42)
+
+TrackID =1153 : ParentID=1104 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 48.4732 -5.89156 4.08674 keV
+Vertex : -0.152118 0.102048 4.58522 m    Global time : 15.3073 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-152.118,102.048,4585.22)
+Point[1] Position= (-152.027,102.036,4585.23)
+
+TrackID =1152 : ParentID=1104 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -58.6872 8.31063 1.29784 keV
+Vertex : -0.139116 0.0933464 4.19372 m    Global time : 14.0003 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-139.116,93.3464,4193.72)
+Point[1] Position= (-139.291,93.3711,4193.73)
+
+TrackID =1151 : ParentID=1104 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 457.219 -1.93316 226.534 keV
+Vertex : -0.139051 0.0933026 4.19175 m    Global time : 13.9937 ns 
+  Current trajectory has 28 points.
+Point[0] Position= (-139.051,93.3026,4191.75)
+Point[1] Position= (-85.5842,93.0765,4218.24)
+Point[2] Position= (-78.8431,93.3263,4217.8)
+Point[3] Position= (-75.8369,93.2094,4218.1)
+Point[4] Position= (-73.5513,93.4628,4217.91)
+Point[5] Position= (0.518883,100.789,4198.01)
+Point[6] Position= (8.21979,102.233,4197.55)
+Point[7] Position= (26.0421,102.525,4192.71)
+Point[8] Position= (32.3394,102.174,4190.44)
+Point[9] Position= (37.358,102.303,4187.92)
+Point[10] Position= (71.4086,107.656,4160.28)
+Point[11] Position= (81.0993,95.2057,4149.01)
+Point[12] Position= (91.6859,85.3512,4141.21)
+Point[13] Position= (109.528,81.707,4121.59)
+Point[14] Position= (109.527,81.7092,4121.57)
+Point[15] Position= (110.266,82.2395,4118.3)
+Point[16] Position= (110.897,82.5251,4116.23)
+Point[17] Position= (116.266,82.1264,4102.12)
+Point[18] Position= (112.414,88.236,4093.27)
+Point[19] Position= (114.063,88.3406,4086.36)
+Point[20] Position= (118.222,92.9472,4082)
+Point[21] Position= (119.404,98.0122,4080.58)
+Point[22] Position= (121.898,100.384,4082.83)
+Point[23] Position= (121.986,100.408,4085.07)
+Point[24] Position= (121.933,100.549,4085.37)
+Point[25] Position= (122.04,100.385,4086.43)
+Point[26] Position= (122.057,100.404,4086.44)
+Point[27] Position= (122.157,100.444,4086.61)
+
+TrackID =1179 : ParentID=1151 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 14.0347 30.1544 -15.4712 keV
+Vertex : 0.122057 0.100404 4.08644 m    Global time : 16.0692 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (122.057,100.404,4086.44)
+Point[1] Position= (122.071,100.433,4086.42)
+
+TrackID =1178 : ParentID=1151 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -19.3929 92.1766 17.197 keV
+Vertex : 0.121933 0.100549 4.08537 m    Global time : 16.05 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (121.933,100.549,4085.37)
+Point[1] Position= (121.784,101.258,4085.5)
+Point[2] Position= (121.701,101.408,4085.44)
 
-TrackID =1078 : ParentID=1067 : TrackStatus=1
+TrackID =1180 : ParentID=1178 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.5231 46.6298 16.6449 keV
-Vertex : -1.05822 1.67683 -2.17821 m    Global time : 19.1016 ns 
+Original momentum : 14.7365 29.8932 48.5864 keV
+Vertex : 0.121784 0.101258 4.0855 m    Global time : 16.0634 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1058.22,1676.83,-2178.21)
-Point[1] Position= (-1058.19,1676.93,-2178.17)
+Point[0] Position= (121.784,101.258,4085.5)
+Point[1] Position= (121.827,101.345,4085.64)
 
-TrackID =1066 : ParentID=987 : TrackStatus=1
+TrackID =1177 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -56.1491 11.735 -48.6822 keV
-Vertex : -1.05781 1.67563 -2.18006 m    Global time : 19.0765 ns 
+Original momentum : 19.952 31.6485 -11.071 keV
+Vertex : 0.121986 0.100408 4.08507 m    Global time : 16.0458 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1057.81,1675.63,-2180.06)
-Point[1] Position= (-1058.11,1675.69,-2180.32)
+Point[0] Position= (121.986,100.408,4085.07)
+Point[1] Position= (122.008,100.444,4085.06)
 
-TrackID =1065 : ParentID=987 : TrackStatus=1
+TrackID =1176 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.1514 17.8712 -14.1294 keV
-Vertex : -0.996983 1.60934 -2.18716 m    Global time : 18.6387 ns 
+Original momentum : -35.1996 2.98693 -19.766 keV
+Vertex : 0.118222 0.0929472 4.082 m    Global time : 15.9251 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-996.983,1609.34,-2187.16)
-Point[1] Position= (-996.949,1609.36,-2187.17)
+Point[0] Position= (118.222,92.9472,4082)
+Point[1] Position= (118.18,92.9508,4081.97)
 
-TrackID =1064 : ParentID=987 : TrackStatus=1
+TrackID =1175 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.6109 1.10911 27.8579 keV
-Vertex : -0.992593 1.59073 -2.18944 m    Global time : 18.5494 ns 
+Original momentum : -4.11273 -24.8041 -30.6803 keV
+Vertex : 0.114063 0.0883406 4.08636 m    Global time : 15.8595 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-992.593,1590.73,-2189.44)
-Point[1] Position= (-992.575,1590.73,-2189.41)
+Point[0] Position= (114.063,88.3406,4086.36)
+Point[1] Position= (114.059,88.3119,4086.32)
 
-TrackID =1063 : ParentID=987 : TrackStatus=1
+TrackID =1174 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -18.5533 5.07612 -40.7172 keV
-Vertex : -0.992582 1.59032 -2.18947 m    Global time : 18.5475 ns 
+Original momentum : -35.759 5.50986 -14.1515 keV
+Vertex : 0.110897 0.0825251 4.11623 m    Global time : 15.6029 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-992.582,1590.32,-2189.47)
-Point[1] Position= (-992.611,1590.33,-2189.54)
+Point[0] Position= (110.897,82.5251,4116.23)
+Point[1] Position= (110.857,82.5312,4116.21)
 
-TrackID =1062 : ParentID=987 : TrackStatus=1
+TrackID =1173 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -18.8868 -12.5478 34.8918 keV
-Vertex : -0.99376 1.5206 -2.19857 m    Global time : 18.2254 ns 
+Original momentum : -14.0954 49.6831 1.87543 keV
+Vertex : 0.110266 0.0822395 4.1183 m    Global time : 15.5874 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-993.76,1520.6,-2198.57)
-Point[1] Position= (-993.784,1520.58,-2198.53)
+Point[0] Position= (110.266,82.2395,4118.3)
+Point[1] Position= (110.236,82.3451,4118.3)
 
-TrackID =1061 : ParentID=987 : TrackStatus=1
+TrackID =1172 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.2312 -17.7775 2.47013 keV
-Vertex : -1.00697 1.4629 -2.21903 m    Global time : 17.9533 ns 
+Original momentum : -65.3097 -3.10481 -16.3937 keV
+Vertex : 0.109527 0.0817092 4.12157 m    Global time : 15.564 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1006.97,1462.9,-2219.03)
-Point[1] Position= (-1006.94,1462.88,-2219.03)
+Point[0] Position= (109.527,81.7092,4121.57)
+Point[1] Position= (109.261,81.6966,4121.51)
 
-TrackID =1060 : ParentID=987 : TrackStatus=1
+TrackID =1171 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.2622 8.157 -7.28683 keV
-Vertex : -1.02492 1.38744 -2.31451 m    Global time : 17.4171 ns 
+Original momentum : -7.31946 -34.7501 -0.682059 keV
+Vertex : 0.0916859 0.0853512 4.14121 m    Global time : 15.3949 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1024.92,1387.44,-2314.51)
-Point[1] Position= (-1024.95,1387.45,-2314.52)
+Point[0] Position= (91.6859,85.3512,4141.21)
+Point[1] Position= (91.6793,85.3197,4141.21)
 
-TrackID =1059 : ParentID=987 : TrackStatus=1
+TrackID =1170 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.0788 -31.1848 21.8035 keV
-Vertex : -1.02398 1.38346 -2.31952 m    Global time : 17.3887 ns 
+Original momentum : -32.7694 -49.1752 15.3853 keV
+Vertex : 0.0810993 0.0952057 4.14901 m    Global time : 15.2943 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1023.98,1383.46,-2319.52)
-Point[1] Position= (-1024.01,1383.41,-2319.49)
+Point[0] Position= (81.0993,95.2057,4149.01)
+Point[1] Position= (80.9947,95.0486,4149.06)
 
-TrackID =1058 : ParentID=987 : TrackStatus=1
+TrackID =1169 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 48.6391 -83.7468 38.5203 keV
-Vertex : -1.0283 1.35904 -2.38541 m    Global time : 17.0847 ns 
+Original momentum : 52.0813 -33.4493 54.2398 keV
+Vertex : 0.037358 0.102303 4.18792 m    Global time : 14.9302 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-1028.3,1359.04,-2385.41)
-Point[1] Position= (-1027.75,1358.1,-2384.97)
-Point[2] Position= (-1027.56,1357.77,-2385.02)
+Point[0] Position= (37.358,102.303,4187.92)
+Point[1] Position= (37.6004,102.147,4188.17)
+Point[2] Position= (37.7953,102.184,4188.28)
 
-TrackID =1057 : ParentID=987 : TrackStatus=1
+TrackID =1181 : ParentID=1169 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 4.2508 -31.4906 20.7083 keV
-Vertex : -1.14368 1.3299 -2.53109 m    Global time : 16.3541 ns 
+Original momentum : 1.38061 40.6801 -14.9972 keV
+Vertex : 0.0376004 0.102147 4.18817 m    Global time : 14.9382 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1143.68,1329.9,-2531.09)
-Point[1] Position= (-1143.68,1329.86,-2531.07)
+Point[0] Position= (37.6004,102.147,4188.17)
+Point[1] Position= (37.6023,102.205,4188.15)
 
-TrackID =1056 : ParentID=987 : TrackStatus=1
+TrackID =1168 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.54363 27.2147 -20.5862 keV
-Vertex : -1.15698 1.31949 -2.53969 m    Global time : 16.2755 ns 
+Original momentum : -13.6659 25.8349 -27.0361 keV
+Vertex : 0.0323394 0.102174 4.19044 m    Global time : 14.8994 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1156.98,1319.49,-2539.69)
-Point[1] Position= (-1156.99,1319.51,-2539.71)
+Point[0] Position= (32.3394,102.174,4190.44)
+Point[1] Position= (32.3235,102.204,4190.41)
 
-TrackID =1055 : ParentID=987 : TrackStatus=1
+TrackID =1167 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.6335 15.6913 13.3949 keV
-Vertex : -1.16328 1.31313 -2.548 m    Global time : 16.2246 ns 
+Original momentum : 1.29255 -39.8553 0.288352 keV
+Vertex : 0.00821979 0.102233 4.19755 m    Global time : 14.7639 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1163.28,1313.13,-2548)
-Point[1] Position= (-1163.31,1313.14,-2547.99)
-
-TrackID =1054 : ParentID=987 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 59.7653 83.7182 -137.277 keV
-Vertex : -1.16855 1.30641 -2.55442 m    Global time : 16.1803 ns 
-  Current trajectory has 7 points.
-Point[0] Position= (-1168.55,1306.41,-2554.42)
-Point[1] Position= (-1167.45,1307.96,-2556.95)
-Point[2] Position= (-1167.37,1310.12,-2559.34)
-Point[3] Position= (-1166.45,1310.88,-2560.07)
-Point[4] Position= (-1166.56,1312.37,-2560.5)
-Point[5] Position= (-1167.31,1312.09,-2560.1)
-Point[6] Position= (-1167.35,1311.77,-2560.11)
+Point[0] Position= (8.21979,102.233,4197.55)
+Point[1] Position= (8.2213,102.186,4197.55)
 
-TrackID =1080 : ParentID=1054 : TrackStatus=1
+TrackID =1166 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.2674 3.1169 0.312471 keV
-Vertex : -1.16645 1.31088 -2.56007 m    Global time : 16.2683 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-1166.45,1310.88,-2560.07)
-Point[1] Position= (-1166.41,1310.88,-2560.07)
+Original momentum : 25.3098 -12.4031 79.4974 keV
+Vertex : -0.0735513 0.0934628 4.21791 m    Global time : 14.3343 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-73.5513,93.4628,4217.91)
+Point[1] Position= (-73.3689,93.3734,4218.48)
+Point[2] Position= (-73.3939,93.3755,4218.46)
 
-TrackID =1079 : ParentID=1054 : TrackStatus=1
+TrackID =1165 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.5358 34.0504 30.7336 keV
-Vertex : -1.16745 1.30796 -2.55695 m    Global time : 16.2134 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-1167.45,1307.96,-2556.95)
-Point[1] Position= (-1167.43,1308.02,-2556.89)
+Original momentum : 18.9612 -71.731 78.2072 keV
+Vertex : -0.0758369 0.0932094 4.2181 m    Global time : 14.3228 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (-75.8369,93.2094,4218.1)
+Point[1] Position= (-75.6099,92.3507,4219.04)
+Point[2] Position= (-76.0372,91.8545,4219.61)
+Point[3] Position= (-76.138,91.844,4219.63)
+Point[4] Position= (-76.1468,91.853,4219.62)
 
-TrackID =1053 : ParentID=987 : TrackStatus=1
+TrackID =1182 : ParentID=1165 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 4.04876 -11.3966 36.5334 keV
-Vertex : -1.18798 1.18527 -2.58168 m    Global time : 15.6745 ns 
+Original momentum : 2.96058 -45.119 -7.76588 keV
+Vertex : -0.0760372 0.0918545 4.21961 m    Global time : 14.3593 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1187.98,1185.27,-2581.68)
-Point[1] Position= (-1187.98,1185.26,-2581.64)
+Point[0] Position= (-76.0372,91.8545,4219.61)
+Point[1] Position= (-76.0324,91.7821,4219.6)
 
-TrackID =1052 : ParentID=987 : TrackStatus=1
+TrackID =1164 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.1595 12.7517 22.1965 keV
-Vertex : -1.01952 0.907117 -2.65185 m    Global time : 14.481 ns 
+Original momentum : 7.30064 39.3123 -44.2205 keV
+Vertex : -0.0788431 0.0933263 4.2178 m    Global time : 14.3081 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1019.52,907.117,-2651.85)
-Point[1] Position= (-1019.48,907.134,-2651.82)
+Point[0] Position= (-78.8431,93.3263,4217.8)
+Point[1] Position= (-78.8211,93.4447,4217.67)
 
-TrackID =1051 : ParentID=987 : TrackStatus=1
+TrackID =1163 : ParentID=1151 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.778089 -26.6272 19.9184 keV
-Vertex : -0.984037 0.883137 -2.68883 m    Global time : 14.2615 ns 
+Original momentum : 2.91124 8.89639 39.9431 keV
+Vertex : -0.0855842 0.0930765 4.21824 m    Global time : 14.2754 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-984.037,883.137,-2688.83)
-Point[1] Position= (-984.038,883.116,-2688.82)
+Point[0] Position= (-85.5842,93.0765,4218.24)
+Point[1] Position= (-85.5806,93.0876,4218.29)
 
-TrackID =1050 : ParentID=987 : TrackStatus=1
+TrackID =1150 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.9789 -27.5039 56.2343 keV
-Vertex : -0.95324 0.864031 -2.71577 m    Global time : 14.0864 ns 
+Original momentum : 82.9338 8.00768 9.41269 keV
+Vertex : -0.137774 0.0924471 4.15326 m    Global time : 13.8652 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-953.24,864.031,-2715.77)
-Point[1] Position= (-953.158,863.924,-2715.55)
-Point[2] Position= (-953.182,863.931,-2715.56)
+Point[0] Position= (-137.774,92.4471,4153.26)
+Point[1] Position= (-137.185,92.504,4153.32)
+Point[2] Position= (-137.184,92.5079,4153.33)
 
-TrackID =1049 : ParentID=987 : TrackStatus=1
+TrackID =1149 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.9508 -29.1378 -7.41306 keV
-Vertex : -0.928422 0.835212 -2.74348 m    Global time : 13.9056 ns 
+Original momentum : -7.08842 36.3847 0.29975 keV
+Vertex : -0.136198 0.0913909 4.10575 m    Global time : 13.7066 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-928.422,835.212,-2743.48)
-Point[1] Position= (-928.491,835.159,-2743.49)
+Point[0] Position= (-136.198,91.3909,4105.75)
+Point[1] Position= (-136.205,91.4271,4105.75)
 
-TrackID =1048 : ParentID=987 : TrackStatus=1
+TrackID =1148 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 51.1375 51.2544 16.878 keV
-Vertex : -0.924475 0.831816 -2.74578 m    Global time : 13.8835 ns 
+Original momentum : 65.8851 -20.4807 7.33428 keV
+Vertex : -0.129439 0.0868603 3.90203 m    Global time : 13.0265 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-924.475,831.816,-2745.78)
-Point[1] Position= (-924.208,832.084,-2745.69)
+Point[0] Position= (-129.439,86.8603,3902.03)
+Point[1] Position= (-129.149,86.7703,3902.06)
 
-TrackID =1047 : ParentID=987 : TrackStatus=1
+TrackID =1147 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.7766 -15.9261 -11.4557 keV
-Vertex : -0.919021 0.826221 -2.7496 m    Global time : 13.8499 ns 
+Original momentum : 28.1844 -48.344 5.0926 keV
+Vertex : -0.121068 0.0812477 3.6497 m    Global time : 12.1842 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-919.021,826.221,-2749.6)
-Point[1] Position= (-919.042,826.209,-2749.61)
+Point[0] Position= (-121.068,81.2477,3649.7)
+Point[1] Position= (-120.995,81.1218,3649.72)
 
-TrackID =1046 : ParentID=987 : TrackStatus=1
+TrackID =1146 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 5.86032 -19.9515 28.717 keV
-Vertex : -0.873678 0.776693 -2.80251 m    Global time : 13.5242 ns 
+Original momentum : -29.6229 17.5839 -0.212493 keV
+Vertex : -0.11914 0.0799546 3.59156 m    Global time : 11.9901 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-873.678,776.693,-2802.51)
-Point[1] Position= (-873.673,776.675,-2802.48)
+Point[0] Position= (-119.14,79.9546,3591.56)
+Point[1] Position= (-119.165,79.9695,3591.56)
 
-TrackID =1045 : ParentID=987 : TrackStatus=1
+TrackID =1145 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 51.8464 17.7956 46.4904 keV
-Vertex : -0.799796 0.713871 -2.85612 m    Global time : 13.1067 ns 
+Original momentum : -53.1 7.90734 0.878716 keV
+Vertex : -0.117353 0.0787545 3.53765 m    Global time : 11.8101 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-799.796,713.871,-2856.12)
-Point[1] Position= (-799.547,713.957,-2855.9)
+Point[0] Position= (-117.353,78.7545,3537.65)
+Point[1] Position= (-117.476,78.7729,3537.65)
 
-TrackID =1044 : ParentID=987 : TrackStatus=1
+TrackID =1144 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.2467 -49.0323 -6.69472 keV
-Vertex : -0.734802 0.669078 -2.90663 m    Global time : 12.757 ns 
+Original momentum : -19.087 28.3091 -0.122849 keV
+Vertex : -0.116997 0.0785154 3.52691 m    Global time : 11.7742 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-734.802,669.078,-2906.63)
-Point[1] Position= (-734.931,668.912,-2906.65)
+Point[0] Position= (-116.997,78.5154,3526.91)
+Point[1] Position= (-117.012,78.5389,3526.91)
 
-TrackID =1043 : ParentID=987 : TrackStatus=1
+TrackID =1143 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.9789 25.6209 -14.5733 keV
-Vertex : -0.629998 0.59665 -2.9439 m    Global time : 12.257 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-629.998,596.65,-2943.9)
-Point[1] Position= (-629.985,596.67,-2943.91)
-
-TrackID =1042 : ParentID=987 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -63.936 -46.2674 38.884 keV
-Vertex : -0.460898 0.464517 -2.90275 m    Global time : 11.4675 ns 
+Original momentum : 109.469 1.52583 15.429 keV
+Vertex : -0.116191 0.0779742 3.50261 m    Global time : 11.6931 ns 
   Current trajectory has 4 points.
-Point[0] Position= (-460.898,464.517,-2902.75)
-Point[1] Position= (-461.409,464.147,-2902.44)
-Point[2] Position= (-461.406,464.12,-2902.44)
-Point[3] Position= (-461.427,464.072,-2902.42)
+Point[0] Position= (-116.191,77.9742,3502.61)
+Point[1] Position= (-114.826,77.9932,3502.8)
+Point[2] Position= (-114.358,78.461,3502.45)
+Point[3] Position= (-114.39,78.4023,3502.46)
 
-TrackID =1081 : ParentID=1042 : TrackStatus=1
+TrackID =1142 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.0665 -16.1607 -9.45166 keV
-Vertex : -0.461406 0.46412 -2.90244 m    Global time : 11.4821 ns 
+Original momentum : 18.4482 -25.915 2.18335 keV
+Vertex : -0.115096 0.0772385 3.46957 m    Global time : 11.5828 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-461.406,464.12,-2902.44)
-Point[1] Position= (-461.385,464.108,-2902.45)
+Point[0] Position= (-115.096,77.2385,3469.57)
+Point[1] Position= (-115.082,77.22,3469.57)
 
-TrackID =1041 : ParentID=987 : TrackStatus=1
+TrackID =1141 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.0069 -38.3835 -5.04521 keV
-Vertex : -0.456277 0.460016 -2.9027 m    Global time : 11.4433 ns 
+Original momentum : -26.082 26.8256 -0.0929614 keV
+Vertex : -0.114302 0.0767055 3.44563 m    Global time : 11.5029 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-456.277,460.016,-2902.7)
-Point[1] Position= (-456.363,459.927,-2902.71)
+Point[0] Position= (-114.302,76.7055,3445.63)
+Point[1] Position= (-114.328,76.7327,3445.63)
 
-TrackID =1040 : ParentID=987 : TrackStatus=1
+TrackID =1140 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.4534 6.27273 49.6417 keV
-Vertex : -0.439718 0.446084 -2.9063 m    Global time : 11.3611 ns 
+Original momentum : -47.0832 15.0233 0.490917 keV
+Vertex : -0.1143 0.0767044 3.44558 m    Global time : 11.5027 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-439.718,446.084,-2906.3)
-Point[1] Position= (-439.691,446.098,-2906.2)
+Point[0] Position= (-114.3,76.7044,3445.58)
+Point[1] Position= (-114.39,76.7331,3445.58)
 
-TrackID =1039 : ParentID=987 : TrackStatus=1
+TrackID =1139 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.0203 -8.37672 -49.822 keV
-Vertex : -0.42626 0.432684 -2.91083 m    Global time : 11.2882 ns 
+Original momentum : 38.1887 -13.4977 3.18076 keV
+Vertex : -0.114099 0.0765694 3.43952 m    Global time : 11.4825 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-426.26,432.684,-2910.83)
-Point[1] Position= (-426.342,432.66,-2910.97)
+Point[0] Position= (-114.099,76.5694,3439.52)
+Point[1] Position= (-114.053,76.553,3439.52)
 
-TrackID =1037 : ParentID=987 : TrackStatus=1
+TrackID =1138 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.6419 37.0731 -78.264 keV
-Vertex : -0.352602 0.346845 -2.92566 m    Global time : 10.8653 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-352.602,346.845,-2925.66)
-Point[1] Position= (-352.364,347.164,-2926.34)
-Point[2] Position= (-352.417,347.087,-2926.42)
+Original momentum : 13.2902 -63.01 5.92281 keV
+Vertex : -0.102309 0.0686517 3.08397 m    Global time : 10.2955 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-102.309,68.6517,3083.97)
+Point[1] Position= (-102.26,68.4196,3083.99)
 
-TrackID =1036 : ParentID=987 : TrackStatus=1
+TrackID =1137 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 43.1352 39.2462 -62.6593 keV
-Vertex : -0.335675 0.328563 -2.92103 m    Global time : 10.7717 ns 
+Original momentum : 68.4497 63.9921 9.45948 keV
+Vertex : -0.100996 0.0677701 3.04436 m    Global time : 10.1633 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-335.675,328.563,-2921.03)
-Point[1] Position= (-335.586,328.645,-2921.16)
-Point[2] Position= (-335.532,328.89,-2921.39)
+Point[0] Position= (-100.996,67.7701,3044.36)
+Point[1] Position= (-100.375,68.3503,3044.45)
+Point[2] Position= (-100.599,68.3404,3044.36)
 
-TrackID =1082 : ParentID=1036 : TrackStatus=1
+TrackID =1183 : ParentID=1137 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.6197 -12.1018 -5.98625 keV
-Vertex : -0.335586 0.328645 -2.92116 m    Global time : 10.7753 ns 
+Original momentum : -7.51312 39.4481 14.1249 keV
+Vertex : -0.100375 0.0683503 3.04445 m    Global time : 10.179 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-335.586,328.645,-2921.16)
-Point[1] Position= (-335.561,328.635,-2921.17)
+Point[0] Position= (-100.375,68.3503,3044.45)
+Point[1] Position= (-100.385,68.4036,3044.47)
 
-TrackID =1035 : ParentID=987 : TrackStatus=1
+TrackID =1136 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.02467 -47.0571 -42.3995 keV
-Vertex : -0.230617 0.221375 -2.84987 m    Global time : 10.1629 ns 
+Original momentum : -51.0215 3.07195 0.792031 keV
+Vertex : -0.0969723 0.0650712 2.92309 m    Global time : 9.75845 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-230.617,221.375,-2849.87)
-Point[1] Position= (-230.646,221.207,-2850.02)
+Point[0] Position= (-96.9723,65.0712,2923.09)
+Point[1] Position= (-97.0779,65.0776,2923.09)
 
-TrackID =1034 : ParentID=987 : TrackStatus=1
+TrackID =1135 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.5836 -32.6722 4.52039 keV
-Vertex : -0.0144857 0.186964 -2.61576 m    Global time : 9.02653 ns 
+Original momentum : -62.1786 -4.09422 1.82032 keV
+Vertex : -0.0941085 0.0631503 2.83675 m    Global time : 9.47021 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-14.4857,186.964,-2615.76)
-Point[1] Position= (-14.5103,186.927,-2615.75)
+Point[0] Position= (-94.1085,63.1503,2836.75)
+Point[1] Position= (-94.3175,63.1365,2836.75)
 
-TrackID =1033 : ParentID=987 : TrackStatus=1
+TrackID =1134 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.0843 -2.95613 15.1607 keV
-Vertex : -0.012995 0.186794 -2.61285 m    Global time : 9.01459 ns 
+Original momentum : 43.3448 2.81752 3.22942 keV
+Vertex : -0.0940199 0.0630908 2.83408 m    Global time : 9.46129 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-12.995,186.794,-2612.85)
-Point[1] Position= (-13.0217,186.791,-2612.84)
+Point[0] Position= (-94.0199,63.0908,2834.08)
+Point[1] Position= (-93.9582,63.0949,2834.08)
 
-TrackID =1032 : ParentID=987 : TrackStatus=1
+TrackID =1133 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.5377 16.6015 -13.5925 keV
-Vertex : -0.00721298 0.186417 -2.60064 m    Global time : 8.96534 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-7.21298,186.417,-2600.64)
-Point[1] Position= (-7.19282,186.43,-2600.65)
+Original momentum : 78.4167 81.5828 13.3454 keV
+Vertex : -0.093674 0.0628588 2.82365 m    Global time : 9.42648 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-93.674,62.8588,2823.65)
+Point[1] Position= (-92.6497,63.9245,2823.82)
+Point[2] Position= (-91.7836,64.0444,2823.71)
+Point[3] Position= (-91.7775,64.0477,2823.66)
 
-TrackID =1031 : ParentID=987 : TrackStatus=1
+TrackID =1184 : ParentID=1133 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 19.9447 -33.6738 -17.3039 keV
-Vertex : -0.00159492 0.185447 -2.5906 m    Global time : 8.92325 ns 
+Original momentum : -19.3687 32.5856 -0.278194 keV
+Vertex : -0.0917836 0.0640444 2.82371 m    Global time : 9.46546 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.59492,185.447,-2590.6)
-Point[1] Position= (-1.56763,185.401,-2590.62)
+Point[0] Position= (-91.7836,64.0444,2823.71)
+Point[1] Position= (-91.8038,64.0784,2823.7)
 
-TrackID =1030 : ParentID=987 : TrackStatus=1
+TrackID =1132 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.5751 59.5995 20.4383 keV
-Vertex : 0.0346092 0.188023 -2.52394 m    Global time : 8.64846 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (34.6092,188.023,-2523.94)
-Point[1] Position= (34.4506,188.304,-2523.84)
+Original momentum : 12.9603 -82.2772 9.08912 keV
+Vertex : -0.0895875 0.0601169 2.7004 m    Global time : 9.01504 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-89.5875,60.1169,2700.4)
+Point[1] Position= (-89.5073,59.6073,2700.46)
+Point[2] Position= (-89.5285,59.5142,2700.49)
 
-TrackID =1029 : ParentID=987 : TrackStatus=1
+TrackID =1185 : ParentID=1132 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.5664 35.1503 -11.4354 keV
-Vertex : 0.0413557 0.186044 -2.51124 m    Global time : 8.59567 ns 
+Original momentum : -38.7724 15.8221 23.9269 keV
+Vertex : -0.0895073 0.0596073 2.70046 m    Global time : 9.02573 ns 
   Current trajectory has 2 points.
-Point[0] Position= (41.3557,186.044,-2511.24)
-Point[1] Position= (41.3975,186.099,-2511.26)
+Point[0] Position= (-89.5073,59.6073,2700.46)
+Point[1] Position= (-89.5771,59.6359,2700.5)
 
-TrackID =1028 : ParentID=987 : TrackStatus=1
+TrackID =1131 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.83168 -36.3333 -11.8622 keV
-Vertex : 0.0722865 0.165675 -2.4328 m    Global time : 8.27995 ns 
+Original momentum : 28.9094 -15.8684 2.38028 keV
+Vertex : -0.0803718 0.0539308 2.42232 m    Global time : 8.0867 ns 
   Current trajectory has 2 points.
-Point[0] Position= (72.2865,165.675,-2432.8)
-Point[1] Position= (72.2778,165.635,-2432.81)
+Point[0] Position= (-80.3718,53.9308,2422.32)
+Point[1] Position= (-80.3494,53.9185,2422.33)
 
-TrackID =1027 : ParentID=987 : TrackStatus=1
+TrackID =1130 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.1262 -41.2621 -20.8033 keV
-Vertex : 0.0753738 0.163473 -2.42523 m    Global time : 8.24924 ns 
+Original momentum : -18.3926 41.2846 0.468792 keV
+Vertex : -0.0695272 0.0466516 2.09502 m    Global time : 6.99404 ns 
   Current trajectory has 2 points.
-Point[0] Position= (75.3738,163.473,-2425.23)
-Point[1] Position= (75.4016,163.397,-2425.27)
+Point[0] Position= (-69.5272,46.6516,2095.02)
+Point[1] Position= (-69.5557,46.7156,2095.03)
 
-TrackID =986 : ParentID=49 : TrackStatus=1
+TrackID =1129 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.8611 -14.1362 -0.442391 keV
-Vertex : 0.104912 0.0956351 -2.31594 m    Global time : 7.74029 ns 
+Original momentum : -33.1677 32.0309 0.266338 keV
+Vertex : -0.0689625 0.0462725 2.07798 m    Global time : 6.93715 ns 
   Current trajectory has 2 points.
-Point[0] Position= (104.912,95.6351,-2315.94)
-Point[1] Position= (104.954,95.6189,-2315.94)
+Point[0] Position= (-68.9625,46.2725,2077.98)
+Point[1] Position= (-69.0163,46.3244,2077.98)
 
-TrackID =985 : ParentID=49 : TrackStatus=1
+TrackID =1128 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.7418 -31.5011 -1.75826 keV
-Vertex : 0.103663 0.0944955 -2.28832 m    Global time : 7.64799 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (103.663,94.4955,-2288.32)
-Point[1] Position= (103.695,94.4569,-2288.32)
+Original momentum : -23.5961 133.848 14.2113 keV
+Vertex : -0.0683963 0.0458923 2.06089 m    Global time : 6.8801 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (-68.3963,45.8923,2060.89)
+Point[1] Position= (-68.797,48.1655,2061.14)
+Point[2] Position= (-69.209,49.5797,2061.31)
+Point[3] Position= (-69.4756,50.1314,2061.41)
+Point[4] Position= (-69.7919,50.2997,2061.6)
+Point[5] Position= (-69.8106,50.3008,2061.62)
 
-TrackID =984 : ParentID=49 : TrackStatus=1
+TrackID =1186 : ParentID=1128 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -46.4089 16.8981 -3.80198 keV
-Vertex : 0.0929132 0.0846891 -2.05069 m    Global time : 6.85377 ns 
+Original momentum : 15.9727 -2.5739 29.3514 keV
+Vertex : -0.0694756 0.0501314 2.06141 m    Global time : 6.94424 ns 
   Current trajectory has 2 points.
-Point[0] Position= (92.9132,84.6891,-2050.69)
-Point[1] Position= (92.8241,84.7215,-2050.69)
+Point[0] Position= (-69.4756,50.1314,2061.41)
+Point[1] Position= (-69.4628,50.1294,2061.44)
 
-TrackID =983 : ParentID=49 : TrackStatus=1
+TrackID =1127 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.49977 -37.6032 -3.11699 keV
-Vertex : 0.090078 0.0821022 -1.98802 m    Global time : 6.64432 ns 
+Original momentum : -51.9945 20.9127 0.878871 keV
+Vertex : -0.0669828 0.0449428 2.01824 m    Global time : 6.73769 ns 
   Current trajectory has 2 points.
-Point[0] Position= (90.078,82.1022,-1988.02)
-Point[1] Position= (90.0743,82.0629,-1988.02)
+Point[0] Position= (-66.9828,44.9428,2018.24)
+Point[1] Position= (-67.1174,44.9969,2018.24)
 
-TrackID =982 : ParentID=49 : TrackStatus=1
+TrackID =1126 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.613 25.3218 -1.10729 keV
-Vertex : 0.0868944 0.079197 -1.91767 m    Global time : 6.40919 ns 
+Original momentum : -46.6724 -0.488843 0.59302 keV
+Vertex : -0.0629175 0.0422136 1.89559 m    Global time : 6.32823 ns 
   Current trajectory has 2 points.
-Point[0] Position= (86.8944,79.197,-1917.67)
-Point[1] Position= (86.8759,79.2178,-1917.67)
+Point[0] Position= (-62.9175,42.2136,1895.59)
+Point[1] Position= (-62.9954,42.2128,1895.59)
 
-TrackID =981 : ParentID=49 : TrackStatus=1
+TrackID =1125 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.7092 -32.5356 -3.34393 keV
-Vertex : 0.0850036 0.0774715 -1.87589 m    Global time : 6.26957 ns 
+Original momentum : 24.3384 47.0136 2.50455 keV
+Vertex : -0.0569792 0.0382291 1.71645 m    Global time : 5.73021 ns 
   Current trajectory has 2 points.
-Point[0] Position= (85.0036,77.4715,-1875.89)
-Point[1] Position= (84.9887,77.4406,-1875.89)
+Point[0] Position= (-56.9792,38.2291,1716.45)
+Point[1] Position= (-56.9242,38.3353,1716.46)
 
-TrackID =980 : ParentID=49 : TrackStatus=1
+TrackID =1124 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.7404 28.3904 0.90563 keV
-Vertex : 0.0838259 0.0763965 -1.84987 m    Global time : 6.1826 ns 
+Original momentum : 27.6334 24.8557 1.71772 keV
+Vertex : -0.0463038 0.0310668 1.39451 m    Global time : 4.65544 ns 
   Current trajectory has 2 points.
-Point[0] Position= (83.8259,76.3965,-1849.87)
-Point[1] Position= (83.8476,76.4236,-1849.87)
+Point[0] Position= (-46.3038,31.0668,1394.51)
+Point[1] Position= (-46.2761,31.0918,1394.51)
 
-TrackID =979 : ParentID=49 : TrackStatus=1
+TrackID =1123 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.4652 45.0864 0.340117 keV
-Vertex : 0.077729 0.0708348 -1.71521 m    Global time : 5.73255 ns 
+Original momentum : 49.6917 17.865 3.9897 keV
+Vertex : -0.0455784 0.0305805 1.37264 m    Global time : 4.58243 ns 
   Current trajectory has 2 points.
-Point[0] Position= (77.729,70.8348,-1715.21)
-Point[1] Position= (77.7561,70.9138,-1715.21)
-
-TrackID =978 : ParentID=49 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 86.2705 -3.91461 -3.52519 keV
-Vertex : 0.0686994 0.0626056 -1.51592 m    Global time : 5.06648 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (68.6994,62.6056,-1515.92)
-Point[1] Position= (69.3595,62.5757,-1515.95)
-Point[2] Position= (69.4131,62.5444,-1515.97)
+Point[0] Position= (-45.5784,30.5805,1372.64)
+Point[1] Position= (-45.4663,30.6208,1372.65)
 
-TrackID =977 : ParentID=49 : TrackStatus=1
+TrackID =1122 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.52191 -47.9067 -3.92263 keV
-Vertex : 0.0578846 0.0527541 -1.27732 m    Global time : 4.26905 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (57.8846,52.7541,-1277.32)
-Point[1] Position= (57.9004,52.6653,-1277.33)
+Original momentum : -114.048 22.6502 8.85933 keV
+Vertex : -0.0386774 0.0259575 1.16466 m    Global time : 3.8881 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-38.6774,25.9575,1164.66)
+Point[1] Position= (-40.2199,26.2638,1164.78)
+Point[2] Position= (-40.6302,26.8797,1164.72)
+Point[3] Position= (-40.6193,26.9066,1164.73)
 
-TrackID =976 : ParentID=49 : TrackStatus=1
+TrackID =1121 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.9383 25.7222 0.936823 keV
-Vertex : 3.18521 2.90444 -70.3174 cm   Global time : 2.35013 ns 
+Original momentum : 22.6055 31.6432 1.52809 keV
+Vertex : -0.0383936 0.0257674 1.15611 m    Global time : 3.85956 ns 
   Current trajectory has 2 points.
-Point[0] Position= (31.8521,29.0444,-703.174)
-Point[1] Position= (31.87,29.0654,-703.173)
+Point[0] Position= (-38.3936,25.7674,1156.11)
+Point[1] Position= (-38.3686,25.8025,1156.11)
 
-TrackID =975 : ParentID=49 : TrackStatus=1
+TrackID =1120 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.0616 -47.9301 -3.85975 keV
-Vertex : 1.29785 1.18358 -28.6516 cm   Global time : 957.589 ps 
+Original momentum : -36.0162 3.79135 0.00276036 keV
+Vertex : -0.0349499 0.0234605 1.05236 m    Global time : 3.5132 ns 
   Current trajectory has 2 points.
-Point[0] Position= (12.9785,11.8358,-286.516)
-Point[1] Position= (12.9995,11.7446,-286.523)
+Point[0] Position= (-34.9499,23.4605,1052.36)
+Point[1] Position= (-34.9839,23.4641,1052.36)
 
-TrackID =974 : ParentID=49 : TrackStatus=1
+TrackID =1119 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 153.259 -80.6297 -25.5975 keV
-Vertex : 1.16758 1.0648 -25.7756 cm   Global time : 861.469 ps 
-  Current trajectory has 7 points.
-Point[0] Position= (11.6758,10.648,-257.756)
-Point[1] Position= (15.5277,8.6215,-258.4)
-Point[2] Position= (16.4245,9.15473,-259.117)
-Point[3] Position= (17.3756,10.4583,-259.293)
-Point[4] Position= (18.1686,10.1722,-260.784)
-Point[5] Position= (19.0277,9.62142,-261.238)
-Point[6] Position= (19.0463,9.59884,-261.277)
-
-TrackID =1084 : ParentID=974 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.0967 -20.66 19.2225 keV
-Vertex : 1.73756 1.04583 -25.9293 cm   Global time : 941.89 ps 
+Original momentum : 28.3075 22.9973 1.73185 keV
+Vertex : -3.05437 2.05071 91.9631 cm   Global time : 3.0701 ns 
   Current trajectory has 2 points.
-Point[0] Position= (17.3756,10.4583,-259.293)
-Point[1] Position= (17.4108,10.4332,-259.27)
+Point[0] Position= (-30.5437,20.5071,919.631)
+Point[1] Position= (-30.5164,20.5292,919.632)
 
-TrackID =1083 : ParentID=974 : TrackStatus=1
+TrackID =1118 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 19.0987 -20.9029 -56.1171 keV
-Vertex : 1.64245 0.915473 -25.9117 cm   Global time : 921.043 ps 
+Original momentum : -37.9118 5.42695 0.0549527 keV
+Vertex : -2.90009 1.94728 87.3158 cm   Global time : 2.91496 ns 
   Current trajectory has 2 points.
-Point[0] Position= (16.4245,9.15473,-259.117)
-Point[1] Position= (16.49,9.08301,-259.309)
+Point[0] Position= (-29.0009,19.4728,873.158)
+Point[1] Position= (-29.0414,19.4786,873.158)
 
-TrackID =973 : ParentID=49 : TrackStatus=1
+TrackID =1117 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.5673 27.7235 0.91532 keV
-Vertex : 0.195393 0.178261 -4.31402 cm   Global time : 144.182 ps 
-  Current trajectory has 2 points.
-Point[0] Position= (1.95393,1.78261,-43.1402)
-Point[1] Position= (1.97466,1.80808,-43.1394)
-
-TrackID =48 : ParentID=45 : TrackStatus=1
-Particle name : unknown : anti_delta++  PDG code : -2224  Charge : -2
-Original momentum : -0.437184 -0.13363 -4.69663 GeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+Original momentum : 31.8212 -18.4643 2.79975 keV
+Vertex : -2.84938 1.91327 85.7889 cm   Global time : 2.86399 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (-8.00666e-307,-2.05077e-307,6.69946e-306)
-
-TrackID =1086 : ParentID=48 : TrackStatus=1
-Particle name : anti_proton  PDG code : -2212  Charge : -1
-Original momentum : -0.373892 -0.270453 -2.87903 GeV
-Vertex : -8.00666e-295 -2.05077e-295 6.69946e-294 fm   Global time : 8.69392e-305 ps 
-  Current trajectory has 80 points.
-Point[0] Position= (-8.00666e-307,-2.05077e-307,6.69946e-306)
-Point[1] Position= (-2.64058,-1.91008,-20.3316)
-Point[2] Position= (-4.54076,-3.2841,-34.9607)
-Point[3] Position= (-13.0343,-9.42548,-100.34)
-Point[4] Position= (-13.3822,-9.6771,-103.019)
-Point[5] Position= (-37.1857,-26.8778,-286.2)
-Point[6] Position= (-52.8897,-38.2322,-407.071)
-Point[7] Position= (-54.0284,-39.0561,-415.835)
-Point[8] Position= (-57.1503,-41.3143,-439.853)
-Point[9] Position= (-65.0987,-47.0738,-500.932)
-Point[10] Position= (-66.2047,-47.8762,-509.426)
-Point[11] Position= (-80.7399,-58.419,-621.015)
-Point[12] Position= (-81.0788,-58.6646,-623.616)
-Point[13] Position= (-85.9259,-62.1784,-660.826)
-Point[14] Position= (-89.6608,-64.8872,-689.51)
-Point[15] Position= (-105.383,-76.2862,-810.198)
-Point[16] Position= (-108.119,-78.2703,-831.201)
-Point[17] Position= (-110.86,-80.2576,-852.233)
-Point[18] Position= (-114.139,-82.636,-877.397)
-Point[19] Position= (-121.684,-88.1074,-935.273)
-Point[20] Position= (-129.288,-93.6191,-993.59)
-Point[21] Position= (-134.421,-97.3458,-1032.99)
-Point[22] Position= (-168.604,-122.175,-1295.31)
-Point[23] Position= (-173.413,-125.67,-1332.21)
-Point[24] Position= (-175.465,-127.162,-1347.96)
-Point[25] Position= (-185.221,-134.255,-1422.82)
-Point[26] Position= (-193.278,-140.115,-1484.63)
-Point[27] Position= (-199.288,-144.489,-1530.76)
-Point[28] Position= (-203.047,-147.227,-1559.62)
-Point[29] Position= (-216.356,-156.913,-1661.77)
-Point[30] Position= (-219.427,-159.147,-1685.34)
-Point[31] Position= (-233.899,-169.686,-1796.45)
-Point[32] Position= (-234.522,-170.14,-1801.23)
-Point[33] Position= (-235.742,-171.03,-1810.61)
-Point[34] Position= (-247.918,-179.881,-1904.17)
-Point[35] Position= (-303.776,-220.514,-2333.83)
-Point[36] Position= (-311.931,-226.448,-2396.54)
-Point[37] Position= (-319.818,-232.184,-2457.15)
-Point[38] Position= (-324.999,-235.951,-2496.96)
-Point[39] Position= (-327.687,-237.905,-2517.62)
-Point[40] Position= (-373.597,-271.301,-2870.65)
-Point[41] Position= (-376.66,-273.528,-2894.2)
-Point[42] Position= (-392.5,-285.041,-3015.93)
-Point[43] Position= (-397.513,-288.683,-3054.44)
-Point[44] Position= (-405.127,-294.21,-3112.94)
-Point[45] Position= (-428.245,-310.971,-3290.53)
-Point[46] Position= (-438.547,-318.446,-3369.69)
-Point[47] Position= (-441.548,-320.624,-3392.75)
-Point[48] Position= (-443.473,-322.021,-3407.55)
-Point[49] Position= (-447.646,-325.05,-3439.61)
-Point[50] Position= (-457.657,-332.311,-3516.54)
-Point[51] Position= (-461.91,-335.397,-3549.22)
-Point[52] Position= (-464.122,-337.003,-3566.22)
-Point[53] Position= (-474.116,-344.257,-3643.02)
-Point[54] Position= (-490.108,-355.872,-3765.97)
-Point[55] Position= (-493.885,-358.619,-3795.03)
-Point[56] Position= (-497.315,-361.111,-3821.42)
-Point[57] Position= (-507.799,-368.721,-3902.05)
-Point[58] Position= (-510.827,-370.918,-3925.34)
-Point[59] Position= (-514.682,-373.715,-3955)
-Point[60] Position= (-530.93,-385.5,-4079.93)
-Point[61] Position= (-553.425,-401.814,-4252.85)
-Point[62] Position= (-579.791,-420.927,-4455.4)
-Point[63] Position= (-583.742,-423.791,-4485.75)
-Point[64] Position= (-649.033,-471.192,-4987.29)
-Point[65] Position= (-653.292,-474.288,-5020.01)
-Point[66] Position= (-653.491,-474.433,-5021.53)
-Point[67] Position= (-661.464,-480.228,-5082.79)
-Point[68] Position= (-663.978,-482.056,-5102.1)
-Point[69] Position= (-665.595,-483.231,-5114.51)
-Point[70] Position= (-665.817,-483.392,-5116.22)
-Point[71] Position= (-673.273,-488.817,-5173.55)
-Point[72] Position= (-682.41,-495.465,-5243.79)
-Point[73] Position= (-709.398,-515.079,-5451.15)
-Point[74] Position= (-738.364,-536.121,-5673.67)
-Point[75] Position= (-741.926,-538.705,-5701.01)
-Point[76] Position= (-747.167,-542.506,-5741.26)
-Point[77] Position= (-760.793,-552.374,-5845.91)
-Point[78] Position= (-774.635,-562.401,-5952.27)
-Point[79] Position= (-780.846,-566.902,-6000)
-
-TrackID =1161 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.4277 -38.495 3.83458 keV
-Vertex : -0.774635 -0.562401 -5.95227 m    Global time : 21.1259 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-774.635,-562.401,-5952.27)
-Point[1] Position= (-774.655,-562.451,-5952.26)
-
-TrackID =1160 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -18.6497 30.4091 -1.76509 keV
-Vertex : -0.760793 -0.552374 -5.84591 m    Global time : 20.7484 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-760.793,-552.374,-5845.91)
-Point[1] Position= (-760.81,-552.347,-5845.91)
-
-TrackID =1159 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.5362 -36.3457 3.41014 keV
-Vertex : -0.747167 -0.542506 -5.74126 m    Global time : 20.3769 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-747.167,-542.506,-5741.26)
-Point[1] Position= (-747.179,-542.545,-5741.25)
-
-TrackID =1158 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.7946 36.7643 -1.29382 keV
-Vertex : -0.741926 -0.538705 -5.70101 m    Global time : 20.2341 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-741.926,-538.705,-5701.01)
-Point[1] Position= (-742.026,-538.614,-5701.02)
-
-TrackID =1157 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.7532 45.5777 -8.85627 keV
-Vertex : -0.738364 -0.536121 -5.67367 m    Global time : 20.137 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-738.364,-536.121,-5673.67)
-Point[1] Position= (-738.335,-536.035,-5673.69)
-
-TrackID =1156 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.96767 35.8795 -3.55255 keV
-Vertex : -0.709398 -0.515079 -5.45115 m    Global time : 19.3472 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-709.398,-515.079,-5451.15)
-Point[1] Position= (-709.408,-515.043,-5451.15)
-
-TrackID =1155 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 173.218 -143.296 -63.0464 keV
-Vertex : -0.68241 -0.495465 -5.24379 m    Global time : 18.6112 ns 
-  Current trajectory has 12 points.
-Point[0] Position= (-682.41,-495.465,-5243.79)
-Point[1] Position= (-674.814,-501.748,-5246.55)
-Point[2] Position= (-671.374,-505.355,-5253.17)
-Point[3] Position= (-664.402,-504.406,-5253.76)
-Point[4] Position= (-658.699,-505.629,-5254.07)
-Point[5] Position= (-654.688,-508.594,-5254.43)
-Point[6] Position= (-653.109,-511.207,-5257.1)
-Point[7] Position= (-655.894,-511.154,-5258.47)
-Point[8] Position= (-656.981,-513.051,-5258.61)
-Point[9] Position= (-657.148,-514.811,-5258.37)
-Point[10] Position= (-657.049,-515.033,-5258.4)
-Point[11] Position= (-656.908,-515.543,-5258.22)
+Point[0] Position= (-28.4938,19.1327,857.889)
+Point[1] Position= (-28.4624,19.1145,857.892)
 
-TrackID =1162 : ParentID=1155 : TrackStatus=1
+TrackID =1116 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.06732 -15.5583 -38.8686 keV
-Vertex : -0.657049 -0.515033 -5.2584 m    Global time : 19.0689 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-657.049,-515.033,-5258.4)
-Point[1] Position= (-657.058,-515.054,-5258.45)
+Original momentum : 19.4257 -81.8072 9.43028 keV
+Vertex : -2.70823 1.81862 81.5399 cm   Global time : 2.72214 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-27.0823,18.1862,815.399)
+Point[1] Position= (-26.9413,17.5922,815.468)
+Point[2] Position= (-26.8833,17.6749,815.467)
 
-TrackID =1154 : ParentID=1086 : TrackStatus=1
+TrackID =1115 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.8564 24.2783 -0.65095 keV
-Vertex : -0.673273 -0.488817 -5.17355 m    Global time : 18.3619 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-673.273,-488.817,-5173.55)
-Point[1] Position= (-673.288,-488.799,-5173.55)
+Original momentum : -31.0316 90.4392 5.86343 keV
+Vertex : -2.5779 1.73124 77.6163 cm   Global time : 2.59115 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-25.779,17.3124,776.163)
+Point[1] Position= (-26.0782,18.1844,776.22)
+Point[2] Position= (-26.1371,18.4157,776.266)
 
-TrackID =1153 : ParentID=1086 : TrackStatus=1
+TrackID =1114 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -48.9743 53.7122 -4.20455 keV
-Vertex : -0.665817 -0.483392 -5.11622 m    Global time : 18.1585 ns 
+Original momentum : 22.3462 59.831 3.39813 keV
+Vertex : -1.77317 1.19113 53.3893 cm   Global time : 1.78235 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-665.817,-483.392,-5116.22)
-Point[1] Position= (-666.013,-483.176,-5116.23)
-Point[2] Position= (-666.052,-483.226,-5116.22)
-
-TrackID =1163 : ParentID=1153 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.8416 -3.25933 -36.5554 keV
-Vertex : -0.666013 -0.483176 -5.11623 m    Global time : 18.1654 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-666.013,-483.176,-5116.23)
-Point[1] Position= (-666.026,-483.18,-5116.27)
-
-TrackID =1152 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -478.156 -41.4565 -153.824 keV
-Vertex : -0.665595 -0.483231 -5.11451 m    Global time : 18.1524 ns 
-  Current trajectory has 25 points.
-Point[0] Position= (-665.595,-483.231,-5114.51)
-Point[1] Position= (-672.821,-483.857,-5116.84)
-Point[2] Position= (-684.115,-485.626,-5117.62)
-Point[3] Position= (-684.371,-485.683,-5117.63)
-Point[4] Position= (-732.777,-486.374,-5115.16)
-Point[5] Position= (-764.62,-485.621,-5111.77)
-Point[6] Position= (-769.729,-488.07,-5110.52)
-Point[7] Position= (-821.313,-520.751,-5091.49)
-Point[8] Position= (-838.982,-535.373,-5141.72)
-Point[9] Position= (-855.446,-540.416,-5142.36)
-Point[10] Position= (-870.956,-539.727,-5140.91)
-Point[11] Position= (-892.683,-538.251,-5143.53)
-Point[12] Position= (-905.224,-510.706,-5148.8)
-Point[13] Position= (-924.353,-496.764,-5158.06)
-Point[14] Position= (-934.766,-493.898,-5163.09)
-Point[15] Position= (-938.136,-493.078,-5158.58)
-Point[16] Position= (-940.887,-490.603,-5155.66)
-Point[17] Position= (-941.823,-485.946,-5153.24)
-Point[18] Position= (-941.974,-482.252,-5151.41)
-Point[19] Position= (-939.636,-479.947,-5151.37)
-Point[20] Position= (-938.642,-477.531,-5151.84)
-Point[21] Position= (-938.737,-476.797,-5152.93)
-Point[22] Position= (-937.8,-477.686,-5153.68)
-Point[23] Position= (-937.205,-477.405,-5153.89)
-Point[24] Position= (-937.392,-477.311,-5153.96)
-
-TrackID =1178 : ParentID=1152 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.8519 -25.5829 -4.7357 keV
-Vertex : -0.938737 -0.476797 -5.15293 m    Global time : 20.2955 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-938.737,-476.797,-5152.93)
-Point[1] Position= (-938.767,-476.824,-5152.93)
-
-TrackID =1177 : ParentID=1152 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -93.7217 -17.1264 30.421 keV
-Vertex : -0.941823 -0.485946 -5.15324 m    Global time : 20.1642 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (-941.823,-485.946,-5153.24)
-Point[1] Position= (-942.806,-486.125,-5152.92)
-Point[2] Position= (-942.859,-486.098,-5152.96)
-Point[3] Position= (-943.185,-486.025,-5152.94)
-Point[4] Position= (-943.266,-486.014,-5152.94)
+Point[0] Position= (-17.7317,11.9113,533.893)
+Point[1] Position= (-17.7005,11.9946,533.897)
+Point[2] Position= (-17.661,12.0669,533.843)
 
-TrackID =1179 : ParentID=1177 : TrackStatus=1
+TrackID =1187 : ParentID=1114 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.568779 10.7827 -30.3207 keV
-Vertex : -0.942859 -0.486098 -5.15296 m    Global time : 20.1839 ns 
+Original momentum : 9.32131 18.6684 31.534 keV
+Vertex : -1.77005 1.19946 53.3897 cm   Global time : 1.78475 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-942.859,-486.098,-5152.96)
-Point[1] Position= (-942.858,-486.09,-5152.98)
+Point[0] Position= (-17.7005,11.9946,533.897)
+Point[1] Position= (-17.6908,12.014,533.93)
 
-TrackID =1176 : ParentID=1152 : TrackStatus=1
+TrackID =1113 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -106.711 -67.2194 98.6091 keV
-Vertex : -0.940887 -0.490603 -5.15566 m    Global time : 20.1168 ns 
-  Current trajectory has 6 points.
-Point[0] Position= (-940.887,-490.603,-5155.66)
-Point[1] Position= (-943.193,-492.056,-5153.53)
-Point[2] Position= (-943.455,-492.576,-5153.73)
-Point[3] Position= (-943.189,-494.483,-5152.73)
-Point[4] Position= (-943.403,-495.01,-5151.72)
-Point[5] Position= (-943.489,-494.972,-5151.97)
+Original momentum : -47.4204 -34.0738 2.51908 keV
+Vertex : -1.46887 0.986837 44.2288 cm   Global time : 1.47654 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-14.6887,9.86837,442.288)
+Point[1] Position= (-14.8247,9.77065,442.295)
 
-TrackID =1180 : ParentID=1176 : TrackStatus=1
+TrackID =1112 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -48.186 -14.1983 -13.4923 keV
-Vertex : -0.943455 -0.492576 -5.15373 m    Global time : 20.1629 ns 
+Original momentum : 40.9714 -4.18083 3.12213 keV
+Vertex : -1.4505 0.9745 43.6756 cm   Global time : 1.45807 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-943.455,-492.576,-5153.73)
-Point[1] Position= (-943.559,-492.607,-5153.76)
+Point[0] Position= (-14.505,9.745,436.756)
+Point[1] Position= (-14.4532,9.73971,436.759)
 
-TrackID =1175 : ParentID=1152 : TrackStatus=1
+TrackID =1111 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.564525 -42.4174 36.6334 keV
-Vertex : -0.938136 -0.493078 -5.15858 m    Global time : 20.0831 ns 
+Original momentum : -28.9665 20.6786 -0.184398 keV
+Vertex : -1.02347 0.687756 30.8195 cm   Global time : 1.02888 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-938.136,-493.078,-5158.58)
-Point[1] Position= (-938.137,-493.188,-5158.49)
+Point[0] Position= (-10.2347,6.87756,308.195)
+Point[1] Position= (-10.261,6.89636,308.195)
 
-TrackID =1174 : ParentID=1152 : TrackStatus=1
+TrackID =1110 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.7827 17.3929 -25.5401 keV
-Vertex : -0.934766 -0.493898 -5.16309 m    Global time : 20.0435 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-934.766,-493.898,-5163.09)
-Point[1] Position= (-934.81,-493.873,-5163.13)
+Original momentum : -40.7188 72.2547 3.74162 keV
+Vertex : -0.806837 0.542184 24.2954 cm   Global time : 811.081 ps 
+  Current trajectory has 3 points.
+Point[0] Position= (-8.06837,5.42184,242.954)
+Point[1] Position= (-8.3453,5.91326,242.98)
+Point[2] Position= (-8.34093,5.95139,242.96)
 
-TrackID =1173 : ParentID=1152 : TrackStatus=1
+TrackID =1188 : ParentID=1110 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.1665 17.5675 0.519014 keV
-Vertex : -0.892683 -0.538251 -5.14353 m    Global time : 19.6135 ns 
+Original momentum : -7.75233 -14.3711 -28.9346 keV
+Vertex : -0.83453 0.591326 24.298 cm   Global time : 822.826 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-892.683,-538.251,-5143.53)
-Point[1] Position= (-892.637,-538.229,-5143.53)
+Point[0] Position= (-8.3453,5.91326,242.98)
+Point[1] Position= (-8.35137,5.90201,242.957)
 
-TrackID =1172 : ParentID=1152 : TrackStatus=1
+TrackID =1109 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.88244 -35.0605 -7.42513 keV
-Vertex : -0.870956 -0.539727 -5.14091 m    Global time : 19.4845 ns 
+Original momentum : -77.1062 -22.0554 4.20893 keV
+Vertex : -0.764525 0.513748 23.0213 cm   Global time : 768.545 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-870.956,-539.727,-5140.91)
-Point[1] Position= (-870.958,-539.76,-5140.92)
+Point[0] Position= (-7.64525,5.13748,230.213)
+Point[1] Position= (-8.13623,4.99704,230.24)
 
-TrackID =1171 : ParentID=1152 : TrackStatus=1
+TrackID =1108 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.93597 -32.3642 -21.7167 keV
-Vertex : -0.855446 -0.540416 -5.14236 m    Global time : 19.3946 ns 
+Original momentum : 32.1366 -7.03444 2.28785 keV
+Vertex : -0.643918 0.432697 19.3893 cm   Global time : 647.293 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-855.446,-540.416,-5142.36)
-Point[1] Position= (-855.45,-540.453,-5142.38)
+Point[0] Position= (-6.43918,4.32697,193.893)
+Point[1] Position= (-6.41442,4.32155,193.894)
 
-TrackID =1170 : ParentID=1152 : TrackStatus=1
+TrackID =1107 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.3768 11.4178 -16.7665 keV
-Vertex : -0.821313 -0.520751 -5.09149 m    Global time : 18.9995 ns 
+Original momentum : 4.7792 38.8168 0.788582 keV
+Vertex : -0.480899 0.323111 14.4792 cm   Global time : 483.377 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-821.313,-520.751,-5091.49)
-Point[1] Position= (-821.266,-520.736,-5091.51)
+Point[0] Position= (-4.80899,3.23111,144.792)
+Point[1] Position= (-4.80364,3.27459,144.793)
 
-TrackID =1169 : ParentID=1152 : TrackStatus=1
+TrackID =1106 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.7093 10.3319 -41.0099 keV
-Vertex : -0.769729 -0.48807 -5.11052 m    Global time : 18.6711 ns 
+Original momentum : -37.8403 -40.0407 2.60712 keV
+Vertex : -0.31316 0.210372 9.42822 cm   Global time : 314.753 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-769.729,-488.07,-5110.52)
-Point[1] Position= (-769.77,-488.051,-5110.6)
+Point[0] Position= (-3.1316,2.10372,94.2822)
+Point[1] Position= (-3.22577,2.00407,94.2886)
 
-TrackID =1168 : ParentID=1152 : TrackStatus=1
+TrackID =1105 : ParentID=1104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.626188 16.5162 32.2272 keV
-Vertex : -0.76462 -0.485621 -5.11177 m    Global time : 18.6415 ns 
+Original momentum : -33.5865 -63.0674 5.29397 keV
+Vertex : -0.287498 0.19304 8.65302 mm   Global time : 28.8874 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-764.62,-485.621,-5111.77)
-Point[1] Position= (-764.621,-485.605,-5111.74)
+Point[0] Position= (-0.287498,0.19304,8.65302)
+Point[1] Position= (-0.447549,-0.107497,8.67825)
 
-TrackID =1167 : ParentID=1152 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.88462 -49.4463 -7.27951 keV
-Vertex : -0.732777 -0.486374 -5.11516 m    Global time : 18.481 ns 
+TrackID =1102 : ParentID=55 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : 99.5129 -34.8647 658.178 MeV
+Vertex : 1.85697 -0.362544 7.58253 nm   Global time : 2.63546e-05 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-732.777,-486.374,-5115.16)
-Point[1] Position= (-732.783,-486.471,-5115.18)
+Point[0] Position= (1.85697e-06,-3.62544e-07,7.58253e-06)
+Point[1] Position= (907.168,-317.83,6000)
 
-TrackID =1166 : ParentID=1152 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.64131 -72.4638 -62.1687 keV
-Vertex : -0.684371 -0.485683 -5.11763 m    Global time : 18.2446 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-684.371,-485.683,-5117.63)
-Point[1] Position= (-684.422,-486.343,-5118.19)
-Point[2] Position= (-684.396,-486.453,-5118.21)
+TrackID =1100 : ParentID=1037 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : -0.234866 -0.32985 1.71694 GeV
+Vertex : -100.985 -113.853 676.747 nm   Global time : 0.00231884 ps 
+  Current trajectory has 4 points.
+Point[0] Position= (-0.000100985,-0.000113853,0.000676747)
+Point[1] Position= (-116.005,-162.92,848.03)
+Point[2] Position= (-136.794,-192.115,1000)
+Point[3] Position= (-820.761,-1152.69,6000)
 
-TrackID =1181 : ParentID=1166 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.8707 7.33891 24.3435 keV
-Vertex : -0.684422 -0.486343 -5.11819 m    Global time : 18.2604 ns 
+TrackID =1099 : ParentID=1037 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : -61.5268 -4.31085 269.324 MeV
+Vertex : -100.985 -113.853 676.747 nm   Global time : 0.00231884 ps 
+  Current trajectory has 4 points.
+Point[0] Position= (-0.000100985,-0.000113853,0.000676747)
+Point[1] Position= (-199.511,-13.9787,873.328)
+Point[2] Position= (-228.449,-16.0063,1000)
+Point[3] Position= (-1370.69,-96.037,6000)
+
+TrackID =1103 : ParentID=54 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : 0.0210353 -0.29235 10.3934 GeV
+Vertex : -3.18021e-295 9.23194e-297 2.00079e-293 fm   Global time : 8.62177e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-684.422,-486.343,-5118.19)
-Point[1] Position= (-684.327,-486.328,-5118.14)
+Point[0] Position= (-3.18021e-307,9.23194e-309,2.00079e-305)
+Point[1] Position= (4.08479e-07,-5.67707e-06,0.000201827)
 
-TrackID =1165 : ParentID=1152 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.40666 -11.3144 -48.7364 keV
-Vertex : -0.684115 -0.485626 -5.11762 m    Global time : 18.2433 ns 
+TrackID =53 : ParentID=45 : TrackStatus=1
+Particle name : eta  PDG code : 221  Charge : 0
+Original momentum : -0.0523895 -0.289938 -1.59192 GeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-684.115,-485.626,-5117.62)
-Point[1] Position= (-684.11,-485.649,-5117.72)
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (-1.84053e-307,-2.39049e-308,1.32962e-305)
 
-TrackID =1164 : ParentID=1152 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 5.42285 -28.9776 -20.049 keV
-Vertex : -0.672821 -0.483857 -5.11684 m    Global time : 18.1886 ns 
+TrackID =1193 : ParentID=53 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : -125.935 -39.3921 -610.417 MeV
+Vertex : -1.84053e-295 -2.39049e-296 1.32962e-293 fm   Global time : 6.41087e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-672.821,-483.857,-5116.84)
-Point[1] Position= (-672.816,-483.884,-5116.85)
+Point[0] Position= (-1.84053e-307,-2.39049e-308,1.32962e-305)
+Point[1] Position= (-2.39463e-06,-7.49032e-07,-1.16069e-05)
 
-TrackID =1151 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.9211 52.7079 -10.3192 keV
-Vertex : -0.663978 -0.482056 -5.1021 m    Global time : 18.1083 ns 
+TrackID =1192 : ParentID=53 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : -58.8615 -64.2144 -385.127 MeV
+Vertex : -1.84053e-295 -2.39049e-296 1.32962e-293 fm   Global time : 6.41087e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-663.978,-482.056,-5102.1)
-Point[1] Position= (-663.937,-481.919,-5102.12)
+Point[0] Position= (-1.84053e-307,-2.39049e-308,1.32962e-305)
+Point[1] Position= (-3.08849e-06,-3.36936e-06,-2.02078e-05)
 
-TrackID =1150 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -17.6788 -37.6906 4.04829 keV
-Vertex : -0.653491 -0.474433 -5.02153 m    Global time : 17.8224 ns 
+TrackID =1191 : ParentID=53 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : 132.396 -186.387 -596.68 MeV
+Vertex : -1.84053e-295 -2.39049e-296 1.32962e-293 fm   Global time : 6.41087e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-653.491,-474.433,-5021.53)
-Point[1] Position= (-653.514,-474.482,-5021.53)
+Point[0] Position= (-1.84053e-307,-2.39049e-308,1.32962e-305)
+Point[1] Position= (1.37197e-05,-1.93146e-05,-6.18315e-05)
 
-TrackID =1149 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.1809 -40.7445 4.40071 keV
-Vertex : -0.653292 -0.474288 -5.02001 m    Global time : 17.817 ns 
+TrackID =52 : ParentID=45 : TrackStatus=1
+Particle name : unknown : rho+  PDG code : 213  Charge : 1
+Original momentum : 0.123192 -0.0912588 -1.30392 GeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-653.292,-474.288,-5020.01)
-Point[1] Position= (-653.326,-474.354,-5020)
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (4.43257e-307,-4.79843e-307,6.71372e-306)
 
-TrackID =1148 : ParentID=1086 : TrackStatus=1
+TrackID =1217 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.154 31.5221 -5.94667 keV
-Vertex : -0.649033 -0.471192 -4.98729 m    Global time : 17.7009 ns 
+Original momentum : -26.2848 -18.3394 -22.8976 keV
+Vertex : 11.7088 47.9938 -58.8599 cm   Global time : 3.1776 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-649.033,-471.192,-4987.29)
-Point[1] Position= (-649.022,-471.165,-4987.3)
+Point[0] Position= (117.088,479.938,-588.599)
+Point[1] Position= (117.067,479.923,-588.617)
 
-TrackID =1147 : ParentID=1086 : TrackStatus=1
+TrackID =1216 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.3359 -39.3469 0.495503 keV
-Vertex : -0.583742 -0.423791 -4.48575 m    Global time : 15.9208 ns 
+Original momentum : 41.8346 -9.94029 -2.70607 keV
+Vertex : 9.92508 40.6553 -49.9305 cm   Global time : 2.69389 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-583.742,-423.791,-4485.75)
-Point[1] Position= (-583.728,-423.84,-4485.75)
+Point[0] Position= (99.2508,406.553,-499.305)
+Point[1] Position= (99.2905,406.544,-499.308)
 
-TrackID =1146 : ParentID=1086 : TrackStatus=1
+TrackID =1215 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.741605 -32.1342 2.04998 keV
-Vertex : -0.579791 -0.420927 -4.4554 m    Global time : 15.813 ns 
+Original momentum : -21.6407 -19.1013 -22.0724 keV
+Vertex : 9.83874 40.3022 -49.4995 cm   Global time : 2.67057 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-579.791,-420.927,-4455.4)
-Point[1] Position= (-579.792,-420.95,-4455.4)
+Point[0] Position= (98.3874,403.022,-494.995)
+Point[1] Position= (98.3725,403.009,-495.01)
 
-TrackID =1145 : ParentID=1086 : TrackStatus=1
+TrackID =1214 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.084 -15.2572 -4.67098 keV
-Vertex : -0.553425 -0.401814 -4.25285 m    Global time : 15.0941 ns 
+Original momentum : -48.1862 -4.08359 -17.1629 keV
+Vertex : 8.7676 35.9 -44.1255 cm   Global time : 2.37986 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-553.425,-401.814,-4252.85)
-Point[1] Position= (-553.387,-401.831,-4252.85)
+Point[0] Position= (87.676,359,-441.255)
+Point[1] Position= (87.6105,358.994,-441.278)
 
-TrackID =1144 : ParentID=1086 : TrackStatus=1
+TrackID =1213 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.298563 -39.2729 2.13727 keV
-Vertex : -0.53093 -0.3855 -4.07993 m    Global time : 14.4804 ns 
+Original momentum : 20.9532 43.9888 34.4925 keV
+Vertex : 7.12173 29.1772 -35.903 cm   Global time : 1.93538 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-530.93,-385.5,-4079.93)
-Point[1] Position= (-530.931,-385.544,-4079.92)
+Point[0] Position= (71.2173,291.772,-359.03)
+Point[1] Position= (71.2567,291.855,-358.965)
 
-TrackID =1143 : ParentID=1086 : TrackStatus=1
+TrackID =1212 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.3959 -46.2524 3.57974 keV
-Vertex : -0.514682 -0.373715 -3.955 m    Global time : 14.037 ns 
+Original momentum : 31.56 2.29062 6.5052 keV
+Vertex : 6.07547 24.8921 -30.65 cm   Global time : 1.65171 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-514.682,-373.715,-3955)
-Point[1] Position= (-514.704,-373.797,-3954.99)
+Point[0] Position= (60.7547,248.921,-306.5)
+Point[1] Position= (60.7721,248.922,-306.496)
 
-TrackID =1142 : ParentID=1086 : TrackStatus=1
+TrackID =1211 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.3873 -2.80532 3.79605 keV
-Vertex : -0.510827 -0.370918 -3.92534 m    Global time : 13.9318 ns 
+Original momentum : -45.6655 -11.968 -23.1636 keV
+Vertex : 5.52332 22.637 -27.8779 cm   Global time : 1.50218 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-510.827,-370.918,-3925.34)
-Point[1] Position= (-510.876,-370.921,-3925.34)
+Point[0] Position= (55.2332,226.37,-278.779)
+Point[1] Position= (55.1677,226.352,-278.812)
 
-TrackID =1141 : ParentID=1086 : TrackStatus=1
+TrackID =1210 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -18.0313 -40.5362 4.10624 keV
-Vertex : -0.507799 -0.368721 -3.90205 m    Global time : 13.8491 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-507.799,-368.721,-3902.05)
-Point[1] Position= (-507.826,-368.781,-3902.05)
+Original momentum : 53.6477 -47.3105 -38.0027 keV
+Vertex : 5.50431 22.5594 -27.7823 cm   Global time : 1.49703 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (55.0431,225.594,-277.823)
+Point[1] Position= (55.244,225.417,-277.965)
+Point[2] Position= (55.2118,225.391,-277.951)
 
-TrackID =1140 : ParentID=1086 : TrackStatus=1
+TrackID =1209 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.0586 50.9425 -5.16918 keV
-Vertex : -0.497315 -0.361111 -3.82142 m    Global time : 13.5629 ns 
+Original momentum : 50.2028 24.3759 23.9638 keV
+Vertex : 5.42094 22.2199 -27.3637 cm   Global time : 1.47447 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-497.315,-361.111,-3821.42)
-Point[1] Position= (-497.371,-360.981,-3821.43)
+Point[0] Position= (54.2094,222.199,-273.637)
+Point[1] Position= (54.3072,222.247,-273.59)
 
-TrackID =1139 : ParentID=1086 : TrackStatus=1
+TrackID =1208 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.2765 -138.628 -3.35304 keV
-Vertex : -0.493885 -0.358619 -3.79503 m    Global time : 13.4693 ns 
-  Current trajectory has 6 points.
-Point[0] Position= (-493.885,-358.619,-3795.03)
-Point[1] Position= (-493.942,-358.855,-3795.03)
-Point[2] Position= (-494.787,-361.24,-3795.09)
-Point[3] Position= (-496.004,-361.795,-3794.01)
-Point[4] Position= (-496.385,-361.854,-3794.69)
-Point[5] Position= (-496.42,-361.935,-3794.53)
+Original momentum : 127.515 174.07 85.654 keV
+Vertex : 5.38563 22.0764 -27.1868 cm   Global time : 1.46494 ns 
+  Current trajectory has 12 points.
+Point[0] Position= (53.8563,220.764,-271.868)
+Point[1] Position= (54.4818,222.927,-271.407)
+Point[2] Position= (56.1837,224.142,-269.955)
+Point[3] Position= (56.8842,224.445,-269.887)
+Point[4] Position= (61.658,225.4,-263.6)
+Point[5] Position= (66.3387,223.521,-264.78)
+Point[6] Position= (67.9039,222.746,-269.301)
+Point[7] Position= (66.7848,220.93,-270.021)
+Point[8] Position= (67.5194,221.305,-271.495)
+Point[9] Position= (68.2878,221.426,-271.777)
+Point[10] Position= (68.263,221.124,-271.901)
+Point[11] Position= (68.2677,221.14,-271.902)
 
-TrackID =1182 : ParentID=1139 : TrackStatus=1
+TrackID =1221 : ParentID=1208 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.6938 -27.8979 -19.5823 keV
-Vertex : -0.496385 -0.361854 -3.79469 m    Global time : 13.5437 ns 
+Original momentum : -6.61868 -36.4556 -34.3929 keV
+Vertex : 6.75194 22.1305 -27.1495 cm   Global time : 1.67694 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-496.385,-361.854,-3794.69)
-Point[1] Position= (-496.417,-361.891,-3794.71)
+Point[0] Position= (67.5194,221.305,-271.495)
+Point[1] Position= (67.5107,221.257,-271.54)
 
-TrackID =1138 : ParentID=1086 : TrackStatus=1
+TrackID =1220 : ParentID=1208 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -284.13 91.5646 -61.0278 keV
-Vertex : -0.490108 -0.355872 -3.76597 m    Global time : 13.3661 ns 
-  Current trajectory has 18 points.
-Point[0] Position= (-490.108,-355.872,-3765.97)
-Point[1] Position= (-503.699,-351.492,-3768.89)
-Point[2] Position= (-514.427,-346.495,-3769.87)
-Point[3] Position= (-513.821,-344.552,-3769.01)
-Point[4] Position= (-513.34,-343.406,-3768.25)
-Point[5] Position= (-510.349,-334.914,-3762.79)
-Point[6] Position= (-501.901,-327.533,-3761.46)
-Point[7] Position= (-499.339,-325.281,-3757.64)
-Point[8] Position= (-499.329,-325.258,-3757.59)
-Point[9] Position= (-498.679,-322.974,-3750.56)
-Point[10] Position= (-494.381,-322.108,-3746.34)
-Point[11] Position= (-492.744,-321.925,-3741.47)
-Point[12] Position= (-490.64,-325.346,-3741.14)
-Point[13] Position= (-489.792,-328.349,-3741.33)
-Point[14] Position= (-487.522,-329.189,-3741.76)
-Point[15] Position= (-485.82,-329.152,-3742.41)
-Point[16] Position= (-486.745,-329.751,-3742.97)
-Point[17] Position= (-486.634,-329.946,-3743.15)
+Original momentum : -16.3645 24.1666 25.2697 keV
+Vertex : 5.68842 22.4445 -26.9887 cm   Global time : 1.50799 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (56.8842,224.445,-269.887)
+Point[1] Position= (56.8715,224.464,-269.867)
 
-TrackID =1189 : ParentID=1138 : TrackStatus=1
+TrackID =1219 : ParentID=1208 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.3102 23.0114 -9.14249 keV
-Vertex : -0.499329 -0.325258 -3.75759 m    Global time : 13.7778 ns 
+Original momentum : -21.4514 43.706 -17.3183 keV
+Vertex : 5.61837 22.4142 -26.9955 cm   Global time : 1.5014 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-499.329,-325.258,-3757.59)
-Point[1] Position= (-499.314,-325.241,-3757.6)
+Point[0] Position= (56.1837,224.142,-269.955)
+Point[1] Position= (56.1541,224.203,-269.978)
 
-TrackID =1188 : ParentID=1138 : TrackStatus=1
+TrackID =1218 : ParentID=1208 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.9953 -33.1171 11.2029 keV
-Vertex : -0.499339 -0.325281 -3.75764 m    Global time : 13.7773 ns 
+Original momentum : 36.4142 11.5315 -34.3099 keV
+Vertex : 5.44818 22.2927 -27.1407 cm   Global time : 1.48216 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-499.339,-325.281,-3757.64)
-Point[1] Position= (-499.297,-325.332,-3757.62)
+Point[0] Position= (54.4818,222.927,-271.407)
+Point[1] Position= (54.5314,222.943,-271.454)
 
-TrackID =1187 : ParentID=1138 : TrackStatus=1
+TrackID =1207 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.0626 15.254 40.7529 keV
-Vertex : -0.510349 -0.334914 -3.76279 m    Global time : 13.6467 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-510.349,-334.914,-3762.79)
-Point[1] Position= (-510.383,-334.887,-3762.71)
+Original momentum : -49.0604 8.12065 -7.19309 keV
+Vertex : 5.25073 21.5293 -26.5137 cm   Global time : 1.42865 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (52.5073,215.293,-265.137)
+Point[1] Position= (52.4444,215.304,-265.147)
+Point[2] Position= (52.4486,215.299,-265.144)
 
-TrackID =1186 : ParentID=1138 : TrackStatus=1
+TrackID =1206 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 45.1707 -14.7301 -0.808465 keV
-Vertex : -0.51334 -0.343406 -3.76825 m    Global time : 13.5691 ns 
+Original momentum : -7.81754 51.7768 34.378 keV
+Vertex : 3.99027 16.3596 -20.1533 cm   Global time : 1.08577 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-513.34,-343.406,-3768.25)
-Point[1] Position= (-513.261,-343.432,-3768.25)
+Point[0] Position= (39.9027,163.596,-201.533)
+Point[1] Position= (39.8761,163.772,-201.416)
 
-TrackID =1185 : ParentID=1138 : TrackStatus=1
+TrackID =1205 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.6099 23.6659 -22.4905 keV
-Vertex : -0.513821 -0.344552 -3.76901 m    Global time : 13.5586 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-513.821,-344.552,-3769.01)
-Point[1] Position= (-513.841,-344.527,-3769.04)
+Original momentum : 16.9927 37.2143 29.5434 keV
+Vertex : 3.13504 12.846 -15.8301 cm   Global time : 852.735 ps 
+  Current trajectory has 3 points.
+Point[0] Position= (31.3504,128.46,-158.301)
+Point[1] Position= (31.3769,128.518,-158.255)
+Point[2] Position= (31.4101,128.533,-158.235)
 
-TrackID =1184 : ParentID=1138 : TrackStatus=1
+TrackID =1204 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.2846 13.0714 -1.50493 keV
-Vertex : -0.514427 -0.346495 -3.76987 m    Global time : 13.5428 ns 
+Original momentum : 16.3271 -24.5411 -18.6353 keV
+Vertex : 2.75796 11.295 -13.9203 cm   Global time : 749.826 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-514.427,-346.495,-3769.87)
-Point[1] Position= (-514.474,-346.48,-3769.88)
+Point[0] Position= (27.5796,112.95,-139.203)
+Point[1] Position= (27.5938,112.928,-139.219)
 
-TrackID =1183 : ParentID=1138 : TrackStatus=1
+TrackID =1203 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.3335 -57.2521 5.64942 keV
-Vertex : -0.503699 -0.351492 -3.76889 m    Global time : 13.461 ns 
+Original momentum : 16.6767 21.7283 19.1862 keV
+Vertex : 2.2479 9.19367 -11.3334 cm   Global time : 610.434 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-503.699,-351.492,-3768.89)
-Point[1] Position= (-503.801,-351.699,-3768.87)
+Point[0] Position= (22.479,91.9367,-113.334)
+Point[1] Position= (22.4922,91.954,-113.319)
 
-TrackID =1137 : ParentID=1086 : TrackStatus=1
+TrackID =1202 : ParentID=1201 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.63327 33.2025 -3.13558 keV
-Vertex : -0.474116 -0.344257 -3.64302 m    Global time : 12.9298 ns 
+Original momentum : -57.6339 4.01656 -13.7517 keV
+Vertex : 1.58963 6.49834 -8.01312 cm   Global time : 431.544 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-474.116,-344.257,-3643.02)
-Point[1] Position= (-474.124,-344.228,-3643.02)
+Point[0] Position= (15.8963,64.9834,-80.1312)
+Point[1] Position= (15.7244,64.9954,-80.1723)
+
+TrackID =1197 : ParentID=1192 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : 20.0191 6.37462 -3.54714 MeV
+Vertex : -3.08849 -3.36936 -20.2078 nm   Global time : 7.30378e-05 ps 
+  Current trajectory has 4 points.
+Point[0] Position= (-3.08849e-06,-3.36936e-06,-2.02078e-05)
+Point[1] Position= (190.572,60.6833,-33.767)
+Point[2] Position= (238.215,75.8541,-42.2088)
+Point[3] Position= (242.216,77.1282,-42.9177)
 
-TrackID =1136 : ParentID=1086 : TrackStatus=1
+TrackID =1222 : ParentID=1197 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.39824 31.5317 -4.48675 keV
-Vertex : -0.464122 -0.337003 -3.56622 m    Global time : 12.6572 ns 
+Original momentum : 4.342 1.58012 -0.897447 MeV
+Vertex : 24.2216 7.71282 -4.29177 cm   Global time : 859.917 ps 
+  Current trajectory has 18 points.
+Point[0] Position= (242.216,77.1282,-42.9177)
+Point[1] Position= (242.969,77.4023,-43.0734)
+Point[2] Position= (263.919,91.1035,-49.3055)
+Point[3] Position= (282.017,102.305,-54.4466)
+Point[4] Position= (283.29,103.311,-55.8091)
+Point[5] Position= (285.016,103.871,-55.9628)
+Point[6] Position= (286.295,104.399,-56.3256)
+Point[7] Position= (286.527,104.533,-56.3802)
+Point[8] Position= (315.675,111.812,-55.4784)
+Point[9] Position= (330.614,114.867,-55.8135)
+Point[10] Position= (330.908,114.845,-55.8011)
+Point[11] Position= (331.205,114.745,-55.7117)
+Point[12] Position= (331.528,114.791,-55.6505)
+Point[13] Position= (331.819,114.708,-55.6118)
+Point[14] Position= (332.104,114.562,-55.5719)
+Point[15] Position= (332.424,114.685,-55.4341)
+Point[16] Position= (333.029,114.692,-55.491)
+Point[17] Position= (333.094,114.632,-55.5264)
+
+TrackID =1226 : ParentID=1222 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 3.004 -4.68348 38.1509 keV
+Vertex : 31.5675 11.1812 -5.54784 cm   Global time : 1.1432 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (315.675,111.812,-55.4784)
+Point[1] Position= (315.677,111.809,-55.4488)
+
+TrackID =1224 : ParentID=1222 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -23.3727 42.313 1.29178 keV
+Vertex : 26.3919 9.11035 -4.93055 cm   Global time : 949.273 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (263.919,91.1035,-49.3055)
+Point[1] Position= (263.891,91.1541,-49.3039)
+
+TrackID =1227 : ParentID=1225 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 16.9094 -12.0357 -9.65891 keV
+Vertex : 36.0727 18.0727 -7.88858 cm   Global time : 1.40321 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (360.727,180.727,-78.8858)
+Point[1] Position= (360.727,180.727,-78.8858)
+
+TrackID =1194 : ParentID=1193 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : -61.3794 -82.887 -434.451 MeV
+Vertex : -2.39463 -0.749032 -11.6069 nm   Global time : 4.05262e-05 ps 
+  Current trajectory has 4 points.
+Point[0] Position= (-2.39463e-06,-7.49032e-07,-1.16069e-05)
+Point[1] Position= (-119.022,-160.729,-842.456)
+Point[2] Position= (-141.28,-190.786,-1000)
+Point[3] Position= (-847.682,-1144.71,-6000)
+
+TrackID =1190 : ParentID=1103 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : 0.0303631 -0.121129 6.54372 GeV
+Vertex : 0.408479 -5.67707 201.827 nm   Global time : 0.000673548 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-464.122,-337.003,-3566.22)
-Point[1] Position= (-464.12,-336.98,-3566.23)
+Point[0] Position= (4.08479e-07,-5.67707e-06,0.000201827)
+Point[1] Position= (27.8402,-111.064,6000)
 
-TrackID =1135 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.4933 -7.79009 3.96545 keV
-Vertex : -0.46191 -0.335397 -3.54922 m    Global time : 12.5968 ns 
+TrackID =1189 : ParentID=1103 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : -0.00932788 -0.171221 3.84967 GeV
+Vertex : 0.408479 -5.67707 201.827 nm   Global time : 0.000673548 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-461.91,-335.397,-3549.22)
-Point[1] Position= (-461.944,-335.405,-3549.22)
+Point[0] Position= (4.08479e-07,-5.67707e-06,0.000201827)
+Point[1] Position= (-4.61004,-84.6211,1902.59)
 
-TrackID =1134 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -93.7701 64.6507 -7.29751 keV
-Vertex : -0.457657 -0.332311 -3.51654 m    Global time : 12.4808 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (-457.657,-332.311,-3516.54)
-Point[1] Position= (-458.885,-331.464,-3516.63)
-Point[2] Position= (-459.391,-331.778,-3517.19)
-Point[3] Position= (-459.441,-331.73,-3517.33)
-Point[4] Position= (-459.46,-331.728,-3517.32)
+TrackID =1229 : ParentID=1189 : TrackStatus=1
+Particle name : e+  PDG code : -11  Charge : 1
+Original momentum : -0.00511787 -0.10314 2.34556 GeV
+Vertex : -0.00461004 -0.0846211 1.90259 m    Global time : 6.35266 ns 
+  Current trajectory has 42 points.
+Point[0] Position= (-4.61004,-84.6211,1902.59)
+Point[1] Position= (-4.88919,-90.2844,2031.55)
+Point[2] Position= (-5.22917,-97.0916,2186.88)
+Point[3] Position= (-5.27553,-98.0356,2208.38)
+Point[4] Position= (-5.62822,-104.909,2365.18)
+Point[5] Position= (-5.74346,-107.16,2416.62)
+Point[6] Position= (-5.74836,-107.256,2418.82)
+Point[7] Position= (-5.89683,-110.189,2485.73)
+Point[8] Position= (-5.91467,-110.548,2493.95)
+Point[9] Position= (-6.03367,-112.917,2548)
+Point[10] Position= (-6.13537,-114.913,2593.54)
+Point[11] Position= (-6.51156,-122.547,2767.53)
+Point[12] Position= (-6.81306,-128.646,2906.44)
+Point[13] Position= (-6.98055,-132.079,2984.75)
+Point[14] Position= (-7.08511,-134.234,3033.82)
+Point[15] Position= (-7.27214,-137.938,3118.34)
+Point[16] Position= (-7.57498,-143.927,3255.2)
+Point[17] Position= (-8.39567,-159.728,3617.51)
+Point[18] Position= (-8.96644,-170.73,3870.79)
+Point[19] Position= (-9.54415,-181.653,4122.56)
+Point[20] Position= (-10.1848,-193.966,4406.83)
+Point[21] Position= (-10.2289,-194.798,4426.08)
+Point[22] Position= (-10.8952,-207.58,4722.07)
+Point[23] Position= (-10.9485,-208.631,4746.4)
+Point[24] Position= (-11.044,-210.544,4790.68)
+Point[25] Position= (-11.0694,-211.06,4802.64)
+Point[26] Position= (-11.1223,-212.139,4827.63)
+Point[27] Position= (-11.1955,-213.618,4861.86)
+Point[28] Position= (-11.7435,-224.622,5116.54)
+Point[29] Position= (-11.8395,-226.448,5158.85)
+Point[30] Position= (-11.8634,-226.917,5169.71)
+Point[31] Position= (-11.9387,-228.361,5203.2)
+Point[32] Position= (-12.1973,-233.201,5315.42)
+Point[33] Position= (-12.3912,-236.749,5397.77)
+Point[34] Position= (-12.4002,-236.916,5401.64)
+Point[35] Position= (-12.5138,-238.954,5448.96)
+Point[36] Position= (-12.5536,-239.671,5465.62)
+Point[37] Position= (-13.032,-248.312,5666.77)
+Point[38] Position= (-13.2954,-253.073,5777.75)
+Point[39] Position= (-13.5142,-257.077,5871)
+Point[40] Position= (-13.5371,-257.497,5880.77)
+Point[41] Position= (-13.8157,-262.628,6000)
+
+TrackID =1200 : ParentID=52 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : 56.967 -182.503 -764.313 MeV
+Vertex : 4.43257e-295 -4.79843e-295 6.71372e-294 fm   Global time : 8.76574e-305 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (4.43257e-307,-4.79843e-307,6.71372e-306)
+Point[1] Position= (1.14168e-06,-3.65755e-06,-1.53176e-05)
 
-TrackID =1133 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -83.6583 -48.2618 5.78637 keV
-Vertex : -0.447646 -0.32505 -3.43961 m    Global time : 12.2078 ns 
+TrackID =51 : ParentID=45 : TrackStatus=1
+Particle name : unknown : rho-  PDG code : -213  Charge : -1
+Original momentum : 0.177917 -0.04267 -6.1605 GeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (9.90814e-309,-6.2358e-308,6.67102e-306)
+
+TrackID =1278 : ParentID=51 : TrackStatus=1
+Particle name : pi-  PDG code : -211  Charge : -1
+Original momentum : 0.266364 -0.263612 -4.01216 GeV
+Vertex : 9.90814e-297 -6.2358e-296 6.67102e-294 fm   Global time : 8.63505e-305 ps 
+  Current trajectory has 50 points.
+Point[0] Position= (9.90814e-309,-6.2358e-308,6.67102e-306)
+Point[1] Position= (22.4583,-22.2267,-338.236)
+Point[2] Position= (23.2252,-22.9845,-349.778)
+Point[3] Position= (44.5925,-44.1098,-671.41)
+Point[4] Position= (53.6217,-53.0311,-807.295)
+Point[5] Position= (53.6663,-53.0751,-807.965)
+Point[6] Position= (55.2295,-54.6183,-831.488)
+Point[7] Position= (62.7148,-62.0088,-944.13)
+Point[8] Position= (70.9694,-70.1608,-1068.39)
+Point[9] Position= (80.2228,-79.2825,-1207.68)
+Point[10] Position= (91.552,-90.4531,-1378.2)
+Point[11] Position= (99.2261,-98.0223,-1493.78)
+Point[12] Position= (99.6107,-98.4018,-1499.57)
+Point[13] Position= (106.776,-105.47,-1607.57)
+Point[14] Position= (116.316,-114.886,-1751.33)
+Point[15] Position= (120.709,-119.225,-1817.56)
+Point[16] Position= (127.696,-126.124,-1922.86)
+Point[17] Position= (140.615,-138.89,-2117.76)
+Point[18] Position= (164.356,-162.363,-2476.52)
+Point[19] Position= (188.609,-186.393,-2843.66)
+Point[20] Position= (189.88,-187.652,-2862.92)
+Point[21] Position= (196.167,-193.88,-2958.24)
+Point[22] Position= (201.516,-199.167,-3039.34)
+Point[23] Position= (209.578,-207.138,-3161.69)
+Point[24] Position= (215.12,-212.617,-3245.76)
+Point[25] Position= (216.589,-214.069,-3268.06)
+Point[26] Position= (225.198,-222.576,-3398.64)
+Point[27] Position= (226.914,-224.272,-3424.68)
+Point[28] Position= (249.877,-246.958,-3773.25)
+Point[29] Position= (258.992,-255.968,-3911.67)
+Point[30] Position= (262.327,-259.264,-3962.31)
+Point[31] Position= (273.891,-270.684,-4137.76)
+Point[32] Position= (279.588,-276.307,-4224.22)
+Point[33] Position= (280.227,-276.938,-4233.92)
+Point[34] Position= (300.444,-296.858,-4540.45)
+Point[35] Position= (303.012,-299.384,-4579.38)
+Point[36] Position= (308.488,-304.765,-4662.34)
+Point[37] Position= (310.347,-306.59,-4690.48)
+Point[38] Position= (313.24,-309.43,-4734.3)
+Point[39] Position= (326.632,-322.566,-4937.08)
+Point[40] Position= (329.526,-325.406,-4980.93)
+Point[41] Position= (332.175,-328.007,-5021.09)
+Point[42] Position= (333.363,-329.173,-5039.1)
+Point[43] Position= (379.271,-374.305,-5734.84)
+Point[44] Position= (379.606,-374.634,-5739.91)
+Point[45] Position= (390.19,-385.021,-5900.29)
+Point[46] Position= (390.718,-385.539,-5908.3)
+Point[47] Position= (390.927,-385.744,-5911.46)
+Point[48] Position= (395.498,-390.227,-5980.71)
+Point[49] Position= (396.771,-391.476,-6000)
+
+TrackID =1326 : ParentID=1278 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 59.4074 -34.0606 1.53402 keV
+Vertex : 0.395498 -0.390227 -5.98071 m    Global time : 20.0474 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-447.646,-325.05,-3439.61)
-Point[1] Position= (-448.469,-325.525,-3439.55)
-Point[2] Position= (-448.477,-325.653,-3439.68)
+Point[0] Position= (395.498,-390.227,-5980.71)
+Point[1] Position= (395.7,-390.343,-5980.71)
+Point[2] Position= (395.689,-390.304,-5980.6)
 
-TrackID =1132 : ParentID=1086 : TrackStatus=1
+TrackID =1325 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.1669 15.0162 1.57683 keV
-Vertex : -0.443473 -0.322021 -3.40755 m    Global time : 12.094 ns 
+Original momentum : -18.5019 -28.1633 -0.51228 keV
+Vertex : 0.390927 -0.385744 -5.91146 m    Global time : 19.8153 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-443.473,-322.021,-3407.55)
-Point[1] Position= (-443.508,-322.006,-3407.55)
+Point[0] Position= (390.927,-385.744,-5911.46)
+Point[1] Position= (390.912,-385.767,-5911.47)
 
-TrackID =1131 : ParentID=1086 : TrackStatus=1
+TrackID =1324 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.5681 51.8569 -12.2194 keV
-Vertex : -0.441548 -0.320624 -3.39275 m    Global time : 12.0415 ns 
+Original momentum : 17.5308 -32.8108 1.91955 keV
+Vertex : 0.390718 -0.385539 -5.9083 m    Global time : 19.8047 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-441.548,-320.624,-3392.75)
-Point[1] Position= (-441.464,-320.465,-3392.79)
+Point[0] Position= (390.718,-385.539,-5908.3)
+Point[1] Position= (390.735,-385.572,-5908.3)
 
-TrackID =1130 : ParentID=1086 : TrackStatus=1
+TrackID =1323 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 43.1863 -51.9471 -5.4745 keV
-Vertex : -0.438547 -0.318446 -3.36969 m    Global time : 11.9597 ns 
+Original momentum : 33.3262 1.49264 1.00821 keV
+Vertex : 0.39019 -0.385021 -5.90029 m    Global time : 19.7779 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-438.547,-318.446,-3369.69)
-Point[1] Position= (-438.368,-318.661,-3369.71)
+Point[0] Position= (390.19,-385.021,-5900.29)
+Point[1] Position= (390.216,-385.019,-5900.29)
 
-TrackID =1129 : ParentID=1086 : TrackStatus=1
+TrackID =1322 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.7864 44.3206 -3.65054 keV
-Vertex : -0.428245 -0.310971 -3.29053 m    Global time : 11.6787 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-428.245,-310.971,-3290.53)
-Point[1] Position= (-428.296,-310.88,-3290.54)
+Original momentum : 100.324 -234.029 -39.8144 keV
+Vertex : 0.379606 -0.374634 -5.73991 m    Global time : 19.2403 ns 
+  Current trajectory has 14 points.
+Point[0] Position= (379.606,-374.634,-5739.91)
+Point[1] Position= (385.017,-387.256,-5742.06)
+Point[2] Position= (387.487,-390.884,-5743.19)
+Point[3] Position= (389.952,-397.567,-5745.73)
+Point[4] Position= (389.661,-398.505,-5746.13)
+Point[5] Position= (388.467,-404.022,-5748.34)
+Point[6] Position= (386.584,-407.719,-5751.19)
+Point[7] Position= (386.786,-409.174,-5752.86)
+Point[8] Position= (386.691,-409.712,-5753.91)
+Point[9] Position= (385.319,-411.012,-5755.73)
+Point[10] Position= (385.838,-411.876,-5756.67)
+Point[11] Position= (385.584,-412.834,-5757.89)
+Point[12] Position= (385.519,-412.118,-5758.77)
+Point[13] Position= (385.949,-412.169,-5758.83)
 
-TrackID =1128 : ParentID=1086 : TrackStatus=1
+TrackID =1330 : ParentID=1322 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.9315 -31.5432 4.74525 keV
-Vertex : -0.405127 -0.29421 -3.11294 m    Global time : 11.0484 ns 
+Original momentum : 34.9227 2.44856 -9.3674 keV
+Vertex : 0.385838 -0.411876 -5.75667 m    Global time : 19.6494 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-405.127,-294.21,-3112.94)
-Point[1] Position= (-405.164,-294.253,-3112.94)
+Point[0] Position= (385.838,-411.876,-5756.67)
+Point[1] Position= (385.871,-411.873,-5756.68)
 
-TrackID =1127 : ParentID=1086 : TrackStatus=1
+TrackID =1329 : ParentID=1322 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.1498 -44.4821 5.66983 keV
-Vertex : -0.397513 -0.288683 -3.05444 m    Global time : 10.8408 ns 
+Original momentum : -4.7348 34.3914 -21.3264 keV
+Vertex : 0.386691 -0.409712 -5.75391 m    Global time : 19.5988 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-397.513,-288.683,-3054.44)
-Point[1] Position= (-397.636,-288.82,-3054.43)
-
-TrackID =1126 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -134.9 -50.9301 1.14617 keV
-Vertex : -0.3925 -0.285041 -3.01593 m    Global time : 10.7041 ns 
-  Current trajectory has 6 points.
-Point[0] Position= (-392.5,-285.041,-3015.93)
-Point[1] Position= (-394.979,-285.977,-3015.91)
-Point[2] Position= (-396.721,-286.728,-3016.61)
-Point[3] Position= (-397.33,-285.671,-3017.39)
-Point[4] Position= (-397.587,-286.127,-3018.09)
-Point[5] Position= (-397.791,-285.886,-3017.86)
+Point[0] Position= (386.691,-409.712,-5753.91)
+Point[1] Position= (386.685,-409.67,-5753.94)
 
-TrackID =1125 : ParentID=1086 : TrackStatus=1
+TrackID =1328 : ParentID=1322 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.6466 81.1052 -21.9508 keV
-Vertex : -0.37666 -0.273528 -2.8942 m    Global time : 10.272 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-376.66,-273.528,-2894.2)
-Point[1] Position= (-376.289,-272.788,-2894.4)
-Point[2] Position= (-376.27,-272.776,-2894.42)
-
-TrackID =1124 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 19.3516 32.54 -7.13564 keV
-Vertex : -0.373597 -0.271301 -2.87065 m    Global time : 10.1884 ns 
+Original momentum : -41.225 9.78516 -1.59739 keV
+Vertex : 0.386786 -0.409174 -5.75286 m    Global time : 19.585 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-373.597,-271.301,-2870.65)
-Point[1] Position= (-373.576,-271.265,-2870.65)
+Point[0] Position= (386.786,-409.174,-5752.86)
+Point[1] Position= (386.73,-409.16,-5752.86)
 
-TrackID =1123 : ParentID=1086 : TrackStatus=1
+TrackID =1327 : ParentID=1322 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.8124 -19.358 -2.80274 keV
-Vertex : -0.327687 -0.237905 -2.51762 m    Global time : 8.93548 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-327.687,-237.905,-2517.62)
-Point[1] Position= (-327.666,-237.92,-2517.62)
+Original momentum : 84.472 26.069 8.87355 keV
+Vertex : 0.387487 -0.390884 -5.74319 m    Global time : 19.3794 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (387.487,-390.884,-5743.19)
+Point[1] Position= (388.036,-390.714,-5743.14)
+Point[2] Position= (388.349,-390.638,-5742.96)
 
-TrackID =1122 : ParentID=1086 : TrackStatus=1
+TrackID =1331 : ParentID=1327 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.9841 -16.4774 -5.19237 keV
-Vertex : -0.324999 -0.235951 -2.49696 m    Global time : 8.86216 ns 
+Original momentum : -16.0298 0.869667 27.9658 keV
+Vertex : 0.388036 -0.390714 -5.74314 m    Global time : 19.3906 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-324.999,-235.951,-2496.96)
-Point[1] Position= (-324.95,-235.972,-2496.97)
+Point[0] Position= (388.036,-390.714,-5743.14)
+Point[1] Position= (388.024,-390.714,-5743.12)
 
-TrackID =1121 : ParentID=1086 : TrackStatus=1
+TrackID =1321 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.3714 31.4062 -1.44387 keV
-Vertex : -0.319818 -0.232184 -2.45715 m    Global time : 8.72087 ns 
+Original momentum : 38.6251 -21.8375 2.03104 keV
+Vertex : 0.379271 -0.374305 -5.73484 m    Global time : 19.2233 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-319.818,-232.184,-2457.15)
-Point[1] Position= (-319.846,-232.147,-2457.15)
+Point[0] Position= (379.271,-374.305,-5734.84)
+Point[1] Position= (379.329,-374.338,-5734.84)
 
-TrackID =1120 : ParentID=1086 : TrackStatus=1
+TrackID =1320 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.6353 7.78669 -6.59668 keV
-Vertex : -0.311931 -0.226448 -2.39654 m    Global time : 8.50573 ns 
+Original momentum : -12.6964 31.3878 -4.01312 keV
+Vertex : 0.333363 -0.329173 -5.0391 m    Global time : 16.8913 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-311.931,-226.448,-2396.54)
-Point[1] Position= (-311.898,-226.441,-2396.54)
+Point[0] Position= (333.363,-329.173,-5039.1)
+Point[1] Position= (333.353,-329.147,-5039.11)
 
-TrackID =1119 : ParentID=1086 : TrackStatus=1
+TrackID =1319 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -41.1051 -10.5489 4.45106 keV
-Vertex : -0.303776 -0.220514 -2.33383 m    Global time : 8.28318 ns 
+Original momentum : 27.0449 71.7845 -8.69249 keV
+Vertex : 0.332175 -0.328007 -5.02109 m    Global time : 16.8309 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-303.776,-220.514,-2333.83)
-Point[1] Position= (-303.832,-220.528,-2333.83)
+Point[0] Position= (332.175,-328.007,-5021.09)
+Point[1] Position= (332.331,-327.593,-5021.14)
 
-TrackID =1118 : ParentID=1086 : TrackStatus=1
+TrackID =1318 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.1979 -42.2275 4.73768 keV
-Vertex : -0.247918 -0.179881 -1.90417 m    Global time : 6.75824 ns 
+Original momentum : -22.5371 35.9378 -5.61081 keV
+Vertex : 0.329526 -0.325406 -4.98093 m    Global time : 16.6963 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-247.918,-179.881,-1904.17)
-Point[1] Position= (-247.966,-179.961,-1904.16)
+Point[0] Position= (329.526,-325.406,-4980.93)
+Point[1] Position= (329.495,-325.357,-4980.94)
 
-TrackID =1117 : ParentID=1086 : TrackStatus=1
+TrackID =1317 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.6458 45.1654 -4.00545 keV
-Vertex : -0.235742 -0.17103 -1.81061 m    Global time : 6.42618 ns 
+Original momentum : 0.140598 35.0744 -3.4831 keV
+Vertex : 0.326632 -0.322566 -4.93708 m    Global time : 16.5493 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-235.742,-171.03,-1810.61)
-Point[1] Position= (-235.788,-170.938,-1810.62)
+Point[0] Position= (326.632,-322.566,-4937.08)
+Point[1] Position= (326.632,-322.534,-4937.08)
 
-TrackID =1116 : ParentID=1086 : TrackStatus=1
+TrackID =1316 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -46.8032 13.7371 2.3132 keV
-Vertex : -0.234522 -0.17014 -1.80123 m    Global time : 6.3929 ns 
+Original momentum : -41.7498 -35.3795 -3.41327 keV
+Vertex : 0.31324 -0.30943 -4.7343 m    Global time : 15.8696 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-234.522,-170.14,-1801.23)
-Point[1] Position= (-234.608,-170.114,-1801.23)
+Point[0] Position= (313.24,-309.43,-4734.3)
+Point[1] Position= (313.138,-309.517,-4734.31)
 
-TrackID =1115 : ParentID=1086 : TrackStatus=1
+TrackID =1315 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.7031 -5.69872 4.06798 keV
-Vertex : -0.233899 -0.169686 -1.79645 m    Global time : 6.37593 ns 
+Original momentum : -2.92705 -33.7014 0.866776 keV
+Vertex : 0.310347 -0.30659 -4.69048 m    Global time : 15.7227 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-233.899,-169.686,-1796.45)
-Point[1] Position= (-233.95,-169.693,-1796.45)
-
-TrackID =1114 : ParentID=1086 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 5.3647 101.172 -21.3379 keV
-Vertex : -0.216356 -0.156913 -1.66177 m    Global time : 5.8979 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-216.356,-156.913,-1661.77)
-Point[1] Position= (-216.296,-155.782,-1662.01)
-Point[2] Position= (-216.317,-155.698,-1661.99)
-Point[3] Position= (-216.275,-155.339,-1661.95)
+Point[0] Position= (310.347,-306.59,-4690.48)
+Point[1] Position= (310.344,-306.618,-4690.48)
 
-TrackID =1190 : ParentID=1114 : TrackStatus=1
+TrackID =1314 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -44.907 3.6984 14.9752 keV
-Vertex : -0.216317 -0.155698 -1.66199 m    Global time : 5.91908 ns 
+Original momentum : -34.2237 29.8852 -6.26195 keV
+Vertex : 0.308488 -0.304765 -4.66234 m    Global time : 15.6284 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-216.317,-155.698,-1661.99)
-Point[1] Position= (-216.395,-155.692,-1661.96)
+Point[0] Position= (308.488,-304.765,-4662.34)
+Point[1] Position= (308.433,-304.717,-4662.35)
 
-TrackID =1113 : ParentID=1086 : TrackStatus=1
+TrackID =1313 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.7116 34.7674 -2.97386 keV
-Vertex : -0.203047 -0.147227 -1.55962 m    Global time : 5.53532 ns 
+Original momentum : -12.6476 -29.811 0.0703446 keV
+Vertex : 0.303012 -0.299384 -4.57938 m    Global time : 15.3503 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-203.047,-147.227,-1559.62)
-Point[1] Position= (-203.061,-147.191,-1559.62)
+Point[0] Position= (303.012,-299.384,-4579.38)
+Point[1] Position= (303.002,-299.406,-4579.38)
 
-TrackID =1112 : ParentID=1086 : TrackStatus=1
+TrackID =1312 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -41.4192 38.5043 -1.57873 keV
-Vertex : -0.199288 -0.144489 -1.53076 m    Global time : 5.4329 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-199.288,-144.489,-1530.76)
-Point[1] Position= (-199.398,-144.387,-1530.77)
+Original momentum : 80.3344 38.981 -5.03308 keV
+Vertex : 0.300444 -0.296858 -4.54045 m    Global time : 15.2198 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (300.444,-296.858,-4540.45)
+Point[1] Position= (301.11,-296.534,-4540.49)
+Point[2] Position= (301.144,-296.528,-4540.56)
 
-TrackID =1111 : ParentID=1086 : TrackStatus=1
+TrackID =1311 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.4694 24.2786 -0.429352 keV
-Vertex : -0.193278 -0.140115 -1.48463 m    Global time : 5.26918 ns 
+Original momentum : 2.71068 -58.2956 0.631779 keV
+Vertex : 0.280227 -0.276938 -4.23392 m    Global time : 14.1924 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-193.278,-140.115,-1484.63)
-Point[1] Position= (-193.297,-140.096,-1484.64)
+Point[0] Position= (280.227,-276.938,-4233.92)
+Point[1] Position= (280.235,-277.105,-4233.91)
 
-TrackID =1110 : ParentID=1086 : TrackStatus=1
+TrackID =1310 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.4482 35.6152 -2.38305 keV
-Vertex : -0.185221 -0.134255 -1.42282 m    Global time : 5.04978 ns 
+Original momentum : -31.9028 -1.25868 -3.03068 keV
+Vertex : 0.279588 -0.276307 -4.22422 m    Global time : 14.1598 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-185.221,-134.255,-1422.82)
-Point[1] Position= (-185.249,-134.209,-1422.82)
+Point[0] Position= (279.588,-276.307,-4224.22)
+Point[1] Position= (279.565,-276.308,-4224.22)
 
-TrackID =1109 : ParentID=1086 : TrackStatus=1
+TrackID =1309 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.003 37.2289 -6.88677 keV
-Vertex : -0.175465 -0.127162 -1.34796 m    Global time : 4.78409 ns 
+Original momentum : 16.1431 39.7825 -3.34348 keV
+Vertex : 0.273891 -0.270684 -4.13776 m    Global time : 13.8701 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-175.465,-127.162,-1347.96)
-Point[1] Position= (-175.45,-127.119,-1347.97)
+Point[0] Position= (273.891,-270.684,-4137.76)
+Point[1] Position= (273.913,-270.629,-4137.77)
 
-TrackID =1108 : ParentID=1086 : TrackStatus=1
+TrackID =1308 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.45773 35.7345 -4.92889 keV
-Vertex : -0.173413 -0.12567 -1.33221 m    Global time : 4.72817 ns 
+Original momentum : -35.5692 -19.5888 -2.69426 keV
+Vertex : 0.262327 -0.259264 -3.96231 m    Global time : 13.282 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-173.413,-125.67,-1332.21)
-Point[1] Position= (-173.411,-125.637,-1332.21)
+Point[0] Position= (262.327,-259.264,-3962.31)
+Point[1] Position= (262.284,-259.287,-3962.32)
 
-TrackID =1107 : ParentID=1086 : TrackStatus=1
+TrackID =1307 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.4432 -28.5182 -4.71061 keV
-Vertex : -0.168604 -0.122175 -1.29531 m    Global time : 4.5972 ns 
+Original momentum : -64.927 -20.9103 -7.52467 keV
+Vertex : 0.258992 -0.255968 -3.91167 m    Global time : 13.1122 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-168.604,-122.175,-1295.31)
-Point[1] Position= (-168.535,-122.226,-1295.32)
+Point[0] Position= (258.992,-255.968,-3911.67)
+Point[1] Position= (258.714,-256.057,-3911.7)
 
-TrackID =1106 : ParentID=1086 : TrackStatus=1
+TrackID =1306 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.9451 32.6818 -6.75628 keV
-Vertex : -0.134421 -0.0973458 -1.03299 m    Global time : 3.66615 ns 
+Original momentum : -19.3248 25.0216 -3.89689 keV
+Vertex : 0.249877 -0.246958 -3.77325 m    Global time : 12.6482 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-134.421,-97.3458,-1032.99)
-Point[1] Position= (-134.404,-97.3126,-1033)
+Point[0] Position= (249.877,-246.958,-3773.25)
+Point[1] Position= (249.863,-246.94,-3773.25)
 
-TrackID =1105 : ParentID=1086 : TrackStatus=1
+TrackID =1305 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.9062 28.3663 -1.81181 keV
-Vertex : -12.9288 -9.36191 -99.359 cm   Global time : 3.52631 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-129.288,-93.6191,-993.59)
-Point[1] Position= (-129.299,-93.5985,-993.592)
+Original momentum : -84.9816 34.0352 -16.2475 keV
+Vertex : 0.226914 -0.224272 -3.42468 m    Global time : 11.4798 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (226.914,-224.272,-3424.68)
+Point[1] Position= (226.148,-223.965,-3424.82)
+Point[2] Position= (226.366,-223.976,-3424.67)
 
-TrackID =1104 : ParentID=1086 : TrackStatus=1
+TrackID =1332 : ParentID=1305 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.1943 -34.9965 5.06424 keV
-Vertex : -12.1684 -8.81074 -93.5273 cm   Global time : 3.31933 ns 
+Original momentum : 16.342 -13.1885 -24.6547 keV
+Vertex : 0.226148 -0.223965 -3.42482 m    Global time : 11.4954 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-121.684,-88.1074,-935.273)
-Point[1] Position= (-121.738,-88.1672,-935.265)
+Point[0] Position= (226.148,-223.965,-3424.82)
+Point[1] Position= (226.161,-223.975,-3424.84)
 
-TrackID =1103 : ParentID=1086 : TrackStatus=1
+TrackID =1304 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.6809 27.4196 -7.65106 keV
-Vertex : -11.4139 -8.2636 -87.7397 cm   Global time : 3.11391 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-114.139,-82.636,-877.397)
-Point[1] Position= (-114.11,-82.6054,-877.406)
+Original momentum : 145.185 -114.302 -15.7495 keV
+Vertex : 0.225198 -0.222576 -3.39864 m    Global time : 11.3926 ns 
+  Current trajectory has 9 points.
+Point[0] Position= (225.198,-222.576,-3398.64)
+Point[1] Position= (228.193,-224.934,-3398.97)
+Point[2] Position= (229.296,-225.894,-3401.39)
+Point[3] Position= (229.322,-225.947,-3401.51)
+Point[4] Position= (230.106,-227.366,-3403.34)
+Point[5] Position= (230.851,-227.341,-3404.03)
+Point[6] Position= (231.772,-227.558,-3404.29)
+Point[7] Position= (232.263,-227.999,-3404.68)
+Point[8] Position= (232.297,-228.056,-3404.69)
 
-TrackID =1102 : ParentID=1086 : TrackStatus=1
+TrackID =1337 : ParentID=1304 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.9482 -22.0977 4.24266 keV
-Vertex : -11.086 -8.02576 -85.2233 cm   Global time : 3.0246 ns 
+Original momentum : 6.53611 29.3036 -25.6595 keV
+Vertex : 0.231772 -0.227558 -3.40429 m    Global time : 11.5225 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-110.86,-80.2576,-852.233)
-Point[1] Position= (-110.882,-80.2762,-852.229)
+Point[0] Position= (231.772,-227.558,-3404.29)
+Point[1] Position= (231.779,-227.525,-3404.32)
 
-TrackID =1101 : ParentID=1086 : TrackStatus=1
+TrackID =1336 : ParentID=1304 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.97754 51.8038 -8.00923 keV
-Vertex : -10.8119 -7.82703 -83.1201 cm   Global time : 2.94995 ns 
+Original momentum : 0.585028 25.8829 -19.7767 keV
+Vertex : 0.230851 -0.227341 -3.40403 m    Global time : 11.5067 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-108.119,-78.2703,-831.201)
-Point[1] Position= (-108.115,-78.1562,-831.218)
+Point[0] Position= (230.851,-227.341,-3404.03)
+Point[1] Position= (230.852,-227.322,-3404.05)
 
-TrackID =1100 : ParentID=1086 : TrackStatus=1
+TrackID =1335 : ParentID=1304 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -46.3547 1.37279 3.66105 keV
-Vertex : -10.5383 -7.62862 -81.0198 cm   Global time : 2.8754 ns 
+Original momentum : -21.2592 32.8283 -35.0741 keV
+Vertex : 0.229322 -0.225947 -3.40151 m    Global time : 11.4611 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-105.383,-76.2862,-810.198)
-Point[1] Position= (-105.46,-76.2839,-810.192)
+Point[0] Position= (229.322,-225.947,-3401.51)
+Point[1] Position= (229.275,-225.875,-3401.59)
 
-TrackID =1099 : ParentID=1086 : TrackStatus=1
+TrackID =1334 : ParentID=1304 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -4.66331 -50.5023 2.69763 keV
-Vertex : -8.96608 -6.48872 -68.951 cm   Global time : 2.44706 ns 
+Original momentum : -63.53 -23.4928 -4.41284 keV
+Vertex : 0.229296 -0.225894 -3.40139 m    Global time : 11.4595 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-89.6608,-64.8872,-689.51)
-Point[1] Position= (-89.6703,-64.9902,-689.504)
+Point[0] Position= (229.296,-225.894,-3401.39)
+Point[1] Position= (229.031,-225.991,-3401.41)
 
-TrackID =1098 : ParentID=1086 : TrackStatus=1
+TrackID =1333 : ParentID=1304 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -54.9007 21.7001 1.48347 keV
-Vertex : -8.59259 -6.21784 -66.0826 cm   Global time : 2.34525 ns 
+Original momentum : -22.2314 16.0576 -16.6886 keV
+Vertex : 0.228193 -0.224934 -3.39897 m    Global time : 11.43 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-85.9259,-62.1784,-660.826)
-Point[1] Position= (-86.0874,-62.1146,-660.821)
+Point[0] Position= (228.193,-224.934,-3398.97)
+Point[1] Position= (228.177,-224.922,-3398.98)
 
-TrackID =1097 : ParentID=1086 : TrackStatus=1
+TrackID =1303 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -51.7856 23.3082 1.19725 keV
-Vertex : -8.10788 -5.86646 -62.3616 cm   Global time : 2.21319 ns 
+Original momentum : -2.34475 50.1503 -5.92798 keV
+Vertex : 0.216589 -0.214069 -3.26806 m    Global time : 10.9549 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-81.0788,-58.6646,-623.616)
-Point[1] Position= (-81.2172,-58.6023,-623.613)
+Point[0] Position= (216.589,-214.069,-3268.06)
+Point[1] Position= (216.585,-213.968,-3268.07)
 
-TrackID =1096 : ParentID=1086 : TrackStatus=1
+TrackID =1302 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.8658 -43.7802 4.94356 keV
-Vertex : -8.07399 -5.8419 -62.1015 cm   Global time : 2.20396 ns 
+Original momentum : -35.6491 -9.45188 -3.07888 keV
+Vertex : 0.21512 -0.212617 -3.24576 m    Global time : 10.8801 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-80.7399,-58.419,-621.015)
-Point[1] Position= (-80.8003,-58.5141,-621.005)
+Point[0] Position= (215.12,-212.617,-3245.76)
+Point[1] Position= (215.084,-212.626,-3245.77)
 
-TrackID =1095 : ParentID=1086 : TrackStatus=1
+TrackID =1301 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.35562 38.745 -5.42951 keV
-Vertex : -6.62047 -4.78762 -50.9426 cm   Global time : 1.8079 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-66.2047,-47.8762,-509.426)
-Point[1] Position= (-66.2032,-47.8327,-509.432)
+Original momentum : -39.6189 -46.2559 -3.24021 keV
+Vertex : 0.209578 -0.207138 -3.16169 m    Global time : 10.5983 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (209.578,-207.138,-3161.69)
+Point[1] Position= (209.464,-207.272,-3161.7)
+Point[2] Position= (209.469,-207.318,-3161.65)
 
-TrackID =1094 : ParentID=1086 : TrackStatus=1
+TrackID =1300 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.3147 -9.2503 3.82578 keV
-Vertex : -6.50987 -4.70738 -50.0932 cm   Global time : 1.77776 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-65.0987,-47.0738,-500.932)
-Point[1] Position= (-65.1227,-47.0809,-500.929)
+Original momentum : -8.92342 -67.0238 -0.699731 keV
+Vertex : 0.201516 -0.199167 -3.03934 m    Global time : 10.1882 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (201.516,-199.167,-3039.34)
+Point[1] Position= (201.479,-199.443,-3039.35)
+Point[2] Position= (201.461,-199.447,-3039.35)
 
-TrackID =1093 : ParentID=1086 : TrackStatus=1
+TrackID =1299 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -55.3159 37.0069 -0.881827 keV
-Vertex : -5.71503 -4.13143 -43.9853 cm   Global time : 1.56098 ns 
+Original momentum : -53.1251 58.9085 -13.6877 keV
+Vertex : 0.196167 -0.19388 -2.95824 m    Global time : 9.91636 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-57.1503,-41.3143,-439.853)
-Point[1] Position= (-57.3692,-41.1678,-439.857)
+Point[0] Position= (196.167,-193.88,-2958.24)
+Point[1] Position= (195.827,-193.503,-2958.32)
 
-TrackID =1092 : ParentID=1086 : TrackStatus=1
+TrackID =1298 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 60.7116 11.1534 -13.0662 keV
-Vertex : -5.40284 -3.90561 -41.5835 cm   Global time : 1.47574 ns 
+Original momentum : 35.5552 -27.4568 2.15537 keV
+Vertex : 0.18988 -0.187652 -2.86292 m    Global time : 9.59684 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-54.0284,-39.0561,-415.835)
-Point[1] Position= (-53.8181,-39.0174,-415.881)
+Point[0] Position= (189.88,-187.652,-2862.92)
+Point[1] Position= (189.934,-187.694,-2862.91)
 
-TrackID =1091 : ParentID=1086 : TrackStatus=1
+TrackID =1297 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -18.3735 -28.0273 3.83867 keV
-Vertex : -5.28897 -3.82322 -40.7071 cm   Global time : 1.44464 ns 
+Original momentum : -30.1548 -22.4007 -1.9141 keV
+Vertex : 0.188609 -0.186393 -2.84366 m    Global time : 9.53229 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-52.8897,-38.2322,-407.071)
-Point[1] Position= (-52.9045,-38.2548,-407.068)
+Point[0] Position= (188.609,-186.393,-2843.66)
+Point[1] Position= (188.578,-186.416,-2843.66)
 
-TrackID =1090 : ParentID=1086 : TrackStatus=1
+TrackID =1296 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.5343 31.1291 -2.57735 keV
-Vertex : -3.71857 -2.68778 -28.62 cm   Global time : 1.01568 ns 
+Original momentum : 31.6453 36.2607 -2.56011 keV
+Vertex : 0.164356 -0.162363 -2.47652 m    Global time : 8.30162 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-37.1857,-26.8778,-286.2)
-Point[1] Position= (-37.1948,-26.8533,-286.202)
+Point[0] Position= (164.356,-162.363,-2476.52)
+Point[1] Position= (164.413,-162.298,-2476.52)
 
-TrackID =1089 : ParentID=1086 : TrackStatus=1
+TrackID =1295 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.7334 32.1118 -8.56598 keV
-Vertex : -1.33822 -0.96771 -10.3019 cm   Global time : 365.6 ps 
+Original momentum : -45.4413 -2.0533 -4.92984 keV
+Vertex : 0.140615 -0.13889 -2.11776 m    Global time : 7.09905 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-13.3822,-9.6771,-103.019)
-Point[1] Position= (-13.3433,-9.63202,-103.031)
+Point[0] Position= (140.615,-138.89,-2117.76)
+Point[1] Position= (140.543,-138.893,-2117.77)
 
-TrackID =1088 : ParentID=1086 : TrackStatus=1
+TrackID =1294 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -108.537 67.7084 -9.12049 keV
-Vertex : -1.30343 -0.942548 -10.034 cm   Global time : 356.094 ps 
+Original momentum : 104.788 17.7005 -5.22554 keV
+Vertex : 0.127696 -0.126124 -1.92286 m    Global time : 6.44573 ns 
   Current trajectory has 4 points.
-Point[0] Position= (-13.0343,-9.42548,-100.34)
-Point[1] Position= (-14.7179,-8.37521,-100.482)
-Point[2] Position= (-15.4096,-9.12094,-100.308)
-Point[3] Position= (-15.445,-9.36007,-99.9782)
+Point[0] Position= (127.696,-126.124,-1922.86)
+Point[1] Position= (128.924,-125.917,-1922.92)
+Point[2] Position= (129.448,-126.107,-1923.24)
+Point[3] Position= (129.451,-126.112,-1923.23)
 
-TrackID =1191 : ParentID=1088 : TrackStatus=1
+TrackID =1293 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.8011 3.39766 -1.1649 keV
-Vertex : -1.54096 -0.912094 -10.0308 cm   Global time : 400.59 ps 
+Original momentum : -22.8202 34.0596 -5.42414 keV
+Vertex : 0.120709 -0.119225 -1.81756 m    Global time : 6.09272 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-15.4096,-9.12094,-100.308)
-Point[1] Position= (-15.4401,-9.11797,-100.309)
+Point[0] Position= (120.709,-119.225,-1817.56)
+Point[1] Position= (120.68,-119.182,-1817.56)
 
-TrackID =1087 : ParentID=1086 : TrackStatus=1
+TrackID =1292 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.2814 -43.2715 0.210611 keV
-Vertex : -0.264058 -0.191008 -2.03316 cm   Global time : 72.1539 ps 
+Original momentum : -21.6964 24.0299 -4.06006 keV
+Vertex : 0.116316 -0.114886 -1.75133 m    Global time : 5.87073 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-2.64058,-1.91008,-20.3316)
-Point[1] Position= (-2.61994,-1.97734,-20.3313)
-
-TrackID =1085 : ParentID=48 : TrackStatus=1
-Particle name : pi-  PDG code : -211  Charge : -1
-Original momentum : 35.3514 166.978 -757.914 MeV
-Vertex : -8.00666e-295 -2.05077e-295 6.69946e-294 fm   Global time : 8.69392e-305 ps 
-  Current trajectory has 69 points.
-Point[0] Position= (-8.00666e-307,-2.05077e-307,6.69946e-306)
-Point[1] Position= (5.82158,27.5264,-124.84)
-Point[2] Position= (7.9589,37.6254,-170.644)
-Point[3] Position= (11.8871,56.1252,-254.508)
-Point[4] Position= (17.2749,81.4414,-369.324)
-Point[5] Position= (31.4843,148.173,-671.83)
-Point[6] Position= (31.6877,149.13,-676.167)
-Point[7] Position= (31.8066,149.69,-678.702)
-Point[8] Position= (34.3947,161.853,-733.769)
-Point[9] Position= (37.817,177.886,-806.374)
-Point[10] Position= (41.2389,193.882,-878.854)
-Point[11] Position= (41.5404,195.287,-885.23)
-Point[12] Position= (41.6125,195.623,-886.753)
-Point[13] Position= (42.3017,198.835,-901.323)
-Point[14] Position= (42.41,199.341,-903.614)
-Point[15] Position= (43.3744,203.851,-924.071)
-Point[16] Position= (43.4749,204.32,-926.199)
-Point[17] Position= (43.6993,205.367,-930.942)
-Point[18] Position= (46.9941,220.617,-1000)
-Point[19] Position= (48.5328,227.69,-1032.03)
-Point[20] Position= (50.388,236.212,-1070.61)
-Point[21] Position= (54.9308,257.035,-1164.89)
-Point[22] Position= (60.5449,283.326,-1283.4)
-Point[23] Position= (60.5738,283.461,-1284.01)
-Point[24] Position= (61.7937,289.196,-1309.84)
-Point[25] Position= (66.5788,311.723,-1411.34)
-Point[26] Position= (67.0959,314.166,-1422.35)
-Point[27] Position= (71.3649,334.302,-1513.18)
-Point[28] Position= (73.2748,343.269,-1553.68)
-Point[29] Position= (74.5268,349.134,-1580.17)
-Point[30] Position= (79.0722,370.405,-1676.2)
-Point[31] Position= (88.4723,414.62,-1874.79)
-Point[32] Position= (95.7098,448.696,-2027.94)
-Point[33] Position= (96.077,450.419,-2035.68)
-Point[34] Position= (107.197,502.461,-2269.55)
-Point[35] Position= (108.367,507.912,-2294.04)
-Point[36] Position= (112.756,528.368,-2386.06)
-Point[37] Position= (120.198,563.341,-2542.76)
-Point[38] Position= (135.701,636.311,-2869.92)
-Point[39] Position= (137.789,646.122,-2913.89)
-Point[40] Position= (141.413,663.177,-2990.36)
-Point[41] Position= (144.193,676.276,-3049.04)
-Point[42] Position= (145.619,683.002,-3079.17)
-Point[43] Position= (151.342,710.095,-3200.49)
-Point[44] Position= (154.785,726.412,-3273.5)
-Point[45] Position= (159.165,747.263,-3366.89)
-Point[46] Position= (172.33,809.49,-3645.98)
-Point[47] Position= (174.617,820.241,-3694.22)
-Point[48] Position= (189.427,889.584,-4005.83)
-Point[49] Position= (190.793,895.947,-4034.5)
-Point[50] Position= (194.006,910.998,-4102.3)
-Point[51] Position= (194.18,911.814,-4105.98)
-Point[52] Position= (204.897,962.138,-4332.93)
-Point[53] Position= (205.944,967.048,-4355.05)
-Point[54] Position= (212.629,998.367,-4496.08)
-Point[55] Position= (219.215,1028.79,-4632.87)
-Point[56] Position= (221.692,1040.24,-4684.37)
-Point[57] Position= (228.323,1070.91,-4822.21)
-Point[58] Position= (235.319,1103.23,-4967.35)
-Point[59] Position= (239.452,1122.29,-5052.79)
-Point[60] Position= (240.991,1129.39,-5084.59)
-Point[61] Position= (244.239,1144.61,-5152.63)
-Point[62] Position= (255.467,1197.2,-5387.63)
-Point[63] Position= (257.809,1208.16,-5436.62)
-Point[64] Position= (263.088,1232.93,-5547.4)
-Point[65] Position= (275.009,1289.19,-5799.27)
-Point[66] Position= (275.917,1293.48,-5818.48)
-Point[67] Position= (276.278,1295.18,-5826.11)
-Point[68] Position= (284.496,1333.99,-6000)
-
-TrackID =1255 : ParentID=1085 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 46.666 2.99527 0.64974 keV
-Vertex : 0.276278 1.29518 -5.82611 m    Global time : 20.2499 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (276.278,1295.18,-5826.11)
-Point[1] Position= (276.356,1295.19,-5826.1)
-
-TrackID =1254 : ParentID=1085 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.3218 36.6116 6.10507 keV
-Vertex : 0.275917 1.29348 -5.81848 m    Global time : 20.2234 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (275.917,1293.48,-5818.48)
-Point[1] Position= (275.904,1293.52,-5818.47)
-
-TrackID =1253 : ParentID=1085 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.76167 -46.5045 -12.4054 keV
-Vertex : 0.275009 1.28919 -5.79927 m    Global time : 20.1566 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (275.009,1289.19,-5799.27)
-Point[1] Position= (275.025,1289.1,-5799.29)
-
-TrackID =1252 : ParentID=1085 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 72.0243 -155.716 -64.6326 keV
-Vertex : 0.263088 1.23293 -5.5474 m    Global time : 19.281 ns 
-  Current trajectory has 8 points.
-Point[0] Position= (263.088,1232.93,-5547.4)
-Point[1] Position= (265.054,1228.68,-5549.17)
-Point[2] Position= (261.756,1228.07,-5547.66)
-Point[3] Position= (259.873,1229.95,-5547.78)
-Point[4] Position= (257.916,1230.72,-5548.13)
-Point[5] Position= (258.357,1229.73,-5549.15)
-Point[6] Position= (258.322,1228.94,-5549.3)
-Point[7] Position= (258.276,1228.91,-5549.36)
+Point[0] Position= (116.316,-114.886,-1751.33)
+Point[1] Position= (116.299,-114.868,-1751.33)
 
-TrackID =1251 : ParentID=1085 : TrackStatus=1
+TrackID =1291 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.0124 7.50344 -1.67167 keV
-Vertex : 0.257809 1.20816 -5.43662 m    Global time : 18.8958 ns 
+Original momentum : -4.7757 40.5028 -4.62223 keV
+Vertex : 0.106776 -0.10547 -1.60757 m    Global time : 5.38883 ns 
   Current trajectory has 2 points.
-Point[0] Position= (257.809,1208.16,-5436.62)
-Point[1] Position= (257.767,1208.17,-5436.62)
+Point[0] Position= (106.776,-105.47,-1607.57)
+Point[1] Position= (106.77,-105.42,-1607.58)
 
-TrackID =1250 : ParentID=1085 : TrackStatus=1
+TrackID =1290 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.8877 -31.6929 -7.62978 keV
-Vertex : 0.255467 1.1972 -5.38763 m    Global time : 18.7255 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (255.467,1197.2,-5387.63)
-Point[1] Position= (255.487,1197.16,-5387.63)
+Original momentum : 103.282 -37.3033 -2.43444 keV
+Vertex : 0.0996107 -0.0984018 -1.49957 m    Global time : 5.02681 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (99.6107,-98.4018,-1499.57)
+Point[1] Position= (100.885,-98.862,-1499.6)
+Point[2] Position= (101.096,-98.969,-1499.29)
 
-TrackID =1249 : ParentID=1085 : TrackStatus=1
+TrackID =1289 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.5696 -26.8722 -8.13952 keV
-Vertex : 0.244239 1.14461 -5.15263 m    Global time : 17.9084 ns 
+Original momentum : 44.9799 -8.65627 1.49088 keV
+Vertex : 0.0992261 -0.0980223 -1.49378 m    Global time : 5.00738 ns 
   Current trajectory has 2 points.
-Point[0] Position= (244.239,1144.61,-5152.63)
-Point[1] Position= (244.222,1144.59,-5152.64)
+Point[0] Position= (99.2261,-98.0223,-1493.78)
+Point[1] Position= (99.298,-98.0362,-1493.77)
 
-TrackID =1248 : ParentID=1085 : TrackStatus=1
+TrackID =1288 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -36.6793 -17.1508 -7.31065 keV
-Vertex : 0.240991 1.12939 -5.08459 m    Global time : 17.6718 ns 
+Original momentum : 32.1526 -7.50619 1.55501 keV
+Vertex : 0.091552 -0.0904531 -1.3782 m    Global time : 4.61995 ns 
   Current trajectory has 2 points.
-Point[0] Position= (240.991,1129.39,-5084.59)
-Point[1] Position= (240.945,1129.37,-5084.6)
+Point[0] Position= (91.552,-90.4531,-1378.2)
+Point[1] Position= (91.5769,-90.4589,-1378.2)
 
-TrackID =1247 : ParentID=1085 : TrackStatus=1
+TrackID =1287 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -43.8182 -0.977412 -4.31072 keV
-Vertex : 0.239452 1.12229 -5.05279 m    Global time : 17.5613 ns 
+Original momentum : 3.30849 -41.4198 1.23554 keV
+Vertex : 0.0802228 -0.0792825 -1.20768 m    Global time : 4.04835 ns 
   Current trajectory has 2 points.
-Point[0] Position= (239.452,1122.29,-5052.79)
-Point[1] Position= (239.388,1122.29,-5052.8)
+Point[0] Position= (80.2228,-79.2825,-1207.68)
+Point[1] Position= (80.227,-79.3356,-1207.68)
 
-TrackID =1246 : ParentID=1085 : TrackStatus=1
+TrackID =1286 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -50.0594 -7.11137 -6.65215 keV
-Vertex : 0.235319 1.10323 -4.96735 m    Global time : 17.2642 ns 
+Original momentum : 12.4276 -52.3343 1.41667 keV
+Vertex : 0.0709694 -0.0701608 -1.06839 m    Global time : 3.58142 ns 
   Current trajectory has 2 points.
-Point[0] Position= (235.319,1103.23,-4967.35)
-Point[1] Position= (235.216,1103.22,-4967.36)
+Point[0] Position= (70.9694,-70.1608,-1068.39)
+Point[1] Position= (70.9985,-70.2834,-1068.39)
 
-TrackID =1245 : ParentID=1085 : TrackStatus=1
+TrackID =1285 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.25062 -32.1457 -8.3391 keV
-Vertex : 0.228323 1.07091 -4.82221 m    Global time : 16.7597 ns 
+Original momentum : 32.703 -11.1541 1.72929 keV
+Vertex : 6.27148 -6.20088 -94.413 cm   Global time : 3.16489 ns 
   Current trajectory has 2 points.
-Point[0] Position= (228.323,1070.91,-4822.21)
-Point[1] Position= (228.322,1070.88,-4822.22)
+Point[0] Position= (62.7148,-62.0088,-944.13)
+Point[1] Position= (62.7428,-62.0183,-944.129)
 
-TrackID =1244 : ParentID=1085 : TrackStatus=1
+TrackID =1284 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.03 -38.1224 -10.1683 keV
-Vertex : 0.221692 1.04024 -4.68437 m    Global time : 16.2806 ns 
+Original momentum : 6.20118 34.9 -3.1211 keV
+Vertex : 5.52295 -5.46183 -83.1488 cm   Global time : 2.78729 ns 
   Current trajectory has 2 points.
-Point[0] Position= (221.692,1040.24,-4684.37)
-Point[1] Position= (221.69,1040.2,-4684.38)
+Point[0] Position= (55.2295,-54.6183,-831.488)
+Point[1] Position= (55.2351,-54.5866,-831.491)
 
-TrackID =1243 : ParentID=1085 : TrackStatus=1
+TrackID =1283 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.8117 -47.9254 -12.7309 keV
-Vertex : 0.219215 1.02879 -4.63287 m    Global time : 16.1015 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (219.215,1028.79,-4632.87)
-Point[1] Position= (219.239,1028.69,-4632.9)
+Original momentum : 82.5154 -30.7481 -0.0677346 keV
+Vertex : 5.36663 -5.30751 -80.7965 cm   Global time : 2.70844 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (53.6663,-53.0751,-807.965)
+Point[1] Position= (54.3265,-53.3212,-807.966)
+Point[2] Position= (54.3118,-53.3388,-807.998)
 
-TrackID =1242 : ParentID=1085 : TrackStatus=1
+TrackID =1282 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.8134 28.886 3.84713 keV
-Vertex : 0.212629 0.998367 -4.49608 m    Global time : 15.6261 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (212.629,998.367,-4496.08)
-Point[1] Position= (212.605,998.397,-4496.08)
+Original momentum : -49.9539 -119.402 -11.8318 keV
+Vertex : 5.36217 -5.30311 -80.7295 cm   Global time : 2.70619 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (53.6217,-53.0311,-807.295)
+Point[1] Position= (52.832,-54.9187,-807.482)
+Point[2] Position= (53.0306,-56.2884,-807.531)
+Point[3] Position= (53.1913,-57.0043,-807.296)
+Point[4] Position= (52.8949,-57.1238,-807.223)
 
-TrackID =1241 : ParentID=1085 : TrackStatus=1
+TrackID =1338 : ParentID=1282 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.23657 42.179 7.58857 keV
-Vertex : 0.205944 0.967048 -4.35505 m    Global time : 15.1359 ns 
+Original momentum : -14.7307 11.6135 -40.1834 keV
+Vertex : 5.31913 -5.70043 -80.7296 cm   Global time : 2.76987 ns 
   Current trajectory has 2 points.
-Point[0] Position= (205.944,967.048,-4355.05)
-Point[1] Position= (205.947,967.106,-4355.04)
+Point[0] Position= (53.1913,-57.0043,-807.296)
+Point[1] Position= (53.1694,-56.9871,-807.356)
 
-TrackID =1240 : ParentID=1085 : TrackStatus=1
+TrackID =1281 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.67158 -52.1251 -15.0502 keV
-Vertex : 0.204897 0.962138 -4.33293 m    Global time : 15.059 ns 
+Original momentum : -22.9272 31.9749 -5.16884 keV
+Vertex : 4.45925 -4.41098 -67.141 cm   Global time : 2.25069 ns 
   Current trajectory has 2 points.
-Point[0] Position= (204.897,962.138,-4332.93)
-Point[1] Position= (204.876,962.01,-4332.96)
+Point[0] Position= (44.5925,-44.1098,-671.41)
+Point[1] Position= (44.566,-44.0728,-671.416)
 
-TrackID =1239 : ParentID=1085 : TrackStatus=1
+TrackID =1280 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.3872 42.1218 7.90749 keV
-Vertex : 0.19418 0.911814 -4.10598 m    Global time : 14.2703 ns 
+Original momentum : -42.9462 3.96194 -4.96346 keV
+Vertex : 2.32252 -2.29845 -34.9778 cm   Global time : 1.17252 ns 
   Current trajectory has 2 points.
-Point[0] Position= (194.18,911.814,-4105.98)
-Point[1] Position= (194.198,911.878,-4105.97)
+Point[0] Position= (23.2252,-22.9845,-349.778)
+Point[1] Position= (23.1645,-22.9789,-349.785)
 
-TrackID =1238 : ParentID=1085 : TrackStatus=1
+TrackID =1279 : ParentID=1278 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.77174 -31.9864 -8.40439 keV
-Vertex : 0.194006 0.910998 -4.1023 m    Global time : 14.2575 ns 
+Original momentum : 13.291 -35.4297 1.80019 keV
+Vertex : 2.24583 -2.22267 -33.8236 cm   Global time : 1.13383 ns 
   Current trajectory has 2 points.
-Point[0] Position= (194.006,910.998,-4102.3)
-Point[1] Position= (194.003,910.973,-4102.31)
+Point[0] Position= (22.4583,-22.2267,-338.236)
+Point[1] Position= (22.4722,-22.2637,-338.234)
 
-TrackID =1237 : ParentID=1085 : TrackStatus=1
+TrackID =1274 : ParentID=1223 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.5681 -18.5748 -3.97574 keV
-Vertex : 0.190793 0.895947 -4.0345 m    Global time : 14.0218 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (190.793,895.947,-4034.5)
-Point[1] Position= (190.819,895.931,-4034.5)
+Original momentum : 721.633 -407.772 -440.179 keV
+Vertex : 43.3382 13.064 -3.84511 cm   Global time : 1.55492 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (433.382,130.64,-38.4511)
+Point[1] Position= (433.687,130.467,-38.6373)
+Point[2] Position= (433.691,130.471,-38.6511)
 
-TrackID =1236 : ParentID=1085 : TrackStatus=1
+TrackID =1271 : ParentID=1223 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -55.9422 -51.7965 -20.4807 keV
-Vertex : 0.189427 0.889584 -4.00583 m    Global time : 13.9222 ns 
+Original momentum : 18 -47.8121 17.0804 keV
+Vertex : 37.0027 12.9444 -5.95149 cm   Global time : 1.32877 ns 
   Current trajectory has 2 points.
-Point[0] Position= (189.427,889.584,-4005.83)
-Point[1] Position= (189.086,889.268,-4005.96)
+Point[0] Position= (370.027,129.444,-59.5149)
+Point[1] Position= (370.054,129.372,-59.4891)
 
-TrackID =1235 : ParentID=1085 : TrackStatus=1
+TrackID =1270 : ParentID=1223 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.526 37.9887 7.46881 keV
-Vertex : 0.174617 0.820241 -3.69422 m    Global time : 12.839 ns 
+Original momentum : -7.10428 35.2012 -27.9018 keV
+Vertex : 33.7357 11.8052 -6.29165 cm   Global time : 1.21272 ns 
   Current trajectory has 2 points.
-Point[0] Position= (174.617,820.241,-3694.22)
-Point[1] Position= (174.668,820.309,-3694.2)
+Point[0] Position= (337.357,118.052,-62.9165)
+Point[1] Position= (337.349,118.089,-62.9459)
 
-TrackID =1234 : ParentID=1085 : TrackStatus=1
+TrackID =1269 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.6138 -28.2728 -10.8326 keV
-Vertex : 0.17233 0.80949 -3.64598 m    Global time : 12.6714 ns 
+Original momentum : -15.9294 43.9539 4.00571 keV
+Vertex : -0.0135371 -0.257497 5.88077 m    Global time : 19.635 ns 
   Current trajectory has 2 points.
-Point[0] Position= (172.33,809.49,-3645.98)
-Point[1] Position= (172.247,809.433,-3646.01)
+Point[0] Position= (-13.5371,-257.497,5880.77)
+Point[1] Position= (-13.564,-257.423,5880.78)
 
-TrackID =1233 : ParentID=1085 : TrackStatus=1
+TrackID =1268 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 17.6624 -34.445 -8.45734 keV
-Vertex : 0.159165 0.747263 -3.36689 m    Global time : 11.7012 ns 
+Original momentum : 45.257 20.3336 3.39609 keV
+Vertex : -0.0135142 -0.257077 5.871 m    Global time : 19.6024 ns 
   Current trajectory has 2 points.
-Point[0] Position= (159.165,747.263,-3366.89)
-Point[1] Position= (159.185,747.224,-3366.9)
+Point[0] Position= (-13.5142,-257.077,5871)
+Point[1] Position= (-13.4265,-257.038,5871.01)
 
-TrackID =1232 : ParentID=1085 : TrackStatus=1
+TrackID =1267 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 74.7255 44.0751 5.69228 keV
-Vertex : 0.154785 0.726412 -3.2735 m    Global time : 11.3765 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (154.785,726.412,-3273.5)
-Point[1] Position= (155.365,726.754,-3273.45)
-Point[2] Position= (155.289,726.788,-3273.52)
-
-TrackID =1231 : ParentID=1085 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.9673 -47.79 -14.0615 keV
-Vertex : 0.151342 0.710095 -3.20049 m    Global time : 11.1227 ns 
+Original momentum : 28.6412 14.3093 1.68766 keV
+Vertex : -0.0132954 -0.253073 5.77775 m    Global time : 19.291 ns 
   Current trajectory has 2 points.
-Point[0] Position= (151.342,710.095,-3200.49)
-Point[1] Position= (151.312,709.994,-3200.52)
+Point[0] Position= (-13.2954,-253.073,5777.75)
+Point[1] Position= (-13.2746,-253.063,5777.75)
 
-TrackID =1230 : ParentID=1085 : TrackStatus=1
+TrackID =1266 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.1979 8.25537 2.19763 keV
-Vertex : 0.145619 0.683002 -3.07917 m    Global time : 10.7009 ns 
+Original momentum : 34.5229 -1.25587 1.19849 keV
+Vertex : -0.013032 -0.248312 5.66677 m    Global time : 18.9205 ns 
   Current trajectory has 2 points.
-Point[0] Position= (145.619,683.002,-3079.17)
-Point[1] Position= (145.649,683.01,-3079.17)
+Point[0] Position= (-13.032,-248.312,5666.77)
+Point[1] Position= (-13.0026,-248.313,5666.77)
 
-TrackID =1229 : ParentID=1085 : TrackStatus=1
+TrackID =1265 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.8266 43.2415 8.19259 keV
-Vertex : 0.144193 0.676276 -3.04904 m    Global time : 10.5962 ns 
+Original momentum : 28.806 -14.4759 0.462488 keV
+Vertex : -0.0125536 -0.239671 5.46562 m    Global time : 18.2489 ns 
   Current trajectory has 2 points.
-Point[0] Position= (144.193,676.276,-3049.04)
-Point[1] Position= (144.261,676.374,-3049.02)
+Point[0] Position= (-12.5536,-239.671,5465.62)
+Point[1] Position= (-12.5324,-239.682,5465.62)
 
-TrackID =1228 : ParentID=1085 : TrackStatus=1
+TrackID =1264 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -16.3148 -28.0199 -8.16047 keV
-Vertex : 0.141413 0.663177 -2.99036 m    Global time : 10.3922 ns 
+Original momentum : -18.9453 57.7247 6.08002 keV
+Vertex : -0.0125138 -0.238954 5.44896 m    Global time : 18.1933 ns 
   Current trajectory has 2 points.
-Point[0] Position= (141.413,663.177,-2990.36)
-Point[1] Position= (141.4,663.155,-2990.37)
+Point[0] Position= (-12.5138,-238.954,5448.96)
+Point[1] Position= (-12.5743,-238.769,5448.98)
 
-TrackID =1227 : ParentID=1085 : TrackStatus=1
+TrackID =1263 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.6654 -12.5844 -2.55512 keV
-Vertex : 0.137789 0.646122 -2.91389 m    Global time : 10.1263 ns 
+Original momentum : 28.4865 -48.2172 1.05401 keV
+Vertex : -0.0124002 -0.236916 5.40164 m    Global time : 18.0353 ns 
   Current trajectory has 2 points.
-Point[0] Position= (137.789,646.122,-2913.89)
-Point[1] Position= (137.823,646.109,-2913.89)
+Point[0] Position= (-12.4002,-236.916,5401.64)
+Point[1] Position= (-12.3266,-237.041,5401.65)
 
-TrackID =1226 : ParentID=1085 : TrackStatus=1
+TrackID =1262 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.7639 23.8228 1.49548 keV
-Vertex : 0.135701 0.636311 -2.86992 m    Global time : 9.97347 ns 
+Original momentum : 27.4447 -55.2995 1.40192 keV
+Vertex : -0.0123912 -0.236749 5.39777 m    Global time : 18.0224 ns 
   Current trajectory has 2 points.
-Point[0] Position= (135.701,636.311,-2869.92)
-Point[1] Position= (135.644,636.347,-2869.91)
+Point[0] Position= (-12.3912,-236.749,5397.77)
+Point[1] Position= (-12.301,-236.931,5397.78)
 
-TrackID =1225 : ParentID=1085 : TrackStatus=1
+TrackID =1261 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.9521 10.8605 -0.970244 keV
-Vertex : 0.120198 0.563341 -2.54276 m    Global time : 8.83619 ns 
+Original momentum : 19.8063 51.8066 5.30952 keV
+Vertex : -0.0121973 -0.233201 5.31542 m    Global time : 17.7474 ns 
   Current trajectory has 2 points.
-Point[0] Position= (120.198,563.341,-2542.76)
-Point[1] Position= (120.155,563.354,-2542.77)
-
-TrackID =1224 : ParentID=1085 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -73.9878 -616.563 -764.547 keV
-Vertex : 0.112756 0.528368 -2.38606 m    Global time : 8.29143 ns 
-  Current trajectory has 58 points.
-Point[0] Position= (112.756,528.368,-2386.06)
-Point[1] Position= (104.512,480.938,-2449.4)
-Point[2] Position= (98.5377,464.151,-2470.69)
-Point[3] Position= (81.8009,430.33,-2529.12)
-Point[4] Position= (72.8994,429.309,-2562.39)
-Point[5] Position= (-4.43452,462.488,-2713.02)
-Point[6] Position= (-22.7465,451.506,-2733.85)
-Point[7] Position= (-41.1613,423.751,-2761.84)
-Point[8] Position= (-247.2,297.403,-3054.73)
-Point[9] Position= (-287.924,281.447,-3075.87)
-Point[10] Position= (-327.182,277.828,-3092.74)
-Point[11] Position= (-370.31,250.701,-3128.19)
-Point[12] Position= (-371.454,250.317,-3128.94)
-Point[13] Position= (-375.79,249.058,-3131.57)
-Point[14] Position= (-394.694,238.04,-3145.27)
-Point[15] Position= (-418.007,226.496,-3167.64)
-Point[16] Position= (-432.764,221.293,-3180.02)
-Point[17] Position= (-434.952,220.328,-3182.88)
-Point[18] Position= (-436.079,219.746,-3184.28)
-Point[19] Position= (-543.747,140.177,-3386.89)
-Point[20] Position= (-528.066,144.017,-3426.4)
-Point[21] Position= (-512.016,137.542,-3461.39)
-Point[22] Position= (-509.005,137.804,-3465.12)
-Point[23] Position= (-507.965,137.783,-3466.48)
-Point[24] Position= (-488.92,139.32,-3491.46)
-Point[25] Position= (-482.146,137.97,-3496.23)
-Point[26] Position= (-475.047,135.735,-3499.2)
-Point[27] Position= (-406.184,127.072,-3527.42)
-Point[28] Position= (-295.818,117.022,-3550.02)
-Point[29] Position= (-291.832,109.984,-3549.72)
-Point[30] Position= (-276.774,84.3216,-3543.56)
-Point[31] Position= (-271.435,65.9502,-3531.9)
-Point[32] Position= (-264.101,43.846,-3515.31)
-Point[33] Position= (-268.807,18.2832,-3510.16)
-Point[34] Position= (-276.287,-1.10897,-3510.44)
-Point[35] Position= (-283.36,-32.9068,-3521.06)
-Point[36] Position= (-287.1,-46.3456,-3531.09)
-Point[37] Position= (-288.069,-47.3739,-3532.46)
-Point[38] Position= (-288.759,-48.0235,-3533.49)
-Point[39] Position= (-316.693,-60.1408,-3581.08)
-Point[40] Position= (-317.913,-60.7898,-3583.51)
-Point[41] Position= (-329.674,-71.2839,-3603.85)
-Point[42] Position= (-343.651,-100.849,-3614.31)
-Point[43] Position= (-352.823,-129.787,-3615.43)
-Point[44] Position= (-353.289,-130.89,-3614.41)
-Point[45] Position= (-358.53,-139.49,-3605.91)
-Point[46] Position= (-364.141,-148.145,-3600.06)
-Point[47] Position= (-374.551,-156.761,-3593.91)
-Point[48] Position= (-377.781,-158.478,-3592.6)
-Point[49] Position= (-388.681,-158.729,-3592.33)
-Point[50] Position= (-396.995,-157.71,-3594.59)
-Point[51] Position= (-402.461,-161.029,-3596.31)
-Point[52] Position= (-402.512,-160.9,-3600.94)
-Point[53] Position= (-401.892,-161.387,-3604.28)
-Point[54] Position= (-402.733,-160.777,-3606.83)
-Point[55] Position= (-402.103,-158.694,-3607.49)
-Point[56] Position= (-402.708,-157.961,-3607.07)
-Point[57] Position= (-402.869,-157.718,-3607.01)
-
-TrackID =1298 : ParentID=1224 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 43.271 10.5181 44.8997 keV
-Vertex : -0.402103 -0.158694 -3.60749 m    Global time : 17.218 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-402.103,-158.694,-3607.49)
-Point[1] Position= (-401.953,-158.657,-3607.33)
-
-TrackID =1297 : ParentID=1224 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.01078 -15.7095 61.9091 keV
-Vertex : -0.377781 -0.158478 -3.5926 m    Global time : 16.8508 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-377.781,-158.478,-3592.6)
-Point[1] Position= (-377.777,-158.534,-3592.38)
-
-TrackID =1296 : ParentID=1224 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.6656 25.6522 -16.3984 keV
-Vertex : -0.374551 -0.156761 -3.59391 m    Global time : 16.8216 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-374.551,-156.761,-3593.91)
-Point[1] Position= (-374.571,-156.736,-3593.93)
-
-TrackID =1295 : ParentID=1224 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.1144 -24.9093 6.64682 keV
-Vertex : -0.364141 -0.148145 -3.60006 m    Global time : 16.7155 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-364.141,-148.145,-3600.06)
-Point[1] Position= (-364.12,-148.167,-3600.06)
-
-TrackID =1294 : ParentID=1224 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.717 10.8592 -12.7824 keV
-Vertex : -0.35853 -0.13949 -3.60591 m    Global time : 16.6332 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-358.53,-139.49,-3605.91)
-Point[1] Position= (-358.557,-139.48,-3605.92)
-
-TrackID =1293 : ParentID=1224 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.329 -15.7708 2.58196 keV
-Vertex : -0.353289 -0.13089 -3.61441 m    Global time : 16.5456 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-353.289,-130.89,-3614.41)
-Point[1] Position= (-353.266,-130.902,-3614.4)
-
-TrackID =1292 : ParentID=1224 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.2554 -55.9217 -46.4461 keV
-Vertex : -0.352823 -0.129787 -3.61543 m    Global time : 16.5352 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-352.823,-129.787,-3615.43)
-Point[1] Position= (-352.679,-130.107,-3615.69)
+Point[0] Position= (-12.1973,-233.201,5315.42)
+Point[1] Position= (-12.1468,-233.069,5315.44)
 
-TrackID =1291 : ParentID=1224 : TrackStatus=1
+TrackID =1260 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -4.44395 2.31937 -31.7411 keV
-Vertex : -0.343651 -0.100849 -3.61431 m    Global time : 16.3499 ns 
+Original momentum : -42.3125 7.9459 2.06385 keV
+Vertex : -0.0119387 -0.228361 5.2032 m    Global time : 17.3728 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-343.651,-100.849,-3614.31)
-Point[1] Position= (-343.654,-100.847,-3614.33)
+Point[0] Position= (-11.9387,-228.361,5203.2)
+Point[1] Position= (-11.9975,-228.35,5203.2)
 
-TrackID =1290 : ParentID=1224 : TrackStatus=1
+TrackID =1259 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.3978 11.6253 18.9675 keV
-Vertex : -0.329674 -0.0712839 -3.60385 m    Global time : 16.1504 ns 
+Original momentum : -7.2403 36.706 2.94531 keV
+Vertex : -0.0118634 -0.226917 5.16971 m    Global time : 17.2609 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-329.674,-71.2839,-3603.85)
-Point[1] Position= (-329.74,-71.265,-3603.82)
+Point[0] Position= (-11.8634,-226.917,5169.71)
+Point[1] Position= (-11.8708,-226.879,5169.71)
 
-TrackID =1289 : ParentID=1224 : TrackStatus=1
+TrackID =1258 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.6106 25.5161 -25.7829 keV
-Vertex : -0.317913 -0.0607898 -3.58351 m    Global time : 16.0051 ns 
+Original momentum : -30.9038 -18.8184 0.400432 keV
+Vertex : -0.0118395 -0.226448 5.15885 m    Global time : 17.2247 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-317.913,-60.7898,-3583.51)
-Point[1] Position= (-317.887,-60.7568,-3583.54)
+Point[0] Position= (-11.8395,-226.448,5158.85)
+Point[1] Position= (-11.8686,-226.466,5158.85)
 
-TrackID =1288 : ParentID=1224 : TrackStatus=1
+TrackID =1257 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.8278 -98.2562 14.0624 keV
-Vertex : -0.288759 -0.0480235 -3.53349 m    Global time : 15.6866 ns 
+Original momentum : 22.6481 61.6296 6.96416 keV
+Vertex : -0.0117435 -0.224622 5.11654 m    Global time : 17.0834 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-288.759,-48.0235,-3533.49)
-Point[1] Position= (-288.635,-49.0536,-3533.35)
-Point[2] Position= (-288.364,-49.2571,-3533.41)
+Point[0] Position= (-11.7435,-224.622,5116.54)
+Point[1] Position= (-11.7094,-224.529,5116.55)
+Point[2] Position= (-11.7285,-224.409,5116.52)
 
-TrackID =1287 : ParentID=1224 : TrackStatus=1
+TrackID =1339 : ParentID=1257 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.2714 -35.5472 33.8598 keV
-Vertex : -0.288069 -0.0473739 -3.53246 m    Global time : 15.6792 ns 
+Original momentum : 29.2108 7.67776 13.0871 keV
+Vertex : -0.0117094 -0.224529 5.11655 m    Global time : 17.086 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-288.069,-47.3739,-3532.46)
-Point[1] Position= (-288.112,-47.4532,-3532.38)
+Point[0] Position= (-11.7094,-224.529,5116.55)
+Point[1] Position= (-11.687,-224.523,5116.56)
 
-TrackID =1286 : ParentID=1224 : TrackStatus=1
+TrackID =1256 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.0235 -16.1596 -7.51564 keV
-Vertex : -0.2871 -0.0463456 -3.53109 m    Global time : 15.669 ns 
+Original momentum : -52.392 14.3856 3.40447 keV
+Vertex : -0.0111955 -0.213618 4.86186 m    Global time : 16.2331 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-287.1,-46.3456,-3531.09)
-Point[1] Position= (-287.08,-46.3576,-3531.09)
+Point[0] Position= (-11.1955,-213.618,4861.86)
+Point[1] Position= (-11.3218,-213.583,4861.87)
 
-TrackID =1285 : ParentID=1224 : TrackStatus=1
+TrackID =1255 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.56459 -32.1373 43.6989 keV
-Vertex : -0.28336 -0.0329068 -3.52106 m    Global time : 15.5808 ns 
+Original momentum : 22.8915 -36.4509 0.287309 keV
+Vertex : -0.0111223 -0.212139 4.82763 m    Global time : 16.1188 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-283.36,-32.9068,-3521.06)
-Point[1] Position= (-283.376,-32.985,-3520.96)
+Point[0] Position= (-11.1223,-212.139,4827.63)
+Point[1] Position= (-11.0906,-212.19,4827.63)
 
-TrackID =1284 : ParentID=1224 : TrackStatus=1
+TrackID =1254 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -49.5419 13.3818 -10.3499 keV
-Vertex : -0.276287 -0.00110897 -3.51044 m    Global time : 15.4086 ns 
+Original momentum : -37.8101 8.70088 1.77095 keV
+Vertex : -0.0110694 -0.21106 4.80264 m    Global time : 16.0354 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-276.287,-1.10897,-3510.44)
-Point[1] Position= (-276.396,-1.07963,-3510.47)
+Point[0] Position= (-11.0694,-211.06,4802.64)
+Point[1] Position= (-11.1111,-211.051,4802.64)
 
-TrackID =1283 : ParentID=1224 : TrackStatus=1
+TrackID =1253 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.6031 -10.5527 -32.9756 keV
-Vertex : -0.268807 0.0182832 -3.51016 m    Global time : 15.3059 ns 
+Original momentum : -10.9367 -66.089 1.50039 keV
+Vertex : -0.011044 -0.210544 4.79068 m    Global time : 15.9954 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-268.807,18.2832,-3510.16)
-Point[1] Position= (-268.769,18.2681,-3510.21)
+Point[0] Position= (-11.044,-210.544,4790.68)
+Point[1] Position= (-11.088,-210.81,4790.68)
 
-TrackID =1282 : ParentID=1224 : TrackStatus=1
+TrackID =1252 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.4378 14.4586 54.3969 keV
-Vertex : -0.264101 0.043846 -3.51531 m    Global time : 15.1764 ns 
+Original momentum : -27.7807 -26.1387 0.233217 keV
+Vertex : -0.0109485 -0.208631 4.7464 m    Global time : 15.8476 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-264.101,43.846,-3515.31)
-Point[1] Position= (-264.195,43.8951,-3515.13)
+Point[0] Position= (-10.9485,-208.631,4746.4)
+Point[1] Position= (-10.9779,-208.659,4746.4)
 
-TrackID =1281 : ParentID=1224 : TrackStatus=1
+TrackID =1251 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.9537 7.959 22.4519 keV
-Vertex : -0.271435 0.0659502 -3.5319 m    Global time : 15.039 ns 
+Original momentum : -30.6845 28.06 2.84333 keV
+Vertex : -0.0108952 -0.20758 4.72207 m    Global time : 15.7664 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-271.435,65.9502,-3531.9)
-Point[1] Position= (-271.456,65.957,-3531.88)
+Point[0] Position= (-10.8952,-207.58,4722.07)
+Point[1] Position= (-10.9348,-207.544,4722.07)
 
-TrackID =1280 : ParentID=1224 : TrackStatus=1
+TrackID =1250 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.1256 -10.5049 -27.3327 keV
-Vertex : -0.276774 0.0843216 -3.54356 m    Global time : 14.9319 ns 
+Original momentum : -46.1806 -3.11795 1.85646 keV
+Vertex : -0.0102289 -0.194798 4.42608 m    Global time : 14.7782 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-276.774,84.3216,-3543.56)
-Point[1] Position= (-276.745,84.3097,-3543.59)
+Point[0] Position= (-10.2289,-194.798,4426.08)
+Point[1] Position= (-10.3046,-194.803,4426.08)
 
-TrackID =1279 : ParentID=1224 : TrackStatus=1
+TrackID =1249 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.1406 -26.9604 -23.9526 keV
-Vertex : -0.291832 0.109984 -3.54972 m    Global time : 14.7886 ns 
+Original momentum : -32.6068 -33.1005 0.605313 keV
+Vertex : -0.0101848 -0.193966 4.40683 m    Global time : 14.7139 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-291.832,109.984,-3549.72)
-Point[1] Position= (-291.898,109.932,-3549.76)
+Point[0] Position= (-10.1848,-193.966,4406.83)
+Point[1] Position= (-10.2387,-194.02,4406.83)
 
-TrackID =1278 : ParentID=1224 : TrackStatus=1
+TrackID =1248 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 39.1848 19.2677 -34.5459 keV
-Vertex : -0.295818 0.117022 -3.55002 m    Global time : 14.7506 ns 
+Original momentum : 35.367 -4.69772 1.12301 keV
+Vertex : -0.00954415 -0.181653 4.12256 m    Global time : 13.7648 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-295.818,117.022,-3550.02)
-Point[1] Position= (-295.718,117.072,-3550.11)
+Point[0] Position= (-9.54415,-181.653,4122.56)
+Point[1] Position= (-9.51179,-181.658,4122.56)
 
-TrackID =1277 : ParentID=1224 : TrackStatus=1
+TrackID =1247 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.5192 -19.4562 -48.8566 keV
-Vertex : -0.406184 0.127072 -3.52742 m    Global time : 14.2365 ns 
+Original momentum : 39.9346 -20.0551 1.17194 keV
+Vertex : -0.00896644 -0.17073 3.87079 m    Global time : 12.9242 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-406.184,127.072,-3527.42)
-Point[1] Position= (-406.208,127.027,-3527.53)
+Point[0] Position= (-8.96644,-170.73,3870.79)
+Point[1] Position= (-8.90611,-170.76,3870.79)
 
-TrackID =1276 : ParentID=1224 : TrackStatus=1
+TrackID =1246 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.37099 -46.6209 -8.83417 keV
-Vertex : -0.475047 0.135735 -3.4992 m    Global time : 13.9033 ns 
+Original momentum : 43.6913 9.06414 2.45021 keV
+Vertex : -0.00839567 -0.159728 3.61751 m    Global time : 12.0785 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-475.047,135.735,-3499.2)
-Point[1] Position= (-475.062,135.651,-3499.22)
+Point[0] Position= (-8.39567,-159.728,3617.51)
+Point[1] Position= (-8.32972,-159.714,3617.51)
 
-TrackID =1275 : ParentID=1224 : TrackStatus=1
+TrackID =1245 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.4598 -33.3628 -22.672 keV
-Vertex : -0.48892 0.13932 -3.49146 m    Global time : 13.8306 ns 
+Original momentum : 15.6963 -39.2037 0.0649064 keV
+Vertex : -0.00757498 -0.143927 3.2552 m    Global time : 10.8688 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-488.92,139.32,-3491.46)
-Point[1] Position= (-488.954,139.267,-3491.5)
+Point[0] Position= (-7.57498,-143.927,3255.2)
+Point[1] Position= (-7.55413,-143.979,3255.2)
 
-TrackID =1274 : ParentID=1224 : TrackStatus=1
+TrackID =1244 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.90947 -36.4471 -0.781645 keV
-Vertex : -0.507965 0.137783 -3.46648 m    Global time : 13.6926 ns 
+Original momentum : -31.89 39.0697 4.1394 keV
+Vertex : -0.00727214 -0.137938 3.11834 m    Global time : 10.4119 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-507.965,137.783,-3466.48)
-Point[1] Position= (-507.962,137.748,-3466.48)
+Point[0] Position= (-7.27214,-137.938,3118.34)
+Point[1] Position= (-7.33657,-137.859,3118.35)
 
-TrackID =1273 : ParentID=1224 : TrackStatus=1
+TrackID =1243 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 17.7515 25.7296 12.5806 keV
-Vertex : -0.509005 0.137804 -3.46512 m    Global time : 13.6851 ns 
+Original momentum : 29.0709 -36.8072 0.597931 keV
+Vertex : -0.00708511 -0.134234 3.03382 m    Global time : 10.1297 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-509.005,137.804,-3465.12)
-Point[1] Position= (-508.99,137.824,-3465.11)
+Point[0] Position= (-7.08511,-134.234,3033.82)
+Point[1] Position= (-7.03603,-134.296,3033.82)
 
-TrackID =1272 : ParentID=1224 : TrackStatus=1
+TrackID =1242 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.8166 -38.7393 -16.6382 keV
-Vertex : -0.512016 0.137542 -3.46139 m    Global time : 13.6641 ns 
+Original momentum : -31.4921 -18.7213 0.425525 keV
+Vertex : -0.00698055 -0.132079 2.98475 m    Global time : 9.96582 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-512.016,137.542,-3461.39)
-Point[1] Position= (-512.04,137.483,-3461.41)
+Point[0] Position= (-6.98055,-132.079,2984.75)
+Point[1] Position= (-7.01107,-132.097,2984.75)
 
-TrackID =1271 : ParentID=1224 : TrackStatus=1
+TrackID =1241 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 5.2749 40.3881 -5.92304 keV
-Vertex : -0.528066 0.144017 -3.4264 m    Global time : 13.495 ns 
+Original momentum : 1.28153 -51.7211 0.350527 keV
+Vertex : -0.00681306 -0.128646 2.90644 m    Global time : 9.70437 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-528.066,144.017,-3426.4)
-Point[1] Position= (-528.059,144.068,-3426.4)
+Point[0] Position= (-6.81306,-128.646,2906.44)
+Point[1] Position= (-6.81033,-128.756,2906.44)
 
-TrackID =1270 : ParentID=1224 : TrackStatus=1
+TrackID =1240 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.91886 33.8403 -16.1971 keV
-Vertex : -0.436079 0.219746 -3.18428 m    Global time : 12.3228 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-436.079,219.746,-3184.28)
-Point[1] Position= (-436.081,219.78,-3184.3)
+Original momentum : -36.6536 68.8645 8.94754 keV
+Vertex : -0.00651156 -0.122547 2.76753 m    Global time : 9.24056 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-6.51156,-122.547,2767.53)
+Point[1] Position= (-6.73197,-122.133,2767.58)
+Point[2] Position= (-6.76941,-122.112,2767.57)
 
-TrackID =1269 : ParentID=1224 : TrackStatus=1
+TrackID =1239 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 43.3853 6.42876 -39.871 keV
-Vertex : -0.434952 0.220328 -3.18288 m    Global time : 12.315 ns 
+Original momentum : 21.9062 37.2663 3.52151 keV
+Vertex : -0.00613537 -0.114913 2.59354 m    Global time : 8.65965 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-434.952,220.328,-3182.88)
-Point[1] Position= (-434.823,220.347,-3183)
+Point[0] Position= (-6.13537,-114.913,2593.54)
+Point[1] Position= (-6.10448,-114.861,2593.55)
 
-TrackID =1268 : ParentID=1224 : TrackStatus=1
+TrackID =1238 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -50.2897 -22.4771 39.5213 keV
-Vertex : -0.432764 0.221293 -3.18002 m    Global time : 12.2996 ns 
+Original momentum : 39.4955 -42.3062 1.50603 keV
+Vertex : -0.00603367 -0.112917 2.548 m    Global time : 8.50759 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-432.764,221.293,-3180.02)
-Point[1] Position= (-432.973,221.199,-3179.86)
+Point[0] Position= (-6.03367,-112.917,2548)
+Point[1] Position= (-5.923,-113.036,2548.01)
 
-TrackID =1267 : ParentID=1224 : TrackStatus=1
+TrackID =1237 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.0543 -44.5463 29.7496 keV
-Vertex : -0.418007 0.226496 -3.16764 m    Global time : 12.2177 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-418.007,226.496,-3167.64)
-Point[1] Position= (-418.034,226.388,-3167.56)
+Original momentum : -20.3677 97.0782 13.9422 keV
+Vertex : -0.00591467 -0.110548 2.49395 m    Global time : 8.32711 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-5.91467,-110.548,2493.95)
+Point[1] Position= (-6.12903,-109.527,2494.09)
+Point[2] Position= (-6.14267,-109.419,2493.78)
 
-TrackID =1266 : ParentID=1224 : TrackStatus=1
+TrackID =1236 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -126.691 121.662 29.9262 keV
-Vertex : -0.394694 0.23804 -3.14527 m    Global time : 12.0786 ns 
-  Current trajectory has 9 points.
-Point[0] Position= (-394.694,238.04,-3145.27)
-Point[1] Position= (-397.415,240.653,-3144.63)
-Point[2] Position= (-397.631,240.833,-3144.4)
-Point[3] Position= (-399.23,240.839,-3142.28)
-Point[4] Position= (-400.782,242.207,-3142.24)
-Point[5] Position= (-400.534,241.277,-3143.11)
-Point[6] Position= (-400.416,241.252,-3143.55)
-Point[7] Position= (-400.338,241.376,-3143.54)
-Point[8] Position= (-400.309,241.367,-3143.56)
+Original momentum : 21.9368 -25.7109 0.0386947 keV
+Vertex : -0.00589683 -0.110189 2.48573 m    Global time : 8.29968 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-5.89683,-110.189,2485.73)
+Point[1] Position= (-5.87902,-110.21,2485.73)
 
-TrackID =1301 : ParentID=1266 : TrackStatus=1
+TrackID =1235 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -17.5124 15.2158 -43.0146 keV
-Vertex : -0.400416 0.241252 -3.14355 m    Global time : 12.2119 ns 
+Original momentum : -4.62803 43.9268 3.83461 keV
+Vertex : -0.00574836 -0.107256 2.41882 m    Global time : 8.07627 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-400.416,241.252,-3143.55)
-Point[1] Position= (-400.449,241.28,-3143.63)
+Point[0] Position= (-5.74836,-107.256,2418.82)
+Point[1] Position= (-5.75522,-107.191,2418.83)
 
-TrackID =1300 : ParentID=1266 : TrackStatus=1
+TrackID =1234 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.46833 48.7012 -0.844228 keV
-Vertex : -0.397631 0.240833 -3.1444 m    Global time : 12.1215 ns 
+Original momentum : -34.127 -3.31511 0.929749 keV
+Vertex : -0.00574346 -0.10716 2.41662 m    Global time : 8.06892 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-397.631,240.833,-3144.4)
-Point[1] Position= (-397.633,240.923,-3144.41)
+Point[0] Position= (-5.74346,-107.16,2416.62)
+Point[1] Position= (-5.77207,-107.163,2416.62)
 
-TrackID =1299 : ParentID=1266 : TrackStatus=1
+TrackID =1233 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.2326 -32.3892 -7.39862 keV
-Vertex : -0.397415 0.240653 -3.14463 m    Global time : 12.1174 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-397.415,240.653,-3144.63)
-Point[1] Position= (-397.479,240.594,-3144.64)
+Original momentum : -102.566 -1.20933 10.0138 keV
+Vertex : -0.00562822 -0.104909 2.36518 m    Global time : 7.89717 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-5.62822,-104.909,2365.18)
+Point[1] Position= (-6.59352,-104.921,2365.27)
+Point[2] Position= (-7.08276,-104.917,2365.22)
+Point[3] Position= (-7.09393,-104.905,2365.22)
 
-TrackID =1265 : ParentID=1224 : TrackStatus=1
+TrackID =1340 : ParentID=1233 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.3873 10.0986 30.3317 keV
-Vertex : -0.37579 0.249058 -3.13157 m    Global time : 11.9759 ns 
+Original momentum : -3.62234 5.38818 33.3022 keV
+Vertex : -0.00659352 -0.104921 2.36527 m    Global time : 7.91353 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-375.79,249.058,-3131.57)
-Point[1] Position= (-375.826,249.071,-3131.53)
+Point[0] Position= (-6.59352,-104.921,2365.27)
+Point[1] Position= (-6.59648,-104.916,2365.3)
 
-TrackID =1264 : ParentID=1224 : TrackStatus=1
+TrackID =1232 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 17.8102 77.0117 -79.7886 keV
-Vertex : -0.37031 0.250701 -3.12819 m    Global time : 11.9493 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-370.31,250.701,-3128.19)
-Point[1] Position= (-370.237,251.017,-3128.52)
-Point[2] Position= (-369.93,251.791,-3129.2)
-Point[3] Position= (-369.774,252.049,-3129.28)
+Original momentum : 151.18 50.5299 27.5706 keV
+Vertex : -0.00527553 -0.0980356 2.20838 m    Global time : 7.37364 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (-5.27553,-98.0356,2208.38)
+Point[1] Position= (-3.99268,-97.6068,2208.62)
+Point[2] Position= (-2.53068,-96.6251,2209.01)
+Point[3] Position= (-2.40863,-96.4315,2210.85)
+Point[4] Position= (-2.58851,-96.4925,2211.91)
+Point[5] Position= (-2.24367,-96.1961,2211.89)
 
-TrackID =1302 : ParentID=1264 : TrackStatus=1
+TrackID =1342 : ParentID=1232 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.48548 -28.1414 -28.9217 keV
-Vertex : -0.370237 0.251017 -3.12852 m    Global time : 11.9564 ns 
+Original momentum : 34.1877 44.6678 -6.55865 keV
+Vertex : -0.00253068 -0.0966251 2.20901 m    Global time : 7.41009 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-370.237,251.017,-3128.52)
-Point[1] Position= (-370.228,250.982,-3128.56)
+Point[0] Position= (-2.53068,-96.6251,2209.01)
+Point[1] Position= (-2.43994,-96.5065,2208.99)
 
-TrackID =1263 : ParentID=1224 : TrackStatus=1
+TrackID =1341 : ParentID=1232 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.4861 -2.33603 40.0173 keV
-Vertex : -0.327182 0.277828 -3.09274 m    Global time : 11.707 ns 
+Original momentum : 18.6263 -12.5294 -37.0468 keV
+Vertex : -0.00399268 -0.0976068 2.20862 m    Global time : 7.38881 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-327.182,277.828,-3092.74)
-Point[1] Position= (-327.227,277.824,-3092.67)
+Point[0] Position= (-3.99268,-97.6068,2208.62)
+Point[1] Position= (-3.96649,-97.6244,2208.56)
 
-TrackID =1262 : ParentID=1224 : TrackStatus=1
+TrackID =1231 : ParentID=1229 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.23743 52.7417 -38.2187 keV
-Vertex : -0.2472 0.297403 -3.05473 m    Global time : 11.3514 ns 
+Original momentum : -157.044 92.6376 36.5338 keV
+Vertex : -0.00522917 -0.0970916 2.18688 m    Global time : 7.30184 ns 
+  Current trajectory has 9 points.
+Point[0] Position= (-5.22917,-97.0916,2186.88)
+Point[1] Position= (-6.16755,-96.5381,2187.1)
+Point[2] Position= (-10.2569,-94.4338,2186.45)
+Point[3] Position= (-12.6044,-92.1198,2185.19)
+Point[4] Position= (-14.8545,-90.5749,2184.68)
+Point[5] Position= (-13.9268,-91.0187,2185.42)
+Point[6] Position= (-14.0005,-91.3299,2185.87)
+Point[7] Position= (-13.4628,-91.7261,2186.12)
+Point[8] Position= (-13.4635,-91.7165,2186.12)
+
+TrackID =1345 : ParentID=1231 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -24.5274 -22.4718 16.892 keV
+Vertex : -0.0140005 -0.0913299 2.18587 m    Global time : 7.45926 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-14.0005,-91.3299,2185.87)
+Point[1] Position= (-14.0252,-91.3526,2185.88)
+
+TrackID =1344 : ParentID=1231 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 9.01456 -28.5845 -18.094 keV
+Vertex : -0.0139268 -0.0910187 2.18542 m    Global time : 7.45037 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-13.9268,-91.0187,2185.42)
+Point[1] Position= (-13.9189,-91.0438,2185.4)
+
+TrackID =1343 : ParentID=1231 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 8.07337 23.3899 23.5752 keV
+Vertex : -0.00616755 -0.0965381 2.1871 m    Global time : 7.31268 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-6.16755,-96.5381,2187.1)
+Point[1] Position= (-6.16083,-96.5186,2187.11)
+
+TrackID =1228 : ParentID=1189 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -0.00421001 -0.068081 1.50411 GeV
+Vertex : -0.00461004 -0.0846211 1.90259 m    Global time : 6.35266 ns 
+  Current trajectory has 33 points.
+Point[0] Position= (-4.61004,-84.6211,1902.59)
+Point[1] Position= (-6.59034,-118.828,2664.14)
+Point[2] Position= (-7.06287,-127.713,2862.83)
+Point[3] Position= (-7.91149,-146.009,3271.7)
+Point[4] Position= (-7.9259,-146.315,3278.53)
+Point[5] Position= (-8.54886,-158.571,3551.1)
+Point[6] Position= (-8.86034,-164.472,3682.04)
+Point[7] Position= (-9.29413,-173.38,3879.75)
+Point[8] Position= (-9.33637,-174.303,3900.18)
+Point[9] Position= (-9.34856,-174.563,3905.95)
+Point[10] Position= (-9.43728,-176.525,3949.44)
+Point[11] Position= (-9.59449,-180.277,4032.56)
+Point[12] Position= (-9.77291,-184.718,4130.93)
+Point[13] Position= (-9.82837,-186.177,4163.25)
+Point[14] Position= (-10.1383,-194.127,4339.06)
+Point[15] Position= (-10.1651,-194.868,4355.45)
+Point[16] Position= (-10.2884,-198.125,4427.38)
+Point[17] Position= (-10.6916,-207.754,4640.37)
+Point[18] Position= (-10.9161,-212.553,4746.75)
+Point[19] Position= (-10.9785,-213.85,4775.52)
+Point[20] Position= (-10.9931,-214.161,4782.43)
+Point[21] Position= (-11.1332,-217.188,4849.59)
+Point[22] Position= (-11.5905,-226.952,5065.53)
+Point[23] Position= (-11.8796,-232.773,5193.71)
+Point[24] Position= (-12.4528,-244.731,5458.1)
+Point[25] Position= (-12.4877,-245.501,5475.08)
+Point[26] Position= (-12.4957,-245.68,5479.02)
+Point[27] Position= (-12.8327,-253.323,5647.52)
+Point[28] Position= (-12.9551,-255.962,5705.67)
+Point[29] Position= (-13.0883,-258.82,5768.53)
+Point[30] Position= (-13.2603,-262.382,5846.62)
+Point[31] Position= (-13.5505,-268.199,5974.21)
+Point[32] Position= (-13.6092,-269.377,6000)
+
+TrackID =1376 : ParentID=1228 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 6.62377 41.9645 3.70976 keV
+Vertex : -0.0135505 -0.268199 5.97421 m    Global time : 19.9479 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-13.5505,-268.199,5974.21)
+Point[1] Position= (-13.5415,-268.142,5974.22)
+
+TrackID =1375 : ParentID=1228 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 30.1114 19.2456 2.19978 keV
+Vertex : -0.0132603 -0.262382 5.84662 m    Global time : 19.5219 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-13.2603,-262.382,5846.62)
+Point[1] Position= (-13.2326,-262.364,5846.62)
+
+TrackID =1374 : ParentID=1228 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 45.715 104.824 17.8298 keV
+Vertex : -0.0130883 -0.25882 5.76853 m    Global time : 19.2612 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-247.2,297.403,-3054.73)
-Point[1] Position= (-247.179,297.551,-3054.84)
-Point[2] Position= (-247.143,297.52,-3054.91)
+Point[0] Position= (-13.0883,-258.82,5768.53)
+Point[1] Position= (-12.4937,-257.457,5768.77)
+Point[2] Position= (-12.1475,-257.324,5768.66)
 
-TrackID =1303 : ParentID=1262 : TrackStatus=1
+TrackID =1377 : ParentID=1374 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.4569 27.7755 -1.53077 keV
-Vertex : -0.247179 0.297551 -3.05484 m    Global time : 11.3562 ns 
+Original momentum : -20.5333 7.41015 -60.7952 keV
+Vertex : -0.0124937 -0.257457 5.76877 m    Global time : 19.2839 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-247.179,297.551,-3054.84)
-Point[1] Position= (-247.162,297.574,-3054.84)
+Point[0] Position= (-12.4937,-257.457,5768.77)
+Point[1] Position= (-12.5691,-257.429,5768.54)
 
-TrackID =1261 : ParentID=1224 : TrackStatus=1
+TrackID =1373 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.7674 -5.09703 -19.285 keV
-Vertex : -0.0411613 0.423751 -2.76184 m    Global time : 9.99512 ns 
+Original momentum : 33.932 16.5368 2.22168 keV
+Vertex : -0.0129551 -0.255962 5.70567 m    Global time : 19.0512 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-41.1613,423.751,-2761.84)
-Point[1] Position= (-41.1402,423.747,-2761.85)
+Point[0] Position= (-12.9551,-255.962,5705.67)
+Point[1] Position= (-12.9199,-255.944,5705.67)
 
-TrackID =1260 : ParentID=1224 : TrackStatus=1
+TrackID =1372 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.6934 58.2479 -40.0804 keV
-Vertex : -0.0227465 0.451506 -2.73385 m    Global time : 9.82929 ns 
+Original momentum : 13.8797 -50.5897 0.4247 keV
+Vertex : -0.0128327 -0.253323 5.64752 m    Global time : 18.8571 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-22.7465,451.506,-2733.85)
-Point[1] Position= (-22.9069,451.831,-2734.08)
+Point[0] Position= (-12.8327,-253.323,5647.52)
+Point[1] Position= (-12.8021,-253.434,5647.52)
 
-TrackID =1259 : ParentID=1224 : TrackStatus=1
+TrackID =1371 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.1217 43.6805 -35.1894 keV
-Vertex : -0.00443452 0.462488 -2.71302 m    Global time : 9.71563 ns 
+Original momentum : 11.7164 33.3406 2.76655 keV
+Vertex : -0.0124957 -0.24568 5.47902 m    Global time : 18.2945 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-4.43452,462.488,-2713.02)
-Point[1] Position= (-4.40429,462.606,-2713.12)
+Point[0] Position= (-12.4957,-245.68,5479.02)
+Point[1] Position= (-12.4852,-245.65,5479.02)
 
-TrackID =1258 : ParentID=1224 : TrackStatus=1
+TrackID =1370 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.9587 -28.8278 -8.98431 keV
-Vertex : 0.0818009 0.43033 -2.52912 m    Global time : 8.95594 ns 
+Original momentum : 34.1258 -40.4459 0.970218 keV
+Vertex : -0.0124877 -0.245501 5.47508 m    Global time : 18.2813 ns 
   Current trajectory has 2 points.
-Point[0] Position= (81.8009,430.33,-2529.12)
-Point[1] Position= (81.8231,430.301,-2529.13)
+Point[0] Position= (-12.4877,-245.501,5475.08)
+Point[1] Position= (-12.4108,-245.593,5475.08)
 
-TrackID =1257 : ParentID=1224 : TrackStatus=1
+TrackID =1369 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.9177 -12.3852 -4.11407 keV
-Vertex : 0.0985377 0.464151 -2.47069 m    Global time : 8.69439 ns 
+Original momentum : -31.9356 4.39734 1.15145 keV
+Vertex : -0.0124528 -0.244731 5.4581 m    Global time : 18.2246 ns 
   Current trajectory has 2 points.
-Point[0] Position= (98.5377,464.151,-2470.69)
-Point[1] Position= (98.5603,464.142,-2470.7)
+Point[0] Position= (-12.4528,-244.731,5458.1)
+Point[1] Position= (-12.4762,-244.727,5458.1)
 
-TrackID =1256 : ParentID=1224 : TrackStatus=1
+TrackID =1368 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.2621 -17.418 20.7898 keV
-Vertex : 0.104512 0.480938 -2.4494 m    Global time : 8.59008 ns 
+Original momentum : 7.89778 -33.4764 -0.341492 keV
+Vertex : -0.0118796 -0.232773 5.19371 m    Global time : 17.3418 ns 
   Current trajectory has 2 points.
-Point[0] Position= (104.512,480.938,-2449.4)
-Point[1] Position= (104.489,480.921,-2449.38)
+Point[0] Position= (-11.8796,-232.773,5193.71)
+Point[1] Position= (-11.8729,-232.801,5193.71)
 
-TrackID =1223 : ParentID=1085 : TrackStatus=1
+TrackID =1367 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -48.1158 -48.8879 -18.2956 keV
-Vertex : 0.108367 0.507912 -2.29404 m    Global time : 7.97158 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (108.367,507.912,-2294.04)
-Point[1] Position= (108.143,507.685,-2294.13)
+Original momentum : -92.3076 -23.0395 7.59555 keV
+Vertex : -0.0115905 -0.226952 5.06553 m    Global time : 16.9138 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-11.5905,-226.952,5065.53)
+Point[1] Position= (-11.7488,-226.992,5065.54)
+Point[2] Position= (-11.8791,-227.284,5065.81)
 
-TrackID =1222 : ParentID=1085 : TrackStatus=1
+TrackID =1378 : ParentID=1367 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -56.8891 -3.32654 -6.79978 keV
-Vertex : 0.107197 0.502461 -2.26955 m    Global time : 7.88647 ns 
+Original momentum : -40.0436 33.9121 17.9831 keV
+Vertex : -0.0117488 -0.226992 5.06554 m    Global time : 16.9167 ns 
   Current trajectory has 2 points.
-Point[0] Position= (107.197,502.461,-2269.55)
-Point[1] Position= (107.041,502.452,-2269.57)
+Point[0] Position= (-11.7488,-226.992,5065.54)
+Point[1] Position= (-11.8498,-226.906,5065.58)
 
-TrackID =1221 : ParentID=1085 : TrackStatus=1
+TrackID =1366 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.3259 -12.5257 -6.55707 keV
-Vertex : 0.096077 0.450419 -2.03568 m    Global time : 7.07357 ns 
+Original momentum : 24.7408 -21.7569 0.132479 keV
+Vertex : -0.0111332 -0.217188 4.84959 m    Global time : 16.1928 ns 
   Current trajectory has 2 points.
-Point[0] Position= (96.077,450.419,-2035.68)
-Point[1] Position= (96.022,450.402,-2035.69)
+Point[0] Position= (-11.1332,-217.188,4849.59)
+Point[1] Position= (-11.1142,-217.204,4849.59)
 
-TrackID =1220 : ParentID=1085 : TrackStatus=1
+TrackID =1365 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.7487 -15.931 -7.21918 keV
-Vertex : 0.0957098 0.448696 -2.02794 m    Global time : 7.04664 ns 
+Original momentum : 39.2275 -12.4958 1.17925 keV
+Vertex : -0.0109931 -0.214161 4.78243 m    Global time : 15.9685 ns 
   Current trajectory has 2 points.
-Point[0] Position= (95.7098,448.696,-2027.94)
-Point[1] Position= (95.6576,448.674,-2027.95)
+Point[0] Position= (-10.9931,-214.161,4782.43)
+Point[1] Position= (-10.9439,-214.177,4782.44)
 
-TrackID =1219 : ParentID=1085 : TrackStatus=1
+TrackID =1364 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.2231 41.206 7.48863 keV
-Vertex : 0.0884723 0.41462 -1.87479 m    Global time : 6.51435 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (88.4723,414.62,-1874.79)
-Point[1] Position= (88.4753,414.673,-1874.78)
+Original momentum : -98.3818 -9.36097 8.92386 keV
+Vertex : -0.0109785 -0.21385 4.77552 m    Global time : 15.9454 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-10.9785,-213.85,4775.52)
+Point[1] Position= (-11.9956,-213.947,4775.62)
+Point[2] Position= (-11.9673,-214.08,4775.47)
 
-TrackID =1319 : ParentID=1218 : TrackStatus=1
+TrackID =1362 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 47.4524 10.6627 2.71143 keV
-Vertex : 0.143843 -0.465655 -1.88763 m    Global time : 9.75391 ns 
+Original momentum : 16.4058 71.6797 8.61039 keV
+Vertex : -0.0106916 -0.207754 4.64037 m    Global time : 15.4942 ns 
   Current trajectory has 2 points.
-Point[0] Position= (143.843,-465.655,-1887.63)
-Point[1] Position= (143.931,-465.635,-1887.63)
+Point[0] Position= (-10.6916,-207.754,4640.37)
+Point[1] Position= (-10.6067,-207.383,4640.41)
 
-TrackID =1318 : ParentID=1218 : TrackStatus=1
+TrackID =1361 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.6772 26.0089 51.6491 keV
-Vertex : 0.140491 -0.396809 -1.90089 m    Global time : 9.42657 ns 
+Original momentum : 16.6721 35.3156 3.13365 keV
+Vertex : -0.0102884 -0.198125 4.42738 m    Global time : 14.783 ns 
   Current trajectory has 2 points.
-Point[0] Position= (140.491,-396.809,-1900.89)
-Point[1] Position= (140.58,-396.718,-1900.71)
+Point[0] Position= (-10.2884,-198.125,4427.38)
+Point[1] Position= (-10.2696,-198.086,4427.38)
 
-TrackID =1317 : ParentID=1218 : TrackStatus=1
+TrackID =1360 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.9784 -20.0919 -4.50161 keV
-Vertex : 0.139055 -0.392971 -1.90411 m    Global time : 9.40176 ns 
+Original momentum : 1.52553 49.077 4.59844 keV
+Vertex : -0.0101651 -0.194868 4.35545 m    Global time : 14.5428 ns 
   Current trajectory has 2 points.
-Point[0] Position= (139.055,-392.971,-1904.11)
-Point[1] Position= (139.019,-392.994,-1904.11)
+Point[0] Position= (-10.1651,-194.868,4355.45)
+Point[1] Position= (-10.1622,-194.775,4355.46)
 
-TrackID =1316 : ParentID=1218 : TrackStatus=1
+TrackID =1359 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.2813 -12.7648 -33.7194 keV
-Vertex : 0.121129 -0.371688 -1.9126 m    Global time : 9.26774 ns 
+Original momentum : -1.57159 -36.6989 -0.343094 keV
+Vertex : -0.0101383 -0.194127 4.33906 m    Global time : 14.4881 ns 
   Current trajectory has 2 points.
-Point[0] Position= (121.129,-371.688,-1912.6)
-Point[1] Position= (121.14,-371.701,-1912.64)
+Point[0] Position= (-10.1383,-194.127,4339.06)
+Point[1] Position= (-10.1398,-194.163,4339.06)
 
-TrackID =1315 : ParentID=1218 : TrackStatus=1
+TrackID =1358 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.6741 17.3143 22.8598 keV
-Vertex : 0.088302 -0.328186 -1.92391 m    Global time : 9.01048 ns 
+Original momentum : -39.26 32.2858 3.93064 keV
+Vertex : -0.00982837 -0.186177 4.16325 m    Global time : 13.901 ns 
   Current trajectory has 2 points.
-Point[0] Position= (88.302,-328.186,-1923.91)
-Point[1] Position= (88.3297,-328.167,-1923.89)
+Point[0] Position= (-9.82837,-186.177,4163.25)
+Point[1] Position= (-9.90913,-186.11,4163.26)
 
-TrackID =1314 : ParentID=1218 : TrackStatus=1
+TrackID =1357 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.5939 7.15167 -21.6797 keV
-Vertex : 0.073026 -0.208818 -1.89957 m    Global time : 8.47943 ns 
+Original momentum : 35.0019 5.63362 1.54702 keV
+Vertex : -0.00977291 -0.184718 4.13093 m    Global time : 13.7931 ns 
   Current trajectory has 2 points.
-Point[0] Position= (73.026,-208.818,-1899.57)
-Point[1] Position= (73.0515,-208.811,-1899.59)
+Point[0] Position= (-9.77291,-184.718,4130.93)
+Point[1] Position= (-9.7413,-184.712,4130.93)
 
-TrackID =1313 : ParentID=1218 : TrackStatus=1
+TrackID =1356 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 56.2199 0.560922 -17.5354 keV
-Vertex : 0.0243019 -0.0507942 -1.89481 m    Global time : 7.79885 ns 
+Original momentum : -14.2238 35.7577 3.04542 keV
+Vertex : -0.00959449 -0.180277 4.03256 m    Global time : 13.4647 ns 
   Current trajectory has 2 points.
-Point[0] Position= (24.3019,-50.7942,-1894.81)
-Point[1] Position= (24.4661,-50.7925,-1894.86)
+Point[0] Position= (-9.59449,-180.277,4032.56)
+Point[1] Position= (-9.60996,-180.238,4032.57)
 
-TrackID =1312 : ParentID=1218 : TrackStatus=1
+TrackID =1355 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.6424 -1.66156 -35.3792 keV
-Vertex : 0.0210342 -0.0295004 -1.89357 m    Global time : 7.70676 ns 
+Original momentum : -43.8893 53.0808 6.98004 keV
+Vertex : -0.00943728 -0.176525 3.94944 m    Global time : 13.1871 ns 
   Current trajectory has 2 points.
-Point[0] Position= (21.0342,-29.5004,-1893.57)
-Point[1] Position= (20.992,-29.503,-1893.62)
-
-TrackID =1311 : ParentID=1218 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -153.983 -14.3127 -186.016 keV
-Vertex : 0.0227176 0.00616571 -1.89492 m    Global time : 7.5556 ns 
-  Current trajectory has 9 points.
-Point[0] Position= (22.7176,6.16571,-1894.92)
-Point[1] Position= (16.1087,5.55142,-1902.9)
-Point[2] Position= (15.1502,6.00125,-1905.94)
-Point[3] Position= (15.1652,5.87126,-1906.62)
-Point[4] Position= (15.2494,6.12201,-1910.93)
-Point[5] Position= (14.1019,5.86324,-1914.3)
-Point[6] Position= (13.0735,5.55113,-1911.99)
-Point[7] Position= (12.3418,4.88914,-1910.56)
-Point[8] Position= (12.2167,4.63108,-1910.62)
-
-TrackID =1323 : ParentID=1311 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.52238 -12.9551 65.4528 keV
-Vertex : 0.0123418 0.00488914 -1.91056 m    Global time : 7.81282 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (12.3418,4.88914,-1910.56)
-Point[1] Position= (12.3341,4.87747,-1910.5)
-Point[2] Position= (12.3114,4.7615,-1910.43)
+Point[0] Position= (-9.43728,-176.525,3949.44)
+Point[1] Position= (-9.62903,-176.293,3949.47)
 
-TrackID =1324 : ParentID=1323 : TrackStatus=1
+TrackID =1354 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.0708 6.2928 20.543 keV
-Vertex : 0.0123341 0.00487747 -1.9105 m    Global time : 7.81437 ns 
+Original momentum : -34.7703 -28.5134 0.617942 keV
+Vertex : -0.00934856 -0.174563 3.90595 m    Global time : 13.0419 ns 
   Current trajectory has 2 points.
-Point[0] Position= (12.3341,4.87747,-1910.5)
-Point[1] Position= (12.3592,4.88311,-1910.48)
+Point[0] Position= (-9.34856,-174.563,3905.95)
+Point[1] Position= (-9.4018,-174.607,3905.95)
 
-TrackID =1322 : ParentID=1311 : TrackStatus=1
+TrackID =1353 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.4563 -75.4934 -5.03767 keV
-Vertex : 0.0151652 0.00587126 -1.90662 m    Global time : 7.67212 ns 
+Original momentum : 99.8334 16.2239 10.98 keV
+Vertex : -0.00933637 -0.174303 3.90018 m    Global time : 13.0226 ns 
   Current trajectory has 3 points.
-Point[0] Position= (15.1652,5.87126,-1906.62)
-Point[1] Position= (15.2437,5.51135,-1906.65)
-Point[2] Position= (15.2058,5.42912,-1906.57)
-
-TrackID =1325 : ParentID=1322 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.5999 -17.4924 -5.13281 keV
-Vertex : 0.0152437 0.00551135 -1.90665 m    Global time : 7.68034 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (15.2437,5.51135,-1906.65)
-Point[1] Position= (15.2632,5.4985,-1906.65)
+Point[0] Position= (-9.33637,-174.303,3900.18)
+Point[1] Position= (-8.25502,-174.127,3900.3)
+Point[2] Position= (-7.93417,-174.253,3900.34)
 
-TrackID =1321 : ParentID=1311 : TrackStatus=1
+TrackID =1352 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.92121 -48.627 8.52422 keV
-Vertex : 0.0151502 0.00600125 -1.90594 m    Global time : 7.6655 ns 
+Original momentum : 15.6601 31.762 2.69972 keV
+Vertex : -0.00929413 -0.17338 3.87975 m    Global time : 12.9544 ns 
   Current trajectory has 2 points.
-Point[0] Position= (15.1502,6.00125,-1905.94)
-Point[1] Position= (15.1304,5.90415,-1905.92)
+Point[0] Position= (-9.29413,-173.38,3879.75)
+Point[1] Position= (-9.27996,-173.352,3879.75)
 
-TrackID =1320 : ParentID=1311 : TrackStatus=1
+TrackID =1351 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -36.5449 -97.1535 -4.98373 keV
-Vertex : 0.0161087 0.00555142 -1.9029 m    Global time : 7.63654 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (16.1087,5.55142,-1902.9)
-Point[1] Position= (15.6976,4.4585,-1902.96)
-Point[2] Position= (15.1498,4.53938,-1902.92)
-
-TrackID =1310 : ParentID=1218 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.05063 -12.4004 32.5935 keV
-Vertex : 0.0258084 0.0201741 -1.89026 m    Global time : 7.49383 ns 
+Original momentum : -63.4582 6.11768 4.11028 keV
+Vertex : -0.00886034 -0.164472 3.68204 m    Global time : 12.2943 ns 
   Current trajectory has 2 points.
-Point[0] Position= (25.8084,20.1741,-1890.26)
-Point[1] Position= (25.801,20.1627,-1890.23)
+Point[0] Position= (-8.86034,-164.472,3682.04)
+Point[1] Position= (-9.08706,-164.45,3682.06)
 
-TrackID =1309 : ParentID=1218 : TrackStatus=1
+TrackID =1350 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.9511 19.1744 -20.7444 keV
-Vertex : 0.0370267 0.0460202 -1.88112 m    Global time : 7.37249 ns 
+Original momentum : -2.29933 -32.0945 -0.437529 keV
+Vertex : -0.00854886 -0.158571 3.5511 m    Global time : 11.857 ns 
   Current trajectory has 2 points.
-Point[0] Position= (37.0267,46.0202,-1881.12)
-Point[1] Position= (36.9568,46.0546,-1881.16)
+Point[0] Position= (-8.54886,-158.571,3551.1)
+Point[1] Position= (-8.55055,-158.594,3551.1)
 
-TrackID =1308 : ParentID=1218 : TrackStatus=1
+TrackID =1349 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -56.7578 27.3191 -57.7919 keV
-Vertex : 0.0452879 0.0829243 -1.87483 m    Global time : 7.21644 ns 
+Original momentum : 62.3271 0.28967 3.9541 keV
+Vertex : -0.0079259 -0.146315 3.27853 m    Global time : 10.9469 ns 
   Current trajectory has 3 points.
-Point[0] Position= (45.2879,82.9243,-1874.83)
-Point[1] Position= (44.8764,83.1224,-1875.24)
-Point[2] Position= (44.9023,83.1476,-1875.25)
+Point[0] Position= (-7.9259,-146.315,3278.53)
+Point[1] Position= (-7.85649,-146.315,3278.54)
+Point[2] Position= (-7.78485,-146.349,3278.48)
 
-TrackID =1326 : ParentID=1308 : TrackStatus=1
+TrackID =1379 : ParentID=1349 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.50773 -6.0705 -35.3734 keV
-Vertex : 0.0448764 0.0831224 -1.87524 m    Global time : 7.22897 ns 
+Original momentum : 22.9787 2.47048 25.5583 keV
+Vertex : -0.00785649 -0.146315 3.27854 m    Global time : 10.9488 ns 
   Current trajectory has 2 points.
-Point[0] Position= (44.8764,83.1224,-1875.24)
-Point[1] Position= (44.8787,83.1168,-1875.28)
+Point[0] Position= (-7.85649,-146.315,3278.54)
+Point[1] Position= (-7.83703,-146.313,3278.56)
 
-TrackID =1307 : ParentID=1218 : TrackStatus=1
+TrackID =1348 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 17.1364 -13.6055 25.1491 keV
-Vertex : 0.0497994 0.0998557 -1.87035 m    Global time : 7.14347 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (49.7994,99.8557,-1870.35)
-Point[1] Position= (49.8129,99.845,-1870.33)
+Original momentum : 93.5777 4.93904 9.01811 keV
+Vertex : -0.00791149 -0.146009 3.2717 m    Global time : 10.9241 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-7.91149,-146.009,3271.7)
+Point[1] Position= (-7.12149,-145.967,3271.78)
+Point[2] Position= (-7.08779,-145.957,3271.85)
 
-TrackID =1306 : ParentID=1218 : TrackStatus=1
+TrackID =1380 : ParentID=1348 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.8266 5.5433 -12.8203 keV
-Vertex : 0.105283 0.266938 -1.76698 m    Global time : 6.36823 ns 
+Original momentum : 30.0241 30.1004 -18.4794 keV
+Vertex : -0.00712149 -0.145967 3.27178 m    Global time : 10.9387 ns 
   Current trajectory has 2 points.
-Point[0] Position= (105.283,266.938,-1766.98)
-Point[1] Position= (105.255,266.942,-1766.99)
+Point[0] Position= (-7.12149,-145.967,3271.78)
+Point[1] Position= (-7.07217,-145.918,3271.75)
 
-TrackID =1305 : ParentID=1218 : TrackStatus=1
+TrackID =1347 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.1106 -15.7617 23.6868 keV
-Vertex : 0.104951 0.272513 -1.76348 m    Global time : 6.34198 ns 
+Original momentum : -22.3106 26.4127 2.30059 keV
+Vertex : -0.00706287 -0.127713 2.86283 m    Global time : 9.55889 ns 
   Current trajectory has 2 points.
-Point[0] Position= (104.951,272.513,-1763.48)
-Point[1] Position= (104.918,272.494,-1763.46)
+Point[0] Position= (-7.06287,-127.713,2862.83)
+Point[1] Position= (-7.082,-127.691,2862.83)
 
-TrackID =1304 : ParentID=1218 : TrackStatus=1
+TrackID =1346 : ParentID=1228 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.8369 -23.3083 20.455 keV
-Vertex : 0.0790985 0.37015 -1.67647 m    Global time : 5.82552 ns 
+Original momentum : 13.4736 41.6852 3.78723 keV
+Vertex : -0.00659034 -0.118828 2.66414 m    Global time : 8.89549 ns 
   Current trajectory has 2 points.
-Point[0] Position= (79.0985,370.15,-1676.47)
-Point[1] Position= (79.1068,370.132,-1676.45)
+Point[0] Position= (-6.59034,-118.828,2664.14)
+Point[1] Position= (-6.57074,-118.767,2664.15)
 
-TrackID =1217 : ParentID=1085 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.1355 26.2549 2.74951 keV
-Vertex : 0.0745268 0.349134 -1.58017 m    Global time : 5.49036 ns 
+TrackID =1363 : ParentID=1228 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : -0.0155412 -0.265684 5.87481 MeV
+Vertex : -0.0109161 -0.212553 4.74675 m    Global time : 15.8494 ns 
   Current trajectory has 2 points.
-Point[0] Position= (74.5268,349.134,-1580.17)
-Point[1] Position= (74.4912,349.165,-1580.17)
+Point[0] Position= (-10.9161,-212.553,4746.75)
+Point[1] Position= (-14.2314,-269.23,6000)
 
-TrackID =1216 : ParentID=1085 : TrackStatus=1
+TrackID =1381 : ParentID=1272 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.00349 38.1428 7.00457 keV
-Vertex : 0.0732748 0.343269 -1.55368 m    Global time : 5.3983 ns 
+Original momentum : 181.135 -11.6312 119.627 keV
+Vertex : 43.6404 12.1552 -3.6141 cm   Global time : 1.57062 ns 
   Current trajectory has 2 points.
-Point[0] Position= (73.2748,343.269,-1553.68)
-Point[1] Position= (73.277,343.311,-1553.67)
-
-TrackID =1215 : ParentID=1085 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 48.9175 77.4463 10.8631 keV
-Vertex : 0.0713649 0.334302 -1.51318 m    Global time : 5.25758 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (71.3649,334.302,-1513.18)
-Point[1] Position= (71.7978,334.988,-1513.09)
-Point[2] Position= (71.8499,335.068,-1513.12)
+Point[0] Position= (436.404,121.552,-36.141)
+Point[1] Position= (436.409,121.552,-36.1376)
 
-TrackID =1214 : ParentID=1085 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.992 71.6159 11.106 keV
-Vertex : 0.0670959 0.314166 -1.42235 m    Global time : 4.94192 ns 
+TrackID =1230 : ParentID=1229 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : -0.00408356 -0.0861612 1.96522 MeV
+Vertex : -0.00488919 -0.0902844 2.03155 m    Global time : 6.78321 ns 
   Current trajectory has 2 points.
-Point[0] Position= (67.0959,314.166,-1422.35)
-Point[1] Position= (67.2373,314.571,-1422.28)
+Point[0] Position= (-4.88919,-90.2844,2031.55)
+Point[1] Position= (-13.1353,-264.274,6000)
 
-TrackID =1213 : ParentID=1085 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.1891 24.4324 5.32755 keV
-Vertex : 0.0665788 0.311723 -1.41134 m    Global time : 4.90366 ns 
+TrackID =1277 : ParentID=51 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : -0.107501 0.225513 -1.4886 GeV
+Vertex : 9.90814e-297 -6.2358e-296 6.67102e-294 fm   Global time : 8.63505e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (66.5788,311.723,-1411.34)
-Point[1] Position= (66.5997,311.744,-1411.33)
+Point[0] Position= (9.90814e-309,-6.2358e-308,6.67102e-306)
+Point[1] Position= (-3.11829e-07,6.54144e-07,-4.31798e-06)
 
-TrackID =1212 : ParentID=1085 : TrackStatus=1
+TrackID =50 : ParentID=45 : TrackStatus=1
+Particle name : proton  PDG code : 2212  Charge : 1
+Original momentum : 0.244023 0.145296 -4.469 GeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+  Current trajectory has 57 points.
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (2.85573,1.70003,-52.3024)
+Point[2] Position= (5.0643,3.01277,-92.7737)
+Point[3] Position= (5.15359,3.06583,-94.4106)
+Point[4] Position= (9.269,5.51572,-169.863)
+Point[5] Position= (18.9208,11.2721,-346.841)
+Point[6] Position= (19.9802,11.9034,-366.258)
+Point[7] Position= (26.7415,15.9357,-490.252)
+Point[8] Position= (48.8068,29.1141,-895.485)
+Point[9] Position= (67.7869,40.449,-1243.84)
+Point[10] Position= (74.5294,44.4809,-1367.8)
+Point[11] Position= (80.3397,47.9541,-1474.74)
+Point[12] Position= (87.262,52.0906,-1602.25)
+Point[13] Position= (98.5189,58.8145,-1809.66)
+Point[14] Position= (104.225,62.2267,-1914.78)
+Point[15] Position= (104.564,62.4294,-1921.01)
+Point[16] Position= (111.322,66.4751,-2045.42)
+Point[17] Position= (119.398,71.3056,-2194.14)
+Point[18] Position= (123.225,73.5896,-2264.51)
+Point[19] Position= (126.747,75.691,-2329.32)
+Point[20] Position= (127.612,76.2072,-2345.24)
+Point[21] Position= (129.74,77.4776,-2384.39)
+Point[22] Position= (135.472,80.8963,-2489.77)
+Point[23] Position= (163.613,97.7129,-3006.94)
+Point[24] Position= (173.046,103.36,-3180.32)
+Point[25] Position= (173.185,103.443,-3182.86)
+Point[26] Position= (174.476,104.214,-3206.58)
+Point[27] Position= (177.133,105.802,-3255.42)
+Point[28] Position= (183.91,109.852,-3379.97)
+Point[29] Position= (185.773,110.966,-3414.19)
+Point[30] Position= (186.356,111.314,-3424.89)
+Point[31] Position= (189.033,112.914,-3474.05)
+Point[32] Position= (198.765,118.721,-3652.96)
+Point[33] Position= (199.404,119.101,-3664.68)
+Point[34] Position= (209.219,124.942,-3844.97)
+Point[35] Position= (210.745,125.85,-3873.01)
+Point[36] Position= (212.435,126.855,-3904.04)
+Point[37] Position= (218.488,130.456,-4015.17)
+Point[38] Position= (227.152,135.611,-4174.17)
+Point[39] Position= (228.511,136.42,-4199.07)
+Point[40] Position= (231.007,137.907,-4244.84)
+Point[41] Position= (233.455,139.365,-4289.72)
+Point[42] Position= (240.423,143.525,-4417.59)
+Point[43] Position= (243.791,145.538,-4479.4)
+Point[44] Position= (246.123,146.932,-4522.18)
+Point[45] Position= (259.353,154.843,-4765.12)
+Point[46] Position= (263.125,157.095,-4834.32)
+Point[47] Position= (272.413,162.643,-5004.88)
+Point[48] Position= (273.946,163.559,-5033.03)
+Point[49] Position= (281.525,168.092,-5172.16)
+Point[50] Position= (282.462,168.654,-5189.37)
+Point[51] Position= (302.658,180.748,-5560.34)
+Point[52] Position= (315.292,188.297,-5792.34)
+Point[53] Position= (315.32,188.314,-5792.86)
+Point[54] Position= (323.642,193.282,-5945.61)
+Point[55] Position= (324.008,193.501,-5952.32)
+Point[56] Position= (326.607,195.05,-6000)
+
+TrackID =1437 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.6443 53.121 9.24901 keV
-Vertex : 0.0617937 0.289196 -1.30984 m    Global time : 4.55092 ns 
+Original momentum : 19.9151 -29.5389 -1.14527 keV
+Vertex : 0.324008 0.193501 -5.95232 m    Global time : 20.327 ns 
   Current trajectory has 2 points.
-Point[0] Position= (61.7937,289.196,-1309.84)
-Point[1] Position= (61.8227,289.328,-1309.81)
+Point[0] Position= (324.008,193.501,-5952.32)
+Point[1] Position= (324.026,193.474,-5952.32)
 
-TrackID =1211 : ParentID=1085 : TrackStatus=1
+TrackID =1436 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.9952 -25.2624 -7.94567 keV
-Vertex : 0.0605738 0.283461 -1.28401 m    Global time : 4.46117 ns 
+Original momentum : -33.0015 -9.17191 -3.28117 keV
+Vertex : 0.323642 0.193282 -5.94561 m    Global time : 20.3041 ns 
   Current trajectory has 2 points.
-Point[0] Position= (60.5738,283.461,-1284.01)
-Point[1] Position= (60.5535,283.439,-1284.02)
+Point[0] Position= (323.642,193.282,-5945.61)
+Point[1] Position= (323.614,193.275,-5945.61)
 
-TrackID =1210 : ParentID=1085 : TrackStatus=1
+TrackID =1435 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.7955 -18.3077 -3.88126 keV
-Vertex : 0.0605449 0.283326 -1.2834 m    Global time : 4.45904 ns 
+Original momentum : -42.498 25.1652 -3.95021 keV
+Vertex : 0.31532 0.188314 -5.79286 m    Global time : 19.7824 ns 
   Current trajectory has 2 points.
-Point[0] Position= (60.5449,283.326,-1283.4)
-Point[1] Position= (60.5634,283.312,-1283.4)
+Point[0] Position= (315.32,188.314,-5792.86)
+Point[1] Position= (315.238,188.362,-5792.86)
 
-TrackID =1209 : ParentID=1085 : TrackStatus=1
+TrackID =1434 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.2539 -32.3738 -9.79628 keV
-Vertex : 0.0549308 0.257035 -1.16489 m    Global time : 4.0472 ns 
+Original momentum : 60.8809 -32.1264 -2.45946 keV
+Vertex : 0.315292 0.188297 -5.79234 m    Global time : 19.7807 ns 
   Current trajectory has 2 points.
-Point[0] Position= (54.9308,257.035,-1164.89)
-Point[1] Position= (54.9058,256.997,-1164.9)
+Point[0] Position= (315.292,188.297,-5792.34)
+Point[1] Position= (315.554,188.159,-5792.35)
 
-TrackID =1208 : ParentID=1085 : TrackStatus=1
+TrackID =1433 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.7177 -35.9893 -11.6261 keV
-Vertex : 0.050388 0.236212 -1.07061 m    Global time : 3.71961 ns 
+Original momentum : 21.9197 35.8234 0.594184 keV
+Vertex : 0.302658 0.180748 -5.56034 m    Global time : 18.9884 ns 
   Current trajectory has 2 points.
-Point[0] Position= (50.388,236.212,-1070.61)
-Point[1] Position= (50.3381,236.15,-1070.63)
+Point[0] Position= (302.658,180.748,-5560.34)
+Point[1] Position= (302.686,180.795,-5560.34)
 
-TrackID =1207 : ParentID=1085 : TrackStatus=1
+TrackID =1432 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.4544 -25.0799 -7.55596 keV
-Vertex : 0.0485328 0.22769 -1.03203 m    Global time : 3.58554 ns 
+Original momentum : -41.4837 -32.2942 -6.11153 keV
+Vertex : 0.282462 0.168654 -5.18937 m    Global time : 17.7215 ns 
   Current trajectory has 2 points.
-Point[0] Position= (48.5328,227.69,-1032.03)
-Point[1] Position= (48.5182,227.671,-1032.03)
-
-TrackID =1206 : ParentID=1085 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -273.147 -104.905 -132.568 keV
-Vertex : 4.36993 20.5367 -93.0942 cm   Global time : 3.23431 ns 
-  Current trajectory has 25 points.
-Point[0] Position= (43.6993,205.367,-930.942)
-Point[1] Position= (27.256,199.039,-939.748)
-Point[2] Position= (27.3014,198.128,-940.865)
-Point[3] Position= (27.3661,187.804,-960.975)
-Point[4] Position= (39.8451,187.726,-971.57)
-Point[5] Position= (38.5552,189.937,-979.373)
-Point[6] Position= (35.3862,189.585,-980.976)
-Point[7] Position= (33.2428,190.119,-980.761)
-Point[8] Position= (25.192,195.03,-981.355)
-Point[9] Position= (21.4355,198.024,-985.475)
-Point[10] Position= (20.8483,198.91,-986.808)
-Point[11] Position= (20.7759,199.312,-988.185)
-Point[12] Position= (20.6149,199.538,-988.511)
-Point[13] Position= (20.1823,199.828,-990.012)
-Point[14] Position= (19.7522,200.369,-991.268)
-Point[15] Position= (18.7235,199.71,-991.296)
-Point[16] Position= (17.397,199.614,-991.248)
-Point[17] Position= (16.9709,201.111,-991.064)
-Point[18] Position= (16.9828,202.371,-991.561)
-Point[19] Position= (16.7606,203.423,-992.066)
-Point[20] Position= (16.3733,203.725,-993.519)
-Point[21] Position= (15.7027,204.713,-994.563)
-Point[22] Position= (15.6199,205.083,-994.504)
-Point[23] Position= (15.7462,205.415,-994.002)
-Point[24] Position= (15.7819,205.316,-994.075)
+Point[0] Position= (282.462,168.654,-5189.37)
+Point[1] Position= (282.368,168.581,-5189.38)
 
-TrackID =1331 : ParentID=1206 : TrackStatus=1
+TrackID =1431 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.0805 21.1232 -19.6354 keV
-Vertex : 1.56199 20.5083 -99.4504 cm   Global time : 4.02562 ns 
+Original momentum : 16.1084 28.7783 0.727313 keV
+Vertex : 0.281525 0.168092 -5.17216 m    Global time : 17.6628 ns 
   Current trajectory has 2 points.
-Point[0] Position= (15.6199,205.083,-994.504)
-Point[1] Position= (15.6364,205.098,-994.518)
+Point[0] Position= (281.525,168.092,-5172.16)
+Point[1] Position= (281.537,168.114,-5172.16)
 
-TrackID =1330 : ParentID=1206 : TrackStatus=1
+TrackID =1430 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.19751 -33.6704 -24.9787 keV
-Vertex : 1.87235 19.971 -99.1296 cm   Global time : 3.93215 ns 
+Original momentum : -25.1622 36.448 -2.15107 keV
+Vertex : 0.273946 0.163559 -5.03303 m    Global time : 17.1876 ns 
   Current trajectory has 2 points.
-Point[0] Position= (18.7235,199.71,-991.296)
-Point[1] Position= (18.7255,199.68,-991.319)
+Point[0] Position= (273.946,163.559,-5033.03)
+Point[1] Position= (273.909,163.613,-5033.04)
 
-TrackID =1329 : ParentID=1206 : TrackStatus=1
+TrackID =1429 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.3115 -25.3519 -59.8203 keV
-Vertex : 3.85552 18.9937 -97.9373 cm   Global time : 3.67904 ns 
+Original momentum : -26.2907 -21.1376 -3.26844 keV
+Vertex : 0.272413 0.162643 -5.00488 m    Global time : 17.0915 ns 
   Current trajectory has 2 points.
-Point[0] Position= (38.5552,189.937,-979.373)
-Point[1] Position= (38.6679,189.825,-979.639)
+Point[0] Position= (272.413,162.643,-5004.88)
+Point[1] Position= (272.391,162.626,-5004.88)
 
-TrackID =1328 : ParentID=1206 : TrackStatus=1
+TrackID =1428 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.072 13.5102 -9.1409 keV
-Vertex : 3.98451 18.7726 -97.157 cm   Global time : 3.61786 ns 
+Original momentum : 38.3838 2.70302 0.698512 keV
+Vertex : 0.263125 0.157095 -4.83432 m    Global time : 16.509 ns 
   Current trajectory has 2 points.
-Point[0] Position= (39.8451,187.726,-971.57)
-Point[1] Position= (39.8776,187.74,-971.579)
+Point[0] Position= (263.125,157.095,-4834.32)
+Point[1] Position= (263.167,157.098,-4834.32)
 
-TrackID =1327 : ParentID=1206 : TrackStatus=1
+TrackID =1427 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.30235 -27.8918 22.0967 keV
-Vertex : 2.7256 19.9039 -93.9748 cm   Global time : 3.35767 ns 
+Original momentum : -38.5278 10.5632 -3.36268 keV
+Vertex : 0.259353 0.154843 -4.76512 m    Global time : 16.2727 ns 
   Current trajectory has 2 points.
-Point[0] Position= (27.256,199.039,-939.748)
-Point[1] Position= (27.2524,199.02,-939.733)
+Point[0] Position= (259.353,154.843,-4765.12)
+Point[1] Position= (259.307,154.855,-4765.13)
 
-TrackID =1205 : ParentID=1085 : TrackStatus=1
+TrackID =1426 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.48583 -32.9019 -8.50537 keV
-Vertex : 4.33744 20.3851 -92.4071 cm   Global time : 3.21044 ns 
+Original momentum : 73.3141 -8.93067 -1.73611 keV
+Vertex : 0.246123 0.146932 -4.52218 m    Global time : 15.4431 ns 
   Current trajectory has 2 points.
-Point[0] Position= (43.3744,203.851,-924.071)
-Point[1] Position= (43.3735,203.831,-924.077)
+Point[0] Position= (246.123,146.932,-4522.18)
+Point[1] Position= (246.5,146.886,-4522.19)
 
-TrackID =1204 : ParentID=1085 : TrackStatus=1
+TrackID =1425 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.6021 8.44112 2.24312 keV
-Vertex : 4.241 19.9341 -90.3614 cm   Global time : 3.13936 ns 
+Original momentum : -30.1867 17.7398 -2.29872 keV
+Vertex : 0.243791 0.145538 -4.4794 m    Global time : 15.297 ns 
   Current trajectory has 2 points.
-Point[0] Position= (42.41,199.341,-903.614)
-Point[1] Position= (42.4295,199.346,-903.612)
+Point[0] Position= (243.791,145.538,-4479.4)
+Point[1] Position= (243.765,145.554,-4479.4)
 
-TrackID =1203 : ParentID=1085 : TrackStatus=1
+TrackID =1424 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.19631 -37.3681 -10.0386 keV
-Vertex : 4.23017 19.8835 -90.1323 cm   Global time : 3.13141 ns 
+Original momentum : -44.4027 27.1704 -4.26097 keV
+Vertex : 0.240423 0.143525 -4.41759 m    Global time : 15.0859 ns 
   Current trajectory has 2 points.
-Point[0] Position= (42.3017,198.835,-901.323)
-Point[1] Position= (42.2976,198.806,-901.331)
+Point[0] Position= (240.423,143.525,-4417.59)
+Point[1] Position= (240.326,143.584,-4417.6)
 
-TrackID =1202 : ParentID=1085 : TrackStatus=1
+TrackID =1423 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.8766 -2.40306 -3.43573 keV
-Vertex : 4.15404 19.5287 -88.523 cm   Global time : 3.07549 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (41.5404,195.287,-885.23)
-Point[1] Position= (41.5096,195.285,-885.233)
+Original momentum : 66.4513 11.9578 -0.535863 keV
+Vertex : 0.233455 0.139365 -4.28972 m    Global time : 14.6492 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (233.455,139.365,-4289.72)
+Point[1] Position= (233.727,139.414,-4289.72)
+Point[2] Position= (233.738,139.417,-4289.72)
 
-TrackID =1201 : ParentID=1085 : TrackStatus=1
+TrackID =1422 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.8671 -5.53794 -4.03657 keV
-Vertex : 4.12389 19.3882 -87.8854 cm   Global time : 3.05334 ns 
+Original momentum : -18.8728 41.7622 -1.77578 keV
+Vertex : 0.231007 0.137907 -4.24484 m    Global time : 14.4959 ns 
   Current trajectory has 2 points.
-Point[0] Position= (41.2389,193.882,-878.854)
-Point[1] Position= (41.21,193.877,-878.857)
+Point[0] Position= (231.007,137.907,-4244.84)
+Point[1] Position= (230.977,137.974,-4244.84)
 
-TrackID =1200 : ParentID=1085 : TrackStatus=1
+TrackID =1421 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.8205 18.3595 1.50212 keV
-Vertex : 3.7817 17.7886 -80.6374 cm   Global time : 2.80152 ns 
+Original momentum : -19.3708 -31.3875 -3.44952 keV
+Vertex : 0.228511 0.13642 -4.19907 m    Global time : 14.3397 ns 
   Current trajectory has 2 points.
-Point[0] Position= (37.817,177.886,-806.374)
-Point[1] Position= (37.7929,177.901,-806.373)
+Point[0] Position= (228.511,136.42,-4199.07)
+Point[1] Position= (228.491,136.388,-4199.08)
 
-TrackID =1199 : ParentID=1085 : TrackStatus=1
+TrackID =1420 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.6062 30.7018 4.30639 keV
-Vertex : 3.43947 16.1853 -73.3769 cm   Global time : 2.54926 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (34.3947,161.853,-733.769)
-Point[1] Position= (34.3723,161.885,-733.765)
+Original momentum : -116.131 -297.409 -122.28 keV
+Vertex : 0.227152 0.135611 -4.17417 m    Global time : 14.2546 ns 
+  Current trajectory has 18 points.
+Point[0] Position= (227.152,135.611,-4174.17)
+Point[1] Position= (215.763,106.445,-4186.16)
+Point[2] Position= (213.57,80.5429,-4193.21)
+Point[3] Position= (208.499,75.9652,-4196.25)
+Point[4] Position= (193.229,63.1843,-4197.31)
+Point[5] Position= (185.526,49.3979,-4193.81)
+Point[6] Position= (183.983,47.5864,-4194.44)
+Point[7] Position= (176.943,38.7787,-4200.17)
+Point[8] Position= (174.932,39.744,-4201.41)
+Point[9] Position= (169.317,43.8306,-4200.35)
+Point[10] Position= (168.535,43.8227,-4200.33)
+Point[11] Position= (163.708,43,-4200.37)
+Point[12] Position= (162.256,40.3594,-4197.74)
+Point[13] Position= (161.559,38.1921,-4197.11)
+Point[14] Position= (160.823,36.1802,-4196.61)
+Point[15] Position= (160.848,35.4728,-4196.35)
+Point[16] Position= (161.489,34.6825,-4195.69)
+Point[17] Position= (161.606,34.5981,-4196.06)
 
-TrackID =1198 : ParentID=1085 : TrackStatus=1
+TrackID =1442 : ParentID=1420 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.1616 -30.9933 -7.34208 keV
-Vertex : 3.18066 14.969 -67.8702 cm   Global time : 2.35793 ns 
+Original momentum : 0.978649 -20.079 -24.7197 keV
+Vertex : 0.160848 0.0354728 -4.19635 m    Global time : 15.2909 ns 
   Current trajectory has 2 points.
-Point[0] Position= (31.8066,149.69,-678.702)
-Point[1] Position= (31.8349,149.654,-678.71)
-
-TrackID =1197 : ParentID=1085 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.9634 -131.031 -47.9596 keV
-Vertex : 3.16877 14.913 -67.6167 cm   Global time : 2.34913 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (31.6877,149.13,-676.167)
-Point[1] Position= (31.9339,146.82,-677.013)
-Point[2] Position= (31.6389,145.286,-676.654)
-Point[3] Position= (31.0586,145.006,-676.919)
-Point[4] Position= (31.1074,144.982,-676.91)
+Point[0] Position= (160.848,35.4728,-4196.35)
+Point[1] Position= (160.849,35.4584,-4196.37)
 
-TrackID =1196 : ParentID=1085 : TrackStatus=1
+TrackID =1441 : ParentID=1420 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.12952 34.6979 6.12903 keV
-Vertex : 3.14843 14.8173 -67.183 cm   Global time : 2.33406 ns 
+Original momentum : -6.31539 10.954 35.6328 keV
+Vertex : 0.161559 0.0381921 -4.19711 m    Global time : 15.2507 ns 
   Current trajectory has 2 points.
-Point[0] Position= (31.4843,148.173,-671.83)
-Point[1] Position= (31.4796,148.205,-671.824)
+Point[0] Position= (161.559,38.1921,-4197.11)
+Point[1] Position= (161.552,38.2035,-4197.07)
 
-TrackID =1195 : ParentID=1085 : TrackStatus=1
+TrackID =1440 : ParentID=1420 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.5298 18.2079 4.13301 keV
-Vertex : 1.72749 8.14414 -36.9324 cm   Global time : 1.28308 ns 
+Original momentum : -3.80217 19.4671 30.3681 keV
+Vertex : 0.168535 0.0438227 -4.20033 m    Global time : 15.1316 ns 
   Current trajectory has 2 points.
-Point[0] Position= (17.2749,81.4414,-369.324)
-Point[1] Position= (17.3054,81.4591,-369.32)
+Point[0] Position= (168.535,43.8227,-4200.33)
+Point[1] Position= (168.532,43.8412,-4200.3)
 
-TrackID =1194 : ParentID=1085 : TrackStatus=1
+TrackID =1439 : ParentID=1420 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.3841 -28.6732 -6.70887 keV
-Vertex : 1.18871 5.61252 -25.4508 cm   Global time : 884.193 ps 
+Original momentum : -32.3925 -27.214 -59.8519 keV
+Vertex : 0.174932 0.039744 -4.20141 m    Global time : 15.0613 ns 
   Current trajectory has 2 points.
-Point[0] Position= (11.8871,56.1252,-254.508)
-Point[1] Position= (11.9003,56.102,-254.513)
+Point[0] Position= (174.932,39.744,-4201.41)
+Point[1] Position= (174.769,39.6066,-4201.71)
 
-TrackID =1193 : ParentID=1085 : TrackStatus=1
+TrackID =1438 : ParentID=1420 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.8185 -3.69138 -4.19197 keV
-Vertex : 0.79589 3.76254 -17.0644 cm   Global time : 592.832 ps 
+Original momentum : 25.7337 -1.19516 -30.5723 keV
+Vertex : 0.183983 0.0475864 -4.19444 m    Global time : 14.9443 ns 
   Current trajectory has 2 points.
-Point[0] Position= (7.9589,37.6254,-170.644)
-Point[1] Position= (7.91518,37.6213,-170.648)
+Point[0] Position= (183.983,47.5864,-4194.44)
+Point[1] Position= (184.013,47.585,-4194.47)
 
-TrackID =1192 : ParentID=1085 : TrackStatus=1
+TrackID =1419 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.8547 48.0579 7.4215 keV
-Vertex : 0.582158 2.75264 -12.484 cm   Global time : 433.706 ps 
-  Current trajectory has 2 points.
-Point[0] Position= (5.82158,27.5264,-124.84)
-Point[1] Position= (5.79598,27.6221,-124.825)
-
-TrackID =47 : ParentID=45 : TrackStatus=1
-Particle name : unknown : rho0  PDG code : 113  Charge : 0
-Original momentum : 0.871882 -0.432666 -5.95473 GeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+Original momentum : -36.4438 0.915156 -3.2949 keV
+Vertex : 0.218488 0.130456 -4.01517 m    Global time : 13.7117 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (7.8125e-307,-4.94508e-307,6.75545e-306)
-
-TrackID =1333 : ParentID=47 : TrackStatus=1
-Particle name : pi+  PDG code : 211  Charge : 1
-Original momentum : 0.486449 -0.0335947 -3.67511 GeV
-Vertex : 7.8125e-295 -4.94508e-295 6.75545e-294 fm   Global time : 8.63132e-305 ps 
-  Current trajectory has 65 points.
-Point[0] Position= (7.8125e-307,-4.94508e-307,6.75545e-306)
-Point[1] Position= (51.8202,-3.58523,-391.612)
-Point[2] Position= (57.5468,-3.98371,-434.872)
-Point[3] Position= (81.9107,-5.68438,-618.873)
-Point[4] Position= (85.3325,-5.92437,-644.709)
-Point[5] Position= (85.3722,-5.92715,-645.008)
-Point[6] Position= (101.862,-7.08184,-769.521)
-Point[7] Position= (107.644,-7.48693,-813.183)
-Point[8] Position= (111.574,-7.76175,-842.859)
-Point[9] Position= (126.348,-8.79499,-954.455)
-Point[10] Position= (136.046,-9.47687,-1027.7)
-Point[11] Position= (157.829,-11.0093,-1192.17)
-Point[12] Position= (172.758,-12.0585,-1304.84)
-Point[13] Position= (175.816,-12.273,-1327.92)
-Point[14] Position= (189.038,-13.1996,-1427.71)
-Point[15] Position= (189.053,-13.2006,-1427.83)
-Point[16] Position= (191.623,-13.3806,-1447.23)
-Point[17] Position= (202.261,-14.1263,-1527.53)
-Point[18] Position= (208.012,-14.5272,-1570.91)
-Point[19] Position= (225.754,-15.766,-1704.74)
-Point[20] Position= (240.487,-16.8027,-1815.81)
-Point[21] Position= (248.64,-17.3787,-1877.27)
-Point[22] Position= (252.9,-17.6788,-1909.39)
-Point[23] Position= (266.679,-18.6451,-2013.24)
-Point[24] Position= (271.639,-18.9932,-2050.6)
-Point[25] Position= (293.714,-20.5431,-2216.81)
-Point[26] Position= (294.69,-20.6117,-2224.16)
-Point[27] Position= (310.081,-21.6887,-2340.07)
-Point[28] Position= (310.462,-21.7152,-2342.94)
-Point[29] Position= (314.104,-21.9682,-2370.37)
-Point[30] Position= (338.643,-23.6784,-2555.19)
-Point[31] Position= (341.676,-23.8891,-2578.03)
-Point[32] Position= (375.51,-26.2442,-2832.79)
-Point[33] Position= (384.157,-26.8451,-2897.9)
-Point[34] Position= (386.541,-27.0108,-2915.86)
-Point[35] Position= (405.143,-28.3002,-3055.94)
-Point[36] Position= (430.246,-30.0228,-3245)
-Point[37] Position= (443.64,-30.9387,-3345.88)
-Point[38] Position= (457.832,-31.9074,-3452.82)
-Point[39] Position= (466.932,-32.5276,-3521.38)
-Point[40] Position= (473.805,-32.9968,-3573.19)
-Point[41] Position= (485.896,-33.8231,-3664.31)
-Point[42] Position= (501.668,-34.902,-3783.19)
-Point[43] Position= (504.653,-35.1062,-3805.68)
-Point[44] Position= (526.363,-36.5983,-3969.29)
-Point[45] Position= (532.018,-36.9881,-4011.91)
-Point[46] Position= (544.233,-37.8314,-4103.92)
-Point[47] Position= (547.521,-38.0582,-4128.68)
-Point[48] Position= (548.061,-38.0956,-4132.75)
-Point[49] Position= (559.814,-38.9105,-4221.29)
-Point[50] Position= (574.495,-39.9261,-4331.94)
-Point[51] Position= (583.995,-40.5779,-4403.53)
-Point[52] Position= (669.278,-46.4757,-5046.21)
-Point[53] Position= (671.044,-46.5991,-5059.52)
-Point[54] Position= (686.599,-47.6844,-5176.69)
-Point[55] Position= (700.636,-48.6643,-5282.47)
-Point[56] Position= (706.926,-49.1036,-5329.86)
-Point[57] Position= (710.681,-49.3654,-5358.16)
-Point[58] Position= (721.304,-50.1055,-5438.2)
-Point[59] Position= (746.948,-51.8881,-5631.33)
-Point[60] Position= (747.574,-51.9316,-5636.04)
-Point[61] Position= (752.809,-52.2976,-5675.46)
-Point[62] Position= (753.025,-52.3127,-5677.09)
-Point[63] Position= (758.267,-52.6812,-5716.59)
-Point[64] Position= (795.875,-55.3312,-6000)
-
-TrackID =1396 : ParentID=1333 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.4785 -30.3985 0.980869 keV
-Vertex : 0.758267 -0.0526812 -5.71659 m    Global time : 19.2499 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (758.267,-52.6812,-5716.59)
-Point[1] Position= (758.278,-52.7051,-5716.59)
-
-TrackID =1395 : ParentID=1333 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.4218 -4.86286 3.47683 keV
-Vertex : 0.753025 -0.0523127 -5.67709 m    Global time : 19.1169 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (753.025,-52.3127,-5677.09)
-Point[1] Position= (753.058,-52.3172,-5677.08)
-
-TrackID =1394 : ParentID=1333 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.9236 -41.4681 -2.88708 keV
-Vertex : 0.752809 -0.0522976 -5.67546 m    Global time : 19.1115 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (752.809,-52.2976,-5675.46)
-Point[1] Position= (752.794,-52.3549,-5675.47)
-
-TrackID =1393 : ParentID=1333 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 75.9091 53.3078 1.15906 keV
-Vertex : 0.747574 -0.0519316 -5.63604 m    Global time : 18.9787 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (747.574,-51.9316,-5636.04)
-Point[1] Position= (748.258,-51.4514,-5636.03)
-Point[2] Position= (748.334,-51.5779,-5636.1)
+Point[0] Position= (218.488,130.456,-4015.17)
+Point[1] Position= (218.452,130.457,-4015.18)
 
-TrackID =1392 : ParentID=1333 : TrackStatus=1
+TrackID =1418 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.7131 39.5558 -6.57657 keV
-Vertex : 0.746948 -0.0518881 -5.63133 m    Global time : 18.9629 ns 
+Original momentum : 28.0509 -25.6893 -0.752516 keV
+Vertex : 0.212435 0.126855 -3.90404 m    Global time : 13.3321 ns 
   Current trajectory has 2 points.
-Point[0] Position= (746.948,-51.8881,-5631.33)
-Point[1] Position= (746.893,-51.8129,-5631.34)
+Point[0] Position= (212.435,126.855,-3904.04)
+Point[1] Position= (212.465,126.828,-3904.04)
 
-TrackID =1391 : ParentID=1333 : TrackStatus=1
+TrackID =1417 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.1016 -60.7647 -9.64559 keV
-Vertex : 0.721304 -0.0501055 -5.4382 m    Global time : 18.3125 ns 
+Original momentum : -16.0953 36.7605 -1.29847 keV
+Vertex : 0.210745 0.12585 -3.87301 m    Global time : 13.2262 ns 
   Current trajectory has 2 points.
-Point[0] Position= (721.304,-50.1055,-5438.2)
-Point[1] Position= (721.117,-50.4025,-5438.24)
+Point[0] Position= (210.745,125.85,-3873.01)
+Point[1] Position= (210.726,125.893,-3873.01)
 
-TrackID =1390 : ParentID=1333 : TrackStatus=1
+TrackID =1416 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.0267 -8.47376 -5.08579 keV
-Vertex : 0.710681 -0.0493654 -5.35816 m    Global time : 18.043 ns 
+Original momentum : 13.9764 -40.6437 -2.40883 keV
+Vertex : 0.209219 0.124942 -3.84497 m    Global time : 13.1304 ns 
   Current trajectory has 2 points.
-Point[0] Position= (710.681,-49.3654,-5358.16)
-Point[1] Position= (710.658,-49.3718,-5358.16)
+Point[0] Position= (209.219,124.942,-3844.97)
+Point[1] Position= (209.238,124.885,-3844.97)
 
-TrackID =1389 : ParentID=1333 : TrackStatus=1
+TrackID =1415 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.2784 -24.1396 2.36743 keV
-Vertex : 0.706926 -0.0491036 -5.32986 m    Global time : 17.9477 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (706.926,-49.1036,-5329.86)
-Point[1] Position= (706.948,-49.1248,-5329.86)
+Original momentum : -40.7365 141.207 -19.2038 keV
+Vertex : 0.199404 0.119101 -3.66468 m    Global time : 12.5147 ns 
+  Current trajectory has 7 points.
+Point[0] Position= (199.404,119.101,-3664.68)
+Point[1] Position= (198.624,121.805,-3665.04)
+Point[2] Position= (199.48,123.143,-3665.48)
+Point[3] Position= (200.421,124.276,-3664.75)
+Point[4] Position= (199.948,124.148,-3663.84)
+Point[5] Position= (199.964,124.115,-3663.81)
+Point[6] Position= (200.103,123.995,-3663.78)
 
-TrackID =1388 : ParentID=1333 : TrackStatus=1
+TrackID =1445 : ParentID=1415 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.131 34.431 1.38513 keV
-Vertex : 0.700636 -0.0486643 -5.28247 m    Global time : 17.7881 ns 
+Original momentum : -20.5632 -18.4384 20.0366 keV
+Vertex : 0.199964 0.124115 -3.66381 m    Global time : 12.6124 ns 
   Current trajectory has 2 points.
-Point[0] Position= (700.636,-48.6643,-5282.47)
-Point[1] Position= (700.675,-48.6145,-5282.47)
+Point[0] Position= (199.964,124.115,-3663.81)
+Point[1] Position= (199.947,124.1,-3663.79)
 
-TrackID =1387 : ParentID=1333 : TrackStatus=1
+TrackID =1444 : ParentID=1415 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.956 -42.8648 -3.15078 keV
-Vertex : 0.686599 -0.0476844 -5.17669 m    Global time : 17.4319 ns 
+Original momentum : 36.7366 -23.6995 16.0572 keV
+Vertex : 0.200421 0.124276 -3.66475 m    Global time : 12.5933 ns 
   Current trajectory has 2 points.
-Point[0] Position= (686.599,-47.6844,-5176.69)
-Point[1] Position= (686.581,-47.7489,-5176.7)
+Point[0] Position= (200.421,124.276,-3664.75)
+Point[1] Position= (200.482,124.236,-3664.72)
 
-TrackID =1386 : ParentID=1333 : TrackStatus=1
+TrackID =1443 : ParentID=1415 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.3583 -8.3437 -5.34872 keV
-Vertex : 0.671044 -0.0465991 -5.05952 m    Global time : 17.0373 ns 
+Original momentum : 12.8107 13.1949 -36.3221 keV
+Vertex : 0.19948 0.123143 -3.66548 m    Global time : 12.5698 ns 
   Current trajectory has 2 points.
-Point[0] Position= (671.044,-46.5991,-5059.52)
-Point[1] Position= (671.018,-46.6058,-5059.52)
+Point[0] Position= (199.48,123.143,-3665.48)
+Point[1] Position= (199.496,123.159,-3665.53)
 
-TrackID =1385 : ParentID=1333 : TrackStatus=1
+TrackID =1414 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.185 89.2012 -9.87261 keV
-Vertex : 0.669278 -0.0464757 -5.04621 m    Global time : 16.9925 ns 
+Original momentum : -224.741 -7.10073 -64.6955 keV
+Vertex : 0.198765 0.118721 -3.65296 m    Global time : 12.4747 ns 
+  Current trajectory has 12 points.
+Point[0] Position= (198.765,118.721,-3652.96)
+Point[1] Position= (195.827,118.628,-3653.8)
+Point[2] Position= (186.55,118.488,-3654.24)
+Point[3] Position= (184.861,119.424,-3653.42)
+Point[4] Position= (178.682,117.386,-3649.46)
+Point[5] Position= (174.972,117.547,-3650.01)
+Point[6] Position= (175.339,115.31,-3654.75)
+Point[7] Position= (175.64,116.05,-3655.46)
+Point[8] Position= (174.789,116.757,-3657.49)
+Point[9] Position= (175.984,116.741,-3658.69)
+Point[10] Position= (176.54,116.119,-3658.05)
+Point[11] Position= (176.215,116.056,-3658.11)
+
+TrackID =1448 : ParentID=1414 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 85.21 18.2273 -30.6111 keV
+Vertex : 0.17564 0.11605 -3.65546 m    Global time : 12.7577 ns 
   Current trajectory has 3 points.
-Point[0] Position= (669.278,-46.4757,-5046.21)
-Point[1] Position= (669.208,-45.7225,-5046.29)
-Point[2] Position= (669.217,-45.7464,-5046.32)
+Point[0] Position= (175.64,116.05,-3655.46)
+Point[1] Position= (176.4,116.213,-3655.73)
+Point[2] Position= (176.416,116.241,-3655.75)
 
-TrackID =1384 : ParentID=1333 : TrackStatus=1
+TrackID =1447 : ParentID=1414 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.7638 -41.9378 1.49265 keV
-Vertex : 0.583995 -0.0405779 -4.40353 m    Global time : 14.8283 ns 
+Original momentum : 11.7027 33.4145 -15.1373 keV
+Vertex : 0.174972 0.117547 -3.65001 m    Global time : 12.6952 ns 
   Current trajectory has 2 points.
-Point[0] Position= (583.995,-40.5779,-4403.53)
-Point[1] Position= (584.047,-40.6594,-4403.52)
+Point[0] Position= (174.972,117.547,-3650.01)
+Point[1] Position= (174.985,117.583,-3650.02)
 
-TrackID =1383 : ParentID=1333 : TrackStatus=1
+TrackID =1446 : ParentID=1414 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.4628 34.4661 -5.90734 keV
-Vertex : 0.574495 -0.0399261 -4.33194 m    Global time : 14.5872 ns 
+Original momentum : 1.19216 21.9799 -42.7939 keV
+Vertex : 0.195827 0.118628 -3.6538 m    Global time : 12.4992 ns 
   Current trajectory has 2 points.
-Point[0] Position= (574.495,-39.9261,-4331.94)
-Point[1] Position= (574.454,-39.8747,-4331.94)
+Point[0] Position= (195.827,118.628,-3653.8)
+Point[1] Position= (195.829,118.667,-3653.88)
 
-TrackID =1382 : ParentID=1333 : TrackStatus=1
+TrackID =1413 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.3142 35.3504 -0.0739559 keV
-Vertex : 0.559814 -0.0389105 -4.22129 m    Global time : 14.2147 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (559.814,-38.9105,-4221.29)
-Point[1] Position= (559.826,-38.8746,-4221.29)
+Original momentum : 62.1079 164.985 -21.972 keV
+Vertex : 0.189033 0.112914 -3.47405 m    Global time : 11.8637 ns 
+  Current trajectory has 8 points.
+Point[0] Position= (189.033,112.914,-3474.05)
+Point[1] Position= (190.635,117.169,-3474.62)
+Point[2] Position= (187.439,115.536,-3474.08)
+Point[3] Position= (185.631,114.898,-3473.27)
+Point[4] Position= (184.864,114.561,-3471.45)
+Point[5] Position= (184.473,114.665,-3471.52)
+Point[6] Position= (183.901,115.362,-3471.8)
+Point[7] Position= (183.834,115.445,-3471.72)
 
-TrackID =1381 : ParentID=1333 : TrackStatus=1
+TrackID =1450 : ParentID=1413 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.7044 18.9537 -4.79991 keV
-Vertex : 0.548061 -0.0380956 -4.13275 m    Global time : 13.9165 ns 
+Original momentum : -34.5154 -12.6353 37.5602 keV
+Vertex : 0.184473 0.114665 -3.47152 m    Global time : 12.0091 ns 
   Current trajectory has 2 points.
-Point[0] Position= (548.061,-38.0956,-4132.75)
-Point[1] Position= (548.041,-38.0809,-4132.76)
+Point[0] Position= (184.473,114.665,-3471.52)
+Point[1] Position= (184.396,114.637,-3471.44)
 
-TrackID =1380 : ParentID=1333 : TrackStatus=1
+TrackID =1449 : ParentID=1413 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.6346 -34.5166 -6.68276 keV
-Vertex : 0.547521 -0.0380582 -4.12868 m    Global time : 13.9028 ns 
+Original momentum : -28.5594 13.0182 -9.48106 keV
+Vertex : 0.185631 0.114898 -3.47327 m    Global time : 11.9755 ns 
   Current trajectory has 2 points.
-Point[0] Position= (547.521,-38.0582,-4128.68)
-Point[1] Position= (547.455,-38.1239,-4128.69)
+Point[0] Position= (185.631,114.898,-3473.27)
+Point[1] Position= (185.609,114.908,-3473.28)
 
-TrackID =1379 : ParentID=1333 : TrackStatus=1
+TrackID =1412 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -16.9765 33.4901 -3.96627 keV
-Vertex : 0.544233 -0.0378314 -4.10392 m    Global time : 13.8194 ns 
+Original momentum : -2.77379 55.0098 -1.39273 keV
+Vertex : 0.186356 0.111314 -3.42489 m    Global time : 11.6958 ns 
   Current trajectory has 2 points.
-Point[0] Position= (544.233,-37.8314,-4103.92)
-Point[1] Position= (544.215,-37.7967,-4103.92)
+Point[0] Position= (186.356,111.314,-3424.89)
+Point[1] Position= (186.349,111.451,-3424.89)
 
-TrackID =1378 : ParentID=1333 : TrackStatus=1
+TrackID =1411 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.5597 31.7088 1.3801 keV
-Vertex : 0.532018 -0.0369881 -4.01191 m    Global time : 13.5096 ns 
+Original momentum : 25.3523 -23.9006 -0.611724 keV
+Vertex : 0.185773 0.110966 -3.41419 m    Global time : 11.6593 ns 
   Current trajectory has 2 points.
-Point[0] Position= (532.018,-36.9881,-4011.91)
-Point[1] Position= (532.048,-36.9505,-4011.91)
+Point[0] Position= (185.773,110.966,-3414.19)
+Point[1] Position= (185.795,110.945,-3414.2)
 
-TrackID =1377 : ParentID=1333 : TrackStatus=1
+TrackID =1410 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.8967 16.2545 2.51797 keV
-Vertex : 0.526363 -0.0365983 -3.96929 m    Global time : 13.3661 ns 
+Original momentum : -52.9001 -19.3838 -6.72525 keV
+Vertex : 0.18391 0.109852 -3.37997 m    Global time : 11.5424 ns 
   Current trajectory has 2 points.
-Point[0] Position= (526.363,-36.5983,-3969.29)
-Point[1] Position= (526.383,-36.5862,-3969.29)
+Point[0] Position= (183.91,109.852,-3379.97)
+Point[1] Position= (183.768,109.8,-3379.99)
 
-TrackID =1376 : ParentID=1333 : TrackStatus=1
+TrackID =1409 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -50.9904 -1.46951 -9.40483 keV
-Vertex : 0.504653 -0.0351062 -3.80568 m    Global time : 12.8151 ns 
+Original momentum : 8.73167 -33.9025 -1.85623 keV
+Vertex : 0.177133 0.105802 -3.25542 m    Global time : 11.1171 ns 
   Current trajectory has 2 points.
-Point[0] Position= (504.653,-35.1062,-3805.68)
-Point[1] Position= (504.543,-35.1093,-3805.7)
+Point[0] Position= (177.133,105.802,-3255.42)
+Point[1] Position= (177.14,105.772,-3255.42)
 
-TrackID =1375 : ParentID=1333 : TrackStatus=1
+TrackID =1408 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -83.5565 21.5391 -18.9355 keV
-Vertex : 0.501668 -0.034902 -3.78319 m    Global time : 12.7394 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (501.668,-34.902,-3783.19)
-Point[1] Position= (501.282,-34.8025,-3783.28)
-Point[2] Position= (501.251,-34.9852,-3782.9)
-
-TrackID =1397 : ParentID=1375 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.288 -16.6128 -10.4008 keV
-Vertex : 0.501282 -0.0348025 -3.78328 m    Global time : 12.7474 ns 
+Original momentum : 20.0268 -46.0629 -2.93774 keV
+Vertex : 0.174476 0.104214 -3.20658 m    Global time : 10.9503 ns 
   Current trajectory has 2 points.
-Point[0] Position= (501.282,-34.8025,-3783.28)
-Point[1] Position= (501.254,-34.818,-3783.29)
+Point[0] Position= (174.476,104.214,-3206.58)
+Point[1] Position= (174.515,104.122,-3206.58)
 
-TrackID =1374 : ParentID=1333 : TrackStatus=1
+TrackID =1407 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.996 -5.89867 -5.26348 keV
-Vertex : 0.485896 -0.0338231 -3.66431 m    Global time : 12.3391 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (485.896,-33.8231,-3664.31)
-Point[1] Position= (485.871,-33.8276,-3664.32)
+Original momentum : -74.1087 228.176 -54.0321 keV
+Vertex : 0.173185 0.103443 -3.18286 m    Global time : 10.8693 ns 
+  Current trajectory has 14 points.
+Point[0] Position= (173.185,103.443,-3182.86)
+Point[1] Position= (172.706,104.915,-3183.2)
+Point[2] Position= (172.334,106.277,-3184.13)
+Point[3] Position= (167.967,113.589,-3188.9)
+Point[4] Position= (163.607,116.227,-3192.71)
+Point[5] Position= (160.379,118.686,-3195.88)
+Point[6] Position= (157.431,117.256,-3199.58)
+Point[7] Position= (158.075,117.732,-3203.56)
+Point[8] Position= (159.455,117.612,-3205.26)
+Point[9] Position= (160.257,115.351,-3206.3)
+Point[10] Position= (161.192,114.975,-3208.17)
+Point[11] Position= (160.626,115.353,-3208.36)
+Point[12] Position= (160.678,115.834,-3208.35)
+Point[13] Position= (160.67,115.846,-3208.35)
 
-TrackID =1373 : ParentID=1333 : TrackStatus=1
+TrackID =1457 : ParentID=1407 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 52.3279 11.8586 3.98356 keV
-Vertex : 0.473805 -0.0329968 -3.57319 m    Global time : 12.0322 ns 
+Original momentum : -49.1012 5.87006 -13.669 keV
+Vertex : 0.160626 0.115353 -3.20836 m    Global time : 11.2623 ns 
   Current trajectory has 2 points.
-Point[0] Position= (473.805,-32.9968,-3573.19)
-Point[1] Position= (473.928,-32.969,-3573.18)
+Point[0] Position= (160.626,115.353,-3208.36)
+Point[1] Position= (160.523,115.365,-3208.39)
 
-TrackID =1372 : ParentID=1333 : TrackStatus=1
+TrackID =1456 : ParentID=1407 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.9927 11.086 -6.94272 keV
-Vertex : 0.466932 -0.0325276 -3.52138 m    Global time : 11.8578 ns 
+Original momentum : 40.8823 18.7816 -10.0573 keV
+Vertex : 0.159455 0.117612 -3.20526 m    Global time : 11.1898 ns 
   Current trajectory has 2 points.
-Point[0] Position= (466.932,-32.5276,-3521.38)
-Point[1] Position= (466.883,-32.5138,-3521.39)
+Point[0] Position= (159.455,117.612,-3205.26)
+Point[1] Position= (159.521,117.642,-3205.28)
 
-TrackID =1371 : ParentID=1333 : TrackStatus=1
+TrackID =1455 : ParentID=1407 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.46402 30.9305 -0.171496 keV
-Vertex : 0.457832 -0.0319074 -3.45282 m    Global time : 11.6269 ns 
+Original momentum : 28.6065 19.7753 -30.9566 keV
+Vertex : 0.160379 0.118686 -3.19588 m    Global time : 11.0728 ns 
   Current trajectory has 2 points.
-Point[0] Position= (457.832,-31.9074,-3452.82)
-Point[1] Position= (457.838,-31.885,-3452.82)
+Point[0] Position= (160.379,118.686,-3195.88)
+Point[1] Position= (160.427,118.719,-3195.93)
 
-TrackID =1370 : ParentID=1333 : TrackStatus=1
+TrackID =1454 : ParentID=1407 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.6351 -38.6266 -7.77822 keV
-Vertex : 0.44364 -0.0309387 -3.34588 m    Global time : 11.2668 ns 
+Original momentum : -26.2446 7.57353 32.0847 keV
+Vertex : 0.163607 0.116227 -3.19271 m    Global time : 11.0262 ns 
   Current trajectory has 2 points.
-Point[0] Position= (443.64,-30.9387,-3345.88)
-Point[1] Position= (443.543,-31.035,-3345.9)
+Point[0] Position= (163.607,116.227,-3192.71)
+Point[1] Position= (163.572,116.237,-3192.67)
 
-TrackID =1369 : ParentID=1333 : TrackStatus=1
+TrackID =1453 : ParentID=1407 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 55.4761 -4.35998 4.33649 keV
-Vertex : 0.430246 -0.0300228 -3.245 m    Global time : 10.9271 ns 
+Original momentum : 18.9806 30.289 -1.17436 keV
+Vertex : 0.167967 0.113589 -3.1889 m    Global time : 10.9725 ns 
   Current trajectory has 2 points.
-Point[0] Position= (430.246,-30.0228,-3245)
-Point[1] Position= (430.388,-30.0339,-3244.99)
+Point[0] Position= (167.967,113.589,-3188.9)
+Point[1] Position= (167.984,113.617,-3188.9)
 
-TrackID =1368 : ParentID=1333 : TrackStatus=1
+TrackID =1452 : ParentID=1407 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 58.4084 -3.49506 4.39913 keV
-Vertex : 0.405143 -0.0283002 -3.05594 m    Global time : 10.2904 ns 
+Original momentum : 31.1811 16.9629 -3.10215 keV
+Vertex : 0.172334 0.106277 -3.18413 m    Global time : 10.8948 ns 
   Current trajectory has 2 points.
-Point[0] Position= (405.143,-28.3002,-3055.94)
-Point[1] Position= (405.312,-28.3103,-3055.93)
+Point[0] Position= (172.334,106.277,-3184.13)
+Point[1] Position= (172.362,106.293,-3184.13)
 
-TrackID =1367 : ParentID=1333 : TrackStatus=1
+TrackID =1451 : ParentID=1407 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.191 28.272 -4.68135 keV
-Vertex : 0.386541 -0.0270108 -2.91586 m    Global time : 9.81873 ns 
+Original momentum : 35.0852 -9.21518 -28.515 keV
+Vertex : 0.172706 0.104915 -3.1832 m    Global time : 10.8815 ns 
   Current trajectory has 2 points.
-Point[0] Position= (386.541,-27.0108,-2915.86)
-Point[1] Position= (386.518,-26.983,-2915.87)
+Point[0] Position= (172.706,104.915,-3183.2)
+Point[1] Position= (172.763,104.9,-3183.25)
 
-TrackID =1366 : ParentID=1333 : TrackStatus=1
+TrackID =1406 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.0687 -26.8993 1.79846 keV
-Vertex : 0.384157 -0.0268451 -2.8979 m    Global time : 9.75826 ns 
+Original momentum : 5.42917 -33.8551 -1.98798 keV
+Vertex : 0.173046 0.10336 -3.18032 m    Global time : 10.8606 ns 
   Current trajectory has 2 points.
-Point[0] Position= (384.157,-26.8451,-2897.9)
-Point[1] Position= (384.173,-26.8666,-2897.9)
+Point[0] Position= (173.046,103.36,-3180.32)
+Point[1] Position= (173.051,103.331,-3180.32)
 
-TrackID =1365 : ParentID=1333 : TrackStatus=1
+TrackID =1405 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.0316 43.9195 -4.38231 keV
-Vertex : 0.37551 -0.0262442 -2.83279 m    Global time : 9.539 ns 
+Original momentum : -21.6622 -28.3777 -3.39119 keV
+Vertex : 0.163613 0.0977129 -3.00694 m    Global time : 10.2686 ns 
   Current trajectory has 2 points.
-Point[0] Position= (375.51,-26.2442,-2832.79)
-Point[1] Position= (375.487,-26.1723,-2832.8)
+Point[0] Position= (163.613,97.7129,-3006.94)
+Point[1] Position= (163.593,97.6867,-3006.95)
 
-TrackID =1364 : ParentID=1333 : TrackStatus=1
+TrackID =1404 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.5614 -17.2674 -4.75442 keV
-Vertex : 0.341676 -0.0238891 -2.57803 m    Global time : 8.68111 ns 
+Original momentum : 0.969316 -46.1926 -3.59345 keV
+Vertex : 0.135472 0.0808963 -2.48977 m    Global time : 8.50244 ns 
   Current trajectory has 2 points.
-Point[0] Position= (341.676,-23.8891,-2578.03)
-Point[1] Position= (341.653,-23.903,-2578.04)
+Point[0] Position= (135.472,80.8963,-2489.77)
+Point[1] Position= (135.473,80.8205,-2489.77)
 
-TrackID =1363 : ParentID=1333 : TrackStatus=1
+TrackID =1403 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.6021 34.22 1.66688 keV
-Vertex : 0.338643 -0.0236784 -2.55519 m    Global time : 8.60417 ns 
+Original momentum : 4.95694 -36.5604 -2.2842 keV
+Vertex : 0.12974 0.0774776 -2.38439 m    Global time : 8.14259 ns 
   Current trajectory has 2 points.
-Point[0] Position= (338.643,-23.6784,-2555.19)
-Point[1] Position= (338.692,-23.6233,-2555.18)
+Point[0] Position= (129.74,77.4776,-2384.39)
+Point[1] Position= (129.745,77.4414,-2384.39)
 
-TrackID =1362 : ParentID=1333 : TrackStatus=1
+TrackID =1402 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -18.7887 31.9201 -4.15921 keV
-Vertex : 0.314104 -0.0219682 -2.37037 m    Global time : 7.9818 ns 
+Original momentum : 23.0597 -55.7863 -4.21123 keV
+Vertex : 0.126747 0.075691 -2.32932 m    Global time : 7.95453 ns 
   Current trajectory has 2 points.
-Point[0] Position= (314.104,-21.9682,-2370.37)
-Point[1] Position= (314.085,-21.9361,-2370.37)
+Point[0] Position= (126.747,75.691,-2329.32)
+Point[1] Position= (126.819,75.5167,-2329.34)
 
-TrackID =1361 : ParentID=1333 : TrackStatus=1
+TrackID =1401 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.0146 -11.8538 3.05751 keV
-Vertex : 0.310462 -0.0217152 -2.34294 m    Global time : 7.88944 ns 
+Original momentum : 40.563 14.08 0.817401 keV
+Vertex : 0.123225 0.0735896 -2.26451 m    Global time : 7.73318 ns 
   Current trajectory has 2 points.
-Point[0] Position= (310.462,-21.7152,-2342.94)
-Point[1] Position= (310.485,-21.724,-2342.94)
+Point[0] Position= (123.225,73.5896,-2264.51)
+Point[1] Position= (123.281,73.609,-2264.51)
 
-TrackID =1360 : ParentID=1333 : TrackStatus=1
+TrackID =1400 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.7312 -24.7919 2.46093 keV
-Vertex : 0.310081 -0.0216887 -2.34007 m    Global time : 7.87979 ns 
+Original momentum : -45.5621 9.69432 -4.35091 keV
+Vertex : 0.119398 0.0713056 -2.19414 m    Global time : 7.49287 ns 
   Current trajectory has 2 points.
-Point[0] Position= (310.081,-21.6887,-2340.07)
-Point[1] Position= (310.107,-21.7126,-2340.07)
+Point[0] Position= (119.398,71.3056,-2194.14)
+Point[1] Position= (119.322,71.3218,-2194.14)
 
-TrackID =1359 : ParentID=1333 : TrackStatus=1
+TrackID =1399 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.1813 -57.0657 -8.02893 keV
-Vertex : 0.29469 -0.0206117 -2.22416 m    Global time : 7.48944 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (294.69,-20.6117,-2224.16)
-Point[1] Position= (294.565,-20.8329,-2224.19)
+Original momentum : 54.2997 171.689 -23.5249 keV
+Vertex : 0.111322 0.0664751 -2.04542 m    Global time : 6.985 ns 
+  Current trajectory has 8 points.
+Point[0] Position= (111.322,66.4751,-2045.42)
+Point[1] Position= (112.719,70.8924,-2046.02)
+Point[2] Position= (114.157,74.2139,-2046.32)
+Point[3] Position= (114.207,76.035,-2048)
+Point[4] Position= (114.818,74.6624,-2048.69)
+Point[5] Position= (115.21,74.0833,-2049.57)
+Point[6] Position= (115.485,73.7446,-2049.87)
+Point[7] Position= (115.458,73.7345,-2049.89)
 
-TrackID =1358 : ParentID=1333 : TrackStatus=1
+TrackID =1459 : ParentID=1399 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.0988 -1.25776 3.24741 keV
-Vertex : 0.293714 -0.0205431 -2.21681 m    Global time : 7.4647 ns 
+Original momentum : -31.1 -14.3438 -4.61748 keV
+Vertex : 0.114818 0.0746624 -2.04869 m    Global time : 7.12606 ns 
   Current trajectory has 2 points.
-Point[0] Position= (293.714,-20.5431,-2216.81)
-Point[1] Position= (293.738,-20.5441,-2216.81)
+Point[0] Position= (114.818,74.6624,-2048.69)
+Point[1] Position= (114.791,74.6502,-2048.7)
 
-TrackID =1357 : ParentID=1333 : TrackStatus=1
+TrackID =1458 : ParentID=1399 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.1657 49.6321 -5.82915 keV
-Vertex : 0.271639 -0.0189932 -2.0506 m    Global time : 6.905 ns 
+Original momentum : 37.1089 -15.6105 2.06602 keV
+Vertex : 0.112719 0.0708924 -2.04602 m    Global time : 7.03154 ns 
   Current trajectory has 2 points.
-Point[0] Position= (271.639,-18.9932,-2050.6)
-Point[1] Position= (271.594,-18.8783,-2050.61)
+Point[0] Position= (112.719,70.8924,-2046.02)
+Point[1] Position= (112.763,70.8737,-2046.02)
 
-TrackID =1356 : ParentID=1333 : TrackStatus=1
+TrackID =1398 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.60177 37.5153 -2.09397 keV
-Vertex : 0.266679 -0.0186451 -2.01324 m    Global time : 6.77919 ns 
+Original momentum : -15.3961 -30.258 -2.98239 keV
+Vertex : 0.104564 0.0624294 -1.92101 m    Global time : 6.56017 ns 
   Current trajectory has 2 points.
-Point[0] Position= (266.679,-18.6451,-2013.24)
-Point[1] Position= (266.677,-18.6065,-2013.24)
+Point[0] Position= (104.564,62.4294,-1921.01)
+Point[1] Position= (104.551,62.4043,-1921.02)
 
-TrackID =1355 : ParentID=1333 : TrackStatus=1
+TrackID =1397 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -75.8573 -181.43 -47.3129 keV
-Vertex : 0.2529 -0.0176788 -1.90939 m    Global time : 6.42948 ns 
-  Current trajectory has 11 points.
-Point[0] Position= (252.9,-17.6788,-1909.39)
-Point[1] Position= (251.478,-21.0784,-1910.27)
-Point[2] Position= (249.823,-23.5788,-1910.4)
-Point[3] Position= (248.74,-27.8088,-1912.33)
-Point[4] Position= (248.779,-28.1082,-1912.69)
-Point[5] Position= (249.103,-30.0651,-1914.62)
-Point[6] Position= (249.418,-32.0131,-1914.34)
-Point[7] Position= (249.269,-32.748,-1914.4)
-Point[8] Position= (250.091,-32.7008,-1914.17)
-Point[9] Position= (250.166,-32.6446,-1914.18)
-Point[10] Position= (250.215,-32.5716,-1914.14)
+Original momentum : -67.8696 -278.858 -97.9262 keV
+Vertex : 0.104225 0.0622267 -1.91478 m    Global time : 6.53889 ns 
+  Current trajectory has 16 points.
+Point[0] Position= (104.225,62.2267,-1914.78)
+Point[1] Position= (99.1164,41.2349,-1922.15)
+Point[2] Position= (91.8043,27.4911,-1931.14)
+Point[3] Position= (89.4549,24.3764,-1934.91)
+Point[4] Position= (81.1636,20.2423,-1931.04)
+Point[5] Position= (71.8442,21.8925,-1934.56)
+Point[6] Position= (67.1651,24.6312,-1939.83)
+Point[7] Position= (65.6911,27.8574,-1945.02)
+Point[8] Position= (66.1503,29.0676,-1946.78)
+Point[9] Position= (65.3135,31.8038,-1949.99)
+Point[10] Position= (65.3003,32.2969,-1950.62)
+Point[11] Position= (65.0243,33.9718,-1953.17)
+Point[12] Position= (64.0838,34.0253,-1954.97)
+Point[13] Position= (62.8029,34.0613,-1955.27)
+Point[14] Position= (62.7301,33.4595,-1955.41)
+Point[15] Position= (62.7297,33.4591,-1955.4)
 
-TrackID =1402 : ParentID=1355 : TrackStatus=1
+TrackID =1464 : ParentID=1397 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.326 -13.2426 -19.3744 keV
-Vertex : 0.250166 -0.0326446 -1.91418 m    Global time : 6.63731 ns 
+Original momentum : -31.6363 5.84467 -9.01988 keV
+Vertex : 0.0628029 0.0340613 -1.95527 m    Global time : 7.29455 ns 
   Current trajectory has 2 points.
-Point[0] Position= (250.166,-32.6446,-1914.18)
-Point[1] Position= (250.207,-32.6608,-1914.2)
+Point[0] Position= (62.8029,34.0613,-1955.27)
+Point[1] Position= (62.7779,34.066,-1955.27)
 
-TrackID =1401 : ParentID=1355 : TrackStatus=1
+TrackID =1463 : ParentID=1397 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.6651 -17.1542 -36.5203 keV
-Vertex : 0.249269 -0.032748 -1.9144 m    Global time : 6.61895 ns 
+Original momentum : 40.4254 0.0127865 -4.65684 keV
+Vertex : 0.0653003 0.0322969 -1.95062 m    Global time : 7.21036 ns 
   Current trajectory has 2 points.
-Point[0] Position= (249.269,-32.748,-1914.4)
-Point[1] Position= (249.284,-32.7705,-1914.45)
+Point[0] Position= (65.3003,32.2969,-1950.62)
+Point[1] Position= (65.3497,32.2969,-1950.63)
 
-TrackID =1400 : ParentID=1355 : TrackStatus=1
+TrackID =1462 : ParentID=1397 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.42251 34.0474 -35.9643 keV
-Vertex : 0.248779 -0.0281082 -1.91269 m    Global time : 6.54607 ns 
+Original momentum : 14.986 -23.624 -24.3486 keV
+Vertex : 0.0661503 0.0290676 -1.94678 m    Global time : 7.15683 ns 
   Current trajectory has 2 points.
-Point[0] Position= (248.779,-28.1082,-1912.69)
-Point[1] Position= (248.768,-28.0419,-1912.76)
+Point[0] Position= (66.1503,29.0676,-1946.78)
+Point[1] Position= (66.1653,29.0441,-1946.81)
 
-TrackID =1399 : ParentID=1355 : TrackStatus=1
+TrackID =1461 : ParentID=1397 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.1367 11.3053 -4.04921 keV
-Vertex : 0.249823 -0.0235788 -1.9104 m    Global time : 6.49282 ns 
+Original momentum : -23.326 -3.19383 -51.508 keV
+Vertex : 0.0894549 0.0243764 -1.93491 m    Global time : 6.85281 ns 
   Current trajectory has 2 points.
-Point[0] Position= (249.823,-23.5788,-1910.4)
-Point[1] Position= (249.778,-23.5655,-1910.4)
+Point[0] Position= (89.4549,24.3764,-1934.91)
+Point[1] Position= (89.393,24.3679,-1935.05)
 
-TrackID =1398 : ParentID=1355 : TrackStatus=1
+TrackID =1460 : ParentID=1397 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.19895 1.2417 -53.0601 keV
-Vertex : 0.251478 -0.0210784 -1.91027 m    Global time : 6.46383 ns 
+Original momentum : -0.576653 -17.8212 27.1825 keV
+Vertex : 0.0991164 0.0412349 -1.92215 m    Global time : 6.6881 ns 
   Current trajectory has 2 points.
-Point[0] Position= (251.478,-21.0784,-1910.27)
-Point[1] Position= (251.481,-21.0756,-1910.39)
+Point[0] Position= (99.1164,41.2349,-1922.15)
+Point[1] Position= (99.116,41.2216,-1922.13)
 
-TrackID =1354 : ParentID=1333 : TrackStatus=1
+TrackID =1396 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.0716 17.5654 -5.96952 keV
-Vertex : 0.24864 -0.0173787 -1.87727 m    Global time : 6.32134 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (248.64,-17.3787,-1877.27)
-Point[1] Position= (248.605,-17.3604,-1877.28)
+Original momentum : 7.95419 -109.532 -15.2988 keV
+Vertex : 0.0985189 0.0588145 -1.80966 m    Global time : 6.17992 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (98.5189,58.8145,-1809.66)
+Point[1] Position= (98.6152,57.4878,-1809.85)
+Point[2] Position= (98.8134,57.1757,-1809.92)
+Point[3] Position= (98.8618,57.2498,-1809.92)
 
-TrackID =1353 : ParentID=1333 : TrackStatus=1
+TrackID =1466 : ParentID=1396 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.63243 65.0837 -5.15841 keV
-Vertex : 0.240487 -0.0168027 -1.81581 m    Global time : 6.11436 ns 
+Original momentum : 1.1357 0.472353 -39.8791 keV
+Vertex : 0.0988134 0.0571757 -1.80992 m    Global time : 6.20945 ns 
   Current trajectory has 2 points.
-Point[0] Position= (240.487,-16.8027,-1815.81)
-Point[1] Position= (240.477,-16.5568,-1815.83)
+Point[0] Position= (98.8134,57.1757,-1809.92)
+Point[1] Position= (98.8147,57.1762,-1809.97)
 
-TrackID =1352 : ParentID=1333 : TrackStatus=1
+TrackID =1465 : ParentID=1396 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.1151 -36.0007 -6.25693 keV
-Vertex : 0.225754 -0.015766 -1.70474 m    Global time : 5.74035 ns 
+Original momentum : 28.6302 17.0698 4.36857 keV
+Vertex : 0.0986152 0.0574878 -1.80985 m    Global time : 6.20105 ns 
   Current trajectory has 2 points.
-Point[0] Position= (225.754,-15.766,-1704.74)
-Point[1] Position= (225.695,-15.8322,-1704.75)
+Point[0] Position= (98.6152,57.4878,-1809.85)
+Point[1] Position= (98.6382,57.5015,-1809.85)
 
-TrackID =1351 : ParentID=1333 : TrackStatus=1
+TrackID =1395 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 73.475 8.02309 4.27997 keV
-Vertex : 0.208012 -0.0145272 -1.57091 m    Global time : 5.2897 ns 
+Original momentum : 52.2818 20.2184 0.355285 keV
+Vertex : 0.087262 0.0520906 -1.60225 m    Global time : 5.47161 ns 
   Current trajectory has 2 points.
-Point[0] Position= (208.012,-14.5272,-1570.91)
-Point[1] Position= (208.393,-14.4857,-1570.89)
-
-TrackID =1350 : ParentID=1333 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -293.361 -33.4435 -133.554 keV
-Vertex : 0.202261 -0.0141263 -1.52753 m    Global time : 5.14362 ns 
-  Current trajectory has 17 points.
-Point[0] Position= (202.261,-14.1263,-1527.53)
-Point[1] Position= (176.541,-17.0585,-1539.24)
-Point[2] Position= (162.589,-31.7791,-1551.42)
-Point[3] Position= (162.545,-31.8,-1551.45)
-Point[4] Position= (155.989,-33.8118,-1555.64)
-Point[5] Position= (141.283,-39.1381,-1553)
-Point[6] Position= (129.025,-40.6394,-1548.93)
-Point[7] Position= (126.081,-39.2631,-1548.95)
-Point[8] Position= (123.917,-38.7193,-1548.85)
-Point[9] Position= (120.008,-38.9384,-1550.86)
-Point[10] Position= (115.078,-38.7273,-1550.45)
-Point[11] Position= (112.694,-37.1812,-1553.03)
-Point[12] Position= (110.191,-38.1239,-1552.73)
-Point[13] Position= (109.138,-37.9465,-1551.87)
-Point[14] Position= (109.203,-39.0105,-1552.14)
-Point[15] Position= (108.308,-39.6515,-1551.73)
-Point[16] Position= (108.415,-39.4921,-1551.7)
+Point[0] Position= (87.262,52.0906,-1602.25)
+Point[1] Position= (87.3974,52.1429,-1602.25)
 
-TrackID =1409 : ParentID=1350 : TrackStatus=1
+TrackID =1394 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.9469 -33.7029 -10.8793 keV
-Vertex : 0.109203 -0.0390105 -1.55214 m    Global time : 5.98355 ns 
+Original momentum : 28.5176 14.8619 0.994701 keV
+Vertex : 0.0803397 0.0479541 -1.47474 m    Global time : 5.03617 ns 
   Current trajectory has 2 points.
-Point[0] Position= (109.203,-39.0105,-1552.14)
-Point[1] Position= (109.225,-39.0505,-1552.15)
+Point[0] Position= (80.3397,47.9541,-1474.74)
+Point[1] Position= (80.3605,47.9649,-1474.74)
 
-TrackID =1408 : ParentID=1350 : TrackStatus=1
+TrackID =1393 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.7613 -7.78375 22.3105 keV
-Vertex : 0.109138 -0.0379465 -1.55187 m    Global time : 5.96756 ns 
+Original momentum : 22.2892 -64.5531 -5.57108 keV
+Vertex : 0.0745294 0.0444809 -1.3678 m    Global time : 4.67098 ns 
   Current trajectory has 2 points.
-Point[0] Position= (109.138,-37.9465,-1551.87)
-Point[1] Position= (109.095,-37.9563,-1551.84)
+Point[0] Position= (74.5294,44.4809,-1367.8)
+Point[1] Position= (74.6243,44.2061,-1367.82)
 
-TrackID =1407 : ParentID=1350 : TrackStatus=1
+TrackID =1392 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.92745 39.3877 -57.5169 keV
-Vertex : 0.120008 -0.0389384 -1.55086 m    Global time : 5.82638 ns 
+Original momentum : -18.4807 -28.5305 -3.09981 keV
+Vertex : 0.0677869 0.040449 -1.24384 m    Global time : 4.24768 ns 
   Current trajectory has 2 points.
-Point[0] Position= (120.008,-38.9384,-1550.86)
-Point[1] Position= (119.99,-38.7626,-1551.12)
+Point[0] Position= (67.7869,40.449,-1243.84)
+Point[1] Position= (67.7715,40.4254,-1243.84)
 
-TrackID =1406 : ParentID=1350 : TrackStatus=1
+TrackID =1391 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.24493 62.0485 -3.99348 keV
-Vertex : 0.123917 -0.0387193 -1.54885 m    Global time : 5.78713 ns 
+Original momentum : 29.1527 24.2897 0.937675 keV
+Vertex : 4.88068 2.91141 -89.5485 cm   Global time : 3.05805 ns 
   Current trajectory has 2 points.
-Point[0] Position= (123.917,-38.7193,-1548.85)
-Point[1] Position= (123.909,-38.5117,-1548.86)
+Point[0] Position= (48.8068,29.1141,-895.485)
+Point[1] Position= (48.8373,29.1395,-895.484)
 
-TrackID =1405 : ParentID=1350 : TrackStatus=1
+TrackID =1390 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.8205 68.6403 13.2643 keV
-Vertex : 0.126081 -0.0392631 -1.54895 m    Global time : 5.76824 ns 
+Original momentum : 42.3464 22.0613 0.745056 keV
+Vertex : 2.67415 1.59357 -49.0252 cm   Global time : 1.6742 ns 
   Current trajectory has 2 points.
-Point[0] Position= (126.081,-39.2631,-1548.95)
-Point[1] Position= (126.162,-38.933,-1548.89)
+Point[0] Position= (26.7415,15.9357,-490.252)
+Point[1] Position= (26.8161,15.9745,-490.25)
 
-TrackID =1404 : ParentID=1350 : TrackStatus=1
+TrackID =1389 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.64967 -30.1417 -11.0107 keV
-Vertex : 0.155989 -0.0338118 -1.55564 m    Global time : 5.53069 ns 
+Original momentum : -35.5976 -20.2561 -4.29673 keV
+Vertex : 1.99802 1.19034 -36.6258 cm   Global time : 1.25076 ns 
   Current trajectory has 2 points.
-Point[0] Position= (155.989,-33.8118,-1555.64)
-Point[1] Position= (155.996,-33.8354,-1555.65)
+Point[0] Position= (19.9802,11.9034,-366.258)
+Point[1] Position= (19.9356,11.878,-366.264)
 
-TrackID =1403 : ParentID=1350 : TrackStatus=1
+TrackID =1388 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.7301 -29.8036 -7.70256 keV
-Vertex : 0.162545 -0.0318 -1.55145 m    Global time : 5.47475 ns 
+Original momentum : -23.7958 34.9949 -1.95478 keV
+Vertex : 1.89208 1.12721 -34.6841 cm   Global time : 1.18445 ns 
   Current trajectory has 2 points.
-Point[0] Position= (162.545,-31.8,-1551.45)
-Point[1] Position= (162.556,-31.824,-1551.45)
+Point[0] Position= (18.9208,11.2721,-346.841)
+Point[1] Position= (18.889,11.3189,-346.843)
 
-TrackID =1349 : ParentID=1333 : TrackStatus=1
+TrackID =1387 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 102.874 237.69 -53.5861 keV
-Vertex : 0.191623 -0.0133806 -1.44723 m    Global time : 4.87323 ns 
-  Current trajectory has 14 points.
-Point[0] Position= (191.623,-13.3806,-1447.23)
-Point[1] Position= (191.816,-12.9334,-1447.33)
-Point[2] Position= (197.259,0.875732,-1449.49)
-Point[3] Position= (198.611,12.162,-1451.46)
-Point[4] Position= (198.55,12.5368,-1451.77)
-Point[5] Position= (198.36,13.4078,-1452.68)
-Point[6] Position= (198.437,18.6917,-1459.08)
-Point[7] Position= (196.756,25.0452,-1460.02)
-Point[8] Position= (193.304,27.5416,-1457.61)
-Point[9] Position= (191.425,30.2475,-1459.21)
-Point[10] Position= (192.653,31.0383,-1459.77)
-Point[11] Position= (194.782,31.4393,-1460.05)
-Point[12] Position= (195.171,31.4619,-1460.07)
-Point[13] Position= (195.463,31.3938,-1460.04)
+Original momentum : 19.5534 39.1425 0.424219 keV
+Vertex : 0.9269 0.551572 -16.9863 cm   Global time : 580.076 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (9.269,5.51572,-169.863)
+Point[1] Position= (9.29714,5.57204,-169.862)
 
-TrackID =1412 : ParentID=1349 : TrackStatus=1
+TrackID =1386 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.19746 8.7771 -47.2684 keV
-Vertex : 0.195171 0.0314619 -1.46007 m    Global time : 5.36506 ns 
+Original momentum : 35.6616 20.8829 0.913072 keV
+Vertex : 0.515359 0.306583 -9.44106 cm   Global time : 322.41 ps 
   Current trajectory has 2 points.
-Point[0] Position= (195.171,31.4619,-1460.07)
-Point[1] Position= (195.183,31.4779,-1460.15)
+Point[0] Position= (5.15359,3.06583,-94.4106)
+Point[1] Position= (5.19874,3.09227,-94.4094)
 
-TrackID =1411 : ParentID=1349 : TrackStatus=1
+TrackID =1385 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.28702 30.2598 17.3354 keV
-Vertex : 0.192653 0.0310383 -1.45977 m    Global time : 5.32905 ns 
+Original momentum : 32.1026 -9.05949 0.343939 keV
+Vertex : 0.50643 0.301277 -9.27737 cm   Global time : 316.82 ps 
   Current trajectory has 2 points.
-Point[0] Position= (192.653,31.0383,-1459.77)
-Point[1] Position= (192.65,31.0648,-1459.76)
+Point[0] Position= (5.0643,3.01277,-92.7737)
+Point[1] Position= (5.08965,3.00561,-92.7734)
 
-TrackID =1410 : ParentID=1349 : TrackStatus=1
+TrackID =1384 : ParentID=50 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.17895 26.0633 22.6244 keV
-Vertex : 0.19855 0.0125368 -1.45177 m    Global time : 5.07961 ns 
+Original momentum : 13.7902 29.2946 0.654656 keV
+Vertex : 0.285573 0.170003 -5.23024 cm   Global time : 178.612 ps 
   Current trajectory has 2 points.
-Point[0] Position= (198.55,12.5368,-1451.77)
-Point[1] Position= (198.558,12.5607,-1451.75)
+Point[0] Position= (2.85573,1.70003,-52.3024)
+Point[1] Position= (2.86595,1.72174,-52.302)
 
-TrackID =1348 : ParentID=1333 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.0041 -44.5377 0.0140216 keV
-Vertex : 0.189053 -0.0132006 -1.42783 m    Global time : 4.8079 ns 
+TrackID =1383 : ParentID=1277 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : -0.0849487 0.161988 -1.338 GeV
+Vertex : -0.311829 0.654144 -4.31798 nm   Global time : 1.4663e-05 ps 
   Current trajectory has 2 points.
-Point[0] Position= (189.053,-13.2006,-1427.83)
-Point[1] Position= (189.074,-13.2739,-1427.83)
+Point[0] Position= (-3.11829e-07,6.54144e-07,-4.31798e-06)
+Point[1] Position= (-380.937,726.404,-6000)
+
+TrackID =49 : ParentID=45 : TrackStatus=1
+Particle name : pi+  PDG code : 211  Charge : 1
+Original momentum : 0.488645 0.445824 -10.7884 GeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+  Current trajectory has 60 points.
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (0.691053,0.630492,-15.2573)
+Point[2] Position= (7.83884,7.1498,-172.977)
+Point[3] Position= (13.5811,12.3885,-299.697)
+Point[4] Position= (14.2057,12.9583,-313.48)
+Point[5] Position= (17.244,15.7304,-380.532)
+Point[6] Position= (27.7546,25.3193,-612.554)
+Point[7] Position= (32.021,29.212,-706.764)
+Point[8] Position= (32.0583,29.2459,-707.586)
+Point[9] Position= (49.444,45.1171,-1091.54)
+Point[10] Position= (53.0105,48.3745,-1170.31)
+Point[11] Position= (54.1263,49.3938,-1194.96)
+Point[12] Position= (54.9464,50.1429,-1213.07)
+Point[13] Position= (59.0167,53.8609,-1302.96)
+Point[14] Position= (64.8425,59.1829,-1431.58)
+Point[15] Position= (65.3471,59.6439,-1442.72)
+Point[16] Position= (70.4704,64.3246,-1555.87)
+Point[17] Position= (72.1276,65.8393,-1592.49)
+Point[18] Position= (85.0903,77.679,-1878.73)
+Point[19] Position= (91.6812,83.6947,-2024.22)
+Point[20] Position= (93.351,85.2193,-2061.09)
+Point[21] Position= (95.6875,87.3536,-2112.68)
+Point[22] Position= (97.7232,89.2139,-2157.63)
+Point[23] Position= (99.4342,90.7771,-2195.41)
+Point[24] Position= (105.822,96.6128,-2336.48)
+Point[25] Position= (107.867,98.4818,-2381.66)
+Point[26] Position= (110.866,101.224,-2447.94)
+Point[27] Position= (121.046,110.534,-2672.85)
+Point[28] Position= (121.227,110.699,-2676.85)
+Point[29] Position= (124.265,113.48,-2744.03)
+Point[30] Position= (124.365,113.571,-2746.23)
+Point[31] Position= (128.688,117.526,-2841.77)
+Point[32] Position= (130.092,118.81,-2872.79)
+Point[33] Position= (130.65,119.319,-2885.1)
+Point[34] Position= (140.361,128.179,-3099.47)
+Point[35] Position= (145.572,132.926,-3214.45)
+Point[36] Position= (148.198,135.318,-3272.42)
+Point[37] Position= (150.38,137.307,-3320.6)
+Point[38] Position= (152.708,139.428,-3372.01)
+Point[39] Position= (158.911,145.081,-3508.97)
+Point[40] Position= (159.053,145.211,-3512.12)
+Point[41] Position= (159.272,145.41,-3516.95)
+Point[42] Position= (162.666,148.507,-3591.96)
+Point[43] Position= (165.422,151.022,-3652.9)
+Point[44] Position= (168.009,153.383,-3710.09)
+Point[45] Position= (168.056,153.426,-3711.12)
+Point[46] Position= (172.638,157.616,-3812.49)
+Point[47] Position= (186.21,170.026,-4112.72)
+Point[48] Position= (186.845,170.607,-4126.76)
+Point[49] Position= (203.426,185.759,-4493.38)
+Point[50] Position= (204.36,186.612,-4514.01)
+Point[51] Position= (214.603,195.974,-4740.56)
+Point[52] Position= (227.8,208.041,-5032.63)
+Point[53] Position= (233.904,213.629,-5167.84)
+Point[54] Position= (235.372,214.972,-5200.36)
+Point[55] Position= (238.295,217.647,-5265.11)
+Point[56] Position= (245.087,223.863,-5415.54)
+Point[57] Position= (252.622,230.749,-5582.27)
+Point[58] Position= (268.939,245.655,-5943.37)
+Point[59] Position= (271.497,247.994,-6000)
+
+TrackID =1524 : ParentID=49 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -52.7854 47.8424 -5.38802 keV
+Vertex : 0.268939 0.245655 -5.94337 m    Global time : 19.8638 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (268.939,245.655,-5943.37)
+Point[1] Position= (268.689,245.881,-5943.4)
+
+TrackID =1523 : ParentID=49 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 86.3168 3.91411 -3.21464 keV
+Vertex : 0.252622 0.230749 -5.58227 m    Global time : 18.657 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (252.622,230.749,-5582.27)
+Point[1] Position= (253.283,230.779,-5582.3)
+Point[2] Position= (253.301,230.764,-5582.34)
 
-TrackID =1347 : ParentID=1333 : TrackStatus=1
+TrackID =1522 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.4119 36.9809 0.115603 keV
-Vertex : 0.189038 -0.0131996 -1.42771 m    Global time : 4.80752 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (189.038,-13.1996,-1427.71)
-Point[1] Position= (189.056,-13.1559,-1427.71)
+Original momentum : -116.483 -19.8891 -19.9764 keV
+Vertex : 0.245087 0.223863 -5.41554 m    Global time : 18.0997 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (245.087,223.863,-5415.54)
+Point[1] Position= (243.447,223.583,-5415.82)
+Point[2] Position= (243.477,223.726,-5416.94)
+Point[3] Position= (243.468,223.307,-5417.25)
 
-TrackID =1346 : ParentID=1333 : TrackStatus=1
+TrackID =1521 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.2521 -28.0517 2.19717 keV
-Vertex : 0.175816 -0.012273 -1.32792 m    Global time : 4.47147 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (175.816,-12.273,-1327.92)
-Point[1] Position= (175.842,-12.3022,-1327.92)
+Original momentum : -26.2997 -80.2138 -11.5697 keV
+Vertex : 0.238295 0.217647 -5.26511 m    Global time : 17.5969 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (238.295,217.647,-5265.11)
+Point[1] Position= (238.101,217.054,-5265.2)
+Point[2] Position= (238.112,217.041,-5265.19)
 
-TrackID =1345 : ParentID=1333 : TrackStatus=1
+TrackID =1520 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.8105 -28.6978 -4.82981 keV
-Vertex : 0.172758 -0.0120585 -1.30484 m    Global time : 4.39376 ns 
+Original momentum : -31.8971 13.0089 -2.06874 keV
+Vertex : 0.235372 0.214972 -5.20036 m    Global time : 17.3805 ns 
   Current trajectory has 2 points.
-Point[0] Position= (172.758,-12.0585,-1304.84)
-Point[1] Position= (172.727,-12.0914,-1304.85)
+Point[0] Position= (235.372,214.972,-5200.36)
+Point[1] Position= (235.345,214.983,-5200.36)
 
-TrackID =1344 : ParentID=1333 : TrackStatus=1
+TrackID =1519 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 5.45923 42.8972 -1.52265 keV
-Vertex : 0.157829 -0.0110093 -1.19217 m    Global time : 4.01435 ns 
+Original momentum : -37.057 -23.3838 -4.53773 keV
+Vertex : 0.233904 0.213629 -5.16784 m    Global time : 17.2718 ns 
   Current trajectory has 2 points.
-Point[0] Position= (157.829,-11.0093,-1192.17)
-Point[1] Position= (157.837,-10.9491,-1192.17)
+Point[0] Position= (233.904,213.629,-5167.84)
+Point[1] Position= (233.85,213.594,-5167.84)
 
-TrackID =1343 : ParentID=1333 : TrackStatus=1
+TrackID =1518 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.24287 39.2083 -2.32677 keV
-Vertex : 0.136046 -0.00947687 -1.0277 m    Global time : 3.46054 ns 
+Original momentum : 60.8784 -1.91318 -0.95534 keV
+Vertex : 0.2278 0.208041 -5.03263 m    Global time : 16.82 ns 
   Current trajectory has 2 points.
-Point[0] Position= (136.046,-9.47687,-1027.7)
-Point[1] Position= (136.043,-9.43223,-1027.7)
+Point[0] Position= (227.8,208.041,-5032.63)
+Point[1] Position= (227.993,208.035,-5032.64)
 
-TrackID =1342 : ParentID=1333 : TrackStatus=1
+TrackID =1517 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -36.7199 -11.4895 -6.25424 keV
-Vertex : 12.6348 -0.879499 -95.4455 cm   Global time : 3.21391 ns 
+Original momentum : 19.2278 26.8654 0.908992 keV
+Vertex : 0.214603 0.195974 -4.74056 m    Global time : 15.8438 ns 
   Current trajectory has 2 points.
-Point[0] Position= (126.348,-8.79499,-954.455)
-Point[1] Position= (126.307,-8.80775,-954.462)
+Point[0] Position= (214.603,195.974,-4740.56)
+Point[1] Position= (214.618,195.994,-4740.56)
 
-TrackID =1341 : ParentID=1333 : TrackStatus=1
+TrackID =1516 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.8852 -46.387 0.161606 keV
-Vertex : 11.1574 -0.776175 -84.2859 cm   Global time : 2.83813 ns 
+Original momentum : 15.1869 31.7796 0.785076 keV
+Vertex : 0.20436 0.186612 -4.51401 m    Global time : 15.0867 ns 
   Current trajectory has 2 points.
-Point[0] Position= (111.574,-7.76175,-842.859)
-Point[1] Position= (111.604,-7.84868,-842.859)
+Point[0] Position= (204.36,186.612,-4514.01)
+Point[1] Position= (204.373,186.64,-4514.01)
 
-TrackID =1340 : ParentID=1333 : TrackStatus=1
+TrackID =1515 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.561 -2.61498 3.27292 keV
-Vertex : 10.7644 -0.748693 -81.3183 cm   Global time : 2.7382 ns 
+Original momentum : 2.45825 32.4039 0.415931 keV
+Vertex : 0.203426 0.185759 -4.49338 m    Global time : 15.0177 ns 
   Current trajectory has 2 points.
-Point[0] Position= (107.644,-7.48693,-813.183)
-Point[1] Position= (107.669,-7.48892,-813.18)
+Point[0] Position= (203.426,185.759,-4493.38)
+Point[1] Position= (203.428,185.783,-4493.38)
 
-TrackID =1339 : ParentID=1333 : TrackStatus=1
+TrackID =1514 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -17.4223 29.9282 -3.78178 keV
-Vertex : 10.1862 -0.708184 -76.9521 cm   Global time : 2.59118 ns 
+Original momentum : -1.23602 -35.2742 -2.74126 keV
+Vertex : 0.186845 0.170607 -4.12676 m    Global time : 13.7924 ns 
   Current trajectory has 2 points.
-Point[0] Position= (101.862,-7.08184,-769.521)
-Point[1] Position= (101.847,-7.05589,-769.524)
+Point[0] Position= (186.845,170.607,-4126.76)
+Point[1] Position= (186.844,170.575,-4126.77)
 
-TrackID =1338 : ParentID=1333 : TrackStatus=1
+TrackID =1513 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.0417 5.17969 3.83245 keV
-Vertex : 8.53722 -0.592715 -64.5008 cm   Global time : 2.17191 ns 
+Original momentum : -14.952 -35.5191 -3.61091 keV
+Vertex : 0.18621 0.170026 -4.11272 m    Global time : 13.7455 ns 
   Current trajectory has 2 points.
-Point[0] Position= (85.3722,-5.92715,-645.008)
-Point[1] Position= (85.4381,-5.9194,-645.003)
+Point[0] Position= (186.21,170.026,-4112.72)
+Point[1] Position= (186.194,169.987,-4112.73)
 
-TrackID =1337 : ParentID=1333 : TrackStatus=1
+TrackID =1512 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -52.0908 6.75691 -9.77474 keV
-Vertex : 8.53325 -0.592437 -64.4709 cm   Global time : 2.1709 ns 
+Original momentum : -0.864666 -40.6694 -3.35119 keV
+Vertex : 0.172638 0.157616 -3.81249 m    Global time : 12.742 ns 
   Current trajectory has 2 points.
-Point[0] Position= (85.3325,-5.92437,-644.709)
-Point[1] Position= (85.2125,-5.9088,-644.731)
+Point[0] Position= (172.638,157.616,-3812.49)
+Point[1] Position= (172.637,157.565,-3812.49)
 
-TrackID =1336 : ParentID=1333 : TrackStatus=1
+TrackID =1511 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.60557 38.4335 -0.864024 keV
-Vertex : 8.19107 -0.568438 -61.8873 cm   Global time : 2.08391 ns 
+Original momentum : 71.3741 -34.6841 -4.36037 keV
+Vertex : 0.168056 0.153426 -3.71112 m    Global time : 12.4033 ns 
   Current trajectory has 2 points.
-Point[0] Position= (81.9107,-5.68438,-618.873)
-Point[1] Position= (81.9193,-5.64116,-618.874)
+Point[0] Position= (168.056,153.426,-3711.12)
+Point[1] Position= (168.498,153.211,-3711.15)
 
-TrackID =1335 : ParentID=1333 : TrackStatus=1
+TrackID =1510 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.8343 -34.8664 1.26395 keV
-Vertex : 5.75468 -0.398371 -43.4872 cm   Global time : 1.46432 ns 
+Original momentum : 20.0961 -25.7605 -1.20186 keV
+Vertex : 0.168009 0.153383 -3.71009 m    Global time : 12.3998 ns 
   Current trajectory has 2 points.
-Point[0] Position= (57.5468,-3.98371,-434.872)
-Point[1] Position= (57.5685,-4.02395,-434.871)
+Point[0] Position= (168.009,153.383,-3710.09)
+Point[1] Position= (168.024,153.364,-3710.09)
 
-TrackID =1334 : ParentID=1333 : TrackStatus=1
+TrackID =1509 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -18.3956 27.2688 -3.7681 keV
-Vertex : 5.18202 -0.358523 -39.1612 cm   Global time : 1.31865 ns 
+Original momentum : 32.7792 4.33372 0.59044 keV
+Vertex : 0.165422 0.151022 -3.6529 m    Global time : 12.2087 ns 
   Current trajectory has 2 points.
-Point[0] Position= (51.8202,-3.58523,-391.612)
-Point[1] Position= (51.8059,-3.56404,-391.615)
+Point[0] Position= (165.422,151.022,-3652.9)
+Point[1] Position= (165.448,151.025,-3652.9)
 
-TrackID =1430 : ParentID=1332 : TrackStatus=1
+TrackID =1508 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.007 29.3065 -3.61721 keV
-Vertex : 0.286965 -0.340301 -1.64185 m    Global time : 5.69161 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (286.965,-340.301,-1641.85)
-Point[1] Position= (286.986,-340.272,-1641.86)
+Original momentum : 88.7669 -12.6008 -4.3436 keV
+Vertex : 0.162666 0.148507 -3.59196 m    Global time : 12.005 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (162.666,148.507,-3591.96)
+Point[1] Position= (163.409,148.401,-3592)
+Point[2] Position= (163.375,148.426,-3591.82)
 
-TrackID =1429 : ParentID=1332 : TrackStatus=1
+TrackID =1507 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -42.9594 -140.954 0.0398618 keV
-Vertex : 0.263342 -0.312132 -1.50545 m    Global time : 5.21895 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (263.342,-312.132,-1505.45)
-Point[1] Position= (262.527,-314.808,-1505.45)
-Point[2] Position= (261.822,-315.999,-1506.95)
-Point[3] Position= (260.566,-316.499,-1506.82)
-Point[4] Position= (260.143,-316.631,-1506.82)
+Original momentum : 45.9994 38.6219 0.151766 keV
+Vertex : 0.159272 0.14541 -3.51695 m    Global time : 11.7543 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (159.272,145.41,-3516.95)
+Point[1] Position= (159.413,145.529,-3516.95)
 
-TrackID =1431 : ParentID=1429 : TrackStatus=1
+TrackID =1506 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.46977 7.81253 35.4904 keV
-Vertex : 0.260566 -0.316499 -1.50682 m    Global time : 5.30157 ns 
+Original momentum : 42.5806 -17.4795 -0.867939 keV
+Vertex : 0.159053 0.145211 -3.51212 m    Global time : 11.7382 ns 
   Current trajectory has 2 points.
-Point[0] Position= (260.566,-316.499,-1506.82)
-Point[1] Position= (260.564,-316.491,-1506.79)
+Point[0] Position= (159.053,145.211,-3512.12)
+Point[1] Position= (159.122,145.183,-3512.12)
 
-TrackID =1428 : ParentID=1332 : TrackStatus=1
+TrackID =1505 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.0289 -141.345 7.39354 keV
-Vertex : 0.23906 -0.283175 -1.36528 m    Global time : 4.73321 ns 
-  Current trajectory has 6 points.
-Point[0] Position= (239.06,-283.175,-1365.28)
-Point[1] Position= (238.88,-285.711,-1365.15)
-Point[2] Position= (238.868,-285.715,-1365.14)
-Point[3] Position= (237.41,-285.81,-1364.71)
-Point[4] Position= (237.097,-285.829,-1364.35)
-Point[5] Position= (237.129,-285.896,-1364.14)
+Original momentum : 15.1074 -107.164 -15.3226 keV
+Vertex : 0.158911 0.145081 -3.50897 m    Global time : 11.7276 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (158.911,145.081,-3508.97)
+Point[1] Position= (159.096,143.769,-3509.16)
+Point[2] Position= (158.951,143.739,-3509.49)
 
-TrackID =1433 : ParentID=1428 : TrackStatus=1
+TrackID =1504 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.0251 -22.7556 -2.42753 keV
-Vertex : 0.237097 -0.285829 -1.36435 m    Global time : 4.79773 ns 
+Original momentum : 3.34303 53.1466 -0.428271 keV
+Vertex : 0.152708 0.139428 -3.37201 m    Global time : 11.2699 ns 
   Current trajectory has 2 points.
-Point[0] Position= (237.097,-285.829,-1364.35)
-Point[1] Position= (237.064,-285.854,-1364.36)
+Point[0] Position= (152.708,139.428,-3372.01)
+Point[1] Position= (152.716,139.55,-3372.01)
 
-TrackID =1432 : ParentID=1428 : TrackStatus=1
+TrackID =1503 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.7692 -27.9075 45.1151 keV
-Vertex : 0.238868 -0.285715 -1.36514 m    Global time : 4.76518 ns 
+Original momentum : 35.9798 13.9272 0.746475 keV
+Vertex : 0.15038 0.137307 -3.3206 m    Global time : 11.0981 ns 
   Current trajectory has 2 points.
-Point[0] Position= (238.868,-285.715,-1365.14)
-Point[1] Position= (238.904,-285.784,-1365.02)
+Point[0] Position= (150.38,137.307,-3320.6)
+Point[1] Position= (150.419,137.322,-3320.6)
 
-TrackID =1427 : ParentID=1332 : TrackStatus=1
+TrackID =1502 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.59772 37.8949 -8.76536 keV
-Vertex : 0.228257 -0.270278 -1.30292 m    Global time : 4.5171 ns 
+Original momentum : -44.1407 2.25702 -3.83195 keV
+Vertex : 0.148198 0.135318 -3.27242 m    Global time : 10.937 ns 
   Current trajectory has 2 points.
-Point[0] Position= (228.257,-270.278,-1302.92)
-Point[1] Position= (228.261,-270.235,-1302.93)
+Point[0] Position= (148.198,135.318,-3272.42)
+Point[1] Position= (148.132,135.322,-3272.42)
 
-TrackID =1426 : ParentID=1332 : TrackStatus=1
+TrackID =1501 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.994 -46.7292 2.7082 keV
-Vertex : 0.222345 -0.263218 -1.26879 m    Global time : 4.39885 ns 
+Original momentum : -35.7493 -2.76069 -3.00173 keV
+Vertex : 0.145572 0.132926 -3.21445 m    Global time : 10.7433 ns 
   Current trajectory has 2 points.
-Point[0] Position= (222.345,-263.218,-1268.79)
-Point[1] Position= (222.292,-263.322,-1268.79)
+Point[0] Position= (145.572,132.926,-3214.45)
+Point[1] Position= (145.538,132.923,-3214.45)
 
-TrackID =1425 : ParentID=1332 : TrackStatus=1
+TrackID =1500 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.9159 10.4844 2.21028 keV
-Vertex : 0.19475 -0.230249 -1.10952 m    Global time : 3.8469 ns 
+Original momentum : -21.7673 45.5136 -1.59918 keV
+Vertex : 0.140361 0.128179 -3.09947 m    Global time : 10.359 ns 
   Current trajectory has 2 points.
-Point[0] Position= (194.75,-230.249,-1109.52)
-Point[1] Position= (194.776,-230.24,-1109.52)
+Point[0] Position= (140.361,128.179,-3099.47)
+Point[1] Position= (140.317,128.271,-3099.48)
 
-TrackID =1424 : ParentID=1332 : TrackStatus=1
+TrackID =1499 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.9317 -45.8573 11.4968 keV
-Vertex : 0.178074 -0.210335 -1.01327 m    Global time : 3.51333 ns 
+Original momentum : 37.9403 51.3334 -0.137848 keV
+Vertex : 0.13065 0.119319 -2.8851 m    Global time : 9.64254 ns 
   Current trajectory has 2 points.
-Point[0] Position= (178.074,-210.335,-1013.27)
-Point[1] Position= (178.151,-210.453,-1013.24)
+Point[0] Position= (130.65,119.319,-2885.1)
+Point[1] Position= (130.785,119.502,-2885.1)
 
-TrackID =1423 : ParentID=1332 : TrackStatus=1
+TrackID =1498 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.7224 36.9398 -12.1509 keV
-Vertex : 17.0373 -20.1133 -96.8796 cm   Global time : 3.35921 ns 
+Original momentum : -58.2695 20.9807 -5.54654 keV
+Vertex : 0.130092 0.11881 -2.87279 m    Global time : 9.6014 ns 
   Current trajectory has 2 points.
-Point[0] Position= (170.373,-201.133,-968.796)
-Point[1] Position= (170.359,-201.1,-968.807)
+Point[0] Position= (130.092,118.81,-2872.79)
+Point[1] Position= (129.898,118.88,-2872.81)
 
-TrackID =1422 : ParentID=1332 : TrackStatus=1
+TrackID =1497 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.9112 -30.9405 3.01667 keV
-Vertex : 17.0231 -20.0964 -96.7977 cm   Global time : 3.35638 ns 
+Original momentum : -19.874 24.9016 -0.863805 keV
+Vertex : 0.128688 0.117526 -2.84177 m    Global time : 9.49772 ns 
   Current trajectory has 2 points.
-Point[0] Position= (170.231,-200.964,-967.977)
-Point[1] Position= (170.224,-200.982,-967.975)
+Point[0] Position= (128.688,117.526,-2841.77)
+Point[1] Position= (128.674,117.544,-2841.77)
 
-TrackID =1421 : ParentID=1332 : TrackStatus=1
+TrackID =1496 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.224594 32.1097 -7.81327 keV
-Vertex : 14.8723 -17.5409 -84.4707 cm   Global time : 2.92907 ns 
+Original momentum : -14.7313 28.6309 -0.496609 keV
+Vertex : 0.124365 0.113571 -2.74623 m    Global time : 9.17841 ns 
   Current trajectory has 2 points.
-Point[0] Position= (148.723,-175.409,-844.707)
-Point[1] Position= (148.723,-175.39,-844.712)
+Point[0] Position= (124.365,113.571,-2746.23)
+Point[1] Position= (124.354,113.592,-2746.23)
 
-TrackID =1420 : ParentID=1332 : TrackStatus=1
+TrackID =1495 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 235.362 6.45566 -13.8054 keV
-Vertex : 13.391 -15.7917 -76.0433 cm   Global time : 2.63686 ns 
-  Current trajectory has 11 points.
-Point[0] Position= (133.91,-157.917,-760.433)
-Point[1] Position= (141.9,-155.383,-754.986)
-Point[2] Position= (142.1,-152.684,-753.443)
-Point[3] Position= (148.481,-147.042,-754.602)
-Point[4] Position= (149.147,-147.375,-754.593)
-Point[5] Position= (152.692,-143.013,-754.54)
-Point[6] Position= (154.537,-143.086,-755.013)
-Point[7] Position= (155.026,-145.246,-756.52)
-Point[8] Position= (155.462,-144.603,-757.859)
-Point[9] Position= (155.408,-145.057,-758.316)
-Point[10] Position= (155.524,-145.186,-758.204)
+Original momentum : -30.6405 36.5498 -2.10217 keV
+Vertex : 0.124265 0.11348 -2.74403 m    Global time : 9.17105 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (124.265,113.48,-2744.03)
+Point[1] Position= (124.212,113.544,-2744.03)
 
-TrackID =1438 : ParentID=1420 : TrackStatus=1
+TrackID =1494 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.0772 17.0421 -7.31127 keV
-Vertex : 15.5408 -14.5057 -75.8316 cm   Global time : 2.89126 ns 
+Original momentum : 28.7199 40.585 0.561637 keV
+Vertex : 0.121227 0.110699 -2.67685 m    Global time : 8.94653 ns 
   Current trajectory has 2 points.
-Point[0] Position= (155.408,-145.057,-758.316)
-Point[1] Position= (155.422,-145.048,-758.32)
+Point[0] Position= (121.227,110.699,-2676.85)
+Point[1] Position= (121.282,110.778,-2676.85)
 
-TrackID =1437 : ParentID=1420 : TrackStatus=1
+TrackID =1493 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -51.0805 -27.8721 33.0794 keV
-Vertex : 15.5462 -14.4603 -75.7859 cm   Global time : 2.88024 ns 
+Original momentum : 45.6329 -6.60885 -0.289102 keV
+Vertex : 0.121046 0.110534 -2.67285 m    Global time : 8.93318 ns 
   Current trajectory has 2 points.
-Point[0] Position= (155.462,-144.603,-757.859)
-Point[1] Position= (155.338,-144.671,-757.779)
+Point[0] Position= (121.046,110.534,-2672.85)
+Point[1] Position= (121.12,110.523,-2672.86)
 
-TrackID =1436 : ParentID=1420 : TrackStatus=1
+TrackID =1492 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.4215 22.1923 -4.10537 keV
-Vertex : 15.4537 -14.3086 -75.5013 cm   Global time : 2.83571 ns 
+Original momentum : -34.3008 -14.4459 -3.51836 keV
+Vertex : 0.110866 0.101224 -2.44794 m    Global time : 8.18147 ns 
   Current trajectory has 2 points.
-Point[0] Position= (154.537,-143.086,-755.013)
-Point[1] Position= (154.581,-143.062,-755.018)
+Point[0] Position= (110.866,101.224,-2447.94)
+Point[1] Position= (110.832,101.209,-2447.94)
 
-TrackID =1435 : ParentID=1420 : TrackStatus=1
+TrackID =1491 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.1231 -55.6597 19.2783 keV
-Vertex : 14.9147 -14.7375 -75.4593 cm   Global time : 2.78119 ns 
+Original momentum : -30.2128 -12.5789 -2.9451 keV
+Vertex : 0.107867 0.0984818 -2.38166 m    Global time : 7.95997 ns 
   Current trajectory has 2 points.
-Point[0] Position= (149.147,-147.375,-754.593)
-Point[1] Position= (149.147,-147.477,-754.558)
+Point[0] Position= (107.867,98.4818,-2381.66)
+Point[1] Position= (107.844,98.4722,-2381.67)
 
-TrackID =1434 : ParentID=1420 : TrackStatus=1
+TrackID =1490 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.0023 10.2162 8.98015 keV
-Vertex : 14.21 -15.2684 -75.3443 cm   Global time : 2.72163 ns 
+Original momentum : 45.147 54.3399 -0.579421 keV
+Vertex : 0.105822 0.0966128 -2.33648 m    Global time : 7.80894 ns 
   Current trajectory has 2 points.
-Point[0] Position= (142.1,-152.684,-753.443)
-Point[1] Position= (142.08,-152.678,-753.437)
+Point[0] Position= (105.822,96.6128,-2336.48)
+Point[1] Position= (106.03,96.8627,-2336.48)
 
-TrackID =1419 : ParentID=1332 : TrackStatus=1
+TrackID =1489 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 72.2647 35.0678 -1.09321 keV
-Vertex : 12.6994 -14.9752 -72.1114 cm   Global time : 2.50053 ns 
+Original momentum : -11.6793 73.0079 -2.84786 keV
+Vertex : 0.0994342 0.0907771 -2.19541 m    Global time : 7.33748 ns 
   Current trajectory has 2 points.
-Point[0] Position= (126.994,-149.752,-721.114)
-Point[1] Position= (127.455,-149.528,-721.121)
+Point[0] Position= (99.4342,90.7771,-2195.41)
+Point[1] Position= (99.3738,91.1545,-2195.43)
 
-TrackID =1418 : ParentID=1332 : TrackStatus=1
+TrackID =1488 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 19.5697 26.3123 -3.12402 keV
-Vertex : 11.3592 -13.3932 -64.4933 cm   Global time : 2.23637 ns 
+Original momentum : -11.6663 73.6152 -2.90827 keV
+Vertex : 0.0977232 0.0892139 -2.15763 m    Global time : 7.21122 ns 
   Current trajectory has 2 points.
-Point[0] Position= (113.592,-133.932,-644.933)
-Point[1] Position= (113.607,-133.912,-644.936)
+Point[0] Position= (97.7232,89.2139,-2157.63)
+Point[1] Position= (97.6617,89.6024,-2157.65)
 
-TrackID =1417 : ParentID=1332 : TrackStatus=1
+TrackID =1487 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.9579 -22.0665 8.02787 keV
-Vertex : 10.1959 -12.0204 -57.8811 cm   Global time : 2.0071 ns 
+Original momentum : 42.9586 -19.8372 -1.06724 keV
+Vertex : 0.0956875 0.0873536 -2.11268 m    Global time : 7.06097 ns 
   Current trajectory has 2 points.
-Point[0] Position= (101.959,-120.204,-578.811)
-Point[1] Position= (101.984,-120.225,-578.804)
+Point[0] Position= (95.6875,87.3536,-2112.68)
+Point[1] Position= (95.7616,87.3194,-2112.68)
 
-TrackID =1416 : ParentID=1332 : TrackStatus=1
+TrackID =1486 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.4954 -10.5854 -5.22927 keV
-Vertex : 4.73735 -5.58519 -26.8886 cm   Global time : 932.405 ps 
-  Current trajectory has 2 points.
-Point[0] Position= (47.3735,-55.8519,-268.886)
-Point[1] Position= (47.3404,-55.862,-268.891)
+Original momentum : -20.4411 -118.247 -20.1314 keV
+Vertex : 0.093351 0.0852193 -2.06109 m    Global time : 6.88855 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (93.351,85.2193,-2061.09)
+Point[1] Position= (93.0834,83.6709,-2061.35)
+Point[2] Position= (93.1262,83.555,-2061.57)
+Point[3] Position= (93.1414,83.6193,-2061.59)
 
-TrackID =1415 : ParentID=1332 : TrackStatus=1
+TrackID =1526 : ParentID=1486 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.8917 21.2815 0.340941 keV
-Vertex : 4.14729 -4.88987 -23.539 cm   Global time : 816.258 ps 
+Original momentum : 40.0987 -12.4043 -13.5336 keV
+Vertex : 0.0931262 0.083555 -2.06157 m    Global time : 6.91748 ns 
   Current trajectory has 2 points.
-Point[0] Position= (41.4729,-48.8987,-235.39)
-Point[1] Position= (41.5266,-48.8685,-235.39)
+Point[0] Position= (93.1262,83.555,-2061.57)
+Point[1] Position= (93.1849,83.5368,-2061.59)
 
-TrackID =1414 : ParentID=1332 : TrackStatus=1
+TrackID =1525 : ParentID=1486 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.3085 54.7936 -19.4547 keV
-Vertex : 3.91126 -4.61181 -22.1994 cm   Global time : 769.806 ps 
+Original momentum : -53.113 -21.4652 0.715188 keV
+Vertex : 0.0930834 0.0836709 -2.06135 m    Global time : 6.91149 ns 
   Current trajectory has 2 points.
-Point[0] Position= (39.1126,-46.1181,-221.994)
-Point[1] Position= (39.0333,-45.9317,-222.06)
+Point[0] Position= (93.0834,83.6709,-2061.35)
+Point[1] Position= (92.9383,83.6123,-2061.35)
 
-TrackID =1413 : ParentID=1332 : TrackStatus=1
+TrackID =1485 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.505 36.0708 -9.92139 keV
-Vertex : 0.433481 -0.510943 -2.45816 mm   Global time : 8.52453 ps 
+Original momentum : -44.4603 13.775 -3.57623 keV
+Vertex : 0.0916812 0.0836947 -2.02422 m    Global time : 6.76533 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.433481,-0.510943,-2.45816)
-Point[1] Position= (0.427761,-0.473465,-2.46847)
+Point[0] Position= (91.6812,83.6947,-2024.22)
+Point[1] Position= (91.607,83.7177,-2024.23)
 
-TrackID =46 : ParentID=45 : TrackStatus=1
-Particle name : eta  PDG code : 221  Charge : 0
-Original momentum : 149.758 47.7835 55.4072 MeV
-Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
+TrackID =1484 : ParentID=49 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -38.9132 16.9962 -2.83235 keV
+Vertex : 0.0850903 0.077679 -1.87873 m    Global time : 6.27905 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
-Point[1] Position= (-1.77008e-307,-1.43727e-308,1.33408e-305)
+Point[0] Position= (85.0903,77.679,-1878.73)
+Point[1] Position= (85.0377,77.702,-1878.73)
 
-TrackID =42 : ParentID=0 : TrackStatus=1
-Particle name : unknown : gluon  PDG code : 21  Charge : 0
-Original momentum : -2.12856 0.964505 15.101 GeV
-Vertex : 0 0 0 fm   Global time : 0 ps 
-  Current trajectory has 2 points.
-Point[0] Position= (0,0,0)
-Point[1] Position= (-9.29192e-307,4.21041e-307,6.59214e-306)
+TrackID =1483 : ParentID=49 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -193.969 -219.596 -105.44 keV
+Vertex : 0.0721276 0.0658393 -1.59249 m    Global time : 5.3224 ns 
+  Current trajectory has 15 points.
+Point[0] Position= (72.1276,65.8393,-1592.49)
+Point[1] Position= (59.9003,51.9965,-1599.14)
+Point[2] Position= (44.6589,39.4764,-1599.03)
+Point[3] Position= (42.7318,31.3997,-1598.38)
+Point[4] Position= (42.0116,25.3205,-1603.64)
+Point[5] Position= (39.1556,23.3481,-1604.72)
+Point[6] Position= (38.5199,21.894,-1604.56)
+Point[7] Position= (37.9118,20.9917,-1604.7)
+Point[8] Position= (34.2747,17.9235,-1605.65)
+Point[9] Position= (32.93,15.9278,-1606.92)
+Point[10] Position= (31.0487,13.7641,-1607.16)
+Point[11] Position= (30.6214,13.5479,-1605.85)
+Point[12] Position= (30.8681,14.2343,-1604.7)
+Point[13] Position= (30.7317,14.132,-1604.13)
+Point[14] Position= (30.6018,14.1018,-1604.14)
+
+TrackID =1534 : ParentID=1483 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 0.274379 -17.0563 44.4797 keV
+Vertex : 0.0307317 0.014132 -1.60413 m    Global time : 5.93219 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (30.7317,14.132,-1604.13)
+Point[1] Position= (30.7322,14.1022,-1604.05)
+
+TrackID =1533 : ParentID=1483 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 46.5511 -16.6345 8.27333 keV
+Vertex : 0.0308681 0.0142343 -1.6047 m    Global time : 5.92036 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (30.8681,14.2343,-1604.7)
+Point[1] Position= (30.9594,14.2016,-1604.69)
+Point[2] Position= (30.9662,14.1961,-1604.69)
 
-TrackID =41 : ParentID=0 : TrackStatus=1
-Particle name : unknown : gluon  PDG code : 21  Charge : 0
-Original momentum : 2.12856 -0.964505 -1.29145 GeV
-Vertex : 0 0 0 fm   Global time : 0 ps 
+TrackID =1532 : ParentID=1483 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -31.4892 17.7515 -3.68624 keV
+Vertex : 0.0306214 0.0135479 -1.60585 m    Global time : 5.90068 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0,0,0)
-Point[1] Position= (5.31791e-306,-2.40968e-306,-3.22649e-306)
+Point[0] Position= (30.6214,13.5479,-1605.85)
+Point[1] Position= (30.5914,13.5648,-1605.85)
 
-TrackID =1441 : ParentID=41 : TrackStatus=1
-Particle name : unknown  PDG code : 92  Charge : 0
-Original momentum : 0 0 22.5268 GeV
-Vertex : 5.31791e-294 -2.40968e-294 -3.22649e-294 fm   Global time : 2.22507e-305 ps 
+TrackID =1531 : ParentID=1483 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -22.2099 20.9265 -16.1056 keV
+Vertex : 0.03293 0.0159278 -1.60692 m    Global time : 5.84819 ns 
   Current trajectory has 2 points.
-Point[0] Position= (5.31791e-306,-2.40968e-306,-3.22649e-306)
-Point[1] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
+Point[0] Position= (32.93,15.9278,-1606.92)
+Point[1] Position= (32.9111,15.9456,-1606.93)
 
-TrackID =1450 : ParentID=1441 : TrackStatus=1
-Particle name : pi-  PDG code : -211  Charge : -1
-Original momentum : -0.793169 0.244283 4.61318 GeV
-Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
-  Current trajectory has 71 points.
-Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
-Point[1] Position= (-1.0285,0.316804,5.98211)
-Point[2] Position= (-4.04392,1.2462,23.5221)
-Point[3] Position= (-46.0977,14.1994,268.054)
-Point[4] Position= (-67.5722,20.8159,392.894)
-Point[5] Position= (-87.7889,27.0474,510.46)
-Point[6] Position= (-90.5631,27.9022,526.592)
-Point[7] Position= (-112.215,34.5752,652.503)
-Point[8] Position= (-117.92,36.3347,685.683)
-Point[9] Position= (-118.661,36.5631,689.992)
-Point[10] Position= (-131.956,40.6649,767.332)
-Point[11] Position= (-147.443,45.4426,857.431)
-Point[12] Position= (-173.122,53.3593,1006.82)
-Point[13] Position= (-209.875,64.69,1220.66)
-Point[14] Position= (-236.465,72.8965,1375.47)
-Point[15] Position= (-242.242,74.6821,1409.12)
-Point[16] Position= (-254.329,78.4158,1479.53)
-Point[17] Position= (-265.122,81.7502,1542.4)
-Point[18] Position= (-309.049,95.31,1798.29)
-Point[19] Position= (-334.469,103.161,1946.32)
-Point[20] Position= (-341.035,105.188,1984.54)
-Point[21] Position= (-352.08,108.598,2048.83)
-Point[22] Position= (-367.987,113.514,2141.4)
-Point[23] Position= (-376.345,116.099,2190.04)
-Point[24] Position= (-392.03,120.944,2281.3)
-Point[25] Position= (-398.22,122.857,2317.32)
-Point[26] Position= (-415.047,128.06,2415.26)
-Point[27] Position= (-416.485,128.504,2423.63)
-Point[28] Position= (-458.531,141.496,2668.41)
-Point[29] Position= (-459.246,141.718,2672.58)
-Point[30] Position= (-464.421,143.317,2702.69)
-Point[31] Position= (-517.875,159.838,3013.78)
-Point[32] Position= (-525.454,162.181,3057.87)
-Point[33] Position= (-525.968,162.34,3060.85)
-Point[34] Position= (-529.181,163.333,3079.53)
-Point[35] Position= (-556.793,171.872,3239.97)
-Point[36] Position= (-557.99,172.242,3246.92)
-Point[37] Position= (-570.806,176.204,3321.37)
-Point[38] Position= (-585.231,180.664,3405.18)
-Point[39] Position= (-630.015,194.523,3665.49)
-Point[40] Position= (-658.853,203.452,3833.17)
-Point[41] Position= (-660.875,204.079,3844.93)
-Point[42] Position= (-681.611,210.496,3965.49)
-Point[43] Position= (-692.579,213.891,4029.26)
-Point[44] Position= (-697.149,215.304,4055.82)
-Point[45] Position= (-722.102,223.031,4200.88)
-Point[46] Position= (-724.184,223.676,4212.98)
-Point[47] Position= (-738.422,228.08,4295.77)
-Point[48] Position= (-742.719,229.407,4320.75)
-Point[49] Position= (-762.195,235.425,4434)
-Point[50] Position= (-772.016,238.458,4491.1)
-Point[51] Position= (-780.181,240.98,4538.55)
-Point[52] Position= (-781.958,241.528,4548.88)
-Point[53] Position= (-798.783,246.724,4646.69)
-Point[54] Position= (-827.885,255.702,4815.86)
-Point[55] Position= (-828.107,255.771,4817.15)
-Point[56] Position= (-841.401,259.871,4894.44)
-Point[57] Position= (-872.341,269.415,5074.31)
-Point[58] Position= (-883.244,272.774,5137.68)
-Point[59] Position= (-884.888,273.28,5147.23)
-Point[60] Position= (-885.133,273.356,5148.66)
-Point[61] Position= (-887.49,274.081,5162.36)
-Point[62] Position= (-894.95,276.377,5205.71)
-Point[63] Position= (-904.465,279.306,5261.01)
-Point[64] Position= (-925.93,285.917,5385.77)
-Point[65] Position= (-941.225,290.628,5474.67)
-Point[66] Position= (-952.577,294.127,5540.65)
-Point[67] Position= (-975.53,301.202,5674.05)
-Point[68] Position= (-1023.38,315.937,5952.19)
-Point[69] Position= (-1024.13,316.168,5956.55)
-Point[70] Position= (-1031.61,318.468,6000)
-
-TrackID =1518 : ParentID=1450 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -101.954 -9.29844 -6.68818 keV
-Vertex : -1.02413 0.316168 5.95655 m    Global time : 20.197 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-1024.13,316.168,5956.55)
-Point[1] Position= (-1025.25,316.066,5956.47)
-Point[2] Position= (-1025.23,316.035,5956.18)
+TrackID =1530 : ParentID=1483 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -23.9945 12.5416 21.8947 keV
+Vertex : 0.0385199 0.021894 -1.60456 m    Global time : 5.75928 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (38.5199,21.894,-1604.56)
+Point[1] Position= (38.4991,21.9049,-1604.54)
 
-TrackID =1517 : ParentID=1450 : TrackStatus=1
+TrackID =1529 : ParentID=1483 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.4002 -61.4276 4.88483 keV
-Vertex : -1.02338 0.315937 5.95219 m    Global time : 20.1822 ns 
+Original momentum : -30.3253 8.79194 -36.4806 keV
+Vertex : 0.0391556 0.0233481 -1.60472 m    Global time : 5.74395 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1023.38,315.937,5952.19)
-Point[1] Position= (-1023.43,315.725,5952.2)
+Point[0] Position= (39.1556,23.3481,-1604.72)
+Point[1] Position= (39.1009,23.3639,-1604.78)
 
-TrackID =1516 : ParentID=1450 : TrackStatus=1
+TrackID =1528 : ParentID=1483 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -76.0709 102.51 -2.55578 keV
-Vertex : -0.97553 0.301202 5.67405 m    Global time : 19.2391 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-975.53,301.202,5674.05)
-Point[1] Position= (-976.615,302.663,5674.02)
-Point[2] Position= (-977.058,302.35,5675.05)
-Point[3] Position= (-976.982,302.353,5675)
+Original momentum : 11.9817 -92.5375 99.7055 keV
+Vertex : 0.0427318 0.0313997 -1.59838 m    Global time : 5.642 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (42.7318,31.3997,-1598.38)
+Point[1] Position= (42.9351,29.8297,-1596.69)
+Point[2] Position= (42.4128,28.3613,-1596.3)
+Point[3] Position= (41.5747,28.0446,-1596.87)
+Point[4] Position= (41.4118,28.3482,-1596.88)
 
-TrackID =1520 : ParentID=1516 : TrackStatus=1
+TrackID =1527 : ParentID=1483 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 4.67996 30.2546 9.14822 keV
-Vertex : -0.977058 0.30235 5.67505 m    Global time : 19.2837 ns 
+Original momentum : 23.9499 -29.7341 1.33833 keV
+Vertex : 0.0599003 0.0519965 -1.59914 m    Global time : 5.44822 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-977.058,302.35,5675.05)
-Point[1] Position= (-977.055,302.372,5675.06)
+Point[0] Position= (59.9003,51.9965,-1599.14)
+Point[1] Position= (59.9258,51.9649,-1599.14)
 
-TrackID =1519 : ParentID=1516 : TrackStatus=1
+TrackID =1482 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.5647 31.1422 16.2743 keV
-Vertex : -0.976615 0.302663 5.67402 m    Global time : 19.2641 ns 
+Original momentum : -1.47466 38.9397 0.0572289 keV
+Vertex : 0.0704704 0.0643246 -1.55587 m    Global time : 5.20001 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-976.615,302.663,5674.02)
-Point[1] Position= (-976.598,302.697,5674.04)
+Point[0] Position= (70.4704,64.3246,-1555.87)
+Point[1] Position= (70.4688,64.3679,-1555.87)
 
-TrackID =1515 : ParentID=1450 : TrackStatus=1
+TrackID =1481 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -41.4785 -23.596 -3.61185 keV
-Vertex : -0.952577 0.294127 5.54065 m    Global time : 18.7867 ns 
+Original momentum : 37.9082 -0.260313 0.298818 keV
+Vertex : 0.0653471 0.0596439 -1.44272 m    Global time : 4.82184 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-952.577,294.127,5540.65)
-Point[1] Position= (-952.65,294.086,5540.64)
+Point[0] Position= (65.3471,59.6439,-1442.72)
+Point[1] Position= (65.3867,59.6437,-1442.72)
 
-TrackID =1514 : ParentID=1450 : TrackStatus=1
+TrackID =1480 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.5678 -27.7077 -2.09578 keV
-Vertex : -0.941225 0.290628 5.47467 m    Global time : 18.563 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-941.225,290.628,5474.67)
-Point[1] Position= (-941.264,290.593,5474.67)
+Original momentum : 82.4702 -43.6453 -6.57823 keV
+Vertex : 0.0648425 0.0591829 -1.43158 m    Global time : 4.7846 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (64.8425,59.1829,-1431.58)
+Point[1] Position= (65.5989,58.7826,-1431.64)
+Point[2] Position= (65.6153,58.6473,-1431.7)
 
-TrackID =1513 : ParentID=1450 : TrackStatus=1
+TrackID =1479 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -46.9496 -2.29485 -5.73097 keV
-Vertex : -0.92593 0.285917 5.38577 m    Global time : 18.2616 ns 
+Original momentum : -43.779 21.4788 -3.43205 keV
+Vertex : 0.0590167 0.0538609 -1.30296 m    Global time : 4.35472 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-925.93,285.917,5385.77)
-Point[1] Position= (-926.011,285.913,5385.77)
+Point[0] Position= (59.0167,53.8609,-1302.96)
+Point[1] Position= (58.9352,53.9009,-1302.96)
 
-TrackID =1512 : ParentID=1450 : TrackStatus=1
+TrackID =1478 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.2523 33.4204 1.20884 keV
-Vertex : -0.904465 0.279306 5.26101 m    Global time : 17.8386 ns 
+Original momentum : 31.542 -18.0163 -0.609255 keV
+Vertex : 0.0549464 0.0501429 -1.21307 m    Global time : 4.05431 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-904.465,279.306,5261.01)
-Point[1] Position= (-904.456,279.335,5261.01)
+Point[0] Position= (54.9464,50.1429,-1213.07)
+Point[1] Position= (54.9764,50.1257,-1213.07)
 
-TrackID =1511 : ParentID=1450 : TrackStatus=1
+TrackID =1477 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -112.562 10.1093 -7.29809 keV
-Vertex : -0.89495 0.276377 5.20571 m    Global time : 17.651 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-894.95,276.377,5205.71)
-Point[1] Position= (-895.778,276.451,5205.65)
-Point[2] Position= (-895.978,275.677,5205.01)
-Point[3] Position= (-895.663,275.52,5204.96)
+Original momentum : -31.8321 -2.96098 -2.57119 keV
+Vertex : 0.0541263 0.0493938 -1.19496 m    Global time : 3.99378 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (54.1263,49.3938,-1194.96)
+Point[1] Position= (54.1032,49.3916,-1194.96)
 
-TrackID =1521 : ParentID=1511 : TrackStatus=1
+TrackID =1476 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.4032 -10.1284 0.376746 keV
-Vertex : -0.895778 0.276451 5.20565 m    Global time : 17.6639 ns 
+Original momentum : -40.8253 22.904 -3.05376 keV
+Vertex : 0.0530105 0.0483745 -1.17031 m    Global time : 3.9114 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-895.778,276.451,5205.65)
-Point[1] Position= (-895.737,276.44,5205.65)
+Point[0] Position= (53.0105,48.3745,-1170.31)
+Point[1] Position= (52.9415,48.4131,-1170.32)
 
-TrackID =1510 : ParentID=1450 : TrackStatus=1
+TrackID =1475 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.216 33.9046 1.20937 keV
-Vertex : -0.88749 0.274081 5.16236 m    Global time : 17.504 ns 
+Original momentum : 50.1822 -7.11343 -0.534519 keV
+Vertex : 0.049444 0.0451171 -1.09154 m    Global time : 3.64812 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-887.49,274.081,5162.36)
-Point[1] Position= (-887.481,274.112,5162.36)
+Point[0] Position= (49.444,45.1171,-1091.54)
+Point[1] Position= (49.5458,45.1027,-1091.54)
 
-TrackID =1509 : ParentID=1450 : TrackStatus=1
+TrackID =1474 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.0393 32.9045 7.11621 keV
-Vertex : -0.885133 0.273356 5.14866 m    Global time : 17.4576 ns 
+Original momentum : 35.4099 -23.2337 -1.11286 keV
+Vertex : 3.20583 2.92459 -70.7586 cm   Global time : 2.36488 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-885.133,273.356,5148.66)
-Point[1] Position= (-885.06,273.421,5148.67)
+Point[0] Position= (32.0583,29.2459,-707.586)
+Point[1] Position= (32.1056,29.2148,-707.588)
 
-TrackID =1508 : ParentID=1450 : TrackStatus=1
+TrackID =1473 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.90961 38.4367 -0.892906 keV
-Vertex : -0.884888 0.27328 5.14723 m    Global time : 17.4528 ns 
+Original momentum : -34.2976 -35.4246 -5.42382 keV
+Vertex : 3.2021 2.9212 -70.6764 cm   Global time : 2.36214 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-884.888,273.28,5147.23)
-Point[1] Position= (-884.89,273.322,5147.23)
+Point[0] Position= (32.021,29.212,-706.764)
+Point[1] Position= (31.955,29.1437,-706.775)
 
-TrackID =1507 : ParentID=1450 : TrackStatus=1
+TrackID =1472 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 49.873 2.65441 11.0361 keV
-Vertex : -0.883244 0.272774 5.13768 m    Global time : 17.4204 ns 
+Original momentum : 37.3459 -11.4795 -0.277492 keV
+Vertex : 2.77546 2.53193 -61.2554 cm   Global time : 2.04727 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-883.244,272.774,5137.68)
-Point[1] Position= (-883.141,272.78,5137.7)
+Point[0] Position= (27.7546,25.3193,-612.554)
+Point[1] Position= (27.7963,25.3065,-612.554)
 
-TrackID =1506 : ParentID=1450 : TrackStatus=1
+TrackID =1471 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 69.7037 88.0741 20.1112 keV
-Vertex : -0.872341 0.269415 5.07431 m    Global time : 17.2055 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-872.341,269.415,5074.31)
-Point[1] Position= (-871.428,270.568,5074.57)
-Point[2] Position= (-872.15,270.642,5074.8)
-Point[3] Position= (-872.159,270.67,5074.66)
+Original momentum : -16.5018 29.6417 -0.649938 keV
+Vertex : 1.7244 1.57304 -38.0532 cm   Global time : 1.27181 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (17.244,15.7304,-380.532)
+Point[1] Position= (17.2305,15.7547,-380.533)
 
-TrackID =1505 : ParentID=1450 : TrackStatus=1
+TrackID =1470 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -61.8095 48.4229 -7.05672 keV
-Vertex : -0.841401 0.259871 4.89444 m    Global time : 16.5956 ns 
+Original momentum : 38.0705 20.3855 0.742251 keV
+Vertex : 1.42057 1.29583 -31.348 cm   Global time : 1.04771 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-841.401,259.871,4894.44)
-Point[1] Position= (-841.776,260.165,4894.39)
+Point[0] Position= (14.2057,12.9583,-313.48)
+Point[1] Position= (14.2589,12.9868,-313.479)
 
-TrackID =1504 : ParentID=1450 : TrackStatus=1
+TrackID =1469 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -67.6014 0.406302 -7.07572 keV
-Vertex : -0.828107 0.255771 4.81715 m    Global time : 16.3335 ns 
+Original momentum : 37.8826 4.72984 0.485112 keV
+Vertex : 1.35811 1.23885 -29.9697 cm   Global time : 1.00164 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-828.107,255.771,4817.15)
-Point[1] Position= (-828.389,255.772,4817.12)
+Point[0] Position= (13.5811,12.3885,-299.697)
+Point[1] Position= (13.6214,12.3935,-299.697)
 
-TrackID =1503 : ParentID=1450 : TrackStatus=1
+TrackID =1468 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.8747 48.83 -3.99699 keV
-Vertex : -0.827885 0.255702 4.81586 m    Global time : 16.3292 ns 
+Original momentum : 57.4747 -17.8989 -1.67823 keV
+Vertex : 0.783884 0.71498 -17.2977 cm   Global time : 578.123 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-827.885,255.702,4815.86)
-Point[1] Position= (-827.95,255.825,4815.85)
+Point[0] Position= (7.83884,7.1498,-172.977)
+Point[1] Position= (8.01624,7.09456,-172.983)
 
-TrackID =1502 : ParentID=1450 : TrackStatus=1
+TrackID =1467 : ParentID=49 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.4421 13.5246 -4.71751 keV
-Vertex : -0.798783 0.246724 4.64669 m    Global time : 15.7555 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-798.783,246.724,4646.69)
-Point[1] Position= (-798.805,246.734,4646.68)
+Original momentum : -81.7299 -72.7062 -18.64 keV
+Vertex : 0.0691053 0.0630492 -1.52573 cm   Global time : 50.9928 ps 
+  Current trajectory has 4 points.
+Point[0] Position= (0.691053,0.630492,-15.2573)
+Point[1] Position= (0.0207132,0.0341641,-15.4102)
+Point[2] Position= (-0.308009,-0.437021,-15.604)
+Point[3] Position= (-0.294059,-0.428048,-15.5939)
 
-TrackID =1501 : ParentID=1450 : TrackStatus=1
+TrackID =1535 : ParentID=1467 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.2266 46.7115 -1.96798 keV
-Vertex : -0.781958 0.241528 4.54888 m    Global time : 15.4239 ns 
+Original momentum : -23.1523 -2.54196 44.8122 keV
+Vertex : 0.00207132 0.00341641 -1.54102 cm   Global time : 65.299 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-781.958,241.528,4548.88)
-Point[1] Position= (-781.976,241.611,4548.87)
+Point[0] Position= (0.0207132,0.0341641,-15.4102)
+Point[1] Position= (-0.025847,0.0290521,-15.3201)
 
-TrackID =1500 : ParentID=1450 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.8363 41.123 -2.24891 keV
-Vertex : -0.780181 0.24098 4.53855 m    Global time : 15.3889 ns 
+TrackID =48 : ParentID=45 : TrackStatus=1
+Particle name : unknown : anti_delta++  PDG code : -2224  Charge : -2
+Original momentum : -0.437184 -0.13363 -4.69663 GeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-780.181,240.98,4538.55)
-Point[1] Position= (-780.195,241.035,4538.55)
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (-8.00666e-307,-2.05077e-307,6.69946e-306)
+
+TrackID =1537 : ParentID=48 : TrackStatus=1
+Particle name : anti_proton  PDG code : -2212  Charge : -1
+Original momentum : -0.373892 -0.270453 -2.87903 GeV
+Vertex : -8.00666e-295 -2.05077e-295 6.69946e-294 fm   Global time : 8.69392e-305 ps 
+  Current trajectory has 71 points.
+Point[0] Position= (-8.00666e-307,-2.05077e-307,6.69946e-306)
+Point[1] Position= (-6.55786,-4.74252,-50.497)
+Point[2] Position= (-17.6493,-12.7495,-135.856)
+Point[3] Position= (-44.0247,-31.7908,-338.826)
+Point[4] Position= (-71.7053,-51.7827,-551.859)
+Point[5] Position= (-79.5891,-57.4748,-612.521)
+Point[6] Position= (-81.8644,-59.1187,-630.034)
+Point[7] Position= (-82.9176,-59.88,-638.14)
+Point[8] Position= (-89.6534,-64.7488,-689.987)
+Point[9] Position= (-99.5812,-71.9284,-766.425)
+Point[10] Position= (-113.028,-81.6524,-869.907)
+Point[11] Position= (-113.597,-82.0637,-874.281)
+Point[12] Position= (-115.252,-83.2607,-887.007)
+Point[13] Position= (-120.274,-86.8947,-925.621)
+Point[14] Position= (-121.354,-87.6759,-933.922)
+Point[15] Position= (-148.068,-106.995,-1139.31)
+Point[16] Position= (-156.5,-113.085,-1204.14)
+Point[17] Position= (-157.419,-113.746,-1211.2)
+Point[18] Position= (-188.347,-136.007,-1448.79)
+Point[19] Position= (-188.471,-136.097,-1449.74)
+Point[20] Position= (-201.138,-145.212,-1547.05)
+Point[21] Position= (-204.215,-147.425,-1570.69)
+Point[22] Position= (-205.569,-148.399,-1581.09)
+Point[23] Position= (-229.527,-165.634,-1765.21)
+Point[24] Position= (-230.725,-166.496,-1774.42)
+Point[25] Position= (-242.331,-174.847,-1863.63)
+Point[26] Position= (-257.807,-185.971,-1982.48)
+Point[27] Position= (-270.621,-195.185,-2080.91)
+Point[28] Position= (-305.511,-220.263,-2348.83)
+Point[29] Position= (-335.917,-242.112,-2582.23)
+Point[30] Position= (-341.611,-246.202,-2625.95)
+Point[31] Position= (-350.986,-252.934,-2697.91)
+Point[32] Position= (-359.117,-258.771,-2760.33)
+Point[33] Position= (-367.84,-265.029,-2827.29)
+Point[34] Position= (-371.974,-267.994,-2859.02)
+Point[35] Position= (-390.565,-281.324,-3001.7)
+Point[36] Position= (-391.46,-281.965,-3008.57)
+Point[37] Position= (-391.861,-282.253,-3011.65)
+Point[38] Position= (-392.987,-283.06,-3020.28)
+Point[39] Position= (-393.77,-283.621,-3026.29)
+Point[40] Position= (-401.892,-289.447,-3088.63)
+Point[41] Position= (-407.043,-293.14,-3128.13)
+Point[42] Position= (-412.646,-297.157,-3171.1)
+Point[43] Position= (-427.835,-308.046,-3287.53)
+Point[44] Position= (-436.144,-314.005,-3351.23)
+Point[45] Position= (-438.769,-315.889,-3371.36)
+Point[46] Position= (-439.794,-316.624,-3379.21)
+Point[47] Position= (-444.36,-319.902,-3414.22)
+Point[48] Position= (-447.984,-322.503,-3442)
+Point[49] Position= (-454.996,-327.536,-3495.74)
+Point[50] Position= (-500.695,-360.377,-3846.09)
+Point[51] Position= (-521.235,-375.161,-4003.57)
+Point[52] Position= (-532.077,-382.969,-4086.67)
+Point[53] Position= (-545.896,-392.919,-4192.55)
+Point[54] Position= (-559.18,-402.486,-4294.32)
+Point[55] Position= (-575.269,-414.065,-4417.49)
+Point[56] Position= (-594.345,-427.798,-4563.56)
+Point[57] Position= (-629.578,-453.161,-4833.45)
+Point[58] Position= (-651.477,-468.915,-5001.13)
+Point[59] Position= (-675.145,-485.921,-5182.27)
+Point[60] Position= (-677.954,-487.94,-5203.76)
+Point[61] Position= (-678.975,-488.674,-5211.57)
+Point[62] Position= (-683.807,-492.148,-5248.54)
+Point[63] Position= (-695.86,-500.816,-5340.79)
+Point[64] Position= (-699.81,-503.656,-5371.02)
+Point[65] Position= (-710.908,-511.634,-5455.94)
+Point[66] Position= (-715.06,-514.618,-5487.71)
+Point[67] Position= (-775.74,-558.202,-5951.77)
+Point[68] Position= (-775.948,-558.352,-5953.37)
+Point[69] Position= (-781.42,-562.284,-5995.21)
+Point[70] Position= (-782.046,-562.734,-6000)
+
+TrackID =1605 : ParentID=1537 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -19.9766 26.0005 -0.949258 keV
+Vertex : -0.78142 -0.562284 -5.99521 m    Global time : 21.2774 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-781.42,-562.284,-5995.21)
+Point[1] Position= (-781.435,-562.264,-5995.21)
+
+TrackID =1604 : ParentID=1537 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 14.1587 39.4084 -7.43341 keV
+Vertex : -0.775948 -0.558352 -5.95337 m    Global time : 21.1289 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-775.948,-558.352,-5953.37)
+Point[1] Position= (-775.929,-558.299,-5953.38)
+
+TrackID =1603 : ParentID=1537 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 17.3217 34.2935 -7.0725 keV
+Vertex : -0.77574 -0.558202 -5.95177 m    Global time : 21.1232 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-775.74,-558.202,-5951.77)
+Point[1] Position= (-775.72,-558.164,-5951.78)
+
+TrackID =1602 : ParentID=1537 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -50.8053 -59.6185 5.85591 keV
+Vertex : -0.71506 -0.514618 -5.48771 m    Global time : 19.4761 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-715.06,-514.618,-5487.71)
+Point[1] Position= (-715.366,-514.977,-5487.67)
+Point[2] Position= (-715.402,-514.937,-5487.71)
 
-TrackID =1499 : ParentID=1450 : TrackStatus=1
+TrackID =1601 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -39.0044 -20.8207 -3.65064 keV
-Vertex : -0.772016 0.238458 4.4911 m    Global time : 15.228 ns 
+Original momentum : 10.8462 40.5639 -7.11197 keV
+Vertex : -0.710908 -0.511634 -5.45594 m    Global time : 19.3633 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-772.016,238.458,4491.1)
-Point[1] Position= (-772.074,238.427,4491.09)
+Point[0] Position= (-710.908,-511.634,-5455.94)
+Point[1] Position= (-710.893,-511.579,-5455.95)
 
-TrackID =1498 : ParentID=1450 : TrackStatus=1
+TrackID =1600 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.4404 -12.7291 -3.78873 keV
-Vertex : -0.762195 0.235425 4.434 m    Global time : 15.0344 ns 
+Original momentum : 32.582 1.13814 -5.50192 keV
+Vertex : -0.69981 -0.503656 -5.37102 m    Global time : 19.062 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-762.195,235.425,4434)
-Point[1] Position= (-762.226,235.413,4434)
+Point[0] Position= (-699.81,-503.656,-5371.02)
+Point[1] Position= (-699.785,-503.656,-5371.03)
 
-TrackID =1497 : ParentID=1450 : TrackStatus=1
+TrackID =1599 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.10049 -50.2153 5.00644 keV
-Vertex : -0.742719 0.229407 4.32075 m    Global time : 14.6504 ns 
+Original momentum : 34.2525 32.6306 -9.96971 keV
+Vertex : -0.69586 -0.500816 -5.34079 m    Global time : 18.9546 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-742.719,229.407,4320.75)
-Point[1] Position= (-742.721,229.306,4320.76)
+Point[0] Position= (-695.86,-500.816,-5340.79)
+Point[1] Position= (-695.797,-500.757,-5340.81)
 
-TrackID =1496 : ParentID=1450 : TrackStatus=1
+TrackID =1598 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -82.7421 25.4193 -8.11615 keV
-Vertex : -0.738422 0.22808 4.29577 m    Global time : 14.5656 ns 
+Original momentum : -39.542 93.479 -14.4528 keV
+Vertex : -0.683807 -0.492148 -5.24854 m    Global time : 18.6272 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-738.422,228.08,4295.77)
-Point[1] Position= (-739.064,228.277,4295.7)
-Point[2] Position= (-739.077,228.34,4295.71)
+Point[0] Position= (-683.807,-492.148,-5248.54)
+Point[1] Position= (-684.241,-491.121,-5248.7)
+Point[2] Position= (-684.059,-490.915,-5248.9)
 
-TrackID =1495 : ParentID=1450 : TrackStatus=1
+TrackID =1597 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.8195 26.323 5.0939 keV
-Vertex : -0.724184 0.223676 4.21298 m    Global time : 14.2849 ns 
+Original momentum : -21.5348 59.7899 -7.04377 keV
+Vertex : -0.678975 -0.488674 -5.21157 m    Global time : 18.496 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-724.184,223.676,4212.98)
-Point[1] Position= (-724.151,223.706,4212.99)
+Point[0] Position= (-678.975,-488.674,-5211.57)
+Point[1] Position= (-679.052,-488.46,-5211.6)
 
-TrackID =1494 : ParentID=1450 : TrackStatus=1
+TrackID =1596 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -46.4282 16.3577 -6.41136 keV
-Vertex : -0.722102 0.223031 4.20088 m    Global time : 14.2439 ns 
+Original momentum : 6.71238 33.0642 -5.19614 keV
+Vertex : -0.677954 -0.48794 -5.20376 m    Global time : 18.4683 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-722.102,223.031,4200.88)
-Point[1] Position= (-722.192,223.063,4200.87)
+Point[0] Position= (-677.954,-487.94,-5203.76)
+Point[1] Position= (-677.949,-487.913,-5203.77)
 
-TrackID =1493 : ParentID=1450 : TrackStatus=1
+TrackID =1595 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 54.6585 -14.6605 13.5399 keV
-Vertex : -0.697149 0.215304 4.05582 m    Global time : 13.7521 ns 
+Original momentum : 39.9826 -3.26879 -6.63771 keV
+Vertex : -0.675145 -0.485921 -5.18227 m    Global time : 18.392 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-697.149,215.304,4055.82)
-Point[1] Position= (-696.994,215.263,4055.86)
+Point[0] Position= (-675.145,-485.921,-5182.27)
+Point[1] Position= (-675.096,-485.925,-5182.28)
 
-TrackID =1492 : ParentID=1450 : TrackStatus=1
+TrackID =1594 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.98368 -32.2852 1.604 keV
-Vertex : -0.692579 0.213891 4.02926 m    Global time : 13.662 ns 
+Original momentum : 38.269 -15.1817 -5.3632 keV
+Vertex : -0.651477 -0.468915 -5.00113 m    Global time : 17.7491 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-692.579,213.891,4029.26)
-Point[1] Position= (-692.585,213.866,4029.26)
+Point[0] Position= (-651.477,-468.915,-5001.13)
+Point[1] Position= (-651.428,-468.934,-5001.14)
 
-TrackID =1491 : ParentID=1450 : TrackStatus=1
+TrackID =1593 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.4504 -28.0935 8.98651 keV
-Vertex : -0.681611 0.210496 3.96549 m    Global time : 13.4457 ns 
+Original momentum : 59.6785 6.0502 -12.2508 keV
+Vertex : -0.629578 -0.453161 -4.83345 m    Global time : 17.1539 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-681.611,210.496,3965.49)
-Point[1] Position= (-681.564,210.455,3965.5)
+Point[0] Position= (-629.578,-453.161,-4833.45)
+Point[1] Position= (-629.386,-453.142,-4833.49)
 
-TrackID =1490 : ParentID=1450 : TrackStatus=1
+TrackID =1592 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.5898 125.447 18.6639 keV
-Vertex : -0.660875 0.204079 3.84493 m    Global time : 13.037 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (-660.875,204.079,3844.93)
-Point[1] Position= (-660.135,206.16,3845.24)
-Point[2] Position= (-659.955,206.319,3845.3)
-Point[3] Position= (-659.325,206.772,3846.01)
-Point[4] Position= (-659.547,206.899,3845.77)
-
-TrackID =1522 : ParentID=1490 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.4158 26.1646 -37.4005 keV
-Vertex : -0.659955 0.206319 3.8453 m    Global time : 13.0699 ns 
+Original momentum : -45.4724 29.824 0.0602249 keV
+Vertex : -0.594345 -0.427798 -4.56356 m    Global time : 16.196 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-659.955,206.319,3845.3)
-Point[1] Position= (-659.906,206.374,3845.22)
+Point[0] Position= (-594.345,-427.798,-4563.56)
+Point[1] Position= (-594.454,-427.726,-4563.56)
 
-TrackID =1489 : ParentID=1450 : TrackStatus=1
+TrackID =1591 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.802291 -32.429 2.91912 keV
-Vertex : -0.658853 0.203452 3.83317 m    Global time : 12.9971 ns 
+Original momentum : 28.7731 22.1784 -7.27072 keV
+Vertex : -0.575269 -0.414065 -4.41749 m    Global time : 15.6776 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-658.853,203.452,3833.17)
-Point[1] Position= (-658.852,203.428,3833.17)
+Point[0] Position= (-575.269,-414.065,-4417.49)
+Point[1] Position= (-575.24,-414.043,-4417.5)
 
-TrackID =1488 : ParentID=1450 : TrackStatus=1
+TrackID =1590 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.0388 -31.1229 1.30195 keV
-Vertex : -0.630015 0.194523 3.66549 m    Global time : 12.4285 ns 
+Original momentum : 8.30576 44.8489 -7.52146 keV
+Vertex : -0.55918 -0.402486 -4.29432 m    Global time : 15.2404 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-630.015,194.523,3665.49)
-Point[1] Position= (-630.021,194.501,3665.49)
+Point[0] Position= (-559.18,-402.486,-4294.32)
+Point[1] Position= (-559.166,-402.413,-4294.33)
 
-TrackID =1487 : ParentID=1450 : TrackStatus=1
+TrackID =1589 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.4795 -26.5125 -1.25581 keV
-Vertex : -0.585231 0.180664 3.40518 m    Global time : 11.5458 ns 
+Original momentum : 15.7296 44.1119 -8.5559 keV
+Vertex : -0.545896 -0.392919 -4.19255 m    Global time : 14.8792 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-585.231,180.664,3405.18)
-Point[1] Position= (-585.25,180.641,3405.18)
+Point[0] Position= (-545.896,-392.919,-4192.55)
+Point[1] Position= (-545.868,-392.842,-4192.57)
 
-TrackID =1486 : ParentID=1450 : TrackStatus=1
+TrackID =1588 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.938 29.9863 -4.1117 keV
-Vertex : -0.570806 0.176204 3.32137 m    Global time : 11.2617 ns 
+Original momentum : -9.02007 36.6643 -3.76457 keV
+Vertex : -0.532077 -0.382969 -4.08667 m    Global time : 14.5034 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-570.806,176.204,3321.37)
-Point[1] Position= (-570.83,176.236,3321.37)
+Point[0] Position= (-532.077,-382.969,-4086.67)
+Point[1] Position= (-532.087,-382.93,-4086.67)
 
-TrackID =1485 : ParentID=1450 : TrackStatus=1
+TrackID =1587 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -52.6378 -18.3474 -4.97857 keV
-Vertex : -0.55799 0.172242 3.24692 m    Global time : 11.0092 ns 
+Original momentum : 32.2177 -3.49085 -4.99298 keV
+Vertex : -0.521235 -0.375161 -4.00357 m    Global time : 14.2085 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-557.99,172.242,3246.92)
-Point[1] Position= (-558.126,172.195,3246.91)
+Point[0] Position= (-521.235,-375.161,-4003.57)
+Point[1] Position= (-521.21,-375.163,-4003.57)
 
-TrackID =1484 : ParentID=1450 : TrackStatus=1
+TrackID =1586 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.34628 33.2475 0.461183 keV
-Vertex : -0.556793 0.171872 3.23997 m    Global time : 10.9856 ns 
+Original momentum : 48.6045 -9.74054 -8.04533 keV
+Vertex : -0.500695 -0.360377 -3.84609 m    Global time : 13.6496 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-556.793,171.872,3239.97)
-Point[1] Position= (-556.788,171.899,3239.97)
+Point[0] Position= (-500.695,-360.377,-3846.09)
+Point[1] Position= (-500.599,-360.396,-3846.11)
 
-TrackID =1483 : ParentID=1450 : TrackStatus=1
+TrackID =1585 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 184.793 -37.9704 73.04 keV
-Vertex : -0.529181 0.163333 3.07953 m    Global time : 10.4416 ns 
-  Current trajectory has 11 points.
-Point[0] Position= (-529.181,163.333,3079.53)
-Point[1] Position= (-523.11,162.085,3081.93)
-Point[2] Position= (-522.974,162.374,3081.66)
-Point[3] Position= (-520.92,165.769,3079.48)
-Point[4] Position= (-519.73,165.484,3075.86)
-Point[5] Position= (-520.697,165.475,3078.83)
-Point[6] Position= (-520.295,166.431,3080.54)
-Point[7] Position= (-520.037,168.123,3081.64)
-Point[8] Position= (-521.384,168.086,3082.07)
-Point[9] Position= (-521.922,167.708,3082.08)
-Point[10] Position= (-521.933,167.718,3082.08)
+Original momentum : 8.51868 32.2491 -5.31796 keV
+Vertex : -0.454996 -0.327536 -3.49574 m    Global time : 12.4062 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-454.996,-327.536,-3495.74)
+Point[1] Position= (-454.989,-327.509,-3495.75)
 
-TrackID =1525 : ParentID=1483 : TrackStatus=1
+TrackID =1584 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.1793 -6.26081 17.0406 keV
-Vertex : -0.520295 0.166431 3.08054 m    Global time : 10.6534 ns 
+Original momentum : -36.6702 -19.5861 4.79761 keV
+Vertex : -0.447984 -0.322503 -3.442 m    Global time : 12.2154 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-520.295,166.431,3080.54)
-Point[1] Position= (-520.321,166.425,3080.56)
+Point[0] Position= (-447.984,-322.503,-3442)
+Point[1] Position= (-448.032,-322.528,-3441.99)
 
-TrackID =1524 : ParentID=1483 : TrackStatus=1
+TrackID =1583 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.10733 35.1017 -0.959261 keV
-Vertex : -0.52092 0.165769 3.07948 m    Global time : 10.5512 ns 
+Original momentum : 14.9187 45.0134 -8.57342 keV
+Vertex : -0.44436 -0.319902 -3.41422 m    Global time : 12.1168 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-520.92,165.769,3079.48)
-Point[1] Position= (-520.915,165.801,3079.48)
+Point[0] Position= (-444.36,-319.902,-3414.22)
+Point[1] Position= (-444.334,-319.821,-3414.24)
 
-TrackID =1523 : ParentID=1483 : TrackStatus=1
+TrackID =1582 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.8995 -16.2041 -39.0952 keV
-Vertex : -0.522974 0.162374 3.08166 m    Global time : 10.5059 ns 
+Original momentum : 37.0543 -8.41553 -5.57918 keV
+Vertex : -0.439794 -0.316624 -3.37921 m    Global time : 11.9926 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-522.974,162.374,3081.66)
-Point[1] Position= (-522.995,162.349,3081.6)
+Point[0] Position= (-439.794,-316.624,-3379.21)
+Point[1] Position= (-439.754,-316.633,-3379.22)
 
-TrackID =1482 : ParentID=1450 : TrackStatus=1
+TrackID =1581 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.6806 34.5031 -5.79121 keV
-Vertex : -0.525968 0.16234 3.06085 m    Global time : 10.3783 ns 
+Original momentum : 26.4614 -22.3336 -2.61516 keV
+Vertex : -0.438769 -0.315889 -3.37136 m    Global time : 11.9647 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-525.968,162.34,3060.85)
-Point[1] Position= (-526.052,162.415,3060.84)
+Point[0] Position= (-438.769,-315.889,-3371.36)
+Point[1] Position= (-438.746,-315.908,-3371.36)
 
-TrackID =1481 : ParentID=1450 : TrackStatus=1
+TrackID =1580 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 558.445 -62.1383 509.705 keV
-Vertex : -0.525454 0.162181 3.05787 m    Global time : 10.3682 ns 
-  Current trajectory has 42 points.
-Point[0] Position= (-525.454,162.181,3057.87)
-Point[1] Position= (-447.255,180.914,3176.63)
-Point[2] Position= (-426.222,194.623,3194.67)
-Point[3] Position= (-390.669,236.356,3225.62)
-Point[4] Position= (-308.098,297.785,3250.76)
-Point[5] Position= (-299.7,300.975,3253.53)
-Point[6] Position= (-93.2677,445.156,3259.31)
-Point[7] Position= (-39.4697,461.829,3256.68)
-Point[8] Position= (8.34135,485.232,3250.7)
-Point[9] Position= (30.1589,491.5,3247.97)
-Point[10] Position= (37.4171,494.933,3247.17)
-Point[11] Position= (55.4673,504.791,3243.08)
-Point[12] Position= (58.617,505.669,3243.2)
-Point[13] Position= (89.681,514.014,3246.85)
-Point[14] Position= (96.2822,514.288,3249.35)
-Point[15] Position= (205.439,523.361,3293.66)
-Point[16] Position= (210.733,521.708,3292.89)
-Point[17] Position= (236.993,517.041,3295)
-Point[18] Position= (239.08,516.296,3298.18)
-Point[19] Position= (291.305,518.744,3366.48)
-Point[20] Position= (283.701,512.044,3363.81)
-Point[21] Position= (271.688,504.089,3360.64)
-Point[22] Position= (218.857,471.916,3354.12)
-Point[23] Position= (261.911,490.713,3340.79)
-Point[24] Position= (293.85,506.097,3330.02)
-Point[25] Position= (298.141,508.766,3331.48)
-Point[26] Position= (309.125,514.532,3333.34)
-Point[27] Position= (315.438,530.686,3335.8)
-Point[28] Position= (315.479,530.794,3335.93)
-Point[29] Position= (315.058,539.573,3349.32)
-Point[30] Position= (313.893,544.499,3354.88)
-Point[31] Position= (313.254,551.797,3362.03)
-Point[32] Position= (313.077,552.047,3362.17)
-Point[33] Position= (309.857,557.824,3366.4)
-Point[34] Position= (310.122,558.195,3367.31)
-Point[35] Position= (310.334,558.411,3368.11)
-Point[36] Position= (309.185,559.319,3372.23)
-Point[37] Position= (309.135,560.647,3373.39)
-Point[38] Position= (308.697,562.194,3373.92)
-Point[39] Position= (308.711,562.712,3375.24)
-Point[40] Position= (308.717,562.956,3375.87)
-Point[41] Position= (308.815,562.988,3375.99)
+Original momentum : -57.8625 11.398 2.86472 keV
+Vertex : -0.436144 -0.314005 -3.35123 m    Global time : 11.8933 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-436.144,-314.005,-3351.23)
+Point[1] Position= (-436.314,-313.971,-3351.22)
 
-TrackID =1552 : ParentID=1481 : TrackStatus=1
+TrackID =1579 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 56.7135 21.1019 -8.40353 keV
-Vertex : 0.308697 0.562194 3.37392 m    Global time : 16.3593 ns 
+Original momentum : 34.2372 -33.3652 -3.73377 keV
+Vertex : -0.427835 -0.308046 -3.28753 m    Global time : 11.6672 ns 
   Current trajectory has 2 points.
-Point[0] Position= (308.697,562.194,3373.92)
-Point[1] Position= (308.878,562.262,3373.89)
+Point[0] Position= (-427.835,-308.046,-3287.53)
+Point[1] Position= (-427.774,-308.106,-3287.54)
 
-TrackID =1551 : ParentID=1481 : TrackStatus=1
+TrackID =1578 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.2544 -10.3774 58.4301 keV
-Vertex : 0.309135 0.560647 3.37339 m    Global time : 16.3376 ns 
+Original momentum : -5.81974 37.1611 -4.20432 keV
+Vertex : -0.412646 -0.297157 -3.1711 m    Global time : 11.254 ns 
   Current trajectory has 2 points.
-Point[0] Position= (309.135,560.647,3373.39)
-Point[1] Position= (309.261,560.605,3373.63)
+Point[0] Position= (-412.646,-297.157,-3171.1)
+Point[1] Position= (-412.652,-297.118,-3171.11)
 
-TrackID =1550 : ParentID=1481 : TrackStatus=1
+TrackID =1577 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.3949 0.780492 12.5981 keV
-Vertex : 0.310334 0.558411 3.36811 m    Global time : 16.2725 ns 
+Original momentum : 30.5891 13.4755 -6.45311 keV
+Vertex : -0.407043 -0.29314 -3.12813 m    Global time : 11.1015 ns 
   Current trajectory has 2 points.
-Point[0] Position= (310.334,558.411,3368.11)
-Point[1] Position= (310.407,558.413,3368.13)
+Point[0] Position= (-407.043,-293.14,-3128.13)
+Point[1] Position= (-407.018,-293.129,-3128.14)
 
-TrackID =1549 : ParentID=1481 : TrackStatus=1
+TrackID =1576 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.8222 2.18845 -21.5238 keV
-Vertex : 0.313077 0.552047 3.36217 m    Global time : 16.1864 ns 
+Original momentum : 50.7631 -4.42943 -8.98277 keV
+Vertex : -0.401892 -0.289447 -3.08863 m    Global time : 10.9613 ns 
   Current trajectory has 2 points.
-Point[0] Position= (313.077,552.047,3362.17)
-Point[1] Position= (313.058,552.049,3362.16)
+Point[0] Position= (-401.892,-289.447,-3088.63)
+Point[1] Position= (-401.784,-289.456,-3088.64)
 
-TrackID =1548 : ParentID=1481 : TrackStatus=1
+TrackID =1575 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 39.5107 10.6361 30.5865 keV
-Vertex : 0.313254 0.551797 3.36203 m    Global time : 16.1835 ns 
+Original momentum : -26.3333 -34.6762 4.67722 keV
+Vertex : -0.39377 -0.283621 -3.02629 m    Global time : 10.7401 ns 
   Current trajectory has 2 points.
-Point[0] Position= (313.254,551.797,3362.03)
-Point[1] Position= (313.335,551.819,3362.09)
+Point[0] Position= (-393.77,-283.621,-3026.29)
+Point[1] Position= (-393.808,-283.671,-3026.29)
 
-TrackID =1547 : ParentID=1481 : TrackStatus=1
+TrackID =1574 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.6698 -14.494 11.9803 keV
-Vertex : 0.313893 0.544499 3.35488 m    Global time : 16.1022 ns 
+Original momentum : -28.9618 31.1621 -1.0193 keV
+Vertex : -0.392987 -0.28306 -3.02028 m    Global time : 10.7187 ns 
   Current trajectory has 2 points.
-Point[0] Position= (313.893,544.499,3354.88)
-Point[1] Position= (313.843,544.48,3354.9)
+Point[0] Position= (-392.987,-283.06,-3020.28)
+Point[1] Position= (-393.026,-283.017,-3020.28)
 
-TrackID =1546 : ParentID=1481 : TrackStatus=1
+TrackID =1573 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 59.8363 34.151 -19.0305 keV
-Vertex : 0.315479 0.530794 3.33593 m    Global time : 15.9307 ns 
+Original momentum : 25.3765 33.4992 -8.34354 keV
+Vertex : -0.391861 -0.282253 -3.01165 m    Global time : 10.6881 ns 
   Current trajectory has 2 points.
-Point[0] Position= (315.479,530.794,3335.93)
-Point[1] Position= (315.762,530.956,3335.84)
+Point[0] Position= (-391.861,-282.253,-3011.65)
+Point[1] Position= (-391.827,-282.207,-3011.66)
 
-TrackID =1545 : ParentID=1481 : TrackStatus=1
+TrackID =1572 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.5434 38.0538 -39.7021 keV
-Vertex : 0.315438 0.530686 3.3358 m    Global time : 15.9295 ns 
+Original momentum : -15.4125 28.0965 -1.68704 keV
+Vertex : -0.39146 -0.281965 -3.00857 m    Global time : 10.6772 ns 
   Current trajectory has 2 points.
-Point[0] Position= (315.438,530.686,3335.8)
-Point[1] Position= (315.523,530.807,3335.68)
+Point[0] Position= (-391.46,-281.965,-3008.57)
+Point[1] Position= (-391.471,-281.945,-3008.57)
 
-TrackID =1544 : ParentID=1481 : TrackStatus=1
+TrackID =1571 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.2834 20.5955 -38.6123 keV
-Vertex : 0.309125 0.514532 3.33334 m    Global time : 15.8153 ns 
+Original momentum : -37.0946 8.75859 2.49863 keV
+Vertex : -0.390565 -0.281324 -3.0017 m    Global time : 10.6528 ns 
   Current trajectory has 2 points.
-Point[0] Position= (309.125,514.532,3333.34)
-Point[1] Position= (309.033,514.586,3333.24)
+Point[0] Position= (-390.565,-281.324,-3001.7)
+Point[1] Position= (-390.605,-281.314,-3001.7)
 
-TrackID =1543 : ParentID=1481 : TrackStatus=1
+TrackID =1570 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.38951 8.39404 31.6696 keV
-Vertex : 0.298141 0.508766 3.33148 m    Global time : 15.7363 ns 
+Original momentum : 20.215 -34.1684 -1.08052 keV
+Vertex : -0.371974 -0.267994 -2.85902 m    Global time : 10.1464 ns 
   Current trajectory has 2 points.
-Point[0] Position= (298.141,508.766,3331.48)
-Point[1] Position= (298.133,508.773,3331.51)
+Point[0] Position= (-371.974,-267.994,-2859.02)
+Point[1] Position= (-371.951,-268.033,-2859.02)
 
-TrackID =1542 : ParentID=1481 : TrackStatus=1
+TrackID =1569 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.18969 -7.18832 45.9421 keV
-Vertex : 0.271688 0.504089 3.36064 m    Global time : 14.8896 ns 
+Original momentum : 56.6499 -5.92516 -10.304 keV
+Vertex : -0.36784 -0.265029 -2.82729 m    Global time : 10.0338 ns 
   Current trajectory has 2 points.
-Point[0] Position= (271.688,504.089,3360.64)
-Point[1] Position= (271.684,504.077,3360.72)
+Point[0] Position= (-367.84,-265.029,-2827.29)
+Point[1] Position= (-367.681,-265.046,-2827.32)
 
-TrackID =1541 : ParentID=1481 : TrackStatus=1
+TrackID =1568 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.88422 -35.5232 3.32574 keV
-Vertex : 0.23908 0.516296 3.29818 m    Global time : 14.3345 ns 
+Original momentum : -28.8423 16.0175 1.12532 keV
+Vertex : -0.350986 -0.252934 -2.69791 m    Global time : 9.57465 ns 
   Current trajectory has 2 points.
-Point[0] Position= (239.08,516.296,3298.18)
-Point[1] Position= (239.078,516.263,3298.18)
+Point[0] Position= (-350.986,-252.934,-2697.91)
+Point[1] Position= (-351.008,-252.921,-2697.91)
 
-TrackID =1540 : ParentID=1481 : TrackStatus=1
+TrackID =1567 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.3302 -31.2549 -26.0483 keV
-Vertex : 0.236993 0.517041 3.295 m    Global time : 14.3155 ns 
+Original momentum : -38.0785 54.8423 -4.81562 keV
+Vertex : -0.341611 -0.246202 -2.62595 m    Global time : 9.31925 ns 
   Current trajectory has 2 points.
-Point[0] Position= (236.993,517.041,3295)
-Point[1] Position= (237.054,516.977,3294.95)
+Point[0] Position= (-341.611,-246.202,-2625.95)
+Point[1] Position= (-341.764,-245.981,-2625.96)
 
-TrackID =1539 : ParentID=1481 : TrackStatus=1
+TrackID =1566 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.92074 -8.30575 -35.6376 keV
-Vertex : 0.210733 0.521708 3.29289 m    Global time : 14.1854 ns 
+Original momentum : -11.1199 -36.6398 3.34053 keV
+Vertex : -0.335917 -0.242112 -2.58223 m    Global time : 9.1641 ns 
   Current trajectory has 2 points.
-Point[0] Position= (210.733,521.708,3292.89)
-Point[1] Position= (210.735,521.7,3292.86)
+Point[0] Position= (-335.917,-242.112,-2582.23)
+Point[1] Position= (-335.929,-242.151,-2582.22)
 
-TrackID =1538 : ParentID=1481 : TrackStatus=1
+TrackID =1565 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.239 20.017 46.5325 keV
-Vertex : 0.0962822 0.514288 3.24935 m    Global time : 13.6088 ns 
+Original momentum : -38.2675 -8.78511 4.1872 keV
+Vertex : -0.305511 -0.220263 -2.34883 m    Global time : 8.33578 ns 
   Current trajectory has 2 points.
-Point[0] Position= (96.2822,514.288,3249.35)
-Point[1] Position= (96.2363,514.336,3249.46)
+Point[0] Position= (-305.511,-220.263,-2348.83)
+Point[1] Position= (-305.554,-220.273,-2348.83)
 
-TrackID =1537 : ParentID=1481 : TrackStatus=1
+TrackID =1564 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.6002 16.456 -38.0415 keV
-Vertex : 0.089681 0.514014 3.24685 m    Global time : 13.5761 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (89.681,514.014,3246.85)
-Point[1] Position= (89.7023,514.038,3246.8)
+Original momentum : 17.5827 -55.8617 -0.617073 keV
+Vertex : -0.270621 -0.195185 -2.08091 m    Global time : 7.38493 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-270.621,-195.185,-2080.91)
+Point[1] Position= (-270.603,-195.242,-2080.91)
+Point[2] Position= (-270.609,-195.284,-2080.85)
 
-TrackID =1536 : ParentID=1481 : TrackStatus=1
+TrackID =1606 : ParentID=1564 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.7185 -15.5297 -46.3631 keV
-Vertex : 0.058617 0.505669 3.2432 m    Global time : 13.4275 ns 
+Original momentum : 27.2799 13.6117 12.8475 keV
+Vertex : -0.270603 -0.195242 -2.08091 m    Global time : 7.38667 ns 
   Current trajectory has 2 points.
-Point[0] Position= (58.617,505.669,3243.2)
-Point[1] Position= (58.6381,505.638,3243.11)
+Point[0] Position= (-270.603,-195.242,-2080.91)
+Point[1] Position= (-270.582,-195.231,-2080.9)
 
-TrackID =1535 : ParentID=1481 : TrackStatus=1
+TrackID =1563 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.4287 46.624 13.7781 keV
-Vertex : 0.0554673 0.504791 3.24308 m    Global time : 13.4126 ns 
+Original momentum : -23.481 32.2446 -1.61652 keV
+Vertex : -0.257807 -0.185971 -1.98248 m    Global time : 7.03562 ns 
   Current trajectory has 2 points.
-Point[0] Position= (55.4673,504.791,3243.08)
-Point[1] Position= (55.4427,504.883,3243.1)
+Point[0] Position= (-257.807,-185.971,-1982.48)
+Point[1] Position= (-257.834,-185.933,-1982.48)
 
-TrackID =1534 : ParentID=1481 : TrackStatus=1
+TrackID =1562 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.4075 -10.1997 27.8749 keV
-Vertex : 0.0374171 0.494933 3.24717 m    Global time : 13.3176 ns 
+Original momentum : 40.54 17.7859 -9.06274 keV
+Vertex : -0.242331 -0.174847 -1.86363 m    Global time : 6.61383 ns 
   Current trajectory has 2 points.
-Point[0] Position= (37.4171,494.933,3247.17)
-Point[1] Position= (37.4262,494.925,3247.19)
+Point[0] Position= (-242.331,-174.847,-1863.63)
+Point[1] Position= (-242.268,-174.82,-1863.64)
 
-TrackID =1533 : ParentID=1481 : TrackStatus=1
+TrackID =1561 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.9771 -73.2486 38.0771 keV
-Vertex : 0.0301589 0.4915 3.24797 m    Global time : 13.2811 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (30.1589,491.5,3247.97)
-Point[1] Position= (30.5489,490.836,3248.32)
-Point[2] Position= (30.4839,490.762,3248.36)
+Original momentum : -37.2074 13.199 1.97951 keV
+Vertex : -0.230725 -0.166496 -1.77442 m    Global time : 6.29724 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-230.725,-166.496,-1774.42)
+Point[1] Position= (-230.768,-166.481,-1774.42)
 
-TrackID =1532 : ParentID=1481 : TrackStatus=1
+TrackID =1560 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.8111 -47.1709 -35.0402 keV
-Vertex : 0.00834135 0.485232 3.2507 m    Global time : 13.1793 ns 
+Original momentum : 23.6533 23.4556 -6.46995 keV
+Vertex : -0.229527 -0.165634 -1.76521 m    Global time : 6.26456 ns 
   Current trajectory has 2 points.
-Point[0] Position= (8.34135,485.232,3250.7)
-Point[1] Position= (8.37408,485.09,3250.6)
+Point[0] Position= (-229.527,-165.634,-1765.21)
+Point[1] Position= (-229.508,-165.615,-1765.22)
 
-TrackID =1531 : ParentID=1481 : TrackStatus=1
+TrackID =1559 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.4661 40.2088 -25.1399 keV
-Vertex : -0.0394697 0.461829 3.25668 m    Global time : 12.9439 ns 
+Original momentum : -24.5399 25.0361 -0.427712 keV
+Vertex : -0.205569 -0.148399 -1.58109 m    Global time : 5.61112 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-39.4697,461.829,3256.68)
-Point[1] Position= (-39.5161,461.916,3256.63)
+Point[0] Position= (-205.569,-148.399,-1581.09)
+Point[1] Position= (-205.59,-148.377,-1581.09)
 
-TrackID =1530 : ParentID=1481 : TrackStatus=1
+TrackID =1558 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.1589 -40.8107 -32.2539 keV
-Vertex : -0.2997 0.300975 3.25353 m    Global time : 11.7599 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-299.7,300.975,3253.53)
-Point[1] Position= (-299.586,300.86,3253.43)
-Point[2] Position= (-299.561,300.758,3253.37)
+Original momentum : 33.2223 -95.1757 -5.92767 keV
+Vertex : -0.204215 -0.147425 -1.57069 m    Global time : 5.57422 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-204.215,-147.425,-1570.69)
+Point[1] Position= (-203.969,-148.13,-1570.73)
+Point[2] Position= (-204,-148.195,-1570.83)
+Point[3] Position= (-204.025,-148.297,-1570.9)
 
-TrackID =1529 : ParentID=1481 : TrackStatus=1
+TrackID =1608 : ParentID=1558 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.56581 -21.5583 32.8175 keV
-Vertex : -0.308098 0.297785 3.25076 m    Global time : 11.7208 ns 
+Original momentum : -42.2385 15.7207 -7.62475 keV
+Vertex : -0.204 -0.148195 -1.57083 m    Global time : 5.58984 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-308.098,297.785,3250.76)
-Point[1] Position= (-308.101,297.76,3250.79)
+Point[0] Position= (-204,-148.195,-1570.83)
+Point[1] Position= (-204.067,-148.17,-1570.84)
 
-TrackID =1528 : ParentID=1481 : TrackStatus=1
+TrackID =1607 : ParentID=1558 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.5942 17.5437 30.7188 keV
-Vertex : -0.390669 0.236356 3.22562 m    Global time : 11.2918 ns 
+Original momentum : 45.588 -13.1313 -5.63416 keV
+Vertex : -0.203969 -0.14813 -1.57073 m    Global time : 5.58708 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-390.669,236.356,3225.62)
-Point[1] Position= (-390.72,236.385,3225.67)
+Point[0] Position= (-203.969,-148.13,-1570.73)
+Point[1] Position= (-203.889,-148.153,-1570.74)
 
-TrackID =1527 : ParentID=1481 : TrackStatus=1
+TrackID =1557 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.4367 -44.8493 16.2733 keV
-Vertex : -0.426222 0.194623 3.19467 m    Global time : 11.0393 ns 
+Original momentum : -33.6807 -21.8968 4.73405 keV
+Vertex : -0.201138 -0.145212 -1.54705 m    Global time : 5.49032 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-426.222,194.623,3194.67)
-Point[1] Position= (-426.172,194.523,3194.7)
+Point[0] Position= (-201.138,-145.212,-1547.05)
+Point[1] Position= (-201.179,-145.238,-1547.04)
 
-TrackID =1526 : ParentID=1481 : TrackStatus=1
+TrackID =1556 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.7528 20.4286 35.3056 keV
-Vertex : -0.447255 0.180914 3.17663 m    Global time : 10.9144 ns 
+Original momentum : 16.4181 -31.7051 -0.49175 keV
+Vertex : -0.188471 -0.136097 -1.44974 m    Global time : 5.14499 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-447.255,180.914,3176.63)
-Point[1] Position= (-447.322,180.957,3176.71)
+Point[0] Position= (-188.471,-136.097,-1449.74)
+Point[1] Position= (-188.456,-136.126,-1449.74)
 
-TrackID =1480 : ParentID=1450 : TrackStatus=1
+TrackID =1555 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -36.2539 -17.029 -3.72026 keV
-Vertex : -0.517875 0.159838 3.01378 m    Global time : 10.2187 ns 
+Original momentum : 47.5606 49.6273 -16.0007 keV
+Vertex : -0.188347 -0.136007 -1.44879 m    Global time : 5.14159 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-517.875,159.838,3013.78)
-Point[1] Position= (-517.919,159.818,3013.78)
+Point[0] Position= (-188.347,-136.007,-1448.79)
+Point[1] Position= (-188.128,-135.78,-1448.86)
 
-TrackID =1479 : ParentID=1450 : TrackStatus=1
+TrackID =1554 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.92118 -83.8367 11.193 keV
-Vertex : -0.464421 0.143317 2.70269 m    Global time : 9.1639 ns 
+Original momentum : -74.1181 17.5721 1.99219 keV
+Vertex : -0.157419 -0.113746 -1.2112 m    Global time : 4.29842 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-464.421,143.317,2702.69)
-Point[1] Position= (-464.435,142.708,2702.78)
-Point[2] Position= (-464.505,142.747,2702.71)
+Point[0] Position= (-157.419,-113.746,-1211.2)
+Point[1] Position= (-157.798,-113.656,-1211.19)
+Point[2] Position= (-157.816,-113.679,-1211.22)
 
-TrackID =1478 : ParentID=1450 : TrackStatus=1
+TrackID =1609 : ParentID=1554 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.9251 -17.4652 6.61997 keV
-Vertex : -0.459246 0.141718 2.67258 m    Global time : 9.06178 ns 
+Original momentum : -29.1626 20.2668 2.66435 keV
+Vertex : -0.157798 -0.113656 -1.21119 m    Global time : 4.30722 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-459.246,141.718,2672.58)
-Point[1] Position= (-459.226,141.704,2672.58)
+Point[0] Position= (-157.798,-113.656,-1211.19)
+Point[1] Position= (-157.824,-113.638,-1211.19)
 
-TrackID =1477 : ParentID=1450 : TrackStatus=1
+TrackID =1553 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.1389 38.3638 -4.71759 keV
-Vertex : -0.416485 0.128504 2.42363 m    Global time : 8.2177 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-416.485,128.504,2423.63)
-Point[1] Position= (-416.538,128.574,2423.62)
+Original momentum : -31.4384 -94.7868 2.68452 keV
+Vertex : -0.1565 -0.113085 -1.20414 m    Global time : 4.27338 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-156.5,-113.085,-1204.14)
+Point[1] Position= (-156.83,-114.077,-1204.12)
+Point[2] Position= (-156.904,-114.196,-1204.02)
 
-TrackID =1476 : ParentID=1450 : TrackStatus=1
+TrackID =1552 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.8952 -33.6288 -1.55862 keV
-Vertex : -0.415047 0.12806 2.41526 m    Global time : 8.18933 ns 
+Original momentum : 32.5461 -0.278545 -5.3374 keV
+Vertex : -0.148068 -0.106995 -1.13931 m    Global time : 4.04328 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-415.047,128.06,2415.26)
-Point[1] Position= (-415.1,128.005,2415.26)
+Point[0] Position= (-148.068,-106.995,-1139.31)
+Point[1] Position= (-148.043,-106.995,-1139.31)
 
-TrackID =1475 : ParentID=1450 : TrackStatus=1
+TrackID =1551 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.106633 -40.1616 3.76729 keV
-Vertex : -0.39822 0.122857 2.31732 m    Global time : 7.85725 ns 
+Original momentum : -12.4046 36.2171 -3.33041 keV
+Vertex : -12.1354 -8.76759 -93.3922 cm   Global time : 3.31437 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-398.22,122.857,2317.32)
-Point[1] Position= (-398.22,122.809,2317.33)
+Point[0] Position= (-121.354,-87.6759,-933.922)
+Point[1] Position= (-121.367,-87.6369,-933.926)
 
-TrackID =1474 : ParentID=1450 : TrackStatus=1
+TrackID =1550 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.4335 -0.045515 -4.71415 keV
-Vertex : -0.39203 0.120944 2.2813 m    Global time : 7.73509 ns 
+Original momentum : -59.4753 5.54778 3.5007 keV
+Vertex : -12.0274 -8.68947 -92.5621 cm   Global time : 3.2849 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-392.03,120.944,2281.3)
-Point[1] Position= (-392.06,120.944,2281.29)
+Point[0] Position= (-120.274,-86.8947,-925.621)
+Point[1] Position= (-120.455,-86.8778,-925.61)
 
-TrackID =1473 : ParentID=1450 : TrackStatus=1
+TrackID =1549 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 52.9928 89.7462 15.2588 keV
-Vertex : -0.376345 0.116099 2.19004 m    Global time : 7.42565 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-376.345,116.099,2190.04)
-Point[1] Position= (-375.735,117.132,2190.21)
-Point[2] Position= (-375.97,117.506,2189.97)
+Original momentum : 9.67878 46.3461 -8.01494 keV
+Vertex : -11.5252 -8.32607 -88.7007 cm   Global time : 3.14786 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-115.252,-83.2607,-887.007)
+Point[1] Position= (-115.235,-83.178,-887.022)
 
-TrackID =1472 : ParentID=1450 : TrackStatus=1
+TrackID =1548 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.0299 12.4044 -5.0738 keV
-Vertex : -0.367987 0.113514 2.1414 m    Global time : 7.26074 ns 
+Original momentum : 19.9712 26.3183 -6.24744 keV
+Vertex : -11.3597 -8.20637 -87.4281 cm   Global time : 3.1027 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-367.987,113.514,2141.4)
-Point[1] Position= (-368.017,113.525,2141.39)
+Point[0] Position= (-113.597,-82.0637,-874.281)
+Point[1] Position= (-113.581,-82.0426,-874.286)
 
-TrackID =1471 : ParentID=1450 : TrackStatus=1
+TrackID =1547 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.1783 -89.0862 15.4278 keV
-Vertex : -0.35208 0.108598 2.04883 m    Global time : 6.94686 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-352.08,108.598,2048.83)
-Point[1] Position= (-351.956,107.819,2048.96)
-Point[2] Position= (-352.071,107.795,2048.8)
+Original momentum : 35.1348 -18.0223 -4.51564 keV
+Vertex : -11.3028 -8.16524 -86.9907 cm   Global time : 3.08717 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-113.028,-81.6524,-869.907)
+Point[1] Position= (-112.988,-81.6733,-869.912)
 
-TrackID =1470 : ParentID=1450 : TrackStatus=1
+TrackID =1546 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.5 34.2765 -3.612 keV
-Vertex : -0.341035 0.105188 1.98454 m    Global time : 6.72889 ns 
+Original momentum : -32.4932 -37.9232 5.16471 keV
+Vertex : -9.95812 -7.19284 -76.6425 cm   Global time : 2.71993 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-341.035,105.188,1984.54)
-Point[1] Position= (-341.058,105.228,1984.54)
+Point[0] Position= (-99.5812,-71.9284,-766.425)
+Point[1] Position= (-99.6456,-72.0036,-766.415)
 
-TrackID =1469 : ParentID=1450 : TrackStatus=1
+TrackID =1545 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 58.2988 -47.844 18.5173 keV
-Vertex : -0.334469 0.103161 1.94632 m    Global time : 6.59931 ns 
+Original momentum : 56.499 -25.8323 -8.99911 keV
+Vertex : -8.96534 -6.47488 -68.9987 cm   Global time : 2.44866 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-334.469,103.161,1946.32)
-Point[1] Position= (-334.128,102.881,1946.43)
+Point[0] Position= (-89.6534,-64.7488,-689.987)
+Point[1] Position= (-89.4602,-64.8372,-690.018)
 
-TrackID =1468 : ParentID=1450 : TrackStatus=1
+TrackID =1544 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.8619 44.4532 -4.03634 keV
-Vertex : -0.309049 0.09531 1.79829 m    Global time : 6.09739 ns 
+Original momentum : 48.1841 1.00936 -8.84873 keV
+Vertex : -8.29176 -5.988 -63.814 cm   Global time : 2.26466 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-309.049,95.31,1798.29)
-Point[1] Position= (-309.101,95.4019,1798.28)
+Point[0] Position= (-82.9176,-59.88,-638.14)
+Point[1] Position= (-82.8274,-59.8781,-638.157)
 
-TrackID =1467 : ParentID=1450 : TrackStatus=1
+TrackID =1543 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -52.6187 22.387 -6.92995 keV
-Vertex : -0.265122 0.0817502 1.5424 m    Global time : 5.22978 ns 
+Original momentum : 28.2278 41.4193 -10.2758 keV
+Vertex : -8.18644 -5.91187 -63.0034 cm   Global time : 2.23589 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-265.122,81.7502,1542.4)
-Point[1] Position= (-265.268,81.8121,1542.38)
+Point[0] Position= (-81.8644,-59.1187,-630.034)
+Point[1] Position= (-81.8059,-59.0328,-630.055)
 
-TrackID =1466 : ParentID=1450 : TrackStatus=1
+TrackID =1542 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.75534 -65.5209 9.20191 keV
-Vertex : -0.254329 0.0784158 1.47953 m    Global time : 5.01661 ns 
+Original momentum : -39.2386 54.4513 -4.70548 keV
+Vertex : -7.95891 -5.74748 -61.2521 cm   Global time : 2.17374 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-254.329,78.4158,1479.53)
-Point[1] Position= (-254.298,78.1559,1479.56)
+Point[0] Position= (-79.5891,-57.4748,-612.521)
+Point[1] Position= (-79.7487,-57.2533,-612.54)
 
-TrackID =1465 : ParentID=1450 : TrackStatus=1
+TrackID =1541 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 17.5122 28.2505 2.612 keV
-Vertex : -0.242242 0.0746821 1.40912 m    Global time : 4.7779 ns 
+Original momentum : -33.8113 8.35493 2.34271 keV
+Vertex : -7.17053 -5.17827 -55.1859 cm   Global time : 1.95846 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-242.242,74.6821,1409.12)
-Point[1] Position= (-242.229,74.7044,1409.13)
+Point[0] Position= (-71.7053,-51.7827,-551.859)
+Point[1] Position= (-71.7348,-51.7754,-551.857)
 
-TrackID =1464 : ParentID=1450 : TrackStatus=1
+TrackID =1540 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.4177 -27.3523 -1.87872 keV
-Vertex : -0.236465 0.0728965 1.37547 m    Global time : 4.66379 ns 
+Original momentum : 40.3497 6.04919 -7.59964 keV
+Vertex : -4.40247 -3.17908 -33.8826 cm   Global time : 1.20244 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-236.465,72.8965,1375.47)
-Point[1] Position= (-236.497,72.8652,1375.47)
+Point[0] Position= (-44.0247,-31.7908,-338.826)
+Point[1] Position= (-43.9732,-31.7831,-338.835)
 
-TrackID =1463 : ParentID=1450 : TrackStatus=1
+TrackID =1539 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.7783 -11.3493 7.48568 keV
-Vertex : -0.209875 0.06469 1.22066 m    Global time : 4.13888 ns 
+Original momentum : 31.8873 4.99235 -5.72811 keV
+Vertex : -1.76493 -1.27495 -13.5856 cm   Global time : 482.13 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-209.875,64.69,1220.66)
-Point[1] Position= (-209.846,64.6797,1220.66)
+Point[0] Position= (-17.6493,-12.7495,-135.856)
+Point[1] Position= (-17.625,-12.7457,-135.86)
 
-TrackID =1462 : ParentID=1450 : TrackStatus=1
+TrackID =1538 : ParentID=1537 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.4454 -26.4575 6.06415 keV
-Vertex : -0.173122 0.0533593 1.00682 m    Global time : 3.41383 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-173.122,53.3593,1006.82)
-Point[1] Position= (-173.105,53.3376,1006.82)
+Original momentum : 146.698 -107.769 -44.333 keV
+Vertex : -0.655786 -0.474252 -5.0497 cm   Global time : 179.205 ps 
+  Current trajectory has 9 points.
+Point[0] Position= (-6.55786,-4.74252,-50.497)
+Point[1] Position= (-2.39133,-7.80337,-51.7561)
+Point[2] Position= (-2.76357,-6.17741,-51.1843)
+Point[3] Position= (-1.50618,-3.95312,-50.9779)
+Point[4] Position= (-1.76211,-1.28551,-51.2336)
+Point[5] Position= (-2.47593,0.68056,-51.591)
+Point[6] Position= (-2.32166,-0.52222,-50.8424)
+Point[7] Position= (-1.90929,-0.201508,-50.4094)
+Point[8] Position= (-1.92562,-0.202618,-50.41)
 
-TrackID =1461 : ParentID=1450 : TrackStatus=1
+TrackID =1611 : ParentID=1538 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.1349 -7.04618 7.99464 keV
-Vertex : -14.7443 4.54426 85.7431 cm   Global time : 2.90731 ns 
+Original momentum : -13.9905 -4.83584 -38.9229 keV
+Vertex : -0.150618 -0.395312 -5.09779 cm   Global time : 276.807 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-147.443,45.4426,857.431)
-Point[1] Position= (-147.406,45.4354,857.439)
+Point[0] Position= (-1.50618,-3.95312,-50.9779)
+Point[1] Position= (-1.52418,-3.95935,-51.028)
 
-TrackID =1460 : ParentID=1450 : TrackStatus=1
+TrackID =1610 : ParentID=1538 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.0511 -18.5269 7.4412 keV
-Vertex : -13.1956 4.06649 76.7332 cm   Global time : 2.60181 ns 
+Original momentum : -25.8784 19.5644 -47.0341 keV
+Vertex : -0.276357 -0.617741 -5.11843 cm   Global time : 248.686 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-131.956,40.6649,767.332)
-Point[1] Position= (-131.928,40.6475,767.339)
+Point[0] Position= (-2.76357,-6.17741,-51.1843)
+Point[1] Position= (-2.83378,-6.12434,-51.3119)
+
+TrackID =1536 : ParentID=48 : TrackStatus=1
+Particle name : pi-  PDG code : -211  Charge : -1
+Original momentum : 35.3514 166.978 -757.914 MeV
+Vertex : -8.00666e-295 -2.05077e-295 6.69946e-294 fm   Global time : 8.69392e-305 ps 
+  Current trajectory has 78 points.
+Point[0] Position= (-8.00666e-307,-2.05077e-307,6.69946e-306)
+Point[1] Position= (1.00888,4.7661,-21.6354)
+Point[2] Position= (3.30548,15.6669,-71.2267)
+Point[3] Position= (7.81814,36.9831,-168.261)
+Point[4] Position= (10.124,47.918,-218.046)
+Point[5] Position= (19.7084,93.2922,-424.879)
+Point[6] Position= (28.7575,136.069,-620.136)
+Point[7] Position= (37.546,177.732,-810.799)
+Point[8] Position= (38.0047,179.927,-820.854)
+Point[9] Position= (41.2986,195.69,-893.076)
+Point[10] Position= (41.8051,198.127,-904.234)
+Point[11] Position= (42.1101,199.601,-910.973)
+Point[12] Position= (42.1142,199.621,-911.063)
+Point[13] Position= (45.3335,215.23,-982.383)
+Point[14] Position= (46.1299,219.089,-1000)
+Point[15] Position= (48.7568,231.832,-1058.17)
+Point[16] Position= (50.8638,242.062,-1104.86)
+Point[17] Position= (51.4209,244.767,-1117.21)
+Point[18] Position= (52.9618,252.232,-1151.28)
+Point[19] Position= (54.4786,259.617,-1184.95)
+Point[20] Position= (58.0971,277.228,-1265.26)
+Point[21] Position= (58.9611,281.425,-1284.42)
+Point[22] Position= (60.9832,291.248,-1329.25)
+Point[23] Position= (68.5735,328.143,-1497.35)
+Point[24] Position= (80.9336,388.422,-1771.35)
+Point[25] Position= (81.0374,388.931,-1773.67)
+Point[26] Position= (90.3326,434.708,-1980.99)
+Point[27] Position= (92.2458,444.147,-2023.7)
+Point[28] Position= (96.7457,466.337,-2124.11)
+Point[29] Position= (104.639,505.2,-2299.92)
+Point[30] Position= (109.995,531.632,-2419.43)
+Point[31] Position= (110.307,533.169,-2426.37)
+Point[32] Position= (115.406,558.355,-2540.07)
+Point[33] Position= (115.459,558.618,-2541.26)
+Point[34] Position= (116.057,561.571,-2554.6)
+Point[35] Position= (117.953,570.964,-2597)
+Point[36] Position= (127.442,617.701,-2807.98)
+Point[37] Position= (133.411,647.147,-2940.67)
+Point[38] Position= (135.242,656.176,-2981.38)
+Point[39] Position= (137.162,665.647,-3024.08)
+Point[40] Position= (139.504,677.281,-3076.6)
+Point[41] Position= (141.573,687.595,-3123.19)
+Point[42] Position= (144.635,702.833,-3192.02)
+Point[43] Position= (144.815,703.729,-3196.06)
+Point[44] Position= (145.397,706.637,-3209.2)
+Point[45] Position= (147.852,719.009,-3265.07)
+Point[46] Position= (148.393,721.742,-3277.42)
+Point[47] Position= (151.259,736.227,-3342.85)
+Point[48] Position= (152.35,741.727,-3367.67)
+Point[49] Position= (154.476,752.45,-3416.03)
+Point[50] Position= (157.462,767.453,-3483.73)
+Point[51] Position= (158.107,770.691,-3498.33)
+Point[52] Position= (159.374,777.071,-3527.1)
+Point[53] Position= (159.868,779.56,-3538.32)
+Point[54] Position= (168.486,822.663,-3732.47)
+Point[55] Position= (183.431,896.362,-4064.16)
+Point[56] Position= (185.179,904.931,-4102.76)
+Point[57] Position= (186.078,909.336,-4122.61)
+Point[58] Position= (200.897,982.843,-4454.07)
+Point[59] Position= (201.869,987.701,-4475.97)
+Point[60] Position= (205.015,1003.46,-4547.02)
+Point[61] Position= (205.554,1006.17,-4559.21)
+Point[62] Position= (206.042,1008.63,-4570.31)
+Point[63] Position= (208.617,1021.65,-4628.96)
+Point[64] Position= (213.882,1048.26,-4748.72)
+Point[65] Position= (219.649,1077.45,-4880.07)
+Point[66] Position= (220.151,1079.97,-4891.42)
+Point[67] Position= (233.852,1149.6,-5204.51)
+Point[68] Position= (234.487,1152.87,-5219.21)
+Point[69] Position= (242.95,1196.37,-5414.66)
+Point[70] Position= (245.895,1211.54,-5482.79)
+Point[71] Position= (247.173,1218.17,-5512.58)
+Point[72] Position= (251.991,1243.37,-5625.83)
+Point[73] Position= (256.759,1268.42,-5738.34)
+Point[74] Position= (260.468,1287.89,-5825.78)
+Point[75] Position= (264.446,1308.73,-5919.32)
+Point[76] Position= (265.052,1311.91,-5933.55)
+Point[77] Position= (267.88,1326.71,-6000)
+
+TrackID =1685 : ParentID=1536 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 37.5839 31.3826 6.11743 keV
+Vertex : 0.265052 1.31191 -5.93355 m    Global time : 20.6152 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (265.052,1311.91,-5933.55)
+Point[1] Position= (265.124,1311.97,-5933.54)
+
+TrackID =1684 : ParentID=1536 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 8.21682 34.8276 6.7623 keV
+Vertex : 0.264446 1.30873 -5.91932 m    Global time : 20.5657 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (264.446,1308.73,-5919.32)
+Point[1] Position= (264.454,1308.77,-5919.31)
+
+TrackID =1683 : ParentID=1536 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 27.7081 -28.7035 -6.88359 keV
+Vertex : 0.260468 1.28789 -5.82578 m    Global time : 20.2406 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (260.468,1287.89,-5825.78)
+Point[1] Position= (260.502,1287.85,-5825.78)
+
+TrackID =1682 : ParentID=1536 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -8.87707 34.5363 5.98258 keV
+Vertex : 0.256759 1.26842 -5.73834 m    Global time : 19.9367 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (256.759,1268.42,-5738.34)
+Point[1] Position= (256.75,1268.45,-5738.33)
+
+TrackID =1681 : ParentID=1536 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -1.94192 36.2352 6.59651 keV
+Vertex : 0.251991 1.24337 -5.62583 m    Global time : 19.5458 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (251.991,1243.37,-5625.83)
+Point[1] Position= (251.989,1243.41,-5625.82)
+
+TrackID =1680 : ParentID=1536 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -27.2116 27.762 3.46451 keV
+Vertex : 0.247173 1.21817 -5.51258 m    Global time : 19.1522 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (247.173,1218.17,-5512.58)
+Point[1] Position= (247.143,1218.21,-5512.58)
+
+TrackID =1679 : ParentID=1536 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 68.8053 39.4334 5.33885 keV
+Vertex : 0.245895 1.21154 -5.48279 m    Global time : 19.0487 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (245.895,1211.54,-5482.79)
+Point[1] Position= (246.322,1211.79,-5482.76)
+Point[2] Position= (246.324,1211.82,-5482.75)
 
-TrackID =1459 : ParentID=1450 : TrackStatus=1
+TrackID =1678 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -62.7589 -101.79 8.71481 keV
-Vertex : -11.8661 3.65631 68.9992 cm   Global time : 2.33957 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-118.661,36.5631,689.992)
-Point[1] Position= (-119.545,35.1292,690.114)
-Point[2] Position= (-119.053,34.3326,690.605)
-Point[3] Position= (-118.98,34.3883,690.489)
+Original momentum : 36.9333 -8.30067 -1.71097 keV
+Vertex : 0.24295 1.19637 -5.41466 m    Global time : 18.8119 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (242.95,1196.37,-5414.66)
+Point[1] Position= (242.988,1196.37,-5414.66)
 
-TrackID =1458 : ParentID=1450 : TrackStatus=1
+TrackID =1677 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.2987 8.35631 -5.07658 keV
-Vertex : -11.792 3.63347 68.5683 cm   Global time : 2.32496 ns 
+Original momentum : 21.4447 -25.1353 -5.81545 keV
+Vertex : 0.234487 1.15287 -5.21921 m    Global time : 18.1327 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-117.92,36.3347,685.683)
-Point[1] Position= (-117.951,36.3423,685.679)
+Point[0] Position= (234.487,1152.87,-5219.21)
+Point[1] Position= (234.504,1152.85,-5219.22)
 
-TrackID =1457 : ParentID=1450 : TrackStatus=1
+TrackID =1676 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.6908 4.00217 9.03462 keV
-Vertex : -11.2215 3.45752 65.2503 cm   Global time : 2.21246 ns 
+Original momentum : 25.0187 -24.0567 -5.53091 keV
+Vertex : 0.233852 1.1496 -5.20451 m    Global time : 18.0816 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-112.215,34.5752,652.503)
-Point[1] Position= (-112.153,34.5809,652.516)
+Point[0] Position= (233.852,1149.6,-5204.51)
+Point[1] Position= (233.874,1149.58,-5204.52)
 
-TrackID =1456 : ParentID=1450 : TrackStatus=1
+TrackID =1675 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.7682 -23.1465 9.51313 keV
-Vertex : -9.05631 2.79022 52.6592 cm   Global time : 1.78553 ns 
+Original momentum : 17.0651 -31.5416 -7.62718 keV
+Vertex : 0.220151 1.07997 -4.89142 m    Global time : 16.9935 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-90.5631,27.9022,526.592)
-Point[1] Position= (-90.5082,27.8676,526.607)
+Point[0] Position= (220.151,1079.97,-4891.42)
+Point[1] Position= (220.167,1079.94,-4891.43)
 
-TrackID =1455 : ParentID=1450 : TrackStatus=1
+TrackID =1674 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.8524 -31.4015 0.308689 keV
-Vertex : -8.77889 2.70474 51.046 cm   Global time : 1.73083 ns 
+Original momentum : 42.6125 -3.24975 -0.69507 keV
+Vertex : 0.219649 1.07745 -4.88007 m    Global time : 16.9541 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-87.7889,27.0474,510.46)
-Point[1] Position= (-87.8017,27.0203,510.46)
+Point[0] Position= (219.649,1077.45,-4880.07)
+Point[1] Position= (219.707,1077.44,-4880.07)
 
-TrackID =1454 : ParentID=1450 : TrackStatus=1
+TrackID =1673 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -218.409 54.8561 7.78799 keV
-Vertex : -6.75722 2.08159 39.2894 cm   Global time : 1.3322 ns 
-  Current trajectory has 12 points.
-Point[0] Position= (-67.5722,20.8159,392.894)
-Point[1] Position= (-76.4734,23.0515,393.212)
-Point[2] Position= (-82.7331,18.7535,392.765)
-Point[3] Position= (-83.4835,18.2894,393.24)
-Point[4] Position= (-88.0575,17.186,395.315)
-Point[5] Position= (-90.3135,19.0984,398.042)
-Point[6] Position= (-90.2837,19.1425,398.102)
-Point[7] Position= (-89.5915,21.1976,400.096)
-Point[8] Position= (-90.4297,22.7926,400.83)
-Point[9] Position= (-90.4689,22.8958,400.966)
-Point[10] Position= (-90.4856,22.7183,401.547)
-Point[11] Position= (-90.4938,22.7,401.537)
+Original momentum : 46.8801 -96.0911 -31.8346 keV
+Vertex : 0.213882 1.04826 -4.74872 m    Global time : 16.4976 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (213.882,1048.26,-4748.72)
+Point[1] Position= (214.225,1047.55,-4748.95)
+Point[2] Position= (214.648,1046.81,-4749.3)
+Point[3] Position= (214.667,1046.83,-4749.13)
 
-TrackID =1556 : ParentID=1454 : TrackStatus=1
+TrackID =1687 : ParentID=1673 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.1645 52.5204 15.689 keV
-Vertex : -9.04689 2.28958 40.0966 cm   Global time : 1.64246 ns 
+Original momentum : 30.6064 10.4314 -4.85309 keV
+Vertex : 0.214648 1.04681 -4.7493 m    Global time : 16.5269 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-90.4689,22.8958,400.966)
-Point[1] Position= (-90.5343,23.0508,401.012)
+Point[0] Position= (214.648,1046.81,-4749.3)
+Point[1] Position= (214.671,1046.82,-4749.31)
 
-TrackID =1555 : ParentID=1454 : TrackStatus=1
+TrackID =1686 : ParentID=1673 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.1956 5.23966 5.12028 keV
-Vertex : -9.04297 2.27926 40.083 cm   Global time : 1.63954 ns 
+Original momentum : -37.2095 -13.949 -15.5022 keV
+Vertex : 0.214225 1.04755 -4.74895 m    Global time : 16.5103 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-90.4297,22.7926,400.83)
-Point[1] Position= (-90.4071,22.7964,400.834)
+Point[0] Position= (214.225,1047.55,-4748.95)
+Point[1] Position= (214.174,1047.53,-4748.97)
 
-TrackID =1554 : ParentID=1454 : TrackStatus=1
+TrackID =1672 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.3456 -7.72777 -3.69783 keV
-Vertex : -9.02837 1.91425 39.8102 cm   Global time : 1.5779 ns 
+Original momentum : -37.2139 16.959 0.426771 keV
+Vertex : 0.208617 1.02165 -4.62896 m    Global time : 16.0814 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-90.2837,19.1425,398.102)
-Point[1] Position= (-90.2528,19.1355,398.099)
+Point[0] Position= (208.617,1021.65,-4628.96)
+Point[1] Position= (208.571,1021.67,-4628.96)
 
-TrackID =1553 : ParentID=1454 : TrackStatus=1
+TrackID =1671 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.479 -21.9083 25.2642 keV
-Vertex : -8.34835 1.82894 39.324 cm   Global time : 1.48397 ns 
+Original momentum : -22.4531 -26.117 -8.06019 keV
+Vertex : 0.206042 1.00863 -4.57031 m    Global time : 15.8776 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-83.4835,18.2894,393.24)
-Point[1] Position= (-83.4669,18.2673,393.265)
+Point[0] Position= (206.042,1008.63,-4570.31)
+Point[1] Position= (206.022,1008.61,-4570.32)
 
-TrackID =1453 : ParentID=1450 : TrackStatus=1
+TrackID =1670 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.4099 -16.2147 6.62465 keV
-Vertex : -4.60977 1.41994 26.8054 cm   Global time : 908.896 ps 
+Original momentum : 42.2862 -1.46625 -0.282524 keV
+Vertex : 0.205554 1.00617 -4.55921 m    Global time : 15.8391 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-46.0977,14.1994,268.054)
-Point[1] Position= (-46.0772,14.1873,268.059)
+Point[0] Position= (205.554,1006.17,-4559.21)
+Point[1] Position= (205.61,1006.16,-4559.21)
 
-TrackID =1452 : ParentID=1450 : TrackStatus=1
+TrackID =1669 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -4.37631 35.2017 -1.36588 keV
-Vertex : -0.404392 0.12462 2.35221 cm   Global time : 79.7562 ps 
+Original momentum : 40.1217 26.5051 5.27366 keV
+Vertex : 0.205015 1.00346 -4.54702 m    Global time : 15.7967 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-4.04392,1.2462,23.5221)
-Point[1] Position= (-4.04788,1.27802,23.5209)
+Point[0] Position= (205.015,1003.46,-4547.02)
+Point[1] Position= (205.088,1003.51,-4547.01)
 
-TrackID =1451 : ParentID=1450 : TrackStatus=1
+TrackID =1668 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -42.8063 -51.358 -0.21185 keV
-Vertex : -1.0285 0.316804 5.98211 mm   Global time : 20.2835 ps 
-  Current trajectory has 3 points.
-Point[0] Position= (-1.0285,0.316804,5.98211)
-Point[1] Position= (-1.16835,0.149022,5.98142)
-Point[2] Position= (-1.16385,0.141154,6.03655)
+Original momentum : 36.4833 4.01578 1.13656 keV
+Vertex : 0.201869 0.987701 -4.47597 m    Global time : 15.5498 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (201.869,987.701,-4475.97)
+Point[1] Position= (201.905,987.705,-4475.97)
 
-TrackID =1557 : ParentID=1451 : TrackStatus=1
+TrackID =1667 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.9819 26.1936 1.75582 keV
-Vertex : -1.16835 0.149022 5.98142 mm   Global time : 25.8995 ps 
+Original momentum : -20.8442 25.9467 3.69114 keV
+Vertex : 0.200897 0.982843 -4.45407 m    Global time : 15.4737 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.16835,0.149022,5.98142)
-Point[1] Position= (-1.14472,0.173797,5.98308)
+Point[0] Position= (200.897,982.843,-4454.07)
+Point[1] Position= (200.881,982.864,-4454.07)
 
-TrackID =1449 : ParentID=1441 : TrackStatus=1
-Particle name : unknown : rho0  PDG code : 113  Charge : 0
-Original momentum : -0.369628 -0.184631 2.94569 GeV
-Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
+TrackID =1666 : ParentID=1536 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -28.1044 -36.8048 -11.7622 keV
+Vertex : 0.186078 0.909336 -4.12261 m    Global time : 14.3219 ns 
   Current trajectory has 2 points.
-Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
-Point[1] Position= (4.48899e-306,-2.82373e-306,1.005e-305)
+Point[0] Position= (186.078,909.336,-4122.61)
+Point[1] Position= (186.028,909.272,-4122.63)
 
-TrackID =1564 : ParentID=1559 : TrackStatus=1
+TrackID =1665 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 45.3064 -0.509824 22.6436 keV
-Vertex : -34.0717 -19.0857 77.5583 cm   Global time : 2.96479 ns 
+Original momentum : 18.1887 35.4644 7.02984 keV
+Vertex : 0.185179 0.904931 -4.10276 m    Global time : 14.2529 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-340.717,-190.857,775.583)
-Point[1] Position= (-340.657,-190.857,775.613)
+Point[0] Position= (185.179,904.931,-4102.76)
+Point[1] Position= (185.201,904.974,-4102.75)
 
-TrackID =1563 : ParentID=1559 : TrackStatus=1
+TrackID =1664 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.2161 -59.9024 -19.8806 keV
-Vertex : -31.4802 -17.6392 71.6593 cm   Global time : 2.73933 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-314.802,-176.392,716.593)
-Point[1] Position= (-314.859,-176.538,716.544)
+Original momentum : 134.15 15.4437 -8.85215 keV
+Vertex : 0.183431 0.896362 -4.06416 m    Global time : 14.1188 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (183.431,896.362,-4064.16)
+Point[1] Position= (185.485,896.598,-4064.29)
+Point[2] Position= (186.71,896.829,-4063.46)
+Point[3] Position= (186.459,896.683,-4064.11)
+Point[4] Position= (186.491,896.604,-4064.03)
 
-TrackID =1562 : ParentID=1559 : TrackStatus=1
+TrackID =1688 : ParentID=1664 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.6664 -28.856 12.6962 keV
-Vertex : -25.4651 -14.2755 57.983 cm   Global time : 2.21645 ns 
+Original momentum : 4.82456 34.4223 -16.3957 keV
+Vertex : 0.185485 0.896598 -4.06429 m    Global time : 14.1458 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-254.651,-142.755,579.83)
-Point[1] Position= (-254.602,-142.792,579.846)
+Point[0] Position= (185.485,896.598,-4064.29)
+Point[1] Position= (185.49,896.635,-4064.31)
 
-TrackID =1561 : ParentID=1559 : TrackStatus=1
+TrackID =1663 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.989 -20.3349 -13.0926 keV
-Vertex : -24.7373 -13.8687 56.3287 cm   Global time : 2.1532 ns 
+Original momentum : -23.646 -21.4059 -6.89865 keV
+Vertex : 0.168486 0.822663 -3.73247 m    Global time : 12.9661 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-247.373,-138.687,563.287)
-Point[1] Position= (-247.384,-138.698,563.28)
+Point[0] Position= (168.486,822.663,-3732.47)
+Point[1] Position= (168.468,822.647,-3732.48)
 
-TrackID =1560 : ParentID=1559 : TrackStatus=1
+TrackID =1662 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.33898 -43.9917 -7.12153 keV
-Vertex : -19.2079 -10.7725 43.7406 cm   Global time : 1.67201 ns 
+Original momentum : -31.3437 -30.5119 -10.2019 keV
+Vertex : 0.159868 0.77956 -3.53832 m    Global time : 12.2914 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-192.079,-107.725,437.406)
-Point[1] Position= (-192.075,-107.769,437.399)
-
-TrackID =1558 : ParentID=1449 : TrackStatus=1
-Particle name : pi+  PDG code : 211  Charge : 1
-Original momentum : -0.0545672 -0.0118644 1.86247 GeV
-Vertex : 4.48899e-294 -2.82373e-294 1.005e-293 fm   Global time : 6.98778e-305 ps 
-  Current trajectory has 47 points.
-Point[0] Position= (4.48899e-306,-2.82373e-306,1.005e-305)
-Point[1] Position= (-6.95555,-1.49744,237.561)
-Point[2] Position= (-8.09939,-1.73699,276.515)
-Point[3] Position= (-8.41438,-1.80297,287.24)
-Point[4] Position= (-9.45567,-2.02122,322.809)
-Point[5] Position= (-15.8261,-3.37751,540.653)
-Point[6] Position= (-21.4213,-4.56931,732.134)
-Point[7] Position= (-22.1409,-4.72002,756.758)
-Point[8] Position= (-35.2785,-7.54051,1207.78)
-Point[9] Position= (-36.0209,-7.70421,1233.34)
-Point[10] Position= (-39.5565,-8.47,1354.87)
-Point[11] Position= (-39.7224,-8.50542,1360.58)
-Point[12] Position= (-43.379,-9.2866,1484.93)
-Point[13] Position= (-48.1189,-10.29,1645.84)
-Point[14] Position= (-58.9631,-12.5497,2010.62)
-Point[15] Position= (-61.2973,-13.0205,2088.18)
-Point[16] Position= (-64.3846,-13.6478,2191.07)
-Point[17] Position= (-65.3358,-13.8412,2222.73)
-Point[18] Position= (-67.9445,-14.3726,2309.59)
-Point[19] Position= (-69.5386,-14.6958,2362.56)
-Point[20] Position= (-70.1288,-14.8155,2382.16)
-Point[21] Position= (-71.838,-15.1641,2438.82)
-Point[22] Position= (-71.8595,-15.1685,2439.53)
-Point[23] Position= (-73.864,-15.5796,2505.96)
-Point[24] Position= (-85.5412,-17.9201,2890.58)
-Point[25] Position= (-95.8254,-19.9756,3232.17)
-Point[26] Position= (-100.366,-20.8603,3382.68)
-Point[27] Position= (-100.825,-20.9485,3397.88)
-Point[28] Position= (-101.555,-21.0885,3422.07)
-Point[29] Position= (-104.048,-21.5656,3504.5)
-Point[30] Position= (-106.531,-22.047,3586.51)
-Point[31] Position= (-106.878,-22.1166,3597.98)
-Point[32] Position= (-109.359,-22.6127,3679.84)
-Point[33] Position= (-112.305,-23.2108,3776.54)
-Point[34] Position= (-120.325,-24.786,4037.99)
-Point[35] Position= (-122.935,-25.257,4121.93)
-Point[36] Position= (-127.065,-26.0041,4254.65)
-Point[37] Position= (-136.737,-27.7754,4564.13)
-Point[38] Position= (-149.338,-30.0431,4966.45)
-Point[39] Position= (-152.157,-30.5506,5056.86)
-Point[40] Position= (-152.555,-30.6219,5069.57)
-Point[41] Position= (-161.545,-32.257,5357.8)
-Point[42] Position= (-165.936,-33.0512,5498.86)
-Point[43] Position= (-176.306,-34.8986,5832.07)
-Point[44] Position= (-178.129,-35.2168,5890.56)
-Point[45] Position= (-178.933,-35.3557,5916.3)
-Point[46] Position= (-181.546,-35.807,6000)
-
-TrackID =1609 : ParentID=1558 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.6803 5.94399 2.13867 keV
-Vertex : -0.178933 -0.0353557 5.9163 m    Global time : 19.7994 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-178.933,-35.3557,5916.3)
-Point[1] Position= (-178.907,-35.3511,5916.3)
+Point[0] Position= (159.868,779.56,-3538.32)
+Point[1] Position= (159.821,779.514,-3538.34)
 
-TrackID =1608 : ParentID=1558 : TrackStatus=1
+TrackID =1661 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.4946 -26.4216 0.595402 keV
-Vertex : -0.178129 -0.0352168 5.89056 m    Global time : 19.7133 ns 
+Original momentum : -42.8088 -28.0114 -10.879 keV
+Vertex : 0.159374 0.777071 -3.5271 m    Global time : 12.2524 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-178.129,-35.2168,5890.56)
-Point[1] Position= (-178.175,-35.2527,5890.56)
+Point[0] Position= (159.374,777.071,-3527.1)
+Point[1] Position= (159.281,777.009,-3527.12)
 
-TrackID =1607 : ParentID=1558 : TrackStatus=1
+TrackID =1660 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.08 25.2721 1.93329 keV
-Vertex : -0.176306 -0.0348986 5.83207 m    Global time : 19.5175 ns 
+Original momentum : 43.5491 55.5644 9.10672 keV
+Vertex : 0.158107 0.770691 -3.49833 m    Global time : 12.1525 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-176.306,-34.8986,5832.07)
-Point[1] Position= (-176.288,-34.8783,5832.07)
+Point[0] Position= (158.107,770.691,-3498.33)
+Point[1] Position= (158.312,770.951,-3498.29)
 
-TrackID =1606 : ParentID=1558 : TrackStatus=1
+TrackID =1659 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.20008 31.5636 1.43159 keV
-Vertex : -0.165936 -0.0330512 5.49886 m    Global time : 18.4024 ns 
+Original momentum : 46.4483 -28.3298 -7.28978 keV
+Vertex : 0.157462 0.767453 -3.48373 m    Global time : 12.1017 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-165.936,-33.0512,5498.86)
-Point[1] Position= (-165.931,-33.0277,5498.86)
+Point[0] Position= (157.462,767.453,-3483.73)
+Point[1] Position= (157.576,767.383,-3483.74)
 
-TrackID =1605 : ParentID=1558 : TrackStatus=1
+TrackID =1658 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -54.1806 -71.9213 5.8312 keV
-Vertex : -0.161545 -0.032257 5.3578 m    Global time : 17.9303 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-161.545,-32.257,5357.8)
-Point[1] Position= (-161.767,-32.5517,5357.83)
-Point[2] Position= (-161.998,-32.7724,5357.86)
+Original momentum : 24.1734 -33.3879 -8.13588 keV
+Vertex : 0.154476 0.75245 -3.41603 m    Global time : 11.8665 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (154.476,752.45,-3416.03)
+Point[1] Position= (154.508,752.407,-3416.04)
 
-TrackID =1610 : ParentID=1605 : TrackStatus=1
+TrackID =1657 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.3351 -31.2882 -8.25934 keV
-Vertex : -0.161767 -0.0325517 5.35783 m    Global time : 17.9374 ns 
+Original momentum : 23.551 -39.265 -9.89644 keV
+Vertex : 0.15235 0.741727 -3.36767 m    Global time : 11.6985 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-161.767,-32.5517,5357.83)
-Point[1] Position= (-161.728,-32.595,5357.81)
+Point[0] Position= (152.35,741.727,-3367.67)
+Point[1] Position= (152.389,741.66,-3367.68)
 
-TrackID =1604 : ParentID=1558 : TrackStatus=1
+TrackID =1656 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -41.157 22.8376 1.01267 keV
-Vertex : -0.152555 -0.0306219 5.06957 m    Global time : 16.9657 ns 
+Original momentum : -29.8821 -39.9777 -12.8677 keV
+Vertex : 0.151259 0.736227 -3.34285 m    Global time : 11.6122 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-152.555,-30.6219,5069.57)
-Point[1] Position= (-152.625,-30.583,5069.58)
+Point[0] Position= (151.259,736.227,-3342.85)
+Point[1] Position= (151.196,736.143,-3342.88)
 
-TrackID =1603 : ParentID=1558 : TrackStatus=1
+TrackID =1655 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 91.2616 -27.9781 11.695 keV
-Vertex : -0.152157 -0.0305506 5.05686 m    Global time : 16.9231 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-152.157,-30.5506,5056.86)
-Point[1] Position= (-151.271,-30.8225,5056.97)
-Point[2] Position= (-151.532,-30.838,5057.1)
+Original momentum : -19.0244 -41.5041 -12.2879 keV
+Vertex : 0.148393 0.721742 -3.27742 m    Global time : 11.3849 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (148.393,721.742,-3277.42)
+Point[1] Position= (148.361,721.671,-3277.44)
 
-TrackID =1602 : ParentID=1558 : TrackStatus=1
+TrackID =1654 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.0595 -14.8253 0.0530721 keV
-Vertex : -0.149338 -0.0300431 4.96645 m    Global time : 16.6206 ns 
+Original momentum : -22.0574 36.4427 5.22487 keV
+Vertex : 0.147852 0.719009 -3.26507 m    Global time : 11.342 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-149.338,-30.0431,4966.45)
-Point[1] Position= (-149.36,-30.0543,4966.45)
+Point[0] Position= (147.852,719.009,-3265.07)
+Point[1] Position= (147.822,719.059,-3265.06)
 
-TrackID =1601 : ParentID=1558 : TrackStatus=1
+TrackID =1653 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.8282 -33.5926 0.679063 keV
-Vertex : -0.136737 -0.0277754 4.56413 m    Global time : 15.2741 ns 
+Original momentum : 22.9775 -24.5129 -5.59688 keV
+Vertex : 0.145397 0.706637 -3.2092 m    Global time : 11.1479 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-136.737,-27.7754,4564.13)
-Point[1] Position= (-136.749,-27.8066,4564.13)
+Point[0] Position= (145.397,706.637,-3209.2)
+Point[1] Position= (145.416,706.617,-3209.2)
 
-TrackID =1600 : ParentID=1558 : TrackStatus=1
+TrackID =1652 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.91 -31.2799 0.557438 keV
-Vertex : -0.127065 -0.0260041 4.25465 m    Global time : 14.2384 ns 
+Original momentum : 36.9857 -15.5367 -3.44587 keV
+Vertex : 0.144815 0.703729 -3.19606 m    Global time : 11.1022 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-127.065,-26.0041,4254.65)
-Point[1] Position= (-127.074,-26.0285,4254.65)
+Point[0] Position= (144.815,703.729,-3196.06)
+Point[1] Position= (144.859,703.71,-3196.07)
 
-TrackID =1599 : ParentID=1558 : TrackStatus=1
+TrackID =1651 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.9426 -34.6826 0.880456 keV
-Vertex : -0.122935 -0.025257 4.12193 m    Global time : 13.7942 ns 
+Original momentum : 29.4464 15.249 3.55414 keV
+Vertex : 0.144635 0.702833 -3.19202 m    Global time : 11.0882 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-122.935,-25.257,4121.93)
-Point[1] Position= (-122.977,-25.309,4121.93)
+Point[0] Position= (144.635,702.833,-3192.02)
+Point[1] Position= (144.658,702.845,-3192.02)
 
-TrackID =1598 : ParentID=1558 : TrackStatus=1
+TrackID =1650 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 77.3693 8.72807 8.43821 keV
-Vertex : -0.120325 -0.024786 4.03799 m    Global time : 13.5133 ns 
+Original momentum : -34.0332 -54.7241 -18.1871 keV
+Vertex : 0.141573 0.687595 -3.12319 m    Global time : 10.849 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-120.325,-24.786,4037.99)
-Point[1] Position= (-119.863,-24.7338,4038.04)
+Point[0] Position= (141.573,687.595,-3123.19)
+Point[1] Position= (141.436,687.375,-3123.26)
 
-TrackID =1597 : ParentID=1558 : TrackStatus=1
+TrackID =1649 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.2954 -5.13444 3.04447 keV
-Vertex : -0.112305 -0.0232108 3.77654 m    Global time : 12.6383 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-112.305,-23.2108,3776.54)
-Point[1] Position= (-112.247,-23.2178,3776.55)
+Original momentum : 186.417 87.9176 -14.0876 keV
+Vertex : 0.139504 0.677281 -3.0766 m    Global time : 10.6872 ns 
+  Current trajectory has 9 points.
+Point[0] Position= (139.504,677.281,-3076.6)
+Point[1] Position= (145.885,680.291,-3077.09)
+Point[2] Position= (149.367,684.314,-3074.82)
+Point[3] Position= (152.269,687.735,-3074.19)
+Point[4] Position= (153.664,688.003,-3074.03)
+Point[5] Position= (155.341,686.622,-3073.96)
+Point[6] Position= (156.325,686.073,-3074.89)
+Point[7] Position= (155.964,686.198,-3074.44)
+Point[8] Position= (155.866,686.26,-3074.33)
 
-TrackID =1596 : ParentID=1558 : TrackStatus=1
+TrackID =1690 : ParentID=1649 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.6567 -8.23912 1.96558 keV
-Vertex : -0.109359 -0.0226127 3.67984 m    Global time : 12.3147 ns 
+Original momentum : -13.5861 18.9803 -22.4157 keV
+Vertex : 0.155964 0.686198 -3.07444 m    Global time : 10.9299 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-109.359,-22.6127,3679.84)
-Point[1] Position= (-109.335,-22.6189,3679.84)
+Point[0] Position= (155.964,686.198,-3074.44)
+Point[1] Position= (155.954,686.212,-3074.45)
 
-TrackID =1595 : ParentID=1558 : TrackStatus=1
+TrackID =1689 : ParentID=1649 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.83384 86.3485 8.15415 keV
-Vertex : -0.106878 -0.0221166 3.59798 m    Global time : 12.0408 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-106.878,-22.1166,3597.98)
-Point[1] Position= (-106.817,-21.4438,3598.04)
-Point[2] Position= (-106.758,-21.5218,3598.11)
-
-TrackID =1594 : ParentID=1558 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 89.1246 305.367 104.851 keV
-Vertex : -0.106531 -0.022047 3.58651 m    Global time : 12.0024 ns 
-  Current trajectory has 20 points.
-Point[0] Position= (-106.531,-22.047,3586.51)
-Point[1] Position= (-104.837,-16.2435,3588.5)
-Point[2] Position= (-102.912,6.18283,3591.45)
-Point[3] Position= (-93.5616,23.9254,3600.57)
-Point[4] Position= (-98.1496,31.5136,3616.07)
-Point[5] Position= (-98.9768,33.3746,3616.28)
-Point[6] Position= (-101.551,37.3599,3615.5)
-Point[7] Position= (-102.507,37.7708,3615.12)
-Point[8] Position= (-113.261,42.4573,3613.13)
-Point[9] Position= (-118.637,50.206,3612.2)
-Point[10] Position= (-120.058,50.875,3612.8)
-Point[11] Position= (-123.467,55.116,3616.79)
-Point[12] Position= (-128.713,57.1665,3617.68)
-Point[13] Position= (-130.05,58.2464,3618.06)
-Point[14] Position= (-130.61,60.1559,3617.34)
-Point[15] Position= (-130.596,61.9929,3617.67)
-Point[16] Position= (-130.773,62.0043,3617.67)
-Point[17] Position= (-131.692,62.0209,3617.74)
-Point[18] Position= (-132.226,62.2875,3618.16)
-Point[19] Position= (-132.3,62.2329,3618.13)
-
-TrackID =1618 : ParentID=1594 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.20463 -29.8992 28.1598 keV
-Vertex : -0.131692 0.0620209 3.61774 m    Global time : 12.9008 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-131.692,62.0209,3617.74)
-Point[1] Position= (-131.683,61.9823,3617.78)
-
-TrackID =1617 : ParentID=1594 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.3659 3.11626 -17.4195 keV
-Vertex : -0.13061 0.0601559 3.61734 m    Global time : 12.8567 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-130.61,60.1559,3617.34)
-Point[1] Position= (-130.59,60.1582,3617.32)
-
-TrackID =1616 : ParentID=1594 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -71.8027 4.27109 63.199 keV
-Vertex : -0.13005 0.0582464 3.61806 m    Global time : 12.8301 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-130.05,58.2464,3618.06)
-Point[1] Position= (-130.699,58.285,3618.63)
-Point[2] Position= (-130.832,58.3142,3618.77)
+Original momentum : 40.7567 49.0774 7.71135 keV
+Vertex : 0.153664 0.688003 -3.07403 m    Global time : 10.8669 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (153.664,688.003,-3074.03)
+Point[1] Position= (153.812,688.181,-3074)
 
-TrackID =1619 : ParentID=1616 : TrackStatus=1
+TrackID =1648 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.532 27.8878 10.0024 keV
-Vertex : -0.130699 0.058285 3.61863 m    Global time : 12.8457 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-130.699,58.285,3618.63)
-Point[1] Position= (-130.686,58.3078,3618.64)
+Original momentum : 122.74 111.786 2.87647 keV
+Vertex : 0.137162 0.665647 -3.02408 m    Global time : 10.5047 ns 
+  Current trajectory has 7 points.
+Point[0] Position= (137.162,665.647,-3024.08)
+Point[1] Position= (139.979,668.213,-3024.02)
+Point[2] Position= (141.668,669.258,-3022.3)
+Point[3] Position= (141.927,669.976,-3021.07)
+Point[4] Position= (141.743,669.119,-3020.27)
+Point[5] Position= (141.462,668.5,-3019.68)
+Point[6] Position= (141.465,668.505,-3019.69)
 
-TrackID =1615 : ParentID=1594 : TrackStatus=1
+TrackID =1691 : ParentID=1648 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.8595 -5.19008 -20.4302 keV
-Vertex : -0.120058 0.050875 3.6128 m    Global time : 12.6969 ns 
+Original momentum : -32.3402 19.3911 13.5145 keV
+Vertex : 0.141927 0.669976 -3.02107 m    Global time : 10.5986 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-120.058,50.875,3612.8)
-Point[1] Position= (-120.089,50.8698,3612.78)
+Point[0] Position= (141.927,669.976,-3021.07)
+Point[1] Position= (141.889,669.999,-3021.06)
 
-TrackID =1614 : ParentID=1594 : TrackStatus=1
+TrackID =1647 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.52659 37.0229 14.8741 keV
-Vertex : -0.101551 0.0373599 3.6155 m    Global time : 12.5042 ns 
+Original momentum : -41.929 -25.9009 -10.2072 keV
+Vertex : 0.135242 0.656176 -2.98138 m    Global time : 10.3563 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-101.551,37.3599,3615.5)
-Point[1] Position= (-101.539,37.406,3615.52)
+Point[0] Position= (135.242,656.176,-2981.38)
+Point[1] Position= (135.158,656.125,-2981.4)
 
-TrackID =1613 : ParentID=1594 : TrackStatus=1
+TrackID =1646 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.4946 -7.84877 25.931 keV
-Vertex : -0.0989768 0.0333746 3.61628 m    Global time : 12.4682 ns 
+Original momentum : -29.9715 18.7638 1.54299 keV
+Vertex : 0.133411 0.647147 -2.94067 m    Global time : 10.2148 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-98.9768,33.3746,3616.28)
-Point[1] Position= (-98.9937,33.3682,3616.3)
+Point[0] Position= (133.411,647.147,-2940.67)
+Point[1] Position= (133.384,647.164,-2940.67)
 
-TrackID =1612 : ParentID=1594 : TrackStatus=1
+TrackID =1645 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.6349 2.75911 -31.5616 keV
-Vertex : -0.102912 0.00618283 3.59145 m    Global time : 12.1833 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-102.912,6.18283,3591.45)
-Point[1] Position= (-102.878,6.18634,3591.41)
+Original momentum : 77.3105 -125.635 -48.4056 keV
+Vertex : 0.127442 0.617701 -2.80798 m    Global time : 9.75372 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (127.442,617.701,-2807.98)
+Point[1] Position= (129.033,615.116,-2808.97)
+Point[2] Position= (130.636,613.052,-2809.33)
+Point[3] Position= (131.394,613.759,-2810.74)
+Point[4] Position= (131.846,614.552,-2810.53)
+Point[5] Position= (131.898,614.51,-2810.51)
 
-TrackID =1611 : ParentID=1594 : TrackStatus=1
+TrackID =1644 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -49.5776 -0.0860933 42.1689 keV
-Vertex : -0.104837 -0.0162435 3.5885 m    Global time : 12.0411 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-104.837,-16.2435,3588.5)
-Point[1] Position= (-105.022,-16.2438,3588.66)
+Original momentum : -126.23 82.267 -10.1825 keV
+Vertex : 0.117953 0.570964 -2.597 m    Global time : 9.02066 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (117.953,570.964,-2597)
+Point[1] Position= (115.709,572.425,-2597.19)
+Point[2] Position= (115.168,573.964,-2596.11)
+Point[3] Position= (114.184,574.905,-2596.37)
+Point[4] Position= (113.941,574.797,-2596.75)
 
-TrackID =1593 : ParentID=1558 : TrackStatus=1
+TrackID =1692 : ParentID=1644 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.2725 32.5818 0.996976 keV
-Vertex : -0.104048 -0.0215656 3.5045 m    Global time : 11.7279 ns 
+Original momentum : -31.9628 3.27782 -20.3785 keV
+Vertex : 0.115709 0.572425 -2.59719 m    Global time : 9.05224 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-104.048,-21.5656,3504.5)
-Point[1] Position= (-104.061,-21.536,3504.5)
+Point[0] Position= (115.709,572.425,-2597.19)
+Point[1] Position= (115.676,572.429,-2597.21)
 
-TrackID =1592 : ParentID=1558 : TrackStatus=1
+TrackID =1643 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -17.6884 -56.1891 2.54192 keV
-Vertex : -0.101555 -0.0210885 3.42207 m    Global time : 11.4521 ns 
+Original momentum : 32.5733 1.22098 0.645255 keV
+Vertex : 0.116057 0.561571 -2.5546 m    Global time : 8.8733 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-101.555,-21.0885,3422.07)
-Point[1] Position= (-101.607,-21.2531,3422.07)
+Point[0] Position= (116.057,561.571,-2554.6)
+Point[1] Position= (116.082,561.572,-2554.6)
 
-TrackID =1591 : ParentID=1558 : TrackStatus=1
+TrackID =1642 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.11608 -31.4418 1.09817 keV
-Vertex : -0.100825 -0.0209485 3.39788 m    Global time : 11.3711 ns 
+Original momentum : 7.67402 64.6 10.25 keV
+Vertex : 0.115459 0.558618 -2.54126 m    Global time : 8.82696 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-100.825,-20.9485,3397.88)
-Point[1] Position= (-100.819,-20.9719,3397.88)
+Point[0] Position= (115.459,558.618,-2541.26)
+Point[1] Position= (115.489,558.867,-2541.22)
 
-TrackID =1590 : ParentID=1558 : TrackStatus=1
+TrackID =1641 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -60.6208 32.2331 2.97193 keV
-Vertex : -0.100366 -0.0208603 3.38268 m    Global time : 11.3202 ns 
+Original momentum : -25.0297 20.136 2.28236 keV
+Vertex : 0.115406 0.558355 -2.54007 m    Global time : 8.82284 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-100.366,-20.8603,3382.68)
-Point[1] Position= (-100.626,-20.722,3382.69)
+Point[0] Position= (115.406,558.355,-2540.07)
+Point[1] Position= (115.388,558.37,-2540.07)
 
-TrackID =1589 : ParentID=1558 : TrackStatus=1
+TrackID =1640 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.2716 7.81598 0.12497 keV
-Vertex : -0.0958254 -0.0199756 3.23217 m    Global time : 10.8165 ns 
+Original momentum : 24.9442 36.594 7.17486 keV
+Vertex : 0.110307 0.533169 -2.42637 m    Global time : 8.42776 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-95.8254,-19.9756,3232.17)
-Point[1] Position= (-95.8483,-19.9698,3232.17)
+Point[0] Position= (110.307,533.169,-2426.37)
+Point[1] Position= (110.345,533.225,-2426.36)
 
-TrackID =1588 : ParentID=1558 : TrackStatus=1
+TrackID =1639 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -65.4057 5.73447 2.28104 keV
-Vertex : -0.0855412 -0.0179201 2.89058 m    Global time : 9.67339 ns 
+Original momentum : -12.6758 -36.1381 -10.1668 keV
+Vertex : 0.109995 0.531632 -2.41943 m    Global time : 8.40365 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-85.5412,-17.9201,2890.58)
-Point[1] Position= (-85.7918,-17.8982,2890.59)
+Point[0] Position= (109.995,531.632,-2419.43)
+Point[1] Position= (109.981,531.591,-2419.44)
 
-TrackID =1587 : ParentID=1558 : TrackStatus=1
+TrackID =1638 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 47.9904 85.4279 11.4461 keV
-Vertex : -0.073864 -0.0155796 2.50596 m    Global time : 8.38624 ns 
+Original momentum : 84.8086 -13.2885 -6.64274 keV
+Vertex : 0.104639 0.5052 -2.29992 m    Global time : 7.98842 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-73.864,-15.5796,2505.96)
-Point[1] Position= (-73.3734,-14.7063,2506.08)
-Point[2] Position= (-73.6693,-14.5784,2505.91)
+Point[0] Position= (104.639,505.2,-2299.92)
+Point[1] Position= (105.282,505.099,-2299.97)
+Point[2] Position= (105.246,505.063,-2299.91)
 
-TrackID =1586 : ParentID=1558 : TrackStatus=1
+TrackID =1637 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.1629 -47.9846 3.11658 keV
-Vertex : -0.0718595 -0.0151685 2.43953 m    Global time : 8.1639 ns 
+Original momentum : -55.9703 -9.09064 -7.84339 keV
+Vertex : 0.0967457 0.466337 -2.12411 m    Global time : 7.37761 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-71.8595,-15.1685,2439.53)
-Point[1] Position= (-71.8095,-15.2766,2439.53)
+Point[0] Position= (96.7457,466.337,-2124.11)
+Point[1] Position= (96.5931,466.313,-2124.13)
 
-TrackID =1585 : ParentID=1558 : TrackStatus=1
+TrackID =1636 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.2414 14.2011 0.658626 keV
-Vertex : -0.071838 -0.0151641 2.43882 m    Global time : 8.16153 ns 
+Original momentum : -26.4242 -54.0867 -17.1118 keV
+Vertex : 0.0922458 0.444147 -2.0237 m    Global time : 7.02875 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-71.838,-15.1641,2438.82)
-Point[1] Position= (-71.8928,-15.1448,2438.82)
-
-TrackID =1584 : ParentID=1558 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 56.3345 122.825 20.4687 keV
-Vertex : -0.0701288 -0.0148155 2.38216 m    Global time : 7.97193 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (-70.1288,-14.8155,2382.16)
-Point[1] Position= (-69.1719,-12.7292,2382.51)
-Point[2] Position= (-70.2664,-12.4305,2383.5)
-Point[3] Position= (-70.4055,-12.9943,2383.65)
-Point[4] Position= (-70.4367,-13.087,2383.7)
+Point[0] Position= (92.2458,444.147,-2023.7)
+Point[1] Position= (92.1561,443.964,-2023.75)
 
-TrackID =1583 : ParentID=1558 : TrackStatus=1
+TrackID =1635 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.5111 -17.2078 1.9316 keV
-Vertex : -0.0695386 -0.0146958 2.36256 m    Global time : 7.90634 ns 
+Original momentum : -41.574 25.0138 1.26557 keV
+Vertex : 0.0903326 0.434708 -1.98099 m    Global time : 6.88037 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-69.5386,-14.6958,2362.56)
-Point[1] Position= (-69.514,-14.7102,2362.56)
+Point[0] Position= (90.3326,434.708,-1980.99)
+Point[1] Position= (90.2565,434.754,-1980.99)
 
-TrackID =1582 : ParentID=1558 : TrackStatus=1
+TrackID =1634 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 111.644 17.7875 16.1099 keV
-Vertex : -0.0679445 -0.0143726 2.30959 m    Global time : 7.72906 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-67.9445,-14.3726,2309.59)
-Point[1] Position= (-66.4813,-14.1395,2309.8)
-Point[2] Position= (-66.146,-14.035,2309.83)
-Point[3] Position= (-65.9877,-13.9306,2309.71)
+Original momentum : -73.0306 -307.941 -197.953 keV
+Vertex : 0.0810374 0.388931 -1.77367 m    Global time : 6.16012 ns 
+  Current trajectory has 21 points.
+Point[0] Position= (81.0374,388.931,-1773.67)
+Point[1] Position= (72.5712,375.16,-1784.26)
+Point[2] Position= (71.5442,367.776,-1789.45)
+Point[3] Position= (80.7232,347.917,-1786.84)
+Point[4] Position= (75.2804,326.856,-1768.52)
+Point[5] Position= (76.5265,311.769,-1747.55)
+Point[6] Position= (68.3248,297.879,-1735.04)
+Point[7] Position= (62.4339,286.183,-1733.67)
+Point[8] Position= (60.866,282.583,-1732.47)
+Point[9] Position= (60.8914,282.025,-1732.51)
+Point[10] Position= (56.7007,273.087,-1729.82)
+Point[11] Position= (54.5101,265.913,-1726.75)
+Point[12] Position= (58.0611,263.364,-1731.96)
+Point[13] Position= (62.042,259.57,-1732.58)
+Point[14] Position= (60.6924,261.914,-1735.81)
+Point[15] Position= (59.0532,264.122,-1737.12)
+Point[16] Position= (58.1499,265.923,-1735.82)
+Point[17] Position= (56.6155,266.586,-1735.34)
+Point[18] Position= (57.2197,267.474,-1734.9)
+Point[19] Position= (57.2439,267.377,-1734.91)
+Point[20] Position= (57.2521,267.229,-1734.86)
 
-TrackID =1620 : ParentID=1582 : TrackStatus=1
+TrackID =1701 : ParentID=1634 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.9616 3.5117 49.7205 keV
-Vertex : -0.066146 -0.014035 2.30983 m    Global time : 7.75849 ns 
+Original momentum : 13.2022 -11.1965 -31.9123 keV
+Vertex : 0.0572439 0.267377 -1.73491 m    Global time : 7.44757 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-66.146,-14.035,2309.83)
-Point[1] Position= (-66.0293,-14.0236,2309.99)
+Point[0] Position= (57.2439,267.377,-1734.91)
+Point[1] Position= (57.2564,267.366,-1734.94)
 
-TrackID =1581 : ParentID=1558 : TrackStatus=1
+TrackID =1700 : ParentID=1634 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.0609 29.6946 2.50029 keV
-Vertex : -0.0653358 -0.0138412 2.22273 m    Global time : 7.43838 ns 
+Original momentum : -18.7652 -0.507836 27.0704 keV
+Vertex : 0.0566155 0.266586 -1.73534 m    Global time : 7.42556 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-65.3358,-13.8412,2222.73)
-Point[1] Position= (-65.3058,-13.807,2222.73)
+Point[0] Position= (56.6155,266.586,-1735.34)
+Point[1] Position= (56.6011,266.586,-1735.32)
 
-TrackID =1580 : ParentID=1558 : TrackStatus=1
+TrackID =1699 : ParentID=1634 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.2896 -53.2161 4.44986 keV
-Vertex : -0.0643846 -0.0136478 2.19107 m    Global time : 7.33244 ns 
+Original momentum : 37.3295 -33.4408 -49.0738 keV
+Vertex : 0.0608914 0.282025 -1.73251 m    Global time : 7.02536 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-64.3846,-13.6478,2191.07)
-Point[1] Position= (-64.2757,-13.8272,2191.09)
+Point[0] Position= (60.8914,282.025,-1732.51)
+Point[1] Position= (61.06,281.874,-1732.73)
 
-TrackID =1579 : ParentID=1558 : TrackStatus=1
+TrackID =1698 : ParentID=1634 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.5103 -21.9866 0.23474 keV
-Vertex : -0.0612973 -0.0130205 2.08818 m    Global time : 6.98811 ns 
+Original momentum : -29.3662 -4.49858 44.1752 keV
+Vertex : 0.060866 0.282583 -1.73247 m    Global time : 7.02105 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-61.2973,-13.0205,2088.18)
-Point[1] Position= (-61.3198,-13.0391,2088.18)
+Point[0] Position= (60.866,282.583,-1732.47)
+Point[1] Position= (60.7989,282.573,-1732.37)
 
-TrackID =1578 : ParentID=1558 : TrackStatus=1
+TrackID =1697 : ParentID=1634 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.0141 30.4717 2.09624 keV
-Vertex : -0.0589631 -0.0125497 2.01062 m    Global time : 6.72854 ns 
+Original momentum : 10.3227 -17.5599 -37.9989 keV
+Vertex : 0.0624339 0.286183 -1.73367 m    Global time : 6.99062 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-58.9631,-12.5497,2010.62)
-Point[1] Position= (-58.9438,-12.5203,2010.62)
+Point[0] Position= (62.4339,286.183,-1733.67)
+Point[1] Position= (62.4483,286.159,-1733.72)
 
-TrackID =1577 : ParentID=1558 : TrackStatus=1
+TrackID =1696 : ParentID=1634 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.7661 -28.4164 0.391537 keV
-Vertex : -0.0481189 -0.01029 1.64584 m    Global time : 5.50779 ns 
+Original momentum : 2.64716 31.3615 22.9242 keV
+Vertex : 0.0752804 0.326856 -1.76852 m    Global time : 6.59542 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-48.1189,-10.29,1645.84)
-Point[1] Position= (-48.1296,-10.3105,1645.84)
+Point[0] Position= (75.2804,326.856,-1768.52)
+Point[1] Position= (75.2833,326.89,-1768.49)
 
-TrackID =1576 : ParentID=1558 : TrackStatus=1
+TrackID =1695 : ParentID=1634 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -49.1876 17.0133 1.31216 keV
-Vertex : -0.043379 -0.0092866 1.48493 m    Global time : 4.96929 ns 
+Original momentum : 27.6426 21.9802 26.7153 keV
+Vertex : 0.0807232 0.347917 -1.78684 m    Global time : 6.44031 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-43.379,-9.2866,1484.93)
-Point[1] Position= (-43.4855,-9.24979,1484.93)
+Point[0] Position= (80.7232,347.917,-1786.84)
+Point[1] Position= (80.7641,347.95,-1786.8)
 
-TrackID =1575 : ParentID=1558 : TrackStatus=1
+TrackID =1694 : ParentID=1634 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 68.2254 39.4922 8.36482 keV
-Vertex : -0.0397224 -0.00850542 1.36058 m    Global time : 4.55314 ns 
+Original momentum : -15.0401 7.29618 28.2221 keV
+Vertex : 0.0715442 0.367776 -1.78945 m    Global time : 6.31792 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-39.7224,-8.50542,1360.58)
-Point[1] Position= (-39.3021,-8.26212,1360.63)
+Point[0] Position= (71.5442,367.776,-1789.45)
+Point[1] Position= (71.5327,367.782,-1789.43)
 
-TrackID =1574 : ParentID=1558 : TrackStatus=1
+TrackID =1693 : ParentID=1634 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 54.0217 -63.712 8.04101 keV
-Vertex : -0.0395565 -0.00847 1.35487 m    Global time : 4.53406 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-39.5565,-8.47,1354.87)
-Point[1] Position= (-39.4915,-8.5466,1354.88)
-Point[2] Position= (-39.2877,-8.8115,1355.06)
-Point[3] Position= (-39.2998,-8.85609,1355.06)
+Original momentum : -6.26021 -22.6486 26.0413 keV
+Vertex : 0.0725712 0.37516 -1.78426 m    Global time : 6.26548 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (72.5712,375.16,-1784.26)
+Point[1] Position= (72.5657,375.14,-1784.23)
 
-TrackID =1622 : ParentID=1574 : TrackStatus=1
+TrackID =1633 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.0657 -4.74132 -25.3992 keV
-Vertex : -0.0392877 -0.0088115 1.35506 m    Global time : 4.54489 ns 
+Original momentum : 38.8569 -28.8518 -7.03502 keV
+Vertex : 0.0809336 0.388422 -1.77135 m    Global time : 6.15207 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-39.2877,-8.8115,1355.06)
-Point[1] Position= (-39.2679,-8.81556,1355.04)
+Point[0] Position= (80.9336,388.422,-1771.35)
+Point[1] Position= (81.0059,388.368,-1771.36)
 
-TrackID =1621 : ParentID=1574 : TrackStatus=1
+TrackID =1632 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.2422 -8.74003 -28.8125 keV
-Vertex : -0.0394915 -0.0085466 1.35488 m    Global time : 4.53614 ns 
+Original momentum : 37.8932 -8.95517 -1.79752 keV
+Vertex : 0.0685735 0.328143 -1.49735 m    Global time : 5.2003 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-39.4915,-8.5466,1354.88)
-Point[1] Position= (-39.4803,-8.55348,1354.86)
+Point[0] Position= (68.5735,328.143,-1497.35)
+Point[1] Position= (68.6156,328.133,-1497.35)
 
-TrackID =1573 : ParentID=1558 : TrackStatus=1
+TrackID =1631 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.599 -38.687 1.00643 keV
-Vertex : -0.0360209 -0.00770421 1.23334 m    Global time : 4.12734 ns 
+Original momentum : -39.722 -29.5597 -10.8832 keV
+Vertex : 0.0609832 0.291248 -1.32925 m    Global time : 4.61647 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-36.0209,-7.70421,1233.34)
-Point[1] Position= (-36.0379,-7.75236,1233.34)
+Point[0] Position= (60.9832,291.248,-1329.25)
+Point[1] Position= (60.9026,291.188,-1329.27)
 
-TrackID =1572 : ParentID=1558 : TrackStatus=1
+TrackID =1630 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.8314 4.35804 0.225071 keV
-Vertex : -0.0352785 -0.00754051 1.20778 m    Global time : 4.04182 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-35.2785,-7.54051,1207.78)
-Point[1] Position= (-35.3092,-7.53667,1207.78)
+Original momentum : 24.6763 -58.0711 -15.9063 keV
+Vertex : 0.0589611 0.281425 -1.28442 m    Global time : 4.4608 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (58.9611,281.425,-1284.42)
+Point[1] Position= (59.0334,281.255,-1284.47)
+Point[2] Position= (58.9706,281.139,-1284.49)
 
-TrackID =1571 : ParentID=1558 : TrackStatus=1
+TrackID =1629 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.9643 11.1948 0.329861 keV
-Vertex : -2.21409 -0.472002 75.6758 cm   Global time : 2.53248 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-22.1409,-4.72002,756.758)
-Point[1] Position= (-22.1721,-4.70974,756.758)
+Original momentum : -2.37166 125.438 11.4579 keV
+Vertex : 0.0580971 0.277228 -1.26526 m    Global time : 4.39425 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (58.0971,277.228,-1265.26)
+Point[1] Position= (58.0878,277.721,-1265.22)
+Point[2] Position= (58.361,279.196,-1265.77)
+Point[3] Position= (58.7836,278.864,-1266.2)
+Point[4] Position= (58.837,278.738,-1266.45)
 
-TrackID =1570 : ParentID=1558 : TrackStatus=1
+TrackID =1703 : ParentID=1629 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.2908 10.7371 2.53636 keV
-Vertex : -2.14213 -0.456931 73.2134 cm   Global time : 2.45008 ns 
+Original momentum : -19.6906 -33.0584 12.3276 keV
+Vertex : 0.0587836 0.278864 -1.2662 m    Global time : 4.43771 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-21.4213,-4.56931,732.134)
-Point[1] Position= (-21.3834,-4.55808,732.136)
+Point[0] Position= (58.7836,278.864,-1266.2)
+Point[1] Position= (58.7599,278.824,-1266.19)
 
-TrackID =1569 : ParentID=1558 : TrackStatus=1
+TrackID =1702 : ParentID=1629 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.5545 21.7934 0.474057 keV
-Vertex : -1.58261 -0.337751 54.0653 cm   Global time : 1.80929 ns 
+Original momentum : -30.2285 9.6141 10.4494 keV
+Vertex : 0.0580878 0.277721 -1.26522 m    Global time : 4.40116 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-15.8261,-3.37751,540.653)
-Point[1] Position= (-15.8449,-3.36087,540.654)
+Point[0] Position= (58.0878,277.721,-1265.22)
+Point[1] Position= (58.0638,277.729,-1265.21)
 
-TrackID =1568 : ParentID=1558 : TrackStatus=1
+TrackID =1628 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 45.8403 -5.24998 3.4049 keV
-Vertex : -0.945567 -0.202122 32.2809 cm   Global time : 1.08028 ns 
+Original momentum : 49.1389 -23.2423 -5.92169 keV
+Vertex : 0.0544786 0.259617 -1.18495 m    Global time : 4.11534 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-9.45567,-2.02122,322.809)
-Point[1] Position= (-9.38072,-2.02981,322.814)
+Point[0] Position= (54.4786,259.617,-1184.95)
+Point[1] Position= (54.5984,259.561,-1184.97)
 
-TrackID =1567 : ParentID=1558 : TrackStatus=1
+TrackID =1627 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -49.7104 27.0438 1.84418 keV
-Vertex : -0.841438 -0.180297 28.724 cm   Global time : 961.248 ps 
-  Current trajectory has 2 points.
-Point[0] Position= (-8.41438,-1.80297,287.24)
-Point[1] Position= (-8.54628,-1.73121,287.245)
+Original momentum : 93.7993 -62.2316 -22.6864 keV
+Vertex : 0.0529618 0.252232 -1.15128 m    Global time : 3.99839 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (52.9618,252.232,-1151.28)
+Point[1] Position= (54.0634,251.501,-1151.55)
+Point[2] Position= (53.9092,251.912,-1151.72)
 
-TrackID =1566 : ParentID=1558 : TrackStatus=1
+TrackID =1704 : ParentID=1627 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.3495 -2.66191 0.138493 keV
-Vertex : -0.809939 -0.173699 27.6515 cm   Global time : 925.355 ps 
+Original momentum : 46.4756 17.937 0.638534 keV
+Vertex : 0.0540634 0.251501 -1.15155 m    Global time : 4.0189 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-8.09939,-1.73699,276.515)
-Point[1] Position= (-8.12848,-1.73924,276.515)
+Point[0] Position= (54.0634,251.501,-1151.55)
+Point[1] Position= (54.1538,251.536,-1151.55)
 
-TrackID =1565 : ParentID=1558 : TrackStatus=1
+TrackID =1626 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.3971 32.3611 3.21349 keV
-Vertex : -0.695555 -0.149744 23.7561 cm   Global time : 794.996 ps 
-  Current trajectory has 2 points.
-Point[0] Position= (-6.95555,-1.49744,237.561)
-Point[1] Position= (-6.90353,-1.44549,237.566)
+Original momentum : -88.8164 -58.5794 -29.0976 keV
+Vertex : 0.0514209 0.244767 -1.11721 m    Global time : 3.88006 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (51.4209,244.767,-1117.21)
+Point[1] Position= (50.3761,244.077,-1117.55)
+Point[2] Position= (49.9231,244.232,-1117.69)
+Point[3] Position= (49.876,244.279,-1117.78)
 
-TrackID =1630 : ParentID=1448 : TrackStatus=1
+TrackID =1706 : ParentID=1626 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.5922 30.4832 -13.8234 keV
-Vertex : -21.6649 43.9636 71.0609 cm   Global time : 2.91582 ns 
+Original momentum : -21.7861 -27.3341 -2.672 keV
+Vertex : 0.0499231 0.244232 -1.11769 m    Global time : 3.91067 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-216.649,439.636,710.609)
-Point[1] Position= (-216.641,439.656,710.6)
+Point[0] Position= (49.9231,244.232,-1117.69)
+Point[1] Position= (49.904,244.208,-1117.69)
 
-TrackID =1629 : ParentID=1448 : TrackStatus=1
+TrackID =1705 : ParentID=1626 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.1588 9.81337 -14.8801 keV
-Vertex : -20.0399 40.6549 65.7108 cm   Global time : 2.69637 ns 
+Original momentum : 12.9411 2.12878 -40.9829 keV
+Vertex : 0.0503761 0.244077 -1.11755 m    Global time : 3.90057 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-200.399,406.549,657.108)
-Point[1] Position= (-200.427,406.557,657.096)
+Point[0] Position= (50.3761,244.077,-1117.55)
+Point[1] Position= (50.394,244.08,-1117.61)
 
-TrackID =1628 : ParentID=1448 : TrackStatus=1
+TrackID =1625 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.677 -14.7529 0.0749024 keV
-Vertex : -18.7602 38.0499 61.4979 cm   Global time : 2.52357 ns 
+Original momentum : 48.6841 -5.35832 -1.41494 keV
+Vertex : 0.0508638 0.242062 -1.10486 m    Global time : 3.83717 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-187.602,380.499,614.979)
-Point[1] Position= (-187.63,380.488,614.979)
+Point[0] Position= (50.8638,242.062,-1104.86)
+Point[1] Position= (50.9549,242.052,-1104.86)
 
-TrackID =1627 : ParentID=1448 : TrackStatus=1
+TrackID =1624 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.0565 27.8773 -24.7557 keV
-Vertex : -13.7872 27.9453 45.1415 cm   Global time : 1.85279 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-137.872,279.453,451.415)
-Point[1] Position= (-137.92,279.491,451.382)
+Original momentum : 52.6128 17.476 3.07212 keV
+Vertex : 0.0487568 0.231832 -1.05817 m    Global time : 3.67502 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (48.7568,231.832,-1058.17)
+Point[1] Position= (48.8774,231.872,-1058.16)
+Point[2] Position= (48.9159,231.866,-1058.21)
 
-TrackID =1626 : ParentID=1448 : TrackStatus=1
+TrackID =1623 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.3962 38.0813 -14.4776 keV
-Vertex : -13.0004 26.3491 42.5585 cm   Global time : 1.74683 ns 
+Original momentum : -16.5253 -29.7935 -8.52802 keV
+Vertex : 4.53335 21.523 -98.2383 cm   Global time : 3.41183 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-130.004,263.491,425.585)
-Point[1] Position= (-129.981,263.532,425.569)
+Point[0] Position= (45.3335,215.23,-982.383)
+Point[1] Position= (45.3229,215.21,-982.388)
 
-TrackID =1625 : ParentID=1448 : TrackStatus=1
+TrackID =1622 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.4804 -40.1558 35.4111 keV
-Vertex : -8.0349 16.2875 26.296 cm   Global time : 1.07947 ns 
+Original momentum : -23.1717 -27.9397 -8.57411 keV
+Vertex : 4.21142 19.9621 -91.1063 cm   Global time : 3.16415 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-80.349,162.875,262.96)
-Point[1] Position= (-80.2893,162.763,263.058)
+Point[0] Position= (42.1142,199.621,-911.063)
+Point[1] Position= (42.0973,199.601,-911.069)
 
-TrackID =1624 : ParentID=1448 : TrackStatus=1
+TrackID =1621 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -33.5912 20.0002 -20.3088 keV
-Vertex : -4.99634 10.1295 16.347 cm   Global time : 671.143 ps 
+Original momentum : 54.5486 -5.32409 -1.7531 keV
+Vertex : 4.21101 19.9601 -91.0973 cm   Global time : 3.16384 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-49.9634,101.295,163.47)
-Point[1] Position= (-50.0125,101.325,163.44)
+Point[0] Position= (42.1101,199.601,-910.973)
+Point[1] Position= (42.1957,199.593,-910.975)
 
-TrackID =1623 : ParentID=1448 : TrackStatus=1
+TrackID =1620 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.3865 -25.5936 21.1522 keV
-Vertex : -4.1152 8.3429 13.4625 cm   Global time : 552.736 ps 
+Original momentum : 47.3537 -25.2209 -6.33445 keV
+Vertex : 4.18051 19.8127 -90.4234 cm   Global time : 3.14044 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-41.152,83.429,134.625)
-Point[1] Position= (-41.1409,83.406,134.644)
+Point[0] Position= (41.8051,198.127,-904.234)
+Point[1] Position= (41.8771,198.089,-904.243)
 
-TrackID =1447 : ParentID=1441 : TrackStatus=1
-Particle name : unknown : k_star0  PDG code : 313  Charge : 0
-Original momentum : -0.158116 -0.111163 4.79506 GeV
-Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
+TrackID =1619 : ParentID=1536 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -19.0645 -43.9813 -12.973 keV
+Vertex : 3.80047 17.9927 -82.0854 cm   Global time : 2.85092 ns 
   Current trajectory has 2 points.
-Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
-Point[1] Position= (5.09812e-306,-2.5642e-306,1.01093e-305)
+Point[0] Position= (38.0047,179.927,-820.854)
+Point[1] Position= (37.9679,179.842,-820.879)
 
-TrackID =1632 : ParentID=1447 : TrackStatus=1
-Particle name : kaon0  PDG code : 311  Charge : 0
-Original momentum : -0.0678145 0.0127689 3.7761 GeV
-Vertex : 5.09812e-294 -2.5642e-294 1.01093e-293 fm   Global time : 6.99567e-305 ps 
+TrackID =1618 : ParentID=1536 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -19.9838 -29.4144 -8.6956 keV
+Vertex : 3.7546 17.7732 -81.0799 cm   Global time : 2.816 ns 
   Current trajectory has 2 points.
-Point[0] Position= (5.09812e-306,-2.5642e-306,1.01093e-305)
-Point[1] Position= (5.09792e-306,-2.56416e-306,1.01208e-305)
+Point[0] Position= (37.546,177.732,-810.799)
+Point[1] Position= (37.5267,177.704,-810.807)
 
-TrackID =1633 : ParentID=1632 : TrackStatus=1
-Particle name : kaon0L  PDG code : 130  Charge : 0
-Original momentum : -0.0678145 0.0127689 3.7761 GeV
-Vertex : 5.09792e-294 -2.56416e-294 1.01208e-293 fm   Global time : 6.99953e-305 ps 
-  Current trajectory has 3 points.
-Point[0] Position= (5.09792e-306,-2.56416e-306,1.01208e-305)
-Point[1] Position= (-83.3986,15.7033,4643.87)
-Point[2] Position= (-73.5058,-5.453,6000)
-
-TrackID =1634 : ParentID=1633 : TrackStatus=1
-Particle name : N14  PDG code : 1000070140  Charge : 7
-Original momentum : -95.3572 71.6703 0.482947 MeV
-Vertex : -0.0833986 0.0157033 4.64387 m    Global time : 15.6269 ns 
-  Current trajectory has 48 points.
-Point[0] Position= (-83.3986,15.7033,4643.87)
-Point[1] Position= (-83.5452,15.8134,4643.87)
-Point[2] Position= (-83.6847,15.9178,4643.87)
-Point[3] Position= (-83.8143,16.0202,4643.87)
-Point[4] Position= (-83.9433,16.1108,4643.89)
-Point[5] Position= (-84.0452,16.2174,4643.86)
-Point[6] Position= (-84.1472,16.3118,4643.85)
-Point[7] Position= (-84.2359,16.4087,4643.85)
-Point[8] Position= (-84.3162,16.4957,4643.84)
-Point[9] Position= (-84.3921,16.5705,4643.82)
-Point[10] Position= (-84.4579,16.6372,4643.8)
-Point[11] Position= (-84.5156,16.7024,4643.78)
-Point[12] Position= (-84.559,16.7661,4643.76)
-Point[13] Position= (-84.6024,16.8221,4643.74)
-Point[14] Position= (-84.659,16.8461,4643.75)
-Point[15] Position= (-84.7083,16.8671,4643.77)
-Point[16] Position= (-84.7407,16.8942,4643.79)
-Point[17] Position= (-84.7513,16.8871,4643.83)
-Point[18] Position= (-84.7694,16.8838,4643.86)
-Point[19] Position= (-84.7621,16.865,4643.84)
-Point[20] Position= (-84.7509,16.8629,4643.86)
-Point[21] Position= (-84.7387,16.8515,4643.85)
-Point[22] Position= (-84.7423,16.8543,4643.83)
-Point[23] Position= (-84.7317,16.8444,4643.83)
-Point[24] Position= (-84.7329,16.8451,4643.83)
-Point[25] Position= (-84.7315,16.8448,4643.83)
-Point[26] Position= (-84.7323,16.8436,4643.83)
-Point[27] Position= (-84.7314,16.8439,4643.83)
-Point[28] Position= (-84.7308,16.8428,4643.83)
-Point[29] Position= (-84.7303,16.8426,4643.83)
-Point[30] Position= (-84.7314,16.8418,4643.83)
-Point[31] Position= (-84.7321,16.8421,4643.83)
-Point[32] Position= (-84.7312,16.842,4643.83)
-Point[33] Position= (-84.7313,16.841,4643.83)
-Point[34] Position= (-84.7307,16.8419,4643.83)
-Point[35] Position= (-84.73,16.8415,4643.83)
-Point[36] Position= (-84.729,16.8413,4643.83)
-Point[37] Position= (-84.7292,16.8417,4643.83)
-Point[38] Position= (-84.7289,16.8419,4643.83)
-Point[39] Position= (-84.7281,16.8419,4643.83)
-Point[40] Position= (-84.7272,16.842,4643.83)
-Point[41] Position= (-84.7272,16.8429,4643.83)
-Point[42] Position= (-84.7263,16.8427,4643.83)
-Point[43] Position= (-84.7268,16.8432,4643.83)
-Point[44] Position= (-84.7269,16.8441,4643.83)
-Point[45] Position= (-84.7267,16.8435,4643.83)
-Point[46] Position= (-84.7272,16.8436,4643.83)
-Point[47] Position= (-84.7273,16.8435,4643.83)
-
-TrackID =1631 : ParentID=1447 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : -60.5379 -103.01 116.259 MeV
-Vertex : 5.09812e-294 -2.5642e-294 1.01093e-293 fm   Global time : 6.99567e-305 ps 
+TrackID =1617 : ParentID=1536 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 15.3798 -42.6441 -10.8273 keV
+Vertex : 2.87575 13.6069 -62.0136 cm   Global time : 2.15391 ns 
   Current trajectory has 2 points.
-Point[0] Position= (5.09812e-306,-2.5642e-306,1.01093e-305)
-Point[1] Position= (-8.83855e-06,-1.50394e-05,1.69738e-05)
+Point[0] Position= (28.7575,136.069,-620.136)
+Point[1] Position= (28.7831,135.998,-620.154)
 
-TrackID =1446 : ParentID=1441 : TrackStatus=1
-Particle name : kaon-  PDG code : -321  Charge : -1
-Original momentum : -0.385727 0.0736222 1.68675 GeV
-Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
-  Current trajectory has 80 points.
-Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
-Point[1] Position= (-16.4589,3.13882,71.9696)
-Point[2] Position= (-17.6597,3.36795,77.2197)
-Point[3] Position= (-23.8866,4.55663,104.445)
-Point[4] Position= (-64.2994,12.3093,281.249)
-Point[5] Position= (-122.291,23.4766,535.088)
-Point[6] Position= (-137.335,26.3751,600.936)
-Point[7] Position= (-172.106,33.0629,753.047)
-Point[8] Position= (-172.837,33.2033,756.241)
-Point[9] Position= (-179.454,34.4747,785.177)
-Point[10] Position= (-181.212,34.8128,792.868)
-Point[11] Position= (-196.408,37.7335,859.32)
-Point[12] Position= (-196.976,37.8424,861.803)
-Point[13] Position= (-211.064,40.5466,923.446)
-Point[14] Position= (-228.563,43.9061,1000)
-Point[15] Position= (-239.479,46.0071,1047.79)
-Point[16] Position= (-244.683,47.0091,1070.56)
-Point[17] Position= (-245.771,47.2183,1075.32)
-Point[18] Position= (-247.335,47.519,1082.16)
-Point[19] Position= (-249.52,47.9393,1091.73)
-Point[20] Position= (-261.594,50.2619,1144.57)
-Point[21] Position= (-269.197,51.7222,1177.84)
-Point[22] Position= (-307.354,59.0237,1344.9)
-Point[23] Position= (-352.1,67.6032,1540.87)
-Point[24] Position= (-361.805,69.4614,1583.4)
-Point[25] Position= (-368.484,70.7398,1612.67)
-Point[26] Position= (-389.697,74.8012,1705.59)
-Point[27] Position= (-405.911,77.9039,1776.58)
-Point[28] Position= (-409.498,78.5901,1792.29)
-Point[29] Position= (-418.199,80.2498,1830.36)
-Point[30] Position= (-425.071,81.5597,1860.43)
-Point[31] Position= (-442.583,84.8987,1937.04)
-Point[32] Position= (-448.076,85.9461,1961.07)
-Point[33] Position= (-458.385,87.9101,2006.16)
-Point[34] Position= (-494.712,94.8557,2165.15)
-Point[35] Position= (-506.664,97.1502,2217.46)
-Point[36] Position= (-537.623,103.087,2352.92)
-Point[37] Position= (-549.145,105.295,2403.29)
-Point[38] Position= (-576.274,110.481,2521.89)
-Point[39] Position= (-578.985,111,2533.74)
-Point[40] Position= (-621.05,119.044,2717.54)
-Point[41] Position= (-635.098,121.726,2778.92)
-Point[42] Position= (-678.21,129.959,2967.29)
-Point[43] Position= (-707.319,135.498,3094.69)
-Point[44] Position= (-716.232,137.194,3133.73)
-Point[45] Position= (-724.394,138.745,3169.49)
-Point[46] Position= (-725.883,139.027,3176.01)
-Point[47] Position= (-733.374,140.45,3208.82)
-Point[48] Position= (-754.714,144.501,3302.29)
-Point[49] Position= (-810.844,155.162,3547.98)
-Point[50] Position= (-817.826,156.492,3578.52)
-Point[51] Position= (-823.492,157.572,3603.31)
-Point[52] Position= (-826.741,158.192,3617.52)
-Point[53] Position= (-842.473,161.182,3686.33)
-Point[54] Position= (-875.204,167.401,3829.44)
-Point[55] Position= (-884.853,169.235,3871.65)
-Point[56] Position= (-902.153,172.52,3947.33)
-Point[57] Position= (-909.123,173.843,3977.8)
-Point[58] Position= (-981.827,187.678,4295.62)
-Point[59] Position= (-1004.97,192.087,4396.74)
-Point[60] Position= (-1018.73,194.705,4456.82)
-Point[61] Position= (-1026.9,196.256,4492.49)
-Point[62] Position= (-1034.33,197.667,4524.92)
-Point[63] Position= (-1069.21,204.274,4677.11)
-Point[64] Position= (-1085.32,207.323,4747.41)
-Point[65] Position= (-1090.54,208.31,4770.16)
-Point[66] Position= (-1094.97,209.151,4789.49)
-Point[67] Position= (-1100.16,210.134,4812.11)
-Point[68] Position= (-1117.1,213.345,4885.99)
-Point[69] Position= (-1118.03,213.522,4890.07)
-Point[70] Position= (-1143.47,218.353,5001.07)
-Point[71] Position= (-1160.43,221.579,5075.05)
-Point[72] Position= (-1163.78,222.216,5089.65)
-Point[73] Position= (-1174.22,224.209,5135.19)
-Point[74] Position= (-1178.71,225.063,5154.73)
-Point[75] Position= (-1228.19,234.493,5370.75)
-Point[76] Position= (-1245.53,237.791,5446.47)
-Point[77] Position= (-1277.77,243.923,5587.31)
-Point[78] Position= (-1354.93,258.629,5924.14)
-Point[79] Position= (-1372.31,261.942,6000)
-
-TrackID =1709 : ParentID=1446 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.8048 -15.0384 -4.81472 keV
-Vertex : -1.35493 0.258629 5.92414 m    Global time : 21.0981 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-1354.93,258.629,5924.14)
-Point[1] Position= (-1354.95,258.618,5924.14)
-
-TrackID =1708 : ParentID=1446 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.7822 -8.71628 8.27802 keV
-Vertex : -1.27777 0.243923 5.58731 m    Global time : 19.8983 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-1277.77,243.923,5587.31)
-Point[1] Position= (-1277.75,243.916,5587.32)
-
-TrackID =1707 : ParentID=1446 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.4 14.0709 11.9628 keV
-Vertex : -1.24553 0.237791 5.44647 m    Global time : 19.3967 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-1245.53,237.791,5446.47)
-Point[1] Position= (-1245.45,237.816,5446.49)
-
-TrackID =1706 : ParentID=1446 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.0727 -25.2379 -4.16359 keV
-Vertex : -1.22819 0.234493 5.37075 m    Global time : 19.127 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-1228.19,234.493,5370.75)
-Point[1] Position= (-1228.22,234.464,5370.74)
-
-TrackID =1705 : ParentID=1446 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.8959 -30.95 -2.5293 keV
-Vertex : -1.17871 0.225063 5.15473 m    Global time : 18.3577 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-1178.71,225.063,5154.73)
-Point[1] Position= (-1178.74,225.028,5154.73)
-
-TrackID =1704 : ParentID=1446 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.5342 57.7711 -3.85979 keV
-Vertex : -1.17422 0.224209 5.13519 m    Global time : 18.288 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-1174.22,224.209,5135.19)
-Point[1] Position= (-1174.3,224.405,5135.18)
-
-TrackID =1703 : ParentID=1446 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 4.66692 -34.8992 3.90395 keV
-Vertex : -1.16378 0.222216 5.08965 m    Global time : 18.1258 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-1163.78,222.216,5089.65)
-Point[1] Position= (-1163.77,222.185,5089.65)
+TrackID =1616 : ParentID=1536 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 23.2359 39.2676 7.51538 keV
+Vertex : 1.97084 9.32922 -42.4879 cm   Global time : 1.47577 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (19.7084,93.2922,-424.879)
+Point[1] Position= (19.7463,93.3563,-424.866)
 
-TrackID =1702 : ParentID=1446 : TrackStatus=1
+TrackID =1615 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.6738 12.3597 7.10425 keV
-Vertex : -1.16043 0.221579 5.07505 m    Global time : 18.0738 ns 
+Original momentum : 38.0371 12.8512 2.9339 keV
+Vertex : 1.0124 4.7918 -21.8046 cm   Global time : 757.391 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-1160.43,221.579,5075.05)
-Point[1] Position= (-1160.41,221.588,5075.05)
+Point[0] Position= (10.124,47.918,-218.046)
+Point[1] Position= (10.1694,47.9334,-218.043)
 
-TrackID =1701 : ParentID=1446 : TrackStatus=1
+TrackID =1614 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.9772 22.9737 5.68296 keV
-Vertex : -1.14347 0.218353 5.00107 m    Global time : 17.8103 ns 
+Original momentum : 30.5644 12.768 3.0988 keV
+Vertex : 0.781814 3.69831 -16.8261 cm   Global time : 584.466 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-1143.47,218.353,5001.07)
-Point[1] Position= (-1143.45,218.372,5001.08)
+Point[0] Position= (7.81814,36.9831,-168.261)
+Point[1] Position= (7.84213,36.9931,-168.259)
 
-TrackID =1700 : ParentID=1446 : TrackStatus=1
+TrackID =1613 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.654 -38.6897 11.3812 keV
-Vertex : -1.11803 0.213522 4.89007 m    Global time : 17.415 ns 
+Original momentum : 32.8565 -9.52883 -1.77063 keV
+Vertex : 0.330548 1.56669 -7.12267 cm   Global time : 247.418 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-1118.03,213.522,4890.07)
-Point[1] Position= (-1117.97,213.444,4890.09)
+Point[0] Position= (3.30548,15.6669,-71.2267)
+Point[1] Position= (3.33295,15.6589,-71.2281)
 
-TrackID =1699 : ParentID=1446 : TrackStatus=1
+TrackID =1612 : ParentID=1536 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -110.025 0.858489 -12.5655 keV
-Vertex : -1.1171 0.213345 4.88599 m    Global time : 17.4004 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-1117.1,213.345,4885.99)
-Point[1] Position= (-1118.47,213.356,4885.83)
-Point[2] Position= (-1118.98,213.547,4886.15)
-Point[3] Position= (-1119,213.527,4886.17)
+Original momentum : 50.3933 -53.9749 -15.3077 keV
+Vertex : 0.100888 0.47661 -2.16354 cm   Global time : 75.1604 ps 
+  Current trajectory has 3 points.
+Point[0] Position= (1.00888,4.7661,-21.6354)
+Point[1] Position= (1.27157,4.48474,-21.7152)
+Point[2] Position= (1.31917,4.4978,-21.6866)
 
-TrackID =1698 : ParentID=1446 : TrackStatus=1
+TrackID =1707 : ParentID=1612 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.5225 -31.2606 8.13805 keV
-Vertex : -1.10016 0.210134 4.81211 m    Global time : 17.1373 ns 
+Original momentum : -2.0529 -27.9579 16.27 keV
+Vertex : 0.127157 0.448474 -2.17152 cm   Global time : 84.142 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-1100.16,210.134,4812.11)
-Point[1] Position= (-1100.13,210.098,4812.12)
+Point[0] Position= (1.27157,4.48474,-21.7152)
+Point[1] Position= (1.27004,4.46398,-21.7032)
 
-TrackID =1697 : ParentID=1446 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -41.3267 18.7656 -8.07527 keV
-Vertex : -1.09497 0.209151 4.78949 m    Global time : 17.0567 ns 
+TrackID =47 : ParentID=45 : TrackStatus=1
+Particle name : unknown : rho0  PDG code : 113  Charge : 0
+Original momentum : 0.871882 -0.432666 -5.95473 GeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-1094.97,209.151,4789.49)
-Point[1] Position= (-1095.04,209.181,4789.47)
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (7.8125e-307,-4.94508e-307,6.75545e-306)
+
+TrackID =1709 : ParentID=47 : TrackStatus=1
+Particle name : pi+  PDG code : 211  Charge : 1
+Original momentum : 0.486449 -0.0335947 -3.67511 GeV
+Vertex : 7.8125e-295 -4.94508e-295 6.75545e-294 fm   Global time : 8.63132e-305 ps 
+  Current trajectory has 75 points.
+Point[0] Position= (7.8125e-307,-4.94508e-307,6.75545e-306)
+Point[1] Position= (5.54313,-0.382619,-41.875)
+Point[2] Position= (16.0373,-1.10631,-121.145)
+Point[3] Position= (31.8242,-2.19692,-240.414)
+Point[4] Position= (38.7425,-2.67441,-292.69)
+Point[5] Position= (44.6558,-3.08354,-337.382)
+Point[6] Position= (50.6222,-3.49726,-382.459)
+Point[7] Position= (52.5304,-3.62988,-396.875)
+Point[8] Position= (59.4967,-4.11374,-449.507)
+Point[9] Position= (65.6938,-4.54419,-496.325)
+Point[10] Position= (83.3302,-5.76352,-629.571)
+Point[11] Position= (100.632,-6.96912,-760.265)
+Point[12] Position= (122.636,-8.50325,-926.451)
+Point[13] Position= (133.793,-9.27802,-1010.73)
+Point[14] Position= (135.024,-9.36341,-1020.03)
+Point[15] Position= (146.996,-10.1942,-1110.47)
+Point[16] Position= (148.407,-10.2919,-1121.13)
+Point[17] Position= (149.49,-10.3668,-1129.31)
+Point[18] Position= (152.241,-10.5574,-1150.09)
+Point[19] Position= (165.104,-11.4513,-1247.24)
+Point[20] Position= (183.899,-12.7752,-1389.19)
+Point[21] Position= (194.003,-13.4911,-1465.48)
+Point[22] Position= (202.715,-14.1068,-1531.28)
+Point[23] Position= (229.497,-15.9828,-1733.54)
+Point[24] Position= (236.243,-16.4536,-1784.48)
+Point[25] Position= (242.997,-16.9246,-1835.49)
+Point[26] Position= (252.438,-17.5828,-1906.82)
+Point[27] Position= (253.662,-17.6681,-1916.07)
+Point[28] Position= (311.963,-21.7372,-2356.48)
+Point[29] Position= (322.319,-22.4639,-2434.73)
+Point[30] Position= (346.925,-24.1835,-2620.57)
+Point[31] Position= (374.53,-26.1167,-2829.03)
+Point[32] Position= (399.043,-27.8156,-3014.19)
+Point[33] Position= (416.365,-29.0074,-3145.08)
+Point[34] Position= (427.127,-29.7425,-3226.42)
+Point[35] Position= (436.273,-30.3677,-3295.56)
+Point[36] Position= (439.569,-30.5937,-3320.47)
+Point[37] Position= (446.668,-31.0796,-3374.12)
+Point[38] Position= (454.225,-31.5968,-3431.25)
+Point[39] Position= (459.983,-31.9907,-3474.79)
+Point[40] Position= (464.036,-32.2685,-3505.43)
+Point[41] Position= (468.205,-32.5546,-3536.95)
+Point[42] Position= (477.273,-33.1749,-3605.5)
+Point[43] Position= (485.498,-33.7375,-3667.66)
+Point[44] Position= (501.479,-34.8282,-3788.39)
+Point[45] Position= (513.56,-35.654,-3879.54)
+Point[46] Position= (533.522,-37.0192,-4030.16)
+Point[47] Position= (559.167,-38.7835,-4223.63)
+Point[48] Position= (561.986,-38.9769,-4244.9)
+Point[49] Position= (568.164,-39.4012,-4291.51)
+Point[50] Position= (575.713,-39.919,-4348.47)
+Point[51] Position= (578.456,-40.1067,-4369.17)
+Point[52] Position= (582.633,-40.3901,-4400.67)
+Point[53] Position= (587.662,-40.7322,-4438.61)
+Point[54] Position= (588.929,-40.8183,-4448.17)
+Point[55] Position= (592.783,-41.0803,-4477.24)
+Point[56] Position= (597.461,-41.3981,-4512.52)
+Point[57] Position= (601.806,-41.692,-4545.29)
+Point[58] Position= (612.67,-42.4256,-4627.2)
+Point[59] Position= (617.79,-42.7718,-4665.79)
+Point[60] Position= (654.319,-45.2389,-4941.02)
+Point[61] Position= (671.945,-46.4285,-5073.75)
+Point[62] Position= (681.979,-47.1036,-5149.33)
+Point[63] Position= (686.013,-47.3743,-5179.72)
+Point[64] Position= (708.995,-48.8976,-5352.82)
+Point[65] Position= (711.652,-49.0738,-5372.84)
+Point[66] Position= (714.974,-49.294,-5397.88)
+Point[67] Position= (715.331,-49.3177,-5400.57)
+Point[68] Position= (719.078,-49.5664,-5428.81)
+Point[69] Position= (721.019,-49.6958,-5443.45)
+Point[70] Position= (759.204,-52.2556,-5731.27)
+Point[71] Position= (767.863,-52.8419,-5796.52)
+Point[72] Position= (769.503,-52.9533,-5808.88)
+Point[73] Position= (790.82,-54.4082,-5969.44)
+Point[74] Position= (794.877,-54.6845,-6000)
+
+TrackID =1782 : ParentID=1709 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 36.7985 -18.8707 3.35889 keV
+Vertex : 0.79082 -0.0544082 -5.96944 m    Global time : 20.1009 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (790.82,-54.4082,-5969.44)
+Point[1] Position= (790.867,-54.4323,-5969.44)
+
+TrackID =1781 : ParentID=1709 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -54.9243 69.4801 -15.8509 keV
+Vertex : 0.769503 -0.0529533 -5.80888 m    Global time : 19.5603 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (769.503,-52.9533,-5808.88)
+Point[1] Position= (769.041,-52.3687,-5809.01)
+Point[2] Position= (769.041,-52.3749,-5809.03)
 
-TrackID =1696 : ParentID=1446 : TrackStatus=1
+TrackID =1780 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.1676 -34.5131 8.13211 keV
-Vertex : -1.09054 0.20831 4.77016 m    Global time : 16.9879 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-1090.54,208.31,4770.16)
-Point[1] Position= (-1090.51,208.267,4770.17)
+Original momentum : -18.3753 79.1344 -9.72092 keV
+Vertex : 0.767863 -0.0528419 -5.79652 m    Global time : 19.5187 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (767.863,-52.8419,-5796.52)
+Point[1] Position= (767.806,-52.5936,-5796.56)
+Point[2] Position= (767.675,-52.5216,-5796.59)
 
-TrackID =1695 : ParentID=1446 : TrackStatus=1
+TrackID =1783 : ParentID=1780 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 57.4379 45.6746 17.0874 keV
-Vertex : -1.08532 0.207323 4.74741 m    Global time : 16.9068 ns 
+Original momentum : 12.3695 1.53096 -44.7908 keV
+Vertex : 0.767806 -0.0525936 -5.79656 m    Global time : 19.5241 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1085.32,207.323,4747.41)
-Point[1] Position= (-1085.01,207.57,4747.5)
+Point[0] Position= (767.806,-52.5936,-5796.56)
+Point[1] Position= (767.826,-52.5911,-5796.63)
 
-TrackID =1694 : ParentID=1446 : TrackStatus=1
+TrackID =1779 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 55.2639 27.6432 15.6986 keV
-Vertex : -1.06921 0.204274 4.67711 m    Global time : 16.6564 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-1069.21,204.274,4677.11)
-Point[1] Position= (-1069.06,204.345,4677.15)
-Point[2] Position= (-1069.05,204.383,4677.22)
+Original momentum : 30.8343 -14.1027 3.07517 keV
+Vertex : 0.759204 -0.0522556 -5.73127 m    Global time : 19.2989 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (759.204,-52.2556,-5731.27)
+Point[1] Position= (759.23,-52.2672,-5731.27)
 
-TrackID =1710 : ParentID=1694 : TrackStatus=1
+TrackID =1778 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.2145 -28.7869 14.085 keV
-Vertex : -1.06906 0.204345 4.67715 m    Global time : 16.6609 ns 
+Original momentum : 31.6472 -18.8914 3.01543 keV
+Vertex : 0.721019 -0.0496958 -5.44345 m    Global time : 18.3297 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1069.06,204.345,4677.15)
-Point[1] Position= (-1069.05,204.321,4677.16)
+Point[0] Position= (721.019,-49.6958,-5443.45)
+Point[1] Position= (721.05,-49.7145,-5443.45)
 
-TrackID =1693 : ParentID=1446 : TrackStatus=1
+TrackID =1777 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.8959 -15.2394 8.47159 keV
-Vertex : -1.03433 0.197667 4.52492 m    Global time : 16.1144 ns 
+Original momentum : 31.0224 24.4803 2.35317 keV
+Vertex : 0.719078 -0.0495664 -5.42881 m    Global time : 18.2804 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1034.33,197.667,4524.92)
-Point[1] Position= (-1034.3,197.654,4524.93)
+Point[0] Position= (719.078,-49.5664,-5428.81)
+Point[1] Position= (719.113,-49.5383,-5428.81)
 
-TrackID =1692 : ParentID=1446 : TrackStatus=1
+TrackID =1776 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.0441 21.5324 7.13267 keV
-Vertex : -1.0269 0.196256 4.49249 m    Global time : 15.9989 ns 
+Original momentum : 65.8332 -11.8576 4.41714 keV
+Vertex : 0.715331 -0.0493177 -5.40057 m    Global time : 18.1853 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1026.9,196.256,4492.49)
-Point[1] Position= (-1026.87,196.277,4492.49)
+Point[0] Position= (715.331,-49.3177,-5400.57)
+Point[1] Position= (715.596,-49.3654,-5400.55)
 
-TrackID =1691 : ParentID=1446 : TrackStatus=1
+TrackID =1775 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 43.0247 31.748 11.5915 keV
-Vertex : -1.01873 0.194705 4.45682 m    Global time : 15.8718 ns 
+Original momentum : 39.8326 2.87523 3.67293 keV
+Vertex : 0.714974 -0.049294 -5.39788 m    Global time : 18.1763 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1018.73,194.705,4456.82)
-Point[1] Position= (-1018.62,194.782,4456.85)
+Point[0] Position= (714.974,-49.294,-5397.88)
+Point[1] Position= (715.021,-49.2906,-5397.87)
 
-TrackID =1690 : ParentID=1446 : TrackStatus=1
+TrackID =1774 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.66507 -59.3642 5.91541 keV
-Vertex : -1.00497 0.192087 4.39674 m    Global time : 15.6578 ns 
+Original momentum : 22.8483 -54.8311 0.0415643 keV
+Vertex : 0.711652 -0.0490738 -5.37284 m    Global time : 18.092 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1004.97,192.087,4396.74)
-Point[1] Position= (-1004.98,191.908,4396.75)
+Point[0] Position= (711.652,-49.0738,-5372.84)
+Point[1] Position= (711.721,-49.2375,-5372.84)
 
-TrackID =1689 : ParentID=1446 : TrackStatus=1
+TrackID =1773 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.02407 31.7128 -1.8872 keV
-Vertex : -0.981827 0.187678 4.29562 m    Global time : 15.2977 ns 
+Original momentum : 32.9171 -10.1373 3.27759 keV
+Vertex : 0.708995 -0.0488976 -5.35282 m    Global time : 18.0245 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-981.827,187.678,4295.62)
-Point[1] Position= (-981.832,187.702,4295.62)
+Point[0] Position= (708.995,-48.8976,-5352.82)
+Point[1] Position= (709.023,-48.9063,-5352.82)
 
-TrackID =1688 : ParentID=1446 : TrackStatus=1
+TrackID =1772 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.4402 12.9088 7.90122 keV
-Vertex : -0.909123 0.173843 3.9778 m    Global time : 14.1658 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-909.123,173.843,3977.8)
-Point[1] Position= (-909.095,173.854,3977.81)
+Original momentum : 41.4809 -147.93 -16.2438 keV
+Vertex : 0.686013 -0.0473743 -5.17972 m    Global time : 17.4416 ns 
+  Current trajectory has 7 points.
+Point[0] Position= (686.013,-47.3743,-5179.72)
+Point[1] Position= (686.194,-48.0202,-5179.79)
+Point[2] Position= (687.592,-50.5662,-5179.74)
+Point[3] Position= (688.301,-52.4022,-5178.97)
+Point[4] Position= (688.604,-52.2606,-5178.29)
+Point[5] Position= (689.216,-51.7819,-5178.26)
+Point[6] Position= (689.377,-51.6381,-5177.86)
 
-TrackID =1687 : ParentID=1446 : TrackStatus=1
+TrackID =1786 : ParentID=1772 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.0772 28.1286 3.56467 keV
-Vertex : -0.902153 0.17252 3.94733 m    Global time : 14.0573 ns 
+Original momentum : 22.339 29.6631 -19.2354 keV
+Vertex : 0.689216 -0.0517819 -5.17826 m    Global time : 17.5368 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-902.153,172.52,3947.33)
-Point[1] Position= (-902.141,172.541,3947.34)
+Point[0] Position= (689.216,-51.7819,-5178.26)
+Point[1] Position= (689.245,-51.7433,-5178.29)
 
-TrackID =1686 : ParentID=1446 : TrackStatus=1
+TrackID =1785 : ParentID=1772 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -41.2051 19.4149 -8.03201 keV
-Vertex : -0.884853 0.169235 3.87165 m    Global time : 13.7878 ns 
+Original momentum : -21.8034 27.9372 3.22676 keV
+Vertex : 0.688604 -0.0522606 -5.17829 m    Global time : 17.5237 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-884.853,169.235,3871.65)
-Point[1] Position= (-884.921,169.267,3871.64)
+Point[0] Position= (688.604,-52.2606,-5178.29)
+Point[1] Position= (688.584,-52.2352,-5178.28)
 
-TrackID =1685 : ParentID=1446 : TrackStatus=1
+TrackID =1784 : ParentID=1772 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.0708 29.3367 3.57877 keV
-Vertex : -0.875204 0.167401 3.82944 m    Global time : 13.6375 ns 
+Original momentum : -23.8619 -13.5653 -16.1059 keV
+Vertex : 0.686194 -0.0480202 -5.17979 m    Global time : 17.4494 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-875.204,167.401,3829.44)
-Point[1] Position= (-875.191,167.424,3829.45)
+Point[0] Position= (686.194,-48.0202,-5179.79)
+Point[1] Position= (686.177,-48.0298,-5179.8)
 
-TrackID =1684 : ParentID=1446 : TrackStatus=1
+TrackID =1771 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.7607 24.9778 10.7386 keV
-Vertex : -0.842473 0.161182 3.68633 m    Global time : 13.1278 ns 
+Original momentum : -37.174 13.4455 -6.63928 keV
+Vertex : 0.681979 -0.0471036 -5.14933 m    Global time : 17.3393 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-842.473,161.182,3686.33)
-Point[1] Position= (-842.397,161.229,3686.35)
+Point[0] Position= (681.979,-47.1036,-5149.33)
+Point[1] Position= (681.935,-47.0877,-5149.34)
 
-TrackID =1683 : ParentID=1446 : TrackStatus=1
+TrackID =1770 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.49616 69.7743 0.582247 keV
-Vertex : -0.826741 0.158192 3.61752 m    Global time : 12.8828 ns 
+Original momentum : -15.9467 27.4498 -3.36917 keV
+Vertex : 0.671945 -0.0464285 -5.07375 m    Global time : 17.0848 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-826.741,158.192,3617.52)
-Point[1] Position= (-826.77,158.506,3617.53)
+Point[0] Position= (671.945,-46.4285,-5073.75)
+Point[1] Position= (671.933,-46.4087,-5073.75)
 
-TrackID =1682 : ParentID=1446 : TrackStatus=1
+TrackID =1769 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 59.9003 -29.0242 19.983 keV
-Vertex : -0.810844 0.155162 3.54798 m    Global time : 12.6351 ns 
+Original momentum : -67.0928 55.867 -17.1715 keV
+Vertex : 0.654319 -0.0452389 -4.94102 m    Global time : 16.6378 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-810.844,155.162,3547.98)
-Point[1] Position= (-810.726,155.104,3548.02)
-Point[2] Position= (-810.676,154.991,3548.06)
+Point[0] Position= (654.319,-45.2389,-4941.02)
+Point[1] Position= (653.768,-44.7808,-4941.16)
+Point[2] Position= (653.768,-44.7834,-4941.17)
 
-TrackID =1711 : ParentID=1682 : TrackStatus=1
+TrackID =1768 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 19.3131 -0.348833 -25.8644 keV
-Vertex : -0.810726 0.155104 3.54802 m    Global time : 12.6385 ns 
+Original momentum : 41.9281 -4.40465 3.83494 keV
+Vertex : 0.61779 -0.0427718 -4.66579 m    Global time : 15.711 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-810.726,155.104,3548.02)
-Point[1] Position= (-810.711,155.104,3548)
+Point[0] Position= (617.79,-42.7718,-4665.79)
+Point[1] Position= (617.846,-42.7777,-4665.79)
 
-TrackID =1681 : ParentID=1446 : TrackStatus=1
+TrackID =1767 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -36.5546 37.1549 -7.07612 keV
-Vertex : -0.754714 0.144501 3.30229 m    Global time : 11.7601 ns 
+Original momentum : -50.2607 26.005 -10.1552 keV
+Vertex : 0.61267 -0.0424256 -4.6272 m    Global time : 15.5811 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-754.714,144.501,3302.29)
-Point[1] Position= (-754.795,144.584,3302.27)
+Point[0] Position= (612.67,-42.4256,-4627.2)
+Point[1] Position= (612.531,-42.3539,-4627.23)
 
-TrackID =1680 : ParentID=1446 : TrackStatus=1
+TrackID =1766 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.7568 -26.1681 9.36669 keV
-Vertex : -0.733374 0.14045 3.20882 m    Global time : 11.4273 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-733.374,140.45,3208.82)
-Point[1] Position= (-733.34,140.419,3208.84)
+Original momentum : -17.8694 -95.1629 -10.8094 keV
+Vertex : 0.601806 -0.041692 -4.54529 m    Global time : 15.3052 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (601.806,-41.692,-4545.29)
+Point[1] Position= (601.631,-42.6203,-4545.39)
+Point[2] Position= (601.578,-42.6065,-4545.44)
 
-TrackID =1679 : ParentID=1446 : TrackStatus=1
+TrackID =1787 : ParentID=1766 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -49.9363 -4.15205 -8.5269 keV
-Vertex : -0.725883 0.139027 3.17601 m    Global time : 11.3105 ns 
+Original momentum : -19.4649 11.8876 23.5932 keV
+Vertex : 0.601631 -0.0426203 -4.54539 m    Global time : 15.3222 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-725.883,139.027,3176.01)
-Point[1] Position= (-725.985,139.019,3176)
+Point[0] Position= (601.631,-42.6203,-4545.39)
+Point[1] Position= (601.617,-42.6113,-4545.37)
 
-TrackID =1678 : ParentID=1446 : TrackStatus=1
+TrackID =1765 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -46.9906 57.9322 -7.40231 keV
-Vertex : -0.716232 0.137194 3.13373 m    Global time : 11.1599 ns 
+Original momentum : 22.2471 -37.7634 1.3931 keV
+Vertex : 0.597461 -0.0413981 -4.51252 m    Global time : 15.1949 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-716.232,137.194,3133.73)
-Point[1] Position= (-716.483,137.503,3133.69)
+Point[0] Position= (597.461,-41.3981,-4512.52)
+Point[1] Position= (597.493,-41.4527,-4512.52)
 
-TrackID =1677 : ParentID=1446 : TrackStatus=1
+TrackID =1764 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.0504 -33.9563 -0.324543 keV
-Vertex : -0.707319 0.135498 3.09469 m    Global time : 11.0209 ns 
+Original momentum : -24.8177 25.2746 -4.77836 keV
+Vertex : 0.592783 -0.0410803 -4.47724 m    Global time : 15.0761 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-707.319,135.498,3094.69)
-Point[1] Position= (-707.333,135.465,3094.69)
+Point[0] Position= (592.783,-41.0803,-4477.24)
+Point[1] Position= (592.76,-41.0571,-4477.24)
 
-TrackID =1676 : ParentID=1446 : TrackStatus=1
+TrackID =1763 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -44.2633 1.28433 -8.07528 keV
-Vertex : -0.67821 0.129959 2.96729 m    Global time : 10.5672 ns 
+Original momentum : -50.2647 19.6313 -9.80352 keV
+Vertex : 0.588929 -0.0408183 -4.44817 m    Global time : 14.9782 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-678.21,129.959,2967.29)
-Point[1] Position= (-678.278,129.961,2967.28)
+Point[0] Position= (588.929,-40.8183,-4448.17)
+Point[1] Position= (588.805,-40.7701,-4448.19)
 
-TrackID =1675 : ParentID=1446 : TrackStatus=1
+TrackID =1762 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.164 16.4945 -6.51269 keV
-Vertex : -0.635098 0.121726 2.77892 m    Global time : 9.89629 ns 
+Original momentum : 5.55419 -32.2385 -0.029112 keV
+Vertex : 0.587662 -0.0407322 -4.43861 m    Global time : 14.946 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-635.098,121.726,2778.92)
-Point[1] Position= (-635.127,121.741,2778.91)
+Point[0] Position= (587.662,-40.7322,-4438.61)
+Point[1] Position= (587.666,-40.7566,-4438.61)
 
-TrackID =1674 : ParentID=1446 : TrackStatus=1
+TrackID =1761 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.4515 14.9259 7.87374 keV
-Vertex : -0.62105 0.119044 2.71754 m    Global time : 9.6777 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-621.05,119.044,2717.54)
-Point[1] Position= (-621.021,119.058,2717.54)
+Original momentum : 75.4819 87.5047 -3.82224 keV
+Vertex : 0.582633 -0.0403901 -4.40067 m    Global time : 14.8183 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (582.633,-40.3901,-4400.67)
+Point[1] Position= (583.641,-39.2215,-4400.72)
+Point[2] Position= (583.736,-38.2627,-4401.22)
+Point[3] Position= (583.678,-38.2257,-4401.06)
 
-TrackID =1673 : ParentID=1446 : TrackStatus=1
+TrackID =1760 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.53594 -45.4355 6.46142 keV
-Vertex : -0.578985 0.111 2.53374 m    Global time : 9.02311 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-578.985,111,2533.74)
-Point[1] Position= (-578.969,110.924,2533.75)
+Original momentum : -122.533 -221.08 -79.4672 keV
+Vertex : 0.578456 -0.0401067 -4.36917 m    Global time : 14.7122 ns 
+  Current trajectory has 15 points.
+Point[0] Position= (578.456,-40.1067,-4369.17)
+Point[1] Position= (578.394,-40.2184,-4369.21)
+Point[2] Position= (573.547,-50.4754,-4370.77)
+Point[3] Position= (573.644,-50.6692,-4370.76)
+Point[4] Position= (579.303,-60.1672,-4370.35)
+Point[5] Position= (578.268,-65.4496,-4363.52)
+Point[6] Position= (578.253,-66.9123,-4362.89)
+Point[7] Position= (580.435,-70.3725,-4364.37)
+Point[8] Position= (580.64,-70.5051,-4365.2)
+Point[9] Position= (581.865,-69.6989,-4367.69)
+Point[10] Position= (583.027,-69.4334,-4369.52)
+Point[11] Position= (583.78,-69.8034,-4370.94)
+Point[12] Position= (584.205,-69.8532,-4371.76)
+Point[13] Position= (584.131,-69.4221,-4371.94)
+Point[14] Position= (584.118,-69.4335,-4371.94)
+
+TrackID =1792 : ParentID=1760 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -5.90197 -71.9204 -27.1011 keV
+Vertex : 0.58064 -0.0705051 -4.3652 m    Global time : 15.0224 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (580.64,-70.5051,-4365.2)
+Point[1] Position= (580.606,-70.9177,-4365.35)
+
+TrackID =1791 : ParentID=1760 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 35.1704 -61.2717 17.6177 keV
+Vertex : 0.580435 -0.0703725 -4.36437 m    Global time : 15.0133 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (580.435,-70.3725,-4364.37)
+Point[1] Position= (580.609,-70.6766,-4364.28)
+
+TrackID =1790 : ParentID=1760 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -10.4585 -27.8548 47.9424 keV
+Vertex : 0.578253 -0.0669123 -4.36289 m    Global time : 14.9729 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (578.253,-66.9123,-4362.89)
+Point[1] Position= (578.225,-66.9855,-4362.76)
+Point[2] Position= (578.225,-66.9854,-4362.76)
 
-TrackID =1672 : ParentID=1446 : TrackStatus=1
+TrackID =1789 : ParentID=1760 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -39.2496 2.14416 -7.4033 keV
-Vertex : -0.576274 0.110481 2.52189 m    Global time : 8.98089 ns 
+Original momentum : -30.5636 -14.6393 15.9154 keV
+Vertex : 0.573547 -0.0504754 -4.37077 m    Global time : 14.797 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-576.274,110.481,2521.89)
-Point[1] Position= (-576.32,110.484,2521.88)
+Point[0] Position= (573.547,-50.4754,-4370.77)
+Point[1] Position= (573.516,-50.4903,-4370.75)
 
-TrackID =1671 : ParentID=1446 : TrackStatus=1
+TrackID =1788 : ParentID=1760 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.65304 55.2466 0.910361 keV
-Vertex : -0.549145 0.105295 2.40329 m    Global time : 8.55853 ns 
+Original momentum : -15.5355 12.247 -34.9767 keV
+Vertex : 0.578394 -0.0402184 -4.36921 m    Global time : 14.7132 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-549.145,105.295,2403.29)
-Point[1] Position= (-549.144,105.433,2403.3)
+Point[0] Position= (578.394,-40.2184,-4369.21)
+Point[1] Position= (578.376,-40.2038,-4369.25)
 
-TrackID =1670 : ParentID=1446 : TrackStatus=1
+TrackID =1759 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.4714 -24.8747 9.18068 keV
-Vertex : -0.537623 0.103087 2.35292 m    Global time : 8.37912 ns 
+Original momentum : 9.45676 33.8781 -0.274518 keV
+Vertex : 0.575713 -0.039919 -4.34847 m    Global time : 14.6425 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-537.623,103.087,2352.92)
-Point[1] Position= (-537.591,103.06,2352.93)
-
-TrackID =1669 : ParentID=1446 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -66.6628 54.2212 -9.85259 keV
-Vertex : -0.506664 0.0971502 2.21746 m    Global time : 7.89671 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-506.664,97.1502,2217.46)
-Point[1] Position= (-507.175,97.5657,2217.38)
-Point[2] Position= (-507.184,97.438,2217.32)
+Point[0] Position= (575.713,-39.919,-4348.47)
+Point[1] Position= (575.721,-39.889,-4348.47)
 
-TrackID =1668 : ParentID=1446 : TrackStatus=1
+TrackID =1758 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.3568 -23.7576 9.62273 keV
-Vertex : -0.494712 0.0948557 2.16515 m    Global time : 7.71043 ns 
+Original momentum : 19.2855 27.4 1.19669 keV
+Vertex : 0.568164 -0.0394012 -4.29151 m    Global time : 14.4507 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-494.712,94.8557,2165.15)
-Point[1] Position= (-494.676,94.8282,2165.16)
+Point[0] Position= (568.164,-39.4012,-4291.51)
+Point[1] Position= (568.179,-39.3793,-4291.51)
 
-TrackID =1667 : ParentID=1446 : TrackStatus=1
+TrackID =1757 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -163.383 -140.128 15.4187 keV
-Vertex : -0.458385 0.0879101 2.00616 m    Global time : 7.14425 ns 
-  Current trajectory has 10 points.
-Point[0] Position= (-458.385,87.9101,2006.16)
-Point[1] Position= (-461.323,84.1591,2008.37)
-Point[2] Position= (-465.361,81.4907,2010.41)
-Point[3] Position= (-467.731,78.4258,2010.43)
-Point[4] Position= (-468.36,75.4479,2011.08)
-Point[5] Position= (-470.489,76.5863,2011.2)
-Point[6] Position= (-471.481,75.2607,2011.89)
-Point[7] Position= (-472.241,74.7982,2012.23)
-Point[8] Position= (-472.245,74.8026,2012.23)
-Point[9] Position= (-472.333,74.8408,2012.24)
+Original momentum : 50.525 -62.595 0.913802 keV
+Vertex : 0.561986 -0.0389769 -4.2449 m    Global time : 14.2937 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (561.986,-38.9769,-4244.9)
+Point[1] Position= (562.309,-39.3772,-4244.89)
+Point[2] Position= (562.304,-39.3768,-4244.89)
 
-TrackID =1715 : ParentID=1667 : TrackStatus=1
+TrackID =1756 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.85374 25.2138 -20.0513 keV
-Vertex : -0.472245 0.0748026 2.01223 m    Global time : 7.38727 ns 
+Original momentum : 12.8517 -47.2797 -0.232199 keV
+Vertex : 0.559167 -0.0387835 -4.22363 m    Global time : 14.2221 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-472.245,74.8026,2012.23)
-Point[1] Position= (-472.239,74.8223,2012.22)
+Point[0] Position= (559.167,-38.7835,-4223.63)
+Point[1] Position= (559.191,-38.8719,-4223.63)
 
-TrackID =1714 : ParentID=1667 : TrackStatus=1
+TrackID =1755 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.6217 -2.42523 -41.475 keV
-Vertex : -0.472241 0.0747982 2.01223 m    Global time : 7.3871 ns 
+Original momentum : -53.58 8.76198 -10.1864 keV
+Vertex : 0.533522 -0.0370192 -4.03016 m    Global time : 13.5706 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-472.241,74.7982,2012.23)
-Point[1] Position= (-472.225,74.7948,2012.18)
+Point[0] Position= (533.522,-37.0192,-4030.16)
+Point[1] Position= (533.388,-36.9973,-4030.19)
 
-TrackID =1713 : ParentID=1667 : TrackStatus=1
+TrackID =1754 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.8928 7.81956 -42.5697 keV
-Vertex : -0.465361 0.0814907 2.01041 m    Global time : 7.23623 ns 
+Original momentum : -24.3486 -41.7533 -5.17741 keV
+Vertex : 0.51356 -0.035654 -3.87954 m    Global time : 13.0635 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-465.361,81.4907,2010.41)
-Point[1] Position= (-465.378,81.5025,2010.35)
+Point[0] Position= (513.56,-35.654,-3879.54)
+Point[1] Position= (513.515,-35.7307,-3879.55)
 
-TrackID =1712 : ParentID=1667 : TrackStatus=1
+TrackID =1753 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.06453 -45.2842 -60.7607 keV
-Vertex : -0.461323 0.0841591 2.00837 m    Global time : 7.18556 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-461.323,84.1591,2008.37)
-Point[1] Position= (-461.326,84.0827,2008.27)
-Point[2] Position= (-461.341,84.0319,2008.03)
+Original momentum : 12.1946 41.5606 -0.60912 keV
+Vertex : 0.501479 -0.0348282 -3.78839 m    Global time : 12.7565 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (501.479,-34.8282,-3788.39)
+Point[1] Position= (501.496,-34.7697,-3788.39)
 
-TrackID =1716 : ParentID=1712 : TrackStatus=1
+TrackID =1752 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.0137 -11.6363 0.34362 keV
-Vertex : -0.461326 0.0840827 2.00827 m    Global time : 7.18846 ns 
+Original momentum : -14.1797 -30.1194 -2.70494 keV
+Vertex : 0.485498 -0.0337375 -3.66766 m    Global time : 12.35 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-461.326,84.0827,2008.27)
-Point[1] Position= (-461.3,84.0731,2008.27)
+Point[0] Position= (485.498,-33.7375,-3667.66)
+Point[1] Position= (485.487,-33.7614,-3667.66)
 
-TrackID =1666 : ParentID=1446 : TrackStatus=1
+TrackID =1751 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.1427 4.51179 9.85711 keV
-Vertex : -0.448076 0.0859461 1.96107 m    Global time : 6.98366 ns 
+Original momentum : -24.7322 -44.8821 -5.483 keV
+Vertex : 0.477273 -0.0331749 -3.6055 m    Global time : 12.1407 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-448.076,85.9461,1961.07)
-Point[1] Position= (-448.035,85.951,1961.08)
+Point[0] Position= (477.273,-33.1749,-3605.5)
+Point[1] Position= (477.221,-33.2696,-3605.52)
 
-TrackID =1665 : ParentID=1446 : TrackStatus=1
+TrackID =1750 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.3309 -22.0428 10.0533 keV
-Vertex : -0.442583 0.0848987 1.93704 m    Global time : 6.89808 ns 
+Original momentum : 34.6805 -19.9371 3.18023 keV
+Vertex : 0.468205 -0.0325546 -3.53695 m    Global time : 11.9098 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-442.583,84.8987,1937.04)
-Point[1] Position= (-442.544,84.8722,1937.05)
+Point[0] Position= (468.205,-32.5546,-3536.95)
+Point[1] Position= (468.246,-32.5782,-3536.95)
 
-TrackID =1664 : ParentID=1446 : TrackStatus=1
+TrackID =1749 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.3903 -7.40847 9.26636 keV
-Vertex : -0.425071 0.0815597 1.86043 m    Global time : 6.62526 ns 
+Original momentum : 17.1562 -28.7249 1.423 keV
+Vertex : 0.464036 -0.0322685 -3.50543 m    Global time : 11.8037 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-425.071,81.5597,1860.43)
-Point[1] Position= (-425.041,81.553,1860.44)
+Point[0] Position= (464.036,-32.2685,-3505.43)
+Point[1] Position= (464.049,-32.2913,-3505.43)
 
-TrackID =1663 : ParentID=1446 : TrackStatus=1
+TrackID =1748 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 41.0687 54.3596 11.9945 keV
-Vertex : -0.418199 0.0802498 1.83036 m    Global time : 6.51819 ns 
+Original momentum : -89.7209 4.62048 -20.2191 keV
+Vertex : 0.459983 -0.0319907 -3.47479 m    Global time : 11.7006 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-418.199,80.2498,1830.36)
-Point[1] Position= (-418.08,80.4068,1830.4)
-Point[2] Position= (-418.02,80.4304,1830.41)
+Point[0] Position= (459.983,-31.9907,-3474.79)
+Point[1] Position= (459.188,-31.9497,-3474.97)
+Point[2] Position= (459.237,-31.9762,-3475.05)
 
-TrackID =1717 : ParentID=1663 : TrackStatus=1
+TrackID =1747 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.7783 -13.0287 -33.0102 keV
-Vertex : -0.41808 0.0804068 1.8304 m    Global time : 6.52316 ns 
+Original momentum : 28.0665 -18.3612 2.76074 keV
+Vertex : 0.454225 -0.0315968 -3.43125 m    Global time : 11.554 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-418.08,80.4068,1830.4)
-Point[1] Position= (-418.067,80.3934,1830.36)
-
-TrackID =1662 : ParentID=1446 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 131.433 135.332 64.1312 keV
-Vertex : -0.409498 0.0785901 1.79229 m    Global time : 6.38261 ns 
-  Current trajectory has 10 points.
-Point[0] Position= (-409.498,78.5901,1792.29)
-Point[1] Position= (-405.305,82.9079,1794.34)
-Point[2] Position= (-401.629,86.3417,1793.36)
-Point[3] Position= (-399.028,87.335,1793.42)
-Point[4] Position= (-398.615,86.3022,1793.61)
-Point[5] Position= (-398.485,85.9623,1793.64)
-Point[6] Position= (-397.651,83.8028,1793.73)
-Point[7] Position= (-397.343,83.1356,1792.27)
-Point[8] Position= (-396.546,82.8962,1792.9)
-Point[9] Position= (-396.576,82.7808,1792.98)
+Point[0] Position= (454.225,-31.5968,-3431.25)
+Point[1] Position= (454.247,-31.6116,-3431.25)
 
-TrackID =1719 : ParentID=1662 : TrackStatus=1
+TrackID =1746 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.7445 -8.02366 25.1216 keV
-Vertex : -0.398615 0.0863022 1.79361 m    Global time : 6.53452 ns 
+Original momentum : 51.4831 -29.8055 3.58575 keV
+Vertex : 0.446668 -0.0310796 -3.37412 m    Global time : 11.3616 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-398.615,86.3022,1793.61)
-Point[1] Position= (-398.641,86.2944,1793.64)
+Point[0] Position= (446.668,-31.0796,-3374.12)
+Point[1] Position= (446.822,-31.1692,-3374.11)
 
-TrackID =1718 : ParentID=1662 : TrackStatus=1
+TrackID =1745 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.33603 -11.0154 -58.2331 keV
-Vertex : -0.399028 0.087335 1.79342 m    Global time : 6.52104 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-399.028,87.335,1793.42)
-Point[1] Position= (-399.024,87.3023,1793.24)
+Original momentum : -53.0314 -135.079 -26.8767 keV
+Vertex : 0.439569 -0.0305937 -3.32047 m    Global time : 11.1809 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (439.569,-30.5937,-3320.47)
+Point[1] Position= (438.56,-33.1636,-3320.99)
+Point[2] Position= (439.457,-35.0183,-3320.79)
+Point[3] Position= (440.45,-35.653,-3320.69)
+Point[4] Position= (440.389,-35.3048,-3320.34)
+Point[5] Position= (440.361,-35.2932,-3320.36)
 
-TrackID =1661 : ParentID=1446 : TrackStatus=1
+TrackID =1744 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.63751 -30.9309 3.92881 keV
-Vertex : -0.405911 0.0779039 1.77658 m    Global time : 6.32667 ns 
+Original momentum : -23.5378 22.9407 -4.40702 keV
+Vertex : 0.436273 -0.0303677 -3.29556 m    Global time : 11.097 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-405.911,77.9039,1776.58)
-Point[1] Position= (-405.906,77.8817,1776.59)
+Point[0] Position= (436.273,-30.3677,-3295.56)
+Point[1] Position= (436.254,-30.3498,-3295.56)
 
-TrackID =1660 : ParentID=1446 : TrackStatus=1
+TrackID =1743 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -105.704 41.1653 -12.4984 keV
-Vertex : -0.389697 0.0748012 1.70559 m    Global time : 6.07384 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-389.697,74.8012,1705.59)
-Point[1] Position= (-390.055,74.9407,1705.54)
-Point[2] Position= (-390.59,75.4892,1705.51)
-Point[3] Position= (-390.902,75.5468,1705.33)
+Original momentum : 50.2304 1.20422 4.12963 keV
+Vertex : 0.427127 -0.0297425 -3.22642 m    Global time : 10.8642 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (427.127,-29.7425,-3226.42)
+Point[1] Position= (427.228,-29.7401,-3226.41)
 
-TrackID =1721 : ParentID=1660 : TrackStatus=1
+TrackID =1742 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.84432 45.2876 24.9233 keV
-Vertex : -0.39059 0.0754892 1.70551 m    Global time : 6.09277 ns 
+Original momentum : -19.6788 30.4149 -4.19155 keV
+Vertex : 0.416365 -0.0290074 -3.14508 m    Global time : 10.5903 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-390.59,75.4892,1705.51)
-Point[1] Position= (-390.603,75.587,1705.56)
+Point[0] Position= (416.365,-29.0074,-3145.08)
+Point[1] Position= (416.346,-28.9783,-3145.08)
 
-TrackID =1720 : ParentID=1660 : TrackStatus=1
+TrackID =1741 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.3323 -27.5284 -1.38514 keV
-Vertex : -0.390055 0.0749407 1.70554 m    Global time : 6.07976 ns 
+Original momentum : -30.3792 20.1421 -5.54679 keV
+Vertex : 0.399043 -0.0278156 -3.01419 m    Global time : 10.1496 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-390.055,74.9407,1705.54)
-Point[1] Position= (-390.087,74.9091,1705.54)
+Point[0] Position= (399.043,-27.8156,-3014.19)
+Point[1] Position= (399.013,-27.7958,-3014.2)
 
-TrackID =1659 : ParentID=1446 : TrackStatus=1
+TrackID =1740 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 5.40176 -35.0539 4.09367 keV
-Vertex : -0.368484 0.0707398 1.61267 m    Global time : 5.74296 ns 
+Original momentum : -37.4851 0.480256 -6.39524 keV
+Vertex : 0.37453 -0.0261167 -2.82903 m    Global time : 9.52611 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-368.484,70.7398,1612.67)
-Point[1] Position= (-368.479,70.7077,1612.67)
+Point[0] Position= (374.53,-26.1167,-2829.03)
+Point[1] Position= (374.491,-26.1162,-2829.04)
 
-TrackID =1658 : ParentID=1446 : TrackStatus=1
+TrackID =1739 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.827 30.8714 5.70981 keV
-Vertex : -0.361805 0.0694614 1.5834 m    Global time : 5.63874 ns 
+Original momentum : 22.0379 24.0492 1.64268 keV
+Vertex : 0.346925 -0.0241835 -2.62057 m    Global time : 8.82417 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-361.805,69.4614,1583.4)
-Point[1] Position= (-361.777,69.4965,1583.41)
+Point[0] Position= (346.925,-24.1835,-2620.57)
+Point[1] Position= (346.942,-24.1654,-2620.57)
 
-TrackID =1657 : ParentID=1446 : TrackStatus=1
+TrackID =1738 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -17.1463 38.2234 -3.73935 keV
-Vertex : -0.3521 0.0676032 1.54087 m    Global time : 5.4873 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-352.1,67.6032,1540.87)
-Point[1] Position= (-352.122,67.6535,1540.87)
+Original momentum : -141.473 -107.055 -50.2929 keV
+Vertex : 0.322319 -0.0224639 -2.43473 m    Global time : 8.19839 ns 
+  Current trajectory has 9 points.
+Point[0] Position= (322.319,-22.4639,-2434.73)
+Point[1] Position= (319.507,-24.5921,-2435.73)
+Point[2] Position= (316.286,-26.6798,-2437.5)
+Point[3] Position= (315.65,-29.6346,-2438.91)
+Point[4] Position= (313.628,-29.6706,-2439.78)
+Point[5] Position= (312.653,-29.7581,-2440.37)
+Point[6] Position= (312.598,-29.8096,-2440.39)
+Point[7] Position= (312.03,-30.4795,-2440.23)
+Point[8] Position= (311.875,-30.4819,-2440.29)
 
-TrackID =1656 : ParentID=1446 : TrackStatus=1
+TrackID =1794 : ParentID=1738 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.9174 7.83429 7.84098 keV
-Vertex : -0.307354 0.0590237 1.3449 m    Global time : 4.78943 ns 
+Original momentum : -18.9382 24.8355 -18.6888 keV
+Vertex : 0.312653 -0.0297581 -2.44037 m    Global time : 8.36225 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-307.354,59.0237,1344.9)
-Point[1] Position= (-307.33,59.0296,1344.9)
+Point[0] Position= (312.653,-29.7581,-2440.37)
+Point[1] Position= (312.635,-29.7344,-2440.39)
 
-TrackID =1655 : ParentID=1446 : TrackStatus=1
+TrackID =1793 : ParentID=1738 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.0473 -1.61603 11.6694 keV
-Vertex : -0.269197 0.0517222 1.17784 m    Global time : 4.19453 ns 
+Original momentum : -24.0506 27.411 10.8358 keV
+Vertex : 0.319507 -0.0245921 -2.43573 m    Global time : 8.23441 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-269.197,51.7222,1177.84)
-Point[1] Position= (-269.137,51.7198,1177.86)
+Point[0] Position= (319.507,-24.5921,-2435.73)
+Point[1] Position= (319.482,-24.5633,-2435.72)
 
-TrackID =1654 : ParentID=1446 : TrackStatus=1
+TrackID =1737 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.883 -24.8405 7.29073 keV
-Vertex : -0.261594 0.0502619 1.14457 m    Global time : 4.07604 ns 
+Original momentum : 49.1764 -2.2486 4.12417 keV
+Vertex : 0.311963 -0.0217372 -2.35648 m    Global time : 7.93489 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-261.594,50.2619,1144.57)
-Point[1] Position= (-261.576,50.2416,1144.58)
+Point[0] Position= (311.963,-21.7372,-2356.48)
+Point[1] Position= (312.057,-21.7415,-2356.47)
 
-TrackID =1653 : ParentID=1446 : TrackStatus=1
+TrackID =1736 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.5325 -140.184 21.4306 keV
-Vertex : -0.24952 0.0479393 1.09173 m    Global time : 3.88786 ns 
-  Current trajectory has 6 points.
-Point[0] Position= (-249.52,47.9393,1091.73)
-Point[1] Position= (-250.008,45.3616,1092.12)
-Point[2] Position= (-248.209,44.3212,1092.52)
-Point[3] Position= (-247.809,42.9648,1092.63)
-Point[4] Position= (-247.873,42.9787,1092.69)
-Point[5] Position= (-248.237,43.0947,1092.83)
+Original momentum : -18.1292 36.146 -4.36491 keV
+Vertex : 0.253662 -0.0176681 -1.91607 m    Global time : 6.45191 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (253.662,-17.6681,-1916.07)
+Point[1] Position= (253.64,-17.624,-1916.07)
 
-TrackID =1723 : ParentID=1653 : TrackStatus=1
+TrackID =1735 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.9859 -4.91347 30.0496 keV
-Vertex : -0.247873 0.0429787 1.09269 m    Global time : 3.97247 ns 
+Original momentum : 16.3854 30.7966 0.683709 keV
+Vertex : 0.252438 -0.0175828 -1.90682 m    Global time : 6.42077 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-247.873,42.9787,1092.69)
-Point[1] Position= (-247.866,42.9751,1092.71)
+Point[0] Position= (252.438,-17.5828,-1906.82)
+Point[1] Position= (252.452,-17.556,-1906.82)
 
-TrackID =1722 : ParentID=1653 : TrackStatus=1
+TrackID =1734 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.8762 -8.18962 40.2551 keV
-Vertex : -0.247809 0.0429648 1.09263 m    Global time : 3.97064 ns 
+Original momentum : 42.8818 -10.6283 3.83578 keV
+Vertex : 0.242997 -0.0169246 -1.83549 m    Global time : 6.1806 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-247.809,42.9648,1092.63)
-Point[1] Position= (-247.727,42.9455,1092.73)
+Point[0] Position= (242.997,-16.9246,-1835.49)
+Point[1] Position= (243.061,-16.9404,-1835.49)
 
-TrackID =1652 : ParentID=1446 : TrackStatus=1
+TrackID =1733 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -51.4345 23.4617 -9.36587 keV
-Vertex : -0.247335 0.047519 1.08216 m    Global time : 3.8538 ns 
+Original momentum : -4.86286 -35.2699 -1.57131 keV
+Vertex : 0.236243 -0.0164536 -1.78448 m    Global time : 6.00884 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-247.335,47.519,1082.16)
-Point[1] Position= (-247.476,47.5831,1082.14)
+Point[0] Position= (236.243,-16.4536,-1784.48)
+Point[1] Position= (236.239,-16.4858,-1784.48)
 
-TrackID =1651 : ParentID=1446 : TrackStatus=1
+TrackID =1732 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.9703 7.52028 7.8722 keV
-Vertex : -0.245771 0.0472183 1.07532 m    Global time : 3.82944 ns 
+Original momentum : -29.1016 -24.7264 -5.08945 keV
+Vertex : 0.229497 -0.0159828 -1.73354 m    Global time : 5.8373 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-245.771,47.2183,1075.32)
-Point[1] Position= (-245.748,47.2241,1075.33)
+Point[0] Position= (229.497,-15.9828,-1733.54)
+Point[1] Position= (229.466,-16.0096,-1733.54)
 
-TrackID =1650 : ParentID=1446 : TrackStatus=1
+TrackID =1731 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.47288 38.9622 -0.910587 keV
-Vertex : -0.244683 0.0470091 1.07056 m    Global time : 3.81249 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-244.683,47.0091,1070.56)
-Point[1] Position= (-244.687,47.0528,1070.56)
+Original momentum : 24.2802 -73.4737 -1.98481 keV
+Vertex : 0.202715 -0.0141068 -1.53128 m    Global time : 5.15623 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (202.715,-14.1068,-1531.28)
+Point[1] Position= (202.854,-14.5267,-1531.29)
+Point[2] Position= (202.858,-14.54,-1531.33)
 
-TrackID =1649 : ParentID=1446 : TrackStatus=1
+TrackID =1730 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.9016 -15.1099 9.95081 keV
-Vertex : -0.239479 0.0460071 1.04779 m    Global time : 3.73138 ns 
+Original momentum : 41.6812 -3.50442 3.81303 keV
+Vertex : 0.194003 -0.0134911 -1.46548 m    Global time : 4.93467 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-239.479,46.0071,1047.79)
-Point[1] Position= (-239.442,45.9908,1047.8)
+Point[0] Position= (194.003,-13.4911,-1465.48)
+Point[1] Position= (194.057,-13.4957,-1465.48)
 
-TrackID =1648 : ParentID=1446 : TrackStatus=1
+TrackID =1729 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 100.173 -25.3998 36.4111 keV
-Vertex : -21.1064 4.05466 92.3446 cm   Global time : 3.28858 ns 
+Original momentum : -100.069 12.0375 -23.8571 keV
+Vertex : 0.183899 -0.0127752 -1.38919 m    Global time : 4.67776 ns 
   Current trajectory has 4 points.
-Point[0] Position= (-211.064,40.5466,923.446)
-Point[1] Position= (-210.324,40.359,923.715)
-Point[2] Position= (-210.495,40.4434,923.939)
-Point[3] Position= (-210.501,40.441,923.935)
+Point[0] Position= (183.899,-12.7752,-1389.19)
+Point[1] Position= (183.744,-12.7566,-1389.22)
+Point[2] Position= (182.857,-12.4967,-1389.1)
+Point[3] Position= (182.687,-12.4885,-1389.09)
+
+TrackID =1795 : ParentID=1729 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -11.3564 -32.3689 -12.9389 keV
+Vertex : 0.183744 -0.0127566 -1.38922 m    Global time : 4.68045 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (183.744,-12.7566,-1389.22)
+Point[1] Position= (183.733,-12.788,-1389.24)
 
-TrackID =1724 : ParentID=1648 : TrackStatus=1
+TrackID =1728 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.0584 -16.7582 27.9982 keV
-Vertex : -21.0324 4.0359 92.3715 cm   Global time : 3.30146 ns 
+Original momentum : 6.97229 -34.7842 0.00166098 keV
+Vertex : 0.165104 -0.0114513 -1.24724 m    Global time : 4.1998 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-210.324,40.359,923.715)
-Point[1] Position= (-210.297,40.3431,923.742)
+Point[0] Position= (165.104,-11.4513,-1247.24)
+Point[1] Position= (165.11,-11.4827,-1247.24)
 
-TrackID =1647 : ParentID=1446 : TrackStatus=1
+TrackID =1727 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.01972 41.0704 -1.37858 keV
-Vertex : -19.6976 3.78424 86.1803 cm   Global time : 3.06906 ns 
+Original momentum : 24.4626 -44.4715 1.10701 keV
+Vertex : 0.152241 -0.0105574 -1.15009 m    Global time : 3.87267 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-196.976,37.8424,861.803)
-Point[1] Position= (-196.981,37.8788,861.802)
+Point[0] Position= (152.241,-10.5574,-1150.09)
+Point[1] Position= (152.291,-10.6479,-1150.09)
 
-TrackID =1646 : ParentID=1446 : TrackStatus=1
+TrackID =1726 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 4.17718 38.4968 0.827785 keV
-Vertex : -18.1212 3.48128 79.2868 cm   Global time : 2.82356 ns 
+Original momentum : 27.2116 27.9754 1.83994 keV
+Vertex : 0.14949 -0.0103668 -1.12931 m    Global time : 3.80268 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-181.212,34.8128,792.868)
-Point[1] Position= (-181.208,34.855,792.869)
+Point[0] Position= (149.49,-10.3668,-1129.31)
+Point[1] Position= (149.52,-10.3355,-1129.31)
 
-TrackID =1645 : ParentID=1446 : TrackStatus=1
+TrackID =1725 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.427 -65.7402 4.93306 keV
-Vertex : -17.9454 3.44747 78.5177 cm   Global time : 2.79617 ns 
+Original momentum : -1.87087 -54.0946 -2.64435 keV
+Vertex : 0.148407 -0.0102919 -1.12113 m    Global time : 3.77515 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-179.454,34.4747,785.177)
-Point[1] Position= (-179.499,34.2111,785.197)
+Point[0] Position= (148.407,-10.2919,-1121.13)
+Point[1] Position= (148.403,-10.4208,-1121.14)
 
-TrackID =1644 : ParentID=1446 : TrackStatus=1
+TrackID =1724 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -55.1498 14.3629 -9.76475 keV
-Vertex : -17.2837 3.32033 75.6241 cm   Global time : 2.69312 ns 
+Original momentum : -29.1027 18 -5.19939 keV
+Vertex : 0.146996 -0.0101942 -1.11047 m    Global time : 3.73925 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-172.837,33.2033,756.241)
-Point[1] Position= (-172.991,33.2434,756.214)
+Point[0] Position= (146.996,-10.1942,-1110.47)
+Point[1] Position= (146.971,-10.1788,-1110.48)
 
-TrackID =1643 : ParentID=1446 : TrackStatus=1
+TrackID =1723 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.48814 -38.8735 5.08344 keV
-Vertex : -17.2106 3.30629 75.3047 cm   Global time : 2.68174 ns 
+Original momentum : -33.1112 -2.77073 -5.47654 keV
+Vertex : 0.135024 -0.00936341 -1.02003 m    Global time : 3.4347 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-172.106,33.0629,753.047)
-Point[1] Position= (-172.097,33.0174,753.053)
+Point[0] Position= (135.024,-9.36341,-1020.03)
+Point[1] Position= (134.997,-9.36564,-1020.03)
 
-TrackID =1642 : ParentID=1446 : TrackStatus=1
+TrackID =1722 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -43.8356 8.62877 -8.24301 keV
-Vertex : -13.7335 2.63751 60.0936 cm   Global time : 2.14004 ns 
+Original momentum : 45.3714 -0.624588 3.96696 keV
+Vertex : 0.133793 -0.00927802 -1.01073 m    Global time : 3.4034 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-137.335,26.3751,600.936)
-Point[1] Position= (-137.404,26.3886,600.923)
+Point[0] Position= (133.793,-9.27802,-1010.73)
+Point[1] Position= (133.865,-9.279,-1010.72)
 
-TrackID =1641 : ParentID=1446 : TrackStatus=1
+TrackID =1721 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.0707 -68.1039 5.24011 keV
-Vertex : -12.2291 2.34766 53.5088 cm   Global time : 1.90554 ns 
+Original momentum : 9.7997 -68.9995 -2.85278 keV
+Vertex : 12.2636 -0.850325 -92.6451 cm   Global time : 3.11961 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-122.291,23.4766,535.088)
-Point[1] Position= (-122.344,23.1776,535.111)
+Point[0] Position= (122.636,-8.50325,-926.451)
+Point[1] Position= (122.68,-8.81048,-926.464)
+
+TrackID =1720 : ParentID=1709 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -87.216 -47.8624 -21.228 keV
+Vertex : 10.0632 -0.696912 -76.0265 cm   Global time : 2.56001 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (100.632,-6.96912,-760.265)
+Point[1] Position= (100.534,-7.02307,-760.289)
+Point[2] Position= (99.8318,-7.43786,-760.626)
+Point[3] Position= (99.7659,-7.50947,-760.632)
 
-TrackID =1640 : ParentID=1446 : TrackStatus=1
+TrackID =1796 : ParentID=1720 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -53.124 -40.3233 -5.70631 keV
-Vertex : -6.42994 1.23093 28.1249 cm   Global time : 1.00159 ns 
+Original momentum : -19.8759 16.9443 20.2629 keV
+Vertex : 10.0534 -0.702307 -76.0289 cm   Global time : 2.56197 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-64.2994,12.3093,281.249)
-Point[1] Position= (-64.5126,12.1474,281.227)
+Point[0] Position= (100.534,-7.02307,-760.289)
+Point[1] Position= (100.519,-7.00995,-760.273)
 
-TrackID =1639 : ParentID=1446 : TrackStatus=1
+TrackID =1719 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.0297 -12.657 -6.27653 keV
-Vertex : -2.38866 0.455663 10.4445 cm   Global time : 371.957 ps 
+Original momentum : -11.7293 36.1053 -3.31651 keV
+Vertex : 8.33302 -0.576352 -62.9571 cm   Global time : 2.11993 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-23.8866,4.55663,104.445)
-Point[1] Position= (-23.9293,4.54204,104.438)
+Point[0] Position= (83.3302,-5.76352,-629.571)
+Point[1] Position= (83.3178,-5.72536,-629.575)
 
-TrackID =1638 : ParentID=1446 : TrackStatus=1
+TrackID =1718 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.4093 9.71353 8.55667 keV
-Vertex : -1.76597 0.336795 7.72197 cm   Global time : 274.999 ps 
+Original momentum : -5.55252 -32.346 -1.50351 keV
+Vertex : 6.56938 -0.454419 -49.6325 cm   Global time : 1.67125 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-17.6597,3.36795,77.2197)
-Point[1] Position= (-17.6288,3.37692,77.2276)
+Point[0] Position= (65.6938,-4.54419,-496.325)
+Point[1] Position= (65.6896,-4.56891,-496.326)
 
-TrackID =1637 : ParentID=1446 : TrackStatus=1
+TrackID =1717 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 50.3123 15.2077 13.9225 keV
-Vertex : -1.64589 0.313882 7.19696 cm   Global time : 256.302 ps 
+Original momentum : -38.9859 -29.8952 -7.31708 keV
+Vertex : 5.94967 -0.411374 -44.9507 cm   Global time : 1.51361 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-16.4589,3.13882,71.9696)
-Point[1] Position= (-16.3379,3.17537,72.0031)
+Point[0] Position= (59.4967,-4.11374,-449.507)
+Point[1] Position= (59.4214,-4.17151,-449.521)
 
-TrackID =1445 : ParentID=1441 : TrackStatus=1
-Particle name : unknown : k_star+  PDG code : 323  Charge : 1
-Original momentum : 1.15204 0.0504557 1.21247 GeV
-Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
+TrackID =1716 : ParentID=1709 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -22.4525 -26.7951 -3.94661 keV
+Vertex : 5.25304 -0.362988 -39.6875 cm   Global time : 1.33638 ns 
   Current trajectory has 2 points.
-Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
-Point[1] Position= (9.91059e-306,-2.20853e-306,8.27772e-306)
+Point[0] Position= (52.5304,-3.62988,-396.875)
+Point[1] Position= (52.5105,-3.65362,-396.879)
 
-TrackID =1771 : ParentID=1726 : TrackStatus=1
+TrackID =1715 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 39.3753 18.4804 -6.64403 keV
-Vertex : 0.136698 0.465534 1.40884 m    Global time : 9.20829 ns 
+Original momentum : 14.1806 28.6856 0.602747 keV
+Vertex : 5.06222 -0.349726 -38.2459 cm   Global time : 1.28784 ns 
   Current trajectory has 2 points.
-Point[0] Position= (136.698,465.534,1408.84)
-Point[1] Position= (136.755,465.561,1408.83)
+Point[0] Position= (50.6222,-3.49726,-382.459)
+Point[1] Position= (50.6324,-3.47653,-382.459)
 
-TrackID =1770 : ParentID=1726 : TrackStatus=1
+TrackID =1714 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.417 -15.9501 10.5665 keV
-Vertex : 0.130929 0.447858 1.3553 m    Global time : 8.85753 ns 
+Original momentum : -7.12427 52.3404 -4.18808 keV
+Vertex : 4.46558 -0.308354 -33.7382 cm   Global time : 1.13605 ns 
   Current trajectory has 2 points.
-Point[0] Position= (130.929,447.858,1355.3)
-Point[1] Position= (130.906,447.845,1355.31)
+Point[0] Position= (44.6558,-3.08354,-337.382)
+Point[1] Position= (44.6397,-2.96535,-337.391)
 
-TrackID =1769 : ParentID=1726 : TrackStatus=1
+TrackID =1713 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.02518 -30.6527 12.3194 keV
-Vertex : 0.130828 0.447548 1.35436 m    Global time : 8.85137 ns 
+Original momentum : 9.57512 -37.4897 0.133008 keV
+Vertex : 3.87425 -0.267441 -29.269 cm   Global time : 985.564 ps 
   Current trajectory has 2 points.
-Point[0] Position= (130.828,447.548,1354.36)
-Point[1] Position= (130.828,447.524,1354.37)
+Point[0] Position= (38.7425,-2.67441,-292.69)
+Point[1] Position= (38.7529,-2.71539,-292.69)
 
-TrackID =1768 : ParentID=1726 : TrackStatus=1
+TrackID =1712 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.8833 22.3239 -7.71862 keV
-Vertex : 0.129026 0.442004 1.33755 m    Global time : 8.74127 ns 
+Original momentum : 43.0123 22.784 3.13956 keV
+Vertex : 3.18242 -0.219692 -24.0414 cm   Global time : 809.535 ps 
   Current trajectory has 2 points.
-Point[0] Position= (129.026,442.004,1337.55)
-Point[1] Position= (129.043,442.02,1337.54)
+Point[0] Position= (31.8242,-2.19692,-240.414)
+Point[1] Position= (31.9038,-2.15475,-240.408)
 
-TrackID =1767 : ParentID=1726 : TrackStatus=1
+TrackID =1711 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 86.9483 36.8797 -4.45913 keV
-Vertex : 0.118517 0.409673 1.2395 m    Global time : 8.09915 ns 
+Original momentum : 70.5268 39.8478 2.52481 keV
+Vertex : 1.60373 -0.110631 -12.1145 cm   Global time : 407.927 ps 
   Current trajectory has 3 points.
-Point[0] Position= (118.517,409.673,1239.5)
-Point[1] Position= (119.333,410.019,1239.46)
-Point[2] Position= (119.378,410.02,1239.44)
+Point[0] Position= (16.0373,-1.10631,-121.145)
+Point[1] Position= (16.1448,-1.04561,-121.141)
+Point[2] Position= (16.1899,-0.929189,-121.031)
 
-TrackID =1766 : ParentID=1726 : TrackStatus=1
+TrackID =1797 : ParentID=1711 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.809 32.8146 -1.9406 keV
-Vertex : 0.116539 0.403595 1.22105 m    Global time : 7.97835 ns 
+Original momentum : 47.118 4.58326 -23.9346 keV
+Vertex : 1.61448 -0.104561 -12.1141 cm   Global time : 410.556 ps 
   Current trajectory has 2 points.
-Point[0] Position= (116.539,403.595,1221.05)
-Point[1] Position= (116.464,403.66,1221.05)
+Point[0] Position= (16.1448,-1.04561,-121.141)
+Point[1] Position= (16.2514,-1.03523,-121.195)
 
-TrackID =1765 : ParentID=1726 : TrackStatus=1
+TrackID =1710 : ParentID=1709 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.2598 23.5784 -0.0221051 keV
-Vertex : 0.114419 0.397092 1.20131 m    Global time : 7.84911 ns 
+Original momentum : 38.2941 26.8003 2.6644 keV
+Vertex : 0.554313 -0.0382619 -4.1875 cm   Global time : 141.004 ps 
   Current trajectory has 2 points.
-Point[0] Position= (114.419,397.092,1201.31)
-Point[1] Position= (114.365,397.127,1201.31)
+Point[0] Position= (5.54313,-0.382619,-41.875)
+Point[1] Position= (5.60749,-0.337576,-41.8705)
 
-TrackID =1764 : ParentID=1726 : TrackStatus=1
+TrackID =1820 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -86.283 -63.4666 58.3272 keV
-Vertex : 0.112606 0.391536 1.18445 m    Global time : 7.7387 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (112.606,391.536,1184.45)
-Point[1] Position= (111.36,390.619,1185.3)
-Point[2] Position= (111.092,390.504,1185.44)
-Point[3] Position= (111.024,390.755,1185.96)
-Point[4] Position= (111.043,390.744,1185.94)
+Original momentum : 35.0065 -13.0088 7.39165 keV
+Vertex : 0.316415 -0.373744 -1.79724 m    Global time : 6.23237 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (316.415,-373.744,-1797.24)
+Point[1] Position= (316.452,-373.757,-1797.23)
 
-TrackID =1772 : ParentID=1764 : TrackStatus=1
+TrackID =1819 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.3465 15.8654 -11.6518 keV
-Vertex : 0.111092 0.390504 1.18544 m    Global time : 7.76984 ns 
+Original momentum : 33.9041 41.785 -5.70115 keV
+Vertex : 0.306964 -0.362559 -1.7435 m    Global time : 6.04603 ns 
   Current trajectory has 2 points.
-Point[0] Position= (111.092,390.504,1185.44)
-Point[1] Position= (111.058,390.52,1185.43)
+Point[0] Position= (306.964,-362.559,-1743.5)
+Point[1] Position= (307.044,-362.46,-1743.51)
 
-TrackID =1763 : ParentID=1726 : TrackStatus=1
+TrackID =1818 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 81.2604 5.00699 2.34686 keV
-Vertex : 0.109376 0.381528 1.15415 m    Global time : 7.54028 ns 
+Original momentum : 36.4977 15.9241 1.49569 keV
+Vertex : 0.280155 -0.330846 -1.59121 m    Global time : 5.51789 ns 
   Current trajectory has 2 points.
-Point[0] Position= (109.376,381.528,1154.15)
-Point[1] Position= (109.913,381.561,1154.16)
+Point[0] Position= (280.155,-330.846,-1591.21)
+Point[1] Position= (280.198,-330.828,-1591.21)
 
-TrackID =1762 : ParentID=1726 : TrackStatus=1
+TrackID =1817 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.6879 -31.3571 11.0327 keV
-Vertex : 0.0988246 0.348782 1.05517 m    Global time : 6.89221 ns 
+Original momentum : -49.466 -54.396 -2.85995 keV
+Vertex : 0.277755 -0.328007 -1.57757 m    Global time : 5.47061 ns 
   Current trajectory has 2 points.
-Point[0] Position= (98.8246,348.782,1055.17)
-Point[1] Position= (98.8635,348.738,1055.19)
+Point[0] Position= (277.755,-328.007,-1577.57)
+Point[1] Position= (277.503,-328.285,-1577.59)
 
-TrackID =1761 : ParentID=1726 : TrackStatus=1
+TrackID =1816 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.17023 42.2011 -11.1411 keV
-Vertex : 0.0972002 0.343734 1.03994 m    Global time : 6.79242 ns 
+Original momentum : -10.8211 -29.7591 3.25933 keV
+Vertex : 0.244481 -0.288645 -1.38846 m    Global time : 4.8148 ns 
   Current trajectory has 2 points.
-Point[0] Position= (97.2002,343.734,1039.94)
-Point[1] Position= (97.214,343.797,1039.92)
+Point[0] Position= (244.481,-288.645,-1388.46)
+Point[1] Position= (244.474,-288.666,-1388.46)
 
-TrackID =1760 : ParentID=1726 : TrackStatus=1
+TrackID =1815 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -22.4517 -30.1043 15.5541 keV
-Vertex : 9.27371 32.986 99.8078 cm   Global time : 6.51832 ns 
+Original momentum : -30.6675 12.3498 -9.15675 keV
+Vertex : 0.241535 -0.285157 -1.3717 m    Global time : 4.75669 ns 
   Current trajectory has 2 points.
-Point[0] Position= (92.7371,329.86,998.078)
-Point[1] Position= (92.718,329.834,998.091)
+Point[0] Position= (241.535,-285.157,-1371.7)
+Point[1] Position= (241.509,-285.147,-1371.71)
 
-TrackID =1759 : ParentID=1726 : TrackStatus=1
+TrackID =1814 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 71.1656 26.0602 -5.21435 keV
-Vertex : 8.85397 31.6727 95.8564 cm   Global time : 6.25953 ns 
+Original momentum : 29.8908 13.2645 1.407 keV
+Vertex : 0.23699 -0.279779 -1.34585 m    Global time : 4.66705 ns 
   Current trajectory has 2 points.
-Point[0] Position= (88.5397,316.727,958.564)
-Point[1] Position= (88.7698,316.811,958.547)
+Point[0] Position= (236.99,-279.779,-1345.85)
+Point[1] Position= (237.013,-279.769,-1345.85)
 
-TrackID =1758 : ParentID=1726 : TrackStatus=1
+TrackID =1813 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -28.1302 -84.064 50.1953 keV
-Vertex : 8.48845 30.3414 91.8458 cm   Global time : 5.99727 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (84.8845,303.414,918.458)
-Point[1] Position= (84.7048,302.877,918.778)
-Point[2] Position= (84.8151,302.984,918.911)
-Point[3] Position= (84.8177,302.985,918.868)
+Original momentum : -1.02953 39.2109 -9.99407 keV
+Vertex : 0.216583 -0.255647 -1.22979 m    Global time : 4.2646 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (216.583,-255.647,-1229.79)
+Point[1] Position= (216.582,-255.6,-1229.81)
 
-TrackID =1757 : ParentID=1726 : TrackStatus=1
+TrackID =1812 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.6145 29.4019 -8.28155 keV
-Vertex : 8.17376 29.1913 88.3915 cm   Global time : 5.77134 ns 
+Original momentum : 13.0758 31.747 -5.53151 keV
+Vertex : 0.201193 -0.237452 -1.14228 m    Global time : 3.96112 ns 
   Current trajectory has 2 points.
-Point[0] Position= (81.7376,291.913,883.915)
-Point[1] Position= (81.8055,291.957,883.902)
+Point[0] Position= (201.193,-237.452,-1142.28)
+Point[1] Position= (201.204,-237.424,-1142.28)
 
-TrackID =1756 : ParentID=1726 : TrackStatus=1
+TrackID =1811 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.49375 -28.5989 12.3181 keV
-Vertex : 8.09225 28.8935 87.499 cm   Global time : 5.71296 ns 
+Original momentum : -22.6357 22.851 -9.87904 keV
+Vertex : 0.18283 -0.215725 -1.03778 m    Global time : 3.59878 ns 
   Current trajectory has 2 points.
-Point[0] Position= (80.9225,288.935,874.99)
-Point[1] Position= (80.9178,288.919,874.997)
+Point[0] Position= (182.83,-215.725,-1037.78)
+Point[1] Position= (182.812,-215.707,-1037.79)
 
-TrackID =1755 : ParentID=1726 : TrackStatus=1
+TrackID =1810 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 48.2549 -18.5296 6.97143 keV
-Vertex : 7.79828 27.8156 84.2681 cm   Global time : 5.50162 ns 
+Original momentum : -40.0068 43.0392 -19.8762 keV
+Vertex : 16.3632 -19.303 -92.858 cm   Global time : 3.22012 ns 
   Current trajectory has 2 points.
-Point[0] Position= (77.9828,278.156,842.681)
-Point[1] Position= (78.0508,278.129,842.691)
+Point[0] Position= (163.632,-193.03,-928.58)
+Point[1] Position= (163.551,-192.943,-928.621)
 
-TrackID =1754 : ParentID=1726 : TrackStatus=1
+TrackID =1809 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -82.4579 11.9648 17.414 keV
-Vertex : 7.62457 27.1837 82.3716 cm   Global time : 5.37758 ns 
+Original momentum : -48.1485 64.4235 -29.2455 keV
+Vertex : 16.3549 -19.2932 -92.8109 cm   Global time : 3.21849 ns 
   Current trajectory has 3 points.
-Point[0] Position= (76.2457,271.837,823.716)
-Point[1] Position= (75.904,271.886,823.788)
-Point[2] Position= (75.8985,271.868,823.812)
+Point[0] Position= (163.549,-192.932,-928.109)
+Point[1] Position= (163.344,-192.659,-928.233)
+Point[2] Position= (163.371,-192.598,-928.254)
 
-TrackID =1773 : ParentID=1754 : TrackStatus=1
+TrackID =1808 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.2733 18.1243 7.92739 keV
-Vertex : 7.5904 27.1886 82.3788 cm   Global time : 5.38474 ns 
+Original momentum : 28.6541 -13.9896 6.86518 keV
+Vertex : 16.0639 -18.9495 -91.1558 cm   Global time : 3.1611 ns 
   Current trajectory has 2 points.
-Point[0] Position= (75.904,271.886,823.788)
-Point[1] Position= (75.8878,271.897,823.793)
+Point[0] Position= (160.639,-189.495,-911.558)
+Point[1] Position= (160.655,-189.503,-911.554)
 
-TrackID =1753 : ParentID=1726 : TrackStatus=1
+TrackID =1807 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.1754 -149.275 114.304 keV
-Vertex : 7.32909 26.1204 79.1768 cm   Global time : 5.16864 ns 
-  Current trajectory has 10 points.
-Point[0] Position= (73.2909,261.204,791.768)
-Point[1] Position= (74.1415,257.878,794.315)
-Point[2] Position= (77.4198,258.061,793.206)
-Point[3] Position= (78.0645,260.298,793.845)
-Point[4] Position= (78.9865,259.621,792.338)
-Point[5] Position= (80.2552,259.023,792.164)
-Point[6] Position= (80.2963,259.073,792.137)
-Point[7] Position= (81.0035,259.207,791.711)
-Point[8] Position= (80.6541,259.293,791.886)
-Point[9] Position= (80.6031,259.287,791.888)
+Original momentum : 53.6308 -14.6671 9.26563 keV
+Vertex : 15.5225 -18.3104 -88.0796 cm   Global time : 3.05443 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (155.225,-183.104,-880.796)
+Point[1] Position= (155.314,-183.129,-880.781)
 
-TrackID =1775 : ParentID=1753 : TrackStatus=1
+TrackID =1806 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.5986 -29.0985 -16.3687 keV
-Vertex : 8.06541 25.9293 79.1886 cm   Global time : 5.33569 ns 
+Original momentum : 39.8765 26.0624 -0.696723 keV
+Vertex : 15.2522 -17.9914 -86.544 cm   Global time : 3.00118 ns 
   Current trajectory has 2 points.
-Point[0] Position= (80.6541,259.293,791.886)
-Point[1] Position= (80.6556,259.276,791.876)
+Point[0] Position= (152.522,-179.914,-865.44)
+Point[1] Position= (152.568,-179.884,-865.44)
 
-TrackID =1774 : ParentID=1753 : TrackStatus=1
+TrackID =1805 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.3386 29.7352 -24.7349 keV
-Vertex : 8.02963 25.9073 79.2137 cm   Global time : 5.31459 ns 
+Original momentum : 12.4974 31.7225 -5.60147 keV
+Vertex : 15.2199 -17.9534 -86.3609 cm   Global time : 2.99483 ns 
   Current trajectory has 2 points.
-Point[0] Position= (80.2963,259.073,792.137)
-Point[1] Position= (80.2765,259.102,792.113)
+Point[0] Position= (152.199,-179.534,-863.609)
+Point[1] Position= (152.207,-179.514,-863.612)
 
-TrackID =1752 : ParentID=1726 : TrackStatus=1
+TrackID =1804 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 75.0056 -52.551 27.9247 keV
-Vertex : 7.32833 26.1177 79.1685 cm   Global time : 5.16811 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (73.2833,261.177,791.685)
-Point[1] Position= (73.6981,260.886,791.84)
-Point[2] Position= (73.7255,260.87,791.828)
+Original momentum : -26.7428 29.7804 -12.6875 keV
+Vertex : 14.5546 -17.1683 -82.5818 cm   Global time : 2.86379 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (145.546,-171.683,-825.818)
+Point[1] Position= (145.521,-171.656,-825.829)
 
-TrackID =1751 : ParentID=1726 : TrackStatus=1
+TrackID =1803 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.9327 34.4523 -9.95796 keV
-Vertex : 7.22647 25.7535 78.0696 cm   Global time : 5.09628 ns 
+Original momentum : 1.15922 -38.7562 6.68879 keV
+Vertex : 11.4023 -13.4494 -64.6939 cm   Global time : 2.24347 ns 
   Current trajectory has 2 points.
-Point[0] Position= (72.2647,257.535,780.696)
-Point[1] Position= (72.3047,257.577,780.684)
+Point[0] Position= (114.023,-134.494,-646.939)
+Point[1] Position= (114.025,-134.538,-646.931)
 
-TrackID =1750 : ParentID=1726 : TrackStatus=1
+TrackID =1802 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -41.8611 3.1144 6.33406 keV
-Vertex : 6.99477 24.9299 75.5851 cm   Global time : 4.9339 ns 
+Original momentum : 36.8046 10.6052 2.78491 keV
+Vertex : 8.675 -10.2323 -49.2203 cm   Global time : 1.70687 ns 
   Current trajectory has 2 points.
-Point[0] Position= (69.9477,249.299,755.851)
-Point[1] Position= (69.909,249.302,755.857)
+Point[0] Position= (86.75,-102.323,-492.203)
+Point[1] Position= (86.7895,-102.312,-492.2)
 
-TrackID =1749 : ParentID=1726 : TrackStatus=1
+TrackID =1801 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.94897 36.495 -8.26204 keV
-Vertex : 6.74767 24.0575 72.9452 cm   Global time : 4.7614 ns 
+Original momentum : -13.4647 35.8812 -11.4548 keV
+Vertex : 8.34546 -9.84379 -47.3509 cm   Global time : 1.64204 ns 
   Current trajectory has 2 points.
-Point[0] Position= (67.4767,240.575,729.452)
-Point[1] Position= (67.4689,240.604,729.445)
+Point[0] Position= (83.4546,-98.4379,-473.509)
+Point[1] Position= (83.4387,-98.3957,-473.523)
 
-TrackID =1748 : ParentID=1726 : TrackStatus=1
+TrackID =1800 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.6585 -20.8483 7.02247 keV
-Vertex : 6.26966 22.3502 67.7973 cm   Global time : 4.42497 ns 
+Original momentum : -19.1456 -38.6936 2.76952 keV
+Vertex : 8.04285 -9.4869 -45.6337 cm   Global time : 1.58249 ns 
   Current trajectory has 2 points.
-Point[0] Position= (62.6966,223.502,677.973)
-Point[1] Position= (62.7309,223.482,677.98)
+Point[0] Position= (80.4285,-94.869,-456.337)
+Point[1] Position= (80.4017,-94.9233,-456.333)
 
-TrackID =1747 : ParentID=1726 : TrackStatus=1
+TrackID =1799 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 54.7161 35.8058 -8.63553 keV
-Vertex : 6.22084 22.1749 67.2688 cm   Global time : 4.39044 ns 
+Original momentum : 34.4757 8.33968 3.05313 keV
+Vertex : 5.24597 -6.18623 -29.7554 cm   Global time : 1.03188 ns 
   Current trajectory has 2 points.
-Point[0] Position= (62.2084,221.749,672.688)
-Point[1] Position= (62.3362,221.833,672.668)
+Point[0] Position= (52.4597,-61.8623,-297.554)
+Point[1] Position= (52.4911,-61.8547,-297.551)
 
-TrackID =1746 : ParentID=1726 : TrackStatus=1
+TrackID =1798 : ParentID=1708 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 78.7331 17.676 -0.93975 keV
-Vertex : 5.63433 20.1162 61.0561 cm   Global time : 3.98445 ns 
+Original momentum : 53.1831 45.8455 -5.16562 keV
+Vertex : 1.8601 -2.19186 -10.5453 cm   Global time : 365.699 ps 
   Current trajectory has 3 points.
-Point[0] Position= (56.3433,201.162,610.561)
-Point[1] Position= (56.6357,201.228,610.557)
-Point[2] Position= (56.6354,201.229,610.559)
+Point[0] Position= (18.601,-21.9186,-105.453)
+Point[1] Position= (18.836,-21.716,-105.476)
+Point[2] Position= (18.9061,-21.8043,-105.507)
 
-TrackID =1745 : ParentID=1726 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.5277 6.04263 3.22271 keV
-Vertex : 5.5892 19.9599 60.5836 cm   Global time : 3.95358 ns 
+TrackID =46 : ParentID=45 : TrackStatus=1
+Particle name : eta  PDG code : 221  Charge : 0
+Original momentum : 149.758 47.7835 55.4072 MeV
+Vertex : -1.82657e-295 -1.61751e-296 1.33387e-293 fm   Global time : 6.39567e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (55.892,199.599,605.836)
-Point[1] Position= (55.8731,199.602,605.838)
+Point[0] Position= (-1.82657e-307,-1.61751e-308,1.33387e-305)
+Point[1] Position= (-1.77824e-307,-1.46331e-308,1.33405e-305)
 
-TrackID =1744 : ParentID=1726 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -38.2708 10.8597 3.10784 keV
-Vertex : 5.27079 18.8565 57.249 cm   Global time : 3.73569 ns 
+TrackID =42 : ParentID=0 : TrackStatus=1
+Particle name : unknown : gluon  PDG code : 21  Charge : 0
+Original momentum : -2.12856 0.964505 15.101 GeV
+Vertex : 0 0 0 fm   Global time : 0 ps 
   Current trajectory has 2 points.
-Point[0] Position= (52.7079,188.565,572.49)
-Point[1] Position= (52.6632,188.578,572.494)
-
-TrackID =1743 : ParentID=1726 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -53.4059 93.9871 -3.77063 keV
-Vertex : 5.13241 18.3787 55.8026 cm   Global time : 3.6412 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (51.3241,183.787,558.026)
-Point[1] Position= (50.6812,184.918,557.981)
-Point[2] Position= (49.8594,184.82,558.242)
-Point[3] Position= (49.612,184.804,558.248)
+Point[0] Position= (0,0,0)
+Point[1] Position= (-9.29192e-307,4.21041e-307,6.59214e-306)
 
-TrackID =1742 : ParentID=1726 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -44.4081 -16.8797 14.4865 keV
-Vertex : 4.32142 15.5616 47.2838 cm   Global time : 3.08473 ns 
+TrackID =41 : ParentID=0 : TrackStatus=1
+Particle name : unknown : gluon  PDG code : 21  Charge : 0
+Original momentum : 2.12856 -0.964505 -1.29145 GeV
+Vertex : 0 0 0 fm   Global time : 0 ps 
   Current trajectory has 2 points.
-Point[0] Position= (43.2142,155.616,472.838)
-Point[1] Position= (43.1284,155.584,472.866)
+Point[0] Position= (0,0,0)
+Point[1] Position= (5.31791e-306,-2.40968e-306,-3.22649e-306)
 
-TrackID =1741 : ParentID=1726 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.48475 -31.395 13.1612 keV
-Vertex : 4.31549 15.5409 47.221 cm   Global time : 3.08062 ns 
+TrackID =1823 : ParentID=41 : TrackStatus=1
+Particle name : unknown  PDG code : 92  Charge : 0
+Original momentum : 0 0 22.5268 GeV
+Vertex : 5.31791e-294 -2.40968e-294 -3.22649e-294 fm   Global time : 2.22507e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (43.1549,155.409,472.21)
-Point[1] Position= (43.1502,155.382,472.221)
+Point[0] Position= (5.31791e-306,-2.40968e-306,-3.22649e-306)
+Point[1] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
+
+TrackID =1832 : ParentID=1823 : TrackStatus=1
+Particle name : pi-  PDG code : -211  Charge : -1
+Original momentum : -0.793169 0.244283 4.61318 GeV
+Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
+  Current trajectory has 58 points.
+Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
+Point[1] Position= (-28.6506,8.82429,166.669)
+Point[2] Position= (-87.6573,26.9861,510.037)
+Point[3] Position= (-113.197,34.8594,658.714)
+Point[4] Position= (-129.175,39.7857,751.717)
+Point[5] Position= (-141.304,43.5219,822.326)
+Point[6] Position= (-145.108,44.6934,844.466)
+Point[7] Position= (-175.268,53.9836,1020.05)
+Point[8] Position= (-187.235,57.6668,1089.74)
+Point[9] Position= (-191.387,58.9446,1113.91)
+Point[10] Position= (-194.417,59.877,1131.56)
+Point[11] Position= (-199.799,61.5325,1162.9)
+Point[12] Position= (-205.63,63.3259,1196.85)
+Point[13] Position= (-205.736,63.3585,1197.47)
+Point[14] Position= (-217.261,66.9027,1264.57)
+Point[15] Position= (-237.046,72.9878,1379.76)
+Point[16] Position= (-269.293,82.8964,1567.56)
+Point[17] Position= (-271.502,83.5751,1580.42)
+Point[18] Position= (-279.771,86.1158,1628.58)
+Point[19] Position= (-286.115,88.0643,1665.52)
+Point[20] Position= (-297.37,91.5196,1731.07)
+Point[21] Position= (-305.814,94.1113,1780.24)
+Point[22] Position= (-331.423,101.962,1929.32)
+Point[23] Position= (-361.097,111.047,2102.03)
+Point[24] Position= (-391.803,120.456,2280.76)
+Point[25] Position= (-457.417,140.569,2662.8)
+Point[26] Position= (-500.122,153.638,2911.46)
+Point[27] Position= (-509.764,156.586,2967.59)
+Point[28] Position= (-517.94,159.086,3015.18)
+Point[29] Position= (-519.524,159.57,3024.41)
+Point[30] Position= (-522.245,160.402,3040.24)
+Point[31] Position= (-524.679,161.146,3054.41)
+Point[32] Position= (-560.325,172.058,3261.82)
+Point[33] Position= (-595.617,182.854,3467.12)
+Point[34] Position= (-609.921,187.232,3550.35)
+Point[35] Position= (-660.874,202.805,3846.82)
+Point[36] Position= (-686.553,210.655,3996.22)
+Point[37] Position= (-720.241,220.95,4192.18)
+Point[38] Position= (-743.789,228.138,4329.15)
+Point[39] Position= (-764.412,234.44,4449.11)
+Point[40] Position= (-774.951,237.662,4510.39)
+Point[41] Position= (-791.785,242.808,4608.28)
+Point[42] Position= (-796.748,244.325,4637.14)
+Point[43] Position= (-812.371,249.097,4727.98)
+Point[44] Position= (-813.682,249.497,4735.6)
+Point[45] Position= (-835.516,256.161,4862.55)
+Point[46] Position= (-852.363,261.297,4960.48)
+Point[47] Position= (-875.933,268.479,5097.51)
+Point[48] Position= (-885.948,271.528,5155.73)
+Point[49] Position= (-899.951,275.796,5237.15)
+Point[50] Position= (-910.134,278.896,5296.35)
+Point[51] Position= (-931.875,285.519,5422.77)
+Point[52] Position= (-946.525,289.98,5507.94)
+Point[53] Position= (-947.569,290.298,5514.01)
+Point[54] Position= (-1002.63,307.05,5834.18)
+Point[55] Position= (-1002.7,307.071,5834.58)
+Point[56] Position= (-1012.16,309.947,5889.62)
+Point[57] Position= (-1031.14,315.714,6000)
+
+TrackID =1888 : ParentID=1832 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -79.6451 -13.2382 -6.51565 keV
+Vertex : -1.01216 0.309947 5.88962 m    Global time : 19.9693 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-1012.16,309.947,5889.62)
+Point[1] Position= (-1012.68,309.86,5889.58)
+Point[2] Position= (-1012.66,309.855,5889.55)
 
-TrackID =1740 : ParentID=1726 : TrackStatus=1
+TrackID =1887 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.9897 21.9973 -2.23562 keV
-Vertex : 3.66294 13.232 40.2262 cm   Global time : 2.62392 ns 
+Original momentum : -12.4242 29.3616 -2.65426 keV
+Vertex : -1.0027 0.307071 5.83458 m    Global time : 19.7827 ns 
   Current trajectory has 2 points.
-Point[0] Position= (36.6294,132.32,402.262)
-Point[1] Position= (36.6039,132.34,402.26)
+Point[0] Position= (-1002.7,307.071,5834.58)
+Point[1] Position= (-1002.71,307.092,5834.58)
 
-TrackID =1739 : ParentID=1726 : TrackStatus=1
+TrackID =1886 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 86.9031 -11.6917 10.6985 keV
-Vertex : 3.48018 12.5777 38.2427 cm   Global time : 2.49444 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (34.8018,125.777,382.427)
-Point[1] Position= (34.9892,125.752,382.45)
-Point[2] Position= (35.3538,125.612,382.59)
+Original momentum : -131.538 -51.1585 -0.497492 keV
+Vertex : -1.00263 0.30705 5.83418 m    Global time : 19.7813 ns 
+  Current trajectory has 7 points.
+Point[0] Position= (-1002.63,307.05,5834.18)
+Point[1] Position= (-1004.97,306.139,5834.17)
+Point[2] Position= (-1005,306.135,5834.16)
+Point[3] Position= (-1005.96,306.575,5833.56)
+Point[4] Position= (-1006.49,306.712,5834.12)
+Point[5] Position= (-1006.49,306.689,5834.08)
+Point[6] Position= (-1006.5,306.669,5834.03)
 
-TrackID =1776 : ParentID=1739 : TrackStatus=1
+TrackID =1889 : ParentID=1886 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.944 26.386 -14.9418 keV
-Vertex : 3.49892 12.5752 38.245 cm   Global time : 2.49818 ns 
+Original momentum : -36.7147 -56.169 16.876 keV
+Vertex : -1.005 0.306135 5.83416 m    Global time : 19.8132 ns 
   Current trajectory has 2 points.
-Point[0] Position= (34.9892,125.752,382.45)
-Point[1] Position= (35.0026,125.774,382.438)
+Point[0] Position= (-1005,306.135,5834.16)
+Point[1] Position= (-1005.16,305.89,5834.24)
 
-TrackID =1738 : ParentID=1726 : TrackStatus=1
+TrackID =1885 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.594 68.252 -9.10754 keV
-Vertex : 3.36689 12.1721 37.0135 cm   Global time : 2.4142 ns 
+Original momentum : -42.9036 -19.2919 -4.15536 keV
+Vertex : -0.947569 0.290298 5.51401 m    Global time : 18.6958 ns 
   Current trajectory has 2 points.
-Point[0] Position= (33.6689,121.721,370.135)
-Point[1] Position= (33.5109,122.086,370.086)
+Point[0] Position= (-947.569,290.298,5514.01)
+Point[1] Position= (-947.642,290.265,5514)
 
-TrackID =1737 : ParentID=1726 : TrackStatus=1
+TrackID =1884 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.95455 -33.2358 14.6106 keV
-Vertex : 2.40368 8.71514 26.5511 cm   Global time : 1.73127 ns 
+Original momentum : -1.23492 -32.6186 2.56129 keV
+Vertex : -0.946525 0.28998 5.50794 m    Global time : 18.6752 ns 
   Current trajectory has 2 points.
-Point[0] Position= (24.0368,87.1514,265.511)
-Point[1] Position= (24.0265,87.1172,265.526)
+Point[0] Position= (-946.525,289.98,5507.94)
+Point[1] Position= (-946.526,289.955,5507.94)
 
-TrackID =1736 : ParentID=1726 : TrackStatus=1
+TrackID =1883 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -20.8565 24.0572 -4.07497 keV
-Vertex : 1.97422 7.16617 21.8598 cm   Global time : 1.42512 ns 
+Original momentum : 58.1814 20.27 12.8719 keV
+Vertex : -0.931875 0.285519 5.42277 m    Global time : 18.3864 ns 
   Current trajectory has 2 points.
-Point[0] Position= (19.7422,71.6617,218.598)
-Point[1] Position= (19.727,71.6792,218.595)
+Point[0] Position= (-931.875,285.519,5422.77)
+Point[1] Position= (-931.674,285.588,5422.81)
 
-TrackID =1735 : ParentID=1726 : TrackStatus=1
+TrackID =1882 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -18.7444 -40.7342 19.7342 keV
-Vertex : 1.79757 6.52524 19.9208 cm   Global time : 1.29857 ns 
+Original momentum : -29.9802 -45.0751 0.111264 keV
+Vertex : -0.910134 0.278896 5.29635 m    Global time : 17.9578 ns 
   Current trajectory has 2 points.
-Point[0] Position= (17.9757,65.2524,199.208)
-Point[1] Position= (17.9406,65.1762,199.244)
+Point[0] Position= (-910.134,278.896,5296.35)
+Point[1] Position= (-910.205,278.789,5296.35)
 
-TrackID =1734 : ParentID=1726 : TrackStatus=1
+TrackID =1881 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.195 -6.71293 1.77094 keV
-Vertex : 1.7583 6.38208 19.4869 cm   Global time : 1.27027 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (17.583,63.8208,194.869)
-Point[1] Position= (17.6324,63.8126,194.872)
+Original momentum : 70.3392 143.924 30.3554 keV
+Vertex : -0.899951 0.275796 5.23715 m    Global time : 17.757 ns 
+  Current trajectory has 8 points.
+Point[0] Position= (-899.951,275.796,5237.15)
+Point[1] Position= (-899.842,276.017,5237.19)
+Point[2] Position= (-899.214,277.169,5238.3)
+Point[3] Position= (-898.022,278.982,5237.51)
+Point[4] Position= (-897.472,279.568,5235.99)
+Point[5] Position= (-897.276,279.85,5235.83)
+Point[6] Position= (-896.753,280.541,5235.57)
+Point[7] Position= (-896.424,280.476,5235.68)
 
-TrackID =1733 : ParentID=1726 : TrackStatus=1
+TrackID =1892 : ParentID=1881 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 52.4125 15.3268 -4.05797 keV
-Vertex : 1.22568 4.4472 13.6055 cm   Global time : 886.66 ps 
+Original momentum : -27.331 19.5896 -3.24133 keV
+Vertex : -0.897276 0.27985 5.23583 m    Global time : 17.841 ns 
   Current trajectory has 2 points.
-Point[0] Position= (12.2568,44.472,136.055)
-Point[1] Position= (12.3849,44.5094,136.045)
+Point[0] Position= (-897.276,279.85,5235.83)
+Point[1] Position= (-897.298,279.865,5235.83)
 
-TrackID =1732 : ParentID=1726 : TrackStatus=1
+TrackID =1891 : ParentID=1881 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.0998 76.7125 -14.6636 keV
-Vertex : 1.20059 4.35651 13.329 cm   Global time : 868.634 ps 
-  Current trajectory has 3 points.
-Point[0] Position= (12.0059,43.5651,133.29)
-Point[1] Position= (12.1664,44.0759,133.193)
-Point[2] Position= (12.1501,44.0965,133.18)
+Original momentum : 15.2173 4.90718 33.5302 keV
+Vertex : -0.899214 0.277169 5.2383 m    Global time : 17.7798 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-899.214,277.169,5238.3)
+Point[1] Position= (-899.199,277.174,5238.33)
 
-TrackID =1731 : ParentID=1726 : TrackStatus=1
+TrackID =1890 : ParentID=1881 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.9399 -29.3895 10.6527 keV
-Vertex : 0.441927 1.60553 4.93342 cm   Global time : 321.333 ps 
+Original momentum : 28.7629 23.5099 -40.0749 keV
+Vertex : -0.899842 0.276017 5.23719 m    Global time : 17.7598 ns 
   Current trajectory has 2 points.
-Point[0] Position= (4.41927,16.0553,49.3342)
-Point[1] Position= (4.42876,16.032,49.3426)
+Point[0] Position= (-899.842,276.017,5237.19)
+Point[1] Position= (-899.772,276.074,5237.1)
 
-TrackID =1730 : ParentID=1726 : TrackStatus=1
+TrackID =1880 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.7492 -72.2114 34.7694 keV
-Vertex : 0.297865 1.08276 3.33049 cm   Global time : 216.896 ps 
+Original momentum : 35.6832 -37.7477 10.9093 keV
+Vertex : -0.885948 0.271528 5.15573 m    Global time : 17.481 ns 
   Current trajectory has 3 points.
-Point[0] Position= (2.97865,10.8276,33.3049)
-Point[1] Position= (3.22004,10.2786,33.5693)
-Point[2] Position= (3.21714,10.2825,33.5699)
+Point[0] Position= (-885.948,271.528,5155.73)
+Point[1] Position= (-885.902,271.48,5155.75)
+Point[2] Position= (-885.892,271.516,5155.76)
 
-TrackID =1729 : ParentID=1726 : TrackStatus=1
+TrackID =1893 : ParentID=1880 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.8778 -86.7541 45.3221 keV
-Vertex : 0.294827 1.07176 3.2967 cm   Global time : 214.695 ps 
-  Current trajectory has 3 points.
-Point[0] Position= (2.94827,10.7176,32.967)
-Point[1] Position= (3.24649,9.78954,33.4518)
-Point[2] Position= (3.30349,9.76224,33.4866)
+Original momentum : 16.0639 -13.9836 24.7867 keV
+Vertex : -0.885902 0.27148 5.15575 m    Global time : 17.4831 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-885.902,271.48,5155.75)
+Point[1] Position= (-885.89,271.47,5155.76)
 
-TrackID =1728 : ParentID=1726 : TrackStatus=1
+TrackID =1879 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.214 10.1386 1.54717 keV
-Vertex : 0.441565 1.61127 4.95418 mm   Global time : 32.2638 ps 
-  Current trajectory has 2 points.
-Point[0] Position= (0.441565,1.61127,4.95418)
-Point[1] Position= (0.41771,1.61902,4.95536)
+Original momentum : 109.233 -0.527211 31.5167 keV
+Vertex : -0.875933 0.268479 5.09751 m    Global time : 17.2835 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-875.933,268.479,5097.51)
+Point[1] Position= (-874.71,268.473,5097.86)
+Point[2] Position= (-874.776,268.309,5097.95)
 
-TrackID =1727 : ParentID=1726 : TrackStatus=1
+TrackID =1894 : ParentID=1879 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.8308 19.7217 -1.31255 keV
-Vertex : 0.211981 0.773723 2.3789 mm   Global time : 15.4924 ps 
+Original momentum : 54.937 -25.1497 -5.18997 keV
+Vertex : -0.87471 0.268473 5.09786 m    Global time : 17.3031 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.211981,0.773723,2.3789)
-Point[1] Position= (0.184538,0.791866,2.37769)
+Point[0] Position= (-874.71,268.473,5097.86)
+Point[1] Position= (-874.538,268.394,5097.84)
 
-TrackID =1725 : ParentID=1445 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : 643.152 -68.3803 404.551 MeV
-Vertex : 9.91059e-294 -2.20853e-294 8.27772e-294 fm   Global time : 7.2822e-305 ps 
+TrackID =1878 : ParentID=1832 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -14.6892 -37.6328 1.06807 keV
+Vertex : -0.852363 0.261297 4.96048 m    Global time : 16.8189 ns 
   Current trajectory has 2 points.
-Point[0] Position= (9.91059e-306,-2.20853e-306,8.27772e-306)
-Point[1] Position= (3.32575e-05,-3.53596e-06,2.09194e-05)
+Point[0] Position= (-852.363,261.297,4960.48)
+Point[1] Position= (-852.38,261.252,4960.48)
 
-TrackID =1444 : ParentID=1441 : TrackStatus=1
-Particle name : unknown : k_star-  PDG code : -323  Charge : -1
-Original momentum : 2.0674 -1.18845 -0.820801 GeV
-Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
+TrackID =1877 : ParentID=1832 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -54.7588 30.5695 -7.07577 keV
+Vertex : -0.835516 0.256161 4.86255 m    Global time : 16.4869 ns 
   Current trajectory has 2 points.
-Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
-Point[1] Position= (1.07862e-305,-5.55315e-306,1.27308e-306)
+Point[0] Position= (-835.516,256.161,4862.55)
+Point[1] Position= (-835.706,256.267,4862.52)
 
-TrackID =1787 : ParentID=1780 : TrackStatus=1
+TrackID =1876 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.76484 -13.1234 78.4667 keV
-Vertex : 28.9925 -17.1222 -1.26727 cm   Global time : 1.23786 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (289.925,-171.222,-12.6727)
-Point[1] Position= (289.938,-171.267,-12.4051)
-Point[2] Position= (289.959,-171.302,-12.3929)
+Original momentum : -13.4758 77.4858 -0.271455 keV
+Vertex : -0.813682 0.249497 4.7356 m    Global time : 16.0565 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-813.682,249.497,4735.6)
+Point[1] Position= (-813.72,249.717,4735.6)
+Point[2] Position= (-813.457,249.658,4735.63)
+Point[3] Position= (-813.445,249.66,4735.64)
 
-TrackID =1788 : ParentID=1787 : TrackStatus=1
+TrackID =1895 : ParentID=1876 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.5269 16.5523 -14.2836 keV
-Vertex : 28.9938 -17.1267 -1.24051 cm   Global time : 1.24374 ns 
+Original momentum : -7.37558 -24.3229 19.6277 keV
+Vertex : -0.81372 0.249717 4.7356 m    Global time : 16.0613 ns 
   Current trajectory has 2 points.
-Point[0] Position= (289.938,-171.267,-12.4051)
-Point[1] Position= (289.972,-171.251,-12.4183)
+Point[0] Position= (-813.72,249.717,4735.6)
+Point[1] Position= (-813.726,249.7,4735.61)
 
-TrackID =1786 : ParentID=1780 : TrackStatus=1
+TrackID =1875 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.866573 -1.19852 -32.4875 keV
-Vertex : 26.9599 -15.926 -1.17439 cm   Global time : 1.15106 ns 
+Original momentum : 29.0635 -29.0738 8.2719 keV
+Vertex : -0.812371 0.249097 4.72798 m    Global time : 16.0306 ns 
   Current trajectory has 2 points.
-Point[0] Position= (269.599,-159.26,-11.7439)
-Point[1] Position= (269.599,-159.26,-11.762)
+Point[0] Position= (-812.371,249.097,4727.98)
+Point[1] Position= (-812.333,249.059,4727.99)
 
-TrackID =1785 : ParentID=1780 : TrackStatus=1
+TrackID =1874 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.96872 -0.102267 -0.569135 MeV
-Vertex : 21.7093 -12.8322 -0.936832 cm   Global time : 926.863 ps 
-  Current trajectory has 8 points.
-Point[0] Position= (217.093,-128.322,-9.36832)
-Point[1] Position= (217.699,-128.6,-9.7488)
-Point[2] Position= (218.184,-128.545,-10.1194)
-Point[3] Position= (218.489,-128.957,-10.1005)
-Point[4] Position= (218.766,-128.984,-10.3113)
-Point[5] Position= (218.797,-128.804,-10.5464)
-Point[6] Position= (218.966,-128.663,-10.7829)
-Point[7] Position= (218.688,-128.704,-10.8832)
-
-TrackID =1784 : ParentID=1780 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 487.623 -59.9028 -617.653 keV
-Vertex : 21.5532 -12.7401 -0.930175 cm   Global time : 920.202 ps 
-  Current trajectory has 5 points.
-Point[0] Position= (215.532,-127.401,-9.30175)
-Point[1] Position= (215.6,-127.375,-9.37288)
-Point[2] Position= (215.661,-127.355,-9.47646)
-Point[3] Position= (215.734,-127.432,-9.54416)
-Point[4] Position= (215.865,-127.532,-9.52464)
+Original momentum : 16.7345 -32.4676 5.94516 keV
+Vertex : -0.796748 0.244325 4.63714 m    Global time : 15.7226 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-796.748,244.325,4637.14)
+Point[1] Position= (-796.731,244.293,4637.14)
 
-TrackID =1783 : ParentID=1780 : TrackStatus=1
+TrackID =1873 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.5946 -11.214 -29.8478 keV
-Vertex : 12.2026 -7.21203 -0.526497 cm   Global time : 520.965 ps 
+Original momentum : 37.119 18.2168 7.17459 keV
+Vertex : -0.791785 0.242808 4.60828 m    Global time : 15.6248 ns 
   Current trajectory has 2 points.
-Point[0] Position= (122.026,-72.1203,-5.26497)
-Point[1] Position= (122.021,-72.1287,-5.28734)
+Point[0] Position= (-791.785,242.808,4608.28)
+Point[1] Position= (-791.736,242.832,4608.29)
 
-TrackID =1782 : ParentID=1780 : TrackStatus=1
+TrackID =1872 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.2652 33.0328 -5.09971 keV
-Vertex : 7.18376 -4.24528 -0.309834 cm   Global time : 306.686 ps 
+Original momentum : 45.4614 8.28056 9.59285 keV
+Vertex : -0.774951 0.237662 4.51039 m    Global time : 15.2929 ns 
   Current trajectory has 2 points.
-Point[0] Position= (71.8376,-42.4528,-3.09834)
-Point[1] Position= (71.862,-42.4148,-3.10421)
+Point[0] Position= (-774.951,237.662,4510.39)
+Point[1] Position= (-774.873,237.676,4510.41)
 
-TrackID =1781 : ParentID=1780 : TrackStatus=1
+TrackID =1871 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.6983 29.1394 33.3728 keV
-Vertex : 4.15397 -2.45496 -0.179074 cm   Global time : 177.342 ps 
+Original momentum : 4.09826 -44.8275 5.09635 keV
+Vertex : -0.764412 0.23444 4.44911 m    Global time : 15.0851 ns 
   Current trajectory has 2 points.
-Point[0] Position= (41.5397,-24.5496,-1.79074)
-Point[1] Position= (41.5809,-24.4942,-1.72728)
+Point[0] Position= (-764.412,234.44,4449.11)
+Point[1] Position= (-764.406,234.37,4449.11)
 
-TrackID =1779 : ParentID=1444 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : 521.681 -284.963 -533.161 MeV
-Vertex : 1.07862e-293 -5.55315e-294 1.27308e-294 fm   Global time : 7.09242e-305 ps 
+TrackID =1870 : ParentID=1832 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 27.0627 -29.3345 7.83596 keV
+Vertex : -0.743789 0.228138 4.32915 m    Global time : 14.6783 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.07862e-305,-5.55315e-306,1.27308e-306)
-Point[1] Position= (7.36104e-05,-4.02089e-05,-7.52303e-05)
+Point[0] Position= (-743.789,228.138,4329.15)
+Point[1] Position= (-743.756,228.102,4329.16)
 
-TrackID =1443 : ParentID=1441 : TrackStatus=1
-Particle name : pi+  PDG code : 211  Charge : 1
-Original momentum : -135.046 217.122 7.03924 MeV
-Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
-  Current trajectory has 21 points.
-Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
-Point[1] Position= (-17.5755,28.2726,0.91043)
-Point[2] Position= (-71.572,115.091,3.71937)
-Point[3] Position= (-85.9064,138.135,4.46953)
-Point[4] Position= (-105.627,169.832,5.5149)
-Point[5] Position= (-106.178,170.721,5.54372)
-Point[6] Position= (-132.017,212.301,6.88522)
-Point[7] Position= (-134.657,216.547,7.02061)
-Point[8] Position= (-136.337,219.295,7.07615)
-Point[9] Position= (-158.127,254.943,7.79374)
-Point[10] Position= (-160.728,259.213,7.87814)
-Point[11] Position= (-183.072,298.303,8.03399)
-Point[12] Position= (-185.55,302.649,8.04818)
-Point[13] Position= (-208.599,341.301,8.84104)
-Point[14] Position= (-210.386,344.256,8.89938)
-Point[15] Position= (-211.196,345.574,8.92038)
-Point[16] Position= (-214.397,350.813,8.96629)
-Point[17] Position= (-222.387,363.89,9.07901)
-Point[18] Position= (-234.651,383.977,9.24749)
-Point[19] Position= (-234.956,384.479,9.25231)
-Point[20] Position= (-236.443,386.998,9.31006)
-
-TrackID =1799 : ParentID=1443 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -999.171 807.947 -708.342 keV
-Vertex : -23.4956 38.4479 0.925231 cm   Global time : 1.7173 ns 
-  Current trajectory has 67 points.
-Point[0] Position= (-234.956,384.479,9.25231)
-Point[1] Position= (-235.015,384.566,9.1757)
-Point[2] Position= (-235.127,384.669,9.04833)
-Point[3] Position= (-235.099,384.851,8.88861)
-Point[4] Position= (-234.817,384.838,8.95597)
-Point[5] Position= (-234.616,384.698,8.97067)
-Point[6] Position= (-234.465,384.671,9.02546)
-Point[7] Position= (-234.373,384.572,8.9737)
-Point[8] Position= (-234.295,384.504,8.99347)
-Point[9] Position= (-234.234,384.426,9.02671)
-Point[10] Position= (-234.216,384.319,9.04576)
-Point[11] Position= (-234.204,384.251,9.08567)
-Point[12] Position= (-221.668,342.61,70.9613)
-Point[13] Position= (-218.241,341.168,70.0099)
-Point[14] Position= (-218.22,341.164,70.0061)
-Point[15] Position= (-218.197,341.162,70.0053)
-Point[16] Position= (-218.175,341.166,70.0119)
-Point[17] Position= (-218.156,341.175,70.0208)
-Point[18] Position= (-218.14,341.192,70.0241)
-Point[19] Position= (-218.126,341.209,70.0315)
-Point[20] Position= (-218.116,341.227,70.0422)
-Point[21] Position= (-218.103,341.246,70.043)
-Point[22] Position= (-218.087,341.262,70.0449)
-Point[23] Position= (-218.08,341.271,70.0438)
-Point[24] Position= (-196.619,382.494,41.7147)
-Point[25] Position= (-131.878,407.713,3.41845)
-Point[26] Position= (-105.405,391.043,-1.2062)
-Point[27] Position= (-105.398,391.028,-1.20765)
-Point[28] Position= (-105.392,391.018,-1.21301)
-Point[29] Position= (-105.385,391.009,-1.21495)
-Point[30] Position= (-105.38,390.998,-1.21866)
-Point[31] Position= (-105.37,390.987,-1.21546)
-Point[32] Position= (-105.358,390.975,-1.2107)
-Point[33] Position= (-105.353,390.978,-1.18914)
-Point[34] Position= (-105.347,390.983,-1.16848)
-Point[35] Position= (-105.34,390.998,-1.15659)
-Point[36] Position= (-105.345,391.011,-1.14573)
-Point[37] Position= (-105.356,391.019,-1.14442)
-Point[38] Position= (-105.361,391.026,-1.13662)
-Point[39] Position= (-105.364,391.033,-1.12736)
-Point[40] Position= (-105.366,391.045,-1.12393)
-Point[41] Position= (-105.368,391.053,-1.12384)
-Point[42] Position= (-112.46,425.331,-3.78326)
-Point[43] Position= (-113.802,429.143,-4.20849)
-Point[44] Position= (-117.06,433.374,-5.02025)
-Point[45] Position= (-117.455,434.401,-5.47298)
-Point[46] Position= (-117.455,434.403,-5.47478)
-Point[47] Position= (-117.455,434.404,-5.4766)
-Point[48] Position= (-117.456,434.405,-5.47819)
-Point[49] Position= (-117.458,434.406,-5.4799)
-Point[50] Position= (-117.459,434.407,-5.48174)
-Point[51] Position= (-117.46,434.408,-5.48358)
-Point[52] Position= (-117.462,434.408,-5.48547)
-Point[53] Position= (-117.463,434.407,-5.48737)
-Point[54] Position= (-117.464,434.406,-5.48911)
-Point[55] Position= (-117.465,434.405,-5.49094)
-Point[56] Position= (-117.466,434.403,-5.49212)
-Point[57] Position= (-117.467,434.402,-5.49325)
-Point[58] Position= (-117.468,434.403,-5.49547)
-Point[59] Position= (-117.469,434.403,-5.49739)
-Point[60] Position= (-117.471,434.404,-5.49832)
-Point[61] Position= (-117.472,434.405,-5.50006)
-Point[62] Position= (-117.474,434.404,-5.50089)
-Point[63] Position= (-117.476,434.404,-5.50005)
-Point[64] Position= (-117.476,434.405,-5.49805)
-Point[65] Position= (-117.476,434.407,-5.49718)
-Point[66] Position= (-117.475,434.409,-5.49863)
-
-TrackID =1811 : ParentID=1799 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.9821 2.0618 -18.722 keV
-Vertex : -11.706 43.3374 -0.502025 cm   Global time : 2.9871 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-117.06,433.374,-5.02025)
-Point[1] Position= (-117.046,433.375,-5.03043)
-
-TrackID =1810 : ParentID=1799 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.8847 20.3428 2.82265 keV
-Vertex : -11.3802 42.9143 -0.420849 cm   Global time : 2.95423 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-113.802,429.143,-4.20849)
-Point[1] Position= (-113.776,429.159,-4.20628)
-
-TrackID =1809 : ParentID=1799 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.711549 10.1066 -36.5588 keV
-Vertex : -13.1878 40.7713 0.341845 cm   Global time : 2.61969 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-131.878,407.713,3.41845)
-Point[1] Position= (-131.877,407.721,3.39102)
-
-TrackID =1808 : ParentID=1799 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.75829 38.116 38.1934 keV
-Vertex : -19.6619 38.2494 4.17147 cm   Global time : 2.2705 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-196.619,382.494,41.7147)
-Point[1] Position= (-196.603,382.553,41.7746)
-
-TrackID =1807 : ParentID=1799 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.9555 0.644707 32.5519 keV
-Vertex : -22.1668 34.261 7.09613 cm   Global time : 2.02827 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-221.668,342.61,70.9613)
-Point[1] Position= (-221.662,342.61,70.9811)
-
-TrackID =1798 : ParentID=1443 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.4982 -5.64166 -43.801 keV
-Vertex : -22.2387 36.389 0.907901 cm   Global time : 1.62457 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-222.387,363.89,9.07901)
-Point[1] Position= (-222.403,363.884,9.03078)
-
-TrackID =1797 : ParentID=1443 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.0823 29.347 84.6687 keV
-Vertex : -21.4397 35.0813 0.896629 cm   Global time : 1.56566 ns 
+TrackID =1869 : ParentID=1832 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 33.9047 82.7897 9.47316 keV
+Vertex : -0.720241 0.22095 4.19218 m    Global time : 14.2139 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-214.397,350.813,8.96629)
-Point[1] Position= (-214.253,350.953,9.37108)
-Point[2] Position= (-214.177,351.008,9.42024)
+Point[0] Position= (-720.241,220.95,4192.18)
+Point[1] Position= (-719.968,221.617,4192.26)
+Point[2] Position= (-719.878,221.782,4192.37)
 
-TrackID =1812 : ParentID=1797 : TrackStatus=1
+TrackID =1896 : ParentID=1869 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.14306 -14.1715 28.7065 keV
-Vertex : -21.4253 35.0953 0.937108 cm   Global time : 1.57395 ns 
+Original momentum : -25.0877 22.6835 -12.8363 keV
+Vertex : -0.719968 0.221617 4.19226 m    Global time : 14.2279 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-214.253,350.953,9.37108)
-Point[1] Position= (-214.258,350.945,9.38756)
+Point[0] Position= (-719.968,221.617,4192.26)
+Point[1] Position= (-719.991,221.639,4192.24)
 
-TrackID =1796 : ParentID=1443 : TrackStatus=1
+TrackID =1868 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.394703 2.32102 0.133097 MeV
-Vertex : -21.0386 34.4256 0.889938 cm   Global time : 1.53611 ns 
-  Current trajectory has 11 points.
-Point[0] Position= (-210.386,344.256,8.89938)
-Point[1] Position= (-210.368,344.61,8.87574)
-Point[2] Position= (-210.108,344.837,9.01328)
-Point[3] Position= (-209.836,344.815,9.23612)
-Point[4] Position= (-209.566,344.76,9.52937)
-Point[5] Position= (-209.152,344.735,9.72648)
-Point[6] Position= (-208.735,345.016,9.83551)
-Point[7] Position= (-208.265,345.076,9.63387)
-Point[8] Position= (-207.839,345.376,9.80057)
-Point[9] Position= (-207.774,345.765,10.2361)
-Point[10] Position= (-207.827,345.672,10.2657)
-
-TrackID =1795 : ParentID=1443 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -39.1649 -21.2501 19.4259 keV
-Vertex : -13.6337 21.9295 0.707615 cm   Global time : 981.703 ps 
-  Current trajectory has 2 points.
-Point[0] Position= (-136.337,219.295,7.07615)
-Point[1] Position= (-136.385,219.27,7.09965)
-
-TrackID =1794 : ParentID=1443 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 81.7485 65.8068 39.4606 keV
-Vertex : -10.6178 17.0721 0.554372 cm   Global time : 764.313 ps 
-  Current trajectory has 10 points.
-Point[0] Position= (-106.178,170.721,5.54372)
-Point[1] Position= (-105.944,170.785,5.58282)
-Point[2] Position= (-105.806,170.83,5.82509)
-Point[3] Position= (-105.646,170.862,6.04627)
-Point[4] Position= (-105.539,170.87,6.27833)
-Point[5] Position= (-105.401,171.021,6.41778)
-Point[6] Position= (-105.314,170.977,6.63613)
-Point[7] Position= (-105.304,170.935,6.72573)
-Point[8] Position= (-105.228,170.819,6.90013)
-Point[9] Position= (-105.086,170.803,6.96575)
+Original momentum : 71.4382 -43.7542 21.9875 keV
+Vertex : -0.686553 0.210655 3.99622 m    Global time : 13.5495 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-686.553,210.655,3996.22)
+Point[1] Position= (-686.004,210.318,3996.39)
+Point[2] Position= (-686.1,210.309,3996.34)
 
-TrackID =1813 : ParentID=1794 : TrackStatus=1
+TrackID =1867 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.5346 -30.6123 46.7531 keV
-Vertex : -10.5304 17.0935 0.672573 cm   Global time : 788.801 ps 
-  Current trajectory has 2 points.
-Point[0] Position= (-105.304,170.935,6.72573)
-Point[1] Position= (-105.396,170.86,6.84008)
+Original momentum : -72.4179 45.2944 -7.56358 keV
+Vertex : -0.660874 0.202805 3.84682 m    Global time : 13.0429 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-660.874,202.805,3846.82)
+Point[1] Position= (-661.341,203.097,3846.77)
+Point[2] Position= (-661.3,203.221,3846.78)
 
-TrackID =1793 : ParentID=1443 : TrackStatus=1
+TrackID =1897 : ParentID=1867 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 16.364 12.5059 -26.2664 keV
-Vertex : -8.59064 13.8135 0.446953 cm   Global time : 618.411 ps 
+Original momentum : -2.0563 -2.7898 36.4814 keV
+Vertex : -0.661341 0.203097 3.84677 m    Global time : 13.0541 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-85.9064,138.135,4.46953)
-Point[1] Position= (-85.8935,138.145,4.44876)
+Point[0] Position= (-661.341,203.097,3846.77)
+Point[1] Position= (-661.343,203.094,3846.8)
 
-TrackID =1792 : ParentID=1443 : TrackStatus=1
+TrackID =1866 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.5503 -16.7745 -46.6635 keV
-Vertex : -7.1572 11.5091 0.371937 cm   Global time : 515.236 ps 
+Original momentum : -44.7171 39.0996 -6.2046 keV
+Vertex : -0.609921 0.187232 3.55035 m    Global time : 12.0377 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-71.572,115.091,3.71937)
-Point[1] Position= (-71.6975,115.035,3.56336)
+Point[0] Position= (-609.921,187.232,3550.35)
+Point[1] Position= (-610.056,187.35,3550.33)
 
-TrackID =1791 : ParentID=1443 : TrackStatus=1
+TrackID =1865 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.0596 -6.84772 33.7045 keV
-Vertex : -1.75755 2.82726 0.091043 cm   Global time : 126.556 ps 
+Original momentum : 11.3971 35.1501 1.46917 keV
+Vertex : -0.595617 0.182854 3.46712 m    Global time : 11.7556 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-17.5755,28.2726,0.91043)
-Point[1] Position= (-17.5871,28.266,0.942712)
+Point[0] Position= (-595.617,182.854,3467.12)
+Point[1] Position= (-595.606,182.889,3467.13)
 
-TrackID =1814 : ParentID=1805 : TrackStatus=1
+TrackID =1864 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -153.584 -244.095 -444.02 keV
-Vertex : -24.1742 38.4858 0.563616 cm   Global time : 1.75122 ns 
+Original momentum : 36.4508 -25.9019 9.70625 keV
+Vertex : -0.560325 0.172058 3.26182 m    Global time : 11.0594 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-241.742,384.858,5.63616)
-Point[1] Position= (-241.77,384.812,5.55339)
+Point[0] Position= (-560.325,172.058,3261.82)
+Point[1] Position= (-560.267,172.016,3261.83)
 
-TrackID =1790 : ParentID=1779 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : 107.433 -70.567 -49.0354 MeV
-Vertex : 73.6104 -40.2089 -75.2303 nm   Global time : 0.000381167 ps 
-  Current trajectory has 6 points.
-Point[0] Position= (7.36104e-05,-4.02089e-05,-7.52303e-05)
-Point[1] Position= (167.164,-109.801,-76.2984)
-Point[2] Position= (208.955,-137.251,-95.373)
-Point[3] Position= (213.134,-139.996,-97.2805)
-Point[4] Position= (250.746,-164.702,-114.448)
-Point[5] Position= (254.159,-166.943,-116.005)
+TrackID =1863 : ParentID=1832 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 98.9041 -5.38826 27.6918 keV
+Vertex : -0.524679 0.161146 3.05441 m    Global time : 10.3562 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-524.679,161.146,3054.41)
+Point[1] Position= (-523.586,161.087,3054.71)
+Point[2] Position= (-523.295,161.092,3054.43)
 
-TrackID =1818 : ParentID=1815 : TrackStatus=1
+TrackID =1862 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.496233 -19.6067 26.4109 keV
-Vertex : 26.2682 -17.2712 -11.9998 cm   Global time : 1.12244 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (262.682,-172.712,-119.998)
-Point[1] Position= (262.682,-172.723,-119.983)
+Original momentum : -121.836 -308.654 104.175 keV
+Vertex : -0.522245 0.160402 3.04024 m    Global time : 10.3082 ns 
+  Current trajectory has 16 points.
+Point[0] Position= (-522.245,160.402,3040.24)
+Point[1] Position= (-534.625,129.038,3050.83)
+Point[2] Position= (-535.656,154.908,3037.37)
+Point[3] Position= (-534.168,162.63,3033.77)
+Point[4] Position= (-527.768,181.703,3034.07)
+Point[5] Position= (-520.312,185.392,3020.73)
+Point[6] Position= (-514.92,184.65,3010.46)
+Point[7] Position= (-515.008,184.143,3006.18)
+Point[8] Position= (-514.273,183.588,3002.75)
+Point[9] Position= (-514.248,181.858,2996.76)
+Point[10] Position= (-514.109,181.478,2991.91)
+Point[11] Position= (-514.909,177.875,2992.47)
+Point[12] Position= (-515.272,176.456,2989.97)
+Point[13] Position= (-515.439,175.551,2988.03)
+Point[14] Position= (-515.452,175.289,2986.91)
+Point[15] Position= (-515.61,175.423,2986.66)
 
-TrackID =1806 : ParentID=1443 : TrackStatus=1
-Particle name : Al25  PDG code : 1000130250  Charge : 13
-Original momentum : -200.481 112.417 -371.474 MeV
-Vertex : -23.6443 38.6998 0.931006 cm   Global time : 1.72856 ns 
+TrackID =1900 : ParentID=1862 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 35.7449 -2.07624 0.505952 keV
+Vertex : -0.514273 0.183588 3.00275 m    Global time : 11.1617 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-236.443,386.998,9.31006)
-Point[1] Position= (-236.444,386.998,9.30878)
-
-TrackID =1801 : ParentID=1443 : TrackStatus=1
-Particle name : proton  PDG code : 2212  Charge : 1
-Original momentum : 44.3593 -40.7033 160.714 MeV
-Vertex : -23.6443 38.6998 0.931006 cm   Global time : 1.72856 ns 
-  Current trajectory has 7 points.
-Point[0] Position= (-236.443,386.998,9.31006)
-Point[1] Position= (-236.334,386.888,9.74921)
-Point[2] Position= (-236.261,386.794,10.1015)
-Point[3] Position= (-236.209,386.72,10.3766)
-Point[4] Position= (-236.169,386.657,10.5862)
-Point[5] Position= (-236.144,386.628,10.7332)
-Point[6] Position= (-236.14,386.625,10.7612)
-
-TrackID =1800 : ParentID=1443 : TrackStatus=1
-Particle name : pi+  PDG code : 211  Charge : 1
-Original momentum : -5.60523 -15.9667 154.737 MeV
-Vertex : -23.6443 38.6998 0.931006 cm   Global time : 1.72856 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (-236.443,386.998,9.31006)
-Point[1] Position= (-237.799,384.547,26.2173)
-Point[2] Position= (-239.993,381.972,39.7378)
-Point[3] Position= (-240.446,381.463,42.3711)
-Point[4] Position= (-241.067,380.589,46.2476)
+Point[0] Position= (-514.273,183.588,3002.75)
+Point[1] Position= (-514.24,183.586,3002.75)
 
-TrackID =1826 : ParentID=1800 : TrackStatus=1
+TrackID =1899 : ParentID=1862 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.436212 -0.359335 1.05709 MeV
-Vertex : -24.0446 38.1463 4.23711 cm   Global time : 1.88323 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (-240.446,381.463,42.3711)
-Point[1] Position= (-240.431,381.376,42.5894)
-Point[2] Position= (-240.377,381.226,42.754)
-Point[3] Position= (-240.491,381.25,42.9166)
-Point[4] Position= (-240.6,381.277,42.8962)
+Original momentum : 39.0955 18.6152 4.9873 keV
+Vertex : -0.515008 0.184143 3.00618 m    Global time : 11.1304 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-515.008,184.143,3006.18)
+Point[1] Position= (-514.952,184.169,3006.19)
 
-TrackID =1824 : ParentID=1816 : TrackStatus=1
+TrackID =1898 : ParentID=1862 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.45314 10.2311 -31.1434 keV
-Vertex : 36.0507 -25.1241 -18.2988 cm   Global time : 1.59683 ns 
+Original momentum : -38.4828 14.0444 -28.7409 keV
+Vertex : -0.534168 0.16263 3.03377 m    Global time : 10.7551 ns 
   Current trajectory has 2 points.
-Point[0] Position= (360.507,-251.241,-182.988)
-Point[1] Position= (360.503,-251.235,-183.006)
+Point[0] Position= (-534.168,162.63,3033.77)
+Point[1] Position= (-534.244,162.658,3033.71)
 
-TrackID =1823 : ParentID=1816 : TrackStatus=1
+TrackID =1861 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 991.563 356.193 -361.139 keV
-Vertex : 29.8368 -19.222 -13.9138 cm   Global time : 1.27227 ns 
-  Current trajectory has 17 points.
-Point[0] Position= (298.368,-192.22,-139.138)
-Point[1] Position= (298.383,-192.217,-139.144)
-Point[2] Position= (298.44,-192.203,-139.163)
-Point[3] Position= (298.47,-192.2,-139.175)
-Point[4] Position= (334.852,-191.9,-162.406)
-Point[5] Position= (352.053,-189.892,-169.251)
-Point[6] Position= (352.1,-189.899,-169.281)
-Point[7] Position= (352.146,-189.912,-169.31)
-Point[8] Position= (352.192,-189.941,-169.298)
-Point[9] Position= (352.233,-189.977,-169.285)
-Point[10] Position= (352.271,-190.022,-169.283)
-Point[11] Position= (352.33,-190.054,-169.316)
-Point[12] Position= (352.417,-190.089,-169.319)
-Point[13] Position= (352.514,-190.118,-169.39)
-Point[14] Position= (352.589,-190.201,-169.49)
-Point[15] Position= (352.657,-190.309,-169.602)
-Point[16] Position= (352.776,-190.421,-169.741)
-
-TrackID =1822 : ParentID=1816 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.57737 -2.45702 -0.0988649 MeV
-Vertex : 29.6765 -19.1377 -13.8218 cm   Global time : 1.2655 ns 
-  Current trajectory has 20 points.
-Point[0] Position= (296.765,-191.377,-138.218)
-Point[1] Position= (297.134,-191.803,-138.079)
-Point[2] Position= (297.369,-192.312,-138.232)
-Point[3] Position= (297.524,-192.88,-138.135)
-Point[4] Position= (297.78,-193.266,-138.094)
-Point[5] Position= (346.354,-182.157,-118.78)
-Point[6] Position= (353.084,-181.685,-116.421)
-Point[7] Position= (356.412,-181.577,-115.182)
-Point[8] Position= (356.697,-181.654,-115.018)
-Point[9] Position= (356.902,-181.564,-114.863)
-Point[10] Position= (357.151,-181.535,-114.745)
-Point[11] Position= (357.399,-181.519,-114.618)
-Point[12] Position= (357.529,-181.435,-114.39)
-Point[13] Position= (357.579,-181.512,-114.126)
-Point[14] Position= (357.715,-181.435,-113.867)
-Point[15] Position= (357.904,-181.279,-113.657)
-Point[16] Position= (358.101,-181.138,-113.4)
-Point[17] Position= (358.251,-181.045,-113.07)
-Point[18] Position= (358.46,-180.875,-112.797)
-Point[19] Position= (358.504,-180.598,-112.723)
-
-TrackID =1836 : ParentID=1822 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.5145 45.6075 37.7333 keV
-Vertex : 35.3084 -18.1685 -11.6421 cm   Global time : 1.47939 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (353.084,-181.685,-116.421)
-Point[1] Position= (353.06,-181.597,-116.349)
-
-TrackID =1835 : ParentID=1822 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.83441 30.3465 19.0756 keV
-Vertex : 34.6354 -18.2157 -11.878 cm   Global time : 1.45489 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (346.354,-182.157,-118.78)
-Point[1] Position= (346.348,-182.136,-118.766)
-
-TrackID =1837 : ParentID=1822 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : 1.57909 12.3798 6.58238 keV
-Vertex : 35.846 -18.0875 -11.2797 cm   Global time : 1.50295 ns 
+Original momentum : -21.8973 -25.4889 -1.30088 keV
+Vertex : -0.519524 0.15957 3.02441 m    Global time : 10.2545 ns 
   Current trajectory has 2 points.
-Point[0] Position= (358.46,-180.875,-112.797)
-Point[1] Position= (358.477,-180.738,-112.724)
+Point[0] Position= (-519.524,159.57,3024.41)
+Point[1] Position= (-519.542,159.55,3024.41)
 
-TrackID =1838 : ParentID=1837 : TrackStatus=1
+TrackID =1860 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -52.9343 -24.7835 96.2789 keV
-Vertex : 35.8477 -18.0738 -11.2724 cm   Global time : 1.50347 ns 
+Original momentum : -8.86345 35.954 -2.04446 keV
+Vertex : -0.51794 0.159086 3.01518 m    Global time : 10.2232 ns 
   Current trajectory has 2 points.
-Point[0] Position= (358.477,-180.738,-112.724)
-Point[1] Position= (358.477,-180.738,-112.723)
+Point[0] Position= (-517.94,159.086,3015.18)
+Point[1] Position= (-517.948,159.122,3015.18)
 
-TrackID =1833 : ParentID=1800 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : 70.3203 -77.0307 24.3246 keV
-Vertex : -24.1067 38.0589 4.62476 cm   Global time : 1.90297 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-241.067,380.589,46.2476)
-Point[1] Position= (-240.716,380.205,46.369)
-Point[2] Position= (-209.85,346.393,57.046)
-Point[3] Position= (-207.203,343.493,57.9616)
+TrackID =1859 : ParentID=1832 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 33.7336 -49.3679 12.0757 keV
+Vertex : -0.509764 0.156586 2.96759 m    Global time : 10.0618 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-509.764,156.586,2967.59)
+Point[1] Position= (-509.657,156.429,2967.63)
 
-TrackID =1839 : ParentID=1833 : TrackStatus=1
+TrackID =1858 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 323.575 -90.925 75.3795 keV
-Vertex : -20.7203 34.3493 5.79616 cm   Global time : 2.07501 ns 
+Original momentum : 65.3246 -10.3212 16.36 keV
+Vertex : -0.500122 0.153638 2.91146 m    Global time : 9.87154 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-207.203,343.493,57.9616)
-Point[1] Position= (-207.177,343.486,57.9677)
+Point[0] Position= (-500.122,153.638,2911.46)
+Point[1] Position= (-499.848,153.594,2911.53)
 
-TrackID =1829 : ParentID=1800 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : 1.91691 -0.499602 10.2068 MeV
-Vertex : -24.1067 38.0589 4.62476 cm   Global time : 1.90297 ns 
-  Current trajectory has 6 points.
-Point[0] Position= (-241.067,380.589,46.2476)
-Point[1] Position= (-240.388,380.412,49.8628)
-Point[2] Position= (-177.513,364.025,384.652)
-Point[3] Position= (-174.63,363.274,400)
-Point[4] Position= (-61.9467,333.905,1000)
-Point[5] Position= (877.084,89.1663,6000)
+TrackID =1857 : ParentID=1832 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 89.0113 -20.5454 25.2241 keV
+Vertex : -0.457417 0.140569 2.6628 m    Global time : 9.02844 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-457.417,140.569,2662.8)
+Point[1] Position= (-456.673,140.397,2663.01)
+Point[2] Position= (-456.507,140.47,2663.08)
 
-TrackID =1841 : ParentID=1825 : TrackStatus=1
+TrackID =1901 : ParentID=1857 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.4592 -100.127 37.6129 keV
-Vertex : 36.9101 -26.1748 -18.8205 cm   Global time : 1.64552 ns 
+Original momentum : 19.9392 -8.71752 -37.5577 keV
+Vertex : -0.456673 0.140397 2.66301 m    Global time : 9.04292 ns 
   Current trajectory has 2 points.
-Point[0] Position= (369.101,-261.748,-188.205)
-Point[1] Position= (369.101,-261.748,-188.204)
+Point[0] Position= (-456.673,140.397,2663.01)
+Point[1] Position= (-456.645,140.385,2662.96)
 
-TrackID =1840 : ParentID=1825 : TrackStatus=1
+TrackID =1856 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.4265 32.1513 -34.2318 keV
-Vertex : 36.906 -26.1521 -18.8189 cm   Global time : 1.64475 ns 
+Original momentum : 72.7441 -1.44041 18.1358 keV
+Vertex : -0.391803 0.120456 2.28076 m    Global time : 7.73313 ns 
   Current trajectory has 2 points.
-Point[0] Position= (369.06,-261.521,-188.189)
-Point[1] Position= (369.06,-261.521,-188.189)
+Point[0] Position= (-391.803,120.456,2280.76)
+Point[1] Position= (-391.414,120.449,2280.86)
 
-TrackID =1821 : ParentID=1816 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : 5.91386 -2.81133 -2.26697 keV
-Vertex : 29.64 -19.1197 -13.8043 cm   Global time : 1.26402 ns 
+TrackID =1855 : ParentID=1832 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -30.8272 -11.1202 -3.631 keV
+Vertex : -0.361097 0.111047 2.10203 m    Global time : 7.12711 ns 
   Current trajectory has 2 points.
-Point[0] Position= (296.4,-191.197,-138.043)
-Point[1] Position= (296.418,-191.205,-138.05)
+Point[0] Position= (-361.097,111.047,2102.03)
+Point[1] Position= (-361.12,111.038,2102.02)
 
-TrackID =1842 : ParentID=1821 : TrackStatus=1
+TrackID =1854 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 46.1925 54.8205 9.16974 keV
-Vertex : 29.6418 -19.1205 -13.805 cm   Global time : 1.26409 ns 
+Original momentum : 42.4226 14.0078 8.60546 keV
+Vertex : -0.331423 0.101962 1.92932 m    Global time : 6.54152 ns 
   Current trajectory has 2 points.
-Point[0] Position= (296.418,-191.205,-138.05)
-Point[1] Position= (296.418,-191.205,-138.05)
+Point[0] Position= (-331.423,101.962,1929.32)
+Point[1] Position= (-331.356,101.984,1929.33)
 
-TrackID =1834 : ParentID=1800 : TrackStatus=1
-Particle name : Mg24  PDG code : 1000120240  Charge : 12
-Original momentum : 20.7186 -32.4534 -308.596 MeV
-Vertex : -24.1067 38.0589 4.62476 cm   Global time : 1.90297 ns 
+TrackID =1853 : ParentID=1832 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 25.4889 42.9814 4.61053 keV
+Vertex : -0.305814 0.0941113 1.78024 m    Global time : 6.03607 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-241.067,380.589,46.2476)
-Point[1] Position= (-241.067,380.589,46.2463)
-
-TrackID =1831 : ParentID=1800 : TrackStatus=1
-Particle name : proton  PDG code : 2212  Charge : 1
-Original momentum : 40.8949 25.3849 -84.1231 MeV
-Vertex : -24.1067 38.0589 4.62476 cm   Global time : 1.90297 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (-241.067,380.589,46.2476)
-Point[1] Position= (-241.006,380.636,46.1004)
-Point[2] Position= (-240.993,380.65,46.0562)
-Point[3] Position= (-240.992,380.65,46.0545)
-Point[4] Position= (-240.992,380.65,46.0541)
+Point[0] Position= (-305.814,94.1113,1780.24)
+Point[1] Position= (-305.764,94.1964,1780.25)
 
-TrackID =1830 : ParentID=1800 : TrackStatus=1
-Particle name : proton  PDG code : 2212  Charge : 1
-Original momentum : 89.388 -68.0292 77.5006 MeV
-Vertex : -24.1067 38.0589 4.62476 cm   Global time : 1.90297 ns 
-  Current trajectory has 150 points.
-Point[0] Position= (-241.067,380.589,46.2476)
-Point[1] Position= (-240.879,380.433,46.4007)
-Point[2] Position= (-240.732,380.311,46.5129)
-Point[3] Position= (-240.652,380.246,46.5704)
-Point[4] Position= (-240.271,379.92,46.8909)
-Point[5] Position= (-240.196,379.856,46.9541)
-Point[6] Position= (-239.705,379.439,47.3649)
-Point[7] Position= (-239.6,379.351,47.451)
-Point[8] Position= (-239.124,378.945,47.8474)
-Point[9] Position= (-238.346,378.277,48.4926)
-Point[10] Position= (-237.985,377.963,48.7919)
-Point[11] Position= (-237.679,377.696,49.0454)
-Point[12] Position= (-237.587,377.616,49.1213)
-Point[13] Position= (-237.289,377.356,49.3661)
-Point[14] Position= (-237.271,377.34,49.3811)
-Point[15] Position= (-236.132,376.351,50.3265)
-Point[16] Position= (-236.11,376.333,50.3452)
-Point[17] Position= (-235.481,375.804,50.8724)
-Point[18] Position= (-235.086,375.473,51.2044)
-Point[19] Position= (-234.92,375.334,51.3442)
-Point[20] Position= (-234.266,374.786,51.8996)
-Point[21] Position= (-234.231,374.757,51.9286)
-Point[22] Position= (-234.095,374.643,52.0447)
-Point[23] Position= (-233.896,374.477,52.2139)
-Point[24] Position= (-233.885,374.468,52.2232)
-Point[25] Position= (-233.648,374.271,52.4256)
-Point[26] Position= (-233.643,374.267,52.4294)
-Point[27] Position= (-233.618,374.246,52.4515)
-Point[28] Position= (-233.556,374.195,52.5041)
-Point[29] Position= (-233.366,374.037,52.6664)
-Point[30] Position= (-233.269,373.955,52.7502)
-Point[31] Position= (-233.254,373.943,52.7628)
-Point[32] Position= (-233.154,373.859,52.8488)
-Point[33] Position= (-233.053,373.775,52.9362)
-Point[34] Position= (-232.88,373.632,53.0844)
-Point[35] Position= (-232.661,373.449,53.2725)
-Point[36] Position= (-232.59,373.391,53.3328)
-Point[37] Position= (-232.065,372.954,53.7895)
-Point[38] Position= (-232.009,372.907,53.8385)
-Point[39] Position= (-231.698,372.648,54.1097)
-Point[40] Position= (-231.629,372.59,54.171)
-Point[41] Position= (-230.402,371.563,55.2562)
-Point[42] Position= (-230.325,371.497,55.3241)
-Point[43] Position= (-230.172,371.367,55.4586)
-Point[44] Position= (-230.099,371.304,55.5231)
-Point[45] Position= (-230.063,371.273,55.555)
-Point[46] Position= (-229.925,371.156,55.6763)
-Point[47] Position= (-229.779,371.031,55.8049)
-Point[48] Position= (-229.381,370.69,56.1561)
-Point[49] Position= (-229.274,370.598,56.2508)
-Point[50] Position= (-228.871,370.251,56.6068)
-Point[51] Position= (-228.255,369.717,57.1508)
-Point[52] Position= (-227.67,369.204,57.6654)
-Point[53] Position= (-227.323,368.896,57.9679)
-Point[54] Position= (-227.257,368.837,58.0259)
-Point[55] Position= (-227.072,368.672,58.1859)
-Point[56] Position= (-226.697,368.339,58.5098)
-Point[57] Position= (-226.61,368.262,58.5853)
-Point[58] Position= (-225.803,367.562,59.2767)
-Point[59] Position= (-225.78,367.542,59.2964)
-Point[60] Position= (-225.485,367.291,59.545)
-Point[61] Position= (-225.301,367.135,59.6997)
-Point[62] Position= (-225.2,367.05,59.7851)
-Point[63] Position= (-224.817,366.725,60.1099)
-Point[64] Position= (-224.392,366.363,60.4703)
-Point[65] Position= (-223.908,365.947,60.8827)
-Point[66] Position= (-223.675,365.745,61.0796)
-Point[67] Position= (-223.414,365.515,61.2996)
-Point[68] Position= (-223.125,365.259,61.5435)
-Point[69] Position= (-222.51,364.716,62.0592)
-Point[70] Position= (-222.35,364.574,62.193)
-Point[71] Position= (-222.216,364.454,62.305)
-Point[72] Position= (-222.212,364.451,62.3081)
-Point[73] Position= (-222.148,364.395,62.3613)
-Point[74] Position= (-221.986,364.253,62.4952)
-Point[75] Position= (-221.635,363.949,62.7878)
-Point[76] Position= (-221.353,363.718,63.0023)
-Point[77] Position= (-220.669,363.168,63.4985)
-Point[78] Position= (-220.667,363.166,63.5003)
-Point[79] Position= (-220.623,363.13,63.5324)
-Point[80] Position= (-219.765,362.422,64.1545)
-Point[81] Position= (-219.36,362.086,64.4466)
-Point[82] Position= (-218.923,361.721,64.7638)
-Point[83] Position= (-218.304,361.201,65.2276)
-Point[84] Position= (-218.25,361.155,65.268)
-Point[85] Position= (-218.234,361.142,65.2796)
-Point[86] Position= (-218.021,360.961,65.4389)
-Point[87] Position= (-217.636,360.638,65.7306)
-Point[88] Position= (-217.17,360.245,66.0947)
-Point[89] Position= (-217.114,360.198,66.1388)
-Point[90] Position= (-217.102,360.188,66.1476)
-Point[91] Position= (-216.418,359.612,66.6901)
-Point[92] Position= (-216.37,359.571,66.7284)
-Point[93] Position= (-215.945,359.214,67.0656)
-Point[94] Position= (-215.882,359.161,67.1163)
-Point[95] Position= (-215.803,359.094,67.1792)
-Point[96] Position= (-215.63,358.948,67.3166)
-Point[97] Position= (-215.188,358.573,67.6675)
-Point[98] Position= (-215.072,358.475,67.7594)
-Point[99] Position= (-214.692,358.154,68.0583)
-Point[100] Position= (-214.654,358.122,68.088)
-Point[101] Position= (-214.548,358.033,68.1709)
-Point[102] Position= (-214.524,358.013,68.1891)
-Point[103] Position= (-214.366,357.881,68.3126)
-Point[104] Position= (-214.267,357.798,68.3902)
-Point[105] Position= (-213.962,357.542,68.6267)
-Point[106] Position= (-213.446,357.096,69.0194)
-Point[107] Position= (-213.232,356.905,69.179)
-Point[108] Position= (-212.838,356.553,69.4742)
-Point[109] Position= (-212.755,356.48,69.5363)
-Point[110] Position= (-212.597,356.338,69.656)
-Point[111] Position= (-212.136,355.923,70.0052)
-Point[112] Position= (-212.065,355.859,70.0595)
-Point[113] Position= (-212.065,355.859,70.0597)
-Point[114] Position= (-211.992,355.794,70.1157)
-Point[115] Position= (-211.967,355.772,70.1348)
-Point[116] Position= (-211.365,355.235,70.5977)
-Point[117] Position= (-211.314,355.189,70.6371)
-Point[118] Position= (-211.054,354.958,70.8365)
-Point[119] Position= (-210.794,354.729,71.0351)
-Point[120] Position= (-210.414,354.389,71.3293)
-Point[121] Position= (-210.154,354.155,71.5312)
-Point[122] Position= (-210.003,354.019,71.6473)
-Point[123] Position= (-209.993,354.01,71.6544)
-Point[124] Position= (-209.726,353.769,71.858)
-Point[125] Position= (-209.58,353.638,71.9679)
-Point[126] Position= (-209.495,353.56,72.032)
-Point[127] Position= (-209.109,353.212,72.3211)
-Point[128] Position= (-208.997,353.11,72.4046)
-Point[129] Position= (-208.987,353.1,72.4123)
-Point[130] Position= (-208.791,352.924,72.5561)
-Point[131] Position= (-208.64,352.788,72.6669)
-Point[132] Position= (-208.526,352.685,72.7503)
-Point[133] Position= (-208.343,352.516,72.8871)
-Point[134] Position= (-207.951,352.159,73.1779)
-Point[135] Position= (-207.909,352.123,73.208)
-Point[136] Position= (-207.76,351.994,73.3152)
-Point[137] Position= (-207.716,351.955,73.347)
-Point[138] Position= (-207.592,351.847,73.4357)
-Point[139] Position= (-207.477,351.748,73.5182)
-Point[140] Position= (-207.406,351.685,73.5698)
-Point[141] Position= (-206.403,350.794,74.292)
-Point[142] Position= (-206.225,350.632,74.4203)
-Point[143] Position= (-205.68,350.141,74.807)
-Point[144] Position= (-205.621,350.088,74.849)
-Point[145] Position= (-205.494,349.972,74.939)
-Point[146] Position= (-205.107,349.615,75.2144)
-Point[147] Position= (-204.908,349.433,75.3542)
-Point[148] Position= (-204.846,349.376,75.3984)
-Point[149] Position= (-204.825,349.357,75.4131)
-
-TrackID =1967 : ParentID=1830 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.04548 -19.1534 26.594 keV
-Vertex : -20.5107 34.9615 7.52144 cm   Global time : 4.71509 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-205.107,349.615,75.2144)
-Point[1] Position= (-205.111,349.603,75.2301)
-
-TrackID =1966 : ParentID=1830 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.0125 4.25837 30.0019 keV
-Vertex : -20.5494 34.9972 7.4939 cm   Global time : 4.68062 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-205.494,349.972,74.939)
-Point[1] Position= (-205.466,349.976,74.967)
-
-TrackID =1965 : ParentID=1830 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.7941 9.24862 13.3143 keV
-Vertex : -20.5621 35.0088 7.4849 cm   Global time : 4.66939 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-205.621,350.088,74.849)
-Point[1] Position= (-205.6,350.094,74.8579)
-
-TrackID =1964 : ParentID=1830 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.7579 -21.0701 -8.99853 keV
-Vertex : -20.568 35.0141 7.4807 cm   Global time : 4.6642 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-205.68,350.141,74.807)
-Point[1] Position= (-205.642,350.12,74.798)
+TrackID =1852 : ParentID=1832 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 37.2541 -0.457532 7.86186 keV
+Vertex : -0.29737 0.0915196 1.73107 m    Global time : 5.86936 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-297.37,91.5196,1731.07)
+Point[1] Position= (-297.331,91.5191,1731.08)
 
-TrackID =1963 : ParentID=1830 : TrackStatus=1
+TrackID =1851 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.16419 -13.8318 34.8877 keV
-Vertex : -20.6225 35.0632 7.44203 cm   Global time : 4.61651 ns 
+Original momentum : -15.9691 35.9504 -3.092 keV
+Vertex : -0.286115 0.0880643 1.66552 m    Global time : 5.64712 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-206.225,350.632,74.4203)
-Point[1] Position= (-206.225,350.622,74.4459)
+Point[0] Position= (-286.115,88.0643,1665.52)
+Point[1] Position= (-286.133,88.1053,1665.52)
 
-TrackID =1962 : ParentID=1830 : TrackStatus=1
+TrackID =1850 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.3417 -10.9387 28.823 keV
-Vertex : -20.6403 35.0794 7.4292 cm   Global time : 4.6008 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-206.403,350.794,74.292)
-Point[1] Position= (-206.336,350.778,74.3358)
+Original momentum : 74.0674 -43.3532 22.7889 keV
+Vertex : -0.279771 0.0861158 1.62858 m    Global time : 5.52187 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-279.771,86.1158,1628.58)
+Point[1] Position= (-279.292,85.8354,1628.73)
+Point[2] Position= (-279.081,85.8189,1628.84)
 
-TrackID =1961 : ParentID=1830 : TrackStatus=1
+TrackID =1902 : ParentID=1850 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.71045 -16.3893 29.8982 keV
-Vertex : -20.7406 35.1685 7.35698 cm   Global time : 4.51394 ns 
+Original momentum : -15.3193 9.92482 31.4845 keV
+Vertex : -0.279292 0.0858354 1.62873 m    Global time : 5.53306 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-207.406,351.685,73.5698)
-Point[1] Position= (-207.409,351.675,73.5885)
+Point[0] Position= (-279.292,85.8354,1628.73)
+Point[1] Position= (-279.307,85.8449,1628.76)
 
-TrackID =1960 : ParentID=1830 : TrackStatus=1
+TrackID =1849 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.76187 -42.8546 5.71696 keV
-Vertex : -20.7477 35.1748 7.35182 cm   Global time : 4.5078 ns 
+Original momentum : -1.03528 -32.6165 2.60823 keV
+Vertex : -0.271502 0.0835751 1.58042 m    Global time : 5.35857 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-207.477,351.748,73.5182)
-Point[1] Position= (-207.47,351.706,73.5238)
+Point[0] Position= (-271.502,83.5751,1580.42)
+Point[1] Position= (-271.503,83.5504,1580.42)
 
-TrackID =1959 : ParentID=1830 : TrackStatus=1
+TrackID =1848 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.67422 -9.83423 33.6286 keV
-Vertex : -20.7592 35.1847 7.34357 cm   Global time : 4.49796 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-207.592,351.847,73.4357)
-Point[1] Position= (-207.593,351.841,73.4574)
+Original momentum : 8.06304 -78.9616 11.9167 keV
+Vertex : -0.269293 0.0828964 1.56756 m    Global time : 5.31496 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-269.293,82.8964,1567.56)
+Point[1] Position= (-269.242,82.3944,1567.63)
+Point[2] Position= (-269.271,82.3715,1567.61)
 
-TrackID =1958 : ParentID=1830 : TrackStatus=1
+TrackID =1847 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.5546 11.3326 16.5773 keV
-Vertex : -20.7716 35.1955 7.3347 cm   Global time : 4.48734 ns 
+Original momentum : -21.1753 34.1735 -3.82026 keV
+Vertex : -0.237046 0.0729878 1.37976 m    Global time : 4.67823 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-207.716,351.955,73.347)
-Point[1] Position= (-207.698,351.962,73.3576)
+Point[0] Position= (-237.046,72.9878,1379.76)
+Point[1] Position= (-237.072,73.0289,1379.76)
 
-TrackID =1957 : ParentID=1830 : TrackStatus=1
+TrackID =1846 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.5034 -34.3909 -10.3026 keV
-Vertex : -20.776 35.1994 7.33152 cm   Global time : 4.48354 ns 
+Original momentum : 13.4995 -72.3959 11.6436 keV
+Vertex : -0.217261 0.0669027 1.26457 m    Global time : 4.28766 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-207.76,351.994,73.3152)
-Point[1] Position= (-207.74,351.962,73.3057)
+Point[0] Position= (-217.261,66.9027,1264.57)
+Point[1] Position= (-217.19,66.5211,1264.63)
 
-TrackID =1956 : ParentID=1830 : TrackStatus=1
+TrackID =1845 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.5815 -38.2952 -6.27532 keV
-Vertex : -20.7909 35.2123 7.3208 cm   Global time : 4.47082 ns 
+Original momentum : -36.6215 -16.3384 -3.81523 keV
+Vertex : -0.205736 0.0633585 1.19747 m    Global time : 4.06016 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-207.909,352.123,73.208)
-Point[1] Position= (-207.897,352.089,73.2025)
+Point[0] Position= (-205.736,63.3585,1197.47)
+Point[1] Position= (-205.78,63.339,1197.47)
 
-TrackID =1955 : ParentID=1830 : TrackStatus=1
+TrackID =1844 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.9901 9.22355 27.8673 keV
-Vertex : -20.7951 35.2159 7.31779 cm   Global time : 4.46725 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-207.951,352.159,73.1779)
-Point[1] Position= (-207.934,352.166,73.1981)
+Original momentum : 36.4821 68.0383 8.64006 keV
+Vertex : -0.20563 0.0633259 1.19685 m    Global time : 4.05806 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-205.63,63.3259,1196.85)
+Point[1] Position= (-205.545,63.4851,1196.87)
+Point[2] Position= (-205.416,63.6256,1196.78)
 
-TrackID =1954 : ParentID=1830 : TrackStatus=1
+TrackID =1903 : ParentID=1844 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.43017 -7.57593 31.3949 keV
-Vertex : -20.8343 35.2516 7.28871 cm   Global time : 4.43306 ns 
+Original momentum : 16.4804 9.02599 36.2626 keV
+Vertex : -0.205545 0.0634851 1.19687 m    Global time : 4.0621 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-208.343,352.516,72.8871)
-Point[1] Position= (-208.345,352.512,72.9045)
+Point[0] Position= (-205.545,63.4851,1196.87)
+Point[1] Position= (-205.524,63.4962,1196.92)
 
-TrackID =1953 : ParentID=1830 : TrackStatus=1
+TrackID =1843 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.5116 4.93443 24.8396 keV
-Vertex : -20.8526 35.2685 7.27503 cm   Global time : 4.41701 ns 
+Original momentum : 13.6877 46.455 2.22924 keV
+Vertex : -0.199799 0.0615325 1.1629 m    Global time : 3.94295 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-208.526,352.685,72.7503)
-Point[1] Position= (-208.489,352.69,72.7753)
+Point[0] Position= (-199.799,61.5325,1162.9)
+Point[1] Position= (-199.774,61.6173,1162.91)
 
-TrackID =1952 : ParentID=1830 : TrackStatus=1
+TrackID =1842 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.9383 10.9676 22.9192 keV
-Vertex : -20.864 35.2788 7.26669 cm   Global time : 4.40719 ns 
+Original momentum : 17.3146 33.3423 2.62071 keV
+Vertex : -0.194417 0.059877 1.13156 m    Global time : 3.8367 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-208.64,352.788,72.6669)
-Point[1] Position= (-208.624,352.795,72.6816)
+Point[0] Position= (-194.417,59.877,1131.56)
+Point[1] Position= (-194.4,59.9113,1131.56)
 
-TrackID =1951 : ParentID=1830 : TrackStatus=1
+TrackID =1841 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.1472 9.37026 26.7158 keV
-Vertex : -20.8791 35.2924 7.25561 cm   Global time : 4.39414 ns 
+Original momentum : 50.6047 23.5513 10.6475 keV
+Vertex : -0.191387 0.0589446 1.11391 m    Global time : 3.77686 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-208.791,352.924,72.5561)
-Point[1] Position= (-208.772,352.931,72.5761)
+Point[0] Position= (-191.387,58.9446,1113.91)
+Point[1] Position= (-191.252,59.0076,1113.94)
 
-TrackID =1950 : ParentID=1830 : TrackStatus=1
+TrackID =1840 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.05302 -13.968 28.2063 keV
-Vertex : -20.8987 35.31 7.24123 cm   Global time : 4.37726 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-208.987,353.1,72.4123)
-Point[1] Position= (-208.99,353.093,72.4278)
+Original momentum : 57.1789 -133.027 38.731 keV
+Vertex : -0.187235 0.0576668 1.08974 m    Global time : 3.69488 ns 
+  Current trajectory has 7 points.
+Point[0] Position= (-187.235,57.6668,1089.74)
+Point[1] Position= (-186.121,55.0755,1090.49)
+Point[2] Position= (-186.188,54.0545,1091.89)
+Point[3] Position= (-184.507,53.5282,1092.37)
+Point[4] Position= (-184.849,53.9794,1092.25)
+Point[5] Position= (-185.501,54.2584,1092.15)
+Point[6] Position= (-185.488,54.3264,1092.15)
 
-TrackID =1949 : ParentID=1830 : TrackStatus=1
+TrackID =1905 : ParentID=1840 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.8277 -31.653 -11.2979 keV
-Vertex : -20.8997 35.311 7.24046 cm   Global time : 4.37635 ns 
+Original momentum : 9.98316 7.90721 -45.1223 keV
+Vertex : -0.184849 0.0539794 1.09225 m    Global time : 3.78714 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-208.997,353.11,72.4046)
-Point[1] Position= (-208.989,353.089,72.3971)
+Point[0] Position= (-184.849,53.9794,1092.25)
+Point[1] Position= (-184.832,53.9928,1092.17)
 
-TrackID =1948 : ParentID=1830 : TrackStatus=1
+TrackID =1904 : ParentID=1840 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 19.6191 6.9629 32.2192 keV
-Vertex : -20.9109 35.3212 7.23211 cm   Global time : 4.36664 ns 
+Original momentum : -17.6613 -22.7015 37.6173 keV
+Vertex : -0.186188 0.0540545 1.09189 m    Global time : 3.75151 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-209.109,353.212,72.3211)
-Point[1] Position= (-209.094,353.217,72.3458)
+Point[0] Position= (-186.188,54.0545,1091.89)
+Point[1] Position= (-186.219,54.0153,1091.95)
 
-TrackID =1947 : ParentID=1830 : TrackStatus=1
+TrackID =1839 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.5731 -23.404 44.7126 keV
-Vertex : -20.9495 35.356 7.2032 cm   Global time : 4.33337 ns 
+Original momentum : 1.34395 33.9983 -0.416337 keV
+Vertex : -0.175268 0.0539836 1.02005 m    Global time : 3.45862 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-209.495,353.56,72.032)
-Point[1] Position= (-209.457,353.523,72.1045)
+Point[0] Position= (-175.268,53.9836,1020.05)
+Point[1] Position= (-175.267,54.0117,1020.05)
 
-TrackID =1946 : ParentID=1830 : TrackStatus=1
+TrackID =1838 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.3046 -36.6686 -8.63062 keV
-Vertex : -20.958 35.3638 7.19679 cm   Global time : 4.32601 ns 
+Original momentum : -14.5369 -39.4469 1.34656 keV
+Vertex : -14.5108 4.46934 84.4466 cm   Global time : 2.86327 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-209.58,353.638,71.9679)
-Point[1] Position= (-209.568,353.607,71.9606)
+Point[0] Position= (-145.108,44.6934,844.466)
+Point[1] Position= (-145.127,44.6414,844.468)
 
-TrackID =1945 : ParentID=1830 : TrackStatus=1
+TrackID =1837 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.0255417 -31.9646 -3.53628 keV
-Vertex : -20.9726 35.3769 7.1858 cm   Global time : 4.31349 ns 
+Original momentum : 30.4659 14.3869 5.63185 keV
+Vertex : -14.1304 4.35219 82.2326 cm   Global time : 2.78821 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-209.726,353.769,71.858)
-Point[1] Position= (-209.726,353.751,71.8561)
+Point[0] Position= (-141.304,43.5219,822.326)
+Point[1] Position= (-141.279,43.5339,822.331)
 
-TrackID =1944 : ParentID=1830 : TrackStatus=1
+TrackID =1836 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 39.6251 -1.57051 32.0736 keV
-Vertex : -20.9993 35.401 7.16544 cm   Global time : 4.29049 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-209.993,354.01,71.6544)
-Point[1] Position= (-209.94,354.008,71.6975)
+Original momentum : -172.318 117.418 5.79286 keV
+Vertex : -12.9175 3.97857 75.1717 cm   Global time : 2.5488 ns 
+  Current trajectory has 11 points.
+Point[0] Position= (-129.175,39.7857,751.717)
+Point[1] Position= (-129.178,39.788,751.717)
+Point[2] Position= (-131.659,41.9328,752.239)
+Point[3] Position= (-137.099,44.3017,753.149)
+Point[4] Position= (-141.743,44.3273,753.629)
+Point[5] Position= (-145.123,45.4019,753.735)
+Point[6] Position= (-144.653,47.9528,754.326)
+Point[7] Position= (-144.125,49.7634,753.587)
+Point[8] Position= (-144.054,49.8179,753.523)
+Point[9] Position= (-143.258,49.7537,752.998)
+Point[10] Position= (-143.225,49.6945,752.654)
 
-TrackID =1943 : ParentID=1830 : TrackStatus=1
+TrackID =1908 : ParentID=1836 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.81547 -32.4667 10.1563 keV
-Vertex : -21.0003 35.4019 7.16473 cm   Global time : 4.28969 ns 
+Original momentum : 0.900053 52.2859 -5.4949 keV
+Vertex : -14.4054 4.98179 75.3523 cm   Global time : 2.78292 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-210.003,354.019,71.6473)
-Point[1] Position= (-210.007,353.998,71.6537)
+Point[0] Position= (-144.054,49.8179,753.523)
+Point[1] Position= (-144.052,49.9338,753.511)
 
-TrackID =1942 : ParentID=1830 : TrackStatus=1
+TrackID =1907 : ParentID=1836 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.7463 2.96251 6.13138 keV
-Vertex : -21.0154 35.4155 7.15312 cm   Global time : 4.27671 ns 
+Original momentum : 0.634469 14.7102 -32.9318 keV
+Vertex : -13.1659 4.19328 75.2239 cm   Global time : 2.57856 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-210.154,354.155,71.5312)
-Point[1] Position= (-210.118,354.157,71.5366)
+Point[0] Position= (-131.659,41.9328,752.239)
+Point[1] Position= (-131.658,41.9466,752.208)
 
-TrackID =1941 : ParentID=1830 : TrackStatus=1
+TrackID =1906 : ParentID=1836 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 48.3211 -27.253 7.63217 keV
-Vertex : -21.0414 35.4389 7.13293 cm   Global time : 4.25435 ns 
+Original momentum : -19.1848 -15.3031 -26.71 keV
+Vertex : -12.9178 3.9788 75.1717 cm   Global time : 2.54883 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-210.414,354.389,71.3293)
-Point[1] Position= (-210.335,354.344,71.3418)
+Point[0] Position= (-129.178,39.788,751.717)
+Point[1] Position= (-129.197,39.7735,751.692)
 
-TrackID =1940 : ParentID=1830 : TrackStatus=1
+TrackID =1835 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.6134 -42.595 8.83266 keV
-Vertex : -21.0794 35.4729 7.10351 cm   Global time : 4.22188 ns 
+Original momentum : 33.5998 -22.8306 8.69447 keV
+Vertex : -11.3197 3.48594 65.8714 cm   Global time : 2.23346 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-210.794,354.729,71.0351)
-Point[1] Position= (-210.729,354.655,71.0505)
+Point[0] Position= (-113.197,34.8594,658.714)
+Point[1] Position= (-113.154,34.8302,658.726)
 
-TrackID =1939 : ParentID=1830 : TrackStatus=1
+TrackID =1834 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 19.0514 -36.3927 -9.49396 keV
-Vertex : -21.1054 35.4958 7.08365 cm   Global time : 4.19994 ns 
+Original momentum : -9.44355 47.3395 -1.81209 keV
+Vertex : -8.76573 2.69861 51.0037 cm   Global time : 1.72936 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-211.054,354.958,70.8365)
-Point[1] Position= (-211.036,354.925,70.8278)
+Point[0] Position= (-87.6573,26.9861,510.037)
+Point[1] Position= (-87.6744,27.0717,510.034)
 
-TrackID =1938 : ParentID=1830 : TrackStatus=1
+TrackID =1833 : ParentID=1832 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.45347 -6.03049 31.8573 keV
-Vertex : -21.1314 35.5189 7.06371 cm   Global time : 4.17794 ns 
+Original momentum : 12.6429 -31.162 4.9707 keV
+Vertex : -2.86506 0.882429 16.6669 cm   Global time : 565.121 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (-28.6506,8.82429,166.669)
+Point[1] Position= (-28.6402,8.79866,166.673)
+
+TrackID =1822 : ParentID=46 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : 161.285 285.558 63.952 MeV
+Vertex : -1.77824e-295 -1.46331e-296 1.33405e-293 fm   Global time : 6.40184e-305 ps 
+  Current trajectory has 6 points.
+Point[0] Position= (-1.77824e-307,-1.46331e-308,1.33405e-305)
+Point[1] Position= (98.3573,174.143,39.0001)
+Point[2] Position= (122.947,217.679,48.7502)
+Point[3] Position= (125.406,222.033,49.7252)
+Point[4] Position= (147.536,261.215,58.5002)
+Point[5] Position= (149.902,265.404,59.4384)
+
+TrackID =1821 : ParentID=46 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : -11.4786 -237.759 -8.52697 MeV
+Vertex : -1.77824e-295 -1.46331e-296 1.33405e-293 fm   Global time : 6.40184e-305 ps 
+  Current trajectory has 10 points.
+Point[0] Position= (-1.77824e-307,-1.46331e-308,1.33405e-305)
+Point[1] Position= (-9.64442,-199.767,-7.16443)
+Point[2] Position= (-12.0555,-249.709,-8.95553)
+Point[3] Position= (-12.2966,-254.703,-9.13464)
+Point[4] Position= (-14.4666,-299.651,-10.7466)
+Point[5] Position= (-14.7077,-304.645,-10.9257)
+Point[6] Position= (-16.8777,-349.593,-12.5377)
+Point[7] Position= (-17.1188,-354.587,-12.7169)
+Point[8] Position= (-19.2888,-399.535,-14.3289)
+Point[9] Position= (-19.3247,-400.278,-14.3555)
+
+TrackID =1831 : ParentID=1823 : TrackStatus=1
+Particle name : unknown : rho0  PDG code : 113  Charge : 0
+Original momentum : -0.369628 -0.184631 2.94569 GeV
+Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-211.314,355.189,70.6371)
-Point[1] Position= (-211.316,355.186,70.655)
+Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
+Point[1] Position= (4.48899e-306,-2.82373e-306,1.005e-305)
 
-TrackID =1937 : ParentID=1830 : TrackStatus=1
+TrackID =1937 : ParentID=1925 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.5274 9.51722 28.3629 keV
-Vertex : -21.1365 35.5235 7.05977 cm   Global time : 4.17361 ns 
+Original momentum : 38.28 28.188 27.1174 keV
+Vertex : -36.6917 -20.4835 83.4428 cm   Global time : 3.18983 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-211.365,355.235,70.5977)
-Point[1] Position= (-211.342,355.243,70.6219)
+Point[0] Position= (-366.917,-204.835,834.428)
+Point[1] Position= (-366.857,-204.791,834.47)
 
-TrackID =1936 : ParentID=1830 : TrackStatus=1
+TrackID =1936 : ParentID=1925 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.521433 -38.5476 2.3739 keV
-Vertex : -21.1992 35.5794 7.01157 cm   Global time : 4.12078 ns 
+Original momentum : 24.0389 16.8286 15.9585 keV
+Vertex : -35.4401 -19.7866 80.5999 cm   Global time : 3.08114 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-211.992,355.794,70.1157)
-Point[1] Position= (-211.992,355.764,70.1175)
+Point[0] Position= (-354.401,-197.866,805.999)
+Point[1] Position= (-354.387,-197.856,806.008)
 
-TrackID =1935 : ParentID=1830 : TrackStatus=1
+TrackID =1935 : ParentID=1925 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.88945 7.35845 30.4545 keV
-Vertex : -21.2065 35.5859 7.00597 cm   Global time : 4.11465 ns 
+Original momentum : -27.3316 -16.1664 -14.6337 keV
+Vertex : -35.0095 -19.5471 79.6222 cm   Global time : 3.04376 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-212.065,355.859,70.0597)
-Point[1] Position= (-212.059,355.863,70.077)
+Point[0] Position= (-350.095,-195.471,796.222)
+Point[1] Position= (-350.113,-195.481,796.212)
 
-TrackID =1934 : ParentID=1830 : TrackStatus=1
+TrackID =1934 : ParentID=1925 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.2269 -46.9397 7.92585 keV
-Vertex : -21.2065 35.5859 7.00595 cm   Global time : 4.11462 ns 
+Original momentum : -72.8279 -21.8317 -29.9921 keV
+Vertex : -34.506 -19.2671 78.4794 cm   Global time : 3.00006 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-212.065,355.859,70.0595)
-Point[1] Position= (-212.058,355.826,70.0652)
-Point[2] Position= (-212.038,355.787,70.0414)
+Point[0] Position= (-345.06,-192.671,784.794)
+Point[1] Position= (-345.338,-192.754,784.679)
+Point[2] Position= (-345.335,-192.758,784.666)
 
-TrackID =1933 : ParentID=1830 : TrackStatus=1
+TrackID =1933 : ParentID=1925 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.07638 4.64598 32.3014 keV
-Vertex : -21.2136 35.5923 7.00052 cm   Global time : 4.10867 ns 
+Original momentum : 15.4556 39.9861 19.0596 keV
+Vertex : -32.2609 -18.0179 73.3812 cm   Global time : 2.80514 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-212.136,355.923,70.0052)
-Point[1] Position= (-212.132,355.926,70.0241)
+Point[0] Position= (-322.609,-180.179,733.812)
+Point[1] Position= (-322.592,-180.134,733.833)
 
-TrackID =1932 : ParentID=1830 : TrackStatus=1
+TrackID =1932 : ParentID=1925 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.7849 -47.7332 26.4306 keV
-Vertex : -21.2597 35.6338 6.9656 cm   Global time : 4.07002 ns 
+Original momentum : -24.3059 -19.3468 -14.1282 keV
+Vertex : -29.9238 -16.718 68.0724 cm   Global time : 2.60219 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-212.597,356.338,69.656)
-Point[1] Position= (-212.552,356.249,69.7054)
+Point[0] Position= (-299.238,-167.18,680.724)
+Point[1] Position= (-299.253,-167.192,680.716)
 
-TrackID =1931 : ParentID=1830 : TrackStatus=1
+TrackID =1931 : ParentID=1925 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.8416 8.08497 5.62131 keV
-Vertex : -21.2755 35.648 6.95363 cm   Global time : 4.05679 ns 
+Original momentum : 29.519 -3.67885 13.2778 keV
+Vertex : -29.8065 -16.6528 67.8059 cm   Global time : 2.592 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-212.755,356.48,69.5363)
-Point[1] Position= (-212.731,356.486,69.5401)
+Point[0] Position= (-298.065,-166.528,678.059)
+Point[1] Position= (-298.049,-166.53,678.067)
 
-TrackID =1930 : ParentID=1830 : TrackStatus=1
+TrackID =1930 : ParentID=1925 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.2788 -48.0791 9.16632 keV
-Vertex : -21.2838 35.6553 6.94742 cm   Global time : 4.04995 ns 
+Original momentum : 28.2371 16.6785 18.0731 keV
+Vertex : -26.339 -14.7258 59.926 cm   Global time : 2.29079 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-212.838,356.553,69.4742)
-Point[1] Position= (-212.822,356.49,69.4863)
+Point[0] Position= (-263.39,-147.258,599.26)
+Point[1] Position= (-263.37,-147.246,599.273)
 
-TrackID =1929 : ParentID=1830 : TrackStatus=1
+TrackID =1929 : ParentID=1925 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.5914 5.23382 36.4731 keV
-Vertex : -21.3232 35.6905 6.9179 cm   Global time : 4.01724 ns 
+Original momentum : 43.7651 -23.8402 16.4742 keV
+Vertex : -20.5254 -11.4887 46.7131 cm   Global time : 1.78569 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-213.232,356.905,69.179)
-Point[1] Position= (-213.213,356.91,69.2124)
+Point[0] Position= (-205.254,-114.887,467.131)
+Point[1] Position= (-205.192,-114.921,467.155)
 
-TrackID =1928 : ParentID=1830 : TrackStatus=1
+TrackID =1928 : ParentID=1925 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.8656 9.55723 30.265 keV
-Vertex : -21.3446 35.7096 6.90194 cm   Global time : 3.99957 ns 
+Original momentum : 6.68877 29.6305 11.4042 keV
+Vertex : -13.5372 -7.58368 30.8228 cm   Global time : 1.17819 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-213.446,357.096,69.0194)
-Point[1] Position= (-213.429,357.104,69.0428)
+Point[0] Position= (-135.372,-75.8368,308.228)
+Point[1] Position= (-135.367,-75.8147,308.236)
 
-TrackID =1927 : ParentID=1830 : TrackStatus=1
+TrackID =1927 : ParentID=1925 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.8722 2.30481 4.47131 keV
-Vertex : -21.3962 35.7542 6.86267 cm   Global time : 3.95732 ns 
+Original momentum : -38.8176 19.5351 -10.0215 keV
+Vertex : -10.6635 -5.97592 24.2836 cm   Global time : 928.219 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-213.962,357.542,68.6267)
-Point[1] Position= (-213.921,357.545,68.631)
+Point[0] Position= (-106.635,-59.7592,242.836)
+Point[1] Position= (-106.693,-59.7299,242.821)
 
-TrackID =1926 : ParentID=1830 : TrackStatus=1
+TrackID =1926 : ParentID=1925 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.5248 13.7824 19.4372 keV
-Vertex : -21.4267 35.7798 6.83902 cm   Global time : 3.93253 ns 
+Original momentum : -6.2175 -32.6541 -9.43013 keV
+Vertex : -2.15292 -1.20662 4.90154 cm   Global time : 187.367 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-214.267,357.798,68.3902)
-Point[1] Position= (-214.25,357.807,68.4026)
+Point[0] Position= (-21.5292,-12.0662,49.0154)
+Point[1] Position= (-21.5345,-12.094,49.0074)
 
-TrackID =1925 : ParentID=1830 : TrackStatus=1
+TrackID =1923 : ParentID=1910 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 5.0651 -9.0703 42.6363 keV
-Vertex : -21.4366 35.7881 6.83126 cm   Global time : 3.92442 ns 
+Original momentum : 9.76049 0.021141 -31.5042 keV
+Vertex : 21.877 38.5798 8.01328 cm   Global time : 1.50397 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-214.366,357.881,68.3126)
-Point[1] Position= (-214.361,357.872,68.3545)
+Point[0] Position= (218.77,385.798,80.1328)
+Point[1] Position= (218.775,385.798,80.1148)
 
-TrackID =1924 : ParentID=1830 : TrackStatus=1
+TrackID =1918 : ParentID=1910 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 46.9687 0.329934 21.5828 keV
-Vertex : -21.4524 35.8013 6.81891 cm   Global time : 3.91156 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-214.524,358.013,68.1891)
-Point[1] Position= (-214.459,358.014,68.2189)
+Original momentum : -0.393291 1.0609 0.105148 MeV
+Vertex : 17.3589 30.7235 6.90137 cm   Global time : 1.19939 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (173.589,307.235,69.0137)
+Point[1] Position= (173.386,307.783,69.068)
+Point[2] Position= (173.278,307.71,69.0564)
 
-TrackID =1923 : ParentID=1830 : TrackStatus=1
+TrackID =1917 : ParentID=1910 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.7854 -32.7669 -11.4564 keV
-Vertex : -21.4548 35.8033 6.81709 cm   Global time : 3.90967 ns 
+Original momentum : 27.0589 -3.75437 -39.0182 keV
+Vertex : 16.993 30.0857 6.75805 cm   Global time : 1.17441 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-214.548,358.033,68.1709)
-Point[1] Position= (-214.525,358.002,68.1602)
+Point[0] Position= (169.93,300.857,67.5805)
+Point[1] Position= (169.961,300.853,67.5353)
 
-TrackID =1922 : ParentID=1830 : TrackStatus=1
+TrackID =1916 : ParentID=1910 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.82442 -14.0078 27.3572 keV
-Vertex : -21.4654 35.8122 6.8088 cm   Global time : 3.90105 ns 
+Original momentum : -23.7289 20.0334 -21.8092 keV
+Vertex : 15.951 28.24 6.33317 cm   Global time : 1.1023 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-214.654,358.122,68.088)
-Point[1] Position= (-214.659,358.114,68.1027)
+Point[0] Position= (159.51,282.4,63.3317)
+Point[1] Position= (159.492,282.415,63.3153)
 
-TrackID =1921 : ParentID=1830 : TrackStatus=1
+TrackID =1915 : ParentID=1912 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.7053 -3.22516 -6.71173 keV
-Vertex : -21.4692 35.8154 6.80583 cm   Global time : 3.89798 ns 
+Original momentum : 43.9116 -4.23754 -2.73345 keV
+Vertex : -2.44861 -48.901 -1.65911 cm   Global time : 1.63418 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-214.692,358.154,68.0583)
-Point[1] Position= (-214.663,358.151,68.0532)
+Point[0] Position= (-24.4861,-489.01,-16.5911)
+Point[1] Position= (-24.4424,-489.014,-16.5938)
 
-TrackID =1920 : ParentID=1830 : TrackStatus=1
+TrackID =1913 : ParentID=1912 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.196 10.6804 31.1751 keV
-Vertex : -21.5188 35.8573 6.76675 cm   Global time : 3.85758 ns 
+Original momentum : -30.7844 0.475386 11.7802 keV
+Vertex : -1.99342 -41.0918 -1.46853 cm   Global time : 1.37316 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-215.188,358.573,67.6675)
-Point[1] Position= (-215.175,358.581,67.6905)
+Point[0] Position= (-19.9342,-410.918,-14.6853)
+Point[1] Position= (-19.9518,-410.918,-14.6786)
 
-TrackID =1919 : ParentID=1830 : TrackStatus=1
+TrackID =1941 : ParentID=1911 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.1255 -42.3929 0.498129 keV
-Vertex : -21.563 35.8948 6.73166 cm   Global time : 3.82163 ns 
+Original momentum : -6.37746 0.744646 -37.7809 keV
+Vertex : -2.53708 -46.911 -1.83668 cm   Global time : 1.56854 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-215.63,358.948,67.3166)
-Point[1] Position= (-215.577,358.882,67.3174)
+Point[0] Position= (-25.3708,-469.11,-18.3668)
+Point[1] Position= (-25.3757,-469.109,-18.3957)
 
-TrackID =1918 : ParentID=1830 : TrackStatus=1
+TrackID =1938 : ParentID=1911 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.5223 -10.7866 48.2145 keV
-Vertex : -21.5803 35.9094 6.71792 cm   Global time : 3.80759 ns 
+Original momentum : 0.656562 -1.53731 -1.03874 MeV
+Vertex : -1.95012 -40.3585 -1.45271 cm   Global time : 1.34866 ns 
+  Current trajectory has 22 points.
+Point[0] Position= (-19.5012,-403.585,-14.5271)
+Point[1] Position= (-19.4176,-403.756,-14.6227)
+Point[2] Position= (-19.386,-403.925,-14.7764)
+Point[3] Position= (-19.3082,-404.11,-14.8706)
+Point[4] Position= (-19.4057,-404.309,-14.8289)
+Point[5] Position= (-19.463,-404.513,-14.7815)
+Point[6] Position= (-19.4657,-404.532,-14.7709)
+Point[7] Position= (-20.9673,-449.511,14.0162)
+Point[8] Position= (-20.9844,-449.542,14.0472)
+Point[9] Position= (-21.0257,-449.584,14.0771)
+Point[10] Position= (-21.0519,-449.619,14.1268)
+Point[11] Position= (-21.0884,-449.662,14.1596)
+Point[12] Position= (-21.1295,-449.698,14.1966)
+Point[13] Position= (-21.172,-449.744,14.217)
+Point[14] Position= (-21.2114,-449.797,14.2451)
+Point[15] Position= (-21.2756,-449.853,14.2652)
+Point[16] Position= (-21.3232,-449.943,14.2568)
+Point[17] Position= (-21.3997,-450.042,14.2948)
+Point[18] Position= (-21.4446,-450.086,14.3662)
+Point[19] Position= (-21.5133,-450.049,14.522)
+Point[20] Position= (-21.613,-450.156,14.5908)
+Point[21] Position= (-21.6867,-450.193,14.7448)
+
+TrackID =1947 : ParentID=1909 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 30.8474 -14.7218 -22.8581 keV
+Vertex : 22.4929 39.6208 9.06239 cm   Global time : 1.54989 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (224.929,396.208,90.6239)
+Point[1] Position= (224.956,396.195,90.604)
+
+TrackID =1946 : ParentID=1909 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -335.425 996.362 295.821 keV
+Vertex : 22.4314 39.5287 9.04586 cm   Global time : 1.54616 ns 
+  Current trajectory has 10 points.
+Point[0] Position= (224.314,395.287,90.4586)
+Point[1] Position= (224.301,395.397,90.4638)
+Point[2] Position= (224.237,395.489,90.4309)
+Point[3] Position= (224.201,395.587,90.4146)
+Point[4] Position= (224.244,395.516,90.4393)
+Point[5] Position= (224.256,395.425,90.4672)
+Point[6] Position= (224.173,395.341,90.496)
+Point[7] Position= (224.082,395.223,90.5374)
+Point[8] Position= (224.016,395.092,90.6229)
+Point[9] Position= (223.972,395.181,90.7874)
+
+TrackID =1943 : ParentID=1909 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 51.5974 -16.8016 -33.8971 keV
+Vertex : 16.4602 29.1563 6.52754 cm   Global time : 1.13786 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (164.602,291.563,65.2754)
+Point[1] Position= (164.714,291.526,65.2015)
+
+TrackID =1942 : ParentID=1938 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : 4.42225 -28.765 -6.52385 keV
+Vertex : -2.14446 -45.0086 1.43662 cm   Global time : 1.54984 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-215.803,359.094,67.1792)
-Point[1] Position= (-215.769,359.078,67.2533)
+Point[0] Position= (-21.4446,-450.086,14.3662)
+Point[1] Position= (-21.1229,-452.178,13.8917)
 
-TrackID =1917 : ParentID=1830 : TrackStatus=1
+TrackID =1948 : ParentID=1942 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.92478 -0.446814 38 keV
-Vertex : -21.5882 35.9161 6.71163 cm   Global time : 3.8012 ns 
+Original momentum : -148.012 11.3471 -85.6939 keV
+Vertex : -2.11229 -45.2178 1.38917 cm   Global time : 1.55708 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-215.882,359.161,67.1163)
-Point[1] Position= (-215.879,359.161,67.1452)
+Point[0] Position= (-21.1229,-452.178,13.8917)
+Point[1] Position= (-21.1253,-452.178,13.8903)
+
+TrackID =1922 : ParentID=1910 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : 28.5977 50.2924 5.64211 keV
+Vertex : 19.9269 35.1576 7.53963 cm   Global time : 1.37164 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (199.269,351.576,75.3963)
+Point[1] Position= (199.703,352.34,75.4819)
+Point[2] Position= (221.947,391.458,79.8704)
+Point[3] Position= (223.413,394.037,80.1597)
 
-TrackID =1916 : ParentID=1830 : TrackStatus=1
+TrackID =1949 : ParentID=1922 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 45.0395 -13.5467 38.2858 keV
-Vertex : -21.5945 35.9214 6.70656 cm   Global time : 3.79605 ns 
+Original momentum : 121.99 102.371 -187.962 keV
+Vertex : 22.3413 39.4037 8.01597 cm   Global time : 1.53534 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-215.945,359.214,67.0656)
-Point[1] Position= (-215.858,359.188,67.1399)
+Point[0] Position= (223.413,394.037,80.1597)
+Point[1] Position= (223.418,394.041,80.1524)
+
+TrackID =1920 : ParentID=1910 : TrackStatus=1
+Particle name : gamma  PDG code : 22  Charge : 0
+Original momentum : 16.0406 28.9968 4.59735 keV
+Vertex : 19.7608 34.8636 7.50063 cm   Global time : 1.3603 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (197.608,348.636,75.0063)
+Point[1] Position= (199.668,352.36,75.5967)
+Point[2] Position= (221.451,391.739,81.8401)
+Point[3] Position= (223.042,394.614,82.2959)
 
-TrackID =1915 : ParentID=1830 : TrackStatus=1
+TrackID =1950 : ParentID=1920 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 20.748 -25.2835 -14.7119 keV
-Vertex : -21.637 35.9571 6.67284 cm   Global time : 3.76186 ns 
+Original momentum : -100.669 149.778 27.1716 keV
+Vertex : 22.3042 39.4614 8.22959 cm   Global time : 1.53725 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-216.37,359.571,66.7284)
-Point[1] Position= (-216.356,359.554,66.7185)
+Point[0] Position= (223.042,394.614,82.2959)
+Point[1] Position= (223.04,394.617,82.2964)
 
-TrackID =1914 : ParentID=1830 : TrackStatus=1
+TrackID =1953 : ParentID=1919 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.0156 -32.0471 9.33392 keV
-Vertex : -21.6418 35.9612 6.66901 cm   Global time : 3.75797 ns 
+Original momentum : -25.9845 -71.2419 -192.532 keV
+Vertex : 7.34218 34.529 -9.62265 cm   Global time : 2.07386 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-216.418,359.612,66.6901)
-Point[1] Position= (-216.422,359.593,66.6958)
+Point[0] Position= (73.4218,345.29,-96.2265)
+Point[1] Position= (73.4211,345.288,-96.2315)
 
-TrackID =1913 : ParentID=1830 : TrackStatus=1
+TrackID =1952 : ParentID=1919 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.1008 -47.928 7.75112 keV
-Vertex : -21.7102 36.0188 6.61476 cm   Global time : 3.70316 ns 
+Original momentum : -47.3347 -40.329 15.654 keV
+Vertex : 7.47021 34.4359 -9.24241 cm   Global time : 2.06012 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-217.102,360.188,66.1476)
-Point[1] Position= (-217.087,360.127,66.1575)
+Point[0] Position= (74.7021,344.359,-92.4241)
+Point[1] Position= (74.7021,344.359,-92.4241)
 
-TrackID =1912 : ParentID=1830 : TrackStatus=1
+TrackID =1951 : ParentID=1919 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.3255 14.542 16.1949 keV
-Vertex : -21.7114 36.0198 6.61388 cm   Global time : 3.70227 ns 
+Original momentum : 242.025 262.253 172.117 keV
+Vertex : 19.831 34.9887 7.5207 cm   Global time : 1.36514 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-217.114,360.198,66.1388)
-Point[1] Position= (-217.101,360.205,66.1475)
+Point[0] Position= (198.31,349.887,75.207)
+Point[1] Position= (198.337,349.916,75.2257)
 
-TrackID =1911 : ParentID=1830 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.6121 -4.31347 45.0681 keV
-Vertex : -21.717 36.0245 6.60947 cm   Global time : 3.6978 ns 
+TrackID =1924 : ParentID=1831 : TrackStatus=1
+Particle name : pi+  PDG code : 211  Charge : 1
+Original momentum : -0.0545672 -0.0118644 1.86247 GeV
+Vertex : 4.48899e-294 -2.82373e-294 1.005e-293 fm   Global time : 6.98778e-305 ps 
+  Current trajectory has 66 points.
+Point[0] Position= (4.48899e-306,-2.82373e-306,1.005e-305)
+Point[1] Position= (-2.66235,-0.585215,90.9173)
+Point[2] Position= (-4.73475,-1.04608,161.825)
+Point[3] Position= (-12.749,-2.86088,436.704)
+Point[4] Position= (-13.2495,-2.97375,453.808)
+Point[5] Position= (-14.2285,-3.19274,487.177)
+Point[6] Position= (-15.0374,-3.3755,514.72)
+Point[7] Position= (-16.3757,-3.6748,560.284)
+Point[8] Position= (-17.8395,-4.00267,610.105)
+Point[9] Position= (-28.1561,-6.39304,961.424)
+Point[10] Position= (-28.9492,-6.58236,988.663)
+Point[11] Position= (-30.6362,-6.98074,1046.7)
+Point[12] Position= (-33.3197,-7.61746,1139.14)
+Point[13] Position= (-34.741,-7.95402,1188.24)
+Point[14] Position= (-38.6922,-8.88775,1324.83)
+Point[15] Position= (-39.0149,-8.96426,1335.99)
+Point[16] Position= (-41.1505,-9.47414,1409.74)
+Point[17] Position= (-45.4624,-10.5009,1559.02)
+Point[18] Position= (-50.1418,-11.5985,1720.8)
+Point[19] Position= (-52.251,-12.0886,1793.58)
+Point[20] Position= (-53.2458,-12.3186,1828.11)
+Point[21] Position= (-53.352,-12.3433,1831.8)
+Point[22] Position= (-60.1081,-13.8945,2066.39)
+Point[23] Position= (-66.1817,-15.243,2277.8)
+Point[24] Position= (-72.5874,-16.6611,2501.65)
+Point[25] Position= (-73.3453,-16.8286,2528.09)
+Point[26] Position= (-73.8844,-16.9472,2546.91)
+Point[27] Position= (-75.86,-17.3837,2615.89)
+Point[28] Position= (-78.5358,-17.9785,2709.23)
+Point[29] Position= (-79.2603,-18.1408,2734.54)
+Point[30] Position= (-81.3684,-18.6158,2808.33)
+Point[31] Position= (-84.2223,-19.2635,2907.96)
+Point[32] Position= (-86.3355,-19.7501,2981.79)
+Point[33] Position= (-88.4949,-20.2408,3057.05)
+Point[34] Position= (-95.8781,-21.9031,3313.03)
+Point[35] Position= (-97.6272,-22.2928,3373.55)
+Point[36] Position= (-99.6533,-22.7528,3443.63)
+Point[37] Position= (-101.268,-23.1209,3499.45)
+Point[38] Position= (-101.451,-23.1621,3505.75)
+Point[39] Position= (-104.367,-23.82,3606.68)
+Point[40] Position= (-106.257,-24.241,3672.1)
+Point[41] Position= (-110.842,-25.2601,3831.53)
+Point[42] Position= (-110.874,-25.2672,3832.65)
+Point[43] Position= (-113.354,-25.8302,3919.55)
+Point[44] Position= (-114.581,-26.1088,3962.57)
+Point[45] Position= (-116.724,-26.5993,4037.95)
+Point[46] Position= (-118.009,-26.8942,4083.41)
+Point[47] Position= (-118.726,-27.0586,4108.85)
+Point[48] Position= (-120.533,-27.4693,4173.06)
+Point[49] Position= (-122.236,-27.8558,4233.66)
+Point[50] Position= (-127.041,-28.9381,4411.22)
+Point[51] Position= (-127.985,-29.1521,4446.23)
+Point[52] Position= (-128.132,-29.1856,4451.69)
+Point[53] Position= (-129.682,-29.541,4509.24)
+Point[54] Position= (-131.366,-29.9357,4571.79)
+Point[55] Position= (-132.189,-30.1317,4602.4)
+Point[56] Position= (-132.377,-30.1766,4609.39)
+Point[57] Position= (-133.372,-30.4132,4646.4)
+Point[58] Position= (-134.023,-30.5679,4670.64)
+Point[59] Position= (-137.262,-31.328,4791.03)
+Point[60] Position= (-137.523,-31.3881,4800.71)
+Point[61] Position= (-144.191,-32.9042,5046.81)
+Point[62] Position= (-144.407,-32.9526,5054.79)
+Point[63] Position= (-145.594,-33.2177,5098.66)
+Point[64] Position= (-157.583,-35.8626,5541.47)
+Point[65] Position= (-170.147,-38.3753,6000)
+
+TrackID =2017 : ParentID=1924 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 5.41081 -35.2549 1.20341 keV
+Vertex : -0.157583 -0.0358626 5.54147 m    Global time : 18.5442 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-157.583,-35.8626,5541.47)
+Point[1] Position= (-157.578,-35.8948,5541.47)
+
+TrackID =2016 : ParentID=1924 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 66.5179 36.5604 7.70417 keV
+Vertex : -0.145594 -0.0332177 5.09866 m    Global time : 17.0624 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-145.594,-33.2177,5098.66)
+Point[1] Position= (-145.222,-33.0134,5098.7)
+
+TrackID =2015 : ParentID=1924 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 27.8364 -45.123 3.24262 keV
+Vertex : -0.144407 -0.0329526 5.05479 m    Global time : 16.9156 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-217.17,360.245,66.0947)
-Point[1] Position= (-217.122,360.238,66.1649)
+Point[0] Position= (-144.407,-32.9526,5054.79)
+Point[1] Position= (-144.343,-33.0551,5054.79)
 
-TrackID =1910 : ParentID=1830 : TrackStatus=1
+TrackID =2014 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.870451 -25.0958 39.5523 keV
-Vertex : -21.7636 36.0638 6.57306 cm   Global time : 3.66075 ns 
+Original momentum : -38.7155 31.1452 1.56127 keV
+Vertex : -0.144191 -0.0329042 5.04681 m    Global time : 16.8889 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-217.636,360.638,65.7306)
-Point[1] Position= (-217.637,360.61,65.7748)
+Point[0] Position= (-144.191,-32.9042,5046.81)
+Point[1] Position= (-144.266,-32.8439,5046.81)
 
-TrackID =1909 : ParentID=1830 : TrackStatus=1
+TrackID =2013 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.2552 -22.12 22.5679 keV
-Vertex : -21.8021 36.0961 6.54389 cm   Global time : 3.63055 ns 
+Original momentum : 4.42221 -35.3513 1.14569 keV
+Vertex : -0.137523 -0.0313881 4.80071 m    Global time : 16.0654 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-218.021,360.961,65.4389)
-Point[1] Position= (-218.027,360.948,65.4519)
+Point[0] Position= (-137.523,-31.3881,4800.71)
+Point[1] Position= (-137.519,-31.4204,4800.71)
 
-TrackID =1908 : ParentID=1830 : TrackStatus=1
+TrackID =2012 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 50.9472 -33.8007 14.0166 keV
-Vertex : -21.8234 36.1142 6.52796 cm   Global time : 3.61383 ns 
+Original momentum : 23.1482 22.2324 1.77567 keV
+Vertex : -0.137262 -0.031328 4.79103 m    Global time : 16.033 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-218.234,361.142,65.2796)
-Point[1] Position= (-218.128,361.071,65.3089)
+Point[0] Position= (-137.262,-31.328,4791.03)
+Point[1] Position= (-137.245,-31.3118,4791.03)
 
-TrackID =1907 : ParentID=1830 : TrackStatus=1
+TrackID =2011 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.468089 -3.03827 36.0607 keV
-Vertex : -21.825 36.1155 6.5268 cm   Global time : 3.61261 ns 
+Original momentum : -43.0768 -25.7215 1.14449 keV
+Vertex : -0.134023 -0.0305679 4.67064 m    Global time : 15.6301 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-218.25,361.155,65.268)
-Point[1] Position= (-218.25,361.153,65.2927)
+Point[0] Position= (-134.023,-30.5679,4670.64)
+Point[1] Position= (-134.108,-30.6188,4670.64)
 
-TrackID =1906 : ParentID=1830 : TrackStatus=1
+TrackID =2010 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.123 6.18298 -2.25381 keV
-Vertex : -21.8923 36.1721 6.47638 cm   Global time : 3.56022 ns 
+Original momentum : 28.9024 -71.5563 6.1709 keV
+Vertex : -0.133372 -0.0304132 4.6464 m    Global time : 15.549 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-218.923,361.721,64.7638)
-Point[1] Position= (-218.902,361.725,64.7624)
+Point[0] Position= (-133.372,-30.4132,4646.4)
+Point[1] Position= (-133.204,-30.8283,4646.44)
 
-TrackID =1905 : ParentID=1830 : TrackStatus=1
+TrackID =2009 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 50.7378 -10.8148 31.4992 keV
-Vertex : -21.936 36.2086 6.44466 cm   Global time : 3.52665 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-219.36,362.086,64.4466)
-Point[1] Position= (-219.263,362.065,64.5068)
-Point[2] Position= (-219.278,362.054,64.4903)
+Original momentum : -13.4384 -42.0111 1.27739 keV
+Vertex : -0.132377 -0.0301766 4.60939 m    Global time : 15.4251 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-132.377,-30.1766,4609.39)
+Point[1] Position= (-132.397,-30.2382,4609.39)
 
-TrackID =1904 : ParentID=1830 : TrackStatus=1
+TrackID =2008 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.9931 -16.006 48.0711 keV
-Vertex : -21.9765 36.2422 6.41545 cm   Global time : 3.49576 ns 
+Original momentum : -32.4023 -11.8442 0.219744 keV
+Vertex : -0.132189 -0.0301317 4.6024 m    Global time : 15.4017 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-219.765,362.422,64.1545)
-Point[1] Position= (-219.746,362.4,64.2226)
+Point[0] Position= (-132.189,-30.1317,4602.4)
+Point[1] Position= (-132.217,-30.1418,4602.4)
 
-TrackID =1903 : ParentID=1830 : TrackStatus=1
+TrackID =2007 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.28658 -24.4508 41.3797 keV
-Vertex : -22.0623 36.313 6.35324 cm   Global time : 3.43065 ns 
+Original momentum : -7.45491 53.5243 3.00835 keV
+Vertex : -0.131366 -0.0299357 4.57179 m    Global time : 15.2993 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-220.623,363.13,63.5324)
-Point[1] Position= (-220.621,363.101,63.5813)
+Point[0] Position= (-131.366,-29.9357,4571.79)
+Point[1] Position= (-131.383,-29.8084,4571.8)
 
-TrackID =1902 : ParentID=1830 : TrackStatus=1
+TrackID =2006 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.7255 -27.2548 -14.5482 keV
-Vertex : -22.0667 36.3166 6.35003 cm   Global time : 3.42731 ns 
+Original momentum : 31.9082 51.5137 4.79524 keV
+Vertex : -0.129682 -0.029541 4.50924 m    Global time : 15.09 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-220.667,363.166,63.5003)
-Point[1] Position= (-220.659,363.15,63.4915)
+Point[0] Position= (-129.682,-29.541,4509.24)
+Point[1] Position= (-129.581,-29.3783,4509.26)
 
-TrackID =1901 : ParentID=1830 : TrackStatus=1
+TrackID =2005 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.0809 -1.21007 43.1529 keV
-Vertex : -22.0669 36.3168 6.34985 cm   Global time : 3.42712 ns 
+Original momentum : -11.1325 30.7449 0.937953 keV
+Vertex : -0.128132 -0.0291856 4.45169 m    Global time : 14.8974 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-220.669,363.168,63.4985)
-Point[1] Position= (-220.657,363.167,63.5427)
+Point[0] Position= (-128.132,-29.1856,4451.69)
+Point[1] Position= (-128.14,-29.1623,4451.69)
 
-TrackID =1900 : ParentID=1830 : TrackStatus=1
+TrackID =2004 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.1531 -49.569 10.4765 keV
-Vertex : -22.1353 36.3718 6.30023 cm   Global time : 3.37589 ns 
+Original momentum : 34.2675 14.4009 2.37124 keV
+Vertex : -0.127985 -0.0291521 4.44623 m    Global time : 14.8791 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-221.353,363.718,63.0023)
-Point[1] Position= (-221.336,363.649,63.017)
+Point[0] Position= (-127.985,-29.1521,4446.23)
+Point[1] Position= (-127.95,-29.1376,4446.23)
 
-TrackID =1899 : ParentID=1830 : TrackStatus=1
+TrackID =2003 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.1626 -10.83 -13.3358 keV
-Vertex : -22.1635 36.3949 6.27878 cm   Global time : 3.35446 ns 
+Original momentum : -36.5804 0.456859 0.328008 keV
+Vertex : -0.127041 -0.0289381 4.41122 m    Global time : 14.762 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-221.635,363.949,62.7878)
-Point[1] Position= (-221.614,363.942,62.779)
+Point[0] Position= (-127.041,-28.9381,4411.22)
+Point[1] Position= (-127.076,-28.9376,4411.22)
 
-TrackID =1898 : ParentID=1830 : TrackStatus=1
+TrackID =2002 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 4.46929 2.45425 37.6429 keV
-Vertex : -22.1986 36.4253 6.24952 cm   Global time : 3.32666 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-221.986,364.253,62.4952)
-Point[1] Position= (-221.983,364.255,62.5235)
+Original momentum : -2.09682 -0.585223 4.19316 MeV
+Vertex : -0.122236 -0.0278558 4.23366 m    Global time : 14.1678 ns 
+  Current trajectory has 26 points.
+Point[0] Position= (-122.236,-27.8558,4233.66)
+Point[1] Position= (-158.107,-36.7086,4302.61)
+Point[2] Position= (-161.422,-37.3056,4309.02)
+Point[3] Position= (-263.447,-57.2799,4534.77)
+Point[4] Position= (-279.933,-60.6007,4568.39)
+Point[5] Position= (-350.011,-77.9727,4693.12)
+Point[6] Position= (-405.067,-92.122,4791.54)
+Point[7] Position= (-416.982,-96.1442,4810.61)
+Point[8] Position= (-504.31,-127.721,4975.88)
+Point[9] Position= (-625.235,-182.259,5195.01)
+Point[10] Position= (-636.889,-188.881,5215.71)
+Point[11] Position= (-690.026,-222.133,5319.51)
+Point[12] Position= (-716.174,-234.923,5372.48)
+Point[13] Position= (-725.435,-240.515,5393.15)
+Point[14] Position= (-750.342,-257.398,5454.53)
+Point[15] Position= (-755.831,-260.894,5468.92)
+Point[16] Position= (-756.36,-260.596,5471.43)
+Point[17] Position= (-783.027,-241.782,5593.09)
+Point[18] Position= (-800.873,-230.965,5660.49)
+Point[19] Position= (-813.72,-218.954,5721.7)
+Point[20] Position= (-830.414,-206.005,5788.99)
+Point[21] Position= (-844.755,-194.014,5846.84)
+Point[22] Position= (-848.755,-188.825,5866.87)
+Point[23] Position= (-857.991,-174.723,5915.92)
+Point[24] Position= (-868.673,-162.019,5993.82)
+Point[25] Position= (-869.527,-160.974,6000)
+
+TrackID =2041 : ParentID=2002 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 23.338 -25.9665 8.76886 keV
+Vertex : -0.868673 -0.162019 5.99382 m    Global time : 20.7367 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-868.673,-162.019,5993.82)
+Point[1] Position= (-868.652,-162.043,5993.83)
+
+TrackID =2040 : ParentID=2002 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 37.6686 -8.93313 8.2241 keV
+Vertex : -0.857991 -0.174723 5.91592 m    Global time : 20.4693 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-857.991,-174.723,5915.92)
+Point[1] Position= (-857.947,-174.734,5915.93)
+
+TrackID =2039 : ParentID=2002 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 61.5742 -67.8784 40.8682 keV
+Vertex : -0.848755 -0.188825 5.86687 m    Global time : 20.2952 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-848.755,-188.825,5866.87)
+Point[1] Position= (-848.148,-189.494,5867.28)
+Point[2] Position= (-847.966,-189.493,5867.24)
 
-TrackID =1897 : ParentID=1830 : TrackStatus=1
+TrackID =2042 : ParentID=2039 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -2.46188 -4.57471 36.7187 keV
-Vertex : -22.2148 36.4395 6.23613 cm   Global time : 3.31385 ns 
+Original momentum : 6.85563 16.2831 37.8471 keV
+Vertex : -0.848148 -0.189494 5.86728 m    Global time : 20.3123 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-222.148,364.395,62.3613)
-Point[1] Position= (-222.15,364.391,62.3877)
+Point[0] Position= (-848.148,-189.494,5867.28)
+Point[1] Position= (-848.139,-189.473,5867.32)
 
-TrackID =1896 : ParentID=1830 : TrackStatus=1
+TrackID =2038 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -4.42387 -34.7033 33.0073 keV
-Vertex : -22.2212 36.4451 6.23081 cm   Global time : 3.30876 ns 
+Original momentum : -50.9435 -8.10769 -6.09955 keV
+Vertex : -0.844755 -0.194014 5.84684 m    Global time : 20.2244 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-222.212,364.451,62.3081)
-Point[1] Position= (-222.217,364.41,62.3471)
+Point[0] Position= (-844.755,-194.014,5846.84)
+Point[1] Position= (-844.865,-194.031,5846.82)
 
-TrackID =1895 : ParentID=1830 : TrackStatus=1
+TrackID =2037 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.72656 -31.0569 12.711 keV
-Vertex : -22.2216 36.4454 6.2305 cm   Global time : 3.30846 ns 
+Original momentum : 10.3293 49.5103 -5.74729 keV
+Vertex : -0.830414 -0.206005 5.78899 m    Global time : 20.0203 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-222.216,364.454,62.305)
-Point[1] Position= (-222.222,364.435,62.3131)
+Point[0] Position= (-830.414,-206.005,5788.99)
+Point[1] Position= (-830.393,-205.903,5788.98)
 
-TrackID =1894 : ParentID=1830 : TrackStatus=1
+TrackID =2036 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.7991 14.4477 22.0205 keV
-Vertex : -22.235 36.4574 6.2193 cm   Global time : 3.29781 ns 
+Original momentum : 50.366 19.0029 10.9792 keV
+Vertex : -0.81372 -0.218954 5.7217 m    Global time : 19.7835 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-222.35,364.574,62.193)
-Point[1] Position= (-222.334,364.583,62.2075)
+Point[0] Position= (-813.72,-218.954,5721.7)
+Point[1] Position= (-813.596,-218.907,5721.73)
 
-TrackID =1893 : ParentID=1830 : TrackStatus=1
+TrackID =2035 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.39449 -34.8668 15.0102 keV
-Vertex : -22.251 36.4716 6.20592 cm   Global time : 3.28507 ns 
+Original momentum : 15.3267 -42.4534 13.0709 keV
+Vertex : -0.800873 -0.230965 5.66049 m    Global time : 19.5697 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-222.51,364.716,62.0592)
-Point[1] Position= (-222.517,364.689,62.071)
+Point[0] Position= (-800.873,-230.965,5660.49)
+Point[1] Position= (-800.847,-231.037,5660.52)
 
-TrackID =1892 : ParentID=1830 : TrackStatus=1
+TrackID =2034 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.25924 -5.81418 30.4387 keV
-Vertex : -22.3125 36.5259 6.15435 cm   Global time : 3.23642 ns 
+Original momentum : 33.0679 26.9635 6.64485 keV
+Vertex : -0.783027 -0.241782 5.59309 m    Global time : 19.3329 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-223.125,365.259,61.5435)
-Point[1] Position= (-223.129,365.256,61.5598)
+Point[0] Position= (-783.027,-241.782,5593.09)
+Point[1] Position= (-782.98,-241.745,5593.1)
 
-TrackID =1891 : ParentID=1830 : TrackStatus=1
+TrackID =2033 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.8959 -27.4017 -13.3464 keV
-Vertex : -22.3414 36.5515 6.12996 cm   Global time : 3.21355 ns 
+Original momentum : -15.2412 36.669 -5.77411 keV
+Vertex : -0.75636 -0.260596 5.47143 m    Global time : 18.9104 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-223.414,365.515,61.2996)
-Point[1] Position= (-223.408,365.5,61.292)
+Point[0] Position= (-756.36,-260.596,5471.43)
+Point[1] Position= (-756.378,-260.552,5471.42)
 
-TrackID =1890 : ParentID=1830 : TrackStatus=1
+TrackID =2032 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.0222 -8.25074 -12.4011 keV
-Vertex : -22.3675 36.5745 6.10796 cm   Global time : 3.19296 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-223.675,365.745,61.0796)
-Point[1] Position= (-223.654,365.74,61.0715)
+Original momentum : -81.1619 -41.267 -4.79766 keV
+Vertex : -0.755831 -0.260894 5.46892 m    Global time : 18.9018 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-755.831,-260.894,5468.92)
+Point[1] Position= (-756.535,-261.252,5468.88)
+Point[2] Position= (-756.289,-261.424,5469.06)
 
-TrackID =1889 : ParentID=1830 : TrackStatus=1
+TrackID =2031 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.2448 15.3623 18.7284 keV
-Vertex : -22.3908 36.5947 6.08827 cm   Global time : 3.17469 ns 
+Original momentum : 32.3637 -0.123319 14.0664 keV
+Vertex : -0.750342 -0.257398 5.45453 m    Global time : 18.8487 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-223.908,365.947,60.8827)
-Point[1] Position= (-223.893,365.957,60.8943)
+Point[0] Position= (-750.342,-257.398,5454.53)
+Point[1] Position= (-750.314,-257.398,5454.54)
 
-TrackID =1888 : ParentID=1830 : TrackStatus=1
+TrackID =2030 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -10.3499 -29.4754 14.4512 keV
-Vertex : -22.4392 36.6363 6.04703 cm   Global time : 3.13682 ns 
+Original momentum : -25.8322 26.2166 -2.29898 keV
+Vertex : -0.725435 -0.240515 5.39315 m    Global time : 18.6193 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-224.392,366.363,60.4703)
-Point[1] Position= (-224.398,366.345,60.4793)
+Point[0] Position= (-725.435,-240.515,5393.15)
+Point[1] Position= (-725.461,-240.489,5393.15)
 
-TrackID =1887 : ParentID=1830 : TrackStatus=1
+TrackID =2029 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 45.0964 6.68875 16.9182 keV
-Vertex : -22.4817 36.6725 6.01099 cm   Global time : 3.1038 ns 
+Original momentum : 9.25682 40.424 17.2676 keV
+Vertex : -0.716174 -0.234923 5.37248 m    Global time : 18.541 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-224.817,366.725,60.1099)
-Point[1] Position= (-224.762,366.733,60.1304)
+Point[0] Position= (-716.174,-234.923,5372.48)
+Point[1] Position= (-716.16,-234.861,5372.5)
 
-TrackID =1886 : ParentID=1830 : TrackStatus=1
+TrackID =2028 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 41.0222 -0.530319 41.1968 keV
-Vertex : -22.52 36.705 5.97851 cm   Global time : 3.07418 ns 
+Original momentum : -25.9605 -16.0553 -15.8298 keV
+Vertex : -0.690026 -0.222133 5.31951 m    Global time : 18.3382 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-225.2,367.05,59.7851)
-Point[1] Position= (-225.127,367.049,59.8582)
+Point[0] Position= (-690.026,-222.133,5319.51)
+Point[1] Position= (-690.048,-222.146,5319.5)
 
-TrackID =1885 : ParentID=1830 : TrackStatus=1
+TrackID =2027 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.33069 -30.2146 26.8403 keV
-Vertex : -22.5301 36.7135 5.96997 cm   Global time : 3.06638 ns 
+Original momentum : -10.3576 39.0591 9.30415 keV
+Vertex : -0.636889 -0.188881 5.21571 m    Global time : 17.9313 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-225.301,367.135,59.6997)
-Point[1] Position= (-225.309,367.108,59.7235)
+Point[0] Position= (-636.889,-188.881,5215.71)
+Point[1] Position= (-636.903,-188.831,5215.72)
 
-TrackID =1884 : ParentID=1830 : TrackStatus=1
+TrackID =2026 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.3409 -43.1078 -2.87314 keV
-Vertex : -22.578 36.7542 5.92964 cm   Global time : 3.02946 ns 
+Original momentum : -21.2418 46.4283 6.62639 keV
+Vertex : -0.625235 -0.182259 5.19501 m    Global time : 17.8486 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-225.78,367.542,59.2964)
-Point[1] Position= (-225.769,367.499,59.2935)
+Point[0] Position= (-625.235,-182.259,5195.01)
+Point[1] Position= (-625.28,-182.162,5195.02)
 
-TrackID =1883 : ParentID=1830 : TrackStatus=1
+TrackID =2025 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.321 -47.2061 -1.6653 keV
-Vertex : -22.6697 36.8339 5.85098 cm   Global time : 2.95822 ns 
+Original momentum : -23.0195 24.8036 -7.60155 keV
+Vertex : -0.50431 -0.127721 4.97588 m    Global time : 16.9903 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-226.697,368.339,58.5098)
-Point[1] Position= (-226.667,368.273,58.5074)
+Point[0] Position= (-504.31,-127.721,4975.88)
+Point[1] Position= (-504.33,-127.7,4975.88)
 
-TrackID =1882 : ParentID=1830 : TrackStatus=1
+TrackID =2024 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.4366 6.15941 1.39966 keV
-Vertex : -22.7072 36.8672 5.81859 cm   Global time : 2.92889 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-227.072,368.672,58.1859)
-Point[1] Position= (-227.044,368.676,58.187)
+Original momentum : -110.54 -68.3461 -52.6722 keV
+Vertex : -0.416982 -0.0961442 4.81061 m    Global time : 16.3541 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (-416.982,-96.1442,4810.61)
+Point[1] Position= (-418.931,-97.3494,4809.68)
+Point[2] Position= (-419.668,-97.8164,4809.28)
+Point[3] Position= (-420.428,-98.4355,4809.23)
+Point[4] Position= (-420.368,-98.5019,4809.14)
 
-TrackID =1881 : ParentID=1830 : TrackStatus=1
+TrackID =2044 : ParentID=2024 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.4807 -26.5612 -10.8845 keV
-Vertex : -22.7257 36.8837 5.80259 cm   Global time : 2.91445 ns 
+Original momentum : -16.328 19.4324 -25.7925 keV
+Vertex : -0.420428 -0.0984355 4.80923 m    Global time : 16.4163 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-227.257,368.837,58.0259)
-Point[1] Position= (-227.211,368.805,58.013)
+Point[0] Position= (-420.428,-98.4355,4809.23)
+Point[1] Position= (-420.443,-98.4172,4809.2)
 
-TrackID =1880 : ParentID=1830 : TrackStatus=1
+TrackID =2043 : ParentID=2024 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 48.8322 -9.06952 -0.605076 keV
-Vertex : -22.7323 36.8896 5.79679 cm   Global time : 2.90922 ns 
+Original momentum : -14.5494 20.3175 -27.9653 keV
+Vertex : -0.419668 -0.0978164 4.80928 m    Global time : 16.3991 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-227.323,368.896,57.9679)
-Point[1] Position= (-227.262,368.885,57.9672)
+Point[0] Position= (-419.668,-97.8164,4809.28)
+Point[1] Position= (-419.683,-97.7957,4809.26)
 
-TrackID =1879 : ParentID=1830 : TrackStatus=1
+TrackID =2023 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.907 11.1693 3.34852 keV
-Vertex : -22.9274 37.0598 5.62508 cm   Global time : 2.75798 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-229.274,370.598,56.2508)
-Point[1] Position= (-229.258,370.604,56.2527)
+Original momentum : -47.9985 104.973 6.21946 keV
+Vertex : -0.405067 -0.092122 4.79154 m    Global time : 16.2775 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-405.067,-92.122,4791.54)
+Point[1] Position= (-405.708,-90.7208,4791.62)
+Point[2] Position= (-405.607,-90.5807,4790.97)
+Point[3] Position= (-405.708,-90.7246,4790.9)
 
-TrackID =1878 : ParentID=1830 : TrackStatus=1
+TrackID =2045 : ParentID=2023 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.2165 6.99678 6.9428 keV
-Vertex : -22.9381 37.069 5.61561 cm   Global time : 2.74973 ns 
+Original momentum : 31.711 -26.8774 9.74451 keV
+Vertex : -0.405607 -0.0905807 4.79097 m    Global time : 16.3134 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-229.381,370.69,56.1561)
-Point[1] Position= (-229.341,370.697,56.1627)
+Point[0] Position= (-405.607,-90.5807,4790.97)
+Point[1] Position= (-405.564,-90.6173,4790.98)
 
-TrackID =1877 : ParentID=1830 : TrackStatus=1
+TrackID =2022 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.1635 -22.3378 -10.6656 keV
-Vertex : -22.9925 37.1156 5.56763 cm   Global time : 2.70807 ns 
+Original momentum : -47.9976 6.05901 -21.422 keV
+Vertex : -0.350011 -0.0779727 4.69312 m    Global time : 15.8963 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-229.925,371.156,55.6763)
-Point[1] Position= (-229.879,371.13,55.6642)
+Point[0] Position= (-350.011,-77.9727,4693.12)
+Point[1] Position= (-350.119,-77.959,4693.07)
 
-TrackID =1876 : ParentID=1830 : TrackStatus=1
+TrackID =2021 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.2332 15.9556 17.4112 keV
-Vertex : -23.0063 37.1273 5.5555 cm   Global time : 2.69754 ns 
+Original momentum : -22.0738 48.2772 -1.58416 keV
+Vertex : -0.279933 -0.0606007 4.56839 m    Global time : 15.4133 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-230.063,371.273,55.555)
-Point[1] Position= (-230.045,371.284,55.5663)
+Point[0] Position= (-279.933,-60.6007,4568.39)
+Point[1] Position= (-279.983,-60.4911,4568.39)
 
-TrackID =1875 : ParentID=1830 : TrackStatus=1
+TrackID =2020 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.3259 5.69326 -3.01921 keV
-Vertex : -23.0099 37.1304 5.55231 cm   Global time : 2.69477 ns 
+Original momentum : -28.4861 13.8433 -11.0832 keV
+Vertex : -0.263447 -0.0572799 4.53477 m    Global time : 15.2872 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-230.099,371.304,55.5231)
-Point[1] Position= (-230.079,371.308,55.5212)
+Point[0] Position= (-263.447,-57.2799,4534.77)
+Point[1] Position= (-263.47,-57.2689,4534.76)
 
-TrackID =1874 : ParentID=1830 : TrackStatus=1
+TrackID =2019 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.3343 -33.8877 -2.15544 keV
-Vertex : -23.0172 37.1367 5.54586 cm   Global time : 2.68919 ns 
+Original momentum : 34.1307 5.44096 19.8283 keV
+Vertex : -0.161422 -0.0373056 4.30902 m    Global time : 14.4545 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-230.172,371.367,55.4586)
-Point[1] Position= (-230.173,371.347,55.4573)
+Point[0] Position= (-161.422,-37.3056,4309.02)
+Point[1] Position= (-161.382,-37.2992,4309.04)
 
-TrackID =1873 : ParentID=1830 : TrackStatus=1
+TrackID =2018 : ParentID=2002 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.2334 -26.8892 27.4935 keV
-Vertex : -23.0325 37.1497 5.53241 cm   Global time : 2.67751 ns 
+Original momentum : -42.5593 -0.521707 -19.5611 keV
+Vertex : -0.158107 -0.0367086 4.30261 m    Global time : 14.4302 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-230.325,371.497,55.3241)
-Point[1] Position= (-230.335,371.475,55.3469)
+Point[0] Position= (-158.107,-36.7086,4302.61)
+Point[1] Position= (-158.178,-36.7095,4302.57)
 
-TrackID =1872 : ParentID=1830 : TrackStatus=1
+TrackID =2001 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 52.4908 -28.5893 36.5079 keV
-Vertex : -23.0402 37.1563 5.52562 cm   Global time : 2.67165 ns 
+Original momentum : 36.2483 -23.794 2.71681 keV
+Vertex : -0.120533 -0.0274693 4.17306 m    Global time : 13.965 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-230.402,371.563,55.2562)
-Point[1] Position= (-230.262,371.486,55.354)
+Point[0] Position= (-120.533,-27.4693,4173.06)
+Point[1] Position= (-120.481,-27.5029,4173.06)
 
-TrackID =1871 : ParentID=1830 : TrackStatus=1
+TrackID =2000 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 54.3223 -24.2579 35.9511 keV
-Vertex : -23.1698 37.2648 5.41097 cm   Global time : 2.57372 ns 
+Original momentum : -54.1289 -17.6036 1.53404 keV
+Vertex : -0.118726 -0.0270586 4.10885 m    Global time : 13.7502 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-231.698,372.648,54.1097)
-Point[1] Position= (-231.555,372.584,54.2044)
+Point[0] Position= (-118.726,-27.0586,4108.85)
+Point[1] Position= (-118.872,-27.106,4108.86)
 
-TrackID =1870 : ParentID=1830 : TrackStatus=1
+TrackID =1999 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.735832 -37.7368 40.8601 keV
-Vertex : -23.2009 37.2907 5.38385 cm   Global time : 2.55043 ns 
+Original momentum : -2.78781 -35.162 0.914332 keV
+Vertex : -0.118009 -0.0268942 4.08341 m    Global time : 13.665 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-232.009,372.907,53.8385)
-Point[1] Position= (-232.008,372.846,53.9046)
+Point[0] Position= (-118.009,-26.8942,4083.41)
+Point[1] Position= (-118.011,-26.9255,4083.42)
 
-TrackID =1869 : ParentID=1830 : TrackStatus=1
+TrackID =1998 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.093 16.5304 21.7074 keV
-Vertex : -23.2065 37.2954 5.37895 cm   Global time : 2.54622 ns 
+Original momentum : -7.30436 37.1407 1.43991 keV
+Vertex : -0.116724 -0.0265993 4.03795 m    Global time : 13.5129 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-232.065,372.954,53.7895)
-Point[1] Position= (-232.046,372.966,53.8056)
+Point[0] Position= (-116.724,-26.5993,4037.95)
+Point[1] Position= (-116.731,-26.5605,4037.95)
 
-TrackID =1868 : ParentID=1830 : TrackStatus=1
+TrackID =1997 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 56.5842 -7.14022 15.6794 keV
-Vertex : -23.259 37.3391 5.33328 cm   Global time : 2.50703 ns 
+Original momentum : 15.0507 -34.2558 1.58138 keV
+Vertex : -0.114581 -0.0261088 3.96257 m    Global time : 13.2606 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-232.59,373.391,53.3328)
-Point[1] Position= (-232.486,373.378,53.3617)
+Point[0] Position= (-114.581,-26.1088,3962.57)
+Point[1] Position= (-114.566,-26.1437,3962.57)
 
-TrackID =1867 : ParentID=1830 : TrackStatus=1
+TrackID =1996 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.59368 -47.7563 5.7106 keV
-Vertex : -23.2661 37.3449 5.32725 cm   Global time : 2.50181 ns 
+Original momentum : 13.0128 -40.6741 1.8986 keV
+Vertex : -0.113354 -0.0258302 3.91955 m    Global time : 13.1167 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-232.661,373.449,53.2725)
-Point[1] Position= (-232.653,373.392,53.2794)
+Point[0] Position= (-113.354,-25.8302,3919.55)
+Point[1] Position= (-113.337,-25.8857,3919.56)
+
+TrackID =1995 : ParentID=1924 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -53.7354 117.393 15.5569 keV
+Vertex : -0.110874 -0.0252672 3.83265 m    Global time : 12.8259 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (-110.874,-25.2672,3832.65)
+Point[1] Position= (-111.724,-23.41,3832.89)
+Point[2] Position= (-111.733,-22.9079,3832.08)
+Point[3] Position= (-111.678,-22.7637,3831.61)
+Point[4] Position= (-111.648,-22.7369,3831.63)
 
-TrackID =1866 : ParentID=1830 : TrackStatus=1
+TrackID =2046 : ParentID=1995 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.164 12.5221 31.8434 keV
-Vertex : -23.288 37.3632 5.30844 cm   Global time : 2.48554 ns 
+Original momentum : 4.31345 61.3221 18.6339 keV
+Vertex : -0.111733 -0.0229079 3.83208 m    Global time : 12.8684 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-232.88,373.632,53.0844)
-Point[1] Position= (-232.873,373.64,53.106)
+Point[0] Position= (-111.733,-22.9079,3832.08)
+Point[1] Position= (-111.717,-22.6858,3832.15)
 
-TrackID =1865 : ParentID=1830 : TrackStatus=1
+TrackID =1994 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.1558 -38.8626 -7.2961 keV
-Vertex : -23.3053 37.3775 5.29362 cm   Global time : 2.47276 ns 
+Original momentum : -3.18636 35.4012 1.37466 keV
+Vertex : -0.110842 -0.0252601 3.83153 m    Global time : 12.8221 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-233.053,373.775,52.9362)
-Point[1] Position= (-233.044,373.741,52.93)
+Point[0] Position= (-110.842,-25.2601,3831.53)
+Point[1] Position= (-110.845,-25.2279,3831.53)
 
-TrackID =1864 : ParentID=1830 : TrackStatus=1
+TrackID =1993 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.2155 16.2553 22.4736 keV
-Vertex : -23.3154 37.3859 5.28488 cm   Global time : 2.46523 ns 
+Original momentum : -24.6738 26.4774 0.742918 keV
+Vertex : -0.106257 -0.024241 3.6721 m    Global time : 12.2886 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-233.154,373.859,52.8488)
-Point[1] Position= (-233.144,373.869,52.8618)
+Point[0] Position= (-106.257,-24.241,3672.1)
+Point[1] Position= (-106.28,-24.2161,3672.1)
 
-TrackID =1863 : ParentID=1830 : TrackStatus=1
+TrackID =1992 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.799 -31.8857 -13.8573 keV
-Vertex : -23.3366 37.4037 5.26664 cm   Global time : 2.44952 ns 
+Original momentum : 7.42655 -31.0086 1.01113 keV
+Vertex : -0.104367 -0.02382 3.60668 m    Global time : 12.0697 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-233.366,374.037,52.6664)
-Point[1] Position= (-233.347,374.009,52.6544)
+Point[0] Position= (-104.367,-23.82,3606.68)
+Point[1] Position= (-104.362,-23.8423,3606.68)
 
-TrackID =1862 : ParentID=1830 : TrackStatus=1
+TrackID =1991 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.0863 12.6113 7.85321 keV
-Vertex : -23.3556 37.4195 5.25041 cm   Global time : 2.43551 ns 
+Original momentum : 36.3714 21.9091 2.97174 keV
+Vertex : -0.101451 -0.0231621 3.50575 m    Global time : 11.7319 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-233.556,374.195,52.5041)
-Point[1] Position= (-233.529,374.204,52.51)
+Point[0] Position= (-101.451,-23.1621,3505.75)
+Point[1] Position= (-101.402,-23.1325,3505.75)
 
-TrackID =1861 : ParentID=1830 : TrackStatus=1
+TrackID =1990 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.95073 -23.5975 39.0236 keV
-Vertex : -23.3618 37.4246 5.24515 cm   Global time : 2.43097 ns 
+Original momentum : 5.19936 -45.4281 1.90384 keV
+Vertex : -0.101268 -0.0231209 3.49945 m    Global time : 11.7108 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-233.618,374.246,52.4515)
-Point[1] Position= (-233.625,374.22,52.4938)
+Point[0] Position= (-101.268,-23.1209,3499.45)
+Point[1] Position= (-101.26,-23.1933,3499.45)
 
-TrackID =1860 : ParentID=1830 : TrackStatus=1
+TrackID =1989 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.16366 -48.5213 18.8346 keV
-Vertex : -23.3643 37.4267 5.24294 cm   Global time : 2.42906 ns 
+Original momentum : -29.3769 12.6643 0.236697 keV
+Vertex : -0.0996533 -0.0227528 3.44363 m    Global time : 11.524 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-233.643,374.267,52.4294)
-Point[1] Position= (-233.64,374.199,52.4558)
+Point[0] Position= (-99.6533,-22.7528,3443.63)
+Point[1] Position= (-99.6745,-22.7437,3443.63)
 
-TrackID =1859 : ParentID=1830 : TrackStatus=1
+TrackID =1988 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.0659 -30.4402 17.075 keV
-Vertex : -23.3885 37.4468 5.22232 cm   Global time : 2.41128 ns 
+Original momentum : -18.726 27.311 0.711998 keV
+Vertex : -0.0976272 -0.0222928 3.37355 m    Global time : 11.2895 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-233.885,374.468,52.2232)
-Point[1] Position= (-233.893,374.446,52.2351)
+Point[0] Position= (-97.6272,-22.2928,3373.55)
+Point[1] Position= (-97.6418,-22.2715,3373.55)
 
-TrackID =1858 : ParentID=1830 : TrackStatus=1
+TrackID =1987 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.9643 13.9658 27.0277 keV
-Vertex : -23.3896 37.4477 5.22139 cm   Global time : 2.41048 ns 
+Original momentum : 30.0643 18.7907 2.22691 keV
+Vertex : -0.0958781 -0.0219031 3.31303 m    Global time : 11.087 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-233.896,374.477,52.2139)
-Point[1] Position= (-233.858,374.492,52.2435)
+Point[0] Position= (-95.8781,-21.9031,3313.03)
+Point[1] Position= (-95.8509,-21.8861,3313.03)
 
-TrackID =1857 : ParentID=1830 : TrackStatus=1
+TrackID =1986 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.1302 -3.10708 -10.5835 keV
-Vertex : -23.4095 37.4643 5.20447 cm   Global time : 2.39584 ns 
+Original momentum : 40.7524 -3.89537 2.79586 keV
+Vertex : -0.0884949 -0.0202408 3.05705 m    Global time : 10.2303 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-234.095,374.643,52.0447)
-Point[1] Position= (-234.072,374.641,52.0376)
+Point[0] Position= (-88.4949,-20.2408,3057.05)
+Point[1] Position= (-88.4441,-20.2456,3057.05)
 
-TrackID =1856 : ParentID=1830 : TrackStatus=1
+TrackID =1985 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.97973 -7.2514 33.4621 keV
-Vertex : -23.4231 37.4757 5.19286 cm   Global time : 2.38582 ns 
+Original momentum : -28.3294 33.8156 1.32033 keV
+Vertex : -0.0863355 -0.0197501 2.98179 m    Global time : 9.97848 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-234.231,374.757,51.9286)
-Point[1] Position= (-234.237,374.752,51.9503)
+Point[0] Position= (-86.3355,-19.7501,2981.79)
+Point[1] Position= (-86.3771,-19.7005,2981.79)
 
-TrackID =1855 : ParentID=1830 : TrackStatus=1
+TrackID =1984 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.15098 -32.5929 5.00041 keV
-Vertex : -23.492 37.5334 5.13442 cm   Global time : 2.33534 ns 
+Original momentum : 38.9358 3.14326 2.63785 keV
+Vertex : -0.0842223 -0.0192635 2.90796 m    Global time : 9.73141 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-234.92,375.334,51.3442)
-Point[1] Position= (-234.925,375.314,51.3472)
+Point[0] Position= (-84.2223,-19.2635,2907.96)
+Point[1] Position= (-84.1787,-19.26,2907.96)
 
-TrackID =1854 : ParentID=1830 : TrackStatus=1
+TrackID =1983 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.24957 1.72903 32.0615 keV
-Vertex : -23.5086 37.5473 5.12044 cm   Global time : 2.32321 ns 
+Original momentum : 32.9223 4.35893 2.05586 keV
+Vertex : -0.0813684 -0.0186158 2.80833 m    Global time : 9.39802 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-235.086,375.473,51.2044)
-Point[1] Position= (-235.088,375.474,51.222)
+Point[0] Position= (-81.3684,-18.6158,2808.33)
+Point[1] Position= (-81.3425,-18.6124,2808.34)
 
-TrackID =1853 : ParentID=1830 : TrackStatus=1
+TrackID =1982 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.5703 -6.22481 -11.8275 keV
-Vertex : -23.5481 37.5804 5.08724 cm   Global time : 2.2944 ns 
+Original momentum : -42.137 -57.3776 3.38951 keV
+Vertex : -0.0792603 -0.0181408 2.73454 m    Global time : 9.15109 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-235.481,375.804,50.8724)
-Point[1] Position= (-235.454,375.799,50.8635)
+Point[0] Position= (-79.2603,-18.1408,2734.54)
+Point[1] Position= (-79.4584,-18.4106,2734.56)
 
-TrackID =1852 : ParentID=1830 : TrackStatus=1
+TrackID =1981 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.77614 -34.747 -1.83386 keV
-Vertex : -23.611 37.6333 5.03452 cm   Global time : 2.24863 ns 
+Original momentum : -38.9073 2.10213 0.387777 keV
+Vertex : -0.0785358 -0.0179785 2.70923 m    Global time : 9.06637 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-236.11,376.333,50.3452)
-Point[1] Position= (-236.111,376.311,50.3441)
+Point[0] Position= (-78.5358,-17.9785,2709.23)
+Point[1] Position= (-78.579,-17.9762,2709.23)
 
-TrackID =1851 : ParentID=1830 : TrackStatus=1
+TrackID =1980 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.3867 10.2722 36.9607 keV
-Vertex : -23.7271 37.734 4.93811 cm   Global time : 2.16388 ns 
+Original momentum : 29.4946 15.2337 2.02621 keV
+Vertex : -0.07586 -0.0173837 2.61589 m    Global time : 8.75401 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-237.271,377.34,49.3811)
-Point[1] Position= (-237.258,377.349,49.4131)
+Point[0] Position= (-75.86,-17.3837,2615.89)
+Point[1] Position= (-75.8368,-17.3717,2615.89)
 
-TrackID =1850 : ParentID=1830 : TrackStatus=1
+TrackID =1979 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 4.51585 -0.121966 43.1248 keV
-Vertex : -23.7289 37.7356 4.93661 cm   Global time : 2.16255 ns 
+Original momentum : -23.1836 37.9799 1.51783 keV
+Vertex : -0.0738844 -0.0169472 2.54691 m    Global time : 8.52316 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-237.289,377.356,49.3661)
-Point[1] Position= (-237.285,377.356,49.4075)
+Point[0] Position= (-73.8844,-16.9472,2546.91)
+Point[1] Position= (-73.9191,-16.8904,2546.91)
 
-TrackID =1849 : ParentID=1830 : TrackStatus=1
+TrackID =1978 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.25218 -53.9772 14.9632 keV
-Vertex : -23.7587 37.7616 4.91213 cm   Global time : 2.1409 ns 
+Original momentum : -40.9234 -0.632551 0.464775 keV
+Vertex : -0.0733453 -0.0168286 2.52809 m    Global time : 8.46019 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-237.587,377.616,49.1213)
-Point[1] Position= (-237.571,377.524,49.1466)
+Point[0] Position= (-73.3453,-16.8286,2528.09)
+Point[1] Position= (-73.396,-16.8293,2528.09)
 
-TrackID =1848 : ParentID=1830 : TrackStatus=1
+TrackID =1977 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.5579 -30.6176 15.5644 keV
-Vertex : -23.7679 37.7696 4.90454 cm   Global time : 2.1342 ns 
+Original momentum : 9.44288 48.9343 3.0216 keV
+Vertex : -0.0725874 -0.0166611 2.50165 m    Global time : 8.37172 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-237.679,377.696,49.0454)
-Point[1] Position= (-237.687,377.675,49.0561)
+Point[0] Position= (-72.5874,-16.6611,2501.65)
+Point[1] Position= (-72.569,-16.5654,2501.66)
 
-TrackID =1847 : ParentID=1830 : TrackStatus=1
+TrackID =1976 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 28.6654 -13.7998 -16.2513 keV
-Vertex : -23.7985 37.7963 4.87919 cm   Global time : 2.11193 ns 
+Original momentum : 6.4673 -39.2562 1.48714 keV
+Vertex : -0.0661817 -0.015243 2.2778 m    Global time : 7.62261 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-237.985,377.963,48.7919)
-Point[1] Position= (-237.966,377.954,48.7811)
+Point[0] Position= (-66.1817,-15.243,2277.8)
+Point[1] Position= (-66.1742,-15.2887,2277.8)
+
+TrackID =1975 : ParentID=1924 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -316.639 -821.467 728.962 keV
+Vertex : -0.0601081 -0.0138945 2.06639 m    Global time : 6.91514 ns 
+  Current trajectory has 57 points.
+Point[0] Position= (-60.1081,-13.8945,2066.39)
+Point[1] Position= (-193.895,-178.642,2267.53)
+Point[2] Position= (-196.98,-183.098,2271.42)
+Point[3] Position= (-218.905,-214.397,2292.23)
+Point[4] Position= (-225.069,-219.514,2297.85)
+Point[5] Position= (-333.634,-309.92,2365.73)
+Point[6] Position= (-374.206,-334.26,2400.98)
+Point[7] Position= (-486.203,-440.411,2503.63)
+Point[8] Position= (-658.504,-383.832,2498.39)
+Point[9] Position= (-716.848,-368.175,2489.73)
+Point[10] Position= (-733.145,-365.963,2486.93)
+Point[11] Position= (-741.505,-364.592,2485.36)
+Point[12] Position= (-771.773,-357.357,2479.34)
+Point[13] Position= (-859.633,-296.905,2454.6)
+Point[14] Position= (-899.877,-271.799,2456.72)
+Point[15] Position= (-939.177,-257.476,2460.3)
+Point[16] Position= (-958.713,-246.909,2460.79)
+Point[17] Position= (-1023.18,-222.348,2451.07)
+Point[18] Position= (-1056.51,-218.237,2445.27)
+Point[19] Position= (-1058.92,-217.823,2444.66)
+Point[20] Position= (-1095.52,-219.74,2433.43)
+Point[21] Position= (-1124.82,-215.147,2424.09)
+Point[22] Position= (-1210.34,-217.664,2363.07)
+Point[23] Position= (-1242.29,-193.988,2337.86)
+Point[24] Position= (-1260.34,-166.515,2320.21)
+Point[25] Position= (-1289.68,-138.774,2296.21)
+Point[26] Position= (-1319.13,-131.568,2280.41)
+Point[27] Position= (-1348.2,-121.232,2270.12)
+Point[28] Position= (-1378.55,-91.4987,2228.35)
+Point[29] Position= (-1391.39,-85.4833,2212.7)
+Point[30] Position= (-1398.78,-83.79,2200.36)
+Point[31] Position= (-1475.61,-105.856,2094.04)
+Point[32] Position= (-1521.52,-109.62,2106.45)
+Point[33] Position= (-1584.01,-134.84,2127.4)
+Point[34] Position= (-1629.74,-161.976,2165.62)
+Point[35] Position= (-1636.92,-167.238,2168.17)
+Point[36] Position= (-1643.27,-173.616,2169.77)
+Point[37] Position= (-1645.86,-175.702,2171.34)
+Point[38] Position= (-1661.68,-181.698,2173.64)
+Point[39] Position= (-1652.56,-172.486,2188.38)
+Point[40] Position= (-1650.99,-171.086,2190.95)
+Point[41] Position= (-1637.92,-166.471,2205.34)
+Point[42] Position= (-1636.09,-165.629,2205.62)
+Point[43] Position= (-1616.26,-156.268,2206.6)
+Point[44] Position= (-1601.17,-143.059,2201.97)
+Point[45] Position= (-1588.15,-123.838,2196.71)
+Point[46] Position= (-1579.14,-113.173,2183.89)
+Point[47] Position= (-1577.9,-108.146,2176.39)
+Point[48] Position= (-1581.49,-103.482,2166.4)
+Point[49] Position= (-1581.21,-102.852,2165.7)
+Point[50] Position= (-1579.42,-99.2304,2163.26)
+Point[51] Position= (-1576.58,-94.4642,2166.57)
+Point[52] Position= (-1575.41,-93.2963,2168.26)
+Point[53] Position= (-1574.49,-94.0525,2170.47)
+Point[54] Position= (-1576.33,-94.2248,2170.73)
+Point[55] Position= (-1577.28,-94.3134,2170.86)
+Point[56] Position= (-1577.44,-94.401,2170.97)
+
+TrackID =2092 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -26.1354 19.0255 -22.2881 keV
+Vertex : -1.57728 -0.0943134 2.17086 m    Global time : 16.8257 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1577.28,-94.3134,2170.86)
+Point[1] Position= (-1577.31,-94.2919,2170.83)
+
+TrackID =2091 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -83.8258 52.069 54.5878 keV
+Vertex : -1.57541 -0.0932963 2.16826 m    Global time : 16.7514 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-1575.41,-93.2963,2168.26)
+Point[1] Position= (-1576.49,-92.6268,2168.96)
+Point[2] Position= (-1576.79,-91.8947,2168.92)
+Point[3] Position= (-1576.69,-91.7963,2168.85)
 
-TrackID =1846 : ParentID=1830 : TrackStatus=1
+TrackID =2090 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 43.6682 -12.1824 -9.97099 keV
-Vertex : -23.8346 37.8277 4.84926 cm   Global time : 2.0857 ns 
+Original momentum : 22.656 -26.7884 19.6602 keV
+Vertex : -1.57942 -0.0992304 2.16326 m    Global time : 16.6693 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-238.346,378.277,48.4926)
-Point[1] Position= (-238.298,378.264,48.4816)
+Point[0] Position= (-1579.42,-99.2304,2163.26)
+Point[1] Position= (-1579.4,-99.2623,2163.29)
 
-TrackID =1845 : ParentID=1830 : TrackStatus=1
+TrackID =2089 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.16 13.3432 8.74996 keV
-Vertex : -23.9124 37.8945 4.78474 cm   Global time : 2.02955 ns 
+Original momentum : 11.8735 -27.5981 -33.0507 keV
+Vertex : -1.58121 -0.102852 2.1657 m    Global time : 16.6279 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-239.124,378.945,47.8474)
-Point[1] Position= (-239.098,378.955,47.8539)
+Point[0] Position= (-1581.21,-102.852,2165.7)
+Point[1] Position= (-1581.19,-102.894,2165.65)
 
-TrackID =1844 : ParentID=1830 : TrackStatus=1
+TrackID =2088 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.3715 -5.80145 33.1884 keV
-Vertex : -23.9705 37.9439 4.73649 cm   Global time : 1.9878 ns 
+Original momentum : -46.5045 -21.6956 5.88196 keV
+Vertex : -1.5779 -0.108146 2.17639 m    Global time : 16.5296 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-239.705,379.439,47.3649)
-Point[1] Position= (-239.709,379.435,47.3856)
+Point[0] Position= (-1577.9,-108.146,2176.39)
+Point[1] Position= (-1578,-108.192,2176.4)
 
-TrackID =1843 : ParentID=1830 : TrackStatus=1
+TrackID =2087 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.41275 -35.8749 -5.10389 keV
-Vertex : -24.0271 37.992 4.68909 cm   Global time : 1.94706 ns 
+Original momentum : 49.9449 -38.9254 -24.1866 keV
+Vertex : -1.60117 -0.143059 2.20197 m    Global time : 16.1774 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-240.271,379.92,46.8909)
-Point[1] Position= (-240.27,379.896,46.8873)
+Point[0] Position= (-1601.17,-143.059,2201.97)
+Point[1] Position= (-1600.97,-143.22,2201.87)
 
-TrackID =1828 : ParentID=1800 : TrackStatus=1
-Particle name : proton  PDG code : 2212  Charge : 1
-Original momentum : 115.52 75.5154 56.4948 MeV
-Vertex : -24.1067 38.0589 4.62476 cm   Global time : 1.90297 ns 
-  Current trajectory has 6 points.
-Point[0] Position= (-241.067,380.589,46.2476)
-Point[1] Position= (-240.803,380.765,46.3736)
-Point[2] Position= (-240.596,380.911,46.4605)
-Point[3] Position= (-240.435,381.021,46.5233)
-Point[4] Position= (-240.333,381.098,46.5638)
-Point[5] Position= (-240.325,381.104,46.5677)
-
-TrackID =1442 : ParentID=1441 : TrackStatus=1
-Particle name : pi0  PDG code : 111  Charge : 0
-Original momentum : -145.191 61.4999 324.174 MeV
-Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
+TrackID =2086 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -36.1207 50.2242 20.1635 keV
+Vertex : -1.61626 -0.156268 2.2066 m    Global time : 16.0517 ns 
   Current trajectory has 2 points.
-Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
-Point[1] Position= (-2.57637e-05,1.09129e-05,5.75236e-05)
+Point[0] Position= (-1616.26,-156.268,2206.6)
+Point[1] Position= (-1616.39,-156.08,2206.67)
 
-TrackID =40 : ParentID=0 : TrackStatus=1
-Particle name : unknown : u_quark  PDG code : 2  Charge : 0.666667
-Original momentum : 139 654.773 106.667 MeV
-Vertex : 0 0 0 fm   Global time : 0 ps 
+TrackID =2085 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 0.502788 -3.72545 32.7196 keV
+Vertex : -1.63609 -0.165629 2.20562 m    Global time : 15.9224 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0,0,0)
-Point[1] Position= (1.36796e-306,6.44389e-306,1.04976e-306)
+Point[0] Position= (-1636.09,-165.629,2205.62)
+Point[1] Position= (-1636.09,-165.632,2205.64)
 
-TrackID =39 : ParentID=0 : TrackStatus=1
-Particle name : unknown : gluon  PDG code : 21  Charge : 0
-Original momentum : 81.1682 -235.271 -89.7078 MeV
-Vertex : 0 0 0 fm   Global time : 0 ps 
+TrackID =2084 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -9.84978 9.79714 38.8841 keV
+Vertex : -1.63792 -0.166471 2.20534 m    Global time : 15.9105 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0,0,0)
-Point[1] Position= (2.04663e-306,-5.93227e-306,-2.26195e-306)
+Point[0] Position= (-1637.92,-166.471,2205.34)
+Point[1] Position= (-1637.94,-166.459,2205.39)
 
-TrackID =38 : ParentID=0 : TrackStatus=1
-Particle name : unknown : gluon  PDG code : 21  Charge : 0
-Original momentum : -4.06575 -0.595331 -16.6372 GeV
-Vertex : 0 0 0 fm   Global time : 0 ps 
+TrackID =2083 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 8.48253 -40.4194 23.075 keV
+Vertex : -1.65099 -0.171086 2.19095 m    Global time : 15.8024 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0,0,0)
-Point[1] Position= (-1.58259e-306,-2.31732e-307,-6.47601e-306)
+Point[0] Position= (-1650.99,-171.086,2190.95)
+Point[1] Position= (-1650.98,-171.155,2190.99)
 
-TrackID =37 : ParentID=0 : TrackStatus=1
-Particle name : unknown : gluon  PDG code : 21  Charge : 0
-Original momentum : -11.0616 -10.0302 -55.2853 GeV
-Vertex : 0 0 0 fm   Global time : 0 ps 
+TrackID =2082 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -46.8565 47.6011 9.96585 keV
+Vertex : -1.65256 -0.172486 2.18838 m    Global time : 15.7837 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0,0,0)
-Point[1] Position= (-1.2885e-306,-1.16835e-306,-6.43985e-306)
+Point[0] Position= (-1652.56,-172.486,2188.38)
+Point[1] Position= (-1652.76,-172.291,2188.42)
 
-TrackID =36 : ParentID=0 : TrackStatus=1
-Particle name : unknown : gluon  PDG code : 21  Charge : 0
-Original momentum : -2.58594 -3.36277 -18.9939 GeV
-Vertex : 0 0 0 fm   Global time : 0 ps 
+TrackID =2081 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -25.3286 -11.179 16.8222 keV
+Vertex : -1.66168 -0.181698 2.17364 m    Global time : 15.6767 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0,0,0)
-Point[1] Position= (-8.86339e-307,-1.1526e-306,-6.51021e-306)
+Point[0] Position= (-1661.68,-181.698,2173.64)
+Point[1] Position= (-1661.7,-181.706,2173.65)
 
-TrackID =35 : ParentID=0 : TrackStatus=1
-Particle name : unknown : gluon  PDG code : 21  Charge : 0
-Original momentum : 162.066 -34.1494 -130.901 MeV
-Vertex : 0 0 0 fm   Global time : 0 ps 
+TrackID =2080 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 15.0253 -16.8062 36.7647 keV
+Vertex : -1.64586 -0.175702 2.17134 m    Global time : 15.5858 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0,0,0)
-Point[1] Position= (5.12096e-306,-1.07905e-306,-4.13622e-306)
+Point[0] Position= (-1645.86,-175.702,2171.34)
+Point[1] Position= (-1645.84,-175.725,2171.39)
 
-TrackID =34 : ParentID=0 : TrackStatus=1
-Particle name : unknown : gluon  PDG code : 21  Charge : 0
-Original momentum : 67.5397 -144.053 80.0543 MeV
-Vertex : 0 0 0 fm   Global time : 0 ps 
+TrackID =2079 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -29.5773 27.1708 -12.3869 keV
+Vertex : -1.64327 -0.173616 2.16977 m    Global time : 15.5659 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0,0,0)
-Point[1] Position= (2.52957e-306,-5.39524e-306,2.99828e-306)
+Point[0] Position= (-1643.27,-173.616,2169.77)
+Point[1] Position= (-1643.31,-173.58,2169.75)
 
-TrackID =33 : ParentID=0 : TrackStatus=1
-Particle name : unknown : gluon  PDG code : 21  Charge : 0
-Original momentum : -0.593314 -2.60315 0.721123 GeV
-Vertex : 0 0 0 fm   Global time : 0 ps 
+TrackID =2078 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 0.274238 21.8123 50.4474 keV
+Vertex : -1.63692 -0.167238 2.16817 m    Global time : 15.5178 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0,0,0)
-Point[1] Position= (-1.43108e-306,-6.27882e-306,1.73935e-306)
+Point[0] Position= (-1636.92,-167.238,2168.17)
+Point[1] Position= (-1636.92,-167.184,2168.3)
 
-TrackID =32 : ParentID=0 : TrackStatus=1
-Particle name : unknown : gluon  PDG code : 21  Charge : 0
-Original momentum : -1.1366 -0.492846 43.6058 GeV
-Vertex : 0 0 0 fm   Global time : 0 ps 
+TrackID =2077 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 18.1834 -8.58095 28.6496 keV
+Vertex : -1.62974 -0.161976 2.16562 m    Global time : 15.4697 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0,0,0)
-Point[1] Position= (-1.73801e-307,-7.53628e-308,6.66791e-306)
+Point[0] Position= (-1629.74,-161.976,2165.62)
+Point[1] Position= (-1629.72,-161.983,2165.65)
 
-TrackID =31 : ParentID=0 : TrackStatus=1
-Particle name : unknown : ud1_diquark  PDG code : 2103  Charge : 0.333333
-Original momentum : -0.148876 0.14248 691.323 GeV
-Vertex : 0 0 0 fm   Global time : 0 ps 
+TrackID =2076 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -4.03335 -40.775 -27.9566 keV
+Vertex : -1.58401 -0.13484 2.1274 m    Global time : 15.1446 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0,0,0)
-Point[1] Position= (-1.43651e-309,1.3748e-309,6.6706e-306)
+Point[0] Position= (-1584.01,-134.84,2127.4)
+Point[1] Position= (-1584.01,-134.919,2127.35)
 
-TrackID =1970 : ParentID=31 : TrackStatus=1
-Particle name : unknown  PDG code : 92  Charge : 0
-Original momentum : -0.0310602 -0.027098 1.04608 TeV
-Vertex : -1.43651e-297 1.3748e-297 6.6706e-294 fm   Global time : 2.22508e-305 ps 
+TrackID =2075 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -15.9791 8.972 -26.6925 keV
+Vertex : -1.52152 -0.10962 2.10645 m    Global time : 14.8276 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.43651e-309,1.3748e-309,6.6706e-306)
-Point[1] Position= (-1.99346e-307,-1.71289e-307,1.3336e-305)
+Point[0] Position= (-1521.52,-109.62,2106.45)
+Point[1] Position= (-1521.53,-109.613,2106.43)
 
-TrackID =1992 : ParentID=1970 : TrackStatus=1
-Particle name : eta_prime  PDG code : 331  Charge : 0
-Original momentum : -0.318288 -0.0288792 306.395 GeV
-Vertex : -1.99346e-295 -1.71289e-295 1.3336e-293 fm   Global time : 4.71592e-305 ps 
+TrackID =2074 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -44.6803 -43.6524 11.5314 keV
+Vertex : -1.39878 -0.08379 2.20036 m    Global time : 14.0278 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.99346e-307,-1.71289e-307,1.3336e-305)
-Point[1] Position= (-1.9935e-307,-1.71289e-307,1.334e-305)
+Point[0] Position= (-1398.78,-83.79,2200.36)
+Point[1] Position= (-1398.94,-83.9438,2200.4)
 
-TrackID =1993 : ParentID=1992 : TrackStatus=1
-Particle name : unknown : rho0  PDG code : 113  Charge : 0
-Original momentum : -0.372261 -0.109531 289.865 GeV
-Vertex : -1.9935e-295 -1.71289e-295 1.334e-293 fm   Global time : 4.71726e-305 ps 
+TrackID =2073 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -26.2263 19.3268 24.7618 keV
+Vertex : -1.37855 -0.0914987 2.22835 m    Global time : 13.8663 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.9935e-307,-1.71289e-307,1.334e-305)
-Point[1] Position= (-2.07917e-307,-1.7381e-307,2.00106e-305)
+Point[0] Position= (-1378.55,-91.4987,2228.35)
+Point[1] Position= (-1378.58,-91.4748,2228.38)
 
-TrackID =1996 : ParentID=1993 : TrackStatus=1
-Particle name : pi-  PDG code : -211  Charge : -1
-Original momentum : 0.0537504 -0.337225 158.806 GeV
-Vertex : -2.07917e-295 -1.7381e-295 2.00106e-293 fm   Global time : 6.94234e-305 ps 
-  Current trajectory has 60 points.
-Point[0] Position= (-2.07917e-307,-1.7381e-307,2.00106e-305)
-Point[1] Position= (0.0497245,-0.312326,147.097)
-Point[2] Position= (0.0534177,-0.335577,158.043)
-Point[3] Position= (0.0624742,-0.392434,184.804)
-Point[4] Position= (0.112584,-0.706764,332.621)
-Point[5] Position= (0.146142,-0.917102,431.586)
-Point[6] Position= (0.159755,-1.00234,471.711)
-Point[7] Position= (0.21818,-1.36802,643.884)
-Point[8] Position= (0.222539,-1.39527,656.718)
-Point[9] Position= (0.248431,-1.55709,732.96)
-Point[10] Position= (0.250901,-1.5725,740.218)
-Point[11] Position= (0.269905,-1.69089,795.973)
-Point[12] Position= (0.287954,-1.80319,848.862)
-Point[13] Position= (0.292169,-1.82939,861.199)
-Point[14] Position= (0.310565,-1.94368,915.023)
-Point[15] Position= (0.357508,-2.23614,1052.74)
-Point[16] Position= (0.465636,-2.91768,1372.69)
-Point[17] Position= (0.49252,-3.08715,1452.18)
-Point[18] Position= (0.506354,-3.17444,1493.1)
-Point[19] Position= (0.546429,-3.42583,1611.02)
-Point[20] Position= (0.587391,-3.68314,1731.74)
-Point[21] Position= (0.624948,-3.92017,1842.89)
-Point[22] Position= (0.649772,-4.07711,1916.49)
-Point[23] Position= (0.685018,-4.29916,2020.58)
-Point[24] Position= (0.759792,-4.7643,2239.04)
-Point[25] Position= (0.787896,-4.93863,2320.98)
-Point[26] Position= (0.895026,-5.59873,2631.1)
-Point[27] Position= (0.954108,-5.96121,2801.44)
-Point[28] Position= (1.02325,-6.38443,3000.36)
-Point[29] Position= (1.09793,-6.8429,3215.88)
-Point[30] Position= (1.0999,-6.85503,3221.58)
-Point[31] Position= (1.10429,-6.88204,3234.28)
-Point[32] Position= (1.12293,-6.99673,3288.17)
-Point[33] Position= (1.15481,-7.19305,3380.43)
-Point[34] Position= (1.20722,-7.51399,3531.25)
-Point[35] Position= (1.25556,-7.81002,3670.19)
-Point[36] Position= (1.29647,-8.06144,3788.09)
-Point[37] Position= (1.36128,-8.45935,3974.73)
-Point[38] Position= (1.36648,-8.49131,3989.73)
-Point[39] Position= (1.36654,-8.49169,3989.91)
-Point[40] Position= (1.37059,-8.51659,4001.59)
-Point[41] Position= (1.46963,-9.13127,4289.46)
-Point[42] Position= (1.51411,-9.41088,4420.25)
-Point[43] Position= (1.51929,-9.44345,4435.49)
-Point[44] Position= (1.55486,-9.66751,4540.31)
-Point[45] Position= (1.55591,-9.67417,4543.43)
-Point[46] Position= (1.6115,-10.0245,4707.21)
-Point[47] Position= (1.69336,-10.5388,4947.65)
-Point[48] Position= (1.71667,-10.6844,5015.72)
-Point[49] Position= (1.80081,-11.2108,5261.93)
-Point[50] Position= (1.81615,-11.3064,5306.67)
-Point[51] Position= (1.84828,-11.5066,5400.38)
-Point[52] Position= (1.93617,-12.0552,5657.05)
-Point[53] Position= (1.9497,-12.1397,5696.62)
-Point[54] Position= (2.00582,-12.4905,5860.94)
-Point[55] Position= (2.01673,-12.5589,5892.96)
-Point[56] Position= (2.01876,-12.5716,5898.91)
-Point[57] Position= (2.04015,-12.7055,5961.62)
-Point[58] Position= (2.04921,-12.7622,5988.17)
-Point[59] Position= (2.05325,-12.7875,6000)
-
-TrackID =2054 : ParentID=1996 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.3896 34.0604 1.21815 keV
-Vertex : 0.00204921 -0.0127622 5.98817 m    Global time : 19.9744 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (2.04921,-12.7622,5988.17)
-Point[1] Position= (2.05204,-12.7337,5988.17)
-
-TrackID =2053 : ParentID=1996 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.83334 -33.257 1.08437 keV
-Vertex : 0.00204015 -0.0127055 5.96162 m    Global time : 19.8859 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (2.04015,-12.7055,5961.62)
-Point[1] Position= (2.04761,-12.7336,5961.62)
-
-TrackID =2052 : ParentID=1996 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.85913 109.57 11.9905 keV
-Vertex : 0.00201876 -0.0125716 5.89891 m    Global time : 19.6767 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (2.01876,-12.5716,5898.91)
-Point[1] Position= (1.99569,-11.2119,5899.06)
-Point[2] Position= (1.88773,-11.8181,5899.57)
-Point[3] Position= (2.08808,-11.7987,5899.5)
+TrackID =2072 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 18.735 2.48435 -26.3168 keV
+Vertex : -1.3482 -0.121232 2.27012 m    Global time : 13.6117 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1348.2,-121.232,2270.12)
+Point[1] Position= (-1348.18,-121.23,2270.1)
 
-TrackID =2051 : ParentID=1996 : TrackStatus=1
+TrackID =2071 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.755209 33.2928 1.1566 keV
-Vertex : 0.00201673 -0.0125589 5.89296 m    Global time : 19.6568 ns 
+Original momentum : -24.5212 -5.78709 40.7055 keV
+Vertex : -1.31913 -0.131568 2.28041 m    Global time : 13.4707 ns 
   Current trajectory has 2 points.
-Point[0] Position= (2.01673,-12.5589,5892.96)
-Point[1] Position= (2.01613,-12.5326,5892.96)
+Point[0] Position= (-1319.13,-131.568,2280.41)
+Point[1] Position= (-1319.18,-131.578,2280.48)
 
-TrackID =2050 : ParentID=1996 : TrackStatus=1
+TrackID =2070 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 11.5513 -76.0888 5.62717 keV
-Vertex : 0.00200582 -0.0124905 5.86094 m    Global time : 19.55 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (2.00582,-12.4905,5860.94)
-Point[1] Position= (2.04005,-12.716,5860.96)
-Point[2] Position= (2.06368,-12.7414,5861.03)
+Original momentum : 1.85354 33.382 24.4962 keV
+Vertex : -1.28968 -0.138774 2.29621 m    Global time : 13.3227 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1289.68,-138.774,2296.21)
+Point[1] Position= (-1289.68,-138.732,2296.24)
 
-TrackID =2055 : ParentID=2050 : TrackStatus=1
+TrackID =2069 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.3392 -31.8496 -14.0654 keV
-Vertex : 0.00204005 -0.012716 5.86096 m    Global time : 19.5551 ns 
+Original momentum : -23.5164 -26.8874 -18.0802 keV
+Vertex : -1.26034 -0.166515 2.32021 m    Global time : 13.1232 ns 
   Current trajectory has 2 points.
-Point[0] Position= (2.04005,-12.716,5860.96)
-Point[1] Position= (2.05349,-12.7481,5860.94)
+Point[0] Position= (-1260.34,-166.515,2320.21)
+Point[1] Position= (-1260.37,-166.547,2320.19)
 
-TrackID =2049 : ParentID=1996 : TrackStatus=1
+TrackID =2068 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 159.109 -485.234 253.523 keV
-Vertex : 0.0019497 -0.0121397 5.69662 m    Global time : 19.0019 ns 
-  Current trajectory has 11 points.
-Point[0] Position= (1.9497,-12.1397,5696.62)
-Point[1] Position= (24.5762,-59.6651,5731.37)
-Point[2] Position= (27.9999,-61.937,5735.05)
-Point[3] Position= (60.8101,-93.8044,5776.26)
-Point[4] Position= (71.4247,-98.9012,5780.33)
-Point[5] Position= (82.8962,-102.504,5790.95)
-Point[6] Position= (125.496,-160.027,5852.41)
-Point[7] Position= (75.137,-158.438,5919.4)
-Point[8] Position= (58.1244,-164.466,5938.12)
-Point[9] Position= (47.4605,-174.098,5948.03)
-Point[10] Position= (25.2119,-190.812,6000)
+Original momentum : 20.1709 -0.659546 -33.4894 keV
+Vertex : -1.24229 -0.193988 2.33786 m    Global time : 12.9645 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1242.29,-193.988,2337.86)
+Point[1] Position= (-1242.27,-193.988,2337.82)
 
-TrackID =2063 : ParentID=2049 : TrackStatus=1
+TrackID =2067 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 27.9957 -13.2287 8.14532 keV
-Vertex : 0.0474605 -0.174098 5.94803 m    Global time : 20.7064 ns 
+Original momentum : 29.7223 -7.71561 -46.5671 keV
+Vertex : -1.21034 -0.217664 2.36307 m    Global time : 12.7657 ns 
   Current trajectory has 2 points.
-Point[0] Position= (47.4605,-174.098,5948.03)
-Point[1] Position= (47.4808,-174.107,5948.03)
+Point[0] Position= (-1210.34,-217.664,2363.07)
+Point[1] Position= (-1210.26,-217.684,2362.95)
 
-TrackID =2062 : ParentID=2049 : TrackStatus=1
+TrackID =2066 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 23.7793 -8.25593 21.0286 keV
-Vertex : 0.075137 -0.158438 5.9194 m    Global time : 20.4904 ns 
+Original momentum : 16.1149 0.774452 -53.0603 keV
+Vertex : -1.12482 -0.215147 2.42409 m    Global time : 12.3424 ns 
   Current trajectory has 2 points.
-Point[0] Position= (75.137,-158.438,5919.4)
-Point[1] Position= (75.1551,-158.444,5919.42)
+Point[0] Position= (-1124.82,-215.147,2424.09)
+Point[1] Position= (-1124.78,-215.145,2423.96)
 
-TrackID =2061 : ParentID=2049 : TrackStatus=1
+TrackID =2065 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.26514 -43.2678 -2.81792 keV
-Vertex : 0.125496 -0.160027 5.85241 m    Global time : 20.122 ns 
+Original momentum : -6.00243 26.9997 22.9876 keV
+Vertex : -1.09552 -0.21974 2.43343 m    Global time : 12.2131 ns 
   Current trajectory has 2 points.
-Point[0] Position= (125.496,-160.027,5852.41)
-Point[1] Position= (125.501,-160.089,5852.4)
+Point[0] Position= (-1095.52,-219.74,2433.43)
+Point[1] Position= (-1095.53,-219.715,2433.45)
 
-TrackID =2060 : ParentID=2049 : TrackStatus=1
+TrackID =2064 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.593 21.2142 23.9024 keV
-Vertex : 0.0828962 -0.102504 5.79095 m    Global time : 19.7134 ns 
+Original momentum : -11.4982 -3.79926 36.296 keV
+Vertex : -1.05892 -0.217823 2.44466 m    Global time : 12.0553 ns 
   Current trajectory has 2 points.
-Point[0] Position= (82.8962,-102.504,5790.95)
-Point[1] Position= (82.8857,-102.486,5790.97)
+Point[0] Position= (-1058.92,-217.823,2444.66)
+Point[1] Position= (-1058.93,-217.827,2444.7)
 
-TrackID =2059 : ParentID=2049 : TrackStatus=1
+TrackID =2063 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 19.6547 -2.97494 -25.2451 keV
-Vertex : 0.0714247 -0.0989012 5.78033 m    Global time : 19.6398 ns 
+Original momentum : -0.673415 -27.261 -18.2755 keV
+Vertex : -1.05651 -0.218237 2.44527 m    Global time : 12.0448 ns 
   Current trajectory has 2 points.
-Point[0] Position= (71.4247,-98.9012,5780.33)
-Point[1] Position= (71.439,-98.9034,5780.31)
+Point[0] Position= (-1056.51,-218.237,2445.27)
+Point[1] Position= (-1056.51,-218.258,2445.26)
 
-TrackID =2058 : ParentID=2049 : TrackStatus=1
+TrackID =2062 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.41785 38.3789 22.3617 keV
-Vertex : 0.0608101 -0.0938044 5.77626 m    Global time : 19.5824 ns 
+Original momentum : 1.42658 53.3283 -39.0524 keV
+Vertex : -1.02318 -0.222348 2.45107 m    Global time : 11.9052 ns 
   Current trajectory has 2 points.
-Point[0] Position= (60.8101,-93.8044,5776.26)
-Point[1] Position= (60.8215,-93.7455,5776.3)
+Point[0] Position= (-1023.18,-222.348,2451.07)
+Point[1] Position= (-1023.18,-222.14,2450.92)
 
-TrackID =2057 : ParentID=2049 : TrackStatus=1
+TrackID =2061 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.9354 -0.277235 28.3439 keV
-Vertex : 0.0279999 -0.061937 5.73505 m    Global time : 19.3056 ns 
+Original momentum : -4.39342 -14.99 31.4151 keV
+Vertex : -0.939177 -0.257476 2.4603 m    Global time : 11.5335 ns 
   Current trajectory has 2 points.
-Point[0] Position= (27.9999,-61.937,5735.05)
-Point[1] Position= (27.9698,-61.9373,5735.08)
+Point[0] Position= (-939.177,-257.476,2460.3)
+Point[1] Position= (-939.181,-257.49,2460.33)
 
-TrackID =2056 : ParentID=2049 : TrackStatus=1
+TrackID =2060 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.73219 -27.629 -24.4153 keV
-Vertex : 0.0245762 -0.0596651 5.73137 m    Global time : 19.2806 ns 
+Original momentum : -31.8668 -65.1263 24.5827 keV
+Vertex : -0.899877 -0.271799 2.45672 m    Global time : 11.3636 ns 
   Current trajectory has 2 points.
-Point[0] Position= (24.5762,-59.6651,5731.37)
-Point[1] Position= (24.5842,-59.6935,5731.34)
+Point[0] Position= (-899.877,-271.799,2456.72)
+Point[1] Position= (-900.057,-272.166,2456.86)
 
-TrackID =2048 : ParentID=1996 : TrackStatus=1
+TrackID =2059 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 18.9496 -36.2998 1.55638 keV
-Vertex : 0.00193617 -0.0120552 5.65705 m    Global time : 18.8699 ns 
+Original momentum : 5.54935 2.71572 32.0856 keV
+Vertex : -0.859633 -0.296905 2.4546 m    Global time : 11.1733 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.93617,-12.0552,5657.05)
-Point[1] Position= (1.9597,-12.1002,5657.06)
+Point[0] Position= (-859.633,-296.905,2454.6)
+Point[1] Position= (-859.629,-296.903,2454.63)
 
-TrackID =2047 : ParentID=1996 : TrackStatus=1
+TrackID =2058 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -85.988 89.2182 15.25 keV
-Vertex : 0.00184828 -0.0115066 5.40038 m    Global time : 18.0138 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (1.84828,-11.5066,5400.38)
-Point[1] Position= (0.564531,-10.1746,5400.61)
-Point[2] Position= (0.0490945,-9.03103,5400.8)
-Point[3] Position= (-0.074562,-8.15126,5400.96)
-Point[4] Position= (-0.244678,-8.07724,5400.87)
+Original momentum : -219.235 -202.578 -123.42 keV
+Vertex : -0.771773 -0.357357 2.47934 m    Global time : 10.7463 ns 
+  Current trajectory has 18 points.
+Point[0] Position= (-771.773,-357.357,2479.34)
+Point[1] Position= (-773.02,-358.509,2478.64)
+Point[2] Position= (-774.188,-359.508,2477.98)
+Point[3] Position= (-794.902,-373.815,2471.06)
+Point[4] Position= (-796.933,-377.722,2459.91)
+Point[5] Position= (-792.947,-383.612,2445.88)
+Point[6] Position= (-792.143,-380.804,2433.96)
+Point[7] Position= (-793.781,-383.621,2428.53)
+Point[8] Position= (-791.066,-388.383,2421.55)
+Point[9] Position= (-791.402,-395.047,2418.11)
+Point[10] Position= (-792.112,-396.758,2417.76)
+Point[11] Position= (-794.379,-401.364,2417.07)
+Point[12] Position= (-794.118,-405.25,2417.38)
+Point[13] Position= (-793.37,-406.922,2419.86)
+Point[14] Position= (-793.446,-408.135,2421.61)
+Point[15] Position= (-793.643,-408.424,2423.06)
+Point[16] Position= (-793.264,-408.547,2423.6)
+Point[17] Position= (-793.381,-408.52,2423.58)
 
-TrackID =2065 : ParentID=2047 : TrackStatus=1
+TrackID =2097 : ParentID=2058 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -9.32442 11.6172 28.6202 keV
-Vertex : -7.4562e-05 -0.00815126 5.40096 m    Global time : 18.076 ns 
+Original momentum : 5.68617 29.5877 13.7155 keV
+Vertex : -0.793264 -0.408547 2.4236 m    Global time : 11.6216 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-0.074562,-8.15126,5400.96)
-Point[1] Position= (-0.0814176,-8.14272,5400.98)
+Point[0] Position= (-793.264,-408.547,2423.6)
+Point[1] Position= (-793.26,-408.525,2423.61)
 
-TrackID =2064 : ParentID=2047 : TrackStatus=1
+TrackID =2096 : ParentID=2058 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.2837 -0.335154 -20.9932 keV
-Vertex : 4.90945e-05 -0.00903103 5.4008 m    Global time : 18.0597 ns 
+Original momentum : -16.0905 2.06563 36.7483 keV
+Vertex : -0.792112 -0.396758 2.41776 m    Global time : 11.4294 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.0490945,-9.03103,5400.8)
-Point[1] Position= (0.0217422,-9.03134,5400.78)
+Point[0] Position= (-792.112,-396.758,2417.76)
+Point[1] Position= (-792.131,-396.755,2417.81)
 
-TrackID =2046 : ParentID=1996 : TrackStatus=1
+TrackID =2095 : ParentID=2058 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 15.1755 -30.9135 1.08902 keV
-Vertex : 0.00181615 -0.0113064 5.30667 m    Global time : 17.7012 ns 
+Original momentum : -32.2001 -13.8277 -3.41558 keV
+Vertex : -0.793781 -0.383621 2.42853 m    Global time : 11.2718 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.81615,-11.3064,5306.67)
-Point[1] Position= (1.829,-11.3326,5306.67)
+Point[0] Position= (-793.781,-383.621,2428.53)
+Point[1] Position= (-793.81,-383.633,2428.53)
 
-TrackID =2045 : ParentID=1996 : TrackStatus=1
+TrackID =2094 : ParentID=2058 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -82.097 -41.8887 8.24929 keV
-Vertex : 0.00180081 -0.0112108 5.26193 m    Global time : 17.5519 ns 
+Original momentum : -43.4221 67.8674 -43.0713 keV
+Vertex : -0.796933 -0.377722 2.45991 m    Global time : 11.014 ns 
   Current trajectory has 3 points.
-Point[0] Position= (1.80081,-11.2108,5261.93)
-Point[1] Position= (1.06523,-11.5861,5262)
-Point[2] Position= (1.00686,-11.726,5261.9)
+Point[0] Position= (-796.933,-377.722,2459.91)
+Point[1] Position= (-797.312,-377.131,2459.54)
+Point[2] Position= (-797.321,-377.285,2459.74)
 
-TrackID =2044 : ParentID=1996 : TrackStatus=1
+TrackID =2093 : ParentID=2058 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -27.3141 -30.8867 1.60659 keV
-Vertex : 0.00171667 -0.0106844 5.01572 m    Global time : 16.7307 ns 
+Original momentum : 21.5216 -10.6237 -45.2083 keV
+Vertex : -0.774188 -0.359508 2.47798 m    Global time : 10.7683 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.71667,-10.6844,5015.72)
-Point[1] Position= (1.68223,-10.7234,5015.72)
+Point[0] Position= (-774.188,-359.508,2477.98)
+Point[1] Position= (-774.143,-359.53,2477.88)
 
-TrackID =2043 : ParentID=1996 : TrackStatus=1
+TrackID =2057 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.40844 33.1997 1.16222 keV
-Vertex : 0.00169336 -0.0105388 4.94765 m    Global time : 16.5036 ns 
+Original momentum : -12.3445 -1.33218 51.2048 keV
+Vertex : -0.741505 -0.364592 2.48536 m    Global time : 10.6248 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.69336,-10.5388,4947.65)
-Point[1] Position= (1.69066,-10.5125,4947.65)
+Point[0] Position= (-741.505,-364.592,2485.36)
+Point[1] Position= (-741.533,-364.595,2485.48)
 
-TrackID =2042 : ParentID=1996 : TrackStatus=1
+TrackID =2056 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.7167 -4.55198 1.31712 keV
-Vertex : 0.0016115 -0.0100245 4.70721 m    Global time : 15.7016 ns 
+Original momentum : -9.08247 -16.4115 35.3653 keV
+Vertex : -0.733145 -0.365963 2.48693 m    Global time : 10.5917 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.6115,-10.0245,4707.21)
-Point[1] Position= (1.64791,-10.029,4707.21)
+Point[0] Position= (-733.145,-365.963,2486.93)
+Point[1] Position= (-733.155,-365.983,2486.97)
 
-TrackID =2041 : ParentID=1996 : TrackStatus=1
+TrackID =2055 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.8318 -22.2485 2.0818 keV
-Vertex : 0.00155591 -0.00967417 4.54343 m    Global time : 15.1553 ns 
+Original momentum : 12.5399 17.5747 -50.5055 keV
+Vertex : -0.716848 -0.368175 2.48973 m    Global time : 10.5279 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.55591,-9.67417,4543.43)
-Point[1] Position= (1.48821,-9.71106,4543.43)
+Point[0] Position= (-716.848,-368.175,2489.73)
+Point[1] Position= (-716.817,-368.132,2489.61)
 
-TrackID =2040 : ParentID=1996 : TrackStatus=1
+TrackID =2054 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.1468 48.4649 3.66882 keV
-Vertex : 0.00155486 -0.00966751 4.54031 m    Global time : 15.1449 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (1.55486,-9.66751,4540.31)
-Point[1] Position= (1.66804,-9.51576,4540.32)
+Original momentum : -17.0321 -58.9341 -160.201 keV
+Vertex : -0.658504 -0.383832 2.49839 m    Global time : 10.2972 ns 
+  Current trajectory has 8 points.
+Point[0] Position= (-658.504,-383.832,2498.39)
+Point[1] Position= (-658.917,-385.261,2494.5)
+Point[2] Position= (-656.715,-385.545,2492.18)
+Point[3] Position= (-656.606,-385.582,2491.91)
+Point[4] Position= (-656.109,-385.54,2489.89)
+Point[5] Position= (-655.946,-386.553,2488.95)
+Point[6] Position= (-655.93,-386.566,2488.59)
+Point[7] Position= (-655.901,-386.673,2488.42)
 
-TrackID =2039 : ParentID=1996 : TrackStatus=1
+TrackID =2099 : ParentID=2054 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.4974 36.0064 2.02377 keV
-Vertex : 0.00151929 -0.00944345 4.43549 m    Global time : 14.7952 ns 
+Original momentum : 0.727177 40.9672 -26.3546 keV
+Vertex : -0.65593 -0.386566 2.48859 m    Global time : 10.4386 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.51929,-9.44345,4435.49)
-Point[1] Position= (1.55941,-9.38893,4435.49)
+Point[0] Position= (-655.93,-386.566,2488.59)
+Point[1] Position= (-655.929,-386.491,2488.54)
 
-TrackID =2038 : ParentID=1996 : TrackStatus=1
+TrackID =2098 : ParentID=2054 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.7896 -90.5913 9.09875 keV
-Vertex : 0.00151411 -0.00941088 4.42025 m    Global time : 14.7444 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (1.51411,-9.41088,4420.25)
-Point[1] Position= (1.24192,-10.0998,4420.32)
-Point[2] Position= (1.55022,-9.9852,4420.21)
+Original momentum : 34.1733 -8.14412 8.08199 keV
+Vertex : -0.656606 -0.385582 2.49191 m    Global time : 10.3814 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-656.606,-385.582,2491.91)
+Point[1] Position= (-656.574,-385.59,2491.92)
 
-TrackID =2066 : ParentID=2038 : TrackStatus=1
+TrackID =2053 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.55935 -35.5573 -14.2713 keV
-Vertex : 0.00124192 -0.0100998 4.42032 m    Global time : 14.7576 ns 
+Original momentum : -3.7563 -32.0297 -15.5207 keV
+Vertex : -0.486203 -0.440411 2.50363 m    Global time : 9.63445 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.24192,-10.0998,4420.32)
-Point[1] Position= (1.25159,-10.14,4420.3)
+Point[0] Position= (-486.203,-440.411,2503.63)
+Point[1] Position= (-486.207,-440.44,2503.61)
 
-TrackID =2037 : ParentID=1996 : TrackStatus=1
+TrackID =2052 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 57.306 -3.18832 3.19674 keV
-Vertex : 0.00146963 -0.00913127 4.28946 m    Global time : 14.3081 ns 
+Original momentum : 13.9859 -58.4907 -16.9431 keV
+Vertex : -0.374206 -0.33426 2.40098 m    Global time : 8.9662 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.46963,-9.13127,4289.46)
-Point[1] Position= (1.62741,-9.14005,4289.47)
+Point[0] Position= (-374.206,-334.26,2400.98)
+Point[1] Position= (-374.159,-334.458,2400.92)
 
-TrackID =2036 : ParentID=1996 : TrackStatus=1
+TrackID =2051 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -36.5632 -65.8925 5.42733 keV
-Vertex : 0.00137059 -0.00851659 4.00159 m    Global time : 13.3479 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (1.37059,-8.51659,4001.59)
-Point[1] Position= (1.17126,-8.8758,4001.62)
+Original momentum : 3.75685 -78.3614 -34.7878 keV
+Vertex : -0.333634 -0.30992 2.36573 m    Global time : 8.74661 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-333.634,-309.92,2365.73)
+Point[1] Position= (-333.606,-310.509,2365.47)
+Point[2] Position= (-333.586,-310.577,2365.48)
 
-TrackID =2035 : ParentID=1996 : TrackStatus=1
+TrackID =2050 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.9435 41.1742 2.39656 keV
-Vertex : 0.00136654 -0.00849169 3.98991 m    Global time : 13.3089 ns 
+Original momentum : -25.0637 2.57502 -23.4519 keV
+Vertex : -0.225069 -0.219514 2.29785 m    Global time : 8.17229 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.36654,-8.49169,3989.91)
-Point[1] Position= (1.41444,-8.41567,3989.91)
+Point[0] Position= (-225.069,-219.514,2297.85)
+Point[1] Position= (-225.09,-219.512,2297.83)
 
-TrackID =2034 : ParentID=1996 : TrackStatus=1
+TrackID =2049 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.9509 50.8325 3.9147 keV
-Vertex : 0.00136648 -0.00849131 3.98973 m    Global time : 13.3083 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (1.36648,-8.49131,3989.73)
-Point[1] Position= (1.2454,-8.32011,3989.74)
+Original momentum : 45.9461 -91.9116 -26.9867 keV
+Vertex : -0.218905 -0.214397 2.29223 m    Global time : 8.13609 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-218.905,-214.397,2292.23)
+Point[1] Position= (-218.775,-214.656,2292.16)
+Point[2] Position= (-218.774,-215.499,2291.94)
+Point[3] Position= (-218.745,-215.611,2292.16)
 
-TrackID =2033 : ParentID=1996 : TrackStatus=1
+TrackID =2100 : ParentID=2049 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.2241 7.48613 1.07566 keV
-Vertex : 0.00136128 -0.00845935 3.97473 m    Global time : 13.2583 ns 
+Original momentum : 43.8955 0.91554 -3.99865 keV
+Vertex : -0.218775 -0.214656 2.29216 m    Global time : 8.141 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.36128,-8.45935,3974.73)
-Point[1] Position= (1.3863,-8.45354,3974.73)
+Point[0] Position= (-218.775,-214.656,2292.16)
+Point[1] Position= (-218.711,-214.655,2292.15)
+
+TrackID =2048 : ParentID=1975 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -58.5965 68.3312 52.5052 keV
+Vertex : -0.19698 -0.183098 2.27142 m    Global time : 7.97646 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-196.98,-183.098,2271.42)
+Point[1] Position= (-197.642,-182.326,2272.02)
+Point[2] Position= (-197.828,-182.572,2272.24)
 
-TrackID =2032 : ParentID=1996 : TrackStatus=1
+TrackID =2047 : ParentID=1975 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -46.1001 23.1578 2.66996 keV
-Vertex : 0.00129647 -0.00806144 3.78809 m    Global time : 12.6357 ns 
+Original momentum : 28.8273 -18.069 5.46744 keV
+Vertex : -0.193895 -0.178642 2.26753 m    Global time : 7.95191 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.29647,-8.06144,3788.09)
-Point[1] Position= (1.19858,-8.01227,3788.1)
+Point[0] Position= (-193.895,-178.642,2267.53)
+Point[1] Position= (-193.87,-178.657,2267.53)
 
-TrackID =2031 : ParentID=1996 : TrackStatus=1
+TrackID =1974 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 33.3754 1.31926 1.08284 keV
-Vertex : 0.00125556 -0.00781002 3.67019 m    Global time : 12.2425 ns 
+Original momentum : -29.2133 -30.0745 0.68128 keV
+Vertex : -0.053352 -0.0123433 1.8318 m    Global time : 6.13009 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.25556,-7.81002,3670.19)
-Point[1] Position= (1.28201,-7.80897,3670.19)
+Point[0] Position= (-53.352,-12.3433,1831.8)
+Point[1] Position= (-53.3902,-12.3826,1831.8)
 
-TrackID =2030 : ParentID=1996 : TrackStatus=1
+TrackID =1973 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 45.6073 75.1113 7.70175 keV
-Vertex : 0.00120722 -0.00751399 3.53125 m    Global time : 11.779 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (1.20722,-7.51399,3531.25)
-Point[1] Position= (1.57364,-6.91052,3531.31)
-Point[2] Position= (1.57305,-6.91759,3531.31)
+Original momentum : 12.9707 55.0747 3.88843 keV
+Vertex : -0.0532458 -0.0123186 1.82811 m    Global time : 6.11775 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-53.2458,-12.3186,1828.11)
+Point[1] Position= (-53.2112,-12.1719,1828.12)
 
-TrackID =2029 : ParentID=1996 : TrackStatus=1
+TrackID =1972 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -179.602 -32.1473 32.5673 keV
-Vertex : 0.00115481 -0.00719305 3.38043 m    Global time : 11.2759 ns 
-  Current trajectory has 10 points.
-Point[0] Position= (1.15481,-7.19305,3380.43)
-Point[1] Position= (-3.84595,-8.08815,3381.34)
-Point[2] Position= (-4.30537,-8.15935,3381.76)
-Point[3] Position= (-7.28379,-9.96252,3380.75)
-Point[4] Position= (-8.40918,-10.9897,3378.14)
-Point[5] Position= (-10.6681,-11.1135,3377.95)
-Point[6] Position= (-10.5319,-10.9719,3379.75)
-Point[7] Position= (-9.31717,-10.7802,3379.63)
-Point[8] Position= (-9.09234,-10.7501,3379.61)
-Point[9] Position= (-9.01232,-10.532,3379.73)
+Original momentum : -206.93 -191.646 69.8123 keV
+Vertex : -0.052251 -0.0120886 1.79358 m    Global time : 6.00221 ns 
+  Current trajectory has 14 points.
+Point[0] Position= (-52.251,-12.0886,1793.58)
+Point[1] Position= (-66.1659,-24.9757,1798.28)
+Point[2] Position= (-72.9017,-28.2705,1801.08)
+Point[3] Position= (-81.5571,-32.7197,1807.71)
+Point[4] Position= (-82.5937,-34.8001,1812.56)
+Point[5] Position= (-80.8098,-39.0943,1817.05)
+Point[6] Position= (-78.4877,-44.1594,1818.12)
+Point[7] Position= (-76.4064,-47.197,1816.97)
+Point[8] Position= (-76.0501,-48.7772,1814.42)
+Point[9] Position= (-75.8873,-48.9349,1814.22)
+Point[10] Position= (-74.4983,-49.2529,1812.98)
+Point[11] Position= (-73.5922,-49.2891,1814.02)
+Point[12] Position= (-73.586,-49.7248,1813.47)
+Point[13] Position= (-73.661,-49.6157,1813.52)
+
+TrackID =2105 : ParentID=1972 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -21.8117 -46.7359 -12.9704 keV
+Vertex : -0.0758873 -0.0489349 1.81422 m    Global time : 6.51729 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-75.8873,-48.9349,1814.22)
+Point[1] Position= (-75.937,-49.0413,1814.19)
+
+TrackID =2104 : ParentID=1972 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -58.3201 -17.8549 47.3293 keV
+Vertex : -0.0808098 -0.0390943 1.81705 m    Global time : 6.38266 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-80.8098,-39.0943,1817.05)
+Point[1] Position= (-81.1448,-39.1968,1817.32)
+Point[2] Position= (-81.1649,-39.1611,1817.27)
 
-TrackID =2068 : ParentID=2029 : TrackStatus=1
+TrackID =2106 : ParentID=2104 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.1608 -11.3251 -0.0396792 keV
-Vertex : -0.00909234 -0.0107501 3.37961 m    Global time : 11.4889 ns 
+Original momentum : -30.592 1.42108 12.2655 keV
+Vertex : -0.0811448 -0.0391968 1.81732 m    Global time : 6.39256 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-9.09234,-10.7501,3379.61)
-Point[1] Position= (-9.06805,-10.7589,3379.61)
+Point[0] Position= (-81.1448,-39.1968,1817.32)
+Point[1] Position= (-81.1684,-39.1957,1817.33)
 
-TrackID =2067 : ParentID=2029 : TrackStatus=1
+TrackID =2103 : ParentID=1972 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.7025 31.9545 0.281452 keV
-Vertex : -0.00430537 -0.00815935 3.38176 m    Global time : 11.3331 ns 
+Original momentum : 23.8579 -26.2715 -33.9518 keV
+Vertex : -0.0825937 -0.0348001 1.81256 m    Global time : 6.32742 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-4.30537,-8.15935,3381.76)
-Point[1] Position= (-4.32551,-8.12667,3381.76)
+Point[0] Position= (-82.5937,-34.8001,1812.56)
+Point[1] Position= (-82.5488,-34.8495,1812.5)
 
-TrackID =2028 : ParentID=1996 : TrackStatus=1
+TrackID =2102 : ParentID=1972 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 42.235 -10.976 1.8252 keV
-Vertex : 0.00112293 -0.00699673 3.28817 m    Global time : 10.9682 ns 
+Original momentum : -33.5745 -9.0614 -48.4633 keV
+Vertex : -0.0729017 -0.0282705 1.80108 m    Global time : 6.19263 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.12293,-6.99673,3288.17)
-Point[1] Position= (1.18344,-7.01246,3288.17)
+Point[0] Position= (-72.9017,-28.2705,1801.08)
+Point[1] Position= (-73.0029,-28.2978,1800.93)
 
-TrackID =2027 : ParentID=1996 : TrackStatus=1
+TrackID =2101 : ParentID=1972 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.1181 31.4185 1.17237 keV
-Vertex : 0.00110429 -0.00688204 3.23428 m    Global time : 10.7884 ns 
+Original momentum : -11.4376 40.6835 21.9015 keV
+Vertex : -0.0661659 -0.0249757 1.79828 m    Global time : 6.13406 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.10429,-6.88204,3234.28)
-Point[1] Position= (1.11407,-6.85669,3234.28)
+Point[0] Position= (-66.1659,-24.9757,1798.28)
+Point[1] Position= (-66.1858,-24.9046,1798.32)
 
-TrackID =2026 : ParentID=1996 : TrackStatus=1
+TrackID =1971 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 54.4814 60.5302 6.60072 keV
-Vertex : 0.0010999 -0.00685503 3.22158 m    Global time : 10.7461 ns 
+Original momentum : -28.2462 98.3582 10.1173 keV
+Vertex : -0.0501418 -0.0115985 1.7208 m    Global time : 5.75863 ns 
   Current trajectory has 3 points.
-Point[0] Position= (1.0999,-6.85503,3221.58)
-Point[1] Position= (1.46233,-6.45236,3221.63)
-Point[2] Position= (1.46962,-6.43136,3221.63)
+Point[0] Position= (-50.1418,-11.5985,1720.8)
+Point[1] Position= (-50.4537,-10.5124,1720.91)
+Point[2] Position= (-50.6722,-10.596,1721.17)
 
-TrackID =2025 : ParentID=1996 : TrackStatus=1
+TrackID =1970 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.78 53.5279 4.5599 keV
-Vertex : 0.00109793 -0.0068429 3.21588 m    Global time : 10.727 ns 
+Original momentum : 15.3456 30.6804 1.81007 keV
+Vertex : -0.0454624 -0.0105009 1.55902 m    Global time : 5.21724 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.09793,-6.8429,3215.88)
-Point[1] Position= (0.931071,-6.62388,3215.9)
+Point[0] Position= (-45.4624,-10.5009,1559.02)
+Point[1] Position= (-45.4495,-10.475,1559.02)
 
-TrackID =2024 : ParentID=1996 : TrackStatus=1
+TrackID =1969 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 7.21617 31.8129 1.10653 keV
-Vertex : 0.00102325 -0.00638443 3.00036 m    Global time : 10.0081 ns 
+Original momentum : 27.1998 -35.9703 2.53735 keV
+Vertex : -0.0411505 -0.00947414 1.40974 m    Global time : 4.71769 ns 
   Current trajectory has 2 points.
-Point[0] Position= (1.02325,-6.38443,3000.36)
-Point[1] Position= (1.02869,-6.36046,3000.36)
+Point[0] Position= (-41.1505,-9.47414,1409.74)
+Point[1] Position= (-41.1084,-9.52978,1409.75)
 
-TrackID =2023 : ParentID=1996 : TrackStatus=1
+TrackID =1968 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -58.188 50.0624 5.89346 keV
-Vertex : 0.000954108 -0.00596121 2.80144 m    Global time : 9.34463 ns 
+Original momentum : 22.5695 26.4959 2.02652 keV
+Vertex : -0.0390149 -0.00896426 1.33599 m    Global time : 4.4709 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.954108,-5.96121,2801.44)
-Point[1] Position= (0.621373,-5.67494,2801.48)
+Point[0] Position= (-39.0149,-8.96426,1335.99)
+Point[1] Position= (-38.9953,-8.94123,1336)
 
-TrackID =2022 : ParentID=1996 : TrackStatus=1
+TrackID =1967 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.46719 34.3076 1.23786 keV
-Vertex : 0.000895026 -0.00559873 2.6311 m    Global time : 8.77641 ns 
+Original momentum : -18.3734 -45.566 1.52269 keV
+Vertex : -0.0386922 -0.00888775 1.32483 m    Global time : 4.43355 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.895026,-5.59873,2631.1)
-Point[1] Position= (0.892081,-5.56959,2631.1)
+Point[0] Position= (-38.6922,-8.88775,1324.83)
+Point[1] Position= (-38.7268,-8.97365,1324.84)
 
-TrackID =2021 : ParentID=1996 : TrackStatus=1
+TrackID =1966 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.79 26.9575 1.80933 keV
-Vertex : 0.000787896 -0.00493863 2.32098 m    Global time : 7.74198 ns 
+Original momentum : 53.3772 4.84604 4.40855 keV
+Vertex : -0.034741 -0.00795402 1.18824 m    Global time : 3.97643 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.787896,-4.93863,2320.98)
-Point[1] Position= (0.832039,-4.90234,2320.99)
+Point[0] Position= (-34.741,-7.95402,1188.24)
+Point[1] Position= (-34.6161,-7.94268,1188.25)
 
-TrackID =2020 : ParentID=1996 : TrackStatus=1
+TrackID =1965 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.4416 11.1551 1.36246 keV
-Vertex : 0.000759792 -0.0047643 2.23904 m    Global time : 7.46866 ns 
+Original momentum : -17.2421 -41.0357 1.15948 keV
+Vertex : -0.0333197 -0.00761746 1.13914 m    Global time : 3.81212 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.759792,-4.7643,2239.04)
-Point[1] Position= (0.795267,-4.75313,2239.04)
+Point[0] Position= (-33.3197,-7.61746,1139.14)
+Point[1] Position= (-33.3455,-7.67888,1139.14)
 
-TrackID =2019 : ParentID=1996 : TrackStatus=1
+TrackID =1964 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 45.7173 -0.394022 2.02885 keV
-Vertex : 0.000685018 -0.00429916 2.02058 m    Global time : 6.73995 ns 
+Original momentum : 32.3431 19.1823 2.46318 keV
+Vertex : -0.0306362 -0.00698074 1.0467 m    Global time : 3.5028 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.685018,-4.29916,2020.58)
-Point[1] Position= (0.757902,-4.29979,2020.59)
-
-TrackID =2018 : ParentID=1996 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -149.556 -26.1177 22.5478 keV
-Vertex : 0.000649772 -0.00407711 1.91649 m    Global time : 6.39273 ns 
-  Current trajectory has 6 points.
-Point[0] Position= (0.649772,-4.07711,1916.49)
-Point[1] Position= (-2.3726,-4.60492,1916.94)
-Point[2] Position= (-4.11003,-6.34613,1916.97)
-Point[3] Position= (-5.39291,-5.21713,1917.67)
-Point[4] Position= (-5.13542,-5.57784,1918.44)
-Point[5] Position= (-5.13132,-5.59416,1918.57)
+Point[0] Position= (-30.6362,-6.98074,1046.7)
+Point[1] Position= (-30.6028,-6.96096,1046.71)
 
-TrackID =2017 : ParentID=1996 : TrackStatus=1
+TrackID =1963 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 52.2161 -41.8738 4.27574 keV
-Vertex : 0.000624948 -0.00392017 1.84289 m    Global time : 6.14723 ns 
+Original momentum : -33.4483 -56.1385 2.82038 keV
+Vertex : -2.89492 -0.658236 98.8663 cm   Global time : 3.30856 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.624948,-3.92017,1842.89)
-Point[1] Position= (0.835607,-4.0891,1842.91)
+Point[0] Position= (-28.9492,-6.58236,988.663)
+Point[1] Position= (-29.076,-6.79507,988.674)
 
-TrackID =2016 : ParentID=1996 : TrackStatus=1
+TrackID =1962 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 52.4207 21.6659 3.17674 keV
-Vertex : 0.000587391 -0.00368314 1.73174 m    Global time : 5.77648 ns 
+Original momentum : -36.9482 -65.1881 3.96552 keV
+Vertex : -2.81561 -0.639304 96.1424 cm   Global time : 3.21741 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.587391,-3.68314,1731.74)
-Point[1] Position= (0.727618,-3.62518,1731.75)
+Point[0] Position= (-28.1561,-6.39304,961.424)
+Point[1] Position= (-28.3541,-6.74228,961.445)
 
-TrackID =2015 : ParentID=1996 : TrackStatus=1
+TrackID =1961 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 40.3325 -46.8841 3.62804 keV
-Vertex : 0.000546429 -0.00342583 1.61102 m    Global time : 5.3738 ns 
+Original momentum : -25.297 25.5279 0.690435 keV
+Vertex : -1.78395 -0.400267 61.0105 cm   Global time : 2.04171 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.546429,-3.42583,1611.02)
-Point[1] Position= (0.679944,-3.58103,1611.03)
+Point[0] Position= (-17.8395,-4.00267,610.105)
+Point[1] Position= (-17.863,-3.97896,610.106)
 
-TrackID =2014 : ParentID=1996 : TrackStatus=1
+TrackID =1960 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.7691 -34.9964 1.34199 keV
-Vertex : 0.000506354 -0.00317444 1.4931 m    Global time : 4.98045 ns 
+Original momentum : 2.90363 53.1384 3.21859 keV
+Vertex : -1.63757 -0.36748 56.0284 cm   Global time : 1.87499 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.506354,-3.17444,1493.1)
-Point[1] Position= (0.490833,-3.21122,1493.1)
+Point[0] Position= (-16.3757,-3.6748,560.284)
+Point[1] Position= (-16.369,-3.55302,560.291)
 
-TrackID =2013 : ParentID=1996 : TrackStatus=1
+TrackID =1959 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -11.7211 33.9874 1.34136 keV
-Vertex : 0.00049252 -0.00308715 1.45218 m    Global time : 4.84395 ns 
+Original momentum : 52.6945 -31.9647 5.07965 keV
+Vertex : -1.50374 -0.33755 51.472 cm   Global time : 1.72251 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.49252,-3.08715,1452.18)
-Point[1] Position= (0.48161,-3.05552,1452.18)
+Point[0] Position= (-15.0374,-3.3755,514.72)
+Point[1] Position= (-14.8637,-3.48084,514.737)
 
-TrackID =2012 : ParentID=1996 : TrackStatus=1
+TrackID =1958 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.7155 21.7499 1.48284 keV
-Vertex : 0.000465636 -0.00291768 1.37269 m    Global time : 4.57881 ns 
+Original momentum : -17.2926 64.1797 4.25452 keV
+Vertex : -1.42285 -0.319274 48.7177 cm   Global time : 1.63033 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.465636,-2.91768,1372.69)
-Point[1] Position= (0.499899,-2.89418,1372.69)
+Point[0] Position= (-14.2285,-3.19274,487.177)
+Point[1] Position= (-14.297,-2.93828,487.193)
 
-TrackID =2011 : ParentID=1996 : TrackStatus=1
+TrackID =1957 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.5174 24.2885 1.92136 keV
-Vertex : 0.000357508 -0.00223614 1.05274 m    Global time : 3.51159 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (0.357508,-2.23614,1052.74)
-Point[1] Position= (0.410435,-2.20094,1052.75)
+Original momentum : 56.0176 -42.1937 6.20668 keV
+Vertex : -1.32495 -0.297375 45.3808 cm   Global time : 1.51866 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-13.2495,-2.97375,453.808)
+Point[1] Position= (-12.9955,-3.16511,453.836)
+Point[2] Position= (-12.9144,-3.1329,453.789)
 
-TrackID =2010 : ParentID=1996 : TrackStatus=1
+TrackID =1956 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 64.0968 -114.056 16.4761 keV
-Vertex : 0.0310565 -0.194368 91.5023 cm   Global time : 3.0522 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (0.310565,-1.94368,915.023)
-Point[1] Position= (1.22948,-3.57883,915.26)
-Point[2] Position= (2.20256,-4.44554,915.214)
-Point[3] Position= (2.91604,-4.86211,915.239)
-Point[4] Position= (2.92835,-4.92568,915.364)
+Original momentum : -11.3835 42.7213 1.86855 keV
+Vertex : -1.2749 -0.286088 43.6704 cm   Global time : 1.46143 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-12.749,-2.86088,436.704)
+Point[1] Position= (-12.7658,-2.79783,436.707)
 
-TrackID =2069 : ParentID=2010 : TrackStatus=1
+TrackID =1955 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 21.907 23.3256 19.9604 keV
-Vertex : 0.122948 -0.357883 91.526 cm   Global time : 3.07743 ns 
+Original momentum : 18.8383 41.2874 2.84697 keV
+Vertex : -0.473475 -0.104608 16.1825 cm   Global time : 541.546 ps 
   Current trajectory has 2 points.
-Point[0] Position= (1.22948,-3.57883,915.26)
-Point[1] Position= (1.25211,-3.55473,915.28)
+Point[0] Position= (-4.73475,-1.04608,161.825)
+Point[1] Position= (-4.70515,-0.981229,161.829)
 
-TrackID =2009 : ParentID=1996 : TrackStatus=1
+TrackID =1954 : ParentID=1924 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.0044 16.7824 1.12452 keV
-Vertex : 0.0292169 -0.182939 86.1199 cm   Global time : 2.87266 ns 
+Original momentum : -16.3798 -27.7777 0.362111 keV
+Vertex : -0.266235 -0.0585215 9.09173 cm   Global time : 304.255 ps 
   Current trajectory has 2 points.
-Point[0] Position= (0.292169,-1.82939,861.199)
-Point[1] Position= (0.315321,-1.81599,861.2)
+Point[0] Position= (-2.66235,-0.585215,90.9173)
+Point[1] Position= (-2.67438,-0.605617,90.9176)
 
-TrackID =2008 : ParentID=1996 : TrackStatus=1
+TrackID =2117 : ParentID=1830 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.1968 50.2224 3.4195 keV
-Vertex : 0.0287954 -0.180319 84.8862 cm   Global time : 2.8315 ns 
+Original momentum : 25.0509 -18.0839 20.5225 keV
+Vertex : -21.802 44.009 71.1097 cm   Global time : 2.91913 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.287954,-1.80319,848.862)
-Point[1] Position= (0.205114,-1.66069,848.871)
+Point[0] Position= (-218.02,440.09,711.097)
+Point[1] Position= (-218.002,440.077,711.112)
 
-TrackID =2007 : ParentID=1996 : TrackStatus=1
+TrackID =2116 : ParentID=1830 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.2369 4.95833 1.26156 keV
-Vertex : 0.0269905 -0.169089 79.5973 cm   Global time : 2.65509 ns 
+Original momentum : -39.6602 29.2246 -26.4906 keV
+Vertex : -21.5087 43.4168 70.1529 cm   Global time : 2.87985 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.269905,-1.69089,795.973)
-Point[1] Position= (0.237842,-1.68638,795.974)
+Point[0] Position= (-215.087,434.168,701.529)
+Point[1] Position= (-215.152,434.216,701.485)
 
-TrackID =2006 : ParentID=1996 : TrackStatus=1
+TrackID =2115 : ParentID=1830 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -72.3739 38.9669 6.71977 keV
-Vertex : 0.0250901 -0.15725 74.0218 cm   Global time : 2.46911 ns 
+Original momentum : -82.9153 20.9024 -28.6607 keV
+Vertex : -19.5432 39.4466 63.7388 cm   Global time : 2.61654 ns 
   Current trajectory has 3 points.
-Point[0] Position= (0.250901,-1.5725,740.218)
-Point[1] Position= (-0.242053,-1.30709,740.263)
-Point[2] Position= (-0.243127,-1.31053,740.264)
+Point[0] Position= (-195.432,394.466,637.388)
+Point[1] Position= (-195.692,394.532,637.298)
+Point[2] Position= (-195.762,394.559,637.103)
 
-TrackID =2005 : ParentID=1996 : TrackStatus=1
+TrackID =2118 : ParentID=2115 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -56.1863 -41.4281 4.69884 keV
-Vertex : 0.0248431 -0.155709 73.296 cm   Global time : 2.4449 ns 
+Original momentum : -8.10932 -35.8429 -2.16579 keV
+Vertex : -19.5692 39.4532 63.7298 cm   Global time : 2.62196 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.248431,-1.55709,732.96)
-Point[1] Position= (-0.00370408,-1.743,732.981)
+Point[0] Position= (-195.692,394.532,637.298)
+Point[1] Position= (-195.698,394.506,637.296)
 
-TrackID =2004 : ParentID=1996 : TrackStatus=1
+TrackID =2114 : ParentID=1830 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.6652 -27.7436 0.939571 keV
-Vertex : 0.0222539 -0.139527 65.6718 cm   Global time : 2.19058 ns 
+Original momentum : 26.514 -12.7192 17.4178 keV
+Vertex : -18.6043 37.5523 60.6793 cm   Global time : 2.49092 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.222539,-1.39527,656.718)
-Point[1] Position= (0.211314,-1.41515,656.719)
+Point[0] Position= (-186.043,375.523,606.793)
+Point[1] Position= (-186.027,375.515,606.803)
 
-TrackID =2003 : ParentID=1996 : TrackStatus=1
+TrackID =2113 : ParentID=1830 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.5578 -22.0812 1.61037 keV
-Vertex : 0.021818 -0.136802 64.3884 cm   Global time : 2.14777 ns 
+Original momentum : 18.3018 -21.5341 20.3932 keV
+Vertex : -12.7999 25.8111 41.7193 cm   Global time : 1.71255 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.21818,-1.36802,643.884)
-Point[1] Position= (0.175121,-1.39553,643.886)
+Point[0] Position= (-127.999,258.111,417.193)
+Point[1] Position= (-127.987,258.098,417.206)
 
-TrackID =2002 : ParentID=1996 : TrackStatus=1
+TrackID =2112 : ParentID=1830 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 47.6495 19.0596 2.60152 keV
-Vertex : 0.0159755 -0.100234 47.1711 cm   Global time : 1.57346 ns 
+Original momentum : 14.2142 -36.9655 30.1929 keV
+Vertex : -10.3576 20.8688 33.7338 cm   Global time : 1.38479 ns 
   Current trajectory has 2 points.
-Point[0] Position= (0.159755,-1.00234,471.711)
-Point[1] Position= (0.259653,-0.962376,471.717)
+Point[0] Position= (-103.576,208.688,337.338)
+Point[1] Position= (-103.558,208.641,337.377)
 
-TrackID =2001 : ParentID=1996 : TrackStatus=1
+TrackID =2111 : ParentID=1830 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -53.1689 -21.363 3.18513 keV
-Vertex : 0.0146142 -0.0917102 43.1586 cm   Global time : 1.43962 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (0.146142,-0.917102,431.586)
-Point[1] Position= (0.000405356,-0.975658,431.594)
-Point[2] Position= (0.00376252,-0.993128,431.602)
+Original momentum : -13.5535 114.833 -55.6984 keV
+Vertex : -9.31555 18.7554 30.3185 cm   Global time : 1.24463 ns 
+  Current trajectory has 5 points.
+Point[0] Position= (-93.1555,187.554,303.185)
+Point[1] Position= (-93.2961,188.745,302.608)
+Point[2] Position= (-93.9641,189.515,302.163)
+Point[3] Position= (-93.621,189.166,302.264)
+Point[4] Position= (-93.5804,189.177,302.292)
 
-TrackID =2000 : ParentID=1996 : TrackStatus=1
+TrackID =2110 : ParentID=1830 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 50.7869 -62.2011 6.15821 keV
-Vertex : 0.0112584 -0.0706764 33.2621 cm   Global time : 1.10951 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (0.112584,-0.706764,332.621)
-Point[1] Position= (0.156949,-0.761101,332.626)
-Point[2] Position= (0.367624,-0.948869,332.477)
+Original momentum : 17.2354 36.3492 -14.9642 keV
+Vertex : -7.07629 14.2457 23.0279 cm   Global time : 945.35 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (-70.7629,142.457,230.279)
+Point[1] Position= (-70.7392,142.507,230.258)
 
-TrackID =2070 : ParentID=2000 : TrackStatus=1
+TrackID =2109 : ParentID=1830 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.04685 -25.0802 21.5444 keV
-Vertex : 0.0156949 -0.0761101 33.2626 cm   Global time : 1.11101 ns 
+Original momentum : -42.1771 26.4247 -25.5482 keV
+Vertex : -4.0467 8.15328 13.1767 cm   Global time : 540.946 ps 
   Current trajectory has 2 points.
-Point[0] Position= (0.156949,-0.761101,332.626)
-Point[1] Position= (0.151223,-0.781481,332.643)
+Point[0] Position= (-40.467,81.5328,131.767)
+Point[1] Position= (-40.5757,81.6009,131.701)
 
-TrackID =1999 : ParentID=1996 : TrackStatus=1
+TrackID =2108 : ParentID=1830 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 29.8366 -24.71 1.40573 keV
-Vertex : 0.00624742 -0.0392434 18.4804 cm   Global time : 616.441 ps 
+Original momentum : 35.0128 32.2032 -6.38337 keV
+Vertex : -3.89547 7.8491 12.6848 cm   Global time : 520.754 ps 
   Current trajectory has 2 points.
-Point[0] Position= (0.0624742,-0.392434,184.804)
-Point[1] Position= (0.0952289,-0.419561,184.805)
+Point[0] Position= (-38.9547,78.491,126.848)
+Point[1] Position= (-38.8923,78.5484,126.837)
 
-TrackID =1998 : ParentID=1996 : TrackStatus=1
+TrackID =2107 : ParentID=1830 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -29.2265 16.3471 1.14197 keV
-Vertex : 0.00534177 -0.0335577 15.8043 cm   Global time : 527.176 ps 
+Original momentum : 41.9888 23.0864 1.38743 keV
+Vertex : -3.69404 7.44386 12.0295 cm   Global time : 493.855 ps 
   Current trajectory has 2 points.
-Point[0] Position= (0.0534177,-0.335577,158.043)
-Point[1] Position= (0.03012,-0.322546,158.044)
+Point[0] Position= (-36.9404,74.4386,120.295)
+Point[1] Position= (-36.8658,74.4796,120.298)
 
-TrackID =1997 : ParentID=1996 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 26.9852 16.8987 1.01879 keV
-Vertex : 0.00497245 -0.0312326 14.7097 cm   Global time : 490.663 ps 
+TrackID =1829 : ParentID=1823 : TrackStatus=1
+Particle name : unknown : k_star0  PDG code : 313  Charge : 0
+Original momentum : -0.158116 -0.111163 4.79506 GeV
+Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (0.0497245,-0.312326,147.097)
-Point[1] Position= (0.0690361,-0.300233,147.097)
+Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
+Point[1] Position= (5.09812e-306,-2.5642e-306,1.01093e-305)
 
-TrackID =1994 : ParentID=1992 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : 0.0529338 0.0803459 17.3404 GeV
-Vertex : -1.9935e-295 -1.71289e-295 1.334e-293 fm   Global time : 4.71726e-305 ps 
+TrackID =2120 : ParentID=1829 : TrackStatus=1
+Particle name : kaon0  PDG code : 311  Charge : 0
+Original momentum : -0.0678145 0.0127689 3.7761 GeV
+Vertex : 5.09812e-294 -2.5642e-294 1.01093e-293 fm   Global time : 6.99567e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-1.9935e-307,-1.71289e-307,1.334e-305)
-Point[1] Position= (18.3158,27.8008,6000)
+Point[0] Position= (5.09812e-306,-2.5642e-306,1.01093e-305)
+Point[1] Position= (5.0981e-306,-2.56419e-306,1.01108e-305)
 
-TrackID =1968 : ParentID=1442 : TrackStatus=1
-Particle name : gamma  PDG code : 22  Charge : 0
-Original momentum : -31.7917 -2.38936 208.135 MeV
-Vertex : -25.7637 10.9129 57.5236 nm   Global time : 0.000227847 ps 
+TrackID =2121 : ParentID=2120 : TrackStatus=1
+Particle name : kaon0L  PDG code : 130  Charge : 0
+Original momentum : -0.0678145 0.0127689 3.7761 GeV
+Vertex : 5.0981e-294 -2.56419e-294 1.01108e-293 fm   Global time : 6.99618e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-2.57637e-05,1.09129e-05,5.75236e-05)
-Point[1] Position= (-916.472,-68.879,6000)
+Point[0] Position= (5.0981e-306,-2.56419e-306,1.01108e-305)
+Point[1] Position= (-107.753,20.289,6000)
 
-TrackID =1995 : ParentID=1993 : TrackStatus=1
-Particle name : pi+  PDG code : 211  Charge : 1
-Original momentum : -0.424972 0.228 130.249 GeV
-Vertex : -2.07917e-295 -1.7381e-295 2.00106e-293 fm   Global time : 6.94234e-305 ps 
-  Current trajectory has 58 points.
-Point[0] Position= (-2.07917e-307,-1.7381e-307,2.00106e-305)
-Point[1] Position= (-1.31505,0.705975,403.018)
-Point[2] Position= (-1.3818,0.741807,423.464)
-Point[3] Position= (-1.48158,0.795346,454.03)
-Point[4] Position= (-1.82065,0.977364,557.97)
-Point[5] Position= (-1.84345,0.989601,564.962)
-Point[6] Position= (-2.4992,1.34156,765.992)
-Point[7] Position= (-3.06544,1.64585,939.496)
-Point[8] Position= (-3.54915,1.90593,1087.68)
-Point[9] Position= (-3.82228,2.05262,1171.36)
-Point[10] Position= (-3.82878,2.05611,1173.35)
-Point[11] Position= (-4.16848,2.23851,1277.38)
-Point[12] Position= (-5.0536,2.71381,1548.32)
-Point[13] Position= (-5.32181,2.85766,1630.37)
-Point[14] Position= (-5.51173,2.95949,1688.46)
-Point[15] Position= (-5.81606,3.12272,1781.54)
-Point[16] Position= (-5.97527,3.20808,1830.23)
-Point[17] Position= (-6.45602,3.46579,1977.31)
-Point[18] Position= (-6.68427,3.58818,2047.18)
-Point[19] Position= (-8.05532,4.32288,2466.67)
-Point[20] Position= (-8.37128,4.49219,2563.3)
-Point[21] Position= (-8.53495,4.57985,2613.36)
-Point[22] Position= (-9.17177,4.92063,2808.05)
-Point[23] Position= (-9.18441,4.92739,2811.91)
-Point[24] Position= (-9.30718,4.99309,2849.42)
-Point[25] Position= (-9.57995,5.13898,2932.76)
-Point[26] Position= (-9.87595,5.29739,3023.21)
-Point[27] Position= (-10.3411,5.54644,3165.3)
-Point[28] Position= (-10.5474,5.65695,3228.32)
-Point[29] Position= (-11.5556,6.19654,3536.18)
-Point[30] Position= (-11.9415,6.40323,3654.05)
-Point[31] Position= (-11.9621,6.41425,3660.34)
-Point[32] Position= (-12.2557,6.57154,3749.97)
-Point[33] Position= (-12.3681,6.63182,3784.32)
-Point[34] Position= (-12.7416,6.83214,3898.44)
-Point[35] Position= (-12.8847,6.90883,3942.16)
-Point[36] Position= (-13.0199,6.98138,3983.46)
-Point[37] Position= (-13.1145,7.03219,4012.38)
-Point[38] Position= (-13.728,7.36124,4199.73)
-Point[39] Position= (-13.8144,7.4076,4226.12)
-Point[40] Position= (-13.8321,7.41711,4231.53)
-Point[41] Position= (-13.8834,7.44465,4247.21)
-Point[42] Position= (-14.2605,7.64695,4362.43)
-Point[43] Position= (-14.4905,7.77029,4432.72)
-Point[44] Position= (-14.7046,7.88518,4498.15)
-Point[45] Position= (-14.7144,7.89045,4501.15)
-Point[46] Position= (-14.7569,7.91326,4514.15)
-Point[47] Position= (-14.7765,7.92378,4520.14)
-Point[48] Position= (-15.5078,8.31571,4743.6)
-Point[49] Position= (-16.2854,8.73231,4981.17)
-Point[50] Position= (-16.3231,8.75254,4992.69)
-Point[51] Position= (-16.7313,8.97152,5117.44)
-Point[52] Position= (-17.1272,9.18398,5238.47)
-Point[53] Position= (-17.1395,9.19053,5242.2)
-Point[54] Position= (-17.4165,9.33928,5326.93)
-Point[55] Position= (-17.8254,9.55907,5452.03)
-Point[56] Position= (-18.2687,9.79754,5587.63)
-Point[57] Position= (-19.6173,10.5229,6000)
-
-TrackID =2126 : ParentID=1995 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 50.046 8.94347 2.67765 keV
-Vertex : -0.0182687 0.00979754 5.58763 m    Global time : 18.6385 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-18.2687,9.79754,5587.63)
-Point[1] Position= (-18.1661,9.81587,5587.64)
-
-TrackID =2125 : ParentID=1995 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.7556 -69.6107 5.33872 keV
-Vertex : -0.0178254 0.00955907 5.45203 m    Global time : 18.1861 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-17.8254,9.55907,5452.03)
-Point[1] Position= (-17.9472,9.2022,5452.06)
-
-TrackID =2124 : ParentID=1995 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.8621 -20.6856 1.34403 keV
-Vertex : -0.0174165 0.00933928 5.32693 m    Global time : 17.7688 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-17.4165,9.33928,5326.93)
-Point[1] Position= (-17.45,9.31754,5326.93)
-
-TrackID =2123 : ParentID=1995 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.22 37.9667 1.47126 keV
-Vertex : -0.0171395 0.00919053 5.2422 m    Global time : 17.4862 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-17.1395,9.19053,5242.2)
-Point[1] Position= (-17.1552,9.23578,5242.2)
-
-TrackID =2122 : ParentID=1995 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 5.35732 32.415 1.01673 keV
-Vertex : -0.0171272 0.00918398 5.23847 m    Global time : 17.4738 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-17.1272,9.18398,5238.47)
-Point[1] Position= (-17.1231,9.20877,5238.47)
-
-TrackID =2121 : ParentID=1995 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.542 -44.7628 3.11691 keV
-Vertex : -0.0167313 0.00897152 5.11744 m    Global time : 17.0701 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-16.7313,8.97152,5117.44)
-Point[1] Position= (-16.6538,8.86162,5117.45)
-
-TrackID =2120 : ParentID=1995 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 0.00944169 -39.6514 1.60824 keV
-Vertex : -0.0163231 0.00875254 4.99269 m    Global time : 16.654 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-16.3231,8.75254,4992.69)
-Point[1] Position= (-16.3231,8.70669,4992.69)
-
-TrackID =2119 : ParentID=1995 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.8541 9.94999 1.35723 keV
-Vertex : -0.0162854 0.00873231 4.98117 m    Global time : 16.6155 ns 
+TrackID =2119 : ParentID=1829 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : -60.5379 -103.01 116.259 MeV
+Vertex : 5.09812e-294 -2.5642e-294 1.01093e-293 fm   Global time : 6.99567e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-16.2854,8.73231,4981.17)
-Point[1] Position= (-16.3279,8.74348,4981.17)
+Point[0] Position= (5.09812e-306,-2.5642e-306,1.01093e-305)
+Point[1] Position= (-1.54583e-05,-2.63034e-05,2.96866e-05)
+
+TrackID =1828 : ParentID=1823 : TrackStatus=1
+Particle name : kaon-  PDG code : -321  Charge : -1
+Original momentum : -0.385727 0.0736222 1.68675 GeV
+Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
+  Current trajectory has 30 points.
+Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
+Point[1] Position= (-19.3227,3.69477,84.53)
+Point[2] Position= (-59.0897,11.2871,258.535)
+Point[3] Position= (-102.164,19.5289,447.072)
+Point[4] Position= (-103.304,19.7471,452.061)
+Point[5] Position= (-105.609,20.1884,462.152)
+Point[6] Position= (-146.321,28.0008,640.415)
+Point[7] Position= (-148.641,28.4479,650.577)
+Point[8] Position= (-164.874,31.5729,721.658)
+Point[9] Position= (-196.424,37.6522,859.83)
+Point[10] Position= (-197.224,37.806,863.333)
+Point[11] Position= (-224.71,43.0986,983.624)
+Point[12] Position= (-228.452,43.8209,1000)
+Point[13] Position= (-239.645,45.9851,1049.01)
+Point[14] Position= (-257.952,49.5336,1129.2)
+Point[15] Position= (-278.839,53.5852,1220.76)
+Point[16] Position= (-279.114,53.6385,1221.97)
+Point[17] Position= (-305.064,58.665,1335.72)
+Point[18] Position= (-314.489,60.4873,1377.04)
+Point[19] Position= (-354.912,68.3066,1554.19)
+Point[20] Position= (-387.716,74.6477,1697.92)
+Point[21] Position= (-402.377,77.4856,1762.16)
+Point[22] Position= (-428.136,82.4667,1875.01)
+Point[23] Position= (-428.514,82.5397,1876.67)
+Point[24] Position= (-431.228,83.0647,1888.55)
+Point[25] Position= (-436.042,83.996,1909.64)
+Point[26] Position= (-438.688,84.5082,1921.23)
+Point[27] Position= (-448.385,86.3845,1963.7)
+Point[28] Position= (-458.675,88.3763,2008.78)
+Point[29] Position= (-467.912,90.1674,2049.24)
 
-TrackID =2118 : ParentID=1995 : TrackStatus=1
+TrackID =2147 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.348 -33.3421 1.28511 keV
-Vertex : -0.0155078 0.00831571 4.7436 m    Global time : 15.8231 ns 
+Original momentum : 47.9071 24.7464 13.0468 keV
+Vertex : -0.458675 0.0883763 2.00878 m    Global time : 7.15339 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-15.5078,8.31571,4743.6)
-Point[1] Position= (-15.4988,8.28661,4743.6)
+Point[0] Position= (-458.675,88.3763,2008.78)
+Point[1] Position= (-458.554,88.4387,2008.81)
 
-TrackID =2117 : ParentID=1995 : TrackStatus=1
+TrackID =2146 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 198.707 138.346 57.816 keV
-Vertex : -0.0147765 0.00792378 4.52014 m    Global time : 15.0777 ns 
-  Current trajectory has 12 points.
-Point[0] Position= (-14.7765,7.92378,4520.14)
-Point[1] Position= (-4.81589,14.8587,4523.03)
-Point[2] Position= (4.3883,13.3455,4524.96)
-Point[3] Position= (12.1208,13.296,4523.78)
-Point[4] Position= (17.0405,16.2189,4524.32)
-Point[5] Position= (19.8565,19.3417,4524.34)
-Point[6] Position= (18.0169,21.4666,4522.92)
-Point[7] Position= (17.6494,23.593,4524.19)
-Point[8] Position= (16.306,24.3654,4525.58)
-Point[9] Position= (15.6934,25.1846,4526.27)
-Point[10] Position= (15.763,25.3407,4525.69)
-Point[11] Position= (15.8804,25.4254,4525.67)
+Original momentum : -39.5379 -8.36719 -6.9039 keV
+Vertex : -0.448385 0.0863845 1.9637 m    Global time : 6.99285 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-448.385,86.3845,1963.7)
+Point[1] Position= (-448.434,86.3741,1963.69)
 
-TrackID =2127 : ParentID=2117 : TrackStatus=1
+TrackID =2145 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -17.9482 17.2903 -33.5421 keV
-Vertex : 0.0180169 0.0214666 4.52292 m    Global time : 15.4517 ns 
+Original momentum : -35.8815 -25.3561 -5.03223 keV
+Vertex : -0.438688 0.0845082 1.92123 m    Global time : 6.8416 ns 
   Current trajectory has 2 points.
-Point[0] Position= (18.0169,21.4666,4522.92)
-Point[1] Position= (17.9936,21.489,4522.87)
+Point[0] Position= (-438.688,84.5082,1921.23)
+Point[1] Position= (-438.741,84.4708,1921.22)
 
-TrackID =2116 : ParentID=1995 : TrackStatus=1
+TrackID =2144 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 32.5356 24.3662 1.68055 keV
-Vertex : -0.0147569 0.00791326 4.51415 m    Global time : 15.0577 ns 
+Original momentum : 2.3792 -35.2417 3.41428 keV
+Vertex : -0.436042 0.083996 1.90964 m    Global time : 6.80034 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-14.7569,7.91326,4514.15)
-Point[1] Position= (-14.7172,7.94304,4514.15)
+Point[0] Position= (-436.042,83.996,1909.64)
+Point[1] Position= (-436.04,83.9642,1909.64)
 
-TrackID =2115 : ParentID=1995 : TrackStatus=1
+TrackID =2143 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 53.364 -8.1036 3.04059 keV
-Vertex : -0.0147144 0.00789045 4.50115 m    Global time : 15.0143 ns 
+Original momentum : 0.00645628 -35.949 2.94746 keV
+Vertex : -0.431228 0.0830647 1.88855 m    Global time : 6.72524 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-14.7144,7.89045,4501.15)
-Point[1] Position= (-14.5879,7.87124,4501.16)
+Point[0] Position= (-431.228,83.0647,1888.55)
+Point[1] Position= (-431.228,83.0311,1888.55)
 
-TrackID =2114 : ParentID=1995 : TrackStatus=1
+TrackID =2142 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -69.8775 -26.0573 5.25743 keV
-Vertex : -0.0147046 0.00788518 4.49815 m    Global time : 15.0043 ns 
+Original momentum : 14.1662 -49.2761 8.21939 keV
+Vertex : -0.428514 0.0825397 1.87667 m    Global time : 6.68292 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-14.7046,7.88518,4498.15)
-Point[1] Position= (-15.0755,7.74686,4498.18)
+Point[0] Position= (-428.514,82.5397,1876.67)
+Point[1] Position= (-428.484,82.4338,1876.68)
 
-TrackID =2113 : ParentID=1995 : TrackStatus=1
+TrackID =2141 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.4265 -33.9576 1.30593 keV
-Vertex : -0.0144905 0.00777029 4.43272 m    Global time : 14.7861 ns 
+Original momentum : -38.1946 0.934499 -7.1849 keV
+Vertex : -0.428136 0.0824667 1.87501 m    Global time : 6.67702 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-14.4905,7.77029,4432.72)
-Point[1] Position= (-14.4821,7.74003,4432.72)
+Point[0] Position= (-428.136,82.4667,1875.01)
+Point[1] Position= (-428.179,82.4677,1875)
 
-TrackID =2112 : ParentID=1995 : TrackStatus=1
+TrackID =2140 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 51.1041 27.8781 3.43501 keV
-Vertex : -0.0142605 0.00764695 4.36243 m    Global time : 14.5516 ns 
+Original momentum : 25.106 -39.2928 9.83223 keV
+Vertex : -0.402377 0.0774856 1.76216 m    Global time : 6.27517 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-14.2605,7.64695,4362.43)
-Point[1] Position= (-14.1147,7.72646,4362.44)
+Point[0] Position= (-402.377,77.4856,1762.16)
+Point[1] Position= (-402.333,77.4168,1762.18)
 
-TrackID =2111 : ParentID=1995 : TrackStatus=1
+TrackID =2139 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.6876 44.623 1.90226 keV
-Vertex : -0.0138834 0.00744465 4.24721 m    Global time : 14.1673 ns 
+Original momentum : 49.5693 11.5149 13.695 keV
+Vertex : -0.387716 0.0746477 1.69792 m    Global time : 6.04639 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-13.8834,7.44465,4247.21)
-Point[1] Position= (-13.8954,7.51421,4247.21)
+Point[0] Position= (-387.716,74.6477,1697.92)
+Point[1] Position= (-387.605,74.6733,1697.95)
 
-TrackID =2110 : ParentID=1995 : TrackStatus=1
+TrackID =2138 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.7455 -52.4121 3.60427 keV
-Vertex : -0.0138321 0.00741711 4.23153 m    Global time : 14.115 ns 
+Original momentum : -40.3606 31.5957 -7.80561 keV
+Vertex : -0.354912 0.0683066 1.55419 m    Global time : 5.53456 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-13.8321,7.41711,4231.53)
-Point[1] Position= (-13.9295,7.25099,4231.54)
+Point[0] Position= (-354.912,68.3066,1554.19)
+Point[1] Position= (-354.998,68.3743,1554.17)
 
-TrackID =2109 : ParentID=1995 : TrackStatus=1
+TrackID =2137 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -219.184 38.569 47.6044 keV
-Vertex : -0.0138144 0.0074076 4.22612 m    Global time : 14.0969 ns 
-  Current trajectory has 10 points.
-Point[0] Position= (-13.8144,7.4076,4226.12)
-Point[1] Position= (-22.7052,8.97209,4228.05)
-Point[2] Position= (-29.5147,7.06871,4229.18)
-Point[3] Position= (-35.5175,6.83382,4229.56)
-Point[4] Position= (-40.1446,8.60044,4230.21)
-Point[5] Position= (-41.3807,11.2234,4232.66)
-Point[6] Position= (-41.7773,11.3056,4232.93)
-Point[7] Position= (-42.6517,12.2733,4233.17)
-Point[8] Position= (-43.1405,12.5243,4232.79)
-Point[9] Position= (-43.1379,12.5254,4232.77)
-
-TrackID =2129 : ParentID=2109 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.8262 -46.0956 77.4258 keV
-Vertex : -0.0417773 0.0113056 4.23293 m    Global time : 14.3886 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-41.7773,11.3056,4232.93)
-Point[1] Position= (-42.0827,10.8633,4233.68)
-Point[2] Position= (-41.9509,10.7982,4233.6)
+Original momentum : -8.32828 -43.9578 2.13247 keV
+Vertex : -0.314489 0.0604873 1.37704 m    Global time : 4.90374 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-314.489,60.4873,1377.04)
+Point[1] Position= (-314.502,60.4206,1377.04)
 
-TrackID =2128 : ParentID=2109 : TrackStatus=1
+TrackID =2136 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.64382 29.9911 11.8088 keV
-Vertex : -0.0227052 0.00897209 4.22805 m    Global time : 14.1726 ns 
+Original momentum : -57.5088 -37.5975 -6.50929 keV
+Vertex : -0.305064 0.058665 1.33572 m    Global time : 4.75661 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-22.7052,8.97209,4228.05)
-Point[1] Position= (-22.7103,8.99509,4228.06)
+Point[0] Position= (-305.064,58.665,1335.72)
+Point[1] Position= (-305.313,58.502,1335.69)
 
-TrackID =2108 : ParentID=1995 : TrackStatus=1
+TrackID =2135 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 22.4024 -64.737 4.78055 keV
-Vertex : -0.013728 0.00736124 4.19973 m    Global time : 14.0089 ns 
+Original momentum : 34.3366 12.4992 8.75045 keV
+Vertex : -0.279114 0.0536385 1.22197 m    Global time : 4.35153 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-13.728,7.36124,4199.73)
-Point[1] Position= (-13.6321,7.08411,4199.75)
+Point[0] Position= (-279.114,53.6385,1221.97)
+Point[1] Position= (-279.079,53.6513,1221.97)
 
-TrackID =2107 : ParentID=1995 : TrackStatus=1
+TrackID =2134 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.12391 -36.638 1.38685 keV
-Vertex : -0.0131145 0.00703219 4.01238 m    Global time : 13.384 ns 
+Original momentum : 60.6966 -7.08612 18.3916 keV
+Vertex : -0.278839 0.0535852 1.22076 m    Global time : 4.34724 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-13.1145,7.03219,4012.38)
-Point[1] Position= (-13.1196,6.99586,4012.38)
+Point[0] Position= (-278.839,53.5852,1220.76)
+Point[1] Position= (-278.623,53.5599,1220.82)
 
-TrackID =2106 : ParentID=1995 : TrackStatus=1
+TrackID =2133 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.2992 30.7698 1.52969 keV
-Vertex : -0.0130199 0.00698138 3.98346 m    Global time : 13.2875 ns 
+Original momentum : 10.2487 46.1281 2.63656 keV
+Vertex : -0.239645 0.0459851 1.04901 m    Global time : 3.73563 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-13.0199,6.98138,3983.46)
-Point[1] Position= (-12.9925,7.01607,3983.46)
+Point[0] Position= (-239.645,45.9851,1049.01)
+Point[1] Position= (-239.627,46.0646,1049.01)
 
-TrackID =2105 : ParentID=1995 : TrackStatus=1
+TrackID =2132 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -100.531 -98.6416 19.2481 keV
-Vertex : -0.0128847 0.00690883 3.94216 m    Global time : 13.1497 ns 
-  Current trajectory has 6 points.
-Point[0] Position= (-12.8847,6.90883,3942.16)
-Point[1] Position= (-14.6931,5.13443,3942.5)
-Point[2] Position= (-16.372,3.98292,3942.39)
-Point[3] Position= (-17.772,4.08703,3942.57)
-Point[4] Position= (-17.8022,3.94692,3943.16)
-Point[5] Position= (-17.8562,3.89756,3943.09)
+Original momentum : -41.2727 -27.5658 -5.61494 keV
+Vertex : -22.471 4.30986 98.3624 cm   Global time : 3.50279 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-224.71,43.0986,983.624)
+Point[1] Position= (-224.763,43.0633,983.617)
 
-TrackID =2104 : ParentID=1995 : TrackStatus=1
+TrackID =2131 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 53.7568 166.933 29.9708 keV
-Vertex : -0.0127416 0.00683214 3.89844 m    Global time : 13.0039 ns 
-  Current trajectory has 9 points.
-Point[0] Position= (-12.7416,6.83214,3898.44)
-Point[1] Position= (-12.5478,7.43405,3898.55)
-Point[2] Position= (-9.9721,9.99887,3899.56)
-Point[3] Position= (-8.62086,10.6684,3899.54)
-Point[4] Position= (-8.3969,11.1431,3899.05)
-Point[5] Position= (-7.56208,12.7279,3897.86)
-Point[6] Position= (-7.67257,12.826,3897.72)
-Point[7] Position= (-8.05638,12.7738,3897.2)
-Point[8] Position= (-8.05604,12.7747,3897.2)
+Original momentum : -29.8869 -14.5648 -5.00636 keV
+Vertex : -19.7224 3.7806 86.3333 cm   Global time : 3.07441 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-197.224,37.806,863.333)
+Point[1] Position= (-197.242,37.7974,863.33)
 
-TrackID =2133 : ParentID=2104 : TrackStatus=1
+TrackID =2130 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.0686 62.7957 16.3645 keV
-Vertex : -0.00767257 0.012826 3.89772 m    Global time : 13.1099 ns 
+Original momentum : -7.33701 -63.04 5.318 keV
+Vertex : -16.4874 3.15729 72.1658 cm   Global time : 2.5699 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-7.67257,12.826,3897.72)
-Point[1] Position= (-7.82219,13.1284,3897.79)
+Point[0] Position= (-164.874,31.5729,721.658)
+Point[1] Position= (-164.9,31.3494,721.676)
 
-TrackID =2132 : ParentID=2104 : TrackStatus=1
+TrackID =2129 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.62277 -23.4056 -24.7456 keV
-Vertex : -0.0083969 0.0111431 3.89905 m    Global time : 13.0781 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-8.3969,11.1431,3899.05)
-Point[1] Position= (-8.38825,11.1221,3899.03)
+Original momentum : 98.4284 92.5426 38.663 keV
+Vertex : -14.8641 2.84479 65.0577 cm   Global time : 2.31677 ns 
+  Current trajectory has 6 points.
+Point[0] Position= (-148.641,28.4479,650.577)
+Point[1] Position= (-146.9,30.0847,651.261)
+Point[2] Position= (-145.608,30.2066,649.662)
+Point[3] Position= (-146.476,30.0721,648.332)
+Point[4] Position= (-147.352,30.1643,647.969)
+Point[5] Position= (-147.31,30.1721,647.95)
 
-TrackID =2131 : ParentID=2104 : TrackStatus=1
+TrackID =2128 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -4.89049 31.5429 27.8039 keV
-Vertex : -0.00862086 0.0106684 3.89954 m    Global time : 13.069 ns 
+Original momentum : -34.9596 41.6878 -6.68848 keV
+Vertex : -14.6321 2.80008 64.0415 cm   Global time : 2.28059 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-8.62086,10.6684,3899.54)
-Point[1] Position= (-8.62739,10.7106,3899.58)
+Point[0] Position= (-146.321,28.0008,640.415)
+Point[1] Position= (-146.406,28.103,640.399)
 
-TrackID =2130 : ParentID=2104 : TrackStatus=1
+TrackID =2127 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -31.7032 44.4522 -29.7849 keV
-Vertex : -0.0125478 0.00743405 3.89855 m    Global time : 13.0104 ns 
+Original momentum : -12.3298 -43.4855 1.21718 keV
+Vertex : -10.5609 2.01884 46.2152 cm   Global time : 1.64578 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-12.5478,7.43405,3898.55)
-Point[1] Position= (-12.6538,7.58264,3898.45)
+Point[0] Position= (-105.609,20.1884,462.152)
+Point[1] Position= (-105.628,20.121,462.153)
 
-TrackID =2103 : ParentID=1995 : TrackStatus=1
+TrackID =2126 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.44179 -31.9645 1.05626 keV
-Vertex : -0.0123681 0.00663182 3.78432 m    Global time : 12.6232 ns 
+Original momentum : 61.7238 20.3999 17.9386 keV
+Vertex : -10.2164 1.95289 44.7072 cm   Global time : 1.59208 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-12.3681,6.63182,3784.32)
-Point[1] Position= (-12.3706,6.60847,3784.32)
+Point[0] Position= (-102.164,19.5289,447.072)
+Point[1] Position= (-101.911,19.6123,447.146)
 
-TrackID =2102 : ParentID=1995 : TrackStatus=1
+TrackID =2125 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.18476 32.3524 0.976569 keV
-Vertex : -0.0122557 0.00657154 3.74997 m    Global time : 12.5087 ns 
+Original momentum : 26.387 -17.5097 7.90512 keV
+Vertex : -5.90897 1.12871 25.8535 cm   Global time : 920.682 ps 
   Current trajectory has 2 points.
-Point[0] Position= (-12.2557,6.57154,3749.97)
-Point[1] Position= (-12.2596,6.59614,3749.97)
+Point[0] Position= (-59.0897,11.2871,258.535)
+Point[1] Position= (-59.0698,11.2739,258.541)
 
-TrackID =2101 : ParentID=1995 : TrackStatus=1
+TrackID =2124 : ParentID=1828 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 94.6061 -220.56 57.1318 keV
-Vertex : -0.0119621 0.00641425 3.66034 m    Global time : 12.2097 ns 
-  Current trajectory has 12 points.
-Point[0] Position= (-11.9621,6.41425,3660.34)
-Point[1] Position= (-7.6826,-3.56282,3662.92)
-Point[2] Position= (-0.119517,-4.22368,3668.8)
-Point[3] Position= (6.54676,-5.26914,3672.94)
-Point[4] Position= (8.50017,-7.61609,3673.51)
-Point[5] Position= (9.6951,-9.87086,3672.18)
-Point[6] Position= (9.76917,-14.0733,3671.44)
-Point[7] Position= (11.2271,-16.1916,3672.19)
-Point[8] Position= (11.2598,-16.1926,3672.2)
-Point[9] Position= (12.9945,-16.3206,3672.2)
-Point[10] Position= (13.5858,-15.7439,3673.19)
-Point[11] Position= (13.6164,-15.429,3673.07)
+Original momentum : 64.1491 37.9798 19.1566 keV
+Vertex : -1.93227 0.369477 8.453 cm   Global time : 301.027 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (-19.3227,3.69477,84.53)
+Point[1] Position= (-18.956,3.91184,84.6395)
+
+TrackID =2149 : ParentID=1828 : TrackStatus=1
+Particle name : mu-  PDG code : 13  Charge : -1
+Original momentum : -0.283337 0.260283 1.29913 GeV
+Vertex : -0.467912 0.0901674 2.04924 m    Global time : 7.29745 ns 
+  Current trajectory has 34 points.
+Point[0] Position= (-467.912,90.1674,2049.24)
+Point[1] Position= (-486.231,107.003,2133.21)
+Point[2] Position= (-567.752,181.96,2506.9)
+Point[3] Position= (-595.603,207.594,2634.6)
+Point[4] Position= (-632.392,241.476,2803.56)
+Point[5] Position= (-705.185,308.482,3138.62)
+Point[6] Position= (-739.502,340.088,3297)
+Point[7] Position= (-767.295,365.644,3425.14)
+Point[8] Position= (-797.603,393.497,3564.85)
+Point[9] Position= (-819.468,413.573,3665.56)
+Point[10] Position= (-846.821,438.696,3791.58)
+Point[11] Position= (-870.609,460.528,3901.13)
+Point[12] Position= (-943.881,527.756,4238.53)
+Point[13] Position= (-947.292,530.889,4254.24)
+Point[14] Position= (-959.933,542.5,4312.45)
+Point[15] Position= (-968.454,550.329,4351.7)
+Point[16] Position= (-1056.48,631.101,4756.78)
+Point[17] Position= (-1084.98,657.284,4888.04)
+Point[18] Position= (-1093.9,665.48,4929.11)
+Point[19] Position= (-1109.76,680.07,5002.21)
+Point[20] Position= (-1134.5,702.801,5116.23)
+Point[21] Position= (-1150.95,717.904,5191.97)
+Point[22] Position= (-1174.71,739.693,5301.33)
+Point[23] Position= (-1187.63,751.524,5360.72)
+Point[24] Position= (-1200.64,763.455,5420.6)
+Point[25] Position= (-1208.65,770.803,5457.48)
+Point[26] Position= (-1217.53,778.942,5498.32)
+Point[27] Position= (-1221.98,783.023,5518.78)
+Point[28] Position= (-1221.99,783.031,5518.82)
+Point[29] Position= (-1223.17,784.109,5524.22)
+Point[30] Position= (-1276.34,832.923,5768.86)
+Point[31] Position= (-1315.51,868.909,5949.27)
+Point[32] Position= (-1318.75,871.887,5964.21)
+Point[33] Position= (-1326.51,879.021,6000)
+
+TrackID =2181 : ParentID=2149 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 24.8846 32.1404 0.679694 keV
+Vertex : -1.31875 0.871887 5.96421 m    Global time : 20.9546 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1318.75,871.887,5964.21)
+Point[1] Position= (-1318.72,871.926,5964.21)
+
+TrackID =2180 : ParentID=2149 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 3.33836 -39.6648 10.3602 keV
+Vertex : -1.31551 0.868909 5.94927 m    Global time : 20.9025 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1315.51,868.909,5949.27)
+Point[1] Position= (-1315.5,868.859,5949.28)
+
+TrackID =2179 : ParentID=2149 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 37.4862 -18.6955 13.8625 keV
+Vertex : -1.27634 0.832923 5.76886 m    Global time : 20.2732 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1276.34,832.923,5768.86)
+Point[1] Position= (-1276.28,832.896,5768.88)
+
+TrackID =2178 : ParentID=2149 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 37.5192 13.162 7.19987 keV
+Vertex : -1.22317 0.784109 5.52422 m    Global time : 19.4198 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1223.17,784.109,5524.22)
+Point[1] Position= (-1223.12,784.125,5524.23)
+
+TrackID =2177 : ParentID=2149 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -11.5995 36.5987 -8.24748 keV
+Vertex : -1.22199 0.783031 5.51882 m    Global time : 19.401 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1221.99,783.031,5518.82)
+Point[1] Position= (-1222,783.072,5518.81)
+
+TrackID =2176 : ParentID=2149 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -16.492 -27.6338 2.99548 keV
+Vertex : -1.22198 0.783023 5.51878 m    Global time : 19.4009 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-1221.98,783.023,5518.78)
+Point[1] Position= (-1221.99,783.003,5518.78)
+
+TrackID =2175 : ParentID=2149 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -5.75648 -55.7165 13.2385 keV
+Vertex : -1.21753 0.778942 5.49832 m    Global time : 19.3295 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-1217.53,778.942,5498.32)
+Point[1] Position= (-1217.55,778.832,5498.34)
+Point[2] Position= (-1217.55,778.807,5498.33)
 
-TrackID =2138 : ParentID=2101 : TrackStatus=1
+TrackID =2182 : ParentID=2175 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -0.0758047 -3.58391 34.9876 keV
-Vertex : 0.0112598 -0.0161926 3.6722 m    Global time : 12.5765 ns 
+Original momentum : 30.2696 -11.6011 10.1071 keV
+Vertex : -1.21755 0.778832 5.49834 m    Global time : 19.3328 ns 
   Current trajectory has 2 points.
-Point[0] Position= (11.2598,-16.1926,3672.2)
-Point[1] Position= (11.2597,-16.1958,3672.23)
+Point[0] Position= (-1217.55,778.832,5498.34)
+Point[1] Position= (-1217.52,778.823,5498.35)
 
-TrackID =2137 : ParentID=2101 : TrackStatus=1
+TrackID =2174 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.5172 -10.1615 21.3912 keV
-Vertex : 0.00976917 -0.0140733 3.67144 m    Global time : 12.5432 ns 
+Original momentum : 30.5761 25.9581 3.12748 keV
+Vertex : -1.20865 0.770803 5.45748 m    Global time : 19.187 ns 
   Current trajectory has 2 points.
-Point[0] Position= (9.76917,-14.0733,3671.44)
-Point[1] Position= (9.74707,-14.0821,3671.46)
+Point[0] Position= (-1208.65,770.803,5457.48)
+Point[1] Position= (-1208.62,770.834,5457.48)
 
-TrackID =2136 : ParentID=2101 : TrackStatus=1
+TrackID =2173 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 17.1239 5.58425 -31.3102 keV
-Vertex : 0.0096951 -0.00987086 3.67218 m    Global time : 12.4993 ns 
+Original momentum : -14.315 -41.6827 7.23121 keV
+Vertex : -1.20064 0.763455 5.4206 m    Global time : 19.0584 ns 
   Current trajectory has 2 points.
-Point[0] Position= (9.6951,-9.87086,3672.18)
-Point[1] Position= (9.71118,-9.86561,3672.15)
+Point[0] Position= (-1200.64,763.455,5420.6)
+Point[1] Position= (-1200.66,763.392,5420.61)
 
-TrackID =2135 : ParentID=2101 : TrackStatus=1
+TrackID =2172 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.5118 -12.3711 29.9025 keV
-Vertex : 0.00850017 -0.00761609 3.67351 m    Global time : 12.4712 ns 
+Original momentum : 3.22313 -34.7886 8.96236 keV
+Vertex : -1.18763 0.751524 5.36072 m    Global time : 18.8495 ns 
   Current trajectory has 2 points.
-Point[0] Position= (8.50017,-7.61609,3673.51)
-Point[1] Position= (8.50883,-7.62628,3673.54)
+Point[0] Position= (-1187.63,751.524,5360.72)
+Point[1] Position= (-1187.62,751.492,5360.72)
 
-TrackID =2134 : ParentID=2101 : TrackStatus=1
+TrackID =2171 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -14.6728 22.3573 21.8008 keV
-Vertex : -0.0076826 -0.00356282 3.66292 m    Global time : 12.2953 ns 
+Original momentum : -12.5286 31.1093 -7.71061 keV
+Vertex : -1.17471 0.739693 5.30133 m    Global time : 18.6424 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-7.6826,-3.56282,3662.92)
-Point[1] Position= (-7.69506,-3.54383,3662.94)
+Point[0] Position= (-1174.71,739.693,5301.33)
+Point[1] Position= (-1174.73,739.72,5301.33)
 
-TrackID =2100 : ParentID=1995 : TrackStatus=1
+TrackID =2170 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -18.8056 -48.9124 2.7113 keV
-Vertex : -0.0119415 0.00640323 3.65405 m    Global time : 12.1887 ns 
+Original momentum : 27.8562 60.2565 -1.46658 keV
+Vertex : -1.15095 0.717904 5.19197 m    Global time : 18.2609 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-11.9415,6.40323,3654.05)
-Point[1] Position= (-11.983,6.29537,3654.06)
+Point[0] Position= (-1150.95,717.904,5191.97)
+Point[1] Position= (-1150.84,718.141,5191.96)
+
+TrackID =2169 : ParentID=2149 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 2.25689 -86.1702 25.8893 keV
+Vertex : -1.1345 0.702801 5.11623 m    Global time : 17.9967 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-1134.5,702.801,5116.23)
+Point[1] Position= (-1134.48,702.075,5116.44)
+Point[2] Position= (-1134.44,702.038,5116.4)
 
-TrackID =2099 : ParentID=1995 : TrackStatus=1
+TrackID =2168 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.04743 -45.2806 2.12286 keV
-Vertex : -0.0115556 0.00619654 3.53618 m    Global time : 11.7955 ns 
+Original momentum : -0.238696 45.6704 -6.98477 keV
+Vertex : -1.10976 0.68007 5.00221 m    Global time : 17.599 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-11.5556,6.19654,3536.18)
-Point[1] Position= (-11.5686,6.12335,3536.18)
+Point[0] Position= (-1109.76,680.07,5002.21)
+Point[1] Position= (-1109.76,680.144,5002.2)
 
-TrackID =2098 : ParentID=1995 : TrackStatus=1
+TrackID =2167 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.3274 104.56 11.2227 keV
-Vertex : -0.0105474 0.00565695 3.22832 m    Global time : 10.7686 ns 
+Original momentum : -43.8247 42.4099 -13.9847 keV
+Vertex : -1.0939 0.66548 4.92911 m    Global time : 17.344 ns 
   Current trajectory has 3 points.
-Point[0] Position= (-10.5474,5.65695,3228.32)
-Point[1] Position= (-10.2426,6.91549,3228.46)
-Point[2] Position= (-10.2343,7.32135,3228.64)
+Point[0] Position= (-1093.9,665.48,4929.11)
+Point[1] Position= (-1094.02,665.597,4929.07)
+Point[2] Position= (-1094.07,665.595,4929)
 
-TrackID =2097 : ParentID=1995 : TrackStatus=1
+TrackID =2166 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -24.8079 -25.0944 1.18105 keV
-Vertex : -0.0103411 0.00554644 3.1653 m    Global time : 10.5584 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-10.3411,5.54644,3165.3)
-Point[1] Position= (-10.3632,5.52403,3165.3)
+Original momentum : -73.3065 -21.6861 -5.60371 keV
+Vertex : -1.08498 0.657284 4.88804 m    Global time : 17.2007 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-1084.98,657.284,4888.04)
+Point[1] Position= (-1085.38,657.167,4888.01)
+Point[2] Position= (-1085.39,657.194,4887.97)
 
-TrackID =2096 : ParentID=1995 : TrackStatus=1
+TrackID =2165 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 2.04032 -40.736 1.70605 keV
-Vertex : -0.00987595 0.00529739 3.02321 m    Global time : 10.0844 ns 
+Original momentum : -1.36862 -42.7579 10.1967 keV
+Vertex : -1.05648 0.631101 4.75678 m    Global time : 16.7429 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-9.87595,5.29739,3023.21)
-Point[1] Position= (-9.87344,5.24723,3023.22)
+Point[0] Position= (-1056.48,631.101,4756.78)
+Point[1] Position= (-1056.48,631.038,4756.79)
 
-TrackID =2095 : ParentID=1995 : TrackStatus=1
+TrackID =2164 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 34.2095 -13.0723 1.44752 keV
-Vertex : -0.00957995 0.00513898 2.93276 m    Global time : 9.78272 ns 
+Original momentum : -10.8844 -29.7565 4.62005 keV
+Vertex : -0.968454 0.550329 4.3517 m    Global time : 15.3299 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-9.57995,5.13898,2932.76)
-Point[1] Position= (-9.54677,5.12631,2932.76)
+Point[0] Position= (-968.454,550.329,4351.7)
+Point[1] Position= (-968.462,550.307,4351.71)
 
-TrackID =2094 : ParentID=1995 : TrackStatus=1
+TrackID =2163 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -12.2602 41.2412 1.69858 keV
-Vertex : -0.00930718 0.00499309 2.84942 m    Global time : 9.5047 ns 
+Original momentum : -33.9657 -5.63641 -5.01244 keV
+Vertex : -0.959933 0.5425 4.31245 m    Global time : 15.193 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-9.30718,4.99309,2849.42)
-Point[1] Position= (-9.32419,5.0503,2849.42)
+Point[0] Position= (-959.933,542.5,4312.45)
+Point[1] Position= (-959.963,542.496,4312.45)
 
-TrackID =2093 : ParentID=1995 : TrackStatus=1
+TrackID =2162 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 146.025 -177.171 52.4472 keV
-Vertex : -0.00918441 0.00492739 2.81191 m    Global time : 9.37959 ns 
-  Current trajectory has 13 points.
-Point[0] Position= (-9.18441,4.92739,2811.91)
-Point[1] Position= (-2.66551,-2.98194,2814.25)
-Point[2] Position= (-0.952201,-2.26993,2816.79)
-Point[3] Position= (3.71256,-3.6247,2818.4)
-Point[4] Position= (9.07071,-6.12462,2819.39)
-Point[5] Position= (13.071,-5.792,2816.54)
-Point[6] Position= (15.712,-7.9123,2814.24)
-Point[7] Position= (17.4614,-8.74277,2811.7)
-Point[8] Position= (18.8288,-8.23811,2810.19)
-Point[9] Position= (19.8121,-9.45187,2809.47)
-Point[10] Position= (20.5281,-9.31067,2808.67)
-Point[11] Position= (20.5783,-9.29658,2808.61)
-Point[12] Position= (20.8846,-9.27972,2808.58)
+Original momentum : 26.0029 26.7618 1.73646 keV
+Vertex : -0.947292 0.530889 4.25424 m    Global time : 14.9899 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-947.292,530.889,4254.24)
+Point[1] Position= (-947.265,530.916,4254.24)
 
-TrackID =2141 : ParentID=2093 : TrackStatus=1
+TrackID =2161 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.56169 3.02132 -32.2339 keV
-Vertex : 0.0205783 -0.00929658 2.80861 m    Global time : 9.79378 ns 
+Original momentum : 6.03924 -36.2788 10.028 keV
+Vertex : -0.943881 0.527756 4.23853 m    Global time : 14.9351 ns 
   Current trajectory has 2 points.
-Point[0] Position= (20.5783,-9.29658,2808.61)
-Point[1] Position= (20.5756,-9.29431,2808.59)
+Point[0] Position= (-943.881,527.756,4238.53)
+Point[1] Position= (-943.874,527.718,4238.54)
 
-TrackID =2140 : ParentID=2093 : TrackStatus=1
+TrackID =2160 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.65239 18.2095 27.509 keV
-Vertex : 0.00371256 -0.0036247 2.8184 m    Global time : 9.53566 ns 
+Original momentum : -45.8658 -3.3636 -7.07752 keV
+Vertex : -0.870609 0.460528 3.90113 m    Global time : 13.7582 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.71256,-3.6247,2818.4)
-Point[1] Position= (3.71541,-3.61048,2818.42)
+Point[0] Position= (-870.609,460.528,3901.13)
+Point[1] Position= (-870.685,460.523,3901.12)
 
-TrackID =2139 : ParentID=2093 : TrackStatus=1
+TrackID =2159 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.25923 34.6902 40.2447 keV
-Vertex : -0.000952201 -0.00226993 2.81679 m    Global time : 9.49007 ns 
+Original momentum : 32.7724 12.4005 5.93256 keV
+Vertex : -0.846821 0.438696 3.79158 m    Global time : 13.3761 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-0.952201,-2.26993,2816.79)
-Point[1] Position= (-0.959642,-2.19072,2816.88)
+Point[0] Position= (-846.821,438.696,3791.58)
+Point[1] Position= (-846.791,438.707,3791.58)
 
-TrackID =2092 : ParentID=1995 : TrackStatus=1
+TrackID =2158 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 116.668 70.2306 18.413 keV
-Vertex : -0.00917177 0.00492063 2.80805 m    Global time : 9.36671 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (-9.17177,4.92063,2808.05)
-Point[1] Position= (-7.17439,6.12299,2808.36)
-Point[2] Position= (-6.48148,5.63657,2809.55)
-Point[3] Position= (-6.20729,5.19088,2809.66)
-Point[4] Position= (-6.24661,5.26102,2809.66)
+Original momentum : 35.6278 -11.4753 11.5937 keV
+Vertex : -0.819468 0.413573 3.66556 m    Global time : 12.9365 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-819.468,413.573,3665.56)
+Point[1] Position= (-819.428,413.56,3665.57)
 
-TrackID =2091 : ParentID=1995 : TrackStatus=1
+TrackID =2157 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 30.5774 -45.4881 3.12019 keV
-Vertex : -0.00853495 0.00457985 2.61336 m    Global time : 8.71731 ns 
+Original momentum : -26.1113 18.8084 -8.28819 keV
+Vertex : -0.797603 0.393497 3.56485 m    Global time : 12.5853 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-8.53495,4.57985,2613.36)
-Point[1] Position= (-8.45971,4.46792,2613.37)
+Point[0] Position= (-797.603,393.497,3564.85)
+Point[1] Position= (-797.624,393.512,3564.85)
 
-TrackID =2090 : ParentID=1995 : TrackStatus=1
+TrackID =2156 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -134.138 265.124 85.3298 keV
-Vertex : -0.00837128 0.00449219 2.5633 m    Global time : 8.5503 ns 
-  Current trajectory has 16 points.
-Point[0] Position= (-8.37128,4.49219,2563.3)
-Point[1] Position= (-19.0179,25.5351,2570.07)
-Point[2] Position= (-17.1125,42.0336,2559.08)
-Point[3] Position= (-17.1318,42.5736,2558.8)
-Point[4] Position= (-13.4188,53.9479,2551.34)
-Point[5] Position= (-12.8519,57.7495,2545.8)
-Point[6] Position= (-7.61797,62.871,2539.83)
-Point[7] Position= (-1.45819,61.4287,2535.52)
-Point[8] Position= (-3.14417,63.4842,2530.17)
-Point[9] Position= (-3.38779,63.6512,2528.98)
-Point[10] Position= (-3.56792,63.841,2528.04)
-Point[11] Position= (-4.37586,64.5234,2526.54)
-Point[12] Position= (-3.61632,65.4422,2527.03)
-Point[13] Position= (-3.20165,66.4732,2527.56)
-Point[14] Position= (-3.01211,66.4078,2527.27)
-Point[15] Position= (-3.00626,66.3141,2527.19)
+Original momentum : -89.7701 11.5085 -13.2775 keV
+Vertex : -0.767295 0.365644 3.42514 m    Global time : 12.0979 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (-767.295,365.644,3425.14)
+Point[1] Position= (-768.079,365.745,3425.02)
+Point[2] Position= (-768.279,365.647,3424.95)
 
-TrackID =2148 : ParentID=2090 : TrackStatus=1
+TrackID =2155 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.4785 -0.596508 -2.3475 keV
-Vertex : -0.00301211 0.0664078 2.52727 m    Global time : 9.29575 ns 
+Original momentum : 10.4852 -60.8886 18.6611 keV
+Vertex : -0.739502 0.340088 3.297 m    Global time : 11.651 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-3.01211,66.4078,2527.27)
-Point[1] Position= (-3.06121,66.4071,2527.27)
+Point[0] Position= (-739.502,340.088,3297)
+Point[1] Position= (-739.463,339.865,3297.07)
 
-TrackID =2147 : ParentID=2090 : TrackStatus=1
+TrackID =2154 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.1451 -12.1114 -3.64517 keV
-Vertex : -0.00361632 0.0654422 2.52703 m    Global time : 9.26761 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-3.61632,65.4422,2527.03)
-Point[1] Position= (-3.58078,65.4299,2527.03)
+Original momentum : -96.7413 32.4203 -16.617 keV
+Vertex : -0.705185 0.308482 3.13862 m    Global time : 11.0986 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (-705.185,308.482,3138.62)
+Point[1] Position= (-705.852,308.705,3138.51)
+Point[2] Position= (-706.591,308.852,3138.16)
+Point[3] Position= (-706.632,308.866,3138.17)
 
-TrackID =2146 : ParentID=2090 : TrackStatus=1
+TrackID =2183 : ParentID=2154 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 44.1353 -1.12378 -63.9645 keV
-Vertex : -0.00437586 0.0645234 2.52654 m    Global time : 9.24948 ns 
+Original momentum : -8.77949 -34.1756 3.99218 keV
+Vertex : -0.705852 0.308705 3.13851 m    Global time : 11.1106 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-4.37586,64.5234,2526.54)
-Point[1] Position= (-4.1173,64.5168,2526.17)
+Point[0] Position= (-705.852,308.705,3138.51)
+Point[1] Position= (-705.86,308.674,3138.51)
 
-TrackID =2145 : ParentID=2090 : TrackStatus=1
+TrackID =2153 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 1.89288 36.8135 15.4387 keV
-Vertex : -0.00356792 0.063841 2.52804 m    Global time : 9.22813 ns 
+Original momentum : 30.2342 -24.6859 13.2689 keV
+Vertex : -0.632392 0.241476 2.80356 m    Global time : 9.9297 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-3.56792,63.841,2528.04)
-Point[1] Position= (-3.5657,63.8843,2528.06)
+Point[0] Position= (-632.392,241.476,2803.56)
+Point[1] Position= (-632.354,241.444,2803.58)
 
-TrackID =2144 : ParentID=2090 : TrackStatus=1
+TrackID =2152 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 12.2194 -35.7697 -9.76956 keV
-Vertex : -0.00338779 0.0636512 2.52898 m    Global time : 9.21742 ns 
+Original momentum : 29.8767 24.139 3.19053 keV
+Vertex : -0.595603 0.207594 2.6346 m    Global time : 9.34014 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-3.38779,63.6512,2528.98)
-Point[1] Position= (-3.37416,63.6113,2528.97)
+Point[0] Position= (-595.603,207.594,2634.6)
+Point[1] Position= (-595.571,207.62,2634.6)
 
-TrackID =2143 : ParentID=2090 : TrackStatus=1
+TrackID =2151 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -30.3424 16.6453 -12.7569 keV
-Vertex : -0.0128519 0.0577495 2.5458 m    Global time : 9.00475 ns 
+Original momentum : -16.3473 37.2217 -9.26114 keV
+Vertex : -0.567752 0.18196 2.5069 m    Global time : 8.89453 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-12.8519,57.7495,2545.8)
-Point[1] Position= (-12.8817,57.7659,2545.79)
+Point[0] Position= (-567.752,181.96,2506.9)
+Point[1] Position= (-567.773,182.008,2506.89)
 
-TrackID =2142 : ParentID=2090 : TrackStatus=1
+TrackID =2150 : ParentID=2149 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.0321 -14.4274 -32.1996 keV
-Vertex : -0.0171318 0.0425736 2.5588 m    Global time : 8.84777 ns 
+Original momentum : 20.1236 26.0442 0.275745 keV
+Vertex : -0.486231 0.107003 2.13321 m    Global time : 7.5905 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-17.1318,42.5736,2558.8)
-Point[1] Position= (-17.1543,42.5565,2558.76)
+Point[0] Position= (-486.231,107.003,2133.21)
+Point[1] Position= (-486.215,107.023,2133.22)
 
-TrackID =2089 : ParentID=1995 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 24.1532 110.365 12.372 keV
-Vertex : -0.00805532 0.00432288 2.46667 m    Global time : 8.22798 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (-8.05532,4.32288,2466.67)
-Point[1] Position= (-7.74105,5.75889,2466.83)
-Point[2] Position= (-7.2594,5.74783,2466.86)
-Point[3] Position= (-7.07921,5.96067,2467.06)
+TrackID =2148 : ParentID=1828 : TrackStatus=1
+Particle name : anti_nu_mu  PDG code : -14  Charge : 0
+Original momentum : -101.785 -185.675 387.03 MeV
+Vertex : -0.467912 0.0901674 2.04924 m    Global time : 7.29745 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (-467.912,90.1674,2049.24)
+Point[1] Position= (-1506.93,-1805.18,6000)
+
+TrackID =1827 : ParentID=1823 : TrackStatus=1
+Particle name : unknown : k_star+  PDG code : 323  Charge : 1
+Original momentum : 1.15204 0.0504557 1.21247 GeV
+Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
+Point[1] Position= (9.91059e-306,-2.20853e-306,8.27772e-306)
 
-TrackID =2149 : ParentID=2089 : TrackStatus=1
+TrackID =2227 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.8706 -32.9827 3.12121 keV
-Vertex : -0.0072594 0.00574783 2.46686 m    Global time : 8.25964 ns 
+Original momentum : 50.6539 -0.745059 0.453098 keV
+Vertex : 0.134363 0.479207 1.47731 m    Global time : 9.6339 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-7.2594,5.74783,2466.86)
-Point[1] Position= (-7.19284,5.68662,2466.87)
+Point[0] Position= (134.363,479.207,1477.31)
+Point[1] Position= (134.466,479.206,1477.31)
 
-TrackID =2088 : ParentID=1995 : TrackStatus=1
+TrackID =2226 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 104.454 73.7601 16.2181 keV
-Vertex : -0.00668427 0.00358818 2.04718 m    Global time : 6.82871 ns 
-  Current trajectory has 5 points.
-Point[0] Position= (-6.68427,3.58818,2047.18)
-Point[1] Position= (-5.05239,4.74053,2047.43)
-Point[2] Position= (-3.93224,4.04267,2047.93)
-Point[3] Position= (-3.57301,3.99753,2047.97)
-Point[4] Position= (-3.46668,4.10248,2048.07)
+Original momentum : 37.9338 3.59331 -1.89665 keV
+Vertex : 0.13341 0.475907 1.46703 m    Global time : 9.56682 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (133.41,475.907,1467.03)
+Point[1] Position= (133.45,475.911,1467.03)
 
-TrackID =2150 : ParentID=2088 : TrackStatus=1
+TrackID =2225 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.3603 -21.007 -17.1643 keV
-Vertex : -0.00357301 0.00399753 2.04797 m    Global time : 6.88564 ns 
+Original momentum : 20.1744 38.8377 -10.4751 keV
+Vertex : 0.133103 0.47485 1.46373 m    Global time : 9.54533 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-3.57301,3.99753,2047.97)
-Point[1] Position= (-3.51621,3.96471,2047.95)
+Point[0] Position= (133.103,474.85,1463.73)
+Point[1] Position= (133.134,474.91,1463.72)
 
-TrackID =2087 : ParentID=1995 : TrackStatus=1
+TrackID =2224 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.6813 -6.80075 1.64804 keV
-Vertex : -0.00645602 0.00346579 1.97731 m    Global time : 6.59565 ns 
+Original momentum : 21.4947 -27.2595 9.2138 keV
+Vertex : 0.126212 0.451221 1.39021 m    Global time : 9.06555 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-6.45602,3.46579,1977.31)
-Point[1] Position= (-6.41222,3.45809,1977.31)
+Point[0] Position= (126.212,451.221,1390.21)
+Point[1] Position= (126.231,451.196,1390.22)
 
-TrackID =2086 : ParentID=1995 : TrackStatus=1
+TrackID =2223 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.691 -39.8747 1.77284 keV
-Vertex : -0.00597527 0.00320808 1.83023 m    Global time : 6.10504 ns 
+Original momentum : 21.7447 -22.4754 7.20262 keV
+Vertex : 0.0973485 0.351613 1.08066 m    Global time : 7.04605 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-5.97527,3.20808,1830.23)
-Point[1] Position= (-5.96174,3.15764,1830.23)
+Point[0] Position= (97.3485,351.613,1080.66)
+Point[1] Position= (97.3643,351.597,1080.66)
 
-TrackID =2085 : ParentID=1995 : TrackStatus=1
+TrackID =2222 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 54.6367 -1.87752 3.1074 keV
-Vertex : -0.00581606 0.00312272 1.78154 m    Global time : 5.94261 ns 
+Original momentum : 50.3512 -1.06527 0.545868 keV
+Vertex : 0.0967925 0.349668 1.07462 m    Global time : 7.00666 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-5.81606,3.12272,1781.54)
-Point[1] Position= (-5.68246,3.11813,1781.55)
+Point[0] Position= (96.7925,349.668,1074.62)
+Point[1] Position= (96.8931,349.666,1074.62)
 
-TrackID =2084 : ParentID=1995 : TrackStatus=1
+TrackID =2221 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 46.4234 29.975 3.08773 keV
-Vertex : -0.00551173 0.00295949 1.68846 m    Global time : 5.63213 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (-5.51173,2.95949,1688.46)
-Point[1] Position= (-5.4088,3.02595,1688.46)
-Point[2] Position= (-5.38883,3.02313,1688.47)
+Original momentum : 59.3342 -67.491 33.8941 keV
+Vertex : 8.55964 31.032 95.2743 cm   Global time : 6.21168 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (85.5964,310.32,952.743)
+Point[1] Position= (85.9269,309.944,952.932)
+Point[2] Position= (85.9301,309.914,952.897)
+Point[3] Position= (86.0053,309.833,952.851)
 
-TrackID =2083 : ParentID=1995 : TrackStatus=1
+TrackID =2228 : ParentID=2221 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 9.29189 46.5799 2.15595 keV
-Vertex : -0.00532181 0.00285766 1.63037 m    Global time : 5.43836 ns 
+Original momentum : -27.6395 -11.2192 -25.8576 keV
+Vertex : 8.59301 30.9914 95.2897 cm   Global time : 6.22243 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-5.32181,2.85766,1630.37)
-Point[1] Position= (-5.30562,2.93883,1630.37)
+Point[0] Position= (85.9301,309.914,952.897)
+Point[1] Position= (85.9077,309.905,952.876)
 
-TrackID =2082 : ParentID=1995 : TrackStatus=1
+TrackID =2220 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 38.6858 -15.8525 1.86507 keV
-Vertex : -0.0050536 0.00271381 1.54832 m    Global time : 5.16469 ns 
+Original momentum : -33.7458 -10.6462 9.04691 keV
+Vertex : 8.05172 29.2411 89.7319 cm   Global time : 5.85019 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-5.0536,2.71381,1548.32)
-Point[1] Position= (-5.00326,2.69318,1548.33)
+Point[0] Position= (80.5172,292.411,897.319)
+Point[1] Position= (80.4937,292.404,897.325)
 
-TrackID =2081 : ParentID=1995 : TrackStatus=1
+TrackID =2219 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -39.0211 -36.7773 2.75007 keV
-Vertex : -0.00416848 0.00223851 1.27738 m    Global time : 4.26093 ns 
+Original momentum : -20.0577 -30.0759 14.3749 keV
+Vertex : 7.91789 28.7669 88.2592 cm   Global time : 5.75418 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-4.16848,2.23851,1277.38)
-Point[1] Position= (-4.25945,2.15278,1277.39)
+Point[0] Position= (79.1789,287.669,882.592)
+Point[1] Position= (79.1632,287.645,882.603)
 
-TrackID =2080 : ParentID=1995 : TrackStatus=1
+TrackID =2218 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 14.6755 -65.3876 4.55826 keV
-Vertex : -0.00382878 0.00205611 1.17335 m    Global time : 3.91389 ns 
+Original momentum : -31.5663 -5.10929 6.54628 keV
+Vertex : 7.5941 27.619 84.696 cm   Global time : 5.52189 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-3.82878,2.05611,1173.35)
-Point[1] Position= (-3.76935,1.79132,1173.37)
+Point[0] Position= (75.941,276.19,846.96)
+Point[1] Position= (75.9233,276.187,846.963)
 
-TrackID =2079 : ParentID=1995 : TrackStatus=1
+TrackID =2217 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.8825 -2.99039 1.39131 keV
-Vertex : -0.00382228 0.00205262 1.17136 m    Global time : 3.90725 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (-3.82228,2.05262,1171.36)
-Point[1] Position= (-3.78876,2.04982,1171.36)
+Original momentum : -72.1417 44.8007 5.83208 keV
+Vertex : 7.42158 27.0066 82.7989 cm   Global time : 5.39819 ns 
+  Current trajectory has 4 points.
+Point[0] Position= (74.2158,270.066,827.989)
+Point[1] Position= (73.9128,270.254,828.013)
+Point[2] Position= (73.7936,270.32,828.031)
+Point[3] Position= (73.782,270.276,828.041)
 
-TrackID =2078 : ParentID=1995 : TrackStatus=1
+TrackID =2216 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 13.953 53.6648 2.95958 keV
-Vertex : -0.00354915 0.00190593 1.08768 m    Global time : 3.62815 ns 
+Original momentum : -18.9272 25.9273 -4.6534 keV
+Vertex : 7.31897 26.6408 81.665 cm   Global time : 5.32427 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-3.54915,1.90593,1087.68)
-Point[1] Position= (-3.51385,2.0417,1087.69)
+Point[0] Position= (73.1897,266.408,816.65)
+Point[1] Position= (73.1792,266.422,816.647)
 
-TrackID =2077 : ParentID=1995 : TrackStatus=1
+TrackID =2215 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -3.8448 -32.539 1.09516 keV
-Vertex : -0.306544 0.164585 93.9496 cm   Global time : 3.13384 ns 
+Original momentum : -63.932 -2.79284 14.9615 keV
+Vertex : 7.26773 26.4576 81.0981 cm   Global time : 5.28731 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-3.06544,1.64585,939.496)
-Point[1] Position= (-3.06836,1.6211,939.496)
+Point[0] Position= (72.6773,264.576,810.981)
+Point[1] Position= (72.5292,264.569,811.016)
 
-TrackID =2076 : ParentID=1995 : TrackStatus=1
+TrackID =2214 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.4979 -39.9078 2.34831 keV
-Vertex : -0.24992 0.134156 76.5992 cm   Global time : 2.55509 ns 
+Original momentum : 34.7501 78.2197 -14.2893 keV
+Vertex : 7.09968 25.8633 79.2647 cm   Global time : 5.16772 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (70.9968,258.633,792.647)
+Point[1] Position= (71.086,258.834,792.61)
+Point[2] Position= (71.1462,258.892,792.678)
+
+TrackID =2229 : ParentID=2214 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -14.1445 44.5607 -24.6526 keV
+Vertex : 7.1086 25.8834 79.261 cm   Global time : 5.17216 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-2.4992,1.34156,765.992)
-Point[1] Position= (-2.45505,1.27246,765.996)
+Point[0] Position= (71.086,258.834,792.61)
+Point[1] Position= (71.0655,258.899,792.574)
 
-TrackID =2075 : ParentID=1995 : TrackStatus=1
+TrackID =2213 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -40.1261 -12.8926 1.62944 keV
-Vertex : -0.184345 0.0989601 56.4962 cm   Global time : 1.88452 ns 
+Original momentum : -37.6599 9.58271 3.28177 keV
+Vertex : 6.99598 25.4995 78.1433 cm   Global time : 5.09458 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.84345,0.989601,564.962)
-Point[1] Position= (-1.89659,0.972527,564.964)
+Point[0] Position= (69.9598,254.995,781.433)
+Point[1] Position= (69.9301,255.003,781.436)
 
-TrackID =2074 : ParentID=1995 : TrackStatus=1
+TrackID =2212 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.2598 47.698 2.27087 keV
-Vertex : -0.182065 0.0977364 55.797 cm   Global time : 1.8612 ns 
+Original momentum : 19.6376 -31.7244 11.3788 keV
+Vertex : 6.96229 25.3811 77.7782 cm   Global time : 5.07076 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.82065,0.977364,557.97)
-Point[1] Position= (-1.84614,1.06905,557.974)
+Point[0] Position= (69.6229,253.811,777.782)
+Point[1] Position= (69.6384,253.786,777.791)
 
-TrackID =2073 : ParentID=1995 : TrackStatus=1
+TrackID =2211 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -26.7675 20.6967 0.996344 keV
-Vertex : -0.148158 0.0795346 45.403 cm   Global time : 1.51449 ns 
+Original momentum : -16.2996 -46.6025 22.1594 keV
+Vertex : 6.85529 25.0063 76.6195 cm   Global time : 4.9952 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.48158,0.795346,454.03)
-Point[1] Position= (-1.5034,0.812211,454.031)
+Point[0] Position= (68.5529,250.063,766.195)
+Point[1] Position= (68.5281,249.992,766.229)
 
-TrackID =2072 : ParentID=1995 : TrackStatus=1
+TrackID =2210 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.1981 81.0046 7.50715 keV
-Vertex : -0.13818 0.0741807 42.3464 cm   Global time : 1.41254 ns 
+Original momentum : -99.0862 35.5719 19.2827 keV
+Vertex : 6.73607 24.5881 75.3235 cm   Global time : 4.91072 ns 
   Current trajectory has 4 points.
-Point[0] Position= (-1.3818,0.741807,423.464)
-Point[1] Position= (-1.69061,1.41428,423.527)
-Point[2] Position= (-1.84248,1.39061,423.42)
-Point[3] Position= (-1.85059,1.43724,423.469)
+Point[0] Position= (67.3607,245.881,753.235)
+Point[1] Position= (66.7514,246.1,753.354)
+Point[2] Position= (66.8925,245.748,753.326)
+Point[3] Position= (66.8941,245.748,753.325)
 
-TrackID =2071 : ParentID=1995 : TrackStatus=1
+TrackID =2230 : ParentID=2210 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -5.05187 35.8807 1.20511 keV
-Vertex : -0.131505 0.0705975 40.3018 cm   Global time : 1.34433 ns 
+Original momentum : -4.18115 -4.60761 35.7985 keV
+Vertex : 6.67514 24.61 75.3354 cm   Global time : 4.92142 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.31505,0.705975,403.018)
-Point[1] Position= (-1.31983,0.739946,403.019)
+Point[0] Position= (66.7514,246.1,753.354)
+Point[1] Position= (66.7485,246.097,753.378)
 
-TrackID =1991 : ParentID=1970 : TrackStatus=1
-Particle name : unknown : delta+  PDG code : 2214  Charge : 1
-Original momentum : -0.172069 0.414941 182.573 GeV
-Vertex : -1.99346e-295 -1.71289e-295 1.3336e-293 fm   Global time : 4.71592e-305 ps 
+TrackID =2209 : ParentID=2185 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 31.8395 -26.9059 9.23454 keV
+Vertex : 6.56511 23.9845 73.4456 cm   Global time : 4.78836 ns 
   Current trajectory has 2 points.
-Point[0] Position= (-1.99346e-307,-1.71289e-307,1.3336e-305)
-Point[1] Position= (-2.05633e-307,-1.56128e-307,2.00066e-305)
+Point[0] Position= (65.6511,239.845,734.456)
+Point[1] Position= (65.6808,239.82,734.464)
 
-TrackID =2152 : ParentID=1991 : TrackStatus=1
-Particle name : proton  PDG code : 2212  Charge : 1
-Original momentum : 0.0901456 0.284078 132.855 GeV
-Vertex : -2.05633e-295 -1.56128e-295 2.00066e-293 fm   Global time : 6.94105e-305 ps 
-  Current trajectory has 56 points.
-Point[0] Position= (-2.05633e-307,-1.56128e-307,2.00066e-305)
-Point[1] Position= (0.0194398,0.0613282,28.6776)
-Point[2] Position= (0.120161,0.379002,177.295)
-Point[3] Position= (0.26354,0.832369,389.374)
-Point[4] Position= (0.323485,1.02299,478.441)
-Point[5] Position= (0.444396,1.40588,657.516)
-Point[6] Position= (0.487883,1.5433,721.883)
-Point[7] Position= (0.513018,1.62277,759.122)
-Point[8] Position= (0.531588,1.68152,786.656)
-Point[9] Position= (0.57016,1.80354,843.827)
-Point[10] Position= (0.596648,1.88737,883.103)
-Point[11] Position= (0.623509,1.97249,922.979)
-Point[12] Position= (0.763544,2.41719,1131.25)
-Point[13] Position= (0.78078,2.47201,1156.91)
-Point[14] Position= (0.870769,2.75861,1291.01)
-Point[15] Position= (0.876688,2.77748,1299.84)
-Point[16] Position= (1.00216,3.17721,1486.89)
-Point[17] Position= (1.21871,3.86998,1811.01)
-Point[18] Position= (1.22382,3.8864,1818.7)
-Point[19] Position= (1.28254,4.07474,1906.82)
-Point[20] Position= (1.30281,4.13972,1937.23)
-Point[21] Position= (1.36778,4.34817,2034.76)
-Point[22] Position= (1.46919,4.67246,2186.51)
-Point[23] Position= (1.49916,4.76801,2231.21)
-Point[24] Position= (1.6821,5.35324,2504.59)
-Point[25] Position= (1.69237,5.38624,2519.99)
-Point[26] Position= (1.72426,5.48864,2567.77)
-Point[27] Position= (1.77162,5.64062,2638.66)
-Point[28] Position= (1.9063,6.0719,2839.98)
-Point[29] Position= (2.00593,6.39072,2988.74)
-Point[30] Position= (2.09147,6.6648,3116.63)
-Point[31] Position= (2.12368,6.76803,3164.83)
-Point[32] Position= (2.22357,7.08852,3314.48)
-Point[33] Position= (2.22867,7.10492,3322.14)
-Point[34] Position= (2.24202,7.14788,3342.2)
-Point[35] Position= (2.25445,7.18789,3360.89)
-Point[36] Position= (2.27847,7.26517,3396.97)
-Point[37] Position= (2.33285,7.4403,3478.64)
-Point[38] Position= (2.75853,8.81293,4118.95)
-Point[39] Position= (2.82273,9.02046,4215.76)
-Point[40] Position= (2.86668,9.16384,4282.77)
-Point[41] Position= (2.91547,9.32292,4357.15)
-Point[42] Position= (3.13773,10.0483,4696.28)
-Point[43] Position= (3.21761,10.3079,4817.78)
-Point[44] Position= (3.28526,10.5277,4920.59)
-Point[45] Position= (3.35591,10.7569,5027.77)
-Point[46] Position= (3.56144,11.4258,5340.3)
-Point[47] Position= (3.57046,11.4551,5354.01)
-Point[48] Position= (3.59584,11.5374,5392.48)
-Point[49] Position= (3.69191,11.8492,5538.23)
-Point[50] Position= (3.7397,12.0043,5610.76)
-Point[51] Position= (3.8183,12.2594,5730.01)
-Point[52] Position= (3.86197,12.4013,5796.32)
-Point[53] Position= (3.86609,12.4147,5802.58)
-Point[54] Position= (3.91102,12.5608,5870.79)
-Point[55] Position= (3.99612,12.8375,6000)
-
-TrackID =2206 : ParentID=2152 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 103.58 41.4539 12.0188 keV
-Vertex : 0.00391102 0.0125608 5.87079 m    Global time : 19.5834 ns 
-  Current trajectory has 4 points.
-Point[0] Position= (3.91102,12.5608,5870.79)
-Point[1] Position= (5.23261,13.0897,5870.94)
-Point[2] Position= (5.07599,13.4787,5871.12)
-Point[3] Position= (5.1067,13.646,5871.27)
+TrackID =2208 : ParentID=2185 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -8.56989 35.009 -8.02829 keV
+Vertex : 5.42646 19.8897 60.7319 cm   Global time : 3.96005 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (54.2646,198.897,607.319)
+Point[1] Position= (54.2585,198.922,607.313)
 
-TrackID =2207 : ParentID=2206 : TrackStatus=1
+TrackID =2207 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 6.49555 22.3507 -26.0763 keV
-Vertex : 0.00507599 0.0134787 5.87112 m    Global time : 19.6149 ns 
+Original momentum : 11.5267 -28.0162 10.0566 keV
+Vertex : 5.38936 19.7539 60.3151 cm   Global time : 3.93287 ns 
   Current trajectory has 2 points.
-Point[0] Position= (5.07599,13.4787,5871.12)
-Point[1] Position= (5.08166,13.4982,5871.1)
+Point[0] Position= (53.8936,197.539,603.151)
+Point[1] Position= (53.8998,197.523,603.157)
 
-TrackID =2205 : ParentID=2152 : TrackStatus=1
+TrackID =2206 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 52.662 -43.9822 4.66655 keV
-Vertex : 0.00386609 0.0124147 5.80258 m    Global time : 19.3558 ns 
+Original momentum : 32.6872 12.024 -4.47716 keV
+Vertex : 5.37911 19.7164 60.2001 cm   Global time : 3.92537 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.86609,12.4147,5802.58)
-Point[1] Position= (4.09237,12.2257,5802.6)
+Point[0] Position= (53.7911,197.164,602.001)
+Point[1] Position= (53.8123,197.171,601.998)
 
-TrackID =2204 : ParentID=2152 : TrackStatus=1
+TrackID =2205 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -32.7293 -42.0649 2.89181 keV
-Vertex : 0.00386197 0.0124013 5.79632 m    Global time : 19.335 ns 
+Original momentum : -7.86932 36.9688 -8.52066 keV
+Vertex : 4.8934 17.9375 54.7551 cm   Global time : 3.5702 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.86197,12.4013,5796.32)
-Point[1] Position= (3.78675,12.3046,5796.33)
+Point[0] Position= (48.934,179.375,547.551)
+Point[1] Position= (48.9254,179.416,547.541)
 
-TrackID =2203 : ParentID=2152 : TrackStatus=1
+TrackID =2204 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -6.77164 94.5341 8.58829 keV
-Vertex : 0.0038183 0.0122594 5.73001 m    Global time : 19.1138 ns 
-  Current trajectory has 3 points.
-Point[0] Position= (3.8183,12.2594,5730.01)
-Point[1] Position= (3.75389,13.1586,5730.1)
-Point[2] Position= (3.69847,13.2656,5730)
+Original momentum : -36.9703 -10.1111 9.58381 keV
+Vertex : 4.87826 17.8819 54.5852 cm   Global time : 3.55912 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (48.7826,178.819,545.852)
+Point[1] Position= (48.7403,178.808,545.863)
 
-TrackID =2202 : ParentID=2152 : TrackStatus=1
+TrackID =2203 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 8.74627 32.4832 1.03193 keV
-Vertex : 0.0037397 0.0120043 5.61076 m    Global time : 18.716 ns 
+Original momentum : 20.1141 -31.8655 11.5957 keV
+Vertex : 4.83368 17.718 54.084 cm   Global time : 3.52643 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.7397,12.0043,5610.76)
-Point[1] Position= (3.74673,12.0305,5610.76)
+Point[0] Position= (48.3368,177.18,540.84)
+Point[1] Position= (48.3598,177.144,540.853)
+
+TrackID =2202 : ParentID=2185 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 25.0078 146.108 -8.7031 keV
+Vertex : 4.75786 17.4383 53.2285 cm   Global time : 3.47063 ns 
+  Current trajectory has 7 points.
+Point[0] Position= (47.5786,174.383,532.285)
+Point[1] Position= (48.0588,177.188,532.118)
+Point[2] Position= (47.7355,177.816,532.203)
+Point[3] Position= (47.0472,178.436,532.263)
+Point[4] Position= (46.2586,178.501,532.547)
+Point[5] Position= (46.4297,178.74,532.298)
+Point[6] Position= (46.5309,178.735,532.314)
 
-TrackID =2201 : ParentID=2152 : TrackStatus=1
+TrackID =2233 : ParentID=2202 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -49.7986 -4.62815 2.49047 keV
-Vertex : 0.00369191 0.0118492 5.53823 m    Global time : 18.474 ns 
+Original momentum : -1.94905 -36.7713 0.300716 keV
+Vertex : 4.64297 17.874 53.2298 cm   Global time : 3.55269 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.69191,11.8492,5538.23)
-Point[1] Position= (3.59379,11.8401,5538.23)
+Point[0] Position= (46.4297,178.74,532.298)
+Point[1] Position= (46.4278,178.704,532.298)
 
-TrackID =2200 : ParentID=2152 : TrackStatus=1
+TrackID =2232 : ParentID=2202 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -35.1588 14.3879 1.40452 keV
-Vertex : 0.00359584 0.0115374 5.39248 m    Global time : 17.9879 ns 
+Original momentum : -2.9315 30.646 -14.9164 keV
+Vertex : 4.70472 17.8436 53.2263 cm   Global time : 3.52845 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.59584,11.5374,5392.48)
-Point[1] Position= (3.55888,11.5525,5392.48)
+Point[0] Position= (47.0472,178.436,532.263)
+Point[1] Position= (47.0448,178.461,532.251)
 
-TrackID =2199 : ParentID=2152 : TrackStatus=1
+TrackID =2231 : ParentID=2202 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -8.47257 31.5913 0.984675 keV
-Vertex : 0.00357046 0.0114551 5.35401 m    Global time : 17.8595 ns 
+Original momentum : 25.0212 29.0577 -10.3354 keV
+Vertex : 4.77355 17.7816 53.2203 cm   Global time : 3.51455 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.57046,11.4551,5354.01)
-Point[1] Position= (3.56404,11.4791,5354.01)
+Point[0] Position= (47.7355,177.816,532.203)
+Point[1] Position= (47.7645,177.85,532.191)
 
-TrackID =2198 : ParentID=2152 : TrackStatus=1
+TrackID =2201 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 54.7755 -10.392 3.02766 keV
-Vertex : 0.00356144 0.0114258 5.3403 m    Global time : 17.8138 ns 
+Original momentum : 16.3478 -26.7146 9.34262 keV
+Vertex : 4.70673 17.2492 52.6515 cm   Global time : 3.43298 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.56144,11.4258,5340.3)
-Point[1] Position= (3.7019,11.3991,5340.31)
+Point[0] Position= (47.0673,172.492,526.515)
+Point[1] Position= (47.0797,172.472,526.522)
 
-TrackID =2197 : ParentID=2152 : TrackStatus=1
+TrackID =2200 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 35.8916 -20.8937 1.70879 keV
-Vertex : 0.00335591 0.0107569 5.02777 m    Global time : 16.7713 ns 
+Original momentum : -5.68323 43.2015 -9.90398 keV
+Vertex : 4.163 15.2606 46.597 cm   Global time : 3.03794 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.35591,10.7569,5027.77)
-Point[1] Position= (3.40191,10.7301,5027.77)
+Point[0] Position= (41.63,152.606,465.97)
+Point[1] Position= (41.6214,152.671,465.955)
 
-TrackID =2196 : ParentID=2152 : TrackStatus=1
+TrackID =2199 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -1.90764 52.7003 2.60917 keV
-Vertex : 0.00328526 0.0105277 4.92059 m    Global time : 16.4138 ns 
+Original momentum : 19.2365 40.6631 -11.0068 keV
+Vertex : 4.02824 14.7695 45.1049 cm   Global time : 2.94057 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.28526,10.5277,4920.59)
-Point[1] Position= (3.28099,10.6456,4920.6)
+Point[0] Position= (40.2824,147.695,451.049)
+Point[1] Position= (40.3139,147.761,451.031)
 
-TrackID =2195 : ParentID=2152 : TrackStatus=1
+TrackID =2198 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.0523 -21.7742 1.87835 keV
-Vertex : 0.00321761 0.0103079 4.81778 m    Global time : 16.0708 ns 
+Original momentum : -35.7501 -16.7778 12.0463 keV
+Vertex : 3.7173 13.6397 41.6751 cm   Global time : 2.71671 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.21761,10.3079,4817.78)
-Point[1] Position= (3.16632,10.2777,4817.78)
+Point[0] Position= (37.173,136.397,416.751)
+Point[1] Position= (37.1279,136.376,416.766)
+
+TrackID =2197 : ParentID=2185 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -19.534 -63.9324 33.3596 keV
+Vertex : 2.72069 9.98587 30.5881 cm   Global time : 1.99325 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (27.2069,99.8587,305.881)
+Point[1] Position= (27.1213,99.5787,306.027)
+Point[2] Position= (27.0534,99.5343,306.093)
 
-TrackID =2194 : ParentID=2152 : TrackStatus=1
+TrackID =2234 : ParentID=2197 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -15.1708 -41.8871 2.04193 keV
-Vertex : 0.00313773 0.0100483 4.69628 m    Global time : 15.6655 ns 
+Original momentum : 21.6603 1.63591 23.4797 keV
+Vertex : 2.71213 9.95787 30.6027 cm   Global time : 2.0008 ns 
   Current trajectory has 2 points.
-Point[0] Position= (3.13773,10.0483,4696.28)
-Point[1] Position= (3.11494,9.98539,4696.28)
+Point[0] Position= (27.1213,99.5787,306.027)
+Point[1] Position= (27.137,99.5799,306.044)
 
-TrackID =2193 : ParentID=2152 : TrackStatus=1
+TrackID =2196 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -19.1597 -28.832 1.24701 keV
-Vertex : 0.00291547 0.00932292 4.35715 m    Global time : 14.5343 ns 
+Original momentum : -35.544 -5.98307 7.73065 keV
+Vertex : 2.66994 9.79895 30.0189 cm   Global time : 1.95613 ns 
   Current trajectory has 2 points.
-Point[0] Position= (2.91547,9.32292,4357.15)
-Point[1] Position= (2.89905,9.29822,4357.15)
+Point[0] Position= (26.6994,97.9895,300.189)
+Point[1] Position= (26.6645,97.9837,300.197)
 
-TrackID =2192 : ParentID=2152 : TrackStatus=1
+TrackID =2195 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 37.422 -33.1034 2.48908 keV
-Vertex : 0.00286668 0.00916384 4.28277 m    Global time : 14.2862 ns 
+Original momentum : -30.1164 26.3714 -2.89895 keV
+Vertex : 2.60957 9.57645 29.341 cm   Global time : 1.91192 ns 
   Current trajectory has 2 points.
-Point[0] Position= (2.86668,9.16384,4282.77)
-Point[1] Position= (2.94024,9.09877,4282.78)
+Point[0] Position= (26.0957,95.7645,293.41)
+Point[1] Position= (26.0599,95.7958,293.407)
 
-TrackID =2191 : ParentID=2152 : TrackStatus=1
+TrackID =2194 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 577.837 335.414 434.778 keV
-Vertex : 0.00282273 0.00902046 4.21576 m    Global time : 14.0626 ns 
-  Current trajectory has 45 points.
-Point[0] Position= (2.82273,9.02046,4215.76)
-Point[1] Position= (17.5566,18.8586,4228.48)
-Point[2] Position= (33.2318,30.3919,4239.22)
-Point[3] Position= (99.3318,60.1527,4343.07)
-Point[4] Position= (107.508,68.8905,4365.77)
-Point[5] Position= (108.103,69.2834,4367.05)
-Point[6] Position= (110.2,71.068,4373.06)
-Point[7] Position= (199.713,164.903,4620.75)
-Point[8] Position= (94.013,230.474,4738.73)
-Point[9] Position= (7.12578,240.656,4791.23)
-Point[10] Position= (-6.46266,258.091,4789.51)
-Point[11] Position= (-25.8703,278.434,4792.4)
-Point[12] Position= (-25.0646,270.206,4787.72)
-Point[13] Position= (-3.42295,202.756,4758.18)
-Point[14] Position= (11.5861,183.18,4756.88)
-Point[15] Position= (16.2787,173.876,4758.31)
-Point[16] Position= (28.2528,148.299,4761.28)
-Point[17] Position= (36.6456,134.448,4762.58)
-Point[18] Position= (49.8686,93.752,4788.09)
-Point[19] Position= (64.7388,63.292,4820.17)
-Point[20] Position= (67.8216,62.9227,4827.4)
-Point[21] Position= (69.8672,65.0991,4849.73)
-Point[22] Position= (67.7921,63.9689,4864.19)
-Point[23] Position= (67.9239,54.9872,4898.51)
-Point[24] Position= (73.8528,44.6293,4933.88)
-Point[25] Position= (76.0187,37.1442,4950.51)
-Point[26] Position= (75.6747,29.2067,4958.1)
-Point[27] Position= (71.6295,-4.05545,4990.25)
-Point[28] Position= (69.0299,-30.9344,5014.64)
-Point[29] Position= (70.8529,-53.5298,5028.54)
-Point[30] Position= (71.2011,-54.6041,5029.32)
-Point[31] Position= (76.8309,-64.6209,5043.05)
-Point[32] Position= (73.9488,-77.4803,5052.8)
-Point[33] Position= (62.0717,-81.9972,5056.04)
-Point[34] Position= (69.5421,-89.8842,5056.27)
-Point[35] Position= (72.1689,-96.5064,5055.09)
-Point[36] Position= (69.3736,-101.576,5054.15)
-Point[37] Position= (68.1866,-105.442,5056.77)
-Point[38] Position= (69.6059,-107.821,5059.15)
-Point[39] Position= (71.9189,-108.66,5060.8)
-Point[40] Position= (72.2311,-110.533,5061.99)
-Point[41] Position= (71.9728,-110.843,5063.82)
-Point[42] Position= (71.7862,-111.067,5065.15)
-Point[43] Position= (71.9636,-110.591,5065.09)
-Point[44] Position= (71.9368,-110.4,5065.18)
+Original momentum : 49.5507 -0.547972 0.469419 keV
+Vertex : 2.43012 8.91518 27.3252 cm   Global time : 1.78045 ns 
+  Current trajectory has 2 points.
+Point[0] Position= (24.3012,89.1518,273.252)
+Point[1] Position= (24.3965,89.1508,273.253)
 
-TrackID =2236 : ParentID=2191 : TrackStatus=1
+TrackID =2193 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 36.5788 20.0248 -33.6787 keV
-Vertex : 0.0719636 -0.110591 5.06509 m    Global time : 20.7613 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (71.9636,-110.591,5065.09)
-Point[1] Position= (72.0486,-110.545,5065.01)
-
-TrackID =2235 : ParentID=2191 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 3.14451 -9.84424 41.6752 keV
-Vertex : 0.0721689 -0.0965064 5.05509 m    Global time : 20.4962 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (72.1689,-96.5064,5055.09)
-Point[1] Position= (72.1732,-96.5199,5055.14)
-
-TrackID =2234 : ParentID=2191 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -39.8667 -2.49347 -14.3336 keV
-Vertex : 0.0768309 -0.0646209 5.04305 m    Global time : 20.1342 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (76.8309,-64.6209,5043.05)
-Point[1] Position= (76.7773,-64.6243,5043.03)
-
-TrackID =2233 : ParentID=2191 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -7.52327 -30.0524 -18.4053 keV
-Vertex : 0.0712011 -0.0546041 5.02932 m    Global time : 20.0134 ns 
-  Current trajectory has 2 points.
-Point[0] Position= (71.2011,-54.6041,5029.32)
-Point[1] Position= (71.1941,-54.6322,5029.31)
-
-TrackID =2232 : ParentID=2191 : TrackStatus=1
-Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -37.3 -53.2822 -53.1738 keV
-Vertex : 0.0708529 -0.0535298 5.02854 m    Global time : 20.0042 ns 
+Original momentum : 86.706 -21.8221 15.0525 keV
+Vertex : 1.23746 4.53591 13.9354 cm   Global time : 907.691 ps 
   Current trajectory has 3 points.
-Point[0] Position= (70.8529,-53.5298,5028.54)
-Point[1] Position= (70.5867,-53.91,5028.16)
-Point[2] Position= (70.6171,-53.8432,5028.15)
+Point[0] Position= (12.3746,45.3591,139.354)
+Point[1] Position= (13.117,45.1722,139.483)
+Point[2] Position= (13.1402,45.2226,139.346)
+
+TrackID =2192 : ParentID=2185 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 41.234 -32.3329 12.4321 keV
+Vertex : 1.18863 4.35592 13.3839 cm   Global time : 871.752 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (11.8863,43.5592,133.839)
+Point[1] Position= (11.9831,43.4833,133.868)
 
-TrackID =2231 : ParentID=2191 : TrackStatus=1
+TrackID =2191 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -13.1105 32.6606 34.7332 keV
-Vertex : 0.0760187 0.0371442 4.95051 m    Global time : 19.3049 ns 
+Original momentum : -30.7869 -25.2144 14.3682 keV
+Vertex : 1.17255 4.29671 13.2024 cm   Global time : 859.928 ps 
   Current trajectory has 2 points.
-Point[0] Position= (76.0187,37.1442,4950.51)
-Point[1] Position= (75.9937,37.2066,4950.58)
+Point[0] Position= (11.7255,42.9671,132.024)
+Point[1] Position= (11.6845,42.9335,132.043)
 
-TrackID =2230 : ParentID=2191 : TrackStatus=1
+TrackID =2190 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 31.9069 12.3506 1.83979 keV
-Vertex : 0.0738528 0.0446293 4.93388 m    Global time : 19.2055 ns 
+Original momentum : -62.4389 -2.51578 14.1546 keV
+Vertex : 0.925687 3.38712 10.4101 cm   Global time : 678.023 ps 
   Current trajectory has 2 points.
-Point[0] Position= (73.8528,44.6293,4933.88)
-Point[1] Position= (73.8795,44.6397,4933.88)
+Point[0] Position= (9.25687,33.8712,104.101)
+Point[1] Position= (9.03216,33.8621,104.152)
 
-TrackID =2229 : ParentID=2191 : TrackStatus=1
+TrackID =2189 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -34.0924 -5.36039 4.59012 keV
-Vertex : 0.0679239 0.0549872 4.89851 m    Global time : 19.0083 ns 
+Original momentum : 22.1941 -24.9204 8.39393 keV
+Vertex : 0.823224 3.0098 9.25007 cm   Global time : 602.464 ps 
   Current trajectory has 2 points.
-Point[0] Position= (67.9239,54.9872,4898.51)
-Point[1] Position= (67.8943,54.9826,4898.52)
+Point[0] Position= (8.23224,30.098,92.5007)
+Point[1] Position= (8.25098,30.077,92.5078)
+
+TrackID =2188 : ParentID=2185 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : -18.1922 -24.3233 11.5303 keV
+Vertex : 0.798413 2.91871 8.96979 cm   Global time : 584.209 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (7.98413,29.1871,89.6979)
+Point[1] Position= (7.97056,29.1689,89.7065)
+
+TrackID =2187 : ParentID=2185 : TrackStatus=1
+Particle name : e-  PDG code : 11  Charge : -1
+Original momentum : 16.5301 116.956 -12.8764 keV
+Vertex : 0.564403 2.05992 6.32891 cm   Global time : 412.207 ps 
+  Current trajectory has 4 points.
+Point[0] Position= (5.64403,20.5992,63.2891)
+Point[1] Position= (5.87383,22.2251,63.1101)
+Point[2] Position= (5.51891,22.9767,63.4202)
+Point[3] Position= (5.60167,23.266,63.5612)
 
-TrackID =2228 : ParentID=2191 : TrackStatus=1
+TrackID =2186 : ParentID=2185 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -23.5278 46.7962 13.4114 keV
-Vertex : 0.0677921 0.0639689 4.86419 m    Global time : 18.8244 ns 
+Original momentum : -25.4928 -27.8069 14.4415 keV
+Vertex : 0.18174 0.663041 2.0381 cm   Global time : 132.733 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (1.8174,6.63041,20.381)
+Point[1] Position= (1.78674,6.59697,20.3984)
+
+TrackID =2184 : ParentID=1827 : TrackStatus=1
+Particle name : pi0  PDG code : 111  Charge : 0
+Original momentum : 643.152 -68.3803 404.551 MeV
+Vertex : 9.91059e-294 -2.20853e-294 8.27772e-294 fm   Global time : 7.2822e-305 ps 
+  Current trajectory has 2 points.
+Point[0] Position= (9.91059e-306,-2.20853e-306,8.27772e-306)
+Point[1] Position= (2.00533e-05,-2.13208e-06,1.26138e-05)
+
+TrackID =1826 : ParentID=1823 : TrackStatus=1
+Particle name : unknown : k_star-  PDG code : -323  Charge : -1
+Original momentum : 2.0674 -1.18845 -0.820801 GeV
+Vertex : 5.31791e-294 -2.40968e-294 3.44411e-294 fm   Global time : 4.72199e-305 ps 
   Current trajectory has 2 points.
-Point[0] Position= (67.7921,63.9689,4864.19)
-Point[1] Position= (67.7363,64.0799,4864.22)
+Point[0] Position= (5.31791e-306,-2.40968e-306,3.44411e-306)
+Point[1] Position= (1.07862e-305,-5.55315e-306,1.27308e-306)
 
-TrackID =2227 : ParentID=2191 : TrackStatus=1
+TrackID =2249 : ParentID=2238 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 10.0892 33.4106 4.51263 keV
-Vertex : 0.0698672 0.0650991 4.84973 m    Global time : 18.7494 ns 
+Original momentum : -13.6415 -20.9562 -20.3506 keV
+Vertex : 42.2717 -25.0447 -2.39976 cm   Global time : 1.80854 ns 
   Current trajectory has 2 points.
-Point[0] Position= (69.8672,65.0991,4849.73)
-Point[1] Position= (69.8761,65.1287,4849.73)
+Point[0] Position= (422.717,-250.447,-23.9976)
+Point[1] Position= (422.71,-250.459,-24.0087)
 
-TrackID =2226 : ParentID=2191 : TrackStatus=1
+TrackID =2248 : ParentID=2238 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 43.7265 -34.9473 0.565469 keV
-Vertex : 0.0678216 0.0629227 4.8274 m    Global time : 18.6357 ns 
+Original momentum : 9.15645 18.7201 -31.53 keV
+Vertex : 41.2422 -24.4309 -2.27541 cm   Global time : 1.76419 ns 
   Current trajectory has 2 points.
-Point[0] Position= (67.8216,62.9227,4827.4)
-Point[1] Position= (67.9344,62.8325,4827.4)
+Point[0] Position= (412.422,-244.309,-22.7541)
+Point[1] Position= (412.429,-244.295,-22.7775)
 
-TrackID =2225 : ParentID=2191 : TrackStatus=1
+TrackID =2247 : ParentID=2238 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -25.1811 31.5547 13.0779 keV
-Vertex : 0.0647388 0.063292 4.82017 m    Global time : 18.5963 ns 
+Original momentum : 1.61576 -6.20398 32.5251 keV
+Vertex : 41.1502 -24.3761 -2.2643 cm   Global time : 1.76023 ns 
   Current trajectory has 2 points.
-Point[0] Position= (64.7388,63.292,4820.17)
-Point[1] Position= (64.705,63.3343,4820.18)
+Point[0] Position= (411.502,-243.761,-22.643)
+Point[1] Position= (411.503,-243.764,-22.6242)
 
-TrackID =2224 : ParentID=2191 : TrackStatus=1
+TrackID =2246 : ParentID=2238 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : 25.9765 -9.69693 -20.5822 keV
-Vertex : 0.0498686 0.093752 4.78809 m    Global time : 18.3684 ns 
+Original momentum : 2.49976 8.77606 -32.5417 keV
+Vertex : 38.0417 -22.519 -1.87967 cm   Global time : 1.62624 ns 
   Current trajectory has 2 points.
-Point[0] Position= (49.8686,93.752,4788.09)
-Point[1] Position= (49.8907,93.7438,4788.07)
+Point[0] Position= (380.417,-225.19,-18.7967)
+Point[1] Position= (380.419,-225.185,-18.8162)
 
-TrackID =2223 : ParentID=2191 : TrackStatus=1
+TrackID =2245 : ParentID=2238 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -57.7728 -57.9336 -55.0314 keV
-Vertex : 0.0366456 0.134448 4.76258 m    Global time : 18.1291 ns 
+Original momentum : 10.2018 -15.2142 81.4991 keV
+Vertex : 36.0443 -21.3213 -1.6211 cm   Global time : 1.54004 ns 
   Current trajectory has 3 points.
-Point[0] Position= (36.6456,134.448,4762.58)
-Point[1] Position= (36.0556,133.856,4762.02)
-Point[2] Position= (36.0148,133.575,4761.83)
+Point[0] Position= (360.443,-213.213,-16.211)
+Point[1] Position= (360.484,-213.273,-15.8857)
+Point[2] Position= (360.471,-213.288,-15.8529)
 
-TrackID =2222 : ParentID=2191 : TrackStatus=1
+TrackID =2250 : ParentID=2245 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -55.3636 -37.3198 -16.3088 keV
-Vertex : 0.0282528 0.148299 4.76128 m    Global time : 18.0526 ns 
+Original momentum : -38.3863 11.4526 -10.2829 keV
+Vertex : 36.0484 -21.3273 -1.58857 cm   Global time : 1.54693 ns 
   Current trajectory has 2 points.
-Point[0] Position= (28.2528,148.299,4761.28)
-Point[1] Position= (28.0153,148.139,4761.21)
+Point[0] Position= (360.484,-213.273,-15.8857)
+Point[1] Position= (360.45,-213.263,-15.8947)
 
-TrackID =2221 : ParentID=2191 : TrackStatus=1
+TrackID =2243 : ParentID=2238 : TrackStatus=1
 Particle name : e-  PDG code : 11  Charge : -1
-Original momentum : -21.9016 -6.96606 35.3225 keV
-Vertex : 0.0162787 0.173876 4.75831 m    Global time : 17.9207 ns 
-  Current trajectory has 2 poin
+Original momentum : -13.9124 -32.8685 43.3346 keV
+Vertex : 30.9314 -18.2963 -1.30534 cm   Global time : 1.3211 ns 
+  Current trajectory has 3 points.
+Point[0] Position= (309.314,-182.963,-13.0534)
+Point[1] Position= (309.312
 ============================================================================================
 ================= lines above cut to keep file within limits ===============================
 ============================================================================================
 
-          ==PDGcode 22 (gamma) (0.123815,-0.208054,-0.548766) [GeV] >>> G4Track ID 794
+          ==PDGcode 22 (gamma) (0.123815,-0.208054,-0.548766) [GeV] >>> G4Track ID 1198
       ==PDGcode 213 (rho+) (0.0860323,-0.0637315,-0.910607) [GeV] >>> G4Track ID 52
-        ==PDGcode 211 (pi+) (0.0290667,0.118767,-0.146313) [GeV] >>> G4Track ID 797
-        ==PDGcode 111 (pi0) (0.0569656,-0.182499,-0.764294) [GeV] >>> G4Track ID 796
-          ==PDGcode 22 (gamma) (0.076668,-0.182979,-0.747666) [GeV] >>> G4Track ID 815
-          ==PDGcode 22 (gamma) (-0.0197024,0.000480201,-0.0166283) [GeV] >>> G4Track ID 814
+        ==PDGcode 211 (pi+) (0.0290667,0.118767,-0.146313) [GeV] >>> G4Track ID 1201
+        ==PDGcode 111 (pi0) (0.0569656,-0.182499,-0.764294) [GeV] >>> G4Track ID 1200
+          ==PDGcode 22 (gamma) (0.076668,-0.182979,-0.747666) [GeV] >>> G4Track ID 1276
+          ==PDGcode 22 (gamma) (-0.0197024,0.000480201,-0.0166283) [GeV] >>> G4Track ID 1275
       ==PDGcode -213 (rho-) (0.158863,-0.0381001,-5.50071) [GeV] >>> G4Track ID 51
-        ==PDGcode -211 (pi-) (0.266362,-0.26361,-4.01213) [GeV] >>> G4Track ID 817
-        ==PDGcode 111 (pi0) (-0.1075,0.22551,-1.48858) [GeV] >>> G4Track ID 816
-          ==PDGcode 22 (gamma) (-0.0849487,0.161988,-1.338) [GeV] >>> G4Track ID 901
-          ==PDGcode 22 (gamma) (-0.022551,0.0635218,-0.150583) [GeV] >>> G4Track ID 900
+        ==PDGcode -211 (pi-) (0.266362,-0.26361,-4.01213) [GeV] >>> G4Track ID 1278
+        ==PDGcode 111 (pi0) (-0.1075,0.22551,-1.48858) [GeV] >>> G4Track ID 1277
+          ==PDGcode 22 (gamma) (-0.0849487,0.161988,-1.338) [GeV] >>> G4Track ID 1383
+          ==PDGcode 22 (gamma) (-0.022551,0.0635218,-0.150583) [GeV] >>> G4Track ID 1382
       ==PDGcode 2212 (proton) (0.244022,0.145295,-4.46898) [GeV] >>> G4Track ID 50
       ==PDGcode 211 (pi+) (0.488644,0.445823,-10.7884) [GeV] >>> G4Track ID 49
       ==PDGcode -2224 (anti_delta++) (-0.33854,-0.103479,-3.6369) [GeV] >>> G4Track ID 48
-        ==PDGcode -2212 (anti_proton) (-0.37389,-0.270451,-2.87901) [GeV] >>> G4Track ID 1086
-        ==PDGcode -211 (pi-) (0.0353503,0.166972,-0.75789) [GeV] >>> G4Track ID 1085
+        ==PDGcode -2212 (anti_proton) (-0.37389,-0.270451,-2.87901) [GeV] >>> G4Track ID 1537
+        ==PDGcode -211 (pi-) (0.0353503,0.166972,-0.75789) [GeV] >>> G4Track ID 1536
       ==PDGcode 113 (rho0) (0.790943,-0.392501,-5.40194) [GeV] >>> G4Track ID 47
-        ==PDGcode 211 (pi+) (0.486445,-0.0335945,-3.67508) [GeV] >>> G4Track ID 1333
-        ==PDGcode -211 (pi-) (0.304499,-0.358906,-1.72686) [GeV] >>> G4Track ID 1332
+        ==PDGcode 211 (pi+) (0.486445,-0.0335945,-3.67508) [GeV] >>> G4Track ID 1709
+        ==PDGcode -211 (pi-) (0.304499,-0.358906,-1.72686) [GeV] >>> G4Track ID 1708
       ==PDGcode 221 (eta) (0.149807,0.047799,0.0554251) [GeV] >>> G4Track ID 46
-        ==PDGcode 22 (gamma) (0.161285,0.285558,0.063952) [GeV] >>> G4Track ID 1440
-        ==PDGcode 22 (gamma) (-0.0114786,-0.237759,-0.00852697) [GeV] >>> G4Track ID 1439
+        ==PDGcode 22 (gamma) (0.161285,0.285558,0.063952) [GeV] >>> G4Track ID 1822
+        ==PDGcode 22 (gamma) (-0.0114786,-0.237759,-0.00852697) [GeV] >>> G4Track ID 1821
   ==PDGcode 21 (gluon) (1.45083,0.128478,-36.8459) [GeV] >>> G4Track ID 44
 Graphics systems deleted.
 Visualization Manager deleting...
diff --git a/examples/extended/runAndEvent/RE02/run.out b/examples/extended/runAndEvent/RE02/run.out
index cb2a4830ff2..7afb4314a07 100644
--- a/examples/extended/runAndEvent/RE02/run.out
+++ b/examples/extended/runAndEvent/RE02/run.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/extended/runAndEvent/RE04/exampleRE04.out b/examples/extended/runAndEvent/RE04/exampleRE04.out
index 43b636daacd..d180b13a4f2 100644
--- a/examples/extended/runAndEvent/RE04/exampleRE04.out
+++ b/examples/extended/runAndEvent/RE04/exampleRE04.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
diff --git a/examples/extended/runAndEvent/RE05/exampleRE05.out b/examples/extended/runAndEvent/RE05/exampleRE05.out
index 9dc446dfd5e..f43869b4c58 100644
--- a/examples/extended/runAndEvent/RE05/exampleRE05.out
+++ b/examples/extended/runAndEvent/RE05/exampleRE05.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -814,9 +814,9 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
 ### Run 0 start.
 G4HEPEvtInterface - reading 484 HEPEvt particles from pythia_event.data.
 >>> Event 0
-     99 hits are stored in RE05TrackerHitsCollection.
-     53 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 6.9843078429731 (GeV)
+     44 hits are stored in RE05TrackerHitsCollection.
+     39 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 5.2338889793952 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 755 HEPEvt particles from pythia_event.data.
 >>> Event 1
@@ -834,19 +834,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.53242245708954 (GeV)
+     Total energy deposition in calorimeter : 0.53270022563316 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 945 HEPEvt particles from pythia_event.data.
 >>> Event 4
-     105 hits are stored in RE05TrackerHitsCollection.
-     66 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 11.017454419319 (GeV)
+     95 hits are stored in RE05TrackerHitsCollection.
+     65 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 9.9464704712021 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 837 HEPEvt particles from pythia_event.data.
 >>> Event 5
-     58 hits are stored in RE05TrackerHitsCollection.
-     103 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 9.1812311229959 (GeV)
+     43 hits are stored in RE05TrackerHitsCollection.
+     7 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 2.9132606476356 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 603 HEPEvt particles from pythia_event.data.
 >>> Event 6
@@ -856,33 +856,33 @@ 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
-     30 hits are stored in RE05TrackerHitsCollection.
-     25 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 6.5417422078713 (GeV)
+     27 hits are stored in RE05TrackerHitsCollection.
+     33 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 6.8355734631136 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 682 HEPEvt particles from pythia_event.data.
 >>> Event 8
-     50 hits are stored in RE05TrackerHitsCollection.
-     52 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 11.402269180074 (GeV)
+     55 hits are stored in RE05TrackerHitsCollection.
+     59 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 9.4908890135243 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 330 HEPEvt particles from pythia_event.data.
 >>> Event 9
-     59 hits are stored in RE05TrackerHitsCollection.
-     22 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 5.0963485963493 (GeV)
+     26 hits are stored in RE05TrackerHitsCollection.
+     20 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 5.0549006749844 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 1060 HEPEvt particles from pythia_event.data.
 >>> Event 10
-     116 hits are stored in RE05TrackerHitsCollection.
-     63 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 9.4469887491162 (GeV)
+     112 hits are stored in RE05TrackerHitsCollection.
+     65 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 10.191559885414 (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.8627147148095 (GeV)
+     Total energy deposition in calorimeter : 2.8553624133382 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 517 HEPEvt particles from pythia_event.data.
 >>> Event 12
@@ -892,15 +892,15 @@ G4HEPEvtInterface - reading 517 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 815 HEPEvt particles from pythia_event.data.
 >>> Event 13
-     101 hits are stored in RE05TrackerHitsCollection.
-     58 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 7.7649823313725 (GeV)
+     72 hits are stored in RE05TrackerHitsCollection.
+     50 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 7.4151821114169 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 702 HEPEvt particles from pythia_event.data.
 >>> Event 14
-     56 hits are stored in RE05TrackerHitsCollection.
-     45 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 6.3764486748684 (GeV)
+     35 hits are stored in RE05TrackerHitsCollection.
+     35 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 5.2522866402454 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 568 HEPEvt particles from pythia_event.data.
 >>> Event 15
@@ -911,14 +911,14 @@ G4HEPEvtInterface - reading 568 HEPEvt particles from pythia_event.data.
 G4HEPEvtInterface - reading 405 HEPEvt particles from pythia_event.data.
 >>> Event 16
      20 hits are stored in RE05TrackerHitsCollection.
-     36 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 5.1985534241215 (GeV)
+     26 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 3.5741828622761 (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.95759482320718 (GeV)
+     Total energy deposition in calorimeter : 0.94958315596216 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 342 HEPEvt particles from pythia_event.data.
 >>> Event 18
@@ -928,15 +928,15 @@ G4HEPEvtInterface - reading 342 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 621 HEPEvt particles from pythia_event.data.
 >>> Event 19
-     36 hits are stored in RE05TrackerHitsCollection.
-     40 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 10.114506464266 (GeV)
+     74 hits are stored in RE05TrackerHitsCollection.
+     38 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 11.045537355795 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 906 HEPEvt particles from pythia_event.data.
 >>> Event 20
-     93 hits are stored in RE05TrackerHitsCollection.
-     50 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 6.5781696763084 (GeV)
+     147 hits are stored in RE05TrackerHitsCollection.
+     55 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 8.7494469001379 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 427 HEPEvt particles from pythia_event.data.
 >>> Event 21
@@ -946,9 +946,9 @@ G4HEPEvtInterface - reading 427 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 387 HEPEvt particles from pythia_event.data.
 >>> Event 22
-     32 hits are stored in RE05TrackerHitsCollection.
-     33 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 5.002356667581 (GeV)
+     67 hits are stored in RE05TrackerHitsCollection.
+     22 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 3.6540785030467 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 359 HEPEvt particles from pythia_event.data.
 >>> Event 23
@@ -966,7 +966,7 @@ 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.2124850413099 (GeV)
+     Total energy deposition in calorimeter : 1.2075461797918 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 661 HEPEvt particles from pythia_event.data.
 >>> Event 26
@@ -977,14 +977,14 @@ G4HEPEvtInterface - reading 661 HEPEvt particles from pythia_event.data.
 G4HEPEvtInterface - reading 673 HEPEvt particles from pythia_event.data.
 >>> Event 27
      0 hits are stored in RE05TrackerHitsCollection.
-     47 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 9.2352130385308 (GeV)
+     57 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 16.75314503809 (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.4146876183068 (GeV)
+     Total energy deposition in calorimeter : 1.4203097946595 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 913 HEPEvt particles from pythia_event.data.
 >>> Event 29
@@ -994,15 +994,15 @@ G4HEPEvtInterface - reading 913 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 425 HEPEvt particles from pythia_event.data.
 >>> Event 30
-     49 hits are stored in RE05TrackerHitsCollection.
+     44 hits are stored in RE05TrackerHitsCollection.
      31 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 3.610283126783 (GeV)
+     Total energy deposition in calorimeter : 3.9831249774205 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 466 HEPEvt particles from pythia_event.data.
 >>> Event 31
-     82 hits are stored in RE05TrackerHitsCollection.
-     36 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 5.1647428033073 (GeV)
+     47 hits are stored in RE05TrackerHitsCollection.
+     30 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 3.640773498919 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 954 HEPEvt particles from pythia_event.data.
 >>> Event 32
@@ -1012,15 +1012,15 @@ G4HEPEvtInterface - reading 954 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 575 HEPEvt particles from pythia_event.data.
 >>> Event 33
-     76 hits are stored in RE05TrackerHitsCollection.
-     46 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 7.9325642600053 (GeV)
+     81 hits are stored in RE05TrackerHitsCollection.
+     15 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 3.9570540590682 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 1002 HEPEvt particles from pythia_event.data.
 >>> Event 34
-     105 hits are stored in RE05TrackerHitsCollection.
-     59 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 9.011229734622 (GeV)
+     128 hits are stored in RE05TrackerHitsCollection.
+     67 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 10.150230156261 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 440 HEPEvt particles from pythia_event.data.
 >>> Event 35
@@ -1036,51 +1036,51 @@ G4HEPEvtInterface - reading 389 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 318 HEPEvt particles from pythia_event.data.
 >>> Event 37
-     5 hits are stored in RE05TrackerHitsCollection.
-     13 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 2.7286325317823 (GeV)
-     0 hits are stored in RE05MuonHitsCollection.
+     17 hits are stored in RE05TrackerHitsCollection.
+     34 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 5.0220568449743 (GeV)
+     1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 367 HEPEvt particles from pythia_event.data.
 >>> Event 38
-     77 hits are stored in RE05TrackerHitsCollection.
-     40 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 6.9890299457119 (GeV)
+     74 hits are stored in RE05TrackerHitsCollection.
+     50 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 7.3216864446707 (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.7323607147634 (GeV)
+     Total energy deposition in calorimeter : 0.72336389864826 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 253 HEPEvt particles from pythia_event.data.
 >>> Event 40
-     18 hits are stored in RE05TrackerHitsCollection.
-     36 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 6.5381734102451 (GeV)
+     26 hits are stored in RE05TrackerHitsCollection.
+     34 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 5.4529005181943 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 474 HEPEvt particles from pythia_event.data.
 >>> Event 41
-     44 hits are stored in RE05TrackerHitsCollection.
-     29 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 6.9751211690474 (GeV)
+     19 hits are stored in RE05TrackerHitsCollection.
+     22 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 6.9339151618953 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 695 HEPEvt particles from pythia_event.data.
 >>> Event 42
-     102 hits are stored in RE05TrackerHitsCollection.
-     53 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 5.9773856745496 (GeV)
+     96 hits are stored in RE05TrackerHitsCollection.
+     48 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 6.1658365226959 (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.2516384062525 (GeV)
+     Total energy deposition in calorimeter : 2.2379742091563 (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.7691366619276 (GeV)
+     Total energy deposition in calorimeter : 1.7786158577687 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 574 HEPEvt particles from pythia_event.data.
 >>> Event 45
@@ -1090,21 +1090,21 @@ G4HEPEvtInterface - reading 574 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 420 HEPEvt particles from pythia_event.data.
 >>> Event 46
-     36 hits are stored in RE05TrackerHitsCollection.
-     47 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 8.337127517398 (GeV)
+     35 hits are stored in RE05TrackerHitsCollection.
+     37 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 8.5239238476444 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 1092 HEPEvt particles from pythia_event.data.
 >>> Event 47
-     63 hits are stored in RE05TrackerHitsCollection.
-     51 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 8.7730604936107 (GeV)
+     59 hits are stored in RE05TrackerHitsCollection.
+     46 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 6.508035937743 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 708 HEPEvt particles from pythia_event.data.
 >>> Event 48
-     58 hits are stored in RE05TrackerHitsCollection.
+     51 hits are stored in RE05TrackerHitsCollection.
      19 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 3.993275153748 (GeV)
+     Total energy deposition in calorimeter : 4.0295248167668 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 942 HEPEvt particles from pythia_event.data.
 >>> Event 49
@@ -1114,15 +1114,15 @@ G4HEPEvtInterface - reading 942 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 422 HEPEvt particles from pythia_event.data.
 >>> Event 50
-     17 hits are stored in RE05TrackerHitsCollection.
-     33 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 4.6737738044677 (GeV)
+     20 hits are stored in RE05TrackerHitsCollection.
+     39 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 6.028449998994 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 621 HEPEvt particles from pythia_event.data.
 >>> Event 51
-     59 hits are stored in RE05TrackerHitsCollection.
-     40 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 8.2778071408871 (GeV)
+     115 hits are stored in RE05TrackerHitsCollection.
+     38 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 7.7344837522162 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 380 HEPEvt particles from pythia_event.data.
 >>> Event 52
@@ -1138,39 +1138,39 @@ G4HEPEvtInterface - reading 780 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 218 HEPEvt particles from pythia_event.data.
 >>> Event 54
-     18 hits are stored in RE05TrackerHitsCollection.
-     32 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 4.7365292101305 (GeV)
+     10 hits are stored in RE05TrackerHitsCollection.
+     27 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 4.586705187869 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 349 HEPEvt particles from pythia_event.data.
 >>> Event 55
-     47 hits are stored in RE05TrackerHitsCollection.
-     28 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 6.0533197508846 (GeV)
+     46 hits are stored in RE05TrackerHitsCollection.
+     34 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 6.8027311146838 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 566 HEPEvt particles from pythia_event.data.
 >>> Event 56
-     44 hits are stored in RE05TrackerHitsCollection.
-     32 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 3.6304263735922 (GeV)
+     68 hits are stored in RE05TrackerHitsCollection.
+     35 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 3.6390925387333 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 467 HEPEvt particles from pythia_event.data.
 >>> Event 57
-     33 hits are stored in RE05TrackerHitsCollection.
-     33 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 5.7544938470293 (GeV)
+     31 hits are stored in RE05TrackerHitsCollection.
+     44 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 7.5763198870975 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 745 HEPEvt particles from pythia_event.data.
 >>> Event 58
-     51 hits are stored in RE05TrackerHitsCollection.
-     34 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 6.2537295971316 (GeV)
+     61 hits are stored in RE05TrackerHitsCollection.
+     40 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 6.8313105455821 (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.1006263271165 (GeV)
+     Total energy deposition in calorimeter : 2.0942108591861 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 822 HEPEvt particles from pythia_event.data.
 >>> Event 60
@@ -1182,13 +1182,13 @@ 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.11621264950308 (GeV)
+     Total energy deposition in calorimeter : 0.11322416690665 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 389 HEPEvt particles from pythia_event.data.
 >>> Event 62
-     22 hits are stored in RE05TrackerHitsCollection.
+     21 hits are stored in RE05TrackerHitsCollection.
      10 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 3.1701814249387 (GeV)
+     Total energy deposition in calorimeter : 3.1851204507481 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 624 HEPEvt particles from pythia_event.data.
 >>> Event 63
@@ -1198,21 +1198,21 @@ G4HEPEvtInterface - reading 624 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 340 HEPEvt particles from pythia_event.data.
 >>> Event 64
-     31 hits are stored in RE05TrackerHitsCollection.
-     29 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 3.1602261715096 (GeV)
-     1 hits are stored in RE05MuonHitsCollection.
+     7 hits are stored in RE05TrackerHitsCollection.
+     9 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 2.136408174719 (GeV)
+     0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 520 HEPEvt particles from pythia_event.data.
 >>> Event 65
-     72 hits are stored in RE05TrackerHitsCollection.
-     42 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 8.3086588440901 (GeV)
+     52 hits are stored in RE05TrackerHitsCollection.
+     48 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 7.6682260367451 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 235 HEPEvt particles from pythia_event.data.
 >>> Event 66
-     10 hits are stored in RE05TrackerHitsCollection.
-     16 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 2.2111127944868 (GeV)
+     7 hits are stored in RE05TrackerHitsCollection.
+     15 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 2.2838841873739 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 759 HEPEvt particles from pythia_event.data.
 >>> Event 67
@@ -1224,13 +1224,13 @@ G4HEPEvtInterface - reading 865 HEPEvt particles from pythia_event.data.
 >>> Event 68
      0 hits are stored in RE05TrackerHitsCollection.
      7 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 0.99251951407623 (GeV)
+     Total energy deposition in calorimeter : 0.96622034180227 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 264 HEPEvt particles from pythia_event.data.
 >>> Event 69
-     67 hits are stored in RE05TrackerHitsCollection.
-     33 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 4.6636569370567 (GeV)
+     64 hits are stored in RE05TrackerHitsCollection.
+     30 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 4.7731071995243 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 785 HEPEvt particles from pythia_event.data.
 >>> Event 70
@@ -1242,49 +1242,49 @@ 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.60743775146659 (GeV)
+     Total energy deposition in calorimeter : 0.60550676142758 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 219 HEPEvt particles from pythia_event.data.
 >>> Event 72
-     116 hits are stored in RE05TrackerHitsCollection.
+     42 hits are stored in RE05TrackerHitsCollection.
      40 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 7.2913202345796 (GeV)
+     Total energy deposition in calorimeter : 5.2092791444068 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 480 HEPEvt particles from pythia_event.data.
 >>> Event 73
-     34 hits are stored in RE05TrackerHitsCollection.
-     53 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 9.5649202724893 (GeV)
+     30 hits are stored in RE05TrackerHitsCollection.
+     46 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 9.2165818954371 (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.58471127844994 (GeV)
+     Total energy deposition in calorimeter : 0.57894185630716 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 436 HEPEvt particles from pythia_event.data.
 >>> Event 75
-     4 hits are stored in RE05TrackerHitsCollection.
-     53 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 7.3264311753625 (GeV)
+     11 hits are stored in RE05TrackerHitsCollection.
+     61 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 19.140582238116 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 355 HEPEvt particles from pythia_event.data.
 >>> Event 76
-     11 hits are stored in RE05TrackerHitsCollection.
-     33 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 4.4772435956886 (GeV)
+     13 hits are stored in RE05TrackerHitsCollection.
+     29 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 4.2248960801166 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 865 HEPEvt particles from pythia_event.data.
 >>> Event 77
-     24 hits are stored in RE05TrackerHitsCollection.
-     95 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 11.065894280168 (GeV)
+     15 hits are stored in RE05TrackerHitsCollection.
+     86 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 9.3348882543926 (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.67455417734135 (GeV)
+     Total energy deposition in calorimeter : 0.6734235013557 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 766 HEPEvt particles from pythia_event.data.
 >>> Event 79
@@ -1294,15 +1294,15 @@ G4HEPEvtInterface - reading 766 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 564 HEPEvt particles from pythia_event.data.
 >>> Event 80
-     33 hits are stored in RE05TrackerHitsCollection.
-     45 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 5.7719578914763 (GeV)
+     40 hits are stored in RE05TrackerHitsCollection.
+     48 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 5.6116294822428 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 220 HEPEvt particles from pythia_event.data.
 >>> Event 81
-     43 hits are stored in RE05TrackerHitsCollection.
+     28 hits are stored in RE05TrackerHitsCollection.
      37 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 5.0594228271884 (GeV)
+     Total energy deposition in calorimeter : 5.2871264031359 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 823 HEPEvt particles from pythia_event.data.
 >>> Event 82
@@ -1313,44 +1313,44 @@ G4HEPEvtInterface - reading 823 HEPEvt particles from pythia_event.data.
 G4HEPEvtInterface - reading 914 HEPEvt particles from pythia_event.data.
 >>> Event 83
      82 hits are stored in RE05TrackerHitsCollection.
-     38 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 6.6594957302692 (GeV)
+     46 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 7.5329100887197 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 232 HEPEvt particles from pythia_event.data.
 >>> Event 84
-     37 hits are stored in RE05TrackerHitsCollection.
-     39 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 10.689321470403 (GeV)
+     33 hits are stored in RE05TrackerHitsCollection.
+     33 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 10.373994795568 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 1034 HEPEvt particles from pythia_event.data.
 >>> Event 85
-     130 hits are stored in RE05TrackerHitsCollection.
-     107 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 13.755102791639 (GeV)
+     120 hits are stored in RE05TrackerHitsCollection.
+     91 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 12.523893196266 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 673 HEPEvt particles from pythia_event.data.
 >>> Event 86
-     49 hits are stored in RE05TrackerHitsCollection.
-     32 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 6.5562251571984 (GeV)
+     38 hits are stored in RE05TrackerHitsCollection.
+     30 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 6.7369424261648 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 246 HEPEvt particles from pythia_event.data.
 >>> Event 87
-     37 hits are stored in RE05TrackerHitsCollection.
-     43 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 5.7799248656028 (GeV)
+     29 hits are stored in RE05TrackerHitsCollection.
+     33 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 3.5039879338495 (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.3259433972875 (GeV)
+     Total energy deposition in calorimeter : 1.3461110160457 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 991 HEPEvt particles from pythia_event.data.
 >>> Event 89
-     132 hits are stored in RE05TrackerHitsCollection.
-     63 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 10.471700244153 (GeV)
+     174 hits are stored in RE05TrackerHitsCollection.
+     58 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 10.97449978623 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 430 HEPEvt particles from pythia_event.data.
 >>> Event 90
@@ -1360,21 +1360,21 @@ G4HEPEvtInterface - reading 430 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 232 HEPEvt particles from pythia_event.data.
 >>> Event 91
-     75 hits are stored in RE05TrackerHitsCollection.
-     31 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 6.9148518983901 (GeV)
+     68 hits are stored in RE05TrackerHitsCollection.
+     28 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 6.3081444156842 (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.98823087970601 (GeV)
+     Total energy deposition in calorimeter : 0.98439928324632 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 680 HEPEvt particles from pythia_event.data.
 >>> Event 93
-     50 hits are stored in RE05TrackerHitsCollection.
-     57 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 6.9263929655785 (GeV)
+     78 hits are stored in RE05TrackerHitsCollection.
+     53 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 7.0556694817404 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 259 HEPEvt particles from pythia_event.data.
 >>> Event 94
@@ -1384,15 +1384,15 @@ G4HEPEvtInterface - reading 259 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 358 HEPEvt particles from pythia_event.data.
 >>> Event 95
-     12 hits are stored in RE05TrackerHitsCollection.
-     31 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 4.3474189452054 (GeV)
+     16 hits are stored in RE05TrackerHitsCollection.
+     32 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 4.3893704372192 (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.52585518255524 (GeV)
+     Total energy deposition in calorimeter : 0.53118591879494 (GeV)
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 611 HEPEvt particles from pythia_event.data.
 >>> Event 97
@@ -1402,20 +1402,20 @@ G4HEPEvtInterface - reading 611 HEPEvt particles from pythia_event.data.
      0 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 298 HEPEvt particles from pythia_event.data.
 >>> Event 98
-     52 hits are stored in RE05TrackerHitsCollection.
-     39 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 5.7162492078624 (GeV)
+     117 hits are stored in RE05TrackerHitsCollection.
+     24 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 5.2235715016615 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
 G4HEPEvtInterface - reading 755 HEPEvt particles from pythia_event.data.
 >>> Event 99
-     67 hits are stored in RE05TrackerHitsCollection.
-     49 hits are stored in RE05CalorimeterHitsCollection.
-     Total energy deposition in calorimeter : 9.0463991168913 (GeV)
+     98 hits are stored in RE05TrackerHitsCollection.
+     59 hits are stored in RE05CalorimeterHitsCollection.
+     Total energy deposition in calorimeter : 9.0544937446609 (GeV)
      1 hits are stored in RE05MuonHitsCollection.
  Run terminated.
 Run Summary
   Number of events processed : 100
-  User=20.52s Real=20.57s Sys=0.03s
+  User=17.69s Real=18s Sys=0.04s
 #
 G4 kernel has come to Quit state.
 UserDetectorConstruction deleted.
@@ -1427,7 +1427,7 @@ RunManager is deleting RunManagerKernel.
 G4SDManager deleted.
 EventManager deleted.
 Units table cleared.
-Total navigation history collections cleaned: 478
+Total navigation history collections cleaned: 464
 ================== Deleting memory pools ===================
 Number of memory pools allocated: 20 of which, static: 0
 Dynamic pools deleted: 20 / Total memory freed: 2.9 Mb
diff --git a/examples/extended/runAndEvent/RE06/exampleRE06.out b/examples/extended/runAndEvent/RE06/exampleRE06.out
index b23f11358ff..4356ef88b80 100644
--- a/examples/extended/runAndEvent/RE06/exampleRE06.out
+++ b/examples/extended/runAndEvent/RE06/exampleRE06.out
@@ -4,7 +4,7 @@
         ############################################
 
 *************************************************************
- Geant4 version Name: geant4-10-01-patch-01    (27-March-2015)
+ Geant4 version Name: geant4-10-01-patch-02    (19-June-2015)
                       Copyright : Geant4 Collaboration
                       Reference : NIM A 506 (2003), 250-303
                             WWW : http://cern.ch/geant4
@@ -929,7 +929,7 @@ Index : 6     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=2.05s Real=2.21s Sys=0.16s
+  User=4.7s Real=5.37s Sys=0.54s
 ############################################################
  Run Summary - Number of events : 10
 ############################################################
@@ -937,124 +937,124 @@ Region : Calor-A
  Production thresholds :
     gamma 1 mm     e- 1 mm     e+ 1 mm 
  Energy deposition in an event :
-    Absorber 2.3495 GeV      Gap 311.488 MeV
+    Absorber 4.58869 GeV      Gap 540.535 MeV
  Number of secondaries in an event :
-    gamma in Absorber 510    in Gap 34
-    e-    in Absorber 869.1    in Gap 111
-    e+    in Absorber 49.8    in Gap 1.3
+    gamma in Absorber 1747.5    in Gap 112.4
+    e-    in Absorber 2892.1    in Gap 304.6
+    e+    in Absorber 185.5    in Gap 6.7
  Minimum kinetic energy of generated secondaries :
-    gamma in Absorber 101.998 keV    in Gap 6.79954 keV
-    e-    in Absorber 131.717 eV     in Gap 118.555 eV 
-    e+    in Absorber 17.3719 keV    in Gap 248.523 keV
+    gamma in Absorber 58.1444 keV    in Gap 6.21335 keV
+    e-    in Absorber 118.437 eV     in Gap 118.795 eV 
+    e+    in Absorber 15.7856 keV    in Gap 490.019 keV
  Total track length of e+/e- in an event :
-    Absorber 71.0285 cm       Gap 55.7773 cm 
+    Absorber 2.2903 m        Gap 1.66648 m  
  Total number of steps of e+/e- in an event :
-    Absorber 2292.9      Gap 437.3
+    Absorber 7535.2      Gap 1186.3
 ------------------------------------------------------------
 Scores in parallel geometry
 layer   eDep/evt  nGamma/evt nElec/evt  nPosi/evt  stpLen/evt nStep/evt
-       0    2517.47        491      743.1       42.4    1110.24     2160.2
-       1    83.3795       31.7      125.8        4.4    103.251      317.4
-       2    32.1363       10.8       58.3        2.1    30.4995      144.7
-       3    15.2686        6.7       24.7        1.3    12.3641       53.3
-       4    5.57962        1.4       12.7        0.2    4.95863       23.5
-       5    3.19184        0.7        6.5        0.2    2.56443       10.6
-       6    2.86173        1.5        5.2        0.5    3.35133       14.8
-       7   0.173336          0        0.7          0   0.100932        0.8
-       8     0.4003        0.1        1.1          0    0.40652        1.9
-       9  0.0793845          0        0.4          0  0.0212835        0.6
-      10   0.180493        0.1        0.7          0  0.0933966        0.8
-      11   0.199869          0        0.5          0  0.0914076        0.9
-      12 0.00491751          0          0          0          0          0
-      13 0.00446299          0        0.1          0 0.000544864        0.1
-      14  0.0144205          0        0.1          0 0.000482628        0.2
-      15 0.00108736          0          0          0          0          0
-      16 0.000268547          0          0          0          0          0
-      17 0.000756189          0          0          0          0          0
-      18  0.0282783          0        0.1          0  0.0053233        0.3
-      19 0.000587739          0          0          0          0          0
+       0    4630.33     1677.5     2373.8      161.5    3416.17     6739.3
+       1    294.347      110.3      447.8       18.3    332.663       1117
+       2    103.736       37.3      184.9        6.7    110.195        435
+       3    46.0502       16.5       82.8        3.3    43.9372      193.7
+       4    24.2527        5.6       44.2        0.7    26.5219       98.2
+       5    11.2656        4.5       24.9        0.4    9.23197       53.4
+       6    7.04814        2.1       13.8        0.4     6.0336       30.6
+       7    3.13429        1.3        6.5        0.2    3.64549       12.5
+       8    2.00238        0.4        4.7        0.1    1.83108        9.1
+       9    1.78491          1        3.6        0.3    1.40577        7.7
+      10    1.21307        1.2        2.6          0   0.668338        4.4
+      11   0.558363        0.3        1.3          0   0.916646        4.7
+      12   0.482323        0.4        1.1        0.1   0.214349        1.7
+      13   0.936536        0.4        1.6        0.1   0.532441        4.1
+      14   0.207237        0.2        0.6          0  0.0582488        0.9
+      15    1.07655        0.7        1.4        0.1   0.719873          4
+      16   0.513095          0        0.4          0    1.44932        3.1
+      17  0.0957188          0        0.3          0   0.271294        1.4
+      18  0.0229288        0.2          0          0          0          0
+      19  0.0193833          0          0          0          0          0
 ############################################################
 Region : Calor-B
  Production thresholds :
     gamma 1 mm     e- 1 mm     e+ 1 mm 
  Energy deposition in an event :
-    Absorber 2.62506 GeV      Gap 335.557 MeV
+    Absorber 3.83771 GeV      Gap 439.802 MeV
  Number of secondaries in an event :
-    gamma in Absorber 666.3    in Gap 42.6
-    e-    in Absorber 1122.7    in Gap 128
-    e+    in Absorber 69.9    in Gap 2.2
+    gamma in Absorber 1355.7    in Gap 76.1
+    e-    in Absorber 2232.5    in Gap 218.4
+    e+    in Absorber 147.3    in Gap 4.3
  Minimum kinetic energy of generated secondaries :
-    gamma in Absorber 33.7102 keV    in Gap 6.38741 keV
-    e-    in Absorber 171.727 eV     in Gap 200.081 eV 
-    e+    in Absorber 39.3422 keV    in Gap 560.677 keV
+    gamma in Absorber 93.6084 keV    in Gap 6.22545 keV
+    e-    in Absorber 6.18765 eV     in Gap 123.925 eV 
+    e+    in Absorber 1.01127 keV    in Gap 241.209 keV
  Total track length of e+/e- in an event :
-    Absorber 90.248 cm       Gap 67.4037 cm 
+    Absorber 1.76469 m        Gap 1.18033 m  
  Total number of steps of e+/e- in an event :
-    Absorber 2990      Gap 477.3
+    Absorber 6017.8      Gap 880.1
 ------------------------------------------------------------
 Scores in parallel geometry
 layer   eDep/evt  nGamma/evt nElec/evt  nPosi/evt  stpLen/evt nStep/evt
-       0    2774.36      638.3      949.9       59.4    1378.87     2744.3
-       1    110.261       46.4      160.5        8.7    124.391      405.6
-       2    39.5295       12.9       70.3        1.9    35.5778      153.4
-       3    19.6906        5.9       34.4        1.1    18.4643       79.5
-       4    8.19445        3.2       15.3        0.7    9.32078       38.9
-       5    4.20281        1.4        8.4        0.2    4.02699       16.6
-       6     1.4228        0.4        4.1        0.1    1.75972        8.9
-       7    1.27664        0.3        3.3          0    1.47641        6.1
-       8   0.697214        0.1        2.1          0    0.72029          6
-       9     0.2648          0        1.1          0   0.364011        4.2
-      10   0.266004          0        0.4          0   0.162381        0.6
-      11   0.120676          0        0.6          0   0.156061        1.3
-      12  0.0057691          0          0          0          0          0
-      13 0.00132613          0          0          0          0          0
-      14  0.0065403          0          0          0          0          0
-      15 0.00433616          0          0          0          0          0
-      16          0          0          0          0          0          0
-      17          0          0          0          0          0          0
-      18  0.0243745          0        0.1          0 0.00595363        0.7
-      19  0.0621119          0        0.2          0   0.198888        0.3
+       0    3901.03     1299.6     1840.4      126.8    2569.59     5381.4
+       1    226.472       81.9      342.5       14.6    232.024      878.1
+       2    78.5243       29.1      130.5        5.5    77.4243      310.9
+       3    33.4661       10.5       62.5        2.4    32.8426      148.3
+       4    16.9685        4.9       31.8          1    16.1598       74.1
+       5    9.43238        3.2       17.9        0.8    7.13327       40.6
+       6    4.34066        1.4       11.5        0.3    3.73526       27.8
+       7    2.40821        0.4        5.3          0    2.50341       12.6
+       8    2.47642        0.2        3.6          0    2.11933       12.2
+       9   0.872462        0.3        1.3        0.1   0.624621        5.2
+      10   0.391425          0        1.3          0   0.162063        3.1
+      11  0.0770016          0        0.7          0  0.0903905        0.8
+      12   0.260563          0        0.3          0   0.150388        0.7
+      13   0.434106        0.3        0.5        0.1     0.3418          1
+      14   0.245225          0        0.7          0   0.102886          1
+      15  0.0357939          0        0.1          0   0.021405        0.1
+      16  0.0165926          0          0          0          0          0
+      17  0.0237708          0          0          0          0          0
+      18 0.00325828          0          0          0          0          0
+      19 0.00750268          0          0          0          0          0
 ############################################################
 Region : Calor-C
  Production thresholds :
     gamma 10 cm     e- 10 cm     e+ 10 cm 
  Energy deposition in an event :
-    Absorber 2.69096 GeV      Gap 292.304 MeV
+    Absorber 3.31696 GeV      Gap 328.985 MeV
  Number of secondaries in an event :
-    gamma in Absorber 133.3    in Gap 13.9
-    e-    in Absorber 230.3    in Gap 20.7
-    e+    in Absorber 38.2    in Gap 1.8
+    gamma in Absorber 258.5    in Gap 22.8
+    e-    in Absorber 460.2    in Gap 36.7
+    e+    in Absorber 71.8    in Gap 3.3
  Minimum kinetic energy of generated secondaries :
-    gamma in Absorber 243.341 keV    in Gap 56.6513 keV
-    e-    in Absorber 1.28135 keV    in Gap 1.0756 keV
-    e+    in Absorber 7.57997 keV    in Gap 299.251 keV
+    gamma in Absorber 98.4809 keV    in Gap 56.9808 keV
+    e-    in Absorber 128.172 eV     in Gap 111.475 eV 
+    e+    in Absorber 22.6134 keV    in Gap 304.722 keV
  Total track length of e+/e- in an event :
-    Absorber 38.5047 cm       Gap 26.47 cm 
+    Absorber 73.6518 cm       Gap 40.4682 cm 
  Total number of steps of e+/e- in an event :
-    Absorber 764.6      Gap 124.8
+    Absorber 1462.1      Gap 201.3
 ------------------------------------------------------------
 Scores in parallel geometry
 layer   eDep/evt  nGamma/evt nElec/evt  nPosi/evt  stpLen/evt nStep/evt
-       0    2890.75      128.4      163.9       32.3    548.806      619.9
-       1    66.5165       13.2       50.2        5.2    71.5215      178.3
-       2    11.7105        2.9       16.1        1.3    17.5142       39.4
-       3    5.70739        0.7        8.6        0.3     4.0249       22.1
-       4    4.97888        1.2        6.2        0.5    4.85664       15.9
-       5    1.81483        0.4        2.2        0.2    1.77149        5.6
-       6   0.727175        0.2        1.6        0.1   0.675192        2.9
-       7   0.690082        0.2        0.6        0.1   0.374499        1.2
-       8  0.0475367          0        0.4          0  0.0158442        0.5
-       9  0.0391638          0        0.3          0 0.00863142        0.5
-      10  0.0967458          0        0.4          0   0.101334        0.5
-      11  0.0965445          0        0.2          0  0.0440084        0.3
-      12          0          0          0          0          0          0
-      13  0.0041673          0        0.1          0 0.00330537        0.1
-      14          0          0          0          0          0          0
-      15  0.0790287          0        0.2          0  0.0299979        2.2
-      16          0          0          0          0          0          0
-      17          0          0          0          0          0          0
-      18          0          0          0          0          0          0
-      19          0          0          0          0          0          0
+       0    3499.14      254.2      349.7       63.5    1002.15     1251.4
+       1    90.5691       17.9       77.5        7.5    87.2614      233.2
+       2    31.2437        5.4       35.4        2.5    31.6879      101.4
+       3    9.65502        1.8       14.1        0.8    7.90805         33
+       4     9.0525          1        9.5        0.4    6.53113       18.1
+       5    2.56436        0.4        4.8        0.2     1.9485          9
+       6    1.25405        0.2        1.7        0.1   0.958875        4.4
+       7   0.471062          0        1.2          0   0.310092        3.3
+       8    1.13995          0        1.7          0   0.741375        3.9
+       9 0.00496836          0          0          0          0          0
+      10   0.389499          0        0.6          0   0.241023        3.1
+      11 0.00565333          0          0          0          0          0
+      12 0.00769838          0          0          0          0          0
+      13   0.347921        0.4        0.3        0.1    1.43872        2.1
+      14  0.0386043          0        0.2          0 0.00945315        0.3
+      15  0.0493046          0        0.2          0  0.0116138        0.2
+      16 0.00296628          0          0          0          0          0
+      17  0.0038433          0          0          0          0          0
+      18 0.00316421          0          0          0          0          0
+      19 0.000925432          0          0          0          0          0
 ############################################################
 /run/dumpCouples
 
@@ -1572,7 +1572,7 @@ Index : 6     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=17.12s Real=18.39s Sys=1.18s
+  User=1.99s Real=2.18s Sys=0.19s
 ############################################################
  Run Summary - Number of events : 10
 ############################################################
@@ -1580,124 +1580,124 @@ Region : Calor-A
  Production thresholds :
     gamma 200 um     e- 200 um     e+ 200 um 
  Energy deposition in an event :
-    Absorber 14.1444 GeV      Gap 1.3765 GeV
+    Absorber 2.3872 GeV      Gap 327.833 MeV
  Number of secondaries in an event :
-    gamma in Absorber 8995    in Gap 437.3
-    e-    in Absorber 14394.5    in Gap 1403.8
-    e+    in Absorber 790.3    in Gap 27.3
+    gamma in Absorber 727.1    in Gap 41.9
+    e-    in Absorber 1315.2    in Gap 199
+    e+    in Absorber 55.4    in Gap 1.5
  Minimum kinetic energy of generated secondaries :
-    gamma in Absorber 47.1838 keV    in Gap 2.80866 keV
-    e-    in Absorber 11.2292 eV     in Gap 10.289 eV 
-    e+    in Absorber 1.0269 keV    in Gap 52.3422 keV
+    gamma in Absorber 47.2138 keV    in Gap 2.8622 keV
+    e-    in Absorber 3.84547 eV     in Gap 8.30738 eV 
+    e+    in Absorber 15.2559 keV    in Gap 681.848 keV
  Total track length of e+/e- in an event :
-    Absorber 9.40028 m        Gap 5.85459 m  
+    Absorber 82.0591 cm       Gap 68.3026 cm 
  Total number of steps of e+/e- in an event :
-    Absorber 38071.6      Gap 5037.2
+    Absorber 3049.7      Gap 623.6
 ------------------------------------------------------------
 Scores in parallel geometry
 layer   eDep/evt  nGamma/evt nElec/evt  nPosi/evt  stpLen/evt nStep/evt
-       0    13446.1     8404.5    12101.3      684.9    13010.7    33825.5
-       1    1243.27      636.5       2066       76.8    1385.76     5320.1
-       2    443.427      219.3      813.1         31     467.54     1954.1
-       3    186.069       85.8        376       13.3    185.265      910.8
-       4    89.1317       42.2      184.7        5.6    86.2143      439.3
-       5    44.5869       17.9       98.9        2.5     47.692      235.6
-       6    22.6304        6.9         55        0.9    23.8375      145.8
-       7    16.6489        7.4       37.4        1.1    17.5528       98.5
-       8    11.6262        3.7       24.9        0.4    12.0111       76.3
-       9    5.87892        3.1       13.8        0.3    5.31087       38.4
-      10    4.65234        2.9       10.3        0.6    3.32982       21.4
-      11    1.63976        0.3        4.7          0    2.14685       12.4
-      12   0.916961        0.3        3.3        0.1   0.497375        6.2
-      13   0.887092        0.3        1.5          0    1.89355        8.7
-      14   0.635038          0        1.8          0   0.780148        2.6
-      15   0.765485        0.1        1.8          0    1.49647        4.3
-      16    0.31177          0        0.9          0   0.117883        1.8
-      17    0.52206        0.6        1.1          0      1.112        2.6
-      18   0.179698          0        0.4          0   0.222892        0.6
-      19   0.601095        0.5        1.1        0.1   0.361242        2.1
+       0    2570.99      702.6     1243.2         48    1327.56     3042.7
+       1    84.3684       42.8      147.3        5.3    101.742      339.2
+       2    28.0724       12.6       57.5        1.6    40.8497      139.4
+       3    15.9296        6.2       30.1        1.1    19.1105         77
+       4    7.91363          3       17.1        0.6    6.00129       35.9
+       5    3.36348        0.9        8.5        0.1    3.99527       16.2
+       6    2.07795        0.4        5.1        0.1    1.31226        9.7
+       7    1.07457        0.5        2.5        0.1   0.717154          4
+       8    0.11925          0        0.4          0   0.129085        0.4
+       9   0.043193          0        0.4          0  0.0340915        0.5
+      10   0.109466          0        0.4          0   0.208738        0.6
+      11  0.0814078          0        0.2          0  0.0326655        0.3
+      12   0.100474          0        0.3          0   0.051237        0.3
+      13   0.139425          0        0.2          0    0.10186        0.2
+      14   0.163813          0        0.1          0   0.122331        0.3
+      15 0.00461668          0          0          0          0          0
+      16   0.123665          0        0.4          0   0.361577        1.8
+      17 0.00223695          0          0          0          0          0
+      18  0.0452248          0        0.2          0  0.0193499        1.6
+      19  0.0340879          0          0          0  0.0196084        1.5
 ############################################################
 Region : Calor-B
  Production thresholds :
     gamma 2 mm     e- 2 mm     e+ 2 mm 
  Energy deposition in an event :
-    Absorber 2.69246 GeV      Gap 333.597 MeV
+    Absorber 2.71169 GeV      Gap 338.186 MeV
  Number of secondaries in an event :
-    gamma in Absorber 649.5    in Gap 36.6
-    e-    in Absorber 1109.7    in Gap 113.5
-    e+    in Absorber 70.2    in Gap 2
+    gamma in Absorber 644.4    in Gap 43.1
+    e-    in Absorber 1094.3    in Gap 121.5
+    e+    in Absorber 72.1    in Gap 2.1
  Minimum kinetic energy of generated secondaries :
-    gamma in Absorber 120.93 keV    in Gap 8.77824 keV
-    e-    in Absorber 146.72 eV     in Gap 480.294 eV 
-    e+    in Absorber 46.7392 keV    in Gap 163.698 keV
+    gamma in Absorber 95.0868 keV    in Gap 8.79238 keV
+    e-    in Absorber 107.671 eV     in Gap 272.271 eV 
+    e+    in Absorber 23.9739 keV    in Gap 143.422 keV
  Total track length of e+/e- in an event :
-    Absorber 90.4019 cm       Gap 63.5687 cm 
+    Absorber 91.5775 cm       Gap 66.6093 cm 
  Total number of steps of e+/e- in an event :
-    Absorber 2877.4      Gap 447.4
+    Absorber 2891.1      Gap 501.6
 ------------------------------------------------------------
 Scores in parallel geometry
 layer   eDep/evt  nGamma/evt nElec/evt  nPosi/evt  stpLen/evt nStep/evt
-       0    2817.74      617.9      886.6       60.3    1308.96     2502.7
-       1    126.509       46.2      187.1        8.1    137.423      471.1
-       2    44.5548       12.6       76.2          2    49.1462      186.1
-       3    17.1262        3.4       29.8        0.6    19.2359       76.7
-       4    8.72102        2.3       17.4        0.5    12.7268       33.5
-       5     2.9657        0.5        7.8        0.2    2.07555       14.6
-       6    2.55247        0.7        5.6        0.2    1.79673       11.7
-       7    2.36641        0.9        4.4        0.2    3.85144        7.8
-       8    1.43777        0.5          3          0    2.48196        9.3
-       9   0.476704          0        1.4          0   0.349728        2.2
-      10  0.0194309          0        0.1          0  0.0409348        0.1
-      11  0.0699553          0        0.2          0  0.0253064        0.4
-      12   0.078364          0        0.3          0   0.167827        1.2
-      13  0.0321629          0        0.2          0 0.00933697        0.3
-      14  0.0038468          0          0          0          0          0
-      15 0.00384068          0          0          0          0          0
-      16   0.037005          0        0.1          0   0.189026          1
-      17   0.101978          0        0.3          0   0.183832        1.5
-      18   0.342581        0.2        0.7        0.1    0.54973        1.2
-      19   0.785061        0.9        1.7          0   0.434495          3
+       0    2865.67      628.5      911.6       61.9    1380.81     2666.4
+       1    116.257       39.4      173.2        7.6    129.275      422.7
+       2    36.3716       10.3       69.1        2.4     34.987      158.9
+       3    16.2556        5.3       29.8        1.5    17.1579       67.3
+       4    6.52702        1.2       12.7        0.5    7.11178       26.6
+       5    3.79227        1.3        6.7          0    7.72732       18.7
+       6    2.16809        0.3        5.5        0.1    1.99631       17.2
+       7    1.27527        0.8        3.2          0    1.58827        5.8
+       8   0.245312          0        0.9          0   0.125225        1.2
+       9   0.195577          0        0.8          0   0.152683          2
+      10  0.0860172          0        0.5          0   0.084872        1.9
+      11   0.030563          0        0.1          0 0.000186148        0.2
+      12   0.356358        0.2        0.6        0.1   0.454423        1.8
+      13  0.0831035          0        0.4          0  0.0244925        0.4
+      14   0.545394        0.2        0.7        0.1   0.372718        1.6
+      15 0.00480825          0          0          0          0          0
+      16 0.00252769          0          0          0          0          0
+      17 0.00161116          0          0          0          0          0
+      18 0.000179514          0          0          0          0          0
+      19 0.00167661          0          0          0          0          0
 ############################################################
 Region : Calor-C
  Production thresholds :
     gamma 2 cm     e- 2 cm     e+ 2 cm 
  Energy deposition in an event :
-    Absorber 7.47511 GeV      Gap 756.78 MeV
+    Absorber 2.34009 GeV      Gap 297.148 MeV
  Number of secondaries in an event :
-    gamma in Absorber 2049.8    in Gap 135.7
-    e-    in Absorber 3820.9    in Gap 355.8
-    e+    in Absorber 355.5    in Gap 13.7
+    gamma in Absorber 252.6    in Gap 20.7
+    e-    in Absorber 465.2    in Gap 45.2
+    e+    in Absorber 45.5    in Gap 1.7
  Minimum kinetic energy of generated secondaries :
-    gamma in Absorber 55.7757 keV    in Gap 27.1307 keV
-    e-    in Absorber 109.011 eV     in Gap 147.45 eV 
-    e+    in Absorber 671.008 eV     in Gap 9.06974 keV
+    gamma in Absorber 303.685 keV    in Gap 27.0691 keV
+    e-    in Absorber 145.791 eV     in Gap 118.696 eV 
+    e+    in Absorber 2.7889 keV    in Gap 533.632 keV
  Total track length of e+/e- in an event :
-    Absorber 3.91468 m        Gap 2.44124 m  
+    Absorber 48.942 cm       Gap 36.8968 cm 
  Total number of steps of e+/e- in an event :
-    Absorber 10353.7      Gap 1482.2
+    Absorber 1297      Gap 182.2
 ------------------------------------------------------------
 Scores in parallel geometry
 layer   eDep/evt  nGamma/evt nElec/evt  nPosi/evt  stpLen/evt nStep/evt
-       0    7298.33     1992.8     2877.6      312.3    5400.56     8610.1
-       1    564.064      125.7      706.4       35.5    587.657     1789.9
-       2    182.758       34.3      281.1       10.7    184.863        686
-       3    95.2437       17.4      139.1        5.5    92.5457      340.8
-       4    38.2105        7.1       68.7        2.4    39.0733      164.2
-       5    24.2116        3.3       44.2        1.3    22.0284        103
-       6    15.3438        3.2       25.1        0.8    14.7043       57.8
-       7    5.48341        0.6       13.4        0.3    4.86152       32.9
-       8    2.41826        0.4        8.4        0.2    1.54723       14.3
-       9    2.09993        0.4          4        0.1    3.99014       12.9
-      10    1.99522        0.1        3.1          0    2.42753        6.7
-      11   0.497286        0.2        1.5        0.1   0.342185        2.3
-      12    0.23761          0        0.7          0   0.216907        0.9
-      13   0.286206          0        0.9          0   0.134324        1.4
-      14  0.0962373          0        0.6          0  0.0502072        0.7
-      15   0.139187          0        0.6          0   0.066391        0.7
-      16  0.0634551          0        0.3          0   0.149724        0.5
-      17  0.0988539          0        0.3          0   0.343017        0.6
-      18 0.00031815          0          0          0          0          0
-      19  0.0301209          0        0.2          0  0.0557963        1.4
+       0    2513.51      245.9      349.8       38.7     738.15     1092.3
+       1     81.413       18.5       92.1        5.9    82.1226      220.2
+       2    24.1911        5.6       34.9        1.4    19.8583       76.7
+       3     8.1561        1.8       14.2        0.6    7.30133       36.6
+       4    5.14372        0.8        9.3        0.3     4.5231         24
+       5    1.21503        0.1        2.9          0    1.57979        4.7
+       6   0.925272        0.2        2.2        0.1    1.02771        9.4
+       7   0.304632          0        1.3          0    0.22214        1.7
+       8    1.33815        0.2        1.3        0.1    2.75334        6.3
+       9   0.147435          0        0.6          0  0.0844239        0.8
+      10   0.489776        0.2        0.7        0.1   0.514601        4.4
+      11  0.0457271          0        0.2          0   0.015636        0.3
+      12  0.0510999          0        0.3          0   0.015709        0.4
+      13  0.0608288          0        0.2          0  0.0994946        0.8
+      14  0.0618175          0        0.1          0  0.0291127        0.2
+      15          0          0          0          0          0          0
+      16          0          0          0          0          0          0
+      17   0.146568          0        0.3          0  0.0907743        0.4
+      18 0.00029725          0          0          0          0          0
+      19 0.00358146          0          0          0          0          0
 ############################################################
 /run/dumpCouples
 
@@ -2246,7 +2246,7 @@ Index : 12     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=0.66s Real=0.69s Sys=0.04s
+  User=0.63s Real=0.69s Sys=0.06s
 ############################################################
  Run Summary - Number of events : 10
 ############################################################
@@ -2254,124 +2254,124 @@ Region : Calor-A
  Production thresholds :
     gamma 200 um     e- 200 um     e+ 200 um 
  Energy deposition in an event :
-    Absorber 582.037 MeV      Gap 245.269 MeV
+    Absorber 538.072 MeV      Gap 238.361 MeV
  Number of secondaries in an event :
-    gamma in Absorber 38.4    in Gap 10.8
-    e-    in Absorber 273.7    in Gap 145
-    e+    in Absorber 0.8    in Gap 0.3
+    gamma in Absorber 35.5    in Gap 10.5
+    e-    in Absorber 269.4    in Gap 130.5
+    e+    in Absorber 1.1    in Gap 0.3
  Minimum kinetic energy of generated secondaries :
-    gamma in Absorber 3.26664 keV    in Gap 1.49989 keV
-    e-    in Absorber 129.835 eV     in Gap 101.009 eV 
-    e+    in Absorber 433.177 keV    in Gap 3.73511 MeV
+    gamma in Absorber 3.25836 keV    in Gap 1.52286 keV
+    e-    in Absorber 124.875 eV     in Gap 124.221 eV 
+    e+    in Absorber 34.9782 keV    in Gap 2.83994 MeV
  Total track length of e+/e- in an event :
-    Absorber 41.2666 cm       Gap 37.2454 cm 
+    Absorber 34.8935 cm       Gap 34.8769 cm 
  Total number of steps of e+/e- in an event :
-    Absorber 567.4      Gap 312.7
+    Absorber 559.6      Gap 297.4
 ------------------------------------------------------------
 Scores in parallel geometry
 layer   eDep/evt  nGamma/evt nElec/evt  nPosi/evt  stpLen/evt nStep/evt
-       0    786.976       41.1      258.9        0.7    693.851      641.9
-       1    23.9947        5.4       39.3        0.3    48.3984       76.5
-       2    5.11387        1.1       24.5          0    12.9536       36.1
-       3    2.38566        0.1       20.5          0     5.1651       25.9
-       4    1.95212        0.5       14.1        0.1    5.88575         19
-       5   0.536588          0       11.4          0   0.470917       12.7
-       6    1.55837          0        9.4          0    3.38703       11.2
-       7    1.00008        0.1          8          0    2.50058       14.1
-       8    1.32356        0.4        6.9          0    6.00434       12.2
-       9    1.60884        0.5        7.2          0    5.38153        9.2
-      10   0.302121          0        5.4          0   0.523357        6.3
-      11   0.113963          0        2.7          0   0.122343        3.2
-      12  0.0292907          0        1.2          0  0.0138835        1.3
-      13   0.105451          0        1.9          0   0.139731        2.3
-      14  0.0273713          0        1.5          0  0.0106625        1.7
-      15  0.0256016          0        1.5          0  0.0100001        1.6
-      16  0.0902762          0        1.3          0   0.117334        1.6
-      17  0.0996919          0        0.4          0   0.151406        0.5
-      18  0.0145069          0          1          0 0.00376426        1.1
-      19  0.0258598          0        0.7          0  0.0195495        0.7
+       0    740.118       36.8      247.4        0.7    586.761      618.9
+       1    19.0234        4.9       32.3        0.3    65.4539       68.2
+       2    6.18302        1.9       25.6        0.3    19.0096       39.1
+       3    3.91294          1       20.6        0.1    9.40456       28.8
+       4    3.35449        1.2         18          0    9.43074       27.5
+       5    1.10164        0.2       12.1          0    2.04053       16.8
+       6   0.561263          0        9.9          0    1.11585       15.2
+       7   0.430367          0          7          0   0.529179        9.8
+       8   0.276083          0        7.1          0   0.196296        8.1
+       9   0.374254          0          4          0   0.785659        5.3
+      10  0.0879516          0        2.5          0  0.0576519        2.7
+      11  0.0404711          0        2.3          0  0.0167242        2.5
+      12  0.0653245          0        1.9          0  0.0439762        2.2
+      13  0.0542519          0          2          0  0.0319182        2.1
+      14  0.0640404          0        2.1          0  0.0285315        2.4
+      15  0.0329752          0        1.2          0  0.0142132        1.4
+      16  0.0420822          0        1.1          0    0.02692        1.3
+      17   0.057854          0        0.8          0  0.0412038        0.9
+      18   0.021976          0        0.6          0  0.0113276        0.7
+      19          0          0          0          0          0          0
 ############################################################
 Region : Calor-B
  Production thresholds :
     gamma 2 mm     e- 2 mm     e+ 2 mm 
  Energy deposition in an event :
-    Absorber 521.168 MeV      Gap 228.806 MeV
+    Absorber 703.996 MeV      Gap 311.426 MeV
  Number of secondaries in an event :
-    gamma in Absorber 16.8    in Gap 6.1
-    e-    in Absorber 92.3    in Gap 47
-    e+    in Absorber 0.6    in Gap 0
+    gamma in Absorber 67.4    in Gap 19.5
+    e-    in Absorber 392.5    in Gap 162.8
+    e+    in Absorber 4.7    in Gap 0.8
  Minimum kinetic energy of generated secondaries :
-    gamma in Absorber 10.0618 keV    in Gap 4.12997 keV
-    e-    in Absorber 110.793 eV     in Gap 112.871 eV 
-    e+    in Absorber 472.658 keV    in Gap 2.88022e+295 J  
+    gamma in Absorber 9.8181 keV    in Gap 4.21349 keV
+    e-    in Absorber 101.742 eV     in Gap 101.267 eV 
+    e+    in Absorber 96.9713 keV    in Gap 527.04 keV
  Total track length of e+/e- in an event :
-    Absorber 24.8597 cm       Gap 25.5525 cm 
+    Absorber 67.6416 cm       Gap 67.8104 cm 
  Total number of steps of e+/e- in an event :
-    Absorber 265.4      Gap 136.2
+    Absorber 790.1      Gap 370
 ------------------------------------------------------------
 Scores in parallel geometry
 layer   eDep/evt  nGamma/evt nElec/evt  nPosi/evt  stpLen/evt nStep/evt
-       0    734.186       20.4       62.9        0.4    456.979      281.4
-       1    6.32658        1.1       12.9          0    22.2742         25
-       2    3.77741        0.8       13.9        0.1      8.814       20.8
-       3   0.942966          0       13.1          0    1.35108       18.1
-       4    1.36457        0.3        8.5          0     5.7022       15.6
-       5    0.97327        0.1          7          0     2.4957       10.7
-       6   0.475644        0.2        5.4        0.1      1.198        9.6
-       7   0.255549          0        3.9          0    0.58222        4.9
-       8  0.0461807          0        1.5          0  0.0285007        1.8
-       9  0.0432986          0        1.6          0  0.0237187        1.9
-      10   0.324578          0        1.6          0     0.7448        2.7
-      11  0.0836513          0        1.5          0  0.0711206        1.6
-      12  0.0392539          0        1.4          0  0.0294056        1.6
-      13    0.61726          0        1.9          0    1.55338        2.6
-      14  0.0611416          0          1          0  0.0848306        1.2
-      15 0.00501562          0        0.3          0 0.00163446        0.3
-      16          0          0          0          0          0          0
-      17 0.00845234          0        0.7          0   0.002121        0.7
-      18          0          0          0          0          0          0
-      19          0          0          0          0          0          0
+       0    879.361       60.5      128.5        3.2    952.479        495
+       1    72.0121       15.5       84.9        0.7    227.843      185.9
+       2    26.4892        5.2       75.2        0.6    78.5305      118.4
+       3     9.5332          2       47.9        0.4    27.5692       67.3
+       4    6.56609        0.8       44.4          0    14.3846       56.4
+       5    3.02522        0.4       37.6        0.1    7.69954       54.3
+       6     4.9049        0.3       26.9        0.1    14.5588       39.3
+       7    2.71537        0.3       23.4          0       5.92       28.4
+       8    2.58167        0.5       20.1        0.1    5.59114         27
+       9    1.19018          0       17.9          0    2.06942       21.4
+      10    2.42413        0.6       12.1        0.2    8.36896       17.7
+      11   0.724577          0        9.3          0    1.11228       10.6
+      12    1.42281        0.2        5.3          0    3.64461          8
+      13   0.262175          0        3.7          0   0.441425          4
+      14   0.107741          0        3.6          0  0.0603132        4.1
+      15  0.0912715          0        2.6          0  0.0980355        2.7
+      16   0.257683        0.1        1.9        0.1   0.497653          3
+      17    1.25304        0.4        3.8          0    2.96388        9.4
+      18  0.0718648          0        1.4          0  0.0666406        1.6
+      19  0.0686567          0          2          0  0.0335482        2.1
 ############################################################
 Region : Calor-C
  Production thresholds :
     gamma 2 cm     e- 2 cm     e+ 2 cm 
  Energy deposition in an event :
-    Absorber 560.462 MeV      Gap 237.213 MeV
+    Absorber 604.216 MeV      Gap 254.476 MeV
  Number of secondaries in an event :
-    gamma in Absorber 20.3    in Gap 7.1
-    e-    in Absorber 114.4    in Gap 48.4
-    e+    in Absorber 1.6    in Gap 0.3
+    gamma in Absorber 26.9    in Gap 9.1
+    e-    in Absorber 158.6    in Gap 61.1
+    e+    in Absorber 1.8    in Gap 0.3
  Minimum kinetic energy of generated secondaries :
-    gamma in Absorber 28.1446 keV    in Gap 10.5454 keV
-    e-    in Absorber 106.165 eV     in Gap 199.309 eV 
-    e+    in Absorber 572.362 keV    in Gap 16.2154 MeV
+    gamma in Absorber 28.2918 keV    in Gap 11.31 keV
+    e-    in Absorber 163.293 eV     in Gap 122.122 eV 
+    e+    in Absorber 409.8 keV    in Gap 4.78497 MeV
  Total track length of e+/e- in an event :
-    Absorber 22.0065 cm       Gap 20.1678 cm 
+    Absorber 31.8744 cm       Gap 29.3742 cm 
  Total number of steps of e+/e- in an event :
-    Absorber 228.1      Gap 99.1
+    Absorber 285.7      Gap 118.8
 ------------------------------------------------------------
 Scores in parallel geometry
 layer   eDep/evt  nGamma/evt nElec/evt  nPosi/evt  stpLen/evt nStep/evt
-       0    755.215       19.6       32.4        0.7     310.53      122.7
-       1    21.8556        5.6       25.1        0.8    59.7795         53
-       2    5.90885        0.5       16.2        0.2    15.3997       28.5
-       3    4.77895        0.4       15.4        0.1    12.4499       27.8
-       4     1.4522        0.1         17          0    2.56447       19.7
-       5    4.58787          1       12.1        0.1     12.244       17.5
-       6   0.612884          0       11.5          0   0.892998       12.8
-       7   0.607975        0.1        6.8          0   0.969975        7.7
-       8   0.549037        0.1          7          0    1.09008        8.4
-       9   0.653181          0        4.6          0    1.83471          8
-      10   0.134689          0        4.1          0  0.0976998        4.5
-      11   0.370142          0        2.8          0   0.872575        4.1
-      12  0.0850635          0        2.3          0  0.0490069        2.8
-      13   0.146879          0        1.4          0   0.211451        2.3
-      14  0.0561544          0        0.8          0  0.0546938        0.9
-      15  0.0246247          0        0.8          0  0.0175391        0.9
-      16   0.443828          0        1.1          0    2.21556        1.8
-      17  0.0642791          0          1          0  0.0633147        1.1
-      18  0.0438601          0        0.3          0   0.122158        0.5
-      19  0.0828702          0        0.1          0   0.283378        2.2
+       0    807.139       28.7       40.8        1.2    474.742        143
+       1    20.9103        3.1       35.1        0.5    63.5878       71.9
+       2     10.691        1.2       29.3        0.2    27.5642       41.4
+       3    7.33488        0.8       25.9        0.1    17.8248       36.5
+       4    2.28573        0.5       19.4          0    4.77805       23.5
+       5    1.73015        0.2       19.2          0    4.90626       25.1
+       6     2.0508          0       13.8          0    4.29981       17.6
+       7    3.11322        0.8        8.9        0.1    7.67809       12.5
+       8    1.72006        0.7        5.8          0    4.29938        8.1
+       9   0.206536          0        4.6          0   0.161693        5.1
+      10   0.494532          0        4.2          0   0.693968        4.9
+      11   0.108431          0        1.1          0   0.128715        1.2
+      12   0.299014          0        2.3          0   0.740925        2.8
+      13  0.0524176          0        1.6          0  0.0369557        1.8
+      14   0.280314          0        2.2          0   0.798166          3
+      15  0.0558116          0        1.3          0  0.0454766        1.3
+      16  0.0675568          0        1.1          0   0.062746        1.3
+      17  0.0891634          0        1.1          0  0.0987903        1.2
+      18  0.0209468          0        0.4          0  0.0188345        0.4
+      19  0.0265542          0        1.3          0  0.0116783        1.5
 ############################################################
 /run/dumpCouples
 
@@ -2949,7 +2949,7 @@ Index : 12     used in the geometry : Yes
  Run terminated.
 Run Summary
   Number of events processed : 10
-  User=1.3s Real=1.39s Sys=0.08s
+  User=1.22s Real=1.34s Sys=0.13s
 ############################################################
  Run Summary - Number of events : 10
 ############################################################
@@ -2957,124 +2957,124 @@ Region : Calor-A
  Production thresholds :
     gamma 10 um     e- 10 um     e+ 10 um 
  Energy deposition in an event :
-    Absorber 545.98 MeV      Gap 239.447 MeV
+    Absorber 609.14 MeV      Gap 273.785 MeV
  Number of secondaries in an event :
-    gamma in Absorber 44    in Gap 11.2
-    e-    in Absorber 944.1    in Gap 896
-    e+    in Absorber 1.1    in Gap 0.3
+    gamma in Absorber 62.6    in Gap 14.9
+    e-    in Absorber 1095.9    in Gap 1042.4
+    e+    in Absorber 1.8    in Gap 0.2
  Minimum kinetic energy of generated secondaries :
-    gamma in Absorber 993.293 eV     in Gap 1.02525 keV
-    e-    in Absorber 14.3306 eV     in Gap 100.912 eV 
-    e+    in Absorber 1.06681 MeV    in Gap 707.752 keV
+    gamma in Absorber 991.177 eV     in Gap 999.571 eV 
+    e-    in Absorber 1.91034 eV     in Gap 117.551 eV 
+    e+    in Absorber 488.246 keV    in Gap 4.03829 MeV
  Total track length of e+/e- in an event :
-    Absorber 40.7775 cm       Gap 37.741 cm 
+    Absorber 47.8237 cm       Gap 44.8895 cm 
  Total number of steps of e+/e- in an event :
-    Absorber 1420.3      Gap 1292.5
+    Absorber 1682.7      Gap 1480.4
 ------------------------------------------------------------
 Scores in parallel geometry
 layer   eDep/evt  nGamma/evt nElec/evt  nPosi/evt  stpLen/evt nStep/evt
-       0    760.629       49.5     1676.2        0.9     713.43     2448.2
-       1    10.8769        2.6       45.1        0.2    35.2277       97.5
-       2    4.83374        1.3         30        0.2    13.8013       44.8
-       3     4.2898          1       24.7          0    13.4436       37.7
-       4   0.582869        0.2       14.3          0   0.565321       16.4
-       5   0.755026        0.2       12.9          0    1.79577       16.7
-       6    0.52031        0.1        7.1          0   0.845714        9.3
-       7   0.458918          0        6.9          0    1.12222        9.6
-       8   0.181081          0        4.2          0   0.298205        5.7
-       9   0.341793          0          3          0   0.473495        5.2
-      10   0.229318          0        2.4          0   0.750274        3.5
-      11   0.103895          0        1.6          0   0.110663        1.9
-      12   0.255559          0        1.2          0   0.605738          2
-      13   0.645636        0.3        2.1        0.1    1.45922        3.6
-      14   0.100659          0        2.3          0  0.0852856        2.5
-      15   0.345242          0        1.8          0    0.66447        2.5
-      16  0.0596718          0        1.1          0  0.0413587        1.3
-      17  0.0107233          0        0.7          0 0.00310471        0.8
-      18  0.0056886          0        0.9          0 0.000731174        0.9
-      19  0.0665101          0        0.8          0   0.182375        1.5
+       0    790.812       60.2     1755.1        1.3    783.688     2587.8
+       1    28.6761        6.4      102.3        0.2    75.2711      180.3
+       2    13.7432        2.7       63.9        0.1    19.2594       96.6
+       3    6.39045        1.2       31.9        0.2    10.4523       48.3
+       4     6.4016        1.3       36.2          0     13.618       56.6
+       5    3.09015        0.4       21.6          0    1.83521       25.8
+       6    4.26807        1.1         17          0    5.08837       27.5
+       7    1.03982        0.3       13.4          0     1.7012       15.8
+       8      1.069          0       15.9          0    1.20195       18.9
+       9    4.28725        0.4        9.3          0    1.15698       11.2
+      10    6.80476        0.1       18.2          0    1.30933       20.3
+      11    12.3948        1.2       23.5        0.1    3.21907       27.5
+      12   0.135847        0.2        2.7          0    0.12268        3.3
+      13   0.742248        0.4        4.9        0.1    1.40297        8.1
+      14   0.591466        0.4        5.2          0    1.80025        7.7
+      15   0.202383        0.1          3          0   0.300051        4.5
+      16   0.379751        0.2        3.2          0   0.877867        6.1
+      17   0.793451        0.3          4          0    2.33339        6.8
+      18   0.385976        0.3        3.1          0    1.65928        5.1
+      19  0.0934834        0.2        1.3          0  0.0499444        1.5
 ############################################################
 Region : Calor-B
  Production thresholds :
     gamma 100 um     e- 100 um     e+ 100 um 
  Energy deposition in an event :
-    Absorber 633.107 MeV      Gap 279.196 MeV
+    Absorber 629.2 MeV      Gap 274.414 MeV
  Number of secondaries in an event :
-    gamma in Absorber 71.1    in Gap 17.8
-    e-    in Absorber 472.7    in Gap 247.8
-    e+    in Absorber 3.6    in Gap 0.5
+    gamma in Absorber 67.2    in Gap 15.8
+    e-    in Absorber 484    in Gap 256.1
+    e+    in Absorber 2.3    in Gap 0.7
  Minimum kinetic energy of generated secondaries :
-    gamma in Absorber 2.36512 keV    in Gap 1.12843 keV
-    e-    in Absorber 104.027 eV     in Gap 108.885 eV 
-    e+    in Absorber 567.292 keV    in Gap 717.843 keV
+    gamma in Absorber 2.43602 keV    in Gap 1.14305 keV
+    e-    in Absorber 101.72 eV     in Gap 103.194 eV 
+    e+    in Absorber 772.815 keV    in Gap 4.75695 MeV
  Total track length of e+/e- in an event :
-    Absorber 59.8803 cm       Gap 58.0633 cm 
+    Absorber 58.6901 cm       Gap 55.0081 cm 
  Total number of steps of e+/e- in an event :
-    Absorber 940.9      Gap 508.2
+    Absorber 926.7      Gap 500.2
 ------------------------------------------------------------
 Scores in parallel geometry
 layer   eDep/evt  nGamma/evt nElec/evt  nPosi/evt  stpLen/evt nStep/evt
-       0    818.582       64.5        426        2.4    882.143      962.1
-       1    45.0331       13.3       70.1        0.7    151.597      151.2
-       2    24.1091        5.2         52        0.5    74.4243       95.9
-       3    6.16946        1.9       34.4        0.2    18.9421       49.6
-       4    5.05153        1.2       29.6        0.2    16.0044       42.7
-       5    5.21451        1.1       22.9        0.1    15.3042       32.7
-       6    2.39167        0.3         20          0    6.11537       29.4
-       7    1.21915        0.4       14.9          0    2.23396       18.4
-       8    1.73211        0.4       11.2          0    5.24462       18.8
-       9   0.527253        0.1        8.3          0    1.36323       10.2
-      10     1.2144        0.4        8.7          0    4.69625       12.3
-      11   0.321703        0.1        7.4          0   0.499356        8.6
-      12   0.218611          0        5.3          0    0.21098        6.1
-      13   0.143444          0        2.9          0   0.112265        3.3
-      14   0.158284          0          3          0   0.315847        3.4
-      15  0.0702975          0          2          0  0.0414108        2.4
-      16  0.0874259          0        1.3          0   0.127188        1.5
-      17  0.0460684          0        0.4          0   0.048583        0.4
-      18          0          0          0          0          0          0
-      19          0          0          0          0          0          0
+       0    836.214       67.3      442.7        2.1    938.677        968
+       1    36.0266         10       65.6        0.6    113.985        144
+       2    12.0334        2.2       44.3          0    38.9553       69.4
+       3    5.88528        1.2       37.9        0.1     17.999       54.3
+       4    1.72172        0.1       25.6          0    4.03896       30.2
+       5    3.00224        0.5       23.9        0.1    7.52109       31.7
+       6    1.83028        0.2         22          0    3.73461       31.5
+       7    1.72592        0.5         16          0    3.48023       20.5
+       8   0.894608        0.1       14.1          0    1.66193       16.3
+       9   0.678445        0.5       10.3          0    1.09007       15.1
+      10    1.48933        0.4        8.8        0.1    3.18786       11.8
+      11   0.299181          0          8          0   0.290224        8.5
+      12   0.329224          0          7          0   0.378219        7.9
+      13   0.654532          0        5.6          0    1.31064        8.4
+      14  0.0598714          0        2.5          0  0.0294112        2.9
+      15   0.027413          0        0.8          0  0.0263896        0.9
+      16  0.0336876          0        1.5          0  0.0120886        1.6
+      17   0.326691          0        0.5          0   0.011796        0.6
+      18   0.230003          0        0.7          0    0.44427        0.9
+      19  0.0394879          0        1.1          0  0.0109553        1.1
 ############################################################
 Region : Calor-C
  Production thresholds :
     gamma 1 mm     e- 1 mm     e+ 1 mm 
  Energy deposition in an event :
-    Absorber 515.774 MeV      Gap 233.79 MeV
+    Absorber 505.043 MeV      Gap 223.986 MeV
  Number of secondaries in an event :
-    gamma in Absorber 23    in Gap 7.7
-    e-    in Absorber 132.6    in Gap 71.4
-    e+    in Absorber 0.8    in Gap 0.1
+    gamma in Absorber 18.3    in Gap 4.6
+    e-    in Absorber 111.7    in Gap 56.1
+    e+    in Absorber 0.6    in Gap 0.1
  Minimum kinetic energy of generated secondaries :
-    gamma in Absorber 6.95039 keV    in Gap 3.36159 keV
-    e-    in Absorber 105.855 eV     in Gap 152.344 eV 
-    e+    in Absorber 1.47487 MeV    in Gap 31.5327 MeV
+    gamma in Absorber 6.91199 keV    in Gap 3.39163 keV
+    e-    in Absorber 133.056 eV     in Gap 205.471 eV 
+    e+    in Absorber 1.27304 MeV    in Gap 12.1036 MeV
  Total track length of e+/e- in an event :
-    Absorber 26.3758 cm       Gap 30.142 cm 
+    Absorber 23.4957 cm       Gap 24.3333 cm 
  Total number of steps of e+/e- in an event :
-    Absorber 319.8      Gap 191.7
+    Absorber 294.5      Gap 163
 ------------------------------------------------------------
 Scores in parallel geometry
 layer   eDep/evt  nGamma/evt nElec/evt  nPosi/evt  stpLen/evt nStep/evt
-       0      722.8       24.6       93.8        0.4    490.527        352
-       1    15.5884        3.7       28.3        0.2    48.4279       50.6
-       2    5.05415        1.2       20.7        0.1    13.9684       34.2
-       3    2.12331        0.7       12.9        0.1      4.077       17.6
-       4    1.89094        0.5       11.2        0.1    5.06678       15.5
-       5   0.501583          0        6.9          0    0.78937        7.9
-       6   0.533285          0          8          0   0.790301        8.8
-       7    0.31354          0        7.6          0    0.23615        8.6
-       8   0.103678          0        3.1          0  0.0505843        3.4
-       9   0.308669          0        3.4          0   0.827253        3.9
-      10   0.134892          0        2.6          0   0.234411        3.1
-      11   0.059738          0        1.7          0  0.0626175        1.8
-      12  0.0221254          0        0.5          0  0.0171969        0.5
-      13  0.0161968          0        0.5          0 0.00832789        0.6
-      14  0.0507581          0        0.6          0  0.0515361        0.6
-      15 0.00740739          0        0.4          0 0.00204821        0.4
-      16   0.032388          0        0.7          0  0.0287394        0.7
-      17  0.0136255          0        0.5          0  0.0057993        0.6
-      18  0.0019997          0        0.2          0 0.000290378        0.2
-      19 0.00124541          0        0.2          0 0.000349963        0.2
+       0    716.517       21.1       91.8        0.5    443.453        357
+       1    5.26861        0.9       16.3          0    18.8464       25.8
+       2    2.25779        0.2       12.9        0.1    5.22484       16.8
+       3   0.885133        0.1       10.3          0    1.49844       11.9
+       4   0.949699        0.2        7.4          0    1.90119        9.6
+       5   0.159992          0        6.8          0   0.090206        7.7
+       6   0.154126          0          4          0  0.0928283        4.5
+       7   0.419596        0.1        3.7          0   0.815411          4
+       8    1.50418        0.1        2.8          0    5.03928        6.8
+       9   0.262614          0          2          0   0.397439        2.1
+      10   0.113335          0        2.8          0   0.119069        2.8
+      11  0.0493771          0        0.7          0  0.0885533        0.9
+      12   0.298956        0.2        1.1        0.1   0.595235        1.7
+      13  0.0256393          0        0.7          0  0.0175516        1.2
+      14  0.0499212          0        1.6          0  0.0299383        1.7
+      15  0.0195061          0        0.7          0 0.00766822        0.7
+      16  0.0593442          0        0.9          0  0.0602497        0.9
+      17 0.00404313          0        0.4          0 0.000761749        0.4
+      18 0.00612253          0        0.2          0 0.00263602        0.2
+      19  0.0235117          0        0.7          0  0.0102624        0.8
 ############################################################
 /run/dumpCouples
 
@@ -3166,6 +3166,6 @@ Visualization Manager deleting...
 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.72 Mb
+Dynamic pools deleted: 12 / Total memory freed: 0.83 Mb
 ============================================================
 RunManagerKernel is deleted. Good bye :)
diff --git a/source/GNUmakefile b/source/GNUmakefile
index d534143bfe0..a8f512d17f3 100644
--- a/source/GNUmakefile
+++ b/source/GNUmakefile
@@ -1,4 +1,4 @@
-# $Id: GNUmakefile 89063 2015-03-18 10:11:03Z gcosmo $
+# $Id: GNUmakefile 90844 2015-06-10 10:03:56Z gcosmo $
 # -----------------------------------------------------------------
 # "gmake" makes default libraries for each subdomain.
 # "gmake global" makes global libraries for each subdomain.
@@ -168,7 +168,7 @@ endif
 
 banner:
 	@$(ECHO) "*************************************************************"
-	@$(ECHO) " Installation Geant4 version geant4-10-01-patch-01           "
+	@$(ECHO) " Installation Geant4 version geant4-10-01-patch-02           "
 	@$(ECHO) " Copyright (C) 1994-2015 Geant4 Collaboration                "
 	@$(ECHO) "*************************************************************"
 
diff --git a/source/analysis/History b/source/analysis/History
index f1f7ba1f505..3d2fd8bf06b 100644
--- a/source/analysis/History
+++ b/source/analysis/History
@@ -1,4 +1,4 @@
-$Id: History 89065 2015-03-18 10:32:32Z gcosmo $
+$Id: History 90575 2015-06-04 09:45:37Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,7 +17,12 @@ committal in the SVN repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
-March 17, 2015 I. Hrivnacova (analysis-V10-00-43)
+April 9, 2015 I. Hrivnacova (analysis-V10-00-44)
+- Updated to g4tools 1.17.2 (Guy Barrand):
+  Changes for Windows (MinGW) - fixing problem #1721 (mainly to change 
+  #ifdef WIN32 to #ifdef _MSC_VER, which more clean)
+
+March 18, 2015 I. Hrivnacova (analysis-V10-00-43)
 - Fixed reading XML ntuples with a column of a vector type:
   tools do not support direct use of ntuple_bindings with a vector,
   use of a temorary sub-ntuple is needed
@@ -26,17 +31,17 @@ March 13, 2015 I. Hrivnacova (analysis-V10-00-42)
 - Fixed G4AnalysisManager::IsActive() - now taken into all Hn & Pn
   managers
 
-February 04, 2015 I. Hrivnacova
+February 04, 2015 I. Hrivnacova (analysis-V10-01-02)
 - Updated to g4tools 1.17.1 (Guy Barrand):
   Fixed resetting histograms;
   see History_tools for the complete list of modifications.
 
-January 21, 2015 I. Hrivnacova
+January 21, 2015 I. Hrivnacova (analysis-V10-01-01)
 - Updated to g4tools 1.17.0 (Guy Barrand):
   Fixes in the Root files output to be compatible with ROOT 6.02/x;
   see History_tools for the complete list of modifications.
 
-December 5, 2014 G. Cosmo
+December 5, 2014 G. Cosmo (analysis-V10-01-00)
 - Corrected csv/sources.cmake to include missing file:
     G4CsvAnalysisReader.icc
 
@@ -45,7 +50,7 @@ November 24, 2014 I. Hrivnacova (analysis-V10-00-41)
   the update of g4tools/src/csz_inflate.cc with Coverity fix 
   was missing
 
-November 07, 2014 I. Hrivnacova
+November 07, 2014 I. Hrivnacova (analysis-V09-06-33)
 - Fixed createH2/setH2 commands implementation
   (was missing in the previous tag V09-06-32)
 
diff --git a/source/analysis/History_tools b/source/analysis/History_tools
index f97f389b751..2e3d5d8f6f0 100644
--- a/source/analysis/History_tools
+++ b/source/analysis/History_tools
@@ -1,3 +1,6 @@
+ 1.17.2 :
+ - tools/wroot/file : #ifdef WIN32 -> #ifdef _MSC_VER and handle MinGW in synchronize().
+
  1.17.1 : revisit the usage of std::vector::resize(), have assign() if needed (for exa in histo::reset()) :
   - tools/array, tools/histo/[base_histo,histo_data,p1,p2,profile_data], tools/rroot/streamers : revisit reset(). 
 
diff --git a/source/analysis/g4tools/include/tools/version b/source/analysis/g4tools/include/tools/version
index c2bad62a1d3..1d4c1b6842b 100644
--- a/source/analysis/g4tools/include/tools/version
+++ b/source/analysis/g4tools/include/tools/version
@@ -6,12 +6,12 @@
 
 #define TOOLS_MAJOR_VERSION 1
 #define TOOLS_MINOR_VERSION 17
-#define TOOLS_PATCH_VERSION 1
-#define TOOLS_VERSION "1.17.1"
-#define TOOLS_VERSION_VRP "v1r17p1"
+#define TOOLS_PATCH_VERSION 2
+#define TOOLS_VERSION "1.17.2"
+#define TOOLS_VERSION_VRP "v1r17p2"
 
 namespace tools {
-inline unsigned int version() {return 11701;}
+inline unsigned int version() {return 11702;}
 }
 
 #endif
diff --git a/source/analysis/g4tools/include/tools/wroot/file b/source/analysis/g4tools/include/tools/wroot/file
index 5f3fe24455d..81962c6873a 100644
--- a/source/analysis/g4tools/include/tools/wroot/file
+++ b/source/analysis/g4tools/include/tools/wroot/file
@@ -21,13 +21,11 @@
 #include <errno.h>
 #include <sys/stat.h>
 
-#ifdef WIN32
-#ifndef __GNUC__
+#ifdef _MSC_VER
 #include <direct.h>
 #include <io.h>
 // disable the warning about the usage of "this" in the constructor.
 #pragma warning(disable:4355)
-#endif
 #else
 #include <unistd.h>
 #endif
@@ -64,7 +62,7 @@ public: //ifile
 
 #if defined(__linux__) && (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 2)
     if (::lseek64(m_file, a_offset, whence) < 0) {
-#elif defined(WIN32)
+#elif defined(_MSC_VER)
     if (::_lseeki64(m_file, a_offset, whence) < 0) {
 #else
     if (::lseek(m_file, a_offset, whence) < 0) {
@@ -101,7 +99,7 @@ public: //ifile
 
   virtual bool write_buffer(const char* a_buffer,uint32 a_length) {
     // Write a buffer to the file. This is the basic low level write operation.
-#ifdef WIN32
+#ifdef _MSC_VER
     typedef int ssize_t;
 #endif
     ssize_t siz;
@@ -138,17 +136,24 @@ public: //ifile
 
   virtual bool synchronize(){
     // Synchornize a file's in-core and on-disk states.
-#ifdef WIN32
+#ifdef _MSC_VER
+    if(::_commit(m_file)) {
+      m_out << "inlib::wroot::file::synchronize :"
+            << " in _commit() for file " << sout(m_path) << "."
+            << std::endl;
+      return false;
+    }
+#elif defined(__MINGW32__) || defined(__MINGW64__)
     return true;
 #else
     if (::fsync(m_file) < 0) {
-      m_out << "tools::wroot::file::synchronize :"
-            << " error flushing file " << sout(m_path) << "."
+      m_out << "inlib::wroot::file::synchronize :"
+            << " error in fsync() for file " << sout(m_path) << "."
             << std::endl;
       return false;
     } 
-    return true;
 #endif
+    return true;
   }
 
   virtual bool ziper(char a_key,zip_func& a_func) const {
@@ -249,7 +254,7 @@ public:
     }
 
     m_file = _open(a_path.c_str(),
-#ifdef WIN32
+#ifdef _MSC_VER
                                O_RDWR | O_CREAT | O_BINARY,S_IREAD | S_IWRITE
 #else
                                O_RDWR | O_CREAT,0644
@@ -460,7 +465,7 @@ protected:
   static bool access_path(const std::string& a_path,EAccessMode a_mode){
     // Returns true if one can access a file using the specified access mode.
     // Mode is the same as for the WinNT access(2) function.
-#ifdef WIN32
+#ifdef _MSC_VER
     return (::_access(a_path.c_str(),a_mode) == 0) ? true : false;
 #else
     return (::access(a_path.c_str(),a_mode) == 0) ? true : false;
@@ -471,7 +476,7 @@ protected:
     // false in case of failure.
     struct stat finfo;
     if (::stat(a_path.c_str(),&finfo) < 0) return false;
-#ifdef WIN32 
+#ifdef _MSC_VER
     if (finfo.st_mode & S_IFDIR)
       return (::_rmdir(a_path.c_str())==-1 ? false : true);
     else
diff --git a/source/event/History b/source/event/History
index 33402b72d3f..dc00e7a0e74 100644
--- a/source/event/History
+++ b/source/event/History
@@ -1,4 +1,4 @@
-$Id: History 88933 2015-03-16 14:47:19Z gcosmo $
+$Id: History 90978 2015-06-12 08:26:22Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,6 +17,31 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+June 11th, 2015 A.Dotti (event-V10-00-23)
+- Re-enabling legacy UI commands as in G4 Ver 10.1.p01
+
+June 8th, 2015 A.Dotti
+- Fixing valgring report
+
+June 6th, 2015 A.Dotti (event-V10-00-22)
+- Protecting the command /gps/source/set in case
+  of out-of-bound index.
+
+June 5th, 2015 A.Dotti
+- Further refinement for bug #1744: address case in which 
+  /gps/source/clear is used  
+- Increase verbosity of error message for GPS in case 
+  no sources are defined
+
+May 28th, 2015 A.Dotti
+- Addressing bug #1744
+- Increased level of verbosity of /gps/verbose
+- /gps/verbose now acts globally on all sources in case of multiple ones
+  (no need to activate verbosity for each source)
+
+April 6th, 2015 A.Dotti
+- Coverity fixes
+
 February 20th, 2015 A.Dotti (event-V10-00-21)
 - Clean code and remove not needed thread-local data that 
   need to be shared for UI commands to work properly 
diff --git a/source/event/include/G4GeneralParticleSource.hh b/source/event/include/G4GeneralParticleSource.hh
index 9317a718a6d..876900bce76 100644
--- a/source/event/include/G4GeneralParticleSource.hh
+++ b/source/event/include/G4GeneralParticleSource.hh
@@ -190,62 +190,72 @@ class G4GeneralParticleSource : public G4VPrimaryGenerator
         void ListSource();
         void SetCurrentSourceto(G4int) ;
         void SetCurrentSourceIntensity(G4double);
-        G4SingleParticleSource* GetCurrentSource() {return currentSource;};
-        G4int GetCurrentSourceIndex() { return currentSourceIdx; };
-        G4double GetCurrentSourceIntensity() { return GPSData->GetIntensity(currentSourceIdx); };
+        G4SingleParticleSource* GetCurrentSource() const
+          {return GPSData->GetCurrentSource();}
+        G4int GetCurrentSourceIndex() const
+          { return GPSData->GetCurrentSourceIdx(); }
+        G4double GetCurrentSourceIntensity() const
+          { return GPSData->GetIntensity(GetCurrentSourceIndex()); }
         void ClearAll();
         void AddaSource (G4double);
         void DeleteaSource(G4int);
 
         // Set the verbosity level.
-        void SetVerbosity(G4int i) {currentSource->SetVerbosity(i);} ;
+        void SetVerbosity(G4int i) {GPSData->SetVerbosityAllSources(i);} ;
 
         // Set if multiple vertex per event.
-        void SetMultipleVertex(G4bool av) {multiple_vertex = av;} ;
+        void SetMultipleVertex(G4bool av) { GPSData->SetMultipleVertex(av);} ;
 
         // set if flat_sampling is applied in multiple source case
 
-        void SetFlatSampling(G4bool av) {flat_sampling = av; GPSData->SetFlatSampling(av); normalised = false;} ;
+        void SetFlatSampling(G4bool av) { GPSData->SetFlatSampling(av); normalised = false;} ;
 
         // Set the particle species
         void SetParticleDefinition (G4ParticleDefinition * aParticleDefinition) 
-        {currentSource->SetParticleDefinition(aParticleDefinition); } ;
+          {GPSData->GetCurrentSource()->SetParticleDefinition(aParticleDefinition); } ;
 
-        G4ParticleDefinition * GetParticleDefinition () { return currentSource->GetParticleDefinition();} ;
+        G4ParticleDefinition * GetParticleDefinition () const
+          { return GPSData->GetCurrentSource()->GetParticleDefinition();} ;
 
-        void SetParticleCharge(G4double aCharge) { currentSource->SetParticleCharge(aCharge); } ;
+        void SetParticleCharge(G4double aCharge)
+          { GPSData->GetCurrentSource()->SetParticleCharge(aCharge); } ;
 
         // Set polarization
-        void SetParticlePolarization (G4ThreeVector aVal) {currentSource->SetParticlePolarization(aVal);};
-        G4ThreeVector GetParticlePolarization ()  {return currentSource->GetParticlePolarization();};
+        void SetParticlePolarization (G4ThreeVector aVal)
+          {GPSData->GetCurrentSource()->SetParticlePolarization(aVal);};
+        G4ThreeVector GetParticlePolarization () const
+          {return GPSData->GetCurrentSource()->GetParticlePolarization();};
 
         // Set Time.
-        void SetParticleTime(G4double aTime)  { currentSource->SetParticleTime(aTime); };
-        G4double GetParticleTime()  { return currentSource->GetParticleTime(); };
+        void SetParticleTime(G4double aTime)
+          { GPSData->GetCurrentSource()->SetParticleTime(aTime); };
+        G4double GetParticleTime() const
+          { return GPSData->GetCurrentSource()->GetParticleTime(); };
 
-        void SetNumberOfParticles(G4int i)  { currentSource->SetNumberOfParticles(i); };
+        void SetNumberOfParticles(G4int i)
+          { GPSData->GetCurrentSource()->SetNumberOfParticles(i); };
         //
-        G4int GetNumberOfParticles() { return currentSource->GetNumberOfParticles(); };
-        G4ThreeVector GetParticlePosition()  { return currentSource->GetParticlePosition();};
-        G4ThreeVector GetParticleMomentumDirection()  { return currentSource->GetParticleMomentumDirection();};
-        G4double GetParticleEnergy()  {return currentSource->GetParticleEnergy();};
+        G4int GetNumberOfParticles() const
+          { return GPSData->GetCurrentSource()->GetNumberOfParticles(); };
+        G4ThreeVector GetParticlePosition() const
+          { return GPSData->GetCurrentSource()->GetParticlePosition();};
+        G4ThreeVector GetParticleMomentumDirection() const
+          { return GPSData->GetCurrentSource()->GetParticleMomentumDirection();};
+        G4double GetParticleEnergy() const
+          {return GPSData->GetCurrentSource()->GetParticleEnergy();};
 
 private:
 
   void IntensityNormalization();
 
 private:
-  G4bool multiple_vertex;
-  G4bool flat_sampling;
+  //Helper boolean, used to reduce number of locks
+  //at run time (see GeneratePrimaryVertex)
   G4bool normalised;
-  G4int currentSourceIdx;
-  G4SingleParticleSource* currentSource;
-  std::vector <G4SingleParticleSource*> sourceVector;
-  std::vector <G4double> sourceIntensity;
-  std::vector <G4double> sourceProbability;
 
+  //Note this is a shared resource among MT workers
   G4GeneralParticleSourceMessenger* theMessenger;
-  //Note this will be a shared resource among MT
+  //Note this is a shared resource among MT workers
   G4GeneralParticleSourceData* GPSData;
   
 };
diff --git a/source/event/include/G4GeneralParticleSourceData.hh b/source/event/include/G4GeneralParticleSourceData.hh
index 54607252e79..6eacb86a79c 100644
--- a/source/event/include/G4GeneralParticleSourceData.hh
+++ b/source/event/include/G4GeneralParticleSourceData.hh
@@ -68,7 +68,6 @@ class G4GeneralParticleSourceData
         void AddASource(G4double intensity);
         void DeleteASource(G4int idx);
         void ClearSources();
-        void SetSourceVerbosity(G4int verb);
     
         void IntensityNormalise();
     
@@ -76,15 +75,23 @@ class G4GeneralParticleSourceData
     
         G4SingleParticleSource* GetCurrentSource(G4int idx);
         G4SingleParticleSource* GetCurrentSource() const {return currentSource;}
-    
+
         G4int GetSourceVectorSize() const {return G4int(sourceVector.size());}
         G4int GetIntensityVectorSize() const {return G4int(sourceIntensity.size());}
         G4double GetIntensity(G4int idx)const {return sourceIntensity.at(idx);}
         G4double GetSourceProbability(G4int idx) const {return sourceProbability.at(idx);}
     
         void SetCurrentSourceIntensity(G4double);
+
         void SetFlatSampling(G4bool fSamp){flat_sampling = fSamp;}
+        G4bool GetFlatSampling() const { return flat_sampling; }
 
+        void SetMultipleVertex(G4bool flag) { multiple_vertex = flag; }
+        G4bool GetMultipleVertex() const { return multiple_vertex; }
+
+        G4int GetCurrentSourceIdx() const { return currentSourceIdx; }
+
+        void SetVerbosityAllSources(G4int vl);
         //Lock/Unlock shared mutex
         void Lock();
         void Unlock();
@@ -96,12 +103,11 @@ class G4GeneralParticleSourceData
     
     private:
     
-        //static G4GeneralParticleSourceData* theInstance;
-    
         std::vector<G4SingleParticleSource*> sourceVector;
         std::vector <G4double> sourceIntensity;
         std::vector <G4double> sourceProbability;
     
+        G4bool multiple_vertex;
         G4bool flat_sampling;
         G4bool normalised;
     
diff --git a/source/event/include/G4GeneralParticleSourceMessenger.hh b/source/event/include/G4GeneralParticleSourceMessenger.hh
index ffe0ac1e782..7accb4d8333 100644
--- a/source/event/include/G4GeneralParticleSourceMessenger.hh
+++ b/source/event/include/G4GeneralParticleSourceMessenger.hh
@@ -191,25 +191,25 @@ class G4GeneralParticleSourceMessenger: public G4UImessenger
     G4UIcmdWithADoubleAndUnit  *parphiCmd1;  
     G4UIcmdWithAString         *confineCmd1;
          
-  //old ones, will be reomved soon
-  G4UIcmdWithAString         *typeCmd;
-  G4UIcmdWithAString         *shapeCmd;
-  G4UIcmdWith3VectorAndUnit  *centreCmd;
-  G4UIcmdWith3Vector         *posrot1Cmd;
-  G4UIcmdWith3Vector         *posrot2Cmd;
-  G4UIcmdWithADoubleAndUnit  *halfxCmd;
-  G4UIcmdWithADoubleAndUnit  *halfyCmd;
-  G4UIcmdWithADoubleAndUnit  *halfzCmd;
-  G4UIcmdWithADoubleAndUnit  *radiusCmd;
-  G4UIcmdWithADoubleAndUnit  *radius0Cmd;
-  G4UIcmdWithADoubleAndUnit  *possigmarCmd;
-  G4UIcmdWithADoubleAndUnit  *possigmaxCmd;
-  G4UIcmdWithADoubleAndUnit  *possigmayCmd;
-  G4UIcmdWithADoubleAndUnit  *paralpCmd;
-  G4UIcmdWithADoubleAndUnit  *partheCmd;
-  G4UIcmdWithADoubleAndUnit  *parphiCmd;  
-  G4UIcmdWithAString         *confineCmd; 
-        
+//  //old ones, will be reomved soon
+ G4UIcmdWithAString         *typeCmd;
+ G4UIcmdWithAString         *shapeCmd;
+ G4UIcmdWith3VectorAndUnit  *centreCmd;
+ G4UIcmdWith3Vector         *posrot1Cmd;
+ G4UIcmdWith3Vector         *posrot2Cmd;
+ G4UIcmdWithADoubleAndUnit  *halfxCmd;
+ G4UIcmdWithADoubleAndUnit  *halfyCmd;
+ G4UIcmdWithADoubleAndUnit  *halfzCmd;
+ G4UIcmdWithADoubleAndUnit  *radiusCmd;
+ G4UIcmdWithADoubleAndUnit  *radius0Cmd;
+ G4UIcmdWithADoubleAndUnit  *possigmarCmd;
+ G4UIcmdWithADoubleAndUnit  *possigmaxCmd;
+ G4UIcmdWithADoubleAndUnit  *possigmayCmd;
+ G4UIcmdWithADoubleAndUnit  *paralpCmd;
+ G4UIcmdWithADoubleAndUnit  *partheCmd;
+ G4UIcmdWithADoubleAndUnit  *parphiCmd;  
+ G4UIcmdWithAString         *confineCmd; 
+    
     // angular commands
     G4UIdirectory* angularDirectory;
     G4UIcmdWithAString         *angtypeCmd1;
@@ -227,18 +227,18 @@ class G4GeneralParticleSourceMessenger: public G4UImessenger
     G4UIcmdWithABool           *surfnormCmd1;
 
   // old ones, will be removed soon
-  G4UIcmdWithAString         *angtypeCmd;
-  G4UIcmdWith3Vector         *angrot1Cmd;
-  G4UIcmdWith3Vector         *angrot2Cmd;
-  G4UIcmdWithADoubleAndUnit  *minthetaCmd;
-  G4UIcmdWithADoubleAndUnit  *maxthetaCmd;
-  G4UIcmdWithADoubleAndUnit  *minphiCmd;
-  G4UIcmdWithADoubleAndUnit  *maxphiCmd;
-  G4UIcmdWithADoubleAndUnit  *angsigmarCmd;
-  G4UIcmdWithADoubleAndUnit  *angsigmaxCmd;
-  G4UIcmdWithADoubleAndUnit  *angsigmayCmd;
-  G4UIcmdWithABool           *useuserangaxisCmd;
-  G4UIcmdWithABool           *surfnormCmd;
+ G4UIcmdWithAString         *angtypeCmd;
+ G4UIcmdWith3Vector         *angrot1Cmd;
+ G4UIcmdWith3Vector         *angrot2Cmd;
+ G4UIcmdWithADoubleAndUnit  *minthetaCmd;
+ G4UIcmdWithADoubleAndUnit  *maxthetaCmd;
+ G4UIcmdWithADoubleAndUnit  *minphiCmd;
+ G4UIcmdWithADoubleAndUnit  *maxphiCmd;
+ G4UIcmdWithADoubleAndUnit  *angsigmarCmd;
+ G4UIcmdWithADoubleAndUnit  *angsigmaxCmd;
+ G4UIcmdWithADoubleAndUnit  *angsigmayCmd;
+ G4UIcmdWithABool           *useuserangaxisCmd;
+ G4UIcmdWithABool           *surfnormCmd;
 
     // energy commands
     G4UIdirectory* energyDirectory;
@@ -258,19 +258,19 @@ class G4GeneralParticleSourceMessenger: public G4UImessenger
     G4UIcmdWithABool           *diffspecCmd1;
 
     // old ones, will be removed soon
-    G4UIcmdWithAString         *energytypeCmd;
-    G4UIcmdWithADoubleAndUnit  *eminCmd;
-    G4UIcmdWithADoubleAndUnit  *emaxCmd;
-    G4UIcmdWithADoubleAndUnit  *monoenergyCmd;
-    G4UIcmdWithADoubleAndUnit  *engsigmaCmd;
-    G4UIcmdWithADouble         *alphaCmd;
-    G4UIcmdWithADouble         *tempCmd;
-    G4UIcmdWithADouble         *ezeroCmd;
-    G4UIcmdWithADouble         *gradientCmd;
-    G4UIcmdWithADouble         *interceptCmd;
-    G4UIcmdWithoutParameter    *calculateCmd;
-    G4UIcmdWithABool           *energyspecCmd;
-    G4UIcmdWithABool           *diffspecCmd;
+   G4UIcmdWithAString         *energytypeCmd;
+   G4UIcmdWithADoubleAndUnit  *eminCmd;
+   G4UIcmdWithADoubleAndUnit  *emaxCmd;
+   G4UIcmdWithADoubleAndUnit  *monoenergyCmd;
+   G4UIcmdWithADoubleAndUnit  *engsigmaCmd;
+   G4UIcmdWithADouble         *alphaCmd;
+   G4UIcmdWithADouble         *tempCmd;
+   G4UIcmdWithADouble         *ezeroCmd;
+   G4UIcmdWithADouble         *gradientCmd;
+   G4UIcmdWithADouble         *interceptCmd;
+   G4UIcmdWithoutParameter    *calculateCmd;
+   G4UIcmdWithABool           *energyspecCmd;
+   G4UIcmdWithABool           *diffspecCmd;
 
     // histogram commands
     G4UIdirectory              *histDirectory;
diff --git a/source/event/include/G4SPSAngDistribution.hh b/source/event/include/G4SPSAngDistribution.hh
index f6abded262e..36338745cca 100644
--- a/source/event/include/G4SPSAngDistribution.hh
+++ b/source/event/include/G4SPSAngDistribution.hh
@@ -207,6 +207,7 @@ public:
     G4double GetMaxTheta();
     G4double GetMinPhi();
     G4double GetMaxPhi();
+    G4ThreeVector GetDirection();
   //
   G4ParticleMomentum GenerateOne();
   
diff --git a/source/event/src/G4AdjointPosOnPhysVolGenerator.cc b/source/event/src/G4AdjointPosOnPhysVolGenerator.cc
index 2ebc412e444..12094497d8b 100644
--- a/source/event/src/G4AdjointPosOnPhysVolGenerator.cc
+++ b/source/event/src/G4AdjointPosOnPhysVolGenerator.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4AdjointPosOnPhysVolGenerator.cc 86965 2014-11-21 11:48:22Z gcosmo $
+// $Id: G4AdjointPosOnPhysVolGenerator.cc 90695 2015-06-08 09:02:07Z gcosmo $
 //
 /////////////////////////////////////////////////////////////////////////////
 //      Class Name:	G4AdjointCrossSurfChecker
@@ -176,7 +176,7 @@ void G4AdjointPosOnPhysVolGenerator::GenerateAPositionOnTheExtSurfaceOfTheSolid(
 //
 G4double G4AdjointPosOnPhysVolGenerator::ComputeAreaOfExtSurfaceStartingFromBox(G4VSolid* aSolid,G4int Nstat)
 {
-  if ( Nstat == 0 ) return 0.;
+  if ( Nstat <= 0 ) return 0.;
   G4double area=1.;
   G4int i=0;
   G4int j=0;
@@ -194,7 +194,7 @@ G4double G4AdjointPosOnPhysVolGenerator::ComputeAreaOfExtSurfaceStartingFromBox(
 //
 G4double G4AdjointPosOnPhysVolGenerator::ComputeAreaOfExtSurfaceStartingFromSphere(G4VSolid* aSolid,G4int Nstat)
 {
-  if ( Nstat == 0 ) return 0.;
+  if ( Nstat <= 0 ) return 0.;
   G4double area=1.;
   G4int i=0;
   G4int j=0;
diff --git a/source/event/src/G4GeneralParticleSource.cc b/source/event/src/G4GeneralParticleSource.cc
index 6afec0f3618..26c752bedf6 100644
--- a/source/event/src/G4GeneralParticleSource.cc
+++ b/source/event/src/G4GeneralParticleSource.cc
@@ -64,6 +64,7 @@
 #include "Randomize.hh"
 #include "G4GeneralParticleSource.hh"
 #include "G4SingleParticleSource.hh"
+#include "G4UnitsTable.hh"
 
 #include "G4GeneralParticleSourceData.hh"
 
@@ -74,12 +75,12 @@ namespace {
     G4Mutex messangerInit = G4MUTEX_INITIALIZER;
 }
 
-G4GeneralParticleSource::G4GeneralParticleSource() : multiple_vertex(false), flat_sampling(false),normalised(false),
+G4GeneralParticleSource::G4GeneralParticleSource() : normalised(false),
     theMessenger(0)
 {
     GPSData = G4GeneralParticleSourceData::Instance();
-    currentSource = GPSData->GetCurrentSource();
-    currentSourceIdx = G4int(GPSData->GetSourceVectorSize() - 1);
+    //currentSource = GPSData->GetCurrentSource();
+    //currentSourceIdx = G4int(GPSData->GetSourceVectorSize() - 1);
 
     //Messenger is special, only a worker should instantiate it. Singleton pattern
     theMessenger = G4GeneralParticleSourceMessenger::GetInstance(this);
@@ -87,11 +88,10 @@ G4GeneralParticleSource::G4GeneralParticleSource() : multiple_vertex(false), fla
     G4AutoLock l(&messangerInit);
     static G4bool onlyOnce = false;
     if ( !onlyOnce ) {
-        theMessenger->SetParticleGun(currentSource);
+        theMessenger->SetParticleGun(GPSData->GetCurrentSource());
         IntensityNormalization();
         onlyOnce = true;
     }
-
 }
 
 G4GeneralParticleSource::~G4GeneralParticleSource()
@@ -101,12 +101,10 @@ G4GeneralParticleSource::~G4GeneralParticleSource()
 
 void G4GeneralParticleSource::AddaSource(G4double aV)
 {
-    normalised=false;
     GPSData->Lock();
     GPSData->AddASource(aV);
-    currentSource = GPSData->GetCurrentSource();
-    theMessenger->SetParticleGun(currentSource);
-    currentSourceIdx = G4int(GPSData->GetSourceVectorSize() - 1);
+    theMessenger->SetParticleGun(GPSData->GetCurrentSource());
+    //TODO: But do we really normalize here after each source?
     IntensityNormalization();
     GPSData->Unlock();
 }
@@ -114,31 +112,46 @@ void G4GeneralParticleSource::AddaSource(G4double aV)
 void G4GeneralParticleSource::IntensityNormalization()
 {
     GPSData->IntensityNormalise();
-    normalised=true;
+    normalised=GPSData->Normalised();
 }
 
 void G4GeneralParticleSource::ListSource()
 {
     G4cout << "The number of particle sources is: " << GPSData->GetIntensityVectorSize() << G4endl;
+    G4cout <<" Multiple Vertex sources: "<<GPSData->GetMultipleVertex();
+    G4cout <<" Flat Sampling flag: "<<GPSData->GetFlatSampling()<<G4endl;
+    const G4int currentIdx = GPSData->GetCurrentSourceIdx();
     for(G4int i=0; i<GPSData->GetIntensityVectorSize(); i++)
     {
-        G4cout << "\tsource " << i << " intensity is: " << GPSData->GetIntensity(i) << G4endl;;
+        G4cout << "\tsource " << i << " with intensity: " << GPSData->GetIntensity(i) << G4endl;
+        const G4SingleParticleSource* thisSrc = GPSData->GetCurrentSource(i);
+        G4cout <<" \t\tNum Particles: "<<thisSrc->GetNumberOfParticles()<<"; Particle type: "<<thisSrc->GetParticleDefinition()->GetParticleName()<<G4endl;
+        G4cout <<" \t\tEnergy: "<<G4BestUnit(thisSrc->GetParticleEnergy(),"Energy")<<G4endl;
+        G4cout <<" \t\tDirection: "<<thisSrc->GetAngDist()->GetDirection()<<"; Position: ";
+        G4cout <<G4BestUnit(thisSrc->GetPosDist()->GetCentreCoords(),"Length")<<G4endl;
+        G4cout <<" \t\tAngular Distribution: "<<thisSrc->GetAngDist()->GetDistType()<<G4endl;
+        G4cout <<" \t\tEnergy Distribution: "<<thisSrc->GetEneDist()->GetEnergyDisType()<<G4endl;
+        G4cout <<" \t\tPosition Distribution Type: "<<thisSrc->GetPosDist()->GetPosDisType();
+        G4cout <<"; Position Shape: "<<thisSrc->GetPosDist()->GetPosDisShape()<<G4endl;
     }
+    //Set back previous source
+    GPSData->GetCurrentSource(currentIdx);
 }
 
 void G4GeneralParticleSource::SetCurrentSourceto(G4int aV)
 {
     G4int id = aV;
-    if ( id <= GPSData->GetIntensityVectorSize() )
+    if ( id < GPSData->GetIntensityVectorSize() )
     {
-        currentSourceIdx = aV;
-        currentSource = GPSData->GetCurrentSource(id);
-        theMessenger->SetParticleGun(currentSource);
+        //currentSourceIdx = aV;
+        //currentSource = GPSData->GetCurrentSource(id);
+        theMessenger->SetParticleGun(GPSData->GetCurrentSource(id));
     }
     else
     {
-        G4cout << " source index is invalid " << G4endl;
-        G4cout << "    it shall be <= " << GPSData->GetIntensityVectorSize() << G4endl;
+    	G4ExceptionDescription msg;
+    	msg<<"Trying to set source to index "<<aV<<" but only "<<GPSData->GetIntensityVectorSize()<<" sources are defined.";
+    	G4Exception("G4GeneralParticleSoruce::SetCurrentSourceto","G4GPS004",FatalException,msg);
     }
 }
 
@@ -147,15 +160,13 @@ void G4GeneralParticleSource::SetCurrentSourceIntensity(G4double aV)
     GPSData->Lock();
     GPSData->SetCurrentSourceIntensity(aV);
     GPSData->Unlock();
-    normalised = false;
+    normalised = GPSData->Normalised();
 }
 
 void G4GeneralParticleSource::ClearAll()
 {
-    currentSourceIdx = -1;
-    currentSource = 0;
     GPSData->ClearSources();
-    normalised=false;
+    normalised=GPSData->Normalised();
 }
 
 void G4GeneralParticleSource::DeleteaSource(G4int aV)
@@ -164,7 +175,7 @@ void G4GeneralParticleSource::DeleteaSource(G4int aV)
     if ( id <= GPSData->GetIntensityVectorSize() )
     {
         GPSData->DeleteASource(aV);
-        normalised=false;
+        normalised=GPSData->Normalised();
     }
     else
     {
@@ -175,14 +186,15 @@ void G4GeneralParticleSource::DeleteaSource(G4int aV)
 
 void G4GeneralParticleSource::GeneratePrimaryVertex(G4Event* evt)
 {
-    if (!multiple_vertex)
+    if (!GPSData->GetMultipleVertex())
     {
+    	G4SingleParticleSource* currentSource = GPSData->GetCurrentSource();
         if (GPSData->GetIntensityVectorSize() > 1)
         {
             //Try to minimize locks
             if (! normalised ) {
                 //According to local variable, normalization is needed
-                //Check with underlying (shared resource), another
+                //Check with underlying shared resource, another
                 //thread could have already normalized this
                 GPSData->Lock();
                 G4bool norm = GPSData->Normalised();
@@ -190,16 +202,16 @@ void G4GeneralParticleSource::GeneratePrimaryVertex(G4Event* evt)
                     IntensityNormalization();
                 }
                 //This takes care of the case in which the local variable
-                //is False and the underlying source is.
+                //is False and the underlying resource is true.
                 normalised = GPSData->Normalised();
                 GPSData->Unlock();
             }
             G4double rndm = G4UniformRand();
             size_t i = 0 ;
-            if (!flat_sampling)
+            if (! GPSData->GetFlatSampling() )
             {
                 while ( rndm > GPSData->GetSourceProbability(i) ) i++;
-                    (currentSource = GPSData->GetCurrentSource(i));
+                currentSource = GPSData->GetCurrentSource(i);
             }
             else
             {
@@ -207,7 +219,7 @@ void G4GeneralParticleSource::GeneratePrimaryVertex(G4Event* evt)
                 currentSource = GPSData->GetCurrentSource(i);
             }
         }
-        currentSource-> GeneratePrimaryVertex(evt);
+        currentSource->GeneratePrimaryVertex(evt);
     } 
     else
     {
diff --git a/source/event/src/G4GeneralParticleSourceData.cc b/source/event/src/G4GeneralParticleSourceData.cc
index f454ec88935..0f6e848a6cf 100644
--- a/source/event/src/G4GeneralParticleSourceData.cc
+++ b/source/event/src/G4GeneralParticleSourceData.cc
@@ -64,7 +64,9 @@ namespace
 
 //G4GeneralParticleSourceData* G4GeneralParticleSourceData::theInstance = 0;
 
-G4GeneralParticleSourceData::G4GeneralParticleSourceData() : flat_sampling(false), normalised(false),currentSourceIdx(0)
+G4GeneralParticleSourceData::G4GeneralParticleSourceData() :
+		multiple_vertex(false) ,flat_sampling(false),
+		normalised(false),currentSourceIdx(0)
 {
     G4MUTEXINIT(mutex);
     
@@ -78,7 +80,6 @@ G4GeneralParticleSourceData::G4GeneralParticleSourceData() : flat_sampling(false
 
 }
 
-
 G4GeneralParticleSourceData::~G4GeneralParticleSourceData()
 {
   G4MUTEXDESTROY(mutex);
@@ -93,11 +94,6 @@ G4GeneralParticleSourceData* G4GeneralParticleSourceData::Instance()
     G4AutoLock lock(&singMutex);
     static G4GeneralParticleSourceData instance;
     return &instance;
-    // if(theInstance == NULL)
-    // {
-    //     theInstance = new G4GeneralParticleSourceData();
-    // }
-    // return theInstance;
 }
 
 void G4GeneralParticleSourceData::IntensityNormalise()
@@ -178,10 +174,22 @@ void G4GeneralParticleSourceData::ClearSources()
 {
     currentSourceIdx = -1;
     currentSource = NULL;
+    for ( std::vector<G4SingleParticleSource*>::iterator it = sourceVector.begin();
+    	  it != sourceVector.end() ; ++it ) { delete *it; }
     sourceVector.clear();
     sourceIntensity.clear();
+    normalised = false;
 }
 
+void G4GeneralParticleSourceData::SetVerbosityAllSources(G4int vl )
+{
+    for ( std::vector<G4SingleParticleSource*>::iterator it = sourceVector.begin();
+    	  it != sourceVector.end() ; ++it ) {
+    	(*it)->SetVerbosity(vl);
+
+    }
+
+}
 
 G4SingleParticleSource* G4GeneralParticleSourceData::GetCurrentSource(G4int idx)
 {
diff --git a/source/event/src/G4GeneralParticleSourceMessenger.cc b/source/event/src/G4GeneralParticleSourceMessenger.cc
index a218940dc9d..0c70b16c04d 100644
--- a/source/event/src/G4GeneralParticleSourceMessenger.cc
+++ b/source/event/src/G4GeneralParticleSourceMessenger.cc
@@ -172,7 +172,7 @@ G4GeneralParticleSourceMessenger::G4GeneralParticleSourceMessenger
   multiplevertexCmd->SetDefaultValue(false);
 
   flatsamplingCmd = new G4UIcmdWithABool("/gps/source/flatsampling",this);
-  flatsamplingCmd->SetGuidance("true for appling flat (biased) sampling among the sources");
+  flatsamplingCmd->SetGuidance("true for applying flat (biased) sampling among the sources");
   flatsamplingCmd->SetGuidance("Default is false");
   flatsamplingCmd->SetParameterName("flatsampling",true);
   flatsamplingCmd->SetDefaultValue(false);
@@ -202,6 +202,7 @@ G4GeneralParticleSourceMessenger::G4GeneralParticleSourceMessenger
   directionCmd = new G4UIcmdWith3Vector("/gps/direction",this);
   directionCmd->SetGuidance("Set momentum direction.");
   directionCmd->SetGuidance("Direction needs not to be a unit vector.");
+  directionCmd->SetGuidance("Angular distribution type is set to planar.");
   directionCmd->SetParameterName("Px","Py","Pz",false,false); 
   directionCmd->SetRange("Px != 0 || Py != 0 || Pz != 0");
   
@@ -213,7 +214,8 @@ G4GeneralParticleSourceMessenger::G4GeneralParticleSourceMessenger
   //energyCmd->SetUnitCandidates("eV keV MeV GeV TeV");
 
   positionCmd = new G4UIcmdWith3VectorAndUnit("/gps/position",this);
-  positionCmd->SetGuidance("Set starting position of the particle.");
+  positionCmd->SetGuidance("Set starting position of the particle for a Point like source.");
+  positionCmd->SetGuidance("Same effect as the two /gps/pos/type Point /gps/pos/centre commands.");
   positionCmd->SetParameterName("X","Y","Z",false,false);
   positionCmd->SetDefaultUnit("cm");
   //positionCmd->SetUnitCategory("Length");
@@ -309,7 +311,7 @@ G4GeneralParticleSourceMessenger::G4GeneralParticleSourceMessenger
 
   centreCmd1 = new G4UIcmdWith3VectorAndUnit("/gps/pos/centre",this);
   centreCmd1->SetGuidance("Set centre coordinates of source.");
-  centreCmd1->SetGuidance("   same effect as the /gps/position command");
+  //centreCmd1->SetGuidance("   same effect as the /gps/position command");
   centreCmd1->SetParameterName("X","Y","Z",false,false);
   centreCmd1->SetDefaultUnit("cm");
   //  centreCmd1->SetUnitCandidates("micron mm cm m km");
@@ -402,108 +404,108 @@ G4GeneralParticleSourceMessenger::G4GeneralParticleSourceMessenger
   confineCmd1->SetDefaultValue("NULL");
 
   // old implementations
-  typeCmd = new G4UIcmdWithAString("/gps/type",this);
-  typeCmd->SetGuidance("Sets source distribution type. (obsolete!)");
-  typeCmd->SetGuidance("Either Point, Beam, Plane, Surface or Volume");
-  typeCmd->SetParameterName("DisType",false,false);
-  typeCmd->SetDefaultValue("Point");
-  typeCmd->SetCandidates("Point Beam Plane Surface Volume");
-
-  shapeCmd = new G4UIcmdWithAString("/gps/shape",this);
-  shapeCmd->SetGuidance("Sets source shape type.(obsolete!)");
-  shapeCmd->SetParameterName("Shape",false,false);
-  shapeCmd->SetDefaultValue("NULL");
-  shapeCmd->SetCandidates("Circle Annulus Ellipse Square Rectangle Sphere Ellipsoid Cylinder Para");
-
-  centreCmd = new G4UIcmdWith3VectorAndUnit("/gps/centre",this);
-  centreCmd->SetGuidance("Set centre coordinates of source.(obsolete!)");
-  centreCmd->SetParameterName("X","Y","Z",false,false);
-  centreCmd->SetDefaultUnit("cm");
-  //  centreCmd->SetUnitCandidates("micron mm cm m km");
-
-  posrot1Cmd = new G4UIcmdWith3Vector("/gps/posrot1",this);
-  posrot1Cmd->SetGuidance("Set rotation matrix of x'.(obsolete!)");
-  posrot1Cmd->SetGuidance("Posrot1 does not need to be a unit vector.");
-  posrot1Cmd->SetParameterName("R1x","R1y","R1z",false,false); 
-  posrot1Cmd->SetRange("R1x != 0 || R1y != 0 || R1z != 0");
-
-  posrot2Cmd = new G4UIcmdWith3Vector("/gps/posrot2",this);
-  posrot2Cmd->SetGuidance("Set rotation matrix of y'.(obsolete!)");
-  posrot2Cmd->SetGuidance("Posrot2 does not need to be a unit vector.");
-  posrot2Cmd->SetParameterName("R2x","R2y","R2z",false,false); 
-  posrot2Cmd->SetRange("R2x != 0 || R2y != 0 || R2z != 0");
-
-  halfxCmd = new G4UIcmdWithADoubleAndUnit("/gps/halfx",this);
-  halfxCmd->SetGuidance("Set x half length of source.(obsolete!)");
-  halfxCmd->SetParameterName("Halfx",false,false);
-  halfxCmd->SetDefaultUnit("cm");
-  //  halfxCmd->SetUnitCandidates("micron mm cm m km");
-
-  halfyCmd = new G4UIcmdWithADoubleAndUnit("/gps/halfy",this);
-  halfyCmd->SetGuidance("Set y half length of source.(obsolete!)");
-  halfyCmd->SetParameterName("Halfy",false,false);
-  halfyCmd->SetDefaultUnit("cm");
-  //  halfyCmd->SetUnitCandidates("micron mm cm m km");
-
-  halfzCmd = new G4UIcmdWithADoubleAndUnit("/gps/halfz",this);
-  halfzCmd->SetGuidance("Set z half length of source.(obsolete!)");
-  halfzCmd->SetParameterName("Halfz",false,false);
-  halfzCmd->SetDefaultUnit("cm");
-  //  halfzCmd->SetUnitCandidates("micron mm cm m km");
-
-  radiusCmd = new G4UIcmdWithADoubleAndUnit("/gps/radius",this);
-  radiusCmd->SetGuidance("Set radius of source.(obsolete!)");
-  radiusCmd->SetParameterName("Radius",false,false);
-  radiusCmd->SetDefaultUnit("cm");
-  //  radiusCmd->SetUnitCandidates("micron mm cm m km");
-
-  radius0Cmd = new G4UIcmdWithADoubleAndUnit("/gps/radius0",this);
-  radius0Cmd->SetGuidance("Set inner radius of source.(obsolete!)");
-  radius0Cmd->SetParameterName("Radius0",false,false);
-  radius0Cmd->SetDefaultUnit("cm");
-  //  radius0Cmd->SetUnitCandidates("micron mm cm m km");
-
-  possigmarCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaposr",this);
-  possigmarCmd->SetGuidance("Set standard deviation of beam position in radial(obsolete!)");
-  possigmarCmd->SetParameterName("Sigmar",false,false);
-  possigmarCmd->SetDefaultUnit("cm");
-  // possigmarCmd->SetUnitCandidates("micron mm cm m km");
-
-  possigmaxCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaposx",this);
-  possigmaxCmd->SetGuidance("Set standard deviation of beam position in x-dir(obsolete!)");
-  possigmaxCmd->SetParameterName("Sigmax",false,false);
-  possigmaxCmd->SetDefaultUnit("cm");
-  //  possigmaxCmd->SetUnitCandidates("micron mm cm m km");
-
-  possigmayCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaposy",this);
-  possigmayCmd->SetGuidance("Set standard deviation of beam position in y-dir(obsolete!)");
-  possigmayCmd->SetParameterName("Sigmay",false,false);
-  possigmayCmd->SetDefaultUnit("cm");
-  //  possigmayCmd->SetUnitCandidates("micron mm cm m km");
-
-  paralpCmd = new G4UIcmdWithADoubleAndUnit("/gps/paralp",this);
-  paralpCmd->SetGuidance("Angle from y-axis of y' in Para(obsolete!)");
-  paralpCmd->SetParameterName("paralp",false,false);
-  paralpCmd->SetDefaultUnit("rad");
-  //  paralpCmd->SetUnitCandidates("rad deg");
-
-  partheCmd = new G4UIcmdWithADoubleAndUnit("/gps/parthe",this);
-  partheCmd->SetGuidance("Polar angle through centres of z faces(obsolete!)");
-  partheCmd->SetParameterName("parthe",false,false);
-  partheCmd->SetDefaultUnit("rad");
-  //  partheCmd->SetUnitCandidates("rad deg");
-
-  parphiCmd = new G4UIcmdWithADoubleAndUnit("/gps/parphi",this);
-  parphiCmd->SetGuidance("Azimuth angle through centres of z faces(obsolete!)");
-  parphiCmd->SetParameterName("parphi",false,false);
-  parphiCmd->SetDefaultUnit("rad");
-  //  parphiCmd->SetUnitCandidates("rad deg");
-
-  confineCmd = new G4UIcmdWithAString("/gps/confine",this);
-  confineCmd->SetGuidance("Confine source to volume (NULL to unset)(obsolete!) .");
-  confineCmd->SetGuidance("usage: confine VolName");
-  confineCmd->SetParameterName("VolName",false,false);
-  confineCmd->SetDefaultValue("NULL");
+ typeCmd = new G4UIcmdWithAString("/gps/type",this);
+ typeCmd->SetGuidance("Sets source distribution type. (obsolete!)");
+ typeCmd->SetGuidance("Either Point, Beam, Plane, Surface or Volume");
+ typeCmd->SetParameterName("DisType",false,false);
+ typeCmd->SetDefaultValue("Point");
+ typeCmd->SetCandidates("Point Beam Plane Surface Volume");
+
+ shapeCmd = new G4UIcmdWithAString("/gps/shape",this);
+ shapeCmd->SetGuidance("Sets source shape type.(obsolete!)");
+ shapeCmd->SetParameterName("Shape",false,false);
+ shapeCmd->SetDefaultValue("NULL");
+ shapeCmd->SetCandidates("Circle Annulus Ellipse Square Rectangle Sphere Ellipsoid Cylinder Para");
+
+ centreCmd = new G4UIcmdWith3VectorAndUnit("/gps/centre",this);
+ centreCmd->SetGuidance("Set centre coordinates of source.(obsolete!)");
+ centreCmd->SetParameterName("X","Y","Z",false,false);
+ centreCmd->SetDefaultUnit("cm");
+ //  centreCmd->SetUnitCandidates("micron mm cm m km");
+
+ posrot1Cmd = new G4UIcmdWith3Vector("/gps/posrot1",this);
+ posrot1Cmd->SetGuidance("Set rotation matrix of x'.(obsolete!)");
+ posrot1Cmd->SetGuidance("Posrot1 does not need to be a unit vector.");
+ posrot1Cmd->SetParameterName("R1x","R1y","R1z",false,false); 
+ posrot1Cmd->SetRange("R1x != 0 || R1y != 0 || R1z != 0");
+
+ posrot2Cmd = new G4UIcmdWith3Vector("/gps/posrot2",this);
+ posrot2Cmd->SetGuidance("Set rotation matrix of y'.(obsolete!)");
+ posrot2Cmd->SetGuidance("Posrot2 does not need to be a unit vector.");
+ posrot2Cmd->SetParameterName("R2x","R2y","R2z",false,false); 
+ posrot2Cmd->SetRange("R2x != 0 || R2y != 0 || R2z != 0");
+
+ halfxCmd = new G4UIcmdWithADoubleAndUnit("/gps/halfx",this);
+ halfxCmd->SetGuidance("Set x half length of source.(obsolete!)");
+ halfxCmd->SetParameterName("Halfx",false,false);
+ halfxCmd->SetDefaultUnit("cm");
+ //  halfxCmd->SetUnitCandidates("micron mm cm m km");
+
+ halfyCmd = new G4UIcmdWithADoubleAndUnit("/gps/halfy",this);
+ halfyCmd->SetGuidance("Set y half length of source.(obsolete!)");
+ halfyCmd->SetParameterName("Halfy",false,false);
+ halfyCmd->SetDefaultUnit("cm");
+ //  halfyCmd->SetUnitCandidates("micron mm cm m km");
+
+ halfzCmd = new G4UIcmdWithADoubleAndUnit("/gps/halfz",this);
+ halfzCmd->SetGuidance("Set z half length of source.(obsolete!)");
+ halfzCmd->SetParameterName("Halfz",false,false);
+ halfzCmd->SetDefaultUnit("cm");
+ //  halfzCmd->SetUnitCandidates("micron mm cm m km");
+
+ radiusCmd = new G4UIcmdWithADoubleAndUnit("/gps/radius",this);
+ radiusCmd->SetGuidance("Set radius of source.(obsolete!)");
+ radiusCmd->SetParameterName("Radius",false,false);
+ radiusCmd->SetDefaultUnit("cm");
+ //  radiusCmd->SetUnitCandidates("micron mm cm m km");
+
+ radius0Cmd = new G4UIcmdWithADoubleAndUnit("/gps/radius0",this);
+ radius0Cmd->SetGuidance("Set inner radius of source.(obsolete!)");
+ radius0Cmd->SetParameterName("Radius0",false,false);
+ radius0Cmd->SetDefaultUnit("cm");
+ //  radius0Cmd->SetUnitCandidates("micron mm cm m km");
+
+ possigmarCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaposr",this);
+ possigmarCmd->SetGuidance("Set standard deviation of beam position in radial(obsolete!)");
+ possigmarCmd->SetParameterName("Sigmar",false,false);
+ possigmarCmd->SetDefaultUnit("cm");
+ //  possigmarCmd->SetUnitCandidates("micron mm cm m km");
+
+ possigmaxCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaposx",this);
+ possigmaxCmd->SetGuidance("Set standard deviation of beam position in x-dir(obsolete!)");
+ possigmaxCmd->SetParameterName("Sigmax",false,false);
+ possigmaxCmd->SetDefaultUnit("cm");
+ //  possigmaxCmd->SetUnitCandidates("micron mm cm m km");
+
+ possigmayCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaposy",this);
+ possigmayCmd->SetGuidance("Set standard deviation of beam position in y-dir(obsolete!)");
+ possigmayCmd->SetParameterName("Sigmay",false,false);
+ possigmayCmd->SetDefaultUnit("cm");
+ //  possigmayCmd->SetUnitCandidates("micron mm cm m km");
+
+ paralpCmd = new G4UIcmdWithADoubleAndUnit("/gps/paralp",this);
+ paralpCmd->SetGuidance("Angle from y-axis of y' in Para(obsolete!)");
+ paralpCmd->SetParameterName("paralp",false,false);
+ paralpCmd->SetDefaultUnit("rad");
+ //  paralpCmd->SetUnitCandidates("rad deg");
+
+ partheCmd = new G4UIcmdWithADoubleAndUnit("/gps/parthe",this);
+ partheCmd->SetGuidance("Polar angle through centres of z faces(obsolete!)");
+ partheCmd->SetParameterName("parthe",false,false);
+ partheCmd->SetDefaultUnit("rad");
+ //  partheCmd->SetUnitCandidates("rad deg");
+
+ parphiCmd = new G4UIcmdWithADoubleAndUnit("/gps/parphi",this);
+ parphiCmd->SetGuidance("Azimuth angle through centres of z faces(obsolete!)");
+ parphiCmd->SetParameterName("parphi",false,false);
+ parphiCmd->SetDefaultUnit("rad");
+ //  parphiCmd->SetUnitCandidates("rad deg");
+
+ confineCmd = new G4UIcmdWithAString("/gps/confine",this);
+ confineCmd->SetGuidance("Confine source to volume (NULL to unset)(obsolete!) .");
+ confineCmd->SetGuidance("usage: confine VolName");
+ confineCmd->SetParameterName("VolName",false,false);
+ confineCmd->SetDefaultValue("NULL");
 
   // Angular distribution commands
   angularDirectory = new G4UIdirectory("/gps/ang/");
@@ -592,79 +594,79 @@ G4GeneralParticleSourceMessenger::G4GeneralParticleSourceMessenger
   surfnormCmd1->SetDefaultValue(false);
 
   // old ones
-  angtypeCmd = new G4UIcmdWithAString("/gps/angtype",this);
-  angtypeCmd->SetGuidance("Sets angular source distribution type (obsolete!)");
-  angtypeCmd->SetGuidance("Possible variables are: iso, cos planar beam1d beam2d or user");
-  angtypeCmd->SetParameterName("AngDis",false,false);
-  angtypeCmd->SetDefaultValue("iso");
-  angtypeCmd->SetCandidates("iso cos planar beam1d beam2d user");
-
-  angrot1Cmd = new G4UIcmdWith3Vector("/gps/angrot1",this);
-  angrot1Cmd->SetGuidance("Sets the x' vector for angular distribution(obsolete!) ");
-  angrot1Cmd->SetGuidance("Need not be a unit vector");
-  angrot1Cmd->SetParameterName("AR1x","AR1y","AR1z",false,false);
-  angrot1Cmd->SetRange("AR1x != 0 || AR1y != 0 || AR1z != 0");
-
-  angrot2Cmd = new G4UIcmdWith3Vector("/gps/angrot2",this);
-  angrot2Cmd->SetGuidance("Sets the y' vector for angular distribution (obsolete!)");
-  angrot2Cmd->SetGuidance("Need not be a unit vector");
-  angrot2Cmd->SetParameterName("AR2x","AR2y","AR2z",false,false);
-  angrot2Cmd->SetRange("AR2x != 0 || AR2y != 0 || AR2z != 0");
-
-  minthetaCmd = new G4UIcmdWithADoubleAndUnit("/gps/mintheta",this);
-  minthetaCmd->SetGuidance("Set minimum theta (obsolete!)");
-  minthetaCmd->SetParameterName("MinTheta",false,false);
-  minthetaCmd->SetDefaultUnit("rad");
-  //  minthetaCmd->SetUnitCandidates("rad deg");
-
-  maxthetaCmd = new G4UIcmdWithADoubleAndUnit("/gps/maxtheta",this);
-  maxthetaCmd->SetGuidance("Set maximum theta (obsolete!)");
-  maxthetaCmd->SetParameterName("MaxTheta",false,false);
-  maxthetaCmd->SetDefaultValue(3.1416);
-  maxthetaCmd->SetDefaultUnit("rad");
+ angtypeCmd = new G4UIcmdWithAString("/gps/angtype",this);
+ angtypeCmd->SetGuidance("Sets angular source distribution type (obsolete!)");
+ angtypeCmd->SetGuidance("Possible variables are: iso, cos planar beam1d beam2d or user");
+ angtypeCmd->SetParameterName("AngDis",false,false);
+ angtypeCmd->SetDefaultValue("iso");
+ angtypeCmd->SetCandidates("iso cos planar beam1d beam2d user");
+
+ angrot1Cmd = new G4UIcmdWith3Vector("/gps/angrot1",this);
+ angrot1Cmd->SetGuidance("Sets the x' vector for angular distribution(obsolete!) ");
+ angrot1Cmd->SetGuidance("Need not be a unit vector");
+ angrot1Cmd->SetParameterName("AR1x","AR1y","AR1z",false,false);
+ angrot1Cmd->SetRange("AR1x != 0 || AR1y != 0 || AR1z != 0");
+
+ angrot2Cmd = new G4UIcmdWith3Vector("/gps/angrot2",this);
+ angrot2Cmd->SetGuidance("Sets the y' vector for angular distribution (obsolete!)");
+ angrot2Cmd->SetGuidance("Need not be a unit vector");
+ angrot2Cmd->SetParameterName("AR2x","AR2y","AR2z",false,false);
+ angrot2Cmd->SetRange("AR2x != 0 || AR2y != 0 || AR2z != 0");
+
+ minthetaCmd = new G4UIcmdWithADoubleAndUnit("/gps/mintheta",this);
+ minthetaCmd->SetGuidance("Set minimum theta (obsolete!)");
+ minthetaCmd->SetParameterName("MinTheta",false,false);
+ minthetaCmd->SetDefaultUnit("rad");
+ //   minthetaCmd->SetUnitCandidates("rad deg");
+
+ maxthetaCmd = new G4UIcmdWithADoubleAndUnit("/gps/maxtheta",this);
+ maxthetaCmd->SetGuidance("Set maximum theta (obsolete!)");
+ maxthetaCmd->SetParameterName("MaxTheta",false,false);
+ maxthetaCmd->SetDefaultValue(3.1416);
+ maxthetaCmd->SetDefaultUnit("rad");
   //  maxthetaCmd->SetUnitCandidates("rad deg");
 
-  minphiCmd = new G4UIcmdWithADoubleAndUnit("/gps/minphi",this);
-  minphiCmd->SetGuidance("Set minimum phi (obsolete!)");
-  minphiCmd->SetParameterName("MinPhi",false,false);
-  minphiCmd->SetDefaultUnit("rad");
+ minphiCmd = new G4UIcmdWithADoubleAndUnit("/gps/minphi",this);
+ minphiCmd->SetGuidance("Set minimum phi (obsolete!)");
+ minphiCmd->SetParameterName("MinPhi",false,false);
+ minphiCmd->SetDefaultUnit("rad");
   //  minphiCmd->SetUnitCandidates("rad deg");
 
-  maxphiCmd = new G4UIcmdWithADoubleAndUnit("/gps/maxphi",this);
-  maxphiCmd->SetGuidance("Set maximum phi(obsolete!)");
-  maxphiCmd->SetParameterName("MaxPhi",false,false);
-  maxphiCmd->SetDefaultUnit("rad");
+ maxphiCmd = new G4UIcmdWithADoubleAndUnit("/gps/maxphi",this);
+ maxphiCmd->SetGuidance("Set maximum phi(obsolete!)");
+ maxphiCmd->SetParameterName("MaxPhi",false,false);
+ maxphiCmd->SetDefaultUnit("rad");
   //  maxphiCmd->SetUnitCandidates("rad deg");
 
-  angsigmarCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaangr",this);
-  angsigmarCmd->SetGuidance("Set standard deviation of beam direction in radial(obsolete!).");
-  angsigmarCmd->SetParameterName("Sigmara",false,false);
-  angsigmarCmd->SetDefaultUnit("rad");
+ angsigmarCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaangr",this);
+ angsigmarCmd->SetGuidance("Set standard deviation of beam direction in radial(obsolete!).");
+ angsigmarCmd->SetParameterName("Sigmara",false,false);
+ angsigmarCmd->SetDefaultUnit("rad");
   //  angsigmarCmd->SetUnitCandidates("rad deg");
 
-  angsigmaxCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaangx",this);
-  angsigmaxCmd->SetGuidance("Set standard deviation of beam direction in x-direc(obsolete!).");
-  angsigmaxCmd->SetParameterName("Sigmaxa",false,false);
-  angsigmaxCmd->SetDefaultUnit("rad");
+ angsigmaxCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaangx",this);
+ angsigmaxCmd->SetGuidance("Set standard deviation of beam direction in x-direc(obsolete!).");
+ angsigmaxCmd->SetParameterName("Sigmaxa",false,false);
+ angsigmaxCmd->SetDefaultUnit("rad");
   //  angsigmaxCmd->SetUnitCandidates("rad deg");
 
-  angsigmayCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaangy",this);
-  angsigmayCmd->SetGuidance("Set standard deviation of beam direction in y-direc.(obsolete!)");
-  angsigmayCmd->SetParameterName("Sigmaya",false,false);
-  angsigmayCmd->SetDefaultUnit("rad");
+ angsigmayCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaangy",this);
+ angsigmayCmd->SetGuidance("Set standard deviation of beam direction in y-direc.(obsolete!)");
+ angsigmayCmd->SetParameterName("Sigmaya",false,false);
+ angsigmayCmd->SetDefaultUnit("rad");
   //  angsigmayCmd->SetUnitCandidates("rad deg");
 
-  useuserangaxisCmd = new G4UIcmdWithABool("/gps/useuserangaxis",this);
-  useuserangaxisCmd->SetGuidance("true for using user defined angular co-ordinates(obsolete!)");
-  useuserangaxisCmd->SetGuidance("Default is false");
-  useuserangaxisCmd->SetParameterName("useuserangaxis",true);
-  useuserangaxisCmd->SetDefaultValue(false);
+ useuserangaxisCmd = new G4UIcmdWithABool("/gps/useuserangaxis",this);
+ useuserangaxisCmd->SetGuidance("true for using user defined angular co-ordinates(obsolete!)");
+ useuserangaxisCmd->SetGuidance("Default is false");
+ useuserangaxisCmd->SetParameterName("useuserangaxis",true);
+ useuserangaxisCmd->SetDefaultValue(false);
 
-  surfnormCmd = new G4UIcmdWithABool("/gps/surfnorm",this);
-  surfnormCmd->SetGuidance("Makes a user-defined distribution with respect to surface normals rather than x,y,z axes (obsolete!).");
-  surfnormCmd->SetGuidance("Default is false");
-  surfnormCmd->SetParameterName("surfnorm",true);
-  surfnormCmd->SetDefaultValue(false);
+ surfnormCmd = new G4UIcmdWithABool("/gps/surfnorm",this);
+ surfnormCmd->SetGuidance("Makes a user-defined distribution with respect to surface normals rather than x,y,z axes (obsolete!).");
+ surfnormCmd->SetGuidance("Default is false");
+ surfnormCmd->SetParameterName("surfnorm",true);
+ surfnormCmd->SetDefaultValue(false);
 
   // Energy commands
 
@@ -739,68 +741,68 @@ G4GeneralParticleSourceMessenger::G4GeneralParticleSourceMessenger
   diffspecCmd1->SetDefaultValue(true);
 
   //old ones
-  energytypeCmd = new G4UIcmdWithAString("/gps/energytype",this);
-  energytypeCmd->SetGuidance("Sets energy distribution type (obsolete!)");
-  energytypeCmd->SetParameterName("EnergyDis",false,false);
-  energytypeCmd->SetDefaultValue("Mono");
-  energytypeCmd->SetCandidates("Mono Lin Pow Exp Gauss Brem Bbody Cdg User Arb Epn");
-
-  eminCmd = new G4UIcmdWithADoubleAndUnit("/gps/emin",this);
-  eminCmd->SetGuidance("Sets Emin (obsolete!)");
-  eminCmd->SetParameterName("emin",false,false);
-  eminCmd->SetDefaultUnit("keV");
+ energytypeCmd = new G4UIcmdWithAString("/gps/energytype",this);
+ energytypeCmd->SetGuidance("Sets energy distribution type (obsolete!)");
+ energytypeCmd->SetParameterName("EnergyDis",false,false);
+ energytypeCmd->SetDefaultValue("Mono");
+ energytypeCmd->SetCandidates("Mono Lin Pow Exp Gauss Brem Bbody Cdg User Arb Epn");
+
+ eminCmd = new G4UIcmdWithADoubleAndUnit("/gps/emin",this);
+ eminCmd->SetGuidance("Sets Emin (obsolete!)");
+ eminCmd->SetParameterName("emin",false,false);
+ eminCmd->SetDefaultUnit("keV");
   //  eminCmd->SetUnitCandidates("eV keV MeV GeV TeV PeV");
 
-  emaxCmd = new G4UIcmdWithADoubleAndUnit("/gps/emax",this);
-  emaxCmd->SetGuidance("Sets Emax (obsolete!)");
-  emaxCmd->SetParameterName("emax",false,false);
-  emaxCmd->SetDefaultUnit("keV");
+ emaxCmd = new G4UIcmdWithADoubleAndUnit("/gps/emax",this);
+ emaxCmd->SetGuidance("Sets Emax (obsolete!)");
+ emaxCmd->SetParameterName("emax",false,false);
+ emaxCmd->SetDefaultUnit("keV");
   //  emaxCmd->SetUnitCandidates("eV keV MeV GeV TeV PeV");
 
-  monoenergyCmd = new G4UIcmdWithADoubleAndUnit("/gps/monoenergy",this);
-  monoenergyCmd->SetGuidance("Sets Monoenergy (obsolete, use gps/energy instead!)");
-  monoenergyCmd->SetParameterName("monoenergy",false,false);
-  monoenergyCmd->SetDefaultUnit("keV");
+ monoenergyCmd = new G4UIcmdWithADoubleAndUnit("/gps/monoenergy",this);
+ monoenergyCmd->SetGuidance("Sets Monoenergy (obsolete, use gps/energy instead!)");
+ monoenergyCmd->SetParameterName("monoenergy",false,false);
+ monoenergyCmd->SetDefaultUnit("keV");
   //  monoenergyCmd->SetUnitCandidates("eV keV MeV GeV TeV PeV");
 
-  engsigmaCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmae",this);
-  engsigmaCmd->SetGuidance("Sets the standard deviation for Gaussian energy dist.(obsolete!)");
-  engsigmaCmd->SetParameterName("Sigmae",false,false);
-  engsigmaCmd->SetDefaultUnit("keV");
+ engsigmaCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmae",this);
+ engsigmaCmd->SetGuidance("Sets the standard deviation for Gaussian energy dist.(obsolete!)");
+ engsigmaCmd->SetParameterName("Sigmae",false,false);
+ engsigmaCmd->SetDefaultUnit("keV");
   //  engsigmaCmd->SetUnitCandidates("eV keV MeV GeV TeV PeV");
 
-  alphaCmd = new G4UIcmdWithADouble("/gps/alpha",this);
-  alphaCmd->SetGuidance("Sets Alpha (index) for power-law energy dist(obsolete!).");
-  alphaCmd->SetParameterName("alpha",false,false);
+ alphaCmd = new G4UIcmdWithADouble("/gps/alpha",this);
+ alphaCmd->SetGuidance("Sets Alpha (index) for power-law energy dist(obsolete!).");
+ alphaCmd->SetParameterName("alpha",false,false);
   
-  tempCmd = new G4UIcmdWithADouble("/gps/temp",this);
-  tempCmd->SetGuidance("Sets the temperature for Brem and BBody (in Kelvin)(obsolete!)");
-  tempCmd->SetParameterName("temp",false,false);
+ tempCmd = new G4UIcmdWithADouble("/gps/temp",this);
+ tempCmd->SetGuidance("Sets the temperature for Brem and BBody (in Kelvin)(obsolete!)");
+ tempCmd->SetParameterName("temp",false,false);
 
-  ezeroCmd = new G4UIcmdWithADouble("/gps/ezero",this);
-  ezeroCmd->SetGuidance("Sets ezero exponential distributions (in MeV)(obsolete!)");
-  ezeroCmd->SetParameterName("ezero",false,false);
+ ezeroCmd = new G4UIcmdWithADouble("/gps/ezero",this);
+ ezeroCmd->SetGuidance("Sets ezero exponential distributions (in MeV)(obsolete!)");
+ ezeroCmd->SetParameterName("ezero",false,false);
 
-  gradientCmd = new G4UIcmdWithADouble("/gps/gradient",this);
-  gradientCmd->SetGuidance("Sets the gradient for Lin distributions (in 1/MeV)(obsolete!)");
-  gradientCmd->SetParameterName("gradient",false,false);
+ gradientCmd = new G4UIcmdWithADouble("/gps/gradient",this);
+ gradientCmd->SetGuidance("Sets the gradient for Lin distributions (in 1/MeV)(obsolete!)");
+ gradientCmd->SetParameterName("gradient",false,false);
 
-  interceptCmd = new G4UIcmdWithADouble("/gps/intercept",this);
-  interceptCmd->SetGuidance("Sets the intercept for Lin distributions (in MeV)(obsolete!)");
-  interceptCmd->SetParameterName("intercept",false,false);
+ interceptCmd = new G4UIcmdWithADouble("/gps/intercept",this);
+ interceptCmd->SetGuidance("Sets the intercept for Lin distributions (in MeV)(obsolete!)");
+ interceptCmd->SetParameterName("intercept",false,false);
 
-  calculateCmd = new G4UIcmdWithoutParameter("/gps/calculate",this);
-  calculateCmd->SetGuidance("Calculates distributions for Cdg and BBody(obsolete!)");
+ calculateCmd = new G4UIcmdWithoutParameter("/gps/calculate",this);
+ calculateCmd->SetGuidance("Calculates distributions for Cdg and BBody(obsolete!)");
 
-  energyspecCmd = new G4UIcmdWithABool("/gps/energyspec",this);
-  energyspecCmd->SetGuidance("True for energy and false for momentum spectra(obsolete!)");
-  energyspecCmd->SetParameterName("energyspec",true);
-  energyspecCmd->SetDefaultValue(true);
+ energyspecCmd = new G4UIcmdWithABool("/gps/energyspec",this);
+ energyspecCmd->SetGuidance("True for energy and false for momentum spectra(obsolete!)");
+ energyspecCmd->SetParameterName("energyspec",true);
+ energyspecCmd->SetDefaultValue(true);
 
-  diffspecCmd = new G4UIcmdWithABool("/gps/diffspec",this);
-  diffspecCmd->SetGuidance("True for differential and flase for integral spectra(obsolete!)");
-  diffspecCmd->SetParameterName("diffspec",true);
-  diffspecCmd->SetDefaultValue(true);
+ diffspecCmd = new G4UIcmdWithABool("/gps/diffspec",this);
+ diffspecCmd->SetGuidance("True for differential and flase for integral spectra(obsolete!)");
+ diffspecCmd->SetParameterName("diffspec",true);
+ diffspecCmd->SetDefaultValue(true);
 
   // Biasing + histograms in general
   histDirectory = new G4UIdirectory("/gps/hist/");
@@ -835,53 +837,53 @@ G4GeneralParticleSourceMessenger::G4GeneralParticleSourceMessenger
   arbintCmd1->SetCandidates("Lin Log Exp Spline");
 
   // old ones
-  histnameCmd = new G4UIcmdWithAString("/gps/histname",this);
-  histnameCmd->SetGuidance("Sets histogram type (obsolete!)");
-  histnameCmd->SetParameterName("HistType",false,false);
-  histnameCmd->SetDefaultValue("biasx");
-  histnameCmd->SetCandidates("biasx biasy biasz biast biasp biase biaspt biaspp theta phi energy arb epn");
-
-  // re-set the histograms
-  resethistCmd = new G4UIcmdWithAString("/gps/resethist",this);
-  resethistCmd->SetGuidance("Re-Set the histogram (obsolete!)");
-  resethistCmd->SetParameterName("HistType",false,false);
-  resethistCmd->SetDefaultValue("energy");
-  resethistCmd->SetCandidates("biasx biasy biasz biast biasp biase biaspt biaspp theta phi energy arb epn");
-
-  histpointCmd = new G4UIcmdWith3Vector("/gps/histpoint",this);
-  histpointCmd->SetGuidance("Allows user to define a histogram (obsolete!)");
-  histpointCmd->SetGuidance("Enter: Ehi Weight");
-  histpointCmd->SetParameterName("Ehi","Weight","Junk",false,false);
-  histpointCmd->SetRange("Ehi >= 0. && Weight >= 0.");
-
-  arbintCmd = new G4UIcmdWithAString("/gps/arbint",this);
-  arbintCmd->SetGuidance("Sets Arbitrary Interpolation type.(obsolete!) ");
-  arbintCmd->SetParameterName("int",false,false);
-  arbintCmd->SetDefaultValue("NULL");
-  arbintCmd->SetCandidates("Lin Log Exp Spline");
+ histnameCmd = new G4UIcmdWithAString("/gps/histname",this);
+ histnameCmd->SetGuidance("Sets histogram type (obsolete!)");
+ histnameCmd->SetParameterName("HistType",false,false);
+ histnameCmd->SetDefaultValue("biasx");
+ histnameCmd->SetCandidates("biasx biasy biasz biast biasp biase biaspt biaspp theta phi energy arb epn");
+
+ // re-set the histograms
+ resethistCmd = new G4UIcmdWithAString("/gps/resethist",this);
+ resethistCmd->SetGuidance("Re-Set the histogram (obsolete!)");
+ resethistCmd->SetParameterName("HistType",false,false);
+ resethistCmd->SetDefaultValue("energy");
+ resethistCmd->SetCandidates("biasx biasy biasz biast biasp biase biaspt biaspp theta phi energy arb epn");
+
+ histpointCmd = new G4UIcmdWith3Vector("/gps/histpoint",this);
+ histpointCmd->SetGuidance("Allows user to define a histogram (obsolete!)");
+ histpointCmd->SetGuidance("Enter: Ehi Weight");
+ histpointCmd->SetParameterName("Ehi","Weight","Junk",false,false);
+ histpointCmd->SetRange("Ehi >= 0. && Weight >= 0.");
+
+ arbintCmd = new G4UIcmdWithAString("/gps/arbint",this);
+ arbintCmd->SetGuidance("Sets Arbitrary Interpolation type.(obsolete!) ");
+ arbintCmd->SetParameterName("int",false,false);
+ arbintCmd->SetDefaultValue("NULL");
+ arbintCmd->SetCandidates("Lin Log Exp Spline");
 
 }
 
 G4GeneralParticleSourceMessenger::~G4GeneralParticleSourceMessenger()
 {
   delete positionDirectory;
-  delete typeCmd;
-  delete shapeCmd;
-  delete centreCmd;
-  delete posrot1Cmd;
-  delete posrot2Cmd;
-  delete halfxCmd;
-  delete halfyCmd;
-  delete halfzCmd;
-  delete radiusCmd;
-  delete radius0Cmd;
-  delete possigmarCmd;
-  delete possigmaxCmd;
-  delete possigmayCmd;
-  delete paralpCmd;
-  delete partheCmd;
-  delete parphiCmd;
-  delete confineCmd;
+ delete typeCmd;
+ delete shapeCmd;
+ delete centreCmd;
+ delete posrot1Cmd;
+ delete posrot2Cmd;
+ delete halfxCmd;
+ delete halfyCmd;
+ delete halfzCmd;
+ delete radiusCmd;
+ delete radius0Cmd;
+ delete possigmarCmd;
+ delete possigmaxCmd;
+ delete possigmayCmd;
+ delete paralpCmd;
+ delete partheCmd;
+ delete parphiCmd;
+ delete confineCmd;
   delete typeCmd1;
   delete shapeCmd1;
   delete centreCmd1;
@@ -901,18 +903,18 @@ G4GeneralParticleSourceMessenger::~G4GeneralParticleSourceMessenger()
   delete confineCmd1;
 
   delete angularDirectory;
-  delete angtypeCmd;
-  delete angrot1Cmd;
-  delete angrot2Cmd;
-  delete minthetaCmd;
-  delete maxthetaCmd;
-  delete minphiCmd;
-  delete maxphiCmd;
-  delete angsigmarCmd;
-  delete angsigmaxCmd;
-  delete angsigmayCmd;
-  delete useuserangaxisCmd;
-  delete surfnormCmd;
+ delete angtypeCmd;
+ delete angrot1Cmd;
+ delete angrot2Cmd;
+ delete minthetaCmd;
+ delete maxthetaCmd;
+ delete minphiCmd;
+ delete maxphiCmd;
+ delete angsigmarCmd;
+ delete angsigmaxCmd;
+ delete angsigmayCmd;
+ delete useuserangaxisCmd;
+ delete surfnormCmd;
   delete angtypeCmd1;
   delete angrot1Cmd1;
   delete angrot2Cmd1;
@@ -928,19 +930,19 @@ G4GeneralParticleSourceMessenger::~G4GeneralParticleSourceMessenger()
   delete surfnormCmd1;
 
   delete energyDirectory;
-  delete energytypeCmd;
-  delete eminCmd;
-  delete emaxCmd;
-  delete monoenergyCmd;
-  delete engsigmaCmd;
-  delete alphaCmd;
-  delete tempCmd;
-  delete ezeroCmd;
-  delete gradientCmd;
-  delete interceptCmd;
-  delete calculateCmd;
-  delete energyspecCmd;
-  delete diffspecCmd;
+ delete energytypeCmd;
+ delete eminCmd;
+ delete emaxCmd;
+ delete monoenergyCmd;
+ delete engsigmaCmd;
+ delete alphaCmd;
+ delete tempCmd;
+ delete ezeroCmd;
+ delete gradientCmd;
+ delete interceptCmd;
+ delete calculateCmd;
+ delete energyspecCmd;
+ delete diffspecCmd;
   delete energytypeCmd1;
   delete eminCmd1;
   delete emaxCmd1;
@@ -994,321 +996,323 @@ G4GeneralParticleSourceMessenger::~G4GeneralParticleSourceMessenger()
   theInstance = 0;
 }
 
-
 #define CHECKPG() { if (fParticleGun==NULL) { \
+                 G4ExceptionDescription msg; \
+                 msg << "Command "<< command->GetCommandPath()<<"/";\
+                 msg<<command->GetCommandName() << " used but no particle sources are set.";\
+                 msg <<" Add at least a source with: /gps/source/add.";\
 		      G4Exception("G4GeneralParticleSourceMessenger::SetNewValue","G4GPS003",\
-				  FatalException,"Before using this command set a partilce gun"); return;\
+				  FatalException,msg); return;\
     } }
 
-
 void G4GeneralParticleSourceMessenger::SetNewValue(G4UIcommand *command, G4String newValues)
 {
-  if(command == typeCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetPosDisType(newValues);
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == shapeCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetPosDisShape(newValues);
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == centreCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetCentreCoords(centreCmd->GetNew3VectorValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == posrot1Cmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetPosRot1(posrot1Cmd->GetNew3VectorValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == posrot2Cmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetPosRot2(posrot2Cmd->GetNew3VectorValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == halfxCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetHalfX(halfxCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == halfyCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetHalfY(halfyCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == halfzCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetHalfZ(halfzCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == radiusCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetRadius(radiusCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == radius0Cmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetRadius0(radius0Cmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == possigmarCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetBeamSigmaInR(possigmarCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == possigmaxCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetBeamSigmaInX(possigmaxCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == possigmayCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetBeamSigmaInY(possigmayCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == paralpCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetParAlpha(paralpCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == partheCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetParTheta(partheCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == parphiCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->SetParPhi(parphiCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == confineCmd)
-    {
-      CHECKPG(); fParticleGun->GetPosDist()->ConfineSourceToVolume(newValues);
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == angtypeCmd)
-    {
-      CHECKPG(); fParticleGun->GetAngDist()->SetAngDistType(newValues);
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == angrot1Cmd)
-    {
-      CHECKPG();
-      G4String a = "angref1";
-      fParticleGun->GetAngDist()->DefineAngRefAxes(a,angrot1Cmd->GetNew3VectorValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == angrot2Cmd)
-    {
-      CHECKPG();
-      G4String a = "angref2";
-      fParticleGun->GetAngDist()->DefineAngRefAxes(a,angrot2Cmd->GetNew3VectorValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == minthetaCmd)
-    {
-      CHECKPG(); fParticleGun->GetAngDist()->SetMinTheta(minthetaCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == minphiCmd)
-    {
-      CHECKPG(); fParticleGun->GetAngDist()->SetMinPhi(minphiCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == maxthetaCmd)
-    {
-      CHECKPG(); fParticleGun->GetAngDist()->SetMaxTheta(maxthetaCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == maxphiCmd)
-    {
-      CHECKPG(); fParticleGun->GetAngDist()->SetMaxPhi(maxphiCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == angsigmarCmd)
-    {
-      CHECKPG(); fParticleGun->GetAngDist()->SetBeamSigmaInAngR(angsigmarCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == angsigmaxCmd)
-    {
-      CHECKPG(); fParticleGun->GetAngDist()->SetBeamSigmaInAngX(angsigmaxCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == angsigmayCmd)
-    {
-      CHECKPG(); fParticleGun->GetAngDist()->SetBeamSigmaInAngY(angsigmayCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == useuserangaxisCmd)
-    {
-      CHECKPG(); fParticleGun->GetAngDist()->SetUseUserAngAxis(useuserangaxisCmd->GetNewBoolValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == surfnormCmd)
-    {
-      CHECKPG(); fParticleGun->GetAngDist()->SetUserWRTSurface(surfnormCmd->GetNewBoolValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == energytypeCmd)
-    {
-      CHECKPG(); fParticleGun->GetEneDist()->SetEnergyDisType(newValues);
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == eminCmd)
-    {
-      CHECKPG(); fParticleGun->GetEneDist()->SetEmin(eminCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == emaxCmd)
-    {
-      CHECKPG(); fParticleGun->GetEneDist()->SetEmax(emaxCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == monoenergyCmd)
-    {
-      CHECKPG(); fParticleGun->GetEneDist()->SetMonoEnergy(monoenergyCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == engsigmaCmd)
-    {
-      CHECKPG(); fParticleGun->GetEneDist()->SetBeamSigmaInE(engsigmaCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == alphaCmd)
-    {
-      CHECKPG(); fParticleGun->GetEneDist()->SetAlpha(alphaCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == tempCmd)
-    {
-      CHECKPG(); fParticleGun->GetEneDist()->SetTemp(tempCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == ezeroCmd)
-    {
-      CHECKPG(); fParticleGun->GetEneDist()->SetEzero(ezeroCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == gradientCmd)
-    {
-      CHECKPG(); fParticleGun->GetEneDist()->SetGradient(gradientCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == interceptCmd)
-    {
-      CHECKPG(); fParticleGun->GetEneDist()->SetInterCept(interceptCmd->GetNewDoubleValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == calculateCmd)
-    {
-      CHECKPG(); fParticleGun->GetEneDist()->Calculate();
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == energyspecCmd)
-    {
-      CHECKPG(); fParticleGun->GetEneDist()->InputEnergySpectra(energyspecCmd->GetNewBoolValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == diffspecCmd)
-    {
-      CHECKPG(); fParticleGun->GetEneDist()->InputDifferentialSpectra(diffspecCmd->GetNewBoolValue(newValues));
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == histnameCmd)
-    {
-      histtype = newValues;
-      G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
-             << " The command is obsolete and will be removed soon." << G4endl
-             << " Please try to use the new structured commands!" << G4endl;
-    }
-  else if(command == histpointCmd)
+ if(command == typeCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetPosDisType(newValues);
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == shapeCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetPosDisShape(newValues);
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == centreCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetCentreCoords(centreCmd->GetNew3VectorValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == posrot1Cmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetPosRot1(posrot1Cmd->GetNew3VectorValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == posrot2Cmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetPosRot2(posrot2Cmd->GetNew3VectorValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == halfxCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetHalfX(halfxCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == halfyCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetHalfY(halfyCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == halfzCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetHalfZ(halfzCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == radiusCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetRadius(radiusCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == radius0Cmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetRadius0(radius0Cmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == possigmarCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetBeamSigmaInR(possigmarCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == possigmaxCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetBeamSigmaInX(possigmaxCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == possigmayCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetBeamSigmaInY(possigmayCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == paralpCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetParAlpha(paralpCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == partheCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetParTheta(partheCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == parphiCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->SetParPhi(parphiCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == confineCmd)
+   {
+     CHECKPG(); fParticleGun->GetPosDist()->ConfineSourceToVolume(newValues);
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == angtypeCmd)
+   {
+     CHECKPG(); fParticleGun->GetAngDist()->SetAngDistType(newValues);
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == angrot1Cmd)
+   {
+     CHECKPG();
+     G4String a = "angref1";
+     fParticleGun->GetAngDist()->DefineAngRefAxes(a,angrot1Cmd->GetNew3VectorValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == angrot2Cmd)
+   {
+     CHECKPG();
+     G4String a = "angref2";
+     fParticleGun->GetAngDist()->DefineAngRefAxes(a,angrot2Cmd->GetNew3VectorValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == minthetaCmd)
+   {
+     CHECKPG(); fParticleGun->GetAngDist()->SetMinTheta(minthetaCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == minphiCmd)
+   {
+     CHECKPG(); fParticleGun->GetAngDist()->SetMinPhi(minphiCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == maxthetaCmd)
+   {
+     CHECKPG(); fParticleGun->GetAngDist()->SetMaxTheta(maxthetaCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == maxphiCmd)
+   {
+     CHECKPG(); fParticleGun->GetAngDist()->SetMaxPhi(maxphiCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == angsigmarCmd)
+   {
+     CHECKPG(); fParticleGun->GetAngDist()->SetBeamSigmaInAngR(angsigmarCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == angsigmaxCmd)
+   {
+     CHECKPG(); fParticleGun->GetAngDist()->SetBeamSigmaInAngX(angsigmaxCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == angsigmayCmd)
+   {
+     CHECKPG(); fParticleGun->GetAngDist()->SetBeamSigmaInAngY(angsigmayCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == useuserangaxisCmd)
+   {
+     CHECKPG(); fParticleGun->GetAngDist()->SetUseUserAngAxis(useuserangaxisCmd->GetNewBoolValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == surfnormCmd)
+   {
+     CHECKPG(); fParticleGun->GetAngDist()->SetUserWRTSurface(surfnormCmd->GetNewBoolValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == energytypeCmd)
+   {
+     CHECKPG(); fParticleGun->GetEneDist()->SetEnergyDisType(newValues);
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == eminCmd)
+   {
+     CHECKPG(); fParticleGun->GetEneDist()->SetEmin(eminCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == emaxCmd)
+   {
+     CHECKPG(); fParticleGun->GetEneDist()->SetEmax(emaxCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == monoenergyCmd)
+   {
+     CHECKPG(); fParticleGun->GetEneDist()->SetMonoEnergy(monoenergyCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == engsigmaCmd)
+   {
+     CHECKPG(); fParticleGun->GetEneDist()->SetBeamSigmaInE(engsigmaCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == alphaCmd)
+   {
+     CHECKPG(); fParticleGun->GetEneDist()->SetAlpha(alphaCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == tempCmd)
+   {
+     CHECKPG(); fParticleGun->GetEneDist()->SetTemp(tempCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == ezeroCmd)
+   {
+     CHECKPG(); fParticleGun->GetEneDist()->SetEzero(ezeroCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == gradientCmd)
+   {
+     CHECKPG(); fParticleGun->GetEneDist()->SetGradient(gradientCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == interceptCmd)
+   {
+     CHECKPG(); fParticleGun->GetEneDist()->SetInterCept(interceptCmd->GetNewDoubleValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == calculateCmd)
+   {
+     CHECKPG(); fParticleGun->GetEneDist()->Calculate();
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == energyspecCmd)
+   {
+     CHECKPG(); fParticleGun->GetEneDist()->InputEnergySpectra(energyspecCmd->GetNewBoolValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == diffspecCmd)
+   {
+     CHECKPG(); fParticleGun->GetEneDist()->InputDifferentialSpectra(diffspecCmd->GetNewBoolValue(newValues));
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == histnameCmd)
+   {
+     histtype = newValues;
+     G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
+            << " The command is obsolete and will be removed soon." << G4endl
+            << " Please try to use the new structured commands!" << G4endl;
+   }
+ else if(command == histpointCmd)
     {
       CHECKPG();
       if(histtype == "biasx")
@@ -1377,8 +1381,9 @@ void G4GeneralParticleSourceMessenger::SetNewValue(G4UIcommand *command, G4Strin
     }
   else if(command == verbosityCmd)
     {
-      CHECKPG();
-      fParticleGun->SetVerbosity(verbosityCmd->GetNewIntValue(newValues));
+	  fGPS->SetVerbosity(verbosityCmd->GetNewIntValue(newValues));
+      //CHECKPG();
+      //fParticleGun->SetVerbosity(verbosityCmd->GetNewIntValue(newValues));
     }
   else if( command==particleCmd )
     {
@@ -1415,6 +1420,7 @@ void G4GeneralParticleSourceMessenger::SetNewValue(G4UIcommand *command, G4Strin
   else if( command==clearsourceCmd )
     { 
       fGPS->ClearAll();
+      fParticleGun = 0;      
     }
   else if( command==getsourceCmd )
     { 
@@ -1423,7 +1429,22 @@ void G4GeneralParticleSourceMessenger::SetNewValue(G4UIcommand *command, G4Strin
     }
   else if( command==setsourceCmd )
     { 
-      fGPS->SetCurrentSourceto(setsourceCmd->GetNewIntValue(newValues));
+	  //NOTE: This will also sets fParticleGun to the courrent source
+	  //      Not very clean, the GPS::SetCurrentSourceto will call:
+	  //      this::SetParticleSource( G4ParticleSource* )
+	  //      The point is that GPS has no public API to get a source by
+	  //      index
+	  //TODO: Can we add this API?
+	  const G4int sn = setsourceCmd->GetNewIntValue(newValues);
+	  if ( sn >= fGPS->GetNumberofSource() )
+	  {
+		G4ExceptionDescription msg;
+		msg << "Using command "<<setsourceCmd->GetCommandPath()<<"/"<<setsourceCmd->GetCommandName()<<" "<<sn;
+		msg << " is invalid "<<fGPS->GetNumberofSource()<<" source(s) are defined.";
+		G4Exception("G4GeneralParticleSourceMessenger::SetNewValue","G4GPS005",FatalException,msg);
+	  }
+	  fGPS->SetCurrentSourceto(setsourceCmd->GetNewIntValue(newValues));
+
     }
   else if( command==setintensityCmd )
     { 
diff --git a/source/event/src/G4SPSAngDistribution.cc b/source/event/src/G4SPSAngDistribution.cc
index 2436582451c..e7c2d7d6dbb 100644
--- a/source/event/src/G4SPSAngDistribution.cc
+++ b/source/event/src/G4SPSAngDistribution.cc
@@ -212,6 +212,7 @@ G4double G4SPSAngDistribution::GetMinTheta() { G4AutoLock l(&mutex); return MinT
 G4double G4SPSAngDistribution::GetMaxTheta() { G4AutoLock l(&mutex); return MaxTheta; }
 G4double G4SPSAngDistribution::GetMinPhi() { G4AutoLock l(&mutex); return MinPhi; }
 G4double G4SPSAngDistribution::GetMaxPhi() { G4AutoLock l(&mutex); return MaxPhi; }
+G4ThreeVector G4SPSAngDistribution::GetDirection() { G4AutoLock l(&mutex); return particle_momentum_direction; }
 
 void G4SPSAngDistribution::UserDefAngPhi(G4ThreeVector input)
 {
diff --git a/source/event/src/G4SingleParticleSource.cc b/source/event/src/G4SingleParticleSource.cc
index 6a61a1976a5..6af1a0595d5 100644
--- a/source/event/src/G4SingleParticleSource.cc
+++ b/source/event/src/G4SingleParticleSource.cc
@@ -114,7 +114,7 @@ void G4SingleParticleSource::SetVerbosity(int vL) {
 	posGenerator->SetVerbosity(vL);
 	angGenerator->SetVerbosity(vL);
 	eneGenerator->SetVerbosity(vL);
-	G4cout << "Verbosity Set to: " << verbosityLevel << G4endl;
+	//G4cout << "Verbosity Set to: " << verbosityLevel << G4endl;
 }
 
 void G4SingleParticleSource::SetParticleDefinition(
@@ -127,8 +127,11 @@ void G4SingleParticleSource::GeneratePrimaryVertex(G4Event *evt) {
 
     //G4AutoLock l(&mutex);
         //part_prop_t& pp = ParticleProperties.Get();
-	if (definition == NULL)
-		return;
+	if (definition == NULL) {
+		//TODO: Should this rise an exception???
+		return ;
+	}
+		//return;
 
 	if (verbosityLevel > 1)
 		G4cout << " NumberOfParticlesToBeGenerated: "
diff --git a/source/externals/History b/source/externals/History
index c438ceb9553..0f1e1bc8a85 100644
--- a/source/externals/History
+++ b/source/externals/History
@@ -17,6 +17,23 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+19-June-2015: G.Cosmo (externals-V10-00-15)
+- Updated to CLHEP-2.2.0.8:
+  o Avoid gcc-5 warnings on deprecated calls to auto_ptr in Utility headers.
+  o Switch off gcc-5 warning for unused variable in Randomize.h header.
+
+11-June-2015: G.Cosmo (externals-V10-00-10)
+- CLHEP: Moved static methods handling static data in G4RandGauss from inline
+  to source. Addressing problem report #1754.
+  Switch off warnings for deprecated calls to auto_ptr in Utility headers.
+
+9-April-2015: G.Cosmo
+- CLHEP: Fixed usage of std::abs() in RandGaussZiggurat source.
+
+12-December-2014: G.Cosmo
+- CLHEP: Fixed usage of std::abs() in RandGaussZiggurat header.
+- USolids: Use canonical form for operator=() in UPolycone.
+
 24-November-2014: G.Cosmo (externals-V10-00-08)
 - Updated to CLHEP-2.2.0.4:
   o Fixed a type mismatch in Utility/memory.h,
diff --git a/source/externals/clhep/History b/source/externals/clhep/History
index 34831450bb9..cf7a3eb3b63 100644
--- a/source/externals/clhep/History
+++ b/source/externals/clhep/History
@@ -17,6 +17,21 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+15 June 2015 - G.Cosmo
+- Updated to CLHEP-2.2.0.8. 
+- Switch off gcc-5 warning for unused variable in Randomize.h header.
+
+11 June 2015 - G.Cosmo
+- Moved static methods handling static data in G4RandGauss from inline
+  to source. Addressing problem report #1754.
+- Switch off gcc-5 warnings for deprecated calls to auto_ptr in Utility headers.
+
+9 April 2015 - G.Cosmo
+- Fixed usage of std::abs() in RandGaussZiggurat source...
+
+12 December 2014 - G.Cosmo
+- Fixed usage of std::abs() in RandGaussZiggurat header.
+
 24 November 2014 - G.Cosmo
 - Updated to CLHEP-2.2.0.4:
   * Utility (L.Garren <garren@fnal.gov>)
diff --git a/source/externals/clhep/include/CLHEP/Random/RandGauss.h b/source/externals/clhep/include/CLHEP/Random/RandGauss.h
index 31b6140e4ad..95f914a39cd 100644
--- a/source/externals/clhep/include/CLHEP/Random/RandGauss.h
+++ b/source/externals/clhep/include/CLHEP/Random/RandGauss.h
@@ -109,9 +109,9 @@ class RandGauss : public HepRandom {
   //  code before shoot/fire will force generation of a new couple of
   //  values.
 
-  static  bool getFlag() {return set_st;}
+  static  bool getFlag();
 
-  static  void setFlag( bool val ) {set_st = val;}
+  static  void setFlag( bool val );
 
   bool getF() const {return set;}
   
@@ -143,9 +143,9 @@ class RandGauss : public HepRandom {
 
 protected:
 
-  static  double getVal() {return nextGauss_st;}
+  static  double getVal();
 
-  static  void setVal( double nextVal ) {nextGauss_st = nextVal;}
+  static  void setVal( double nextVal );
 
   double normal();
 
diff --git a/source/externals/clhep/include/CLHEP/Random/RandGaussZiggurat.h b/source/externals/clhep/include/CLHEP/Random/RandGaussZiggurat.h
index 497d563000e..a42730297d5 100644
--- a/source/externals/clhep/include/CLHEP/Random/RandGaussZiggurat.h
+++ b/source/externals/clhep/include/CLHEP/Random/RandGaussZiggurat.h
@@ -116,7 +116,7 @@ class RandGaussZiggurat : public RandGauss {
     if(!ziggurat_is_init) ziggurat_init();
     long hz=(signed)ziggurat_SHR3(anEngine);
     unsigned long iz=hz&127;
-    return ((unsigned long)abs(hz)<kn[iz]) ? hz*wn[iz] : ziggurat_nfix(hz,anEngine);
+    return ((unsigned long)std::abs(hz)<kn[iz]) ? hz*wn[iz] : ziggurat_nfix(hz,anEngine);
   };
   static float ziggurat_nfix(long hz,HepRandomEngine* anEngine);
   
diff --git a/source/externals/clhep/include/CLHEP/Random/Randomize.h b/source/externals/clhep/include/CLHEP/Random/Randomize.h
index 2e27f59228c..5b6c6d42988 100644
--- a/source/externals/clhep/include/CLHEP/Random/Randomize.h
+++ b/source/externals/clhep/include/CLHEP/Random/Randomize.h
@@ -58,7 +58,11 @@ namespace CLHEP {
 // On some compilers the static instance of the HepRandom generator
 // needs to be created explicitly in the client code (i.e. here).
 
+#if __GNUC__
+static const int HepRandomGenActive __attribute__((unused)) = HepRandom::createInstance();
+#else
 static const int HepRandomGenActive = HepRandom::createInstance();
+#endif
 
 }  // namespace CLHEP
 
diff --git a/source/externals/clhep/include/CLHEP/Utility/memory.h b/source/externals/clhep/include/CLHEP/Utility/memory.h
index be6c5c0913e..383059b448b 100644
--- a/source/externals/clhep/include/CLHEP/Utility/memory.h
+++ b/source/externals/clhep/include/CLHEP/Utility/memory.h
@@ -31,15 +31,14 @@
 // ======================================================================
 
 // don't generate unnecessary warnings
-#if defined __GNUC__ 
-  #if __GNUC__ > 3 && __GNUC_MINOR__ > 6
-    #pragma GCC diagnostic push
-    #pragma GCC diagnostic ignored "-Wdelete-non-virtual-dtor"
-  #endif
-#endif 
-#ifdef __clang__
+#if __GNUC__ > 4 || ( __GNUC__ == 4 && __GNUC_MINOR__ > 6)
+  #pragma GCC diagnostic push
+  #pragma GCC diagnostic ignored "-Wdelete-non-virtual-dtor"
+  #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+#elif __clang__
   #pragma clang diagnostic push
   #pragma clang diagnostic ignored "-Wdelete-non-virtual-dtor"
+  #pragma clang diagnostic ignored "-Wdeprecated-declarations"
 #endif
 
 #include "CLHEP/Utility/defs.h"
@@ -1486,12 +1485,9 @@ do_nothing_deleter::operator () ( void const * ) const
 }  // namespace CLHEP
 
 
-#if defined __GNUC__ 
-  #if __GNUC__ > 3 && __GNUC_MINOR__ > 6
-    #pragma GCC diagnostic pop
-  #endif
-#endif 
-#ifdef __clang__
+#if __GNUC__ > 4 || ( __GNUC__ == 4 && __GNUC_MINOR__ > 6)
+  #pragma GCC diagnostic pop
+#elif __clang__
   #pragma clang diagnostic pop
 #endif
 
diff --git a/source/externals/clhep/include/CLHEP/Utility/type_traits.h b/source/externals/clhep/include/CLHEP/Utility/type_traits.h
index d6d72e357d4..bd85f1afb1e 100644
--- a/source/externals/clhep/include/CLHEP/Utility/type_traits.h
+++ b/source/externals/clhep/include/CLHEP/Utility/type_traits.h
@@ -9,6 +9,16 @@
 //
 // ======================================================================
 
+// don't generate unnecessary warnings
+#if __GNUC__ > 4 || ( __GNUC__ == 4 && __GNUC_MINOR__ > 6)
+  #pragma GCC diagnostic push
+  #pragma GCC diagnostic ignored "-Wdelete-non-virtual-dtor"
+  #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+#elif __clang__
+  #pragma clang diagnostic push
+  #pragma clang diagnostic ignored "-Wdelete-non-virtual-dtor"
+  #pragma clang diagnostic ignored "-Wdeprecated-declarations"
+#endif
 
 #include "CLHEP/Utility/defs.h"
 
@@ -1355,7 +1365,12 @@ template< typename P, typename R >
 
 }  // namespace CLHEP
 
+#if __GNUC__ > 4 || ( __GNUC__ == 4 && __GNUC_MINOR__ > 6)
+  #pragma GCC diagnostic pop
+#elif __clang__
+  #pragma clang diagnostic pop
+#endif
 
-#endif  // HEP_TYPE_TRAITS_H
+#endif  // CLHEP_TYPE_TRAITS_H
 
 // ======================================================================
diff --git a/source/externals/clhep/src/RandGauss.cc b/source/externals/clhep/src/RandGauss.cc
index 515685dba46..42d0c0b914d 100644
--- a/source/externals/clhep/src/RandGauss.cc
+++ b/source/externals/clhep/src/RandGauss.cc
@@ -166,6 +166,26 @@ void RandGauss::fireArray( const int size, double* vect,
     *v = fire( mean, stdDev );
 }
 
+bool RandGauss::getFlag()
+{
+  return set_st;
+}
+
+void RandGauss::setFlag( bool val )
+{
+  set_st = val;
+}
+
+double RandGauss::getVal()
+{
+  return nextGauss_st;
+}
+
+void RandGauss::setVal( double nextVal )
+{
+  nextGauss_st = nextVal;
+}
+
 void RandGauss::saveEngineStatus ( const char filename[] ) {
 
   // First save the engine status just like the base class would do:
diff --git a/source/externals/clhep/src/RandGaussZiggurat.cc b/source/externals/clhep/src/RandGaussZiggurat.cc
index 6b53460ccfa..87871dc927e 100644
--- a/source/externals/clhep/src/RandGaussZiggurat.cc
+++ b/source/externals/clhep/src/RandGaussZiggurat.cc
@@ -94,7 +94,7 @@ float RandGaussZiggurat::ziggurat_nfix(long hz,HepRandomEngine* anEngine)
     /* initiate, try to exit for(;;) for loop*/
     hz=(signed)ziggurat_SHR3(anEngine);
     iz=hz&127;
-    if((unsigned long)abs(hz)<kn[iz]) return (hz*wn[iz]);
+    if((unsigned long)std::abs(hz)<kn[iz]) return (hz*wn[iz]);
   }
 }
 
diff --git a/source/externals/usolids/History b/source/externals/usolids/History
index 5ea56bfaa65..c65437791ad 100644
--- a/source/externals/usolids/History
+++ b/source/externals/usolids/History
@@ -17,6 +17,38 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+May 27, 2015  T.Nikitina                  geom-usolids-V10-00-28
+- Fixed DistanceToOut(p) and Inside(p) in USphere for sphere cut in theta
+  for point (0,0,0) and for cases when Start/End angle have not to be taken
+  in account (STheta==0 || eTheta==pi).
+  Fix triggered by analysing setup provided in Geant4 problem report #1702.
+
+May 4,  2015  G.Cosmo
+- Fixed Coverity defect for unused variable quantity in UCons.
+
+April 24,  2015  G.Cosmo
+- Commented out use of shrink_to_fit() in UTessellatedSolid as not yet
+  part of the C++ Standard on Linux...
+
+April 24,  2015  G.Cosmo
+- Some code cleanup and minor fixes...
+  Syncronised implementation with USolids module in VecGeom.
+
+April 23,  2015  G.Cosmo
+- Replaced Exception IDs in UUtils to avoid clashes with wild global
+  extern functions in Root.
+
+April 20,  2015  G.Cosmo
+- Corrected string returned as type-ID by GetEntityType() to conform
+  to shape kind in: UExtrudedSolid, UMultiUnion, UQuadrangularFacet,
+  UTessellatedSolid, UTrap, UTriangularFacet and UVCSGfaceted.
+
+March 3,  2015  G.Cosmo
+- UVector3: made data private and defined accessors x(), y() and z().
+- Made implementations operators +(), -(), *(), and /() inline.
+- Adapted all classes to the change.
+- Added method GetPointOnEdge() to UBox.
+
 February 23,  2015  T.Nikitina            geom-usolids-V10-00-27
 - Fix in SetOriginalParameters() for UPolycone, in case of presence of
   'rings' structures constructed by (r,z) corners.
diff --git a/source/externals/usolids/include/UBits.hh b/source/externals/usolids/include/UBits.hh
index 097768b176c..f8757c58194 100644
--- a/source/externals/usolids/include/UBits.hh
+++ b/source/externals/usolids/include/UBits.hh
@@ -38,25 +38,6 @@
 class UBits
 {
 
-  public:
-    unsigned char* fAllBits;       //[fNBytes] array of UChars
-
-  protected:
-
-    unsigned int   fNBits;         // Highest bit set + 1
-    unsigned int   fNBytes;        // Number of UChars in fAllBits
-
-    void ReserveBytes(unsigned int nbytes);
-
-    /*
-    void DoAndEqual(const UBits& rhs);
-    void DoOrEqual (const UBits& rhs);
-    void DoXorEqual(const UBits& rhs);
-    void DoLeftShift(unsigned int shift);
-    void DoRightShift(unsigned int shift);
-    void DoFlip();
-    */
-
   public:
     UBits(unsigned int nbits = 0);
     UBits(const UBits&);
@@ -137,6 +118,26 @@ class UBits
 
     void    Print() const;  // to show the list of active bits
     void    Output(std::ostream&) const;
+
+  protected:
+    void ReserveBytes(unsigned int nbytes);
+
+    /*
+    void DoAndEqual(const UBits& rhs);
+    void DoOrEqual (const UBits& rhs);
+    void DoXorEqual(const UBits& rhs);
+    void DoLeftShift(unsigned int shift);
+    void DoRightShift(unsigned int shift);
+    void DoFlip();
+    */
+
+  protected:
+    unsigned int   fNBits;         // Highest bit set + 1
+    unsigned int   fNBytes;        // Number of UChars in fAllBits
+
+  public:
+    unsigned char* fAllBits;       //[fNBytes] array of UChars
+
 };
 
 /*
diff --git a/source/externals/usolids/include/UBox.hh b/source/externals/usolids/include/UBox.hh
index 53601b7305f..b1e13f8b4d8 100644
--- a/source/externals/usolids/include/UBox.hh
+++ b/source/externals/usolids/include/UBox.hh
@@ -96,6 +96,7 @@ class UBox : public VUSolid
     }
 
     UVector3 GetPointOnSurface() const;
+    UVector3 GetPointOnEdge() const;
 
     std::ostream& StreamInfo(std::ostream& os) const;
 
diff --git a/source/externals/usolids/include/UCons.hh b/source/externals/usolids/include/UCons.hh
index f077148acd5..6a080c97e11 100644
--- a/source/externals/usolids/include/UCons.hh
+++ b/source/externals/usolids/include/UCons.hh
@@ -162,7 +162,7 @@ class UCons : public VUSolid
     // Reset relevant values to zero
 
     inline void CheckSPhiAngle(double sPhi);
-    inline void CheckDPhiAngle(double dPhi);
+           void CheckDPhiAngle(double dPhi);
     inline void CheckPhiAngles(double sPhi, double dPhi);
     //
     // Reset relevant flags and angle values
diff --git a/source/externals/usolids/include/UCons.icc b/source/externals/usolids/include/UCons.icc
index 5451fca976f..6997ad2ffbc 100644
--- a/source/externals/usolids/include/UCons.icc
+++ b/source/externals/usolids/include/UCons.icc
@@ -106,33 +106,6 @@ inline void UCons::CheckSPhiAngle(double sPhi)
   }
 }
 
-inline void UCons::CheckDPhiAngle(double dPhi)
-{
-  fPhiFullCone = true;
-  if (dPhi >= 2 * UUtils::kPi - kAngTolerance * 0.5)
-  {
-    fDPhi = 2 * UUtils::kPi;
-    fSPhi = 0;
-  }
-  else
-  {
-    fPhiFullCone = false;
-    if (dPhi > 0)
-    {
-      fDPhi = dPhi;
-    }
-    else
-    {
-      std::ostringstream message;
-      message << "Invalid dphi." << std::endl
-              << "Negative or zero delta-Phi (" << dPhi << ") in solid: "
-              << GetName();
-      UUtils::Exception("UCons::CheckDPhiAngle()", "GeomSolids0002",
-                        FatalErrorInArguments, 1, message.str().c_str());
-    }
-  }
-}
-
 inline void UCons::CheckPhiAngles(double sPhi, double dPhi)
 {
   CheckDPhiAngle(dPhi);
@@ -300,18 +273,18 @@ double UCons::SafetyToPhi(const UVector3& p,
   double cosPsi, safePhi = 0.0;
   outside = false;
  
-  cosPsi = (p.x * cosCPhi + p.y * sinCPhi) / rho;
+  cosPsi = (p.x() * cosCPhi + p.y() * sinCPhi) / rho;
  
   if (cosPsi < std::cos(fDPhi * 0.5)) // Point lies outside phi range
   {
     outside = true;
-    if ((p.y * cosCPhi - p.x * sinCPhi) <= 0.0)
+    if ((p.y() * cosCPhi - p.x() * sinCPhi) <= 0.0)
     {
-      safePhi = std::fabs(p.x * std::sin(fSPhi) - p.y * std::cos(fSPhi));
+      safePhi = std::fabs(p.x() * std::sin(fSPhi) - p.y() * std::cos(fSPhi));
     }
     else
     {
-      safePhi = std::fabs(p.x * sinEPhi - p.y * cosEPhi);
+      safePhi = std::fabs(p.x() * sinEPhi - p.y() * cosEPhi);
     }
  }
  return safePhi;
@@ -327,7 +300,7 @@ double UCons::SafetyFromInsideR(const UVector3& p,
 
   if (fRmin1 || fRmin2)
   {
-    pRMin  = tanRMin * p.z + (fRmin1 + fRmin2) * 0.5;
+    pRMin  = tanRMin * p.z() + (fRmin1 + fRmin2) * 0.5;
     safeR1  = (rho - pRMin) / secRMin;
   }
   else
@@ -335,7 +308,7 @@ double UCons::SafetyFromInsideR(const UVector3& p,
     safeR1 = UUtils::kInfinity;
   }
 
-  pRMax  = tanRMax * p.z + (fRmax1 + fRmax2) * 0.5;
+  pRMax  = tanRMax * p.z() + (fRmax1 + fRmax2) * 0.5;
   safeR2  = (pRMax - rho) / secRMax;
 
   if (safeR1 < safeR2)
@@ -353,13 +326,13 @@ double UCons::SafetyFromInsideR(const UVector3& p,
   {
     // Above/below central phi of UCons?
  
-    if ((p.y * cosCPhi - p.x * sinCPhi) <= 0)
+    if ((p.y() * cosCPhi - p.x() * sinCPhi) <= 0)
     {
-      safePhi = -(p.x * sinSPhi - p.y * cosSPhi);
+      safePhi = -(p.x() * sinSPhi - p.y() * cosSPhi);
     }
     else
     {
-      safePhi = (p.x * sinEPhi - p.y * cosEPhi);
+      safePhi = (p.x() * sinEPhi - p.y() * cosEPhi);
     }
     if (safePhi < safe)
     {
@@ -385,10 +358,10 @@ double UCons::SafetyFromOutsideR(const UVector3& p,
   bool outside;
   if (fRmin1 || fRmin2)
   {
-    pRMin  = tanRMin * p.z + (fRmin1 + fRmin2) * 0.5;
+    pRMin  = tanRMin * p.z() + (fRmin1 + fRmin2) * 0.5;
     safeR1  = (rho-pRMin ) / secRMin;
 
-    pRMax  = tanRMax * p.z + (fRmax1 + fRmax2) * 0.5;
+    pRMax  = tanRMax * p.z() + (fRmax1 + fRmax2) * 0.5;
     safeR2  = (rho - pRMax) / secRMax;
 
     if (safeR1 > safeR2)
@@ -402,7 +375,7 @@ double UCons::SafetyFromOutsideR(const UVector3& p,
   }
   else
   {
-    pRMax  = tanRMax * p.z + (fRmax1 + fRmax2) * 0.5;
+    pRMax  = tanRMax * p.z() + (fRmax1 + fRmax2) * 0.5;
     safe    = (rho - pRMax) / secRMax;
   }
   if (!fPhiFullCone)
@@ -420,7 +393,7 @@ double UCons::SafetyFromOutsideR(const UVector3& p,
   }
   return safe; // not accurate safety
 }
- 
+
 inline
 VUSolid::EnumInside UCons::Inside(const UVector3& p) const
 {
@@ -430,11 +403,11 @@ VUSolid::EnumInside UCons::Inside(const UVector3& p) const
   static const double halfRadTolerance = kRadTolerance * 0.5;
   static const double halfAngTolerance = kAngTolerance * 0.5;
 
-  if (std::fabs(p.z) > fDz + halfCarTolerance)
+  if (std::fabs(p.z()) > fDz + halfCarTolerance)
   {
     return in = eOutside;
   }
-  else if (std::fabs(p.z) >= fDz - halfCarTolerance)
+  else if (std::fabs(p.z()) >= fDz - halfCarTolerance)
   {
     in = eSurface;
   }
@@ -442,9 +415,9 @@ VUSolid::EnumInside UCons::Inside(const UVector3& p) const
   {
     in = eInside;
   }
-  r2 = p.x * p.x + p.y * p.y;
-  rl = 0.5 * (fRmin2 * (p.z + fDz) + fRmin1 * (fDz - p.z)) / fDz;
-  rh = 0.5 * (fRmax2 * (p.z + fDz) + fRmax1 * (fDz - p.z)) / fDz;
+  r2 = p.x() * p.x() + p.y() * p.y();
+  rl = 0.5 * (fRmin2 * (p.z() + fDz) + fRmin1 * (fDz - p.z())) / fDz;
+  rh = 0.5 * (fRmax2 * (p.z() + fDz) + fRmax1 * (fDz - p.z())) / fDz;
 
   tolRMin = rl - halfRadTolerance;
   if (tolRMin < 0)
@@ -474,9 +447,9 @@ VUSolid::EnumInside UCons::Inside(const UVector3& p) const
       in = eSurface;
     }
   }
-  if (!fPhiFullCone && ((p.x != 0.0) || (p.y != 0.0)))
+  if (!fPhiFullCone && ((p.x() != 0.0) || (p.y() != 0.0)))
   {
-    pPhi = std::atan2(p.y, p.x);
+    pPhi = std::atan2(p.y(), p.x());
     if (pPhi < fSPhi - halfAngTolerance)
     {
       pPhi += 2 * UUtils::kPi;
diff --git a/source/externals/usolids/include/UExtrudedSolid.hh b/source/externals/usolids/include/UExtrudedSolid.hh
index 25c9f79798f..34e06bed303 100644
--- a/source/externals/usolids/include/UExtrudedSolid.hh
+++ b/source/externals/usolids/include/UExtrudedSolid.hh
@@ -40,10 +40,8 @@
 #ifndef USOLIDS_UExtrudedSolid_HH
 #define USOLIDS_UExtrudedSolid_HH
 
-//#include <vector>
+#include <vector>
 
-//#include "VUSolid.hh"
-//#include "UUtils.hh"
 #include "UTessellatedSolid.hh"
 #include "UVector2.hh"
 
@@ -101,10 +99,8 @@ class UExtrudedSolid : public UTessellatedSolid
                          double aPstep = UUtils::kInfinity) const;
     double  SafetyFromInside(const UVector3& aPoint,
                              bool aAccurate = false) const;
-    UGeometryType GetEntityType() const
-    {
-      return "ExtrudedSolid";
-    }
+
+    UGeometryType GetEntityType() const;
     VUSolid* Clone() const;
 
     std::ostream& StreamInfo(std::ostream& os) const;
diff --git a/source/externals/usolids/include/UExtrudedSolid.icc b/source/externals/usolids/include/UExtrudedSolid.icc
index 60e06ed7363..4226c42b429 100644
--- a/source/externals/usolids/include/UExtrudedSolid.icc
+++ b/source/externals/usolids/include/UExtrudedSolid.icc
@@ -27,7 +27,7 @@ inline UVector2 UExtrudedSolid::GetVertex(int index) const
   if (index < 0 || index >= fNv)
   {
     UUtils::Exception ("UExtrudedSolid::GetVertex()", "GeomSolids0003",
-                       FatalError, 1, "Index outside range.");
+                       UFatalError, 1, "Index outside range.");
     return UVector2();
   }
   return fPolygon[index];
@@ -51,7 +51,7 @@ UExtrudedSolid::ZSection UExtrudedSolid::GetZSection(int index) const
   if (index < 0 || index >= fNz)
   {
     UUtils::Exception ("UExtrudedSolid::GetZSection()", "GeomSolids0003",
-                       FatalError, 1, "Index outside range.");
+                       UFatalError, 1, "Index outside range.");
     return ZSection(0.0, UVector2(), 0.0);
   }
   return fZSections[index];
diff --git a/source/externals/usolids/include/UGenericPolycone.hh b/source/externals/usolids/include/UGenericPolycone.hh
index 50705f59c0e..65bacbf7b20 100644
--- a/source/externals/usolids/include/UGenericPolycone.hh
+++ b/source/externals/usolids/include/UGenericPolycone.hh
@@ -77,8 +77,6 @@ class UGenericPolycone: public UVCSGfaceted
     VUSolid* Clone() const;
 
     std::ostream& StreamInfo(std::ostream& os) const;
-
-
     bool Reset();
 
     // Accessors
diff --git a/source/externals/usolids/include/UGenericTrap.icc b/source/externals/usolids/include/UGenericTrap.icc
index 344d30e2617..c6ca5d06f4c 100644
--- a/source/externals/usolids/include/UGenericTrap.icc
+++ b/source/externals/usolids/include/UGenericTrap.icc
@@ -42,7 +42,7 @@ UVector2 UGenericTrap::GetVertex(int index) const
   if (index < 0 || index >= int(fVertices.size()))
   {
     UUtils::Exception("UGenericTrap::GetVertex()", "GeomSolids0003",
-                      FatalError, 1, "Index outside range.");
+                      UFatalError, 1, "Index outside range.");
   }
   return fVertices[index];
 }
@@ -64,7 +64,7 @@ double UGenericTrap::GetTwistAngle(int index) const
   if ((index < 0) || (index >= int(fVertices.size())))
   {
     UUtils::Exception ("UGenericTrap::GetTwistAngle()", "GeomSolids0003",
-                       FatalError, 1, "Index outside range.");
+                       UFatalError, 1, "Index outside range.");
   }
   return fTwist[index];
 }
@@ -85,7 +85,7 @@ void UGenericTrap::SetTwistAngle(int index, double twist)
   if ((index < 0) || (index >= int(fVertices.size())))
   {
     UUtils::Exception ("UGenericTrap::SetTwistAngle()", "GeomSolids0003",
-                       FatalError, 1, "Index outside range.");
+                       UFatalError, 1, "Index outside range.");
   }
   fTwist[index] = twist;
 }
diff --git a/source/externals/usolids/include/UMultiUnion.hh b/source/externals/usolids/include/UMultiUnion.hh
index a93cb92c17b..f8d8a437031 100644
--- a/source/externals/usolids/include/UMultiUnion.hh
+++ b/source/externals/usolids/include/UMultiUnion.hh
@@ -104,7 +104,7 @@ class UMultiUnion : public VUSolid
 
     VUSolid* Clone() const ;
 
-    UGeometryType GetEntityType() const { return "MultipleUnion"; }
+    UGeometryType GetEntityType() const { return "MultiUnion"; }
     void ComputeBBox(UBBox* aBox, bool aStore = false);
 
     virtual void GetParametersList(int /*aNumber*/, double* /*aArray*/) const {}
diff --git a/source/externals/usolids/include/UOrb.hh b/source/externals/usolids/include/UOrb.hh
index a606909be1f..85a74e20dc0 100644
--- a/source/externals/usolids/include/UOrb.hh
+++ b/source/externals/usolids/include/UOrb.hh
@@ -83,8 +83,8 @@ class UOrb : public VUSolid
   private:
     double fR;
     double fRTolerance;
-    double       fCubicVolume;   // Cubic Volume
-    double       fSurfaceArea;   // Surface Area
+    double fCubicVolume;   // Cubic Volume
+    double fSurfaceArea;   // Surface Area
 
     double DistanceToOutForOutsidePoints(const UVector3& p, const UVector3& v, UVector3& n) const;
 
@@ -97,6 +97,8 @@ inline double UOrb::GetRadius() const
 inline void UOrb::SetRadius(double newRmax)
 {
   fR = newRmax;
+  fCubicVolume = 0.;
+  fSurfaceArea = 0.;
 }
 
 inline double UOrb::Capacity()
diff --git a/source/externals/usolids/include/UPolyPhiFace.icc b/source/externals/usolids/include/UPolyPhiFace.icc
index fd0f167579f..97aeef3619a 100644
--- a/source/externals/usolids/include/UPolyPhiFace.icc
+++ b/source/externals/usolids/include/UPolyPhiFace.icc
@@ -42,12 +42,12 @@ double UPolyPhiFace::ExactZOrder(double z,
   double answer = vert->z - z;
   if (std::fabs(answer) < VUSolid::Tolerance())
   {
-    UVector3 qa(qx - vert->x + radial.x,
-                qy - vert->y + radial.y, qz - vert->z),
+    UVector3 qa(qx - vert->x + radial.x(),
+                qy - vert->y + radial.y(), qz - vert->z),
                    qb(qx - vert->x, qy - vert->y, qz - vert->z);
     UVector3 qacb = qa.Cross(qb);
 
-    answer = normSign * qacb.Dot(v) * (normal.y * radial.x - normal.x * radial.y);
+    answer = normSign * qacb.Dot(v) * (normal.y() * radial.x() - normal.x() * radial.y());
   }
 
   return answer;
diff --git a/source/externals/usolids/include/UPolycone.hh b/source/externals/usolids/include/UPolycone.hh
index 8a7371ea947..03eef2bc7b7 100644
--- a/source/externals/usolids/include/UPolycone.hh
+++ b/source/externals/usolids/include/UPolycone.hh
@@ -266,7 +266,7 @@ class UPolycone : public VUSolid
                                           const UVector3& p) const
     {
       const UPolyconeSection& section = fSections[index];
-      UVector3 ps(p.x, p.y, p.z - section.shift);
+      UVector3 ps(p.x(), p.y(), p.z() - section.shift);
       double res=0;
       if (section.tubular)
       {
@@ -288,7 +288,7 @@ class UPolycone : public VUSolid
                                            const UVector3& p) const
     {
       const UPolyconeSection& section = fSections[index];
-      UVector3 ps(p.x, p.y, p.z);
+      UVector3 ps(p.x(), p.y(), p.z());
       double res=0;
       if (section.tubular)
       {
@@ -309,7 +309,7 @@ class UPolycone : public VUSolid
     inline double SafetyFromOutsideSection(int index, const UVector3& p) const
     {
       const UPolyconeSection& section = fSections[index];
-      UVector3 ps(p.x, p.y,p.z - section.shift);
+      UVector3 ps(p.x(), p.y(),p.z() - section.shift);
       double res=0;
      
       res = section.solid->SafetyFromOutside(ps, true);
@@ -319,7 +319,7 @@ class UPolycone : public VUSolid
     bool NormalSection(int index, const UVector3& p, UVector3& n) const
     {
       const UPolyconeSection& section = fSections[index];
-      UVector3 ps(p.x, p.y, p.z - section.shift);
+      UVector3 ps(p.x(), p.y(), p.z() - section.shift);
       bool res = section.solid->Normal(ps, n);
       return res;
     }
diff --git a/source/externals/usolids/include/UPolycone.icc b/source/externals/usolids/include/UPolycone.icc
index 52e51eac0f4..0f150d19614 100644
--- a/source/externals/usolids/include/UPolycone.icc
+++ b/source/externals/usolids/include/UPolycone.icc
@@ -82,7 +82,7 @@ void UPolycone::SetOriginalParameters()
 
   for (int j = 0; j < numPlanes; j++)
   {
-    fOriginalParameters->fZValues[j] = corners[numPlanes + j].z;
+    fOriginalParameters->fZValues[j] = corners[numPlanes + j].z();
     fOriginalParameters->Rmax[j] = corners[numPlanes + j].r;
     fOriginalParameters->Rmin[j] = corners[numPlanes - 1 - j].r;
   }
diff --git a/source/externals/usolids/include/USphere.hh b/source/externals/usolids/include/USphere.hh
index e52725fa101..dffdb7eec6f 100644
--- a/source/externals/usolids/include/USphere.hh
+++ b/source/externals/usolids/include/USphere.hh
@@ -292,7 +292,7 @@ void USphere::CheckThetaAngles(double sTheta, double dTheta)
     message << "sTheta outside 0-PI range." << std::endl
             << "Invalid starting Theta angle for solid: " << GetName();
     UUtils::Exception("USphere::CheckThetaAngles()", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
   else
   {
@@ -313,7 +313,7 @@ void USphere::CheckThetaAngles(double sTheta, double dTheta)
             << "Negative delta-Theta (" << dTheta << "), for solid: "
             << GetName();
     UUtils::Exception("USphere::CheckThetaAngles()", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
   if (fDTheta - fSTheta < UUtils::kPi)
   {
@@ -370,7 +370,7 @@ void USphere::CheckDPhiAngle(double dPhi)
               << "Negative delta-Phi (" << dPhi << "), for solid: "
               << GetName();
       UUtils::Exception("USphere::CheckDPhiAngle()", "GeomSolids0002",
-                        FatalError, 1, message.str().c_str());
+                        UFatalError, 1, message.str().c_str());
     }
   }
 }
diff --git a/source/externals/usolids/include/UTessellatedSolid.hh b/source/externals/usolids/include/UTessellatedSolid.hh
index ee5209b1b9b..42bf7d5b75b 100644
--- a/source/externals/usolids/include/UTessellatedSolid.hh
+++ b/source/externals/usolids/include/UTessellatedSolid.hh
@@ -228,9 +228,9 @@ class UTessellatedSolid : public VUSolid
 
     inline bool OutsideOfExtent(const UVector3& p, double tolerance = 0) const
     {
-      return (p.x < fMinExtent.x - tolerance || p.x > fMaxExtent.x + tolerance ||
-              p.y < fMinExtent.y - tolerance || p.y > fMaxExtent.y + tolerance ||
-              p.z < fMinExtent.z - tolerance || p.z > fMaxExtent.z + tolerance);
+      return (p.x() < fMinExtent.x() - tolerance || p.x() > fMaxExtent.x() + tolerance ||
+              p.y() < fMinExtent.y() - tolerance || p.y() > fMaxExtent.y() + tolerance ||
+              p.z() < fMinExtent.z() - tolerance || p.z() > fMaxExtent.z() + tolerance);
     }
 
     void Initialize();
diff --git a/source/externals/usolids/include/UTransform3D.hh b/source/externals/usolids/include/UTransform3D.hh
index 901a0baf329..e47a45e228f 100644
--- a/source/externals/usolids/include/UTransform3D.hh
+++ b/source/externals/usolids/include/UTransform3D.hh
@@ -26,9 +26,6 @@
 class UTransform3D
 {
   public:
-    UVector3            fTr;    // Translation
-    double            fRot[9];   // Rotation
-
 
     UTransform3D();  // Initialize to identity
     UTransform3D(double tx, double ty, double tz,
@@ -36,9 +33,9 @@ class UTransform3D
     UTransform3D(const UTransform3D& other);
     ~UTransform3D() {}
 
-    virtual void         RotateX(double angle);
-    virtual void         RotateY(double angle);
-    virtual void         RotateZ(double angle);
+    void                 RotateX(double angle);
+    void                 RotateY(double angle);
+    void                 RotateZ(double angle);
     void                 SetAngles(double phi, double theta, double psi);
 
     // Local<->global coordinate and vector conversions
@@ -47,11 +44,13 @@ class UTransform3D
     UVector3             LocalPoint(const UVector3& global) const;
     UVector3             LocalVector(const UVector3& global) const;
 
-
     // Operators
     UTransform3D& operator = (const UTransform3D& other);
     UTransform3D& operator *= (const UTransform3D& other);
     UTransform3D& operator *= (const UVector3& vect);
+
+    UVector3          fTr;       // Translation
+    double            fRot[9];   // Rotation
 };
 // Vector-matrix multiplication
 UVector3 operator * (const UVector3& p, const UTransform3D& trans);
diff --git a/source/externals/usolids/include/UTubs.hh b/source/externals/usolids/include/UTubs.hh
index b9f645277bc..53140c4753b 100644
--- a/source/externals/usolids/include/UTubs.hh
+++ b/source/externals/usolids/include/UTubs.hh
@@ -43,10 +43,11 @@
 #define UTUBS_HH
 
 #include "VUSolid.hh"
+#include <sstream>
 
 class UTubs : public VUSolid
 {
-  public: // with description
+  public:
 
     UTubs(const std::string& pName,
           double pRMin,
@@ -110,7 +111,7 @@ class UTubs : public VUSolid
     virtual void GetParametersList(int /*aNumber*/, double* /*aArray*/) const;
     virtual void ComputeBBox(UBBox* /*aBox*/, bool /*aStore = false*/) {}
 
-  public: // without description
+  public:
 
     UTubs();
     //
@@ -122,8 +123,6 @@ class UTubs : public VUSolid
     UTubs& operator=(const UTubs& rhs);
     // Copy constructor and assignment operator.
 
-    //  Older names for access functions
-
     inline double GetRMin() const;
     inline double GetRMax() const;
     inline double GetDz() const;
@@ -158,6 +157,7 @@ class UTubs : public VUSolid
     // specification for points not on the surface
 
      inline double SafetyToPhi(const UVector3& p, const double rho, bool& outside) const;
+
   protected:
 
     double fCubicVolume, fSurfaceArea;
diff --git a/source/externals/usolids/include/UTubs.icc b/source/externals/usolids/include/UTubs.icc
index 1bc99397707..77945b194cb 100644
--- a/source/externals/usolids/include/UTubs.icc
+++ b/source/externals/usolids/include/UTubs.icc
@@ -113,7 +113,7 @@ inline void UTubs::CheckDPhiAngle(double dPhi)
               << "Negative or zero delta-Phi (" << dPhi << "), for solid: "
               << GetName();
       UUtils::Exception("UTubs::CheckDPhiAngle()", "GeomSolids0002",
-                        FatalError, 1, message.str().c_str());
+                        UFatalError, 1, message.str().c_str());
     }
   }
 }
@@ -140,7 +140,7 @@ void UTubs::SetInnerRadius(double newRMin)
             << ", fRMax = " << fRMax << std::endl
             << "				Negative inner radius!";
     UUtils::Exception("UTubs::SetInnerRadius()", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
   fRMin = newRMin;
   Initialize();
@@ -158,7 +158,7 @@ void UTubs::SetOuterRadius(double newRMax)
             << ", newRMax = " << newRMax << std::endl
             << "				Invalid outer radius!";
     UUtils::Exception("UTubs::SetOuterRadius()", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
   fRMax = newRMax;
   Initialize();
@@ -174,7 +174,7 @@ void UTubs::SetZHalfLength(double newDz)
             << "Negative Z half-length (" << newDz << "), for solid: "
             << GetName();
     UUtils::Exception("UTubs::SetZHalfLength()", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
   fDz = newDz;
   Initialize();
@@ -297,13 +297,13 @@ double UTubs::SafetyFromInsideR(const UVector3& p,
   //
   if (!fPhiFullTube)
   {
-    if (p.y * fCosCPhi - p.x * fSinCPhi <= 0)
+    if (p.y() * fCosCPhi - p.x() * fSinCPhi <= 0)
     {
-      safePhi = -(p.x * fSinSPhi - p.y * fCosSPhi);
+      safePhi = -(p.x() * fSinSPhi - p.y() * fCosSPhi);
     }
     else
     {
-      safePhi = (p.x * fSinEPhi - p.y * fCosEPhi);
+      safePhi = (p.x() * fSinEPhi - p.y() * fCosEPhi);
     }
     if (safePhi < safe)
     {
@@ -355,20 +355,20 @@ double UTubs::SafetyToPhi(const UVector3& p,
   
   // Psi=angle from central phi to point
   //
-  cosPsi = (p.x * fCosCPhi + p.y * fSinCPhi) / rho;
+  cosPsi = (p.x() * fCosCPhi + p.y() * fSinCPhi) / rho;
   outside = false;
   if (cosPsi < std::cos(fDPhi * 0.5))
   {
     // Point lies outside phi range
     //
     outside=true;
-    if ((p.y * fCosCPhi - p.x * fSinCPhi) <= 0)
+    if ((p.y() * fCosCPhi - p.x() * fSinCPhi) <= 0)
     {
-      safePhi = std::fabs(p.x * fSinSPhi - p.y * fCosSPhi);
+      safePhi = std::fabs(p.x() * fSinSPhi - p.y() * fCosSPhi);
     }
     else
     {
-      safePhi = std::fabs(p.x * fSinEPhi - p.y * fCosEPhi);
+      safePhi = std::fabs(p.x() * fSinEPhi - p.y() * fCosEPhi);
     }
   }
 
diff --git a/source/externals/usolids/include/UUtils.hh b/source/externals/usolids/include/UUtils.hh
index 51b14fede96..4321bdcee06 100644
--- a/source/externals/usolids/include/UUtils.hh
+++ b/source/externals/usolids/include/UUtils.hh
@@ -20,6 +20,8 @@
 #ifndef USOLIDS_UUtils
 #define USOLIDS_UUtils
 
+#include "UVector3.hh"
+
 #include <iostream>
 #include <fstream>
 #include <limits>
@@ -28,11 +30,10 @@
 #include <vector>
 #include <algorithm>
 
-struct UVector3;
 class UTransform3D;
 
 enum UExceptionSeverity
-{ FatalError, FatalErrorInArguments, Error, Warning, Info };
+{ UFatalError, UFatalErrorInArguments, UError, UWarning, UInfo };
 
 namespace UUtils
 {
diff --git a/source/externals/usolids/include/UVector2.hh b/source/externals/usolids/include/UVector2.hh
index eef8318c828..46e9ffce2a3 100644
--- a/source/externals/usolids/include/UVector2.hh
+++ b/source/externals/usolids/include/UVector2.hh
@@ -221,7 +221,7 @@ inline UVector2::UVector2(double x1, double y1)
   : x(x1), y(y1) {}
 
 inline UVector2::UVector2(const UVector3& s1)
-  : x(s1.x), y(s1.y) {}
+  : x(s1.x()), y(s1.y()) {}
 
 inline void UVector2::setX(double x1)
 {
diff --git a/source/externals/usolids/include/UVector3.hh b/source/externals/usolids/include/UVector3.hh
index 4ee53fe6fc2..b5433c982f7 100644
--- a/source/externals/usolids/include/UVector3.hh
+++ b/source/externals/usolids/include/UVector3.hh
@@ -30,20 +30,20 @@ struct UVector3
   public:
     UVector3()
     {
-      x = y = z = 0.0;
+      x_ = y_ = z_ = 0.0;
     }
     UVector3(double xval, double yval, double zval)
     {
-      x = xval;
-      y = yval;
-      z = zval;
+      x_ = xval;
+      y_ = yval;
+      z_ = zval;
     }
     UVector3(double theta, double phi);
     UVector3(const double coord[3])
     {
-      x = coord[0];
-      y = coord[1];
-      z = coord[2];
+      x_ = coord[0];
+      y_ = coord[1];
+      z_ = coord[2];
     }
 
     inline UVector3& operator = (const UVector3& v);
@@ -67,6 +67,18 @@ struct UVector3
 
     inline double operator[](int index) const;
 
+    inline double& x();
+
+    inline double x() const;
+
+    inline double& y();
+
+    inline double y() const;
+
+    inline double& z();
+
+    inline double z() const;
+
     inline UVector3& operator *= (double);
     // Scaling with real numbers.
 
@@ -132,34 +144,47 @@ struct UVector3
 
     inline UVector3& MultiplyByComponents(const UVector3& p);
 
-  public:
-    double x;
-    double y;
-    double z;
+  private:
+    double x_;
+    double y_;
+    double z_;
 };
 
-UVector3 operator + (const UVector3&, const UVector3&);
-// Addition of 3-vectors.
 
-UVector3 operator - (const UVector3&, const UVector3&);
-// Subtraction of 3-vectors.
+inline UVector3 operator + (const UVector3& a, const UVector3& b)
+{
+  return UVector3(a.x() + b.x(), a.y() + b.y(), a.z() + b.z());
+}
+
+inline UVector3 operator - (const UVector3& a, const UVector3& b)
+{
+  return UVector3(a.x() - b.x(), a.y() - b.y(), a.z() - b.z());
+}
+
+inline UVector3 operator * (const UVector3& p, double a)
+{
+  return UVector3(a * p.x(), a * p.y(), a * p.z());
+}
 
-double operator * (const UVector3&, const UVector3&);
-// Scalar product of 3-vectors.
+inline UVector3 operator / (const UVector3& p, double a)
+{
+  a = 1. / a;
+  return UVector3(a * p.x(), a * p.y(), a * p.z());
+}
 
-UVector3 operator * (const UVector3&, double a);
-UVector3 operator / (const UVector3&, double a);
-UVector3 operator * (double a, const UVector3&);
+inline UVector3 operator * (double a, const UVector3& p)
+{
+  return UVector3(a * p.x(), a * p.y(), a * p.z());
+}
 
-// Scaling of 3-vectors with a real number
 
 //______________________________________________________________________________
 inline UVector3& UVector3::MultiplyByComponents(const UVector3& p)
 {
   // Assignment of a UVector3
-  x *= p.x;
-  y *= p.y;
-  z *= p.z;
+  x_ *= p.x_;
+  y_ *= p.y_;
+  z_ *= p.z_;
   return *this;
 }
 
@@ -168,116 +193,111 @@ inline UVector3& UVector3::operator = (const UVector3& p)
 {
   // Assignment of a UVector3
   if (this == &p)  { return *this; }
-  x = p.x;
-  y = p.y;
-  z = p.z;
+  x_ = p.x_;
+  y_ = p.y_;
+  z_ = p.z_;
   return *this;
 }
 
 inline UVector3& UVector3::operator = (const double vect[3])
 {
   // Assignment of a C array
-  x = vect[0];
-  y = vect[1];
-  z = vect[2];
+  x_ = vect[0];
+  y_ = vect[1];
+  z_ = vect[2];
   return *this;
 }
 
 inline bool UVector3::operator == (const UVector3& v) const
 {
-  return (v.x == x && v.y == y && v.z == z) ? true : false;
+  return (v.x_ == x_ && v.y_ == y_ && v.z_ == z_) ? true : false;
 }
 
 inline bool UVector3::operator != (const UVector3& v) const
 {
-  return (v.x != x || v.y != y || v.z != z) ? true : false;
+  return (v.x_ != x_ || v.y_ != y_ || v.z_ != z_) ? true : false;
 }
 
 inline UVector3& UVector3::operator += (const UVector3& p)
 {
-  x += p.x;
-  y += p.y;
-  z += p.z;
+  x_ += p.x_;
+  y_ += p.y_;
+  z_ += p.z_;
   return *this;
 }
 
 inline UVector3& UVector3::operator -= (const UVector3& p)
 {
-  x -= p.x;
-  y -= p.y;
-  z -= p.z;
+  x_ -= p.x_;
+  y_ -= p.y_;
+  z_ -= p.z_;
   return *this;
 }
 
 inline UVector3 UVector3::operator - () const
 {
-  return UVector3(-x, -y, -z);
+  return UVector3(-x_, -y_, -z_);
 }
 
 inline UVector3& UVector3::operator *= (double a)
 {
-  x *= a;
-  y *= a;
-  z *= a;
+  x_ *= a;
+  y_ *= a;
+  z_ *= a;
   return *this;
 }
 
 inline UVector3& UVector3::operator /= (double a)
 {
   a = 1. / a;
-  x *= a;
-  y *= a;
-  z *= a;
+  x_ *= a;
+  y_ *= a;
+  z_ *= a;
   return *this;
 }
 
 inline bool UVector3::IsNull() const
 {
-  return ((std::abs(x) + std::abs(y) + std::abs(z)) == 0.0) ? true : false;
-}
-
-/*
-inline void UVector3::SetNull() {
-x = y = z = 0.0;
+  return ((std::abs(x_) + std::abs(y_) + std::abs(z_)) == 0.0) ? true : false;
 }
-*/
 
 inline void UVector3::Set(double xx, double yy, double zz)
 {
-  x = xx;
-  y = yy;
-  z = zz;
+  x_ = xx;
+  y_ = yy;
+  z_ = zz;
 }
 
 inline void UVector3::Set(double xx)
 {
-  x = y = z = xx;
+  x_ = y_ = z_ = xx;
 }
 
 inline double UVector3::Dot(const UVector3& p) const
 {
-  return x * p.x + y * p.y + z * p.z;
+  return x_ * p.x_ + y_ * p.y_ + z_ * p.z_;
 }
 
 inline UVector3 UVector3::Cross(const UVector3& p) const
 {
-  return UVector3(y * p.z - p.y * z, z * p.x - p.z * x, x * p.y - p.x * y);
+  return UVector3(y_ * p.z_ - p.y_ * z_, z_ * p.x_ - p.z_ * x_,
+                  x_ * p.y_ - p.x_ * y_);
 }
 
 inline double UVector3::Mag2() const
 {
-  return x * x + y * y + z * z;
+  return x_ * x_ + y_ * y_ + z_ * z_;
 }
 
 inline double UVector3::Perp2() const
 {
-  return x * x + y * y;
+  return x_ * x_ + y_ * y_;
 }
 
 inline double UVector3::CosTheta() const
 {
   double ptot = Mag();
-  return ptot == 0.0 ? 1.0 : z / ptot;
+  return ptot == 0.0 ? 1.0 : z_ / ptot;
 }
 
 
@@ -286,13 +306,13 @@ inline double& UVector3::operator[](int index)
   switch (index)
   {
     case 0:
-      return x;
+      return x_;
     case 1:
-      return y;
+      return y_;
     case 2:
-      return z;
+      return z_;
     default:
-      return x;
+      return x_;
   }
 }
 
@@ -304,26 +324,38 @@ inline double UVector3::operator[](int index) const
   // => first version is slightly faster
   if (true)
   {
-    double vec[3] = {x, y, z};
+    double vec[3] = {x_, y_, z_};
     return vec[index];
   }
 
   switch (index)
   {
     case 0:
-      return x;
+      return x_;
     case 1:
-      return y;
+      return y_;
     case 2:
-      return z;
+      return z_;
     default:
       return 0;
   }
 }
 
+inline double& UVector3::x() { return x_; }
+
+inline double UVector3::x() const { return x_; }
+
+inline double& UVector3::y() { return y_; }
+
+inline double UVector3::y() const { return y_; }
+
+inline double& UVector3::z() { return z_; }
+
+inline double UVector3::z() const { return z_; }
+
 inline std::ostream& operator<< (std::ostream& os, const UVector3& v)
 {
-  return os << "(" << v.x << "," << v.y << "," << v.z << ")";
+  return os << "(" << v.x() << "," << v.y() << "," << v.z() << ")";
 }
 
 #endif
diff --git a/source/externals/usolids/include/VUSolid.hh b/source/externals/usolids/include/VUSolid.hh
index 60559dff9d4..e4846a176cb 100644
--- a/source/externals/usolids/include/VUSolid.hh
+++ b/source/externals/usolids/include/VUSolid.hh
@@ -117,7 +117,7 @@ public:
   //        where an implementation is not available, it defaults to PointOnSurface.
 
   // Visualisation
-   virtual void GetParametersList(int aNumber,double *aArray) const =0;
+  virtual void GetParametersList(int aNumber,double *aArray) const =0;
  
   virtual VUSolid* Clone() const =0; 
   // o provide a new object which is a clone of the solid
diff --git a/source/externals/usolids/src/UBits.cc b/source/externals/usolids/src/UBits.cc
index 29603768efd..e55d0153796 100644
--- a/source/externals/usolids/src/UBits.cc
+++ b/source/externals/usolids/src/UBits.cc
@@ -17,24 +17,25 @@
 #include "UBits.hh"
 #include <stdio.h>
 //______________________________________________________________________________
-UBits::UBits(unsigned int nBits) : fNBits(nBits)
+UBits::UBits(unsigned int nBits) : 
+   fNBits(nBits>0 ? nBits : 0),
+   fNBytes(fNBits ? ((fNBits - 1) / 8) + 1 : 1),
+   fAllBits(new unsigned char[fNBytes])
 {
   // UBits constructor.  All bits set to 0
 
-  if (fNBits <= 0) fNBits = 0;
-  fNBytes  = fNBits ? ((fNBits - 1) / 8) + 1 : 1;
-  fAllBits = new unsigned char[fNBytes];
   // this is redundant only with libNew
   std::memset(fAllBits, 0, fNBytes);
 }
 
 //______________________________________________________________________________
-UBits::UBits(const UBits& original) : fNBits(original.fNBits),
-  fNBytes(original.fNBytes)
+UBits::UBits(const UBits& original) : 
+   fNBits(original.fNBits),
+   fNBytes(original.fNBytes),
+   fAllBits(new unsigned char[fNBytes])
 {
   // UBits copy constructor
 
-  fAllBits = new unsigned char[fNBytes];
   std::memcpy(fAllBits, original.fAllBits, fNBytes);
 
 }
diff --git a/source/externals/usolids/src/UBox.cc b/source/externals/usolids/src/UBox.cc
index ddb75957528..08f5b0a15b0 100644
--- a/source/externals/usolids/src/UBox.cc
+++ b/source/externals/usolids/src/UBox.cc
@@ -36,7 +36,7 @@ UBox::UBox(const std::string& name, double dx, double dy, double dz)
     std::ostringstream message;
     message << "Dimensions too small for Solid: " << GetName() << "!" << std::endl
             << "     dx, dy, dz = " << dx << ", " << dy << ", " << dz;
-    UUtils::Exception("UBox::UBox()", "UGeomSolids", FatalErrorInArguments, 1, message.str().c_str());
+    UUtils::Exception("UBox::UBox()", "GeomSolids0002", UFatalErrorInArguments, 1, message.str().c_str());
   }
 }
 
@@ -49,9 +49,9 @@ void UBox::Set(double dx, double dy, double dz)
 
 void UBox::Set(const UVector3& vec)
 {
-  fDx = vec.x;
-  fDy = vec.y;
-  fDz = vec.z;
+  fDx = vec.x();
+  fDy = vec.y();
+  fDz = vec.z();
 }
 //Destructor
 UBox::~UBox()
@@ -103,11 +103,11 @@ VUSolid::EnumInside UBox::Inside(const UVector3& aPoint) const
   static const double delta = VUSolid::fgTolerance;
   // Early returns on outside condition on any axis. Check Z first for faster
   // exclusion in  phi symmetric geometries.
-  double ddz = std::abs(aPoint.z) - fDz;
+  double ddz = std::abs(aPoint.z()) - fDz;
   if (ddz > delta) return eOutside;
-  double ddx = std::abs(aPoint.x) - fDx;
+  double ddx = std::abs(aPoint.x()) - fDx;
   if (ddx > delta) return eOutside;
-  double ddy = std::abs(aPoint.y) - fDy;
+  double ddy = std::abs(aPoint.y()) - fDy;
   if (ddy > delta) return eOutside;
   if (ddx > - delta || ddy > -delta || ddz > -delta) return eSurface;
   return eInside;
@@ -130,9 +130,9 @@ double UBox::DistanceToIn(const UVector3& aPoint,
   // Early exits if safety bigger than proposed step.
   static const double delta = VUSolid::fgTolerance;
   //   aNormal.SetNull();
-  double safx = std::abs(aPoint.x) - fDx;
-  double safy = std::abs(aPoint.y) - fDy;
-  double safz = std::abs(aPoint.z) - fDz;
+  double safx = std::abs(aPoint.x()) - fDx;
+  double safy = std::abs(aPoint.y()) - fDy;
+  double safz = std::abs(aPoint.z()) - fDz;
   if ((safx > aPstep) || (safy > aPstep) || (safz > aPstep))
     return UUtils::kInfinity;
   // Check numerical outside.
@@ -142,15 +142,15 @@ double UBox::DistanceToIn(const UVector3& aPoint,
     // If point close to this surface, check against the normal
     if (safx > -delta)
     {
-      if (aPoint.x * aDirection.x > 0) return UUtils::kInfinity ;
+      if (aPoint.x() * aDirection.x() > 0) return UUtils::kInfinity ;
     }
     if (safy > -delta)
     {
-      if (aPoint.y * aDirection.y > 0) return UUtils::kInfinity ;
+      if (aPoint.y() * aDirection.y() > 0) return UUtils::kInfinity ;
     }
     if (safz > -delta)
     {
-      if (aPoint.z * aDirection.z > 0) return UUtils::kInfinity ;
+      if (aPoint.z() * aDirection.z() > 0) return UUtils::kInfinity ;
     }
     // Point actually "deep" inside, return zero distance, normal un-defined
     return 0.0;
@@ -162,15 +162,15 @@ double UBox::DistanceToIn(const UVector3& aPoint,
   double coordinate = 0.0;
   if (safx > 0)
   {
-    if (aPoint.x * aDirection.x >= 0) return UUtils::kInfinity;
-    dist = safx / std::abs(aDirection.x);
-    coordinate = aPoint.y + dist * aDirection.y;
+    if (aPoint.x() * aDirection.x() >= 0) return UUtils::kInfinity;
+    dist = safx / std::abs(aDirection.x());
+    coordinate = aPoint.y() + dist * aDirection.y();
     if (std::abs(coordinate) < fDy)
     {
-      coordinate = aPoint.z + dist * aDirection.z;
+      coordinate = aPoint.z() + dist * aDirection.z();
       if (std::abs(coordinate) < fDz)
       {
-        //            aNormal.x = UUtils::Sign(1.0, aPoint.x);
+        //            aNormal.x() = UUtils::Sign(1.0, aPoint.x());
         if (dist < 0.5 * delta) dist = 0.;
         return dist;
       }
@@ -178,15 +178,15 @@ double UBox::DistanceToIn(const UVector3& aPoint,
   }
   if (safy > 0)
   {
-    if (aPoint.y * aDirection.y >= 0) return UUtils::kInfinity;
-    dist = safy / std::abs(aDirection.y);
-    coordinate = aPoint.x + dist * aDirection.x;
+    if (aPoint.y() * aDirection.y() >= 0) return UUtils::kInfinity;
+    dist = safy / std::abs(aDirection.y());
+    coordinate = aPoint.x() + dist * aDirection.x();
     if (std::abs(coordinate) < fDx)
     {
-      coordinate = aPoint.z + dist * aDirection.z;
+      coordinate = aPoint.z() + dist * aDirection.z();
       if (std::abs(coordinate) < fDz)
       {
-        //            aNormal.y = UUtils::Sign(1.0, aPoint.y);
+        //            aNormal.y() = UUtils::Sign(1.0, aPoint.y());
         if (dist < 0.5 * delta) dist = 0.;
         return dist;
       }
@@ -194,15 +194,15 @@ double UBox::DistanceToIn(const UVector3& aPoint,
   }
   if (safz > 0)
   {
-    if (aPoint.z * aDirection.z >= 0) return UUtils::kInfinity;
-    dist = safz / std::abs(aDirection.z);
-    coordinate = aPoint.x + dist * aDirection.x;
+    if (aPoint.z() * aDirection.z() >= 0) return UUtils::kInfinity;
+    dist = safz / std::abs(aDirection.z());
+    coordinate = aPoint.x() + dist * aDirection.x();
     if (std::abs(coordinate) < fDx)
     {
-      coordinate = aPoint.y + dist * aDirection.y;
+      coordinate = aPoint.y() + dist * aDirection.y();
       if (std::abs(coordinate) < fDy)
       {
-        //            aNormal.z = UUtils::Sign(1.0, aPoint.z);
+        //            aNormal.z() = UUtils::Sign(1.0, aPoint.z());
         if (dist < 0.5 * delta) dist = 0.;
         return dist;
       }
@@ -228,19 +228,19 @@ double UBox::DistanceToOut(const UVector3&  aPoint, const UVector3& aDirection,
   convex = true;  //   Box is convex (even if the starting point is outside)
   // Check always the "away" surface along direction on axis. This responds
   // corectly even for points outside the solid (no need for tolerance check)
-  if (aDirection.x != 0.0)
+  if (aDirection.x() != 0.0)
     { 
-    signDir = UUtils::Sign(1.0, aDirection.x);
+    signDir = UUtils::Sign(1.0, aDirection.x());
     aNormal.Set(signDir, 0., 0.);
-    snxt = (-aPoint.x + signDir * fDx) / aDirection.x;
+    snxt = (-aPoint.x() + signDir * fDx) / aDirection.x();
     if (snxt <= 0) return 0.0;   // point outside moving outwards
     smin = snxt;
   }
 
-  if (aDirection.y != 0.0)
+  if (aDirection.y() != 0.0)
     { 
-    signDir = UUtils::Sign(1.0, aDirection.y);
-    snxt = (-aPoint.y + signDir * fDy) / aDirection.y;
+    signDir = UUtils::Sign(1.0, aDirection.y());
+    snxt = (-aPoint.y() + signDir * fDy) / aDirection.y();
     if (snxt <= 0)
     {
       aNormal.Set(0., signDir, 0.);
@@ -253,10 +253,10 @@ double UBox::DistanceToOut(const UVector3&  aPoint, const UVector3& aDirection,
     }
   }
 
-  if (aDirection.z != 0.0)
+  if (aDirection.z() != 0.0)
     { 
-    signDir = UUtils::Sign(1.0, aDirection.z);
-    snxt = (-aPoint.z + signDir * fDz) / aDirection.z;
+    signDir = UUtils::Sign(1.0, aDirection.z());
+    snxt = (-aPoint.z() + signDir * fDz) / aDirection.z();
     if (snxt <= 0)
     {
       aNormal.Set(0., 0., signDir);
@@ -280,10 +280,10 @@ double UBox::SafetyFromInside(const UVector3& aPoint,
   // of its surfaces. The algorithm may be accurate or should provide a fast
   // underestimate.
   double safe, safy, safz;
-  safe = fDx - std::abs(aPoint.x);
-  safy = fDy - std::abs(aPoint.y);
+  safe = fDx - std::abs(aPoint.x());
+  safy = fDy - std::abs(aPoint.y());
   if (safy < safe) safe = safy;
-  safz = fDz - std::abs(aPoint.z);
+  safz = fDz - std::abs(aPoint.z());
   if (safz < safe) safe = safz;
   return std::max(0.0, safe);
 }
@@ -296,10 +296,10 @@ double UBox::SafetyFromOutside(const UVector3& aPoint,
   // of its surfaces. The algorithm may be accurate or should provide a fast
   // underestimate.
   double safe, safx, safy, safz;
-  safe = safx = -fDx + std::abs(aPoint.x);
-  safy = -fDy + std::abs(aPoint.y);
+  safe = safx = -fDx + std::abs(aPoint.x());
+  safy = -fDy + std::abs(aPoint.y());
   if (safy > safe) safe = safy;
-  safz = -fDz + std::abs(aPoint.z);
+  safz = -fDz + std::abs(aPoint.z());
   if (safz > safe) safe = safz;
   if (safe < 0.0) return 0.0; // point is inside
   if (!aAccurate) return safe;
@@ -340,17 +340,17 @@ bool UBox::Normal(const UVector3& aPoint, UVector3& aNormal) const
   aNormal.Set(0.);
   UVector3 crt_normal, min_normal;
   int nsurf = 0;
-  double safx = std::abs(std::abs(aPoint.x) - fDx);
+  double safx = std::abs(std::abs(aPoint.x()) - fDx);
   double safmin = safx;
-  crt_normal.Set(UUtils::Sign(1., aPoint.x), 0., 0.);
+  crt_normal.Set(UUtils::Sign(1., aPoint.x()), 0., 0.);
   min_normal = crt_normal;
   if (safx < delta)
   {
     nsurf++;
     aNormal += crt_normal;
   }
-  double safy = std::abs(std::abs(aPoint.y) - fDy);
-  crt_normal.Set(0., UUtils::Sign(1., aPoint.y), 0.);
+  double safy = std::abs(std::abs(aPoint.y()) - fDy);
+  crt_normal.Set(0., UUtils::Sign(1., aPoint.y()), 0.);
   if (safy < delta)
   {
     nsurf++;
@@ -361,8 +361,8 @@ bool UBox::Normal(const UVector3& aPoint, UVector3& aNormal) const
     min_normal = crt_normal;
     safmin = safy;
   }
-  double safz = std::abs(std::abs(aPoint.z) - fDz);
-  crt_normal.Set(0., 0., UUtils::Sign(1., aPoint.z));
+  double safz = std::abs(std::abs(aPoint.z()) - fDz);
+  crt_normal.Set(0., 0., UUtils::Sign(1., aPoint.z()));
   if (safz < delta)
   {
     nsurf++;
@@ -397,12 +397,12 @@ bool UBox::Normal(const UVector3& aPoint, UVector3& aNormal) const
 void UBox::Extent(UVector3& aMin, UVector3& aMax) const
 {
   // Returns the full 3D cartesian extent of the solid.
-  aMin.x = -fDx;
-  aMax.x = fDx;
-  aMin.y = -fDy;
-  aMax.y = fDy;
-  aMin.z = -fDz;
-  aMax.z = fDz;
+  aMin.x() = -fDx;
+  aMax.x() = fDx;
+  aMin.y() = -fDy;
+  aMax.y() = fDy;
+  aMin.z() = -fDz;
+  aMax.z() = fDz;
 }
 
 /////////////////////////////////////////////////////////////////////////////////////
@@ -465,6 +465,49 @@ UVector3 UBox::GetPointOnSurface() const
   return UVector3(px, py, pz);
 }
 
+/////////////////////////////////////////////////////////////////////////////////////
+//
+// GetPointOnEdge
+//
+// Return a point (UVector3) randomly and uniformly selected
+// on the solid edge
+
+UVector3 UBox::GetPointOnEdge() const
+{
+  double select, sumL;
+  double Lx = 2 * fDx, Ly = 2 * fDy, Lz= 2 * fDz;
+
+  sumL   = Lx + Ly + Lz;
+  select = sumL * UUtils::Random();
+
+  if (select < Lx)
+  {
+    select = UUtils::Random();
+    if (select < 0.25) return UVector3( -fDx + 2 * fDx* UUtils::Random(),-fDy,-fDz);
+    if (select < 0.5 ) return UVector3( -fDx + 2 * fDx* UUtils::Random(), fDy,-fDz);
+    if (select < 0.75) return UVector3( -fDx + 2 * fDx* UUtils::Random(),-fDy, fDz);
+    return UVector3( -fDx + 2 * fDx* UUtils::Random(),fDy,fDz);
+  }
+  else if ((select - Lx) < Ly)
+  {
+    select = UUtils::Random();
+    if (select < 0.25) return UVector3( -fDx,-fDy + 2 * fDy* UUtils::Random(),-fDz);
+    if (select < 0.5 ) return UVector3(  fDx,-fDy + 2 * fDy* UUtils::Random(),-fDz);
+    if (select < 0.75) return UVector3( -fDx,-fDy + 2 * fDy* UUtils::Random(), fDz);
+    return UVector3( fDx,-fDy + 2 * fDy* UUtils::Random(),fDz);
+  }
+  else
+  {
+   select = UUtils::Random();
+   if (select < 0.25) return UVector3( -fDx,-fDy,-fDz + 2 * fDz* UUtils::Random());
+   if (select < 0.5 ) return UVector3(  fDx,-fDy,-fDz + 2 * fDz* UUtils::Random());
+   if (select < 0.75) return UVector3( -fDx, fDy,-fDz + 2 * fDz* UUtils::Random());
+   return UVector3( fDx,fDy,-fDz + 2 * fDz* UUtils::Random());
+    
+  }
+  return 0;
+}
+
 std::ostream& UBox::StreamInfo(std::ostream& os) const
 {
   int oldprc = os.precision(16);
@@ -495,7 +538,7 @@ void UBox::SetXHalfLength(double dx)
             << std::endl
             << "       hX = " << dx;
     UUtils::Exception("UBox::SetXHalfLength()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
   fCubicVolume = 0.;
   fSurfaceArea = 0.;
@@ -515,7 +558,7 @@ void UBox::SetYHalfLength(double dy)
             << std::endl
             << "       hY = " << dy;
     UUtils::Exception("UBox::SetYHalfLength()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
   fCubicVolume = 0.;
   fSurfaceArea = 0.;
@@ -535,7 +578,7 @@ void UBox::SetZHalfLength(double dz)
             << std::endl
             << "       hZ = " << dz;
     UUtils::Exception("G4Box::SetZHalfLength()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
   fCubicVolume = 0.;
   fSurfaceArea = 0.;
diff --git a/source/externals/usolids/src/UCons.cc b/source/externals/usolids/src/UCons.cc
index 6cc0f25b82a..8ebc461c215 100644
--- a/source/externals/usolids/src/UCons.cc
+++ b/source/externals/usolids/src/UCons.cc
@@ -54,7 +54,7 @@ UCons::UCons(const std::string& pName,
     std::ostringstream message;
     message << "Invalid Z half-length for Solid: " << GetName() << std::endl
             << "  hZ = " << pDz;
-    UUtils::Exception("UCons::UCons()", "UGeomSolids", FatalErrorInArguments, 1, message.str().c_str());
+    UUtils::Exception("UCons::UCons()", "GeomSolids0002", UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Check radii
@@ -65,7 +65,7 @@ UCons::UCons(const std::string& pName,
     message << "Invalid values of radii for Solid: " << GetName() << std::endl
             << "  pRmin1 = " << pRmin1 << ", pRmin2 = " << pRmin2
             << ", pRmax1 = " << pRmax1 << ", pRmax2 = " << pRmax2;
-    UUtils::Exception("UCons::UCons()", "UGeomSolids", FatalErrorInArguments, 1, message.str().c_str());
+    UUtils::Exception("UCons::UCons()", "GeomSolids0002", UFatalErrorInArguments, 1, message.str().c_str());
 
   }
   if ((pRmin1 == 0.0) && (pRmin2 > 0.0))
@@ -186,14 +186,14 @@ bool UCons::Normal(const UVector3& p, UVector3& n) const
   UVector3 norm, sumnorm(0., 0., 0.), nZ = UVector3(0., 0., 1.);
   UVector3 nR, nr(0., 0., 0.), nPs, nPe;
 
-  distZ = std::fabs(std::fabs(p.z) - fDz);
-  rho  = std::sqrt(p.x * p.x + p.y * p.y);
+  distZ = std::fabs(std::fabs(p.z()) - fDz);
+  rho  = std::sqrt(p.x() * p.x() + p.y() * p.y());
 
-  pRMin   = rho - p.z * tanRMin;
+  pRMin   = rho - p.z() * tanRMin;
   widRMin = fRmin2 - fDz * tanRMin;
   distRMin = std::fabs(pRMin - widRMin) / secRMin;
 
-  pRMax   = rho - p.z * tanRMax;
+  pRMax   = rho - p.z() * tanRMax;
   widRMax = fRmax2 - fDz * tanRMax;
   distRMax = std::fabs(pRMax - widRMax) / secRMax;
 
@@ -201,7 +201,7 @@ bool UCons::Normal(const UVector3& p, UVector3& n) const
   {
     if (rho)
     {
-      pPhi = std::atan2(p.y, p.x);
+      pPhi = std::atan2(p.y(), p.x());
 
       if (pPhi  < fSPhi - delta)
       {
@@ -225,10 +225,10 @@ bool UCons::Normal(const UVector3& p, UVector3& n) const
   }
   if (rho > delta)
   {
-    nR = UVector3(p.x / rho / secRMax, p.y / rho / secRMax, -tanRMax / secRMax);
+    nR = UVector3(p.x() / rho / secRMax, p.y() / rho / secRMax, -tanRMax / secRMax);
     if (fRmin1 || fRmin2)
     {
-      nr = UVector3(-p.x / rho / secRMin, -p.y / rho / secRMin, tanRMin / secRMin);
+      nr = UVector3(-p.x() / rho / secRMin, -p.y() / rho / secRMin, tanRMin / secRMin);
     }
   }
 
@@ -258,7 +258,7 @@ bool UCons::Normal(const UVector3& p, UVector3& n) const
   if (distZ <= delta)
   {
     noSurfaces ++;
-    if (p.z >= 0.)
+    if (p.z() >= 0.)
     {
       sumnorm += nZ;
     }
@@ -272,7 +272,7 @@ bool UCons::Normal(const UVector3& p, UVector3& n) const
 #ifdef UDEBUG
 
     UUtils::Exception("UCons::SurfaceNormal(p)", "GeomSolids1002",
-                      Warning, 1, "Point p is not on surface !?");
+                      UWarning, 1, "Point p is not on surface !?");
 #endif
     norm = ApproxSurfaceNormal(p);
   }
@@ -304,14 +304,14 @@ UVector3 UCons::ApproxSurfaceNormal(const UVector3& p) const
   double pRMin, widRMin;
   double pRMax, widRMax;
 
-  distZ = std::fabs(std::fabs(p.z) - fDz);
-  rho  = std::sqrt(p.x * p.x + p.y * p.y);
+  distZ = std::fabs(std::fabs(p.z()) - fDz);
+  rho  = std::sqrt(p.x() * p.x() + p.y() * p.y());
 
-  pRMin   = rho - p.z * tanRMin;
+  pRMin   = rho - p.z() * tanRMin;
   widRMin = fRmin2 - fDz * tanRMin;
   distRMin = std::fabs(pRMin - widRMin) / secRMin;
 
-  pRMax   = rho - p.z * tanRMax;
+  pRMax   = rho - p.z() * tanRMax;
   widRMax = fRmax2 - fDz * tanRMax;
   distRMax = std::fabs(pRMax - widRMax) / secRMax;
 
@@ -343,7 +343,7 @@ UVector3 UCons::ApproxSurfaceNormal(const UVector3& p) const
   }
   if (!fPhiFullCone && rho)    // Protected against (0,0,z)
   {
-    phi = std::atan2(p.y, p.x);
+    phi = std::atan2(p.y(), p.x());
 
     if (phi < 0)
     {
@@ -382,14 +382,14 @@ UVector3 UCons::ApproxSurfaceNormal(const UVector3& p) const
   {
     case kNRMin:      // Inner radius
       rho *= secRMin;
-      norm = UVector3(-p.x / rho, -p.y / rho, tanRMin / secRMin);
+      norm = UVector3(-p.x() / rho, -p.y() / rho, tanRMin / secRMin);
       break;
     case kNRMax:      // Outer radius
       rho *= secRMax;
-      norm = UVector3(p.x / rho, p.y / rho, -tanRMax / secRMax);
+      norm = UVector3(p.x() / rho, p.y() / rho, -tanRMax / secRMax);
       break;
     case kNZ:        // +/- dz
-      if (p.z > 0)
+      if (p.z() > 0)
       {
         norm = UVector3(0, 0, 1);
       }
@@ -406,7 +406,7 @@ UVector3 UCons::ApproxSurfaceNormal(const UVector3& p) const
       break;
     default:          // Should never reach this case...
       UUtils::Exception("UCons::ApproxSurfaceNormal()",
-                        "GeomSolids1002", Warning, 1,
+                        "GeomSolids1002", UWarning, 1,
                         "Undefined side for valid surface normal to solid.");
       break;
   }
@@ -480,48 +480,48 @@ double UCons::DistanceToIn(const UVector3& p,
   tolIDz = fDz - halfCarTolerance;
   tolODz = fDz + halfCarTolerance;
 
-  if (std::fabs(p.z) >= tolIDz)
+  if (std::fabs(p.z()) >= tolIDz)
   {
-    if (p.z * v.z < 0)   // at +Z going in -Z or visa versa
+    if (p.z() * v.z() < 0)   // at +Z going in -Z or visa versa
     {
-      sd = (std::fabs(p.z) - fDz) / std::fabs(v.z); // Z intersect distance
+      sd = (std::fabs(p.z()) - fDz) / std::fabs(v.z()); // Z intersect distance
 
       if (sd < 0.0)
       {
         sd = 0.0;  // negative dist -> zero
       }
 
-      xi   = p.x + sd * v.x; // Intersection coords
-      yi   = p.y + sd * v.y;
+      xi   = p.x() + sd * v.x(); // Intersection coords
+      yi   = p.y() + sd * v.y();
       rhoi2 = xi * xi + yi * yi ;
 
       // Check validity of intersection
       // Calculate (outer) tolerant radi^2 at intersecion
 
-      if (v.z > 0)
+      if (v.z() > 0)
       {
         tolORMin  = fRmin1 - halfRadTolerance * secRMin;
         tolIRMin  = fRmin1 + halfRadTolerance * secRMin;
         tolIRMax  = fRmax1 - halfRadTolerance * secRMin;
-        tolORMax2 = (fRmax1 + halfRadTolerance * secRMax) *
-                    (fRmax1 + halfRadTolerance * secRMax);
+        // tolORMax2 = (fRmax1 + halfRadTolerance * secRMax) *
+        //             (fRmax1 + halfRadTolerance * secRMax);
       }
       else
       {
         tolORMin  = fRmin2 - halfRadTolerance * secRMin;
         tolIRMin  = fRmin2 + halfRadTolerance * secRMin;
         tolIRMax  = fRmax2 - halfRadTolerance * secRMin;
-        tolORMax2 = (fRmax2 + halfRadTolerance * secRMax) *
-                    (fRmax2 + halfRadTolerance * secRMax);
+        // tolORMax2 = (fRmax2 + halfRadTolerance * secRMax) *
+        //             (fRmax2 + halfRadTolerance * secRMax);
       }
       if (tolORMin > 0)
       {
-        tolORMin2 = tolORMin * tolORMin;
+        // tolORMin2 = tolORMin * tolORMin;
         tolIRMin2 = tolIRMin * tolIRMin;
       }
       else
       {
-        tolORMin2 = 0.0;
+        // tolORMin2 = 0.0;
         tolIRMin2 = 0.0;
       }
       if (tolIRMax > 0)
@@ -564,7 +564,7 @@ double UCons::DistanceToIn(const UVector3& p,
 // Intersection with outer cone (possible return) and
 //                   inner cone (must also check phi)
 //
-// Intersection point (xi,yi,zi) on line x=p.x+t*v.x etc.
+// Intersection point (xi,yi,zi) on line x=p.x()+t*v.x() etc.
 //
 // Intersects with x^2+y^2=(a*z+b)^2
 //
@@ -577,17 +577,17 @@ double UCons::DistanceToIn(const UVector3& p,
 //  \--------u-------/       \-----------v----------/ \---------w--------/
 //
 
-  t1   = 1.0 - v.z * v.z;
-  t2   = p.x * v.x + p.y * v.y;
-  t3   = p.x * p.x + p.y * p.y;
-  rin = tanRMin * p.z + rMinAv;
-  rout = tanRMax * p.z + rMaxAv;
+  t1   = 1.0 - v.z() * v.z();
+  t2   = p.x() * v.x() + p.y() * v.y();
+  t3   = p.x() * p.x() + p.y() * p.y();
+  rin = tanRMin * p.z() + rMinAv;
+  rout = tanRMax * p.z() + rMaxAv;
 
   // Outer Cone Intersection
   // Must be outside/on outer cone for valid intersection
 
-  nt1 = t1 - (tanRMax * v.z) * (tanRMax * v.z);
-  nt2 = t2 - tanRMax * v.z * rout;
+  nt1 = t1 - (tanRMax * v.z()) * (tanRMax * v.z());
+  nt2 = t2 - tanRMax * v.z() * rout;
   nt3 = t3 - rout * rout;
 
   if (std::fabs(nt1) > kRadTolerance) // Equation quadratic => 2 roots
@@ -644,7 +644,7 @@ double UCons::DistanceToIn(const UVector3& p,
             double fTerm = sd - std::fmod(sd, dRmax);
             sd = fTerm + DistanceToIn(p + fTerm * v, v);
           }
-          zi = p.z + sd * v.z;
+          zi = p.z() + sd * v.z();
 
           if (std::fabs(zi) <= tolODz)
           {
@@ -656,8 +656,8 @@ double UCons::DistanceToIn(const UVector3& p,
             }
             else
             {
-              xi     = p.x + sd * v.x;
-              yi     = p.y + sd * v.y;
+              xi     = p.x() + sd * v.x();
+              yi     = p.y() + sd * v.y();
               ri     = rMaxAv + zi * tanRMax;
               cosPsi = (xi * cosCPhi + yi * sinCPhi) / ri;
 
@@ -677,18 +677,18 @@ double UCons::DistanceToIn(const UVector3& p,
 
       if ((t3 > (rin + halfRadTolerance * secRMin)*
            (rin + halfRadTolerance * secRMin))
-          && (nt2 < 0) && (d >= 0) && (std::fabs(p.z) <= tolIDz))
+          && (nt2 < 0) && (d >= 0) && (std::fabs(p.z()) <= tolIDz))
       {
         // Inside cones, delta r -ve, inside z extent
         // Point is on the Surface => check Direction using Normal.Dot(v)
 
-        xi     = p.x;
-        yi     = p.y  ;
+        xi     = p.x();
+        yi     = p.y()  ;
         risec = std::sqrt(xi * xi + yi * yi) * secRMax;
         norm = UVector3(xi / risec, yi / risec, -tanRMax / secRMax);
         if (!fPhiFullCone)
         {
-          cosPsi = (p.x * cosCPhi + p.y * sinCPhi) / std::sqrt(t3);
+          cosPsi = (p.x() * cosCPhi + p.y() * sinCPhi) / std::sqrt(t3);
           if (cosPsi >= cosHDPhiIT)
           {
             if (norm.Dot(v) <= 0)
@@ -719,7 +719,7 @@ double UCons::DistanceToIn(const UVector3& p,
       }
       else  // sd >= 0, If 'forwards'. Check z intersection
       {
-        zi = p.z + sd * v.z;
+        zi = p.z() + sd * v.z();
 
         if ((std::fabs(zi) <= tolODz) && (nt2 < 0))
         {
@@ -731,8 +731,8 @@ double UCons::DistanceToIn(const UVector3& p,
           }
           else
           {
-            xi     = p.x + sd * v.x;
-            yi     = p.y + sd * v.y;
+            xi     = p.x() + sd * v.x();
+            yi     = p.y() + sd * v.y();
             ri     = rMaxAv + zi * tanRMax;
             cosPsi = (xi * cosCPhi + yi * sinCPhi) / ri;
 
@@ -761,8 +761,8 @@ double UCons::DistanceToIn(const UVector3& p,
 
   if (rMinAv)
   {
-    nt1 = t1 - (tanRMin * v.z) * (tanRMin * v.z);
-    nt2 = t2 - tanRMin * v.z * rin;
+    nt1 = t1 - (tanRMin * v.z()) * (tanRMin * v.z());
+    nt2 = t2 - tanRMin * v.z() * rin;
     nt3 = t3 - rin * rin;
 
     if (nt1)
@@ -794,14 +794,14 @@ double UCons::DistanceToIn(const UVector3& p,
               double fTerm = sd - std::fmod(sd, dRmax);
               sd = fTerm + DistanceToIn(p + fTerm * v, v);
             }
-            zi = p.z + sd * v.z;
+            zi = p.z() + sd * v.z();
 
             if (std::fabs(zi) <= tolODz)
             {
               if (!fPhiFullCone)
               {
-                xi     = p.x + sd * v.x;
-                yi     = p.y + sd * v.y;
+                xi     = p.x() + sd * v.x();
+                yi     = p.y() + sd * v.y();
                 ri     = rMinAv + zi * tanRMin;
                 cosPsi = (xi * cosCPhi + yi * sinCPhi) / ri;
 
@@ -834,8 +834,8 @@ double UCons::DistanceToIn(const UVector3& p,
                 {
                   // Calculate a normal vector in order to check Direction
 
-                  xi     = p.x + sd * v.x;
-                  yi     = p.y + sd * v.y;
+                  xi     = p.x() + sd * v.x();
+                  yi     = p.y() + sd * v.y();
                   risec = std::sqrt(xi * xi + yi * yi) * secRMin;
                   norm = UVector3(-xi / risec, -yi / risec, tanRMin / secRMin);
                   if (norm.Dot(v) <= 0)
@@ -869,7 +869,7 @@ double UCons::DistanceToIn(const UVector3& p,
           {
             sd = -b + std::sqrt(d);
           }
-          zi = p.z + sd * v.z;
+          zi = p.z() + sd * v.z();
           ri = rMinAv + zi * tanRMin;
 
           if (ri > 0)
@@ -884,8 +884,8 @@ double UCons::DistanceToIn(const UVector3& p,
               }
               if (!fPhiFullCone)
               {
-                xi     = p.x + sd * v.x;
-                yi     = p.y + sd * v.y;
+                xi     = p.x() + sd * v.x();
+                yi     = p.y() + sd * v.y();
                 cosPsi = (xi * cosCPhi + yi * sinCPhi) / ri;
 
                 if (cosPsi >= cosHDPhiOT)
@@ -917,8 +917,8 @@ double UCons::DistanceToIn(const UVector3& p,
                 {
                   // Calculate a normal vector in order to check Direction
 
-                  xi     = p.x + sd * v.x;
-                  yi     = p.y + sd * v.y;
+                  xi     = p.x() + sd * v.x();
+                  yi     = p.y() + sd * v.y();
                   risec = std::sqrt(xi * xi + yi * yi) * secRMin;
                   norm = UVector3(-xi / risec, -yi / risec, tanRMin / secRMin);
                   if (norm.Dot(v) <= 0)
@@ -939,7 +939,7 @@ double UCons::DistanceToIn(const UVector3& p,
             {
               sd = c / (-b + std::sqrt(d));
             }
-            zi = p.z + sd * v.z;
+            zi = p.z() + sd * v.z();
             ri = rMinAv + zi * tanRMin;
 
             if ((sd >= 0) && (ri > 0) && (std::fabs(zi) <= tolODz))   // sd>0
@@ -952,8 +952,8 @@ double UCons::DistanceToIn(const UVector3& p,
               }
               if (!fPhiFullCone)
               {
-                xi     = p.x + sd * v.x;
-                yi     = p.y + sd * v.y;
+                xi     = p.x() + sd * v.x();
+                yi     = p.y() + sd * v.y();
                 cosPsi = (xi * cosCPhi + yi * sinCPhi) / ri;
 
                 if (cosPsi >= cosHDPhiIT)
@@ -985,8 +985,8 @@ double UCons::DistanceToIn(const UVector3& p,
                 {
                   // Calculate a normal vector in order to check Direction
 
-                  xi     = p.x + sd * v.x;
-                  yi     = p.y + sd * v.y;
+                  xi     = p.x() + sd * v.x();
+                  yi     = p.y() + sd * v.y();
                   risec = std::sqrt(xi * xi + yi * yi) * secRMin;
                   norm = UVector3(-xi / risec, -yi / risec, tanRMin / secRMin);
                   if (norm.Dot(v) <= 0)
@@ -1006,7 +1006,7 @@ double UCons::DistanceToIn(const UVector3& p,
         // ----> if not:
         //    -2nd root with validity check
 
-        if (std::fabs(p.z) <= tolODz)
+        if (std::fabs(p.z()) <= tolODz)
         {
           if (nt2 > 0)
           {
@@ -1014,7 +1014,7 @@ double UCons::DistanceToIn(const UVector3& p,
 
             if (!fPhiFullCone)
             {
-              cosPsi = (p.x * cosCPhi + p.y * sinCPhi) / std::sqrt(t3);
+              cosPsi = (p.x() * cosCPhi + p.y() * sinCPhi) / std::sqrt(t3);
 
               if (cosPsi >= cosHDPhiIT)
               {
@@ -1045,7 +1045,7 @@ double UCons::DistanceToIn(const UVector3& p,
               {
                 sd = c / (-b + std::sqrt(d));
               }
-              zi = p.z + sd * v.z;
+              zi = p.z() + sd * v.z();
               ri = rMinAv + zi * tanRMin;
 
               if (ri > 0)     // 2nd root
@@ -1059,7 +1059,7 @@ double UCons::DistanceToIn(const UVector3& p,
                   sd = -b + std::sqrt(d);
                 }
 
-                zi = p.z + sd * v.z;
+                zi = p.z() + sd * v.z();
 
                 if ((sd >= 0) && (std::fabs(zi) <= tolODz))    // sd>0
                 {
@@ -1071,8 +1071,8 @@ double UCons::DistanceToIn(const UVector3& p,
                   }
                   if (!fPhiFullCone)
                   {
-                    xi     = p.x + sd * v.x;
-                    yi     = p.y + sd * v.y;
+                    xi     = p.x() + sd * v.x();
+                    yi     = p.y() + sd * v.y();
                     ri     = rMinAv + zi * tanRMin;
                     cosPsi = (xi * cosCPhi + yi * sinCPhi) / ri;
 
@@ -1110,7 +1110,7 @@ double UCons::DistanceToIn(const UVector3& p,
             {
               sd = -b + std::sqrt(d);
             }
-            zi = p.z + sd * v.z;
+            zi = p.z() + sd * v.z();
 
             if ((sd >= 0) && (std::fabs(zi) <= tolODz))    // sd>0
             {
@@ -1122,8 +1122,8 @@ double UCons::DistanceToIn(const UVector3& p,
               }
               if (!fPhiFullCone)
               {
-                xi     = p.x + sd * v.x;
-                yi     = p.y + sd * v.y;
+                xi     = p.x() + sd * v.x();
+                yi     = p.y() + sd * v.y();
                 ri     = rMinAv + zi * tanRMin;
                 cosPsi = (xi * cosCPhi + yi * sinCPhi) / ri;
 
@@ -1156,11 +1156,11 @@ double UCons::DistanceToIn(const UVector3& p,
   {
     // First phi surface (starting phi)
 
-    Comp    = v.x * sinSPhi - v.y * cosSPhi;
+    Comp    = v.x() * sinSPhi - v.y() * cosSPhi;
 
     if (Comp < 0)      // Component in outwards normal dirn
     {
-      Dist = (p.y * cosSPhi - p.x * sinSPhi);
+      Dist = (p.y() * cosSPhi - p.x() * sinSPhi);
 
       if (Dist < halfCarTolerance)
       {
@@ -1173,12 +1173,12 @@ double UCons::DistanceToIn(const UVector3& p,
             sd = 0.0;
           }
 
-          zi = p.z + sd * v.z;
+          zi = p.z() + sd * v.z();
 
           if (std::fabs(zi) <= tolODz)
           {
-            xi        = p.x + sd * v.x;
-            yi        = p.y + sd * v.y;
+            xi        = p.x() + sd * v.x();
+            yi        = p.y() + sd * v.y();
             rhoi2    = xi * xi + yi * yi;
             tolORMin2 = (rMinOAv + zi * tanRMin) * (rMinOAv + zi * tanRMin);
             tolORMax2 = (rMaxOAv + zi * tanRMax) * (rMaxOAv + zi * tanRMax);
@@ -1200,11 +1200,11 @@ double UCons::DistanceToIn(const UVector3& p,
 
     // Second phi surface (Ending phi)
 
-    Comp    = -(v.x * sinEPhi - v.y * cosEPhi);
+    Comp    = -(v.x() * sinEPhi - v.y() * cosEPhi);
 
     if (Comp < 0)     // Component in outwards normal dirn
     {
-      Dist = -(p.y * cosEPhi - p.x * sinEPhi);
+      Dist = -(p.y() * cosEPhi - p.x() * sinEPhi);
       if (Dist < halfCarTolerance)
       {
         sd = Dist / Comp;
@@ -1216,12 +1216,12 @@ double UCons::DistanceToIn(const UVector3& p,
             sd = 0.0;
           }
 
-          zi = p.z + sd * v.z;
+          zi = p.z() + sd * v.z();
 
           if (std::fabs(zi) <= tolODz)
           {
-            xi        = p.x + sd * v.x;
-            yi        = p.y + sd * v.y;
+            xi        = p.x() + sd * v.x();
+            yi        = p.y() + sd * v.y();
             rhoi2    = xi * xi + yi * yi;
             tolORMin2 = (rMinOAv + zi * tanRMin) * (rMinOAv + zi * tanRMin);
             tolORMax2 = (rMaxOAv + zi * tanRMax) * (rMaxOAv + zi * tanRMax);
@@ -1262,16 +1262,16 @@ double UCons::SafetyFromOutside(const UVector3& p, bool aAccurate) const
   double pRMin, pRMax;
   bool outside;
 
-  rho  = std::sqrt(p.x * p.x + p.y * p.y);
-  safeZ = std::fabs(p.z) - fDz;
+  rho  = std::sqrt(p.x() * p.x() + p.y() * p.y());
+  safeZ = std::fabs(p.z()) - fDz;
   safeR1 = 0; safeR2 = 0;
 
   if (fRmin1 || fRmin2)
   {
-    pRMin  = tanRMin * p.z + (fRmin1 + fRmin2) * 0.5;
+    pRMin  = tanRMin * p.z() + (fRmin1 + fRmin2) * 0.5;
     safeR1  = (pRMin - rho) / secRMin;
 
-    pRMax  = tanRMax * p.z + (fRmax1 + fRmax2) * 0.5;
+    pRMax  = tanRMax * p.z() + (fRmax1 + fRmax2) * 0.5;
     safeR2  = (rho - pRMax) / secRMax;
 
     if (safeR1 > safeR2)
@@ -1285,7 +1285,7 @@ double UCons::SafetyFromOutside(const UVector3& p, bool aAccurate) const
   }
   else
   {
-    pRMax  = tanRMax * p.z + (fRmax1 + fRmax2) * 0.5;
+    pRMax  = tanRMax * p.z() + (fRmax1 + fRmax2) * 0.5;
     safe    = (rho - pRMax) / secRMax;
   }
   if (safeZ > safe)
@@ -1372,13 +1372,13 @@ double UCons::DistanceToOut(const UVector3& p,
 
   // Z plane intersection
 
-  if (v.z > 0.0)
+  if (v.z() > 0.0)
   {
-    pdist = fDz - p.z;
+    pdist = fDz - p.z();
 
     if (pdist > halfCarTolerance)
     {
-      snxt = pdist / v.z;
+      snxt = pdist / v.z();
       side = kPZ;
     }
     else
@@ -1388,13 +1388,13 @@ double UCons::DistanceToOut(const UVector3& p,
       return  snxt = 0.0;
     }
   }
-  else if (v.z < 0.0)
+  else if (v.z() < 0.0)
   {
-    pdist = fDz + p.z;
+    pdist = fDz + p.z();
 
     if (pdist > halfCarTolerance)
     {
-      snxt = -pdist / v.z;
+      snxt = -pdist / v.z();
       side = kMZ;
     }
     else
@@ -1415,7 +1415,7 @@ double UCons::DistanceToOut(const UVector3& p,
   // Intersection with outer cone (possible return) and
   //                   inner cone (must also check phi)
   //
-  // Intersection point (xi,yi,zi) on line x=p.x+t*v.x etc.
+  // Intersection point (xi,yi,zi) on line x=p.x()+t*v.x() etc.
   //
   // Intersects with x^2+y^2=(a*z+b)^2
   //
@@ -1429,21 +1429,21 @@ double UCons::DistanceToOut(const UVector3& p,
 
   rMaxAv  = (fRmax1 + fRmax2) * 0.5;
 
-  t1   = 1.0 - v.z * v.z;   // since v normalised
-  t2   = p.x * v.x + p.y * v.y;
-  t3   = p.x * p.x + p.y * p.y;
-  rout = tanRMax * p.z + rMaxAv;
+  t1   = 1.0 - v.z() * v.z();   // since v normalised
+  t2   = p.x() * v.x() + p.y() * v.y();
+  t3   = p.x() * p.x() + p.y() * p.y();
+  rout = tanRMax * p.z() + rMaxAv;
 
-  nt1 = t1 - (tanRMax * v.z) * (tanRMax * v.z);
-  nt2 = t2 - tanRMax * v.z * rout;
+  nt1 = t1 - (tanRMax * v.z()) * (tanRMax * v.z());
+  nt2 = t2 - tanRMax * v.z() * rout;
   nt3 = t3 - rout * rout;
 
-  if (v.z > 0.0)
+  if (v.z() > 0.0)
   {
     deltaRoi2 = snxt * snxt * t1 + 2 * snxt * t2 + t3
                 - fRmax2 * (fRmax2 + kRadTolerance * secRMax);
   }
-  else if (v.z < 0.0)
+  else if (v.z() < 0.0)
   {
     deltaRoi2 = snxt * snxt * t1 + 2 * snxt * t2 + t3
                 - fRmax1 * (fRmax1 + kRadTolerance * secRMax);
@@ -1470,7 +1470,7 @@ double UCons::DistanceToOut(const UVector3& p,
       {
         risec     = std::sqrt(t3) * secRMax;
         aConvex = true;
-        aNormalVector        = UVector3(p.x / risec, p.y / risec, -tanRMax / secRMax);
+        aNormalVector        = UVector3(p.x() / risec, p.y() / risec, -tanRMax / secRMax);
         return snxt = 0;
       }
       else
@@ -1485,7 +1485,7 @@ double UCons::DistanceToOut(const UVector3& p,
           srd = c / (-b + std::sqrt(d));
         }
 
-        zi    = p.z + srd * v.z;
+        zi    = p.z() + srd * v.z();
         ri    = tanRMax * zi + rMaxAv;
 
         if ((ri >= 0) && (-halfRadTolerance <= srd) && (srd <= halfRadTolerance))
@@ -1509,7 +1509,7 @@ double UCons::DistanceToOut(const UVector3& p,
           {
             sr2 = -b + std::sqrt(d);
           }
-          zi  = p.z + sr2 * v.z;
+          zi  = p.z() + sr2 * v.z();
           ri  = tanRMax * zi + rMaxAv;
 
           if ((ri >= 0) && (sr2 > halfRadTolerance))
@@ -1539,7 +1539,7 @@ double UCons::DistanceToOut(const UVector3& p,
 
       risec     = std::sqrt(t3) * secRMax;
       aConvex = true;
-      aNormalVector        = UVector3(p.x / risec, p.y / risec, -tanRMax / secRMax);
+      aNormalVector        = UVector3(p.x() / risec, p.y() / risec, -tanRMax / secRMax);
       return snxt = 0.0;
     }
   }
@@ -1549,7 +1549,7 @@ double UCons::DistanceToOut(const UVector3& p,
 
     risec     = std::sqrt(t3) * secRMax;
     aConvex = true;
-    aNormalVector        = UVector3(p.x / risec, p.y / risec, -tanRMax / secRMax);
+    aNormalVector        = UVector3(p.x() / risec, p.y() / risec, -tanRMax / secRMax);
     return snxt = 0.0;
   }
   else
@@ -1573,8 +1573,8 @@ double UCons::DistanceToOut(const UVector3& p,
     //
     // Calculate a normal vector, as below
 
-    xi    = p.x + slentol * v.x;
-    yi    = p.y + slentol * v.y;
+    xi    = p.x() + slentol * v.x();
+    yi    = p.y() + slentol * v.y();
     risec = std::sqrt(xi * xi + yi * yi) * secRMax;
     UVector3 norm = UVector3(xi / risec, yi / risec, -tanRMax / secRMax);
 
@@ -1595,13 +1595,13 @@ double UCons::DistanceToOut(const UVector3& p,
 
   if (fRmin1 || fRmin2)
   {
-    nt1    = t1 - (tanRMin * v.z) * (tanRMin * v.z);
+    nt1    = t1 - (tanRMin * v.z()) * (tanRMin * v.z());
 
     if (nt1)
     {
       rMinAv  = (fRmin1 + fRmin2) * 0.5;
-      rin    = tanRMin * p.z + rMinAv;
-      nt2    = t2 - tanRMin * v.z * rin;
+      rin    = tanRMin * p.z() + rMinAv;
+      nt2    = t2 - tanRMin * v.z() * rin;
       nt3    = t3 - rin * rin;
 
       // Equation quadratic => 2 roots : first root must be leaving
@@ -1620,8 +1620,8 @@ double UCons::DistanceToOut(const UVector3& p,
           if (nt2 < 0.0)
           {
             aConvex = false;
-            risec = std::sqrt(p.x * p.x + p.y * p.y) * secRMin;
-            aNormalVector = UVector3(-p.x / risec, -p.y / risec, tanRMin / secRMin);
+            risec = std::sqrt(p.x() * p.x() + p.y() * p.y()) * secRMin;
+            aNormalVector = UVector3(-p.x() / risec, -p.y() / risec, tanRMin / secRMin);
             return          snxt      = 0.0;
           }
         }
@@ -1635,7 +1635,7 @@ double UCons::DistanceToOut(const UVector3& p,
           {
             sr2 = c / (-b + std::sqrt(d));
           }
-          zi  = p.z + sr2 * v.z;
+          zi  = p.z() + sr2 * v.z();
           ri  = tanRMin * zi + rMinAv;
 
           if ((ri >= 0.0) && (-halfRadTolerance <= sr2) && (sr2 <= halfRadTolerance))
@@ -1664,7 +1664,7 @@ double UCons::DistanceToOut(const UVector3& p,
             {
               if (sr3 < srd)
               {
-                zi = p.z + sr3 * v.z;
+                zi = p.z() + sr3 * v.z();
                 ri = tanRMin * zi + rMinAv;
 
                 if (ri >= 0.0)
@@ -1703,8 +1703,8 @@ double UCons::DistanceToOut(const UVector3& p,
 
             // Calculate a normal vector, as below
 
-            xi     = p.x + slentol * v.x;
-            yi     = p.y + slentol * v.y;
+            xi     = p.x() + slentol * v.x();
+            yi     = p.y() + slentol * v.y();
             if (sidetol == kRMax)
             {
               risec = std::sqrt(xi * xi + yi * yi) * secRMax;
@@ -1745,7 +1745,7 @@ double UCons::DistanceToOut(const UVector3& p,
     // add angle calculation with correction
     // of the difference in domain of atan2 and Sphi
 
-    vphi = std::atan2(v.y, v.x);
+    vphi = std::atan2(v.y(), v.x());
 
     if (vphi < fSPhi - halfAngTolerance)
     {
@@ -1756,17 +1756,17 @@ double UCons::DistanceToOut(const UVector3& p,
       vphi -= 2 * UUtils::kPi;
     }
 
-    if (p.x || p.y)     // Check if on z axis (rho not needed later)
+    if (p.x() || p.y())     // Check if on z axis (rho not needed later)
     {
       // pDist -ve when inside
 
-      pDistS = p.x * sinSPhi - p.y * cosSPhi;
-      pDistE = -p.x * sinEPhi + p.y * cosEPhi;
+      pDistS = p.x() * sinSPhi - p.y() * cosSPhi;
+      pDistE = -p.x() * sinEPhi + p.y() * cosEPhi;
 
       // Comp -ve when in direction of outwards normal
 
-      compS = -sinSPhi * v.x + cosSPhi * v.y;
-      compE = sinEPhi * v.x - cosEPhi * v.y;
+      compS = -sinSPhi * v.x() + cosSPhi * v.y();
+      compE = sinEPhi * v.x() - cosEPhi * v.y();
 
       sidephi = kNull;
 
@@ -1781,8 +1781,8 @@ double UCons::DistanceToOut(const UVector3& p,
           sphi = pDistS / compS;
           if (sphi >= -halfCarTolerance)
           {
-            xi = p.x + sphi * v.x;
-            yi = p.y + sphi * v.y;
+            xi = p.x() + sphi * v.x();
+            yi = p.y() + sphi * v.y();
 
             // Check intersecting with correct half-plane
             // (if not -> no intersect)
@@ -1828,8 +1828,8 @@ double UCons::DistanceToOut(const UVector3& p,
           //
           if ((sphi2 > -halfCarTolerance) && (sphi2 < sphi))
           {
-            xi = p.x + sphi2 * v.x;
-            yi = p.y + sphi2 * v.y;
+            xi = p.x() + sphi2 * v.x();
+            yi = p.y() + sphi2 * v.y();
 
             // Check intersecting with correct half-plane
 
@@ -1907,15 +1907,15 @@ double UCons::DistanceToOut(const UVector3& p,
   {
       // Note: returned vector not normalised
     case kRMax:        // (divide by frmax for Unit vector)
-      xi         = p.x + snxt * v.x;
-      yi         = p.y + snxt * v.y;
+      xi         = p.x() + snxt * v.x();
+      yi         = p.y() + snxt * v.y();
       risec     = std::sqrt(xi * xi + yi * yi) * secRMax;
       aNormalVector        = UVector3(xi / risec, yi / risec, -tanRMax / secRMax);
       aConvex = true;
       break;
     case kRMin:
-      xi         = p.x + snxt * v.x;
-      yi         = p.y + snxt * v.y;
+      xi         = p.x() + snxt * v.x();
+      yi         = p.y() + snxt * v.y();
       risec = std::sqrt(xi * xi + yi * yi) * secRMin;
       aNormalVector = UVector3(-xi / risec, -yi / risec, tanRMin / secRMin);
       aConvex = false;  // Rmin is inconvex
@@ -1960,24 +1960,24 @@ double UCons::DistanceToOut(const UVector3& p,
       message << "Undefined side for valid surface normal to solid."
               << std::endl
               << "Position:"  << std::endl << std::endl
-              << "p.x = "  << p.x << " mm" << std::endl
-              << "p.y = "  << p.y << " mm" << std::endl
-              << "p.z = "  << p.z << " mm" << std::endl << std::endl
-              << "pho at z = "   << std::sqrt(p.x * p.x + p.y * p.y)
+              << "p.x = "  << p.x() << " mm" << std::endl
+              << "p.y = "  << p.y() << " mm" << std::endl
+              << "p.z = "  << p.z() << " mm" << std::endl << std::endl
+              << "pho at z = "   << std::sqrt(p.x() * p.x() + p.y() * p.y())
               << " mm" << std::endl << std::endl;
-      if (p.x != 0. || p.y != 0.)
+      if (p.x() != 0. || p.y() != 0.)
       {
-        message << "point phi = "   << std::atan2(p.y, p.x) / (UUtils::kPi / 180.0)
+        message << "point phi = "   << std::atan2(p.y(), p.x()) / (UUtils::kPi / 180.0)
                 << " degree" << std::endl << std::endl;
       }
       message << "Direction:" << std::endl << std::endl
-              << "v.x = "  << v.x << std::endl
-              << "v.y = "  << v.y << std::endl
-              << "v.z = "  << v.z << std::endl << std::endl
+              << "v.x = "  << v.x() << std::endl
+              << "v.y = "  << v.y() << std::endl
+              << "v.z = "  << v.z() << std::endl << std::endl
               << "Proposed distance :" << std::endl << std::endl
               << "snxt = "    << snxt << " mm" << std::endl;
       message.precision(oldprc);
-      UUtils::Exception("UCons::DistanceToOut()", "UGeomSolids", Warning, 1, message.str().c_str());
+      UUtils::Exception("UCons::DistanceToOut()", "GeomSolids0002", UWarning, 1, message.str().c_str());
       break;
   }
   if (snxt < halfCarTolerance)
@@ -2003,26 +2003,26 @@ double UCons::SafetyFromInside(const UVector3& p, bool) const
     cout << std::endl;
     DumpInfo();
     cout << "Position:" << std::endl << std::endl;
-    cout << "p.x = "   << p.x << " mm" << std::endl;
-    cout << "p.y = "   << p.y << " mm" << std::endl;
-    cout << "p.z = "   << p.z << " mm" << std::endl << std::endl;
-    cout << "pho at z = "  << std::sqrt(p.x * p.x + p.y * p.y)
+    cout << "p.x = "   << p.x() << " mm" << std::endl;
+    cout << "p.y = "   << p.y() << " mm" << std::endl;
+    cout << "p.z = "   << p.z() << " mm" << std::endl << std::endl;
+    cout << "pho at z = "  << std::sqrt(p.x() * p.x() + p.y() * p.y())
          << " mm" << std::endl << std::endl;
-    if ((p.x != 0.) || (p.x != 0.))
+    if ((p.x() != 0.) || (p.x() != 0.))
     {
-      cout << "point phi = "   << std::atan2(p.y, p.x) / degree
+      cout << "point phi = "   << std::atan2(p.y(), p.x()) / degree
            << " degree" << std::endl << std::endl;
     }
     cout.precision(oldprc);
-    UUtils::Exception("UCons::UCons()", "UGeomSolids", Warning, 1, message.str().c_str());
+    UUtils::Exception("UCons::UCons()", "GeomSolids0002", UWarning, 1, message.str().c_str());
 
   }
 #endif
   
-  rho = std::sqrt(p.x * p.x + p.y * p.y);
+  rho = std::sqrt(p.x() * p.x() + p.y() * p.y());
 
   safe = SafetyFromInsideR(p, rho, false);
-  safeZ = fDz - std::fabs(p.z);
+  safeZ = fDz - std::fabs(p.z());
 
   if (safeZ < safe)
   {
@@ -2189,6 +2189,33 @@ void UCons::Extent(UVector3& aMin, UVector3& aMax) const
   aMax = UVector3(max, max, fDz);
 }
 
+void UCons::CheckDPhiAngle(double dPhi)
+{
+  fPhiFullCone = true;
+  if (dPhi >= 2 * UUtils::kPi - kAngTolerance * 0.5)
+  {
+    fDPhi = 2 * UUtils::kPi;
+    fSPhi = 0;
+  }
+  else
+  {
+    fPhiFullCone = false;
+    if (dPhi > 0)
+    {
+      fDPhi = dPhi;
+    }
+    else
+    {
+      std::ostringstream message;
+      message << "Invalid dphi." << std::endl
+              << "Negative or zero delta-Phi (" << dPhi << ") in solid: "
+              << GetName();
+      UUtils::Exception("UCons::CheckDPhiAngle()", "GeomSolids0002",
+                        UFatalErrorInArguments, 1, message.str().c_str());
+    }
+  }
+}
+
 void UCons::GetParametersList(int, double* aArray) const
 {
   aArray[0] = GetInnerRadiusMinusZ();
@@ -2198,5 +2225,4 @@ void UCons::GetParametersList(int, double* aArray) const
   aArray[4] = GetZHalfLength();
   aArray[5] = GetStartPhiAngle();
   aArray[6] = GetDeltaPhiAngle();
- 
 }
diff --git a/source/externals/usolids/src/UEnclosingCylinder.cc b/source/externals/usolids/src/UEnclosingCylinder.cc
index a3ebd62a1cf..0c1ee566c54 100644
--- a/source/externals/usolids/src/UEnclosingCylinder.cc
+++ b/source/externals/usolids/src/UEnclosingCylinder.cc
@@ -100,20 +100,20 @@ bool UEnclosingCylinder::MustBeOutside(const UVector3& p) const
 {
 //  if (p.Perp() > radius ) return true;
   if (p.Perp2() > radius * radius) return true;
-  if (p.z < zLo) return true;
-  if (p.z > zHi) return true;
+  if (p.z() < zLo) return true;
+  if (p.z() > zHi) return true;
 
   if (phiIsOpen)
   {
     if (concave)
     {
-      if (((p.x - dx1)*ry1 - (p.y - dy1)*rx1) < 0) return false;
-      if (((p.x - dx2)*ry2 - (p.y - dy2)*rx2) > 0) return false;
+      if (((p.x() - dx1)*ry1 - (p.y() - dy1)*rx1) < 0) return false;
+      if (((p.x() - dx2)*ry2 - (p.y() - dy2)*rx2) > 0) return false;
     }
     else
     {
-      if (((p.x - dx1)*ry1 - (p.y - dy1)*rx1) > 0) return true;
-      if (((p.x - dx2)*ry2 - (p.y - dy2)*rx2) < 0) return true;
+      if (((p.x() - dx1)*ry1 - (p.y() - dy1)*rx1) > 0) return true;
+      if (((p.x() - dx2)*ry2 - (p.y() - dy2)*rx2) < 0) return true;
     }
   }
 
@@ -133,16 +133,16 @@ bool UEnclosingCylinder::ShouldMiss(const UVector3& p,
 {
   if (!MustBeOutside(p)) return false;
 
-//  if (p.z < zLo - VUSolid::Tolerance() && v.z <= 0) return true;
-//  if (p.z > zHi + VUSolid::Tolerance() && v.z >= 0) return true;
+//  if (p.z() < zLo - VUSolid::Tolerance() && v.z() <= 0) return true;
+//  if (p.z() > zHi + VUSolid::Tolerance() && v.z() >= 0) return true;
 
-  double cross = p.x * v.y - p.y * v.x;
+  double cross = p.x() * v.y() - p.y() * v.x();
   if (cross > radius) return true;
 
   double r2 = p.Perp2();
   if (r2 > radius * radius)
   {
-    double dot = p.x * v.x + p.y * v.y;
+    double dot = p.x() * v.x() + p.y() * v.y();
     if (dot > 0) return true;
 
 //    double n = v.Perp2();
@@ -155,13 +155,13 @@ bool UEnclosingCylinder::ShouldMiss(const UVector3& p,
   {
     if (concave)
     {
-      if ( ((p.x-dx1)*ry1 - (p.y-dy1)*rx1) < 0) return false;
-      if ( ((p.x-dx2)*ry2 - (p.y-dy2)*rx2) > 0) return false;
+      if ( ((p.x()-dx1)*ry1 - (p.y()-dy1)*rx1) < 0) return false;
+      if ( ((p.x()-dx2)*ry2 - (p.y()-dy2)*rx2) > 0) return false;
     }
     else
     {
-      if ( ((p.x-dx1)*ry1 - (p.y-dy1)*rx1) > 0) return true;
-      if ( ((p.x-dx2)*ry2 - (p.y-dy2)*rx2) < 0) return true;
+      if ( ((p.x()-dx1)*ry1 - (p.y()-dy1)*rx1) > 0) return true;
+      if ( ((p.x()-dx2)*ry2 - (p.y()-dy2)*rx2) < 0) return true;
     }
     return false;
   }
diff --git a/source/externals/usolids/src/UExtrudedSolid.cc b/source/externals/usolids/src/UExtrudedSolid.cc
index 1f449013f0e..97186bc8e17 100644
--- a/source/externals/usolids/src/UExtrudedSolid.cc
+++ b/source/externals/usolids/src/UExtrudedSolid.cc
@@ -33,7 +33,7 @@ UExtrudedSolid::UExtrudedSolid(const std::string& pName,
     fZSections(),
     fTriangles(),
     fIsConvex(false),
-    fGeometryType("UExtrudedSolid")
+    fGeometryType("ExtrudedSolid")
 
 {
   // General constructor
@@ -53,7 +53,7 @@ UExtrudedSolid::UExtrudedSolid(const std::string& pName,
     fZSections(),
     fTriangles(),
     fIsConvex(false),
-    fGeometryType("UExtrudedSolid")
+    fGeometryType("ExtrudedSolid")
 
 {
   // Special constructor for solid with 2 z-sections
@@ -136,7 +136,7 @@ void UExtrudedSolid::Initialise(std::vector<UVector2>& polygon,
     std::ostringstream message;
     message << "Number of polygon vertices < 3 - " << GetName().c_str();
     UUtils::Exception("UExtrudedSolid::UExtrudedSolid()", "GeomSolids0002",
-                      FatalErrorInArguments, 2, message.str().c_str());
+                      UFatalErrorInArguments, 2, message.str().c_str());
   }
 
   if (fNz < 2)
@@ -144,7 +144,7 @@ void UExtrudedSolid::Initialise(std::vector<UVector2>& polygon,
     std::ostringstream message;
     message << "Number of z-sides < 2 - " << GetName().c_str();
     UUtils::Exception("UExtrudedSolid::UExtrudedSolid()", "GeomSolids0002",
-                      FatalErrorInArguments, 2, message.str().c_str());
+                      UFatalErrorInArguments, 2, message.str().c_str());
   }
 
   for (int i = 0; i < fNz - 1; ++i)
@@ -155,7 +155,7 @@ void UExtrudedSolid::Initialise(std::vector<UVector2>& polygon,
       message << "Z-sections have to be ordered by z value (z0 < z1 < z2...) - "
               << GetName().c_str();
       UUtils::Exception("UExtrudedSolid::UExtrudedSolid()", "GeomSolids0002",
-                        FatalErrorInArguments, 2, message.str().c_str());
+                        UFatalErrorInArguments, 2, message.str().c_str());
     }
     if (std::fabs(zsections[i + 1].fZ - zsections[i].fZ) < VUSolid::fgTolerance * 0.5)
     {
@@ -163,7 +163,7 @@ void UExtrudedSolid::Initialise(std::vector<UVector2>& polygon,
       message << "Z-sections with the same z position are not supported - "
               << GetName().c_str();
       UUtils::Exception("UExtrudedSolid::UExtrudedSolid()", "GeomSolids0001",
-                        FatalError, 1, message.str().c_str());
+                        UFatalError, 1, message.str().c_str());
     }
   }
 
@@ -192,7 +192,7 @@ void UExtrudedSolid::Initialise(std::vector<UVector2>& polygon,
   {
     // Polygon vertices are defined anti-clockwise, we revert them
     UUtils::Exception("UExtrudedSolid::UExtrudedSolid()", "GeomSolids1001",
-                      Warning, 4,
+                      UWarning, 4,
                 "Polygon vertices defined anti-clockwise, reverting polygon");
     for (int i = 0; i < fNv; ++i)
     {
@@ -215,7 +215,7 @@ void UExtrudedSolid::Initialise(std::vector<UVector2>& polygon,
     std::ostringstream message;
     message << "Making facets failed - " << GetName().c_str();
     UUtils::Exception("UExtrudedSolid::UExtrudedSolid()", "GeomSolids0003",
-                     FatalError, 1, message.str().c_str());
+                     UFatalError, 1, message.str().c_str());
   }
   fIsConvex = IsConvex();
 
@@ -238,7 +238,7 @@ void UExtrudedSolid::Initialise(std::vector<UVector2>& polygon, double dz,
     std::ostringstream message;
     message << "Number of polygon vertices < 3 - " << GetName().c_str();
     UUtils::Exception("UExtrudedSolid::UExtrudedSolid()", "GeomSolids0002",
-                      FatalErrorInArguments, 2, message.str().c_str());
+                      UFatalErrorInArguments, 2, message.str().c_str());
   }
 
   // Check if polygon vertices are defined clockwise
@@ -270,7 +270,7 @@ void UExtrudedSolid::Initialise(std::vector<UVector2>& polygon, double dz,
   {
     // Polygon vertices are defined anti-clockwise, we revert them
     UUtils::Exception("UExtrudedSolid::UExtrudedSolid()", "GeomSolids1001",
-                      Warning, 4,
+                      UWarning, 4,
                  "Polygon vertices defined anti-clockwise, reverting polygon");
     for (int i = 0; i < fNv; ++i)
     {
@@ -289,7 +289,7 @@ void UExtrudedSolid::Initialise(std::vector<UVector2>& polygon, double dz,
     std::ostringstream message;
     message << "Making facets failed - " << GetName().c_str();
     UUtils::Exception("UExtrudedSolid::UExtrudedSolid()", "GeomSolids0003",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
   fIsConvex = IsConvex();
 
@@ -353,18 +353,18 @@ UVector2 UExtrudedSolid::ProjectPoint(const UVector3& point) const
   // p(z) = scale(z)*p0 + offset(z)
   // p0 = (p(z) - offset(z))/scale(z);
 
-  // Select projection (z-segment of the solid) according to p.z
+  // Select projection (z-segment of the solid) according to p.z()
   //
   int iz = 0;
-  while (point.z > fZSections[iz + 1].fZ && iz < fNz - 2)
+  while (point.z() > fZSections[iz + 1].fZ && iz < fNz - 2)
   {
     ++iz;
   }
 
   double z0 = (fZSections[iz + 1].fZ + fZSections[iz].fZ) / 2.0;
-  UVector2 p2(point.x, point.y);
-  double pscale  = fKScales[iz] * (point.z - z0) + fScale0s[iz];
-  UVector2 poffset = fKOffsets[iz] * (point.z - z0) + fOffset0s[iz];
+  UVector2 p2(point.x(), point.y());
+  double pscale  = fKScales[iz] * (point.z() - z0) + fScale0s[iz];
+  UVector2 poffset = fKOffsets[iz] * (point.z() - z0) + fOffset0s[iz];
 
   // pscale is always >0 as it is an interpolation between two
   // positive scale values
@@ -496,7 +496,7 @@ UExtrudedSolid::MakeDownFacet(int ind1, int ind2, int ind3) const
   UVector3 cross
     = (vertices[1] - vertices[0]).Cross(vertices[2] - vertices[1]);
 
-  if (cross.z > 0.0)
+  if (cross.z() > 0.0)
   {
     // vertices ardered clock wise has to be reordered
 
@@ -527,7 +527,7 @@ UExtrudedSolid::MakeUpFacet(int ind1, int ind2, int ind3) const
   UVector3 cross
     = (vertices[1] - vertices[0]).Cross(vertices[2] - vertices[1]);
 
-  if (cross.z < 0.0)
+  if (cross.z() < 0.0)
   {
     // vertices ordered clock wise has to be reordered
 
@@ -586,7 +586,7 @@ bool UExtrudedSolid::AddGeneralPolygonFacets()
       if (counter > fNv)
       {
         UUtils::Exception("UExtrudedSolid::AddGeneralPolygonFacets",
-                          "GeomSolids0003", FatalError, 1,
+                          "GeomSolids0003", UFatalError, 1,
                           "Triangularisation has failed.");
         break;
       }
@@ -776,13 +776,13 @@ bool UExtrudedSolid::IsConvex() const
 
 //_____________________________________________________________________________
 
-/*UGeometryType UExtrudedSolid::GetEntityType () const
+UGeometryType UExtrudedSolid::GetEntityType () const
 {
   // Return entity type
 
   return fGeometryType;
 }
-*/
+
 //_____________________________________________________________________________
 
 VUSolid* UExtrudedSolid::Clone() const
@@ -800,12 +800,12 @@ VUSolid::EnumInside UExtrudedSolid::Inside(const UVector3& p) const
 
   // Check first if outside extent
   //
-  if (p.x < GetMinXExtent() - VUSolid::fgTolerance * 0.5 ||
-      p.x > GetMaxXExtent() + VUSolid::fgTolerance * 0.5 ||
-      p.y < GetMinYExtent() - VUSolid::fgTolerance * 0.5 ||
-      p.y > GetMaxYExtent() + VUSolid::fgTolerance * 0.5 ||
-      p.z < GetMinZExtent() - VUSolid::fgTolerance * 0.5 ||
-      p.z > GetMaxZExtent() + VUSolid::fgTolerance * 0.5)
+  if (p.x() < GetMinXExtent() - VUSolid::fgTolerance * 0.5 ||
+      p.x() > GetMaxXExtent() + VUSolid::fgTolerance * 0.5 ||
+      p.y() < GetMinYExtent() - VUSolid::fgTolerance * 0.5 ||
+      p.y() > GetMaxYExtent() + VUSolid::fgTolerance * 0.5 ||
+      p.z() < GetMinZExtent() - VUSolid::fgTolerance * 0.5 ||
+      p.z() > GetMaxZExtent() + VUSolid::fgTolerance * 0.5)
   {
     return eOutside;
   }
@@ -844,8 +844,8 @@ VUSolid::EnumInside UExtrudedSolid::Inside(const UVector3& p) const
   {
     // Check if on surface of z sides
     //
-    if (std::fabs(p.z - fZSections[0].fZ) < VUSolid::fgTolerance * 0.5 ||
-        std::fabs(p.z - fZSections[fNz - 1].fZ) < VUSolid::fgTolerance * 0.5)
+    if (std::fabs(p.z() - fZSections[0].fZ) < VUSolid::fgTolerance * 0.5 ||
+        std::fabs(p.z() - fZSections[fNz - 1].fZ) < VUSolid::fgTolerance * 0.5)
     {
       return eSurface;
     }
diff --git a/source/externals/usolids/src/UGenericPolycone.cc b/source/externals/usolids/src/UGenericPolycone.cc
index 2afe85539da..3b5cc6a0572 100644
--- a/source/externals/usolids/src/UGenericPolycone.cc
+++ b/source/externals/usolids/src/UGenericPolycone.cc
@@ -18,18 +18,13 @@
 #include <string>
 #include <cmath>
 #include <sstream>
-#include "UGenericPolycone.hh"
 
+#include "UGenericPolycone.hh"
 #include "UPolyconeSide.hh"
 #include "UPolyPhiFace.hh"
-
-
-
-
 #include "UEnclosingCylinder.hh"
 #include "UReduciblePolygon.hh"
 
-
 using namespace std;
 //
 // Constructor (generic parameters)
@@ -69,7 +64,7 @@ void UGenericPolycone::Create(double phiStart,
     message << "Illegal input parameters - " << GetName() << std::endl
             << "				All R values must be >= 0 !";
     UUtils::Exception("UGenericPolycone::Create()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   double rzArea = rz->Area();
@@ -82,7 +77,7 @@ void UGenericPolycone::Create(double phiStart,
     message << "Illegal input parameters - " << GetName() << std::endl
             << "				R/Z Cross section is zero or near zero: " << rzArea;
     UUtils::Exception("UGenericPolycone::Create()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   if ((!rz->RemoveDuplicateVertices(VUSolid::Tolerance()))
@@ -92,7 +87,7 @@ void UGenericPolycone::Create(double phiStart,
     message << "Illegal input parameters - " << GetName() << std::endl
             << "				Too few unique R/Z values !";
     UUtils::Exception("UGenericPolycone::Create()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   if (rz->CrossesItself(1 / UUtils::kInfinity))
@@ -101,7 +96,7 @@ void UGenericPolycone::Create(double phiStart,
     message << "Illegal input parameters - " << GetName() << std::endl
             << "				R/Z segments Cross !";
     UUtils::Exception("UGenericPolycone::Create()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   numCorner = rz->NumVertices();
diff --git a/source/externals/usolids/src/UGenericTrap.cc b/source/externals/usolids/src/UGenericTrap.cc
index 51eeb6871ef..b916a1a800b 100644
--- a/source/externals/usolids/src/UGenericTrap.cc
+++ b/source/externals/usolids/src/UGenericTrap.cc
@@ -142,7 +142,7 @@ void UGenericTrap::Initialise(const std::vector<UVector2>&  vertices)
   if (int (vertices.size()) != fgkNofVertices)
   {
     UUtils::Exception("UGenericTrap::UGenericTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, "Number of vertices != 8");
+                      UFatalErrorInArguments, 1, "Number of vertices != 8");
   }
 
   // Check dZ
@@ -150,7 +150,7 @@ void UGenericTrap::Initialise(const std::vector<UVector2>&  vertices)
   if (fDz < VUSolid::fgTolerance)
   {
     UUtils::Exception("UGenericTrap::UGenericTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, "dZ is too small or negative");
+                      UFatalErrorInArguments, 1, "dZ is too small or negative");
   }
 
   // Check Ordering and Copy vertices
@@ -190,7 +190,7 @@ void UGenericTrap::Initialise(const std::vector<UVector2>&  vertices)
                 << fVertices[k] << " is only " << length << " mm !"
                 << "Vertices will be collapsed.";
         UUtils::Exception("UGenericTrap::UGenericTrap()", "GeomSolids1001",
-                          Warning, 1, message.str().c_str());
+                          UWarning, 1, message.str().c_str());
         fVertices[k] = fVertices[k - 1];
       }
     }
@@ -228,14 +228,14 @@ UGenericTrap::InsidePolygone(const UVector3& p, const UVector2* poly) const
   VUSolid::EnumInside  in = eInside;
   double  cross, len2;
   int  count = 0;
-  UVector2 pt(p.x, p.y);
+  UVector2 pt(p.x(), p.y());
 
   for (int  i = 0; i < 4; i++)
   {
     int  j = (i + 1) % 4;
 
-    cross = (p.x - poly[i].x) * (poly[j].y - poly[i].y) -
-            (p.y - poly[i].y) * (poly[j].x - poly[i].x);
+    cross = (p.x() - poly[i].x) * (poly[j].y - poly[i].y) -
+            (p.y() - poly[i].y) * (poly[j].x - poly[i].x);
     if (cross < 0.)return eOutside;
 
     len2 = (poly[i] - poly[j]).mag2();
@@ -258,12 +258,12 @@ UGenericTrap::InsidePolygone(const UVector3& p, const UVector2* poly) const
 
         if (poly[k].x != poly[l].x)
         {
-          test = (p.x - poly[l].x) / (poly[k].x - poly[l].x)
+          test = (p.x() - poly[l].x) / (poly[k].x - poly[l].x)
                  * (poly[k].y - poly[l].y) + poly[l].y;
         }
         else
         {
-          test = p.y;
+          test = p.y();
         }
 
         // Check if point is Inside Segment
@@ -293,7 +293,7 @@ UGenericTrap::InsidePolygone(const UVector3& p, const UVector2* poly) const
   //
   if (count == 4)
   {
-    if ((std::fabs(p.x - poly[0].x) + std::fabs(p.y - poly[0].y)) > halfCarTolerance)
+    if ((std::fabs(p.x() - poly[0].x) + std::fabs(p.y() - poly[0].y)) > halfCarTolerance)
     {
       in = eOutside;
     }
@@ -370,11 +370,11 @@ VUSolid::EnumInside UGenericTrap::Inside(const UVector3& p) const
   UVector2 xy[4];
   if (fBoundBox->Inside(p) == eOutside) return eOutside;
 
-  if (std::fabs(p.z) <= fDz + halfCarTolerance) // First check Z range
+  if (std::fabs(p.z()) <= fDz + halfCarTolerance) // First check Z range
   {
     // Compute intersection between Z plane containing point and the shape
     //
-    double  cf = 0.5 * (fDz - p.z) / fDz;
+    double  cf = 0.5 * (fDz - p.z()) / fDz;
     for (int  i = 0; i < 4; i++)
     {
       xy[i] = fVertices[i + 4] + cf * (fVertices[i] - fVertices[i + 4]);
@@ -384,7 +384,7 @@ VUSolid::EnumInside UGenericTrap::Inside(const UVector3& p) const
 
     if ((innew == eInside) || (innew == eSurface))
     {
-      if (std::fabs(p.z) > fDz - halfCarTolerance)
+      if (std::fabs(p.z()) > fDz - halfCarTolerance)
       {
         innew = eSurface;
       }
@@ -415,10 +415,10 @@ bool UGenericTrap::Normal(const UVector3& p, UVector3& aNormal) const
   double  distxy, distz;
   bool zPlusSide = false;
 
-  distz = fDz - std::fabs(p.z);
+  distz = fDz - std::fabs(p.z());
   if (distz < halfCarTolerance)
   {
-    if (p.z > 0)
+    if (p.z() > 0)
     {
       zPlusSide = true;
       sumnorm = UVector3(0, 0, 1);
@@ -433,7 +433,7 @@ bool UGenericTrap::Normal(const UVector3& p, UVector3& aNormal) const
   // Check lateral planes
   //
   UVector2 vertices[4];
-  double  cf = 0.5 * (fDz - p.z) / fDz;
+  double  cf = 0.5 * (fDz - p.z()) / fDz;
   for (int  i = 0; i < 4; i++)
   {
     vertices[i] = fVertices[i + 4] + cf * (fVertices[i] - fVertices[i + 4]);
@@ -444,7 +444,7 @@ bool UGenericTrap::Normal(const UVector3& p, UVector3& aNormal) const
   //
   for (int  q = 0; q < 4; q++)
   {
-    p0 = UVector3(vertices[q].x, vertices[q].y, p.z);
+    p0 = UVector3(vertices[q].x, vertices[q].y, p.z());
     if (zPlusSide)
     {
       p1 = UVector3(fVertices[q].x, fVertices[q].y, -fDz);
@@ -453,13 +453,13 @@ bool UGenericTrap::Normal(const UVector3& p, UVector3& aNormal) const
     {
       p1 = UVector3(fVertices[q + 4].x, fVertices[q + 4].y, fDz);
     }
-    p2 = UVector3(vertices[(q + 1) % 4].x, vertices[(q + 1) % 4].y, p.z);
+    p2 = UVector3(vertices[(q + 1) % 4].x, vertices[(q + 1) % 4].y, p.z());
 
     // Collapsed vertices
     //
     if ((p2 - p0).Mag2() < VUSolid::fgTolerance)
     {
-      if (std::fabs(p.z + fDz) > VUSolid::fgTolerance)
+      if (std::fabs(p.z() + fDz) > VUSolid::fgTolerance)
       {
         p2 = UVector3(fVertices[(q + 1) % 4].x, fVertices[(q + 1) % 4].y, -fDz);
       }
@@ -530,7 +530,7 @@ bool UGenericTrap::Normal(const UVector3& p, UVector3& aNormal) const
   {
     #ifdef UDEBUG
     UUtils::Exception("UGenericTrap::SurfaceNormal(p)", "GeomSolids1002",
-                      Warning, 1, "Point p is not on surface !?");
+                      UWarning, 1, "Point p is not on surface !?");
     if (Inside(p) != eSurface)
     {
       std::cout << "Point is not on Surface, confirmed by Inside()" << p << std::endl;
@@ -569,12 +569,12 @@ UVector3 UGenericTrap::NormalToPlane(const UVector3& p,
   static const double  halfCarTolerance = VUSolid::fgTolerance * 0.5;
   UVector3 lnorm, norm(0., 0., 0.), p0, p1, p2;
 
-  double   distz = fDz - p.z;
+  double   distz = fDz - p.z();
   int  i = ipl; // current plane index
 
   UVector2 u, v;
   UVector3 r1, r2, r3, r4;
-  double  cf = 0.5 * (fDz - p.z) / fDz;
+  double  cf = 0.5 * (fDz - p.z()) / fDz;
   int  j = (i + 1) % 4;
 
   u = fVertices[i + 4] + cf * (fVertices[i] - fVertices[i + 4]);
@@ -582,7 +582,7 @@ UVector3 UGenericTrap::NormalToPlane(const UVector3& p,
 
   // Compute cross product
   //
-  p0 = UVector3(u.x, u.y, p.z);
+  p0 = UVector3(u.x, u.y, p.z());
 
   if (std::fabs(distz) < halfCarTolerance)
   {
@@ -593,13 +593,13 @@ UVector3 UGenericTrap::NormalToPlane(const UVector3& p,
   {
     p1 = UVector3(fVertices[i + 4].x, fVertices[i + 4].y, fDz);
   }
-  p2 = UVector3(v.x, v.y, p.z);
+  p2 = UVector3(v.x, v.y, p.z());
 
   // Collapsed vertices
   //
   if ((p2 - p0).Mag2() < VUSolid::fgTolerance)
   {
-    if (std::fabs(p.z + fDz) > halfCarTolerance)
+    if (std::fabs(p.z() + fDz) > halfCarTolerance)
     {
       p2 = UVector3(fVertices[j].x, fVertices[j].y, -fDz);
     }
@@ -682,7 +682,7 @@ double  UGenericTrap::DistToPlane(const UVector3& p,
   double  ty1 = dz2 * (yb - ya);
   double  tx2 = dz2 * (xd - xc);
   double  ty2 = dz2 * (yd - yc);
-  double  dzp = fDz + p.z;
+  double  dzp = fDz + p.z();
   double  xs1 = xa + tx1 * dzp;
   double  ys1 = ya + ty1 * dzp;
   double  xs2 = xc + tx2 * dzp;
@@ -692,10 +692,10 @@ double  UGenericTrap::DistToPlane(const UVector3& p,
   double  dtx = tx2 - tx1;
   double  dty = ty2 - ty1;
 
-  double  a = (dtx * v.y - dty * v.x + (tx1 * ty2 - tx2 * ty1) * v.z) * v.z;
-  double  b = dxs * v.y - dys * v.x + (dtx * p.y - dty * p.x + ty2 * xs1 - ty1 * xs2
-                                       + tx1 * ys2 - tx2 * ys1) * v.z;
-  double  c = dxs * p.y - dys * p.x + xs1 * ys2 - xs2 * ys1;
+  double  a = (dtx * v.y() - dty * v.x() + (tx1 * ty2 - tx2 * ty1) * v.z()) * v.z();
+  double  b = dxs * v.y() - dys * v.x() + (dtx * p.y() - dty * p.x() + ty2 * xs1 - ty1 * xs2
+                                       + tx1 * ys2 - tx2 * ys1) * v.z();
+  double  c = dxs * p.y() - dys * p.x() + xs1 * ys2 - xs2 * ys1;
   double  q = UUtils::kInfinity;
   double  x1, x2, y1, y2, xp, yp, zi;
 
@@ -728,15 +728,15 @@ double  UGenericTrap::DistToPlane(const UVector3& p,
 
       // Check the Intersection
       //
-      zi = p.z + q * v.z;
+      zi = p.z() + q * v.z();
       if (std::fabs(zi) < fDz)
       {
-        x1 = xs1 + tx1 * v.z * q;
-        x2 = xs2 + tx2 * v.z * q;
-        xp = p.x + q * v.x;
-        y1 = ys1 + ty1 * v.z * q;
-        y2 = ys2 + ty2 * v.z * q;
-        yp = p.y + q * v.y;
+        x1 = xs1 + tx1 * v.z() * q;
+        x2 = xs2 + tx2 * v.z() * q;
+        xp = p.x() + q * v.x();
+        y1 = ys1 + ty1 * v.z() * q;
+        y2 = ys2 + ty2 * v.z() * q;
+        yp = p.y() + q * v.y();
         zi = (xp - x1) * (xp - x2) + (yp - y1) * (yp - y2);
         if (zi <= halfCarTolerance)
         {
@@ -789,15 +789,15 @@ double  UGenericTrap::DistToPlane(const UVector3& p,
       }
       // Check the Intersection
       //
-      zi = p.z + q * v.z;
+      zi = p.z() + q * v.z();
       if (std::fabs(zi) < fDz)
       {
-        x1 = xs1 + tx1 * v.z * q;
-        x2 = xs2 + tx2 * v.z * q;
-        xp = p.x + q * v.x;
-        y1 = ys1 + ty1 * v.z * q;
-        y2 = ys2 + ty2 * v.z * q;
-        yp = p.y + q * v.y;
+        x1 = xs1 + tx1 * v.z() * q;
+        x2 = xs2 + tx2 * v.z() * q;
+        xp = p.x() + q * v.x();
+        y1 = ys1 + ty1 * v.z() * q;
+        y2 = ys2 + ty2 * v.z() * q;
+        yp = p.y() + q * v.y();
         zi = (xp - x1) * (xp - x2) + (yp - y1) * (yp - y2);
         if (zi <= halfCarTolerance)
         {
@@ -845,15 +845,15 @@ double  UGenericTrap::DistToPlane(const UVector3& p,
       }
       // Check the Intersection
       //
-      zi = p.z + q * v.z;
+      zi = p.z() + q * v.z();
       if (std::fabs(zi) < fDz)
       {
-        x1 = xs1 + tx1 * v.z * q;
-        x2 = xs2 + tx2 * v.z * q;
-        xp = p.x + q * v.x;
-        y1 = ys1 + ty1 * v.z * q;
-        y2 = ys2 + ty2 * v.z * q;
-        yp = p.y + q * v.y;
+        x1 = xs1 + tx1 * v.z() * q;
+        x2 = xs2 + tx2 * v.z() * q;
+        xp = p.x() + q * v.x();
+        y1 = ys1 + ty1 * v.z() * q;
+        y2 = ys2 + ty2 * v.z() * q;
+        yp = p.y() + q * v.y();
         zi = (xp - x1) * (xp - x2) + (yp - y1) * (yp - y2);
         if (zi <= halfCarTolerance)
         {
@@ -893,18 +893,18 @@ double  UGenericTrap::DistanceToIn(const UVector3& p,
   // Check Z planes
   //
   dist[4] = UUtils::kInfinity;
-  if (std::fabs(p.z) > fDz - halfCarTolerance)
+  if (std::fabs(p.z()) > fDz - halfCarTolerance)
   {
-    if (v.z)
+    if (v.z())
     {
       UVector3 pt;
-      if (p.z > 0)
+      if (p.z() > 0)
       {
-        dist[4] = (fDz - p.z) / v.z;
+        dist[4] = (fDz - p.z()) / v.z();
       }
       else
       {
-        dist[4] = (-fDz - p.z) / v.z;
+        dist[4] = (-fDz - p.z()) / v.z();
       }
       if (dist[4] < -halfCarTolerance)
       {
@@ -914,7 +914,7 @@ double  UGenericTrap::DistanceToIn(const UVector3& p,
       {
         if (dist[4] < halfCarTolerance)
         {
-          if (p.z > 0)
+          if (p.z() > 0)
           {
             n = UVector3(0, 0, 1);
           }
@@ -969,7 +969,7 @@ double UGenericTrap::SafetyFromOutside(const UVector3& p, bool precise) const
   }
 #endif
   if (!precise)return fBoundBox->SafetyFromOutside(p, !precise);
-  double  safz = std::fabs(p.z) - fDz;
+  double  safz = std::fabs(p.z()) - fDz;
   if (safz < 0)
   {
     safz = 0;
@@ -1046,11 +1046,11 @@ UGenericTrap::DistToTriangle(const UVector3& p,
   double  b = (xc - xa) * zab - (xb - xa) * zac;
   double  c = (xb - xa) * (yc - ya) - (xc - xa) * (yb - ya);
   double  d = -xa * a - ya * b + fDz * c;
-  double  t = a * v.x + b * v.y + c * v.z;
+  double  t = a * v.x() + b * v.y() + c * v.z();
 
   if (t != 0)
   {
-    t = -(a * p.x + b * p.y + c * p.z + d) / t;
+    t = -(a * p.x() + b * p.y() + c * p.z() + d) / t;
   }
   if ((t < halfCarTolerance) && (t > -halfCarTolerance))
   {
@@ -1089,17 +1089,17 @@ double UGenericTrap::DistanceToOut(const UVector3& p, const UVector3&  v,
   aConvex = true;
   //   *validNorm=true;  // All normals are valid
 
-  if (v.z < 0)
+  if (v.z() < 0)
   {
-    distmin = (-fDz - p.z) / v.z;
+    distmin = (-fDz - p.z()) / v.z();
     side = kMZ;
     aNormalVector.Set(0, 0, -1);
   }
   else
   {
-    if (v.z > 0)
+    if (v.z() > 0)
     {
-      distmin = (fDz - p.z) / v.z;
+      distmin = (fDz - p.z()) / v.z();
       side = kPZ;
       aNormalVector.Set(0, 0, 1);
     }
@@ -1141,7 +1141,7 @@ double UGenericTrap::DistanceToOut(const UVector3& p, const UVector3&  v,
     double  ty1 = dz2 * (yb - ya);
     double  tx2 = dz2 * (xd - xc);
     double  ty2 = dz2 * (yd - yc);
-    double  dzp = fDz + p.z;
+    double  dzp = fDz + p.z();
     double  xs1 = xa + tx1 * dzp;
     double  ys1 = ya + ty1 * dzp;
     double  xs2 = xc + tx2 * dzp;
@@ -1150,10 +1150,10 @@ double UGenericTrap::DistanceToOut(const UVector3& p, const UVector3&  v,
     double  dys = ys2 - ys1;
     double  dtx = tx2 - tx1;
     double  dty = ty2 - ty1;
-    double  a = (dtx * v.y - dty * v.x + (tx1 * ty2 - tx2 * ty1) * v.z) * v.z;
-    double  b = dxs * v.y - dys * v.x + (dtx * p.y - dty * p.x + ty2 * xs1 - ty1 * xs2
-                                         + tx1 * ys2 - tx2 * ys1) * v.z;
-    double  c = dxs * p.y - dys * p.x + xs1 * ys2 - xs2 * ys1;
+    double  a = (dtx * v.y() - dty * v.x() + (tx1 * ty2 - tx2 * ty1) * v.z()) * v.z();
+    double  b = dxs * v.y() - dys * v.x() + (dtx * p.y() - dty * p.x() + ty2 * xs1 - ty1 * xs2
+                                         + tx1 * ys2 - tx2 * ys1) * v.z();
+    double  c = dxs * p.y() - dys * p.x() + xs1 * ys2 - xs2 * ys1;
     double  q = UUtils::kInfinity;
 
     if (std::fabs(a) < VUSolid::fgTolerance)
@@ -1279,7 +1279,7 @@ double UGenericTrap::DistanceToOut(const UVector3& p, const UVector3&  v,
     // Check if propagated point is in the polygon
     //
     int  i = 0;
-    if (v.z > 0.)
+    if (v.z() > 0.)
     {
       i = 4;
     }
@@ -1296,7 +1296,7 @@ double UGenericTrap::DistanceToOut(const UVector3& p, const UVector3&  v,
     if (InsidePolygone(pt, xy) == eOutside)
     {
 
-      if (v.z > 0)
+      if (v.z() > 0)
       {
         side = kPZ;
         aNormalVector.Set(0, 0, 1);
@@ -1311,7 +1311,7 @@ double UGenericTrap::DistanceToOut(const UVector3& p, const UVector3&  v,
     }
     else
     {
-      if (v.z > 0)
+      if (v.z() > 0)
       {
         side = kPZ;
       }
@@ -1350,18 +1350,18 @@ double UGenericTrap::DistanceToOut(const UVector3& p, const UVector3&  v,
       int  oldprc = message.precision(16);
       message << "Undefined side for valid surface normal to solid." << std::endl
               << "Position:" << std::endl
-              << "  p.x() = "   << p.x << " mm" << std::endl
-              << "  p.y() = "   << p.y << " mm" << std::endl
-              << "  p.z() = "   << p.z << " mm" << std::endl
+              << "  p.x() = "   << p.x() << " mm" << std::endl
+              << "  p.y() = "   << p.y() << " mm" << std::endl
+              << "  p.z() = "   << p.z() << " mm" << std::endl
               << "Direction:" << std::endl
-              << "  v.x() = "   << v.x << std::endl
-              << "  v.y() = "   << v.y << std::endl
-              << "  v.z() = "   << v.z << std::endl
+              << "  v.x() = "   << v.x() << std::endl
+              << "  v.y() = "   << v.y() << std::endl
+              << "  v.z() = "   << v.z() << std::endl
               << "Proposed distance :" << std::endl
               << "  distmin = " << distmin << " mm";
       message.precision(oldprc);
       UUtils::Exception("UGenericTrap::DistanceToOut(p,v,..)",
-                        "GeomSolids1002", Warning, 1, message.str().c_str());
+                        "GeomSolids1002", UWarning, 1, message.str().c_str());
       break;
 
   }
@@ -1384,7 +1384,7 @@ double  UGenericTrap::SafetyFromInside(const UVector3& p, bool) const
   }
 #endif
 
-  double  safz = fDz - std::fabs(p.z);
+  double  safz = fDz - std::fabs(p.z());
   if (safz < 0)
   {
     safz = 0;
@@ -1698,7 +1698,7 @@ bool UGenericTrap::ComputeIsTwisted()
               << "     TwistANGLE = " << twist_angle
               << "*rad  for lateral plane N= " << i;
       UUtils::Exception("UGenericTrap::ComputeIsTwisted()", "GeomSolids1002",
-                        Warning, 4, message.str().c_str());
+                        UWarning, 4, message.str().c_str());
     }
   }
 
@@ -1730,7 +1730,7 @@ bool UGenericTrap::CheckOrder(const std::vector<UVector2>& vertices) const
     message << "Lower/upper faces defined with opposite clockwise - "
             << GetName();
     UUtils::Exception("UGenericTrap::CheckOrder()", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
 
   if ((sum1 > 0.) || (sum2 > 0.))
@@ -1739,7 +1739,7 @@ bool UGenericTrap::CheckOrder(const std::vector<UVector2>& vertices) const
     message << "Vertices must be defined in clockwise XY planes - "
             << GetName();
     UUtils::Exception("UGenericTrap::CheckOrder()", "GeomSolids1001",
-                      Warning, 1, message.str().c_str());
+                      UWarning, 1, message.str().c_str());
     clockwise_order = false;
   }
 
@@ -1781,7 +1781,7 @@ bool UGenericTrap::CheckOrder(const std::vector<UVector2>& vertices) const
     std::ostringstream message;
     message << "Malformed polygone with opposite sides - " << GetName();
     UUtils::Exception("UGenericTrap::CheckOrderAndSetup()", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
   return clockwise_order;
 }
@@ -1935,22 +1935,22 @@ UGenericTrap::IsSegCrossingZ(const UVector2& a, const UVector2& b,
 
   // In case of Collapsed Vertices No crossing
   //
-  if ((std::fabs(dv.x) < VUSolid::fgTolerance) &&
-      (std::fabs(dv.y) < VUSolid::fgTolerance))
+  if ((std::fabs(dv.x()) < VUSolid::fgTolerance) &&
+      (std::fabs(dv.y()) < VUSolid::fgTolerance))
   {
     return false;
   }
 
-  if ((std::fabs((p4 - p3).x) < VUSolid::fgTolerance) &&
-      (std::fabs((p4 - p3).y) < VUSolid::fgTolerance))
+  if ((std::fabs((p4 - p3).x()) < VUSolid::fgTolerance) &&
+      (std::fabs((p4 - p3).y()) < VUSolid::fgTolerance))
   {
     return false;
   }
 
   // First estimate if Intersection is possible( if det is 0)
   //
-  det = dv.x * v1.y * v2.z + dv.y * v1.z * v2.x
-        - dv.x * v1.z * v2.y - dv.y * v1.x * v2.z;
+  det = dv.x() * v1.y() * v2.z() + dv.y() * v1.z() * v2.x()
+        - dv.x() * v1.z() * v2.y() - dv.y() * v1.x() * v2.z();
 
   if (std::fabs(det) < VUSolid::fgTolerance) //Intersection
   {
@@ -2002,14 +2002,14 @@ UGenericTrap::MakeDownFacet(const std::vector<UVector3>& fromVertices,
   //
   UVector3 cross = (vertices[1] - vertices[0]).Cross(vertices[2] - vertices[1]);
 
-  if (cross.z > 0.0)
+  if (cross.z() > 0.0)
   {
     // Should not happen, as vertices should have been reordered at this stage
 
     std::ostringstream message;
     message << "Vertices in wrong order - " << GetName();
     UUtils::Exception("UGenericTrap::MakeDownFacet", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
 
   return new UTriangularFacet(vertices[0], vertices[1], vertices[2], UABSOLUTE);
@@ -2042,14 +2042,14 @@ UGenericTrap::MakeUpFacet(const std::vector<UVector3>& fromVertices,
   //
   UVector3 cross = (vertices[1] - vertices[0]).Cross(vertices[2] - vertices[1]);
 
-  if (cross.z < 0.0)
+  if (cross.z() < 0.0)
   {
     // Should not happen, as vertices should have been reordered at this stage
 
     std::ostringstream message;
     message << "Vertices in wrong order - " << GetName();
     UUtils::Exception("UGenericTrap::MakeUpFacet", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
 
   return new UTriangularFacet(vertices[0], vertices[1], vertices[2], UABSOLUTE);
@@ -2112,7 +2112,7 @@ UTessellatedSolid* UGenericTrap::CreateTessellatedSolid() const
     = (downVertices[1] - downVertices[0]).Cross(downVertices[2] - downVertices[1]);
   UVector3 cross1
     = (upVertices[1] - upVertices[0]).Cross(upVertices[2] - upVertices[1]);
-  if ((cross.z > 0.0) || (cross1.z > 0.0))
+  if ((cross.z() > 0.0) || (cross1.z() > 0.0))
   {
     ReorderVertices(downVertices);
     ReorderVertices(upVertices);
diff --git a/source/externals/usolids/src/UIntersectingCone.cc b/source/externals/usolids/src/UIntersectingCone.cc
index 5d4bb7b9421..7cd7389c07f 100644
--- a/source/externals/usolids/src/UIntersectingCone.cc
+++ b/source/externals/usolids/src/UIntersectingCone.cc
@@ -208,8 +208,8 @@ int UIntersectingCone::Solution (const UVector3 &p, const UVector3 &v, double a,
 
 int UIntersectingCone::LineHitsCone1(const UVector3& p, const UVector3& v, double& s1, double& s2)
 {
-  double x0 = p.x, y0 = p.y, z0 = p.z;
-  double tx = v.x, ty = v.y, tz = v.z;
+  double x0 = p.x(), y0 = p.y(), z0 = p.z();
+  double tx = v.x(), ty = v.y(), tz = v.z();
 
   double a = tx * tx + ty * ty - UUtils::sqr(B * tz);
   double b = 2 * (x0 * tx + y0 * ty - (A * B + B * B * z0) * tz);
@@ -300,8 +300,8 @@ int UIntersectingCone::LineHitsCone1(const UVector3& p, const UVector3& v, doubl
 
 int UIntersectingCone::LineHitsCone1Optimized(const UVector3& p, const UVector3& v, double& s1, double& s2)
 {
-  double x0 = p.x, y0 = p.y, z0 = p.z;
-  double tx = v.x, ty = v.y, tz = v.z;
+  double x0 = p.x(), y0 = p.y(), z0 = p.z();
+  double tx = v.x(), ty = v.y(), tz = v.z();
 
   double a = tx * tx + ty * ty - UUtils::sqr(B * tz);
   double b = 2 * (x0 * tx + y0 * ty - (A * B + B * B * z0) * tz);
@@ -417,8 +417,8 @@ int UIntersectingCone::LineHitsCone2(const UVector3& p,
                                      const UVector3& v,
                                      double& s1, double& s2)
 {
-  double x0 = p.x, y0 = p.y, z0 = p.z;
-  double tx = v.x, ty = v.y, tz = v.z;
+  double x0 = p.x(), y0 = p.y(), z0 = p.z();
+  double tx = v.x(), ty = v.y(), tz = v.z();
 
   // Special case which might not be so rare: B = 0 (precisely)
   //
diff --git a/source/externals/usolids/src/UMultiUnion.cc b/source/externals/usolids/src/UMultiUnion.cc
index 1bb70154a52..c2670b29e61 100644
--- a/source/externals/usolids/src/UMultiUnion.cc
+++ b/source/externals/usolids/src/UMultiUnion.cc
@@ -106,7 +106,7 @@ double UMultiUnion::Capacity()
       point = left + length.MultiplyByComponents(random / RAND_MAX);
       if (Inside(point) != eOutside) inside++;
     }
-    double vbox = (2 * d.x) * (2 * d.y) * (2 * d.z);
+    double vbox = (2 * d.x()) * (2 * d.y()) * (2 * d.z());
     fCubicVolume = inside * vbox / generated;
   }
   return fCubicVolume;
@@ -643,16 +643,16 @@ void UMultiUnion::Extent(EAxisType aAxis, double& aMin, double& aMax) const
       switch (aAxis)
       {
         case eXaxis:
-          aMin = min.x;
-          aMax = max.x;
+          aMin = min.x();
+          aMax = max.x();
           break;
         case eYaxis:
-          aMin = min.y;
-          aMax = max.y;
+          aMin = min.y();
+          aMax = max.y();
           break;
         case eZaxis:
-          aMin = min.z;
-          aMax = max.z;
+          aMin = min.z();
+          aMax = max.z();
           break;
       }
     }
@@ -662,22 +662,22 @@ void UMultiUnion::Extent(EAxisType aAxis, double& aMin, double& aMax) const
       switch (aAxis)
       {
         case eXaxis:
-          if (min.x < aMin)
-            aMin = min.x;
-          if (max.x > aMax)
-            aMax = max.x;
+          if (min.x() < aMin)
+            aMin = min.x();
+          if (max.x() > aMax)
+            aMax = max.x();
           break;
         case eYaxis:
-          if (min.y < aMin)
-            aMin = min.y;
-          if (max.y > aMax)
-            aMax = max.y;
+          if (min.y() < aMin)
+            aMin = min.y();
+          if (max.y() > aMax)
+            aMax = max.y();
           break;
         case eZaxis:
-          if (min.z < aMin)
-            aMin = min.z;
-          if (max.z > aMax)
-            aMax = max.z;
+          if (min.z() < aMin)
+            aMin = min.z();
+          if (max.z() > aMax)
+            aMax = max.z();
           break;
       }
     }
@@ -904,11 +904,11 @@ int UMultiUnion::SafetyFromOutsideNumberNode(const UVector3& aPoint, bool /*aAcc
   for (int i = 0; i < numNodes; ++i)
   {
     double d2xyz = 0.;
-    double dxyz0 = std::abs(aPoint.x - boxes[i].pos.x) - boxes[i].hlen.x;
+    double dxyz0 = std::abs(aPoint.x() - boxes[i].pos.x()) - boxes[i].hlen.x();
     if (dxyz0 > safetyMin) continue;
-    double dxyz1 = std::abs(aPoint.y - boxes[i].pos.y) - boxes[i].hlen.y;
+    double dxyz1 = std::abs(aPoint.y() - boxes[i].pos.y()) - boxes[i].hlen.y();
     if (dxyz1 > safetyMin) continue;
-    double dxyz2 = std::abs(aPoint.z - boxes[i].pos.z) - boxes[i].hlen.z;
+    double dxyz2 = std::abs(aPoint.z() - boxes[i].pos.z()) - boxes[i].hlen.z();
     if (dxyz2 > safetyMin) continue;
 
     if (dxyz0 > 0) d2xyz += dxyz0 * dxyz0;
diff --git a/source/externals/usolids/src/UOrb.cc b/source/externals/usolids/src/UOrb.cc
index 5326bc92f22..56bbba0b070 100644
--- a/source/externals/usolids/src/UOrb.cc
+++ b/source/externals/usolids/src/UOrb.cc
@@ -32,7 +32,8 @@ UOrb::UOrb(const std::string& name, double r)
   //
   if (r < 10 * VUSolid::fgTolerance) // cartesian tolerance
   {
-    UUtils::Exception("UOrb::UOrb()", "InvalidSetup", FatalErrorInArguments, 1, "Invalid radius > 10*kCarTolerance.");
+    UUtils::Exception("UOrb::UOrb()", "GeomSolids0002",
+       UFatalErrorInArguments, 1, "Invalid radius > 10*kCarTolerance.");
   }
   // VUSolid::fRTolerance is radial tolerance (note: half of G4 tolerance)
   fRTolerance =  max(VUSolid::frTolerance, epsilon * r);
@@ -52,7 +53,7 @@ UOrb::UOrb(const std::string& name, double r)
 // ok
 VUSolid::EnumInside UOrb::Inside(const UVector3& p) const
 {
-  double rad2 = p.x * p.x + p.y * p.y + p.z * p.z;
+  double rad2 = p.x() * p.x() + p.y() * p.y() + p.z() * p.z();
   //  if (false) double rad = sqrt(rad2);
 
   double tolRMax = fR - fRTolerance * 0.5;
@@ -95,8 +96,8 @@ double UOrb::DistanceToIn(const UVector3& p,
 
   // General Precalcs
 
-  rad    = sqrt(p.x * p.x + p.y * p.y + p.z * p.z);
-  pDotV3d = p.x * v.x + p.y * v.y + p.z * v.z;
+  rad    = sqrt(p.x() * p.x() + p.y() * p.y() + p.z() * p.z());
+  pDotV3d = p.x() * v.x() + p.y() * v.y() + p.z() * v.z();
 
   // Radial Precalcs
 
@@ -167,7 +168,7 @@ double UOrb::DistanceToIn(const UVector3& p,
 #ifdef UDEBUG
   else // inside ???
   {
-    UUtils::Exception("UOrb::DistanceToIn(p,v)", "Notification", Warning, 1, "Point p is inside !?");
+    UUtils::Exception("UOrb::DistanceToIn(p,v)", "GeomSolids1002", UWarning, 1, "Point p is inside !?");
   }
 #endif
 
@@ -211,8 +212,8 @@ double UOrb::DistanceToOut(const UVector3&  p, const UVector3& v,
   double xi, yi, zi;    // Intersection point
   double c, d2;
 
-  rad2    = p.x * p.x + p.y * p.y + p.z * p.z;
-  pDotV3d = p.x * v.x + p.y * v.y + p.z * v.z;
+  rad2    = p.x() * p.x() + p.y() * p.y() + p.z() * p.z();
+  pDotV3d = p.x() * v.x() + p.y() * v.y() + p.z() * v.z();
 
   // Radial Intersection from UOrb::DistanceToIn
   //
@@ -258,7 +259,7 @@ double UOrb::DistanceToOut(const UVector3&  p, const UVector3& v,
         // if(calcNorm) // NOTE: we do not have this variable, calcNorm is true always
         {
           //          *validNorm = true; // NOTE: we do not have this variable, probably always true
-          n = UVector3(p.x / fR, p.y / fR, p.z / fR);
+          n = UVector3(p.x() / fR, p.y() / fR, p.z() / fR);
         }
         return snxt = 0;
       }
@@ -285,22 +286,22 @@ double UOrb::DistanceToOut(const UVector3&  p, const UVector3& v,
     cout << endl;
     //    DumpInfo();
     cout << "Position:"  << endl << endl;
-    cout << "p.x() = "   << p.x << endl;
-    cout << "p.y() = "   << p.y << endl;
-    cout << "p.z() = "   << p.z << endl << endl;
-    cout << "Rp = " << sqrt(p.x * p.x + p.y * p.y + p.z * p.z) << endl << endl;
+    cout << "p.x() = "   << p.x() << endl;
+    cout << "p.y() = "   << p.y() << endl;
+    cout << "p.z() = "   << p.z() << endl << endl;
+    cout << "Rp = " << sqrt(p.x() * p.x() + p.y() * p.y() + p.z() * p.z()) << endl << endl;
     cout << "Direction:" << endl << endl;
-    cout << "v.x() = "   << v.x << endl;
-    cout << "v.y() = "   << v.y << endl;
-    cout << "v.z() = "   << v.z << endl << endl;
+    cout << "v.x() = "   << v.x() << endl;
+    cout << "v.y() = "   << v.y() << endl;
+    cout << "v.z() = "   << v.z() << endl << endl;
     cout << "Proposed distance :" << endl << endl;
     cout << "snxt = "    << snxt << endl << endl;
 
 
 
     cout.precision(6);
-    UUtils::Exception("UOrb::DistanceToOut(p,v,..)", "Notification",
-                      Warning, 1, "Logic error: snxt = kInfinity ???");
+    UUtils::Exception("UOrb::DistanceToOut(p,v,..)", "GeomSolids1002",
+                      UWarning, 1, "Logic error: snxt = kInfinity ???");
 
   }
 
@@ -308,9 +309,9 @@ double UOrb::DistanceToOut(const UVector3&  p, const UVector3& v,
   {
     if (notOutside)
     {
-      xi = p.x + snxt * v.x; // we move to the point on surface, then return normal at that point which for orb, see method bool UOrb::Normal( const UVector3& p, UVector3 &n)
-      yi = p.y + snxt * v.y;
-      zi = p.z + snxt * v.z;
+      xi = p.x() + snxt * v.x(); // we move to the point on surface, then return normal at that point which for orb, see method bool UOrb::Normal( const UVector3& p, UVector3 &n)
+      yi = p.y() + snxt * v.y();
+      zi = p.z() + snxt * v.z();
       n = UVector3(xi / fR, yi / fR, zi / fR); // we return normalized vector
     }
     else
@@ -320,19 +321,20 @@ double UOrb::DistanceToOut(const UVector3&  p, const UVector3& v,
       cout << endl;
       //        DumpInfo();
       cout << "Position:"  << endl << endl;
-      cout << "p.x() = "   << p.x << " mm" << endl;
-      cout << "p.y() = "   << p.y << " mm" << endl;
-      cout << "p.z() = "   << p.z << " mm" << endl << endl;
+      cout << "p.x() = "   << p.x() << " mm" << endl;
+      cout << "p.y() = "   << p.y() << " mm" << endl;
+      cout << "p.z() = "   << p.z() << " mm" << endl << endl;
       cout << "Direction:" << endl << endl;
-      cout << "v.x() = "   << v.x << endl;
-      cout << "v.y() = "   << v.y << endl;
-      cout << "v.z() = "   << v.z << endl << endl;
+      cout << "v.x() = "   << v.x() << endl;
+      cout << "v.y() = "   << v.y() << endl;
+      cout << "v.z() = "   << v.z() << endl << endl;
       cout << "Proposed distance :" << endl << endl;
       cout << "snxt = "    << snxt << " mm" << endl << endl;
       cout.precision(6);
 
 
-      UUtils::Exception("UOrb::DistanceToOut(p,v,..)", "Notification", Warning, 1, "Undefined side for valid surface normal to solid.");
+      UUtils::Exception("UOrb::DistanceToOut(p,v,..)", "GeomSolids1002",
+           UWarning, 1, "Undefined side for valid surface normal to solid.");
     }
   }
   return snxt;
@@ -354,7 +356,7 @@ double UOrb::SafetyFromInside(const UVector3& p, bool /*aAccurate*/) const
   //
   // Calculate distance (<=actual) to closest surface of shape from inside
 
-  double safe = 0.0, rad = sqrt(p.x * p.x + p.y * p.y + p.z * p.z);
+  double safe = 0.0, rad = sqrt(p.x() * p.x() + p.y() * p.y() + p.z() * p.z());
 
 #ifdef UDEBUG
   if (Inside(p) == kOutside)
@@ -363,11 +365,11 @@ double UOrb::SafetyFromInside(const UVector3& p, bool /*aAccurate*/) const
     cout << endl;
     //     DumpInfo();
     cout << "Position:"  << endl << endl;
-    cout << "p.x = "   << p.x << endl;
-    cout << "p.y = "   << p.y << endl;
-    cout << "p.z = "   << p.z << endl << endl;
+    cout << "p.x = "   << p.x() << endl;
+    cout << "p.y = "   << p.y() << endl;
+    cout << "p.z = "   << p.z() << endl << endl;
     //     cout.precision(oldprc);
-    UUtils::Exception("UOrb::DistanceToOut(p)", "Notification", Warning, 1,
+    UUtils::Exception("UOrb::DistanceToOut(p)", "GeomSolids1002", UWarning, 1,
                       "Point p is outside !?");
   }
 #endif
@@ -393,7 +395,7 @@ double UOrb::SafetyFromInside(const UVector3& p, bool /*aAccurate*/) const
 double UOrb::SafetyFromOutside(const UVector3& p, bool /*aAccurate*/) const
 {
   double safe = 0.0;
-  double rad  = sqrt(p.x * p.x + p.y * p.y + p.z * p.z);
+  double rad  = sqrt(p.x() * p.x() + p.y() * p.y() + p.z() * p.z());
   safe = rad - fR;
   if (safe < 0)
   {
@@ -420,10 +422,10 @@ double UOrb::SafetyFromOutside(const UVector3& p, bool /*aAccurate*/) const
 */
 bool UOrb::Normal(const UVector3& p, UVector3& n) const
 {
-  double rad2 = p.x * p.x + p.y * p.y + p.z * p.z;
+  double rad2 = p.x() * p.x() + p.y() * p.y() + p.z() * p.z();
   double rad = sqrt(rad2);
 
-  n = UVector3(p.x / rad, p.y / rad, p.z / rad);
+  n = UVector3(p.x() / rad, p.y() / rad, p.z() / rad);
 
   double tolRMaxP = fR + fRTolerance;
   double tolRMaxM = fR - fRTolerance;
diff --git a/source/externals/usolids/src/UPolyPhiFace.cc b/source/externals/usolids/src/UPolyPhiFace.cc
index 87661b24da7..a9e21af1c87 100644
--- a/source/externals/usolids/src/UPolyPhiFace.cc
+++ b/source/externals/usolids/src/UPolyPhiFace.cc
@@ -61,12 +61,12 @@ UPolyPhiFace::UPolyPhiFace(const UReduciblePolygon* rz,
   // Build normal
   //
   double zSign = start ? 1 : -1;
-  normal = UVector3(zSign * radial.y, -zSign * radial.x, 0);
+  normal = UVector3(zSign * radial.y(), -zSign * radial.x(), 0);
 
   //
   // Is allBehind?
   //
-  allBehind = (zSign * (std::cos(phiOther) * radial.y - std::sin(phiOther) * radial.x) < 0);
+  allBehind = (zSign * (std::cos(phiOther) * radial.y() - std::sin(phiOther) * radial.x()) < 0);
 
   //
   // Adjacent edges
@@ -92,8 +92,8 @@ UPolyPhiFace::UPolyPhiFace(const UReduciblePolygon* rz,
   {
     corn->r = iterRZ.GetA();
     corn->z = iterRZ.GetB();
-    corn->x = corn->r * radial.x;
-    corn->y = corn->r * radial.y;
+    corn->x = corn->r * radial.x();
+    corn->y = corn->r * radial.y();
 
     // Add pointer on prev corner
     //
@@ -242,7 +242,7 @@ UPolyPhiFace::UPolyPhiFace(const UReduciblePolygon* rz,
   //
   double rAve = 0.5 * (rMax - rMin),
          zAve = 0.5 * (zMax - zMin);
-  surface = UVector3(rAve * radial.x, rAve * radial.y, zAve);
+  surface = UVector3(rAve * radial.x(), rAve * radial.y(), zAve);
 }
 
 
@@ -265,7 +265,7 @@ void UPolyPhiFace::Diagnose(VUSolid* owner)
     if (owner->Inside(test) != VUSolid::eInside)
     {
       UUtils::Exception("UPolyPhiFace::Diagnose()", "GeomSolids0002",
-                        FatalError, 1, "Bad vertex normal found.");
+                        UFatalError, 1, "Bad vertex normal found.");
     }
   }
   while (++corner < corners + numEdges);
@@ -428,7 +428,7 @@ bool UPolyPhiFace::Distance(const UVector3& p,
   //
   // And is it inside the r/z extent?
   //
-  return InsideEdgesExact(r, ip.z, normSign, p, v);
+  return InsideEdgesExact(r, ip.z(), normSign, p, v);
 }
 
 
@@ -459,7 +459,7 @@ double UPolyPhiFace::Safety(const UVector3& p, bool outgoing)
   //
   double distRZ2;
 
-  if (InsideEdges(r, p.z, &distRZ2, 0))
+  if (InsideEdges(r, p.z(), &distRZ2, 0))
   {
     //
     // Yup, answer is just distPhi
@@ -502,7 +502,7 @@ VUSolid::EnumInside UPolyPhiFace::Inside(const UVector3& p,
   UPolyPhiFaceVertex* base3Dnorm;
   UVector3*      head3Dnorm;
 
-  if (InsideEdges(r, p.z, &distRZ2, &base3Dnorm, &head3Dnorm))
+  if (InsideEdges(r, p.z(), &distRZ2, &base3Dnorm, &head3Dnorm))
   {
     //
     // Looks like we're inside. Distance is distance in phi.
@@ -527,8 +527,8 @@ VUSolid::EnumInside UPolyPhiFace::Inside(const UVector3& p,
     //
     // Use edge normal to decide fate
     //
-    UVector3 cc(base3Dnorm->r * radial.x,
-                base3Dnorm->r * radial.y,
+    UVector3 cc(base3Dnorm->r * radial.x(),
+                base3Dnorm->r * radial.y(),
                 base3Dnorm->z);
     cc = p - cc;
     double normDist = head3Dnorm->Dot(cc);
@@ -572,7 +572,7 @@ UVector3 UPolyPhiFace::Normal(const UVector3& p,
   //
   double distRZ2;
 
-  if (InsideEdges(r, p.z, &distRZ2, 0))
+  if (InsideEdges(r, p.z(), &distRZ2, 0))
   {
     //
     // Yup, answer is just distPhi
@@ -603,9 +603,9 @@ double UPolyPhiFace::Extent(const UVector3 axis)
   UPolyPhiFaceVertex* corner = corners;
   do
   {
-    double here = axis.x * corner->r * radial.x
-                  + axis.y * corner->r * radial.y
-                  + axis.z * corner->z;
+    double here = axis.x() * corner->r * radial.x()
+                  + axis.y() * corner->r * radial.y()
+                  + axis.z() * corner->z;
     if (here > max) max = here;
   }
   while (++corner < corners + numEdges);
@@ -692,9 +692,9 @@ bool UPolyPhiFace::InsideEdgesExact(double r, double z,
   //
   // Exact check: loop over all vertices
   //
-  double qx = p.x + v.x,
-         qy = p.y + v.y,
-         qz = p.z + v.z;
+  double qx = p.x() + v.x(),
+         qy = p.y() + v.y(),
+         qz = p.z() + v.z();
 
   int answer = 0;
   UPolyPhiFaceVertex* corn = corners,
@@ -1287,7 +1287,7 @@ void UPolyPhiFace::Triangulate()
     if (i >= max_n_loops)
     {
       UUtils::Exception("UPolyPhiFace::Triangulation()",
-                        "GeomSolids0003", FatalError, 1,
+                        "GeomSolids0003", UFatalError, 1,
                         "Maximum number of steps is reached for triangulation!");
     }
   }  // end outer while loop
diff --git a/source/externals/usolids/src/UPolycone.cc b/source/externals/usolids/src/UPolycone.cc
index 728f37f5b4f..42c2b0740f3 100644
--- a/source/externals/usolids/src/UPolycone.cc
+++ b/source/externals/usolids/src/UPolycone.cc
@@ -67,7 +67,7 @@ UPolycone::UPolycone(const std::string& name,
     message << "Polycone " << GetName() << "cannot be converted" << std::endl
             << "to Polycone with (Rmin,Rmaz,Z) parameters! Use GenericPolycone" ;
     UUtils::Exception("UPolycone::UPolycone()", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
   else
   {
@@ -154,7 +154,7 @@ void UPolycone::Init(double phiStart,
               << "        rMin[" << j << "] = " << rInner[j]
               << " -- rMax[" << j << "] = " << rOuter[j];
        UUtils::Exception("UPolycone::UPolycone()", "GeomSolids0002",
-                         FatalErrorInArguments, 1, message.str().c_str());
+                         UFatalErrorInArguments, 1, message.str().c_str());
     }
   }
   //
@@ -181,7 +181,7 @@ void UPolycone::Init(double phiStart,
                 << " rMin[" << i + 1 << "] = " << rInner[i + 1]
                 << " -- rMax[" << i << "] = " << rOuter[i];
         UUtils::Exception("UPolycone::UPolycone()", "GeomSolids0002",
-                          FatalErrorInArguments, 1, message.str().c_str());
+                          UFatalErrorInArguments, 1, message.str().c_str());
       }
     }
 
@@ -206,7 +206,7 @@ void UPolycone::Init(double phiStart,
                   << "  zPlane[" << i - 1 << "] = " << zPlane[i - 1]
                   << " -- rPlane[" << i << "] = " << zPlane[i];
           UUtils::Exception("UPolycone::UPolycone()", "GeomSolids0002",
-                            FatalErrorInArguments, 1, message.str().c_str());
+                            UFatalErrorInArguments, 1, message.str().c_str());
 
 
 
@@ -291,7 +291,7 @@ void UPolycone::Init(double phiStart,
      message << "Illegal input parameters - " << GetName() << std::endl
              << "        All R values must be >= 0 !";
      UUtils::Exception("UPolycone::Init()", "GeomSolids0002",
-                       FatalErrorInArguments,1, message.str().c_str());
+                       UFatalErrorInArguments,1, message.str().c_str());
   }
      
 
@@ -388,15 +388,15 @@ std::ostream& UPolycone::StreamInfo(std::ostream& os) const
 VUSolid::EnumInside UPolycone::InsideSection(int index, const UVector3& p) const
 {
   const UPolyconeSection& section = fSections[index];
-  UVector3 ps(p.x, p.y, p.z - section.shift);
+  UVector3 ps(p.x(), p.y(), p.z() - section.shift);
 
 //  if (fNumSides) return section.solid->Inside(ps);
 
   double rMinPlus, rMaxPlus , rMinMinus, rMaxMinus;
   double dz;
-  double halfTolerance = fgTolerance * 0.5;
+  static const double halfTolerance = fgTolerance * 0.5;
 
-  double r2 = p.x * p.x + p.y * p.y;
+  double r2 = p.x() * p.x() + p.y() * p.y();
 
   if (section.tubular)
   {
@@ -417,7 +417,7 @@ VUSolid::EnumInside UPolycone::InsideSection(int index, const UVector3& p) const
     double rMin1 = cons->GetRmin1();
     double rMin2 = cons->GetRmin2();
     dz = cons->GetDz();
-    double ratio = (ps.z + dz) / (2 * dz);
+    double ratio = (ps.z() + dz) / (2 * dz);
     rMinPlus = rMin1 + (rMin2 - rMin1) * ratio + halfTolerance;
     rMaxPlus = rMax1 + (rMax2 - rMax1) * ratio + halfTolerance;
     rMinMinus = rMinPlus - 2*halfTolerance;
@@ -433,7 +433,7 @@ VUSolid::EnumInside UPolycone::InsideSection(int index, const UVector3& p) const
     }
     if (rMinMinus <= 0)  { pos = eSurface; }
     if ( ((pos == eInside) || (pos == eSurface))
-      && ((ps.z < -dz+halfTolerance) || (ps.z > dz-halfTolerance)))
+      && ((ps.z() < -dz+halfTolerance) || (ps.z() > dz-halfTolerance)))
     {
       pos = eSurface;
     }
@@ -451,13 +451,13 @@ VUSolid::EnumInside UPolycone::InsideSection(int index, const UVector3& p) const
 
   if (! phiIsOpen)
   {
-    if ( (ps.z < -dz+halfTolerance) || (ps.z > dz-halfTolerance) )
+    if ( (ps.z() < -dz+halfTolerance) || (ps.z() > dz-halfTolerance) )
     {
       return eSurface;
     }
     return eInside;
   }
-  double phi = std::atan2(p.y, p.x); // * UUtils::kTwoPi;
+  double phi = std::atan2(p.y(), p.x()); // * UUtils::kTwoPi;
    
   if ( (phi < 0) || (endPhi > UUtils::kTwoPi) )  { phi += UUtils::kTwoPi; }
 
@@ -466,7 +466,7 @@ VUSolid::EnumInside UPolycone::InsideSection(int index, const UVector3& p) const
   
   if ( (phi <= endPhi+ frTolerance) && (phi>= startPhi-frTolerance) )
   { 
-    if ( (ps.z < -dz+halfTolerance) || (ps.z > dz-halfTolerance) )
+    if ( (ps.z() < -dz+halfTolerance) || (ps.z() > dz-halfTolerance) )
     {
       return eSurface;
     }
@@ -491,7 +491,7 @@ VUSolid::EnumInside UPolycone::InsideSection(int index, const UVector3& p) const
 VUSolid::EnumInside UPolycone::Inside(const UVector3& p) const
 {
   double shift = fZs[0] + fBox.GetZHalfLength();
-  UVector3 pb(p.x, p.y, p.z - shift);
+  UVector3 pb(p.x(), p.y(), p.z() - shift);
 
   if (fBox.Inside(pb) == eOutside)
   {
@@ -499,7 +499,7 @@ VUSolid::EnumInside UPolycone::Inside(const UVector3& p) const
   }
 
   static const double htolerance = 0.5 * fgTolerance;
-  int index = GetSection(p.z);
+  int index = GetSection(p.z());
 
   EnumInside pos = InsideSection(index, p);
   if (pos == eInside)  { return eInside; }
@@ -507,12 +507,12 @@ VUSolid::EnumInside UPolycone::Inside(const UVector3& p) const
   int nextSection;
   EnumInside nextPos;
 
-  if (index > 0 && p.z  - fZs[index] < htolerance)
+  if (index > 0 && p.z()  - fZs[index] < htolerance)
   {
     nextSection = index - 1;
     nextPos = InsideSection(nextSection, p);
   }
-  else if (index < fMaxSection && fZs[index + 1] - p.z < htolerance)
+  else if (index < fMaxSection && fZs[index + 1] - p.z() < htolerance)
   {
     nextSection = index + 1;
     nextPos = InsideSection(nextSection, p);
@@ -540,7 +540,7 @@ double UPolycone::DistanceToIn(const UVector3& p,
                                const UVector3& v, double) const
 {
   double shift = fZs[0] + fBox.GetZHalfLength();
-  UVector3 pb(p.x, p.y, p.z - shift);
+  UVector3 pb(p.x(), p.y(), p.z() - shift);
 
   double idistance;
 
@@ -559,24 +559,24 @@ double UPolycone::DistanceToIn(const UVector3& p,
   //  if (idistance == UUtils::kInfinity) return idistance;
 
   pb = p + idistance * v;
-  int index = GetSection(pb.z);
+  int index = GetSection(pb.z());
   pb = p;
-  int increment = (v.z > 0) ? 1 : -1;
-  if (std::fabs(v.z) < fgTolerance) increment = 0;
+  int increment = (v.z() > 0) ? 1 : -1;
+  if (std::fabs(v.z()) < fgTolerance) increment = 0;
 
   double distance = UUtils::kInfinity;
   do
   {
     const UPolyconeSection& section = fSections[index];
-    pb.z -= section.shift;
+    pb.z() -= section.shift;
     distance = section.solid->DistanceToIn(pb, v);
     if (distance < UUtils::kInfinity || !increment)
       break;
     index += increment;
-    pb.z += section.shift;
+    pb.z() += section.shift;
   }
   while (index >= 0 && index <= fMaxSection);
-  //if(Inside(p)==eInside)return UUtils::kInfinity;
+
   return distance;
 }
 
@@ -589,18 +589,18 @@ double UPolycone::DistanceToOut(const UVector3&  p, const UVector3& v,
   if (fOriginalParameters->fNumZPlanes == 2)
   {
     const UPolyconeSection& section = fSections[0];
-    pn.z -= section.shift;
+    pn.z() -= section.shift;
     return section.solid->DistanceToOut(pn, v, n, convex);
   }
 
-  int indexLow = GetSection(p.z-fgTolerance);
-  int indexHigh = GetSection(p.z+fgTolerance);
+  int indexLow = GetSection(p.z()-fgTolerance);
+  int indexHigh = GetSection(p.z()+fgTolerance);
   int index = 0;
  
   if ( indexLow != indexHigh )  // we are close to Surface,
   {                             // section has to be identified
     const UPolyconeSection& section = fSections[indexLow];
-    pn.z -= section.shift;
+    pn.z() -= section.shift;
     if (section.solid->Inside(pn) == eOutside)
     {
       index=indexHigh;
@@ -609,14 +609,14 @@ double UPolycone::DistanceToOut(const UVector3&  p, const UVector3& v,
     {
       index=indexLow;
     }
-    pn.z=p.z;
+    pn.z()=p.z();
   }
   else
   {
     index=indexLow;
   } 
   double totalDistance = 0;
-  int increment = (v.z > 0) ? 1 : -1;
+  int increment = (v.z() > 0) ? 1 : -1;
   bool convexloc = true;
  
   UVector3 section_norm;
@@ -630,7 +630,7 @@ double UPolycone::DistanceToOut(const UVector3&  p, const UVector3& v,
     {
       pn = p + (totalDistance ) * v; // point must be shifted, so it could
                                      // eventually get into another solid
-      pn.z -= section.shift;
+      pn.z() -= section.shift;
       if (section.solid->Inside(pn) == eOutside)
       {
         break;
@@ -638,7 +638,7 @@ double UPolycone::DistanceToOut(const UVector3&  p, const UVector3& v,
     }
     else
     {
-      pn.z -= section.shift;
+      pn.z() -= section.shift;
     }
     istep = istep+1;
     double distance = section.solid-> DistanceToOut(pn, v, n, convexloc);
@@ -657,7 +657,7 @@ double UPolycone::DistanceToOut(const UVector3&  p, const UVector3& v,
       }
       UVector3 pte = p+(totalDistance+distance)*v;
       const UPolyconeSection& section1 = fSections[index1];
-      pte.z -= section1.shift;
+      pte.z() -= section1.shift;
       if (section1.solid->Inside(pte) == eOutside)
       {
        break;
@@ -688,8 +688,8 @@ double UPolycone::DistanceToOut(const UVector3&  p, const UVector3& v,
     double halfTolerance = 0.5*fgTolerance;
     if( (index < fMaxSection) && (index > 0 ) )
     {
-      double dz1 = std::fabs(pn.z-fZs[index]);
-      double dz2 = std::fabs(pn.z-fZs[index+1]);
+      double dz1 = std::fabs(pn.z()-fZs[index]);
+      double dz2 = std::fabs(pn.z()-fZs[index+1]);
       if(dz1 < halfTolerance)  { convex=false; }
       if(dz2 < halfTolerance)  { convex=false; }
     }
@@ -697,13 +697,13 @@ double UPolycone::DistanceToOut(const UVector3&  p, const UVector3& v,
     {
       if(index>=fMaxSection)
       {
-        if (std::fabs(pn.z-fZs[fMaxSection]) < halfTolerance) { convex=false; }
+        if (std::fabs(pn.z()-fZs[fMaxSection]) < halfTolerance) { convex=false; }
       }
       else
       {
         if(index<=0)
         {
-          if (std::fabs(pn.z-fZs[1]) < halfTolerance) { convex=false;}
+          if (std::fabs(pn.z()-fZs[1]) < halfTolerance) { convex=false;}
         }
       }
     }
@@ -716,13 +716,13 @@ double UPolycone::DistanceToOut(const UVector3&  p, const UVector3& v,
 
 double UPolycone::SafetyFromInside(const UVector3& p, bool) const
 {
-  int index = UVoxelizer::BinarySearch(fZs, p.z);
+  int index = UVoxelizer::BinarySearch(fZs, p.z());
   if (index < 0 || index > fMaxSection) return 0;
   
-  double rho=std::sqrt(p.x*p.x+p.y*p.y);
+  double rho=std::sqrt(p.x()*p.x()+p.y()*p.y());
   double safeR = SafetyFromInsideSection(index,rho, p);
-  double safeDown = p.z-fZs[index];
-  double safeUp = fZs[index+1]-p.z;
+  double safeDown = p.z()-fZs[index];
+  double safeUp = fZs[index+1]-p.z();
   
   double minSafety =safeR;
   
@@ -731,8 +731,8 @@ double UPolycone::SafetyFromInside(const UVector3& p, bool) const
  
   for (int i = index + 1; i <= fMaxSection; ++i)
   {
-    double dz1 = fZs[i] - p.z;
-    double dz2 = fZs[i+1] - p.z;
+    double dz1 = fZs[i] - p.z();
+    double dz2 = fZs[i+1] - p.z();
     safeR = SafetyFromOutsideSection(i,rho, p); 
     if (safeR < 0.) { safeUp=dz1; break; } 
     if (dz1 < dz2) { safeR = std::sqrt(safeR*safeR+dz1*dz1); }
@@ -746,8 +746,8 @@ double UPolycone::SafetyFromInside(const UVector3& p, bool) const
   {
     for (int i = index - 1; i >= 0; --i)
     {
-      double dz1 = p.z-fZs[i+1];
-      double dz2 = p.z-fZs[i];
+      double dz1 = p.z()-fZs[i+1];
+      double dz2 = p.z()-fZs[i];
       safeR = SafetyFromOutsideSection(i,rho, p); 
       if (safeR < 0.) { safeDown=dz1; break; } 
       if(dz1 < dz2) { safeR = std::sqrt(safeR*safeR+dz1*dz1); }
@@ -768,7 +768,7 @@ double UPolycone::SafetyFromOutside(const UVector3& p, bool aAccurate) const
   if (!aAccurate)
     return enclosingCylinder->SafetyFromOutside(p);
 
-  int index = GetSection(p.z);
+  int index = GetSection(p.z());
   double minSafety = SafetyFromOutsideSection(index, p);
   if (minSafety < 1e-6) return minSafety;
 
@@ -795,17 +795,17 @@ double UPolycone::SafetyFromOutside(const UVector3& p, bool aAccurate) const
 bool UPolycone::Normal(const UVector3& p, UVector3& n) const
 {
   double htolerance = 0.5 * fgTolerance;
-  int index = GetSection(p.z);
+  int index = GetSection(p.z());
 
   EnumInside nextPos;
   int nextSection;
 
-  if (index > 0 && p.z  - fZs[index] < htolerance)
+  if (index > 0 && p.z()  - fZs[index] < htolerance)
   {
     nextSection = index - 1;
     nextPos = InsideSection(nextSection, p);
   }
-  else if (index < fMaxSection && fZs[index + 1] - p.z < htolerance)
+  else if (index < fMaxSection && fZs[index + 1] - p.z() < htolerance)
   {
     nextSection = index + 1;
     nextPos = InsideSection(nextSection, p);
@@ -813,28 +813,9 @@ bool UPolycone::Normal(const UVector3& p, UVector3& n) const
   else
   {
     const UPolyconeSection& section = fSections[index];
-    UVector3 ps(p.x, p.y, p.z - section.shift);
+    UVector3 ps(p.x(), p.y(), p.z() - section.shift);
     bool res = section.solid->Normal(ps, n);
-    if(n.Mag()<0.9)std::cout<<"UPcon Norm 1 ="<<n<<" res="<<res<<" p="<<p<<" name="<<GetName()<<std::endl;
     return res;
-
-    // the code bellow is not used can be deleted
-
-    nextPos = section.solid->Inside(ps);
-    if (nextPos == eSurface)
-    {
-      if(n.Mag()<0.9)std::cout<<"UPcon Norm 2 ="<<n<<" res="<<res<<" p="<<p<<" name="<<GetName()<<std::endl;
-      return res;
-    }
-    else
-    {
-      //TODO: here should be implementation for case point was not on surface. We would have to look also at other sections. It is not clear if it is possible to solve this problem at all, since we would need precise safety... If it is outside, than it might be OK, but if it is inside..., than I beleive we do not have precise safety
-
-      // ... or we should at least warn that this case is not supported. actually,
-      //  i do not see any algorithm which would obtain right normal of point closest to surface.;
-      if(n.Mag()<0.9)std::cout<<"UPcon Norm 3 ="<<n<<std::endl;
-      return false;
-    }
   }
 
   // even if it says we are on the surface, actually it do not have to be
@@ -846,15 +827,12 @@ bool UPolycone::Normal(const UVector3& p, UVector3& n) const
 
   if (nextPos == eInside)
   {
-    //UVector3 n;
     NormalSection(index, p, n);
-    if(n.Mag()<0.9)std::cout<<"UPcon Norm 4 ="<<n<<std::endl;
     return false;
   }
 
   if (pos == eSurface && nextPos == eSurface)
   {
-    //UVector3 n, n2;
     UVector3 n2;
     NormalSection(index, p, n);
     NormalSection(nextSection, p, n2);
@@ -863,7 +841,6 @@ bool UPolycone::Normal(const UVector3& p, UVector3& n) const
       // "we are inside. see TODO above";
       
       NormalSection(index, p, n);
-      if(n.Mag()<0.9)std::cout<<"UPcon Norm 5 ="<<n<<std::endl;
       return false;
     }
   }
@@ -872,23 +849,19 @@ bool UPolycone::Normal(const UVector3& p, UVector3& n) const
   {
     if (pos != eSurface) index = nextSection;
     bool res = NormalSection(index, p, n);
-    if(n.Mag()<0.9)std::cout<<"UPcon Norm 6 ="<<n<<std::endl;
     return res;
   }
 
   NormalSection(index, p, n);
-  if(n.Mag()<0.9)std::cout<<"UPcon Norm 7 ="<<n<<std::endl;
   // "we are outside. see TODO above";
   return false;
 }
 
-
 void UPolycone::Extent(UVector3& aMin, UVector3& aMax) const
 {
   double r = enclosingCylinder->radius;
   aMin.Set(-r, -r, fZs.front());
   aMax.Set(r, r, fZs.back());
-  //std::cout<<"UPOLy Extent "<<aMin<<" 2="<<" name="<<aMax<<GetName()<<std::endl;
 }
 
 double UPolycone::Capacity()
@@ -1607,7 +1580,7 @@ bool  UPolycone::SetOriginalParameters(UReduciblePolygon* rz)
     message << "Polycone " << GetName() << std::endl
             << "cannot be converted to Polycone with (Rmin,Rmaz,Z) parameters!";
     UUtils::Exception("UPolycone::SetOriginalParameters()", "GeomSolids0002",
-                      Warning, 1, "can not convert");
+                      UWarning, 1, "can not convert");
 
     fOriginalParameters = new UPolyconeHistorical;
 
diff --git a/source/externals/usolids/src/UPolyconeSide.cc b/source/externals/usolids/src/UPolyconeSide.cc
index 03cafb8d4d8..bc9eef11fb3 100644
--- a/source/externals/usolids/src/UPolyconeSide.cc
+++ b/source/externals/usolids/src/UPolyconeSide.cc
@@ -289,7 +289,7 @@ bool UPolyconeSide::Distance(const UVector3& p,
       //
       double pr = p.Perp();
       if (pr < DBL_MIN) pr = DBL_MIN;
-      UVector3 pNormal(rNorm * p.x / pr, rNorm * p.y / pr, zNorm);
+      UVector3 pNormal(rNorm * p.x() / pr, rNorm * p.y() / pr, zNorm);
       if (normSign * v.Dot(pNormal) > 0)
       {
         //
@@ -340,7 +340,7 @@ bool UPolyconeSide::Distance(const UVector3& p,
     {
       double pr = p.Perp();
       if (pr < DBL_MIN) pr = DBL_MIN;
-      UVector3 pNormal(rNorm * p.x / pr, rNorm * p.y / pr, zNorm);
+      UVector3 pNormal(rNorm * p.x() / pr, rNorm * p.y() / pr, zNorm);
       if (normSign * v.Dot(pNormal) > 0)
       {
         double distOutside2;
@@ -461,7 +461,7 @@ UVector3 UPolyconeSide::Normal(const UVector3& p,
   double rds = p.Perp();
   if (rds != 0.)
   {
-    return UVector3(rNorm * p.x / rds, rNorm * p.y / rds, zNorm);
+    return UVector3(rNorm * p.x() / rds, rNorm * p.y() / rds, zNorm);
   }
   return UVector3(0., 0., zNorm).Unit();
 }
@@ -477,7 +477,7 @@ double UPolyconeSide::Extent(const UVector3 axis)
     //
     // Special case
     //
-    return axis.z < 0 ? -cone->ZLo() : cone->ZHi();
+    return axis.z() < 0 ? -cone->ZLo() : cone->ZHi();
   }
 
   //
@@ -520,8 +520,8 @@ double UPolyconeSide::Extent(const UVector3 axis)
   //
   double aPerp = axis.Perp();
 
-  double a = aPerp * r[0] + axis.z * z[0];
-  double b = aPerp * r[1] + axis.z * z[1];
+  double a = aPerp * r[0] + axis.z() * z[0];
+  double b = aPerp * r[1] + axis.z() * z[1];
 
   if (b > a) a = b;
 
@@ -892,7 +892,7 @@ double UPolyconeSide::DistanceAway(const UVector3& p,
   //
   // Convert our point to r and z
   //
-  double rx = p.Perp(), zx = p.z;
+  double rx = p.Perp(), zx = p.z();
 
   //
   // Change sign of r if opposite says we should
@@ -979,7 +979,7 @@ double UPolyconeSide::DistanceAway(const UVector3& p,
   //
   // Convert our point to r and z
   //
-  double rx = p.Perp(), zx = p.z;
+  double rx = p.Perp(), zx = p.z();
 
   //
   // Change sign of r if we should
@@ -1072,7 +1072,7 @@ bool UPolyconeSide::PointOnCone(const UVector3& hit,
   //
   // Check radial/z extent, as appropriate
   //
-  if (!cone->HitOn(rx, hit.z)) return false;
+  if (!cone->HitOn(rx, hit.z())) return false;
 
   if (phiIsOpen)
   {
@@ -1116,7 +1116,7 @@ bool UPolyconeSide::PointOnCone(const UVector3& hit,
   if (rx < DBL_MIN)
     normal = UVector3(0, 0, zNorm < 0 ? -1 : 1);
   else
-    normal = UVector3(rNorm * hit.x / rx, rNorm * hit.y / rx, zNorm);
+    normal = UVector3(rNorm * hit.x() / rx, rNorm * hit.y() / rx, zNorm);
   return true;
 }
 
diff --git a/source/externals/usolids/src/UPolyhedra.cc b/source/externals/usolids/src/UPolyhedra.cc
index c0b494484dd..7cdaedc99c3 100644
--- a/source/externals/usolids/src/UPolyhedra.cc
+++ b/source/externals/usolids/src/UPolyhedra.cc
@@ -81,7 +81,7 @@ void UPolyhedra::Init(
     message << "Solid must have at least one side - " << GetName() << std::endl
             << "        No sides specified !";
     UUtils::Exception("UPolyhedra::UPolyhedra()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   //
@@ -125,7 +125,7 @@ void UPolyhedra::Init(
                 << "        rMin[" << i + 1 << "] = " << rInner[i + 1]
                 << " -- rMax[" << i << "] = " << rOuter[i];
         UUtils::Exception("UPolyhedra::UPolyhedra()", "GeomSolids0002",
-                          FatalErrorInArguments, 1, message.str().c_str());
+                          UFatalErrorInArguments, 1, message.str().c_str());
       }
     }
     fOriginalParameters.fZValues[i] = zPlane[i];
@@ -194,7 +194,7 @@ void UPolyhedra::Create(double phiStart,
     message << "Illegal input parameters - " << GetName() << std::endl
             << "        All R values must be >= 0 !";
     UUtils::Exception("UPolyhedra::Create()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   double rzArea = rz->Area();
@@ -207,7 +207,7 @@ void UPolyhedra::Create(double phiStart,
     message << "Illegal input parameters - " << GetName() << std::endl
             << "        R/Z Cross section is zero or near zero: " << rzArea;
     UUtils::Exception("UPolyhedra::Create()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   if ((!rz->RemoveDuplicateVertices(VUSolid::Tolerance()))
@@ -217,7 +217,7 @@ void UPolyhedra::Create(double phiStart,
     message << "Illegal input parameters - " << GetName() << std::endl
             << "        Too few unique R/Z values !";
     UUtils::Exception("UPolyhedra::Create()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   if (rz->CrossesItself(1 / UUtils::kInfinity))
@@ -226,7 +226,7 @@ void UPolyhedra::Create(double phiStart,
     message << "Illegal input parameters - " << GetName() << std::endl
             << "        R/Z segments Cross !";
     UUtils::Exception("UPolyhedra::Create()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   fNumCorner = rz->NumVertices();
@@ -469,7 +469,7 @@ bool UPolyhedra::Reset()
     message << "Solid " << GetName() << " built using generic construct."
             << std::endl << "Not applicable to the generic construct !";
     UUtils::Exception("UPolyhedra::Reset(,,)", "GeomSolids1001",
-                      Warning, 1,  message.str().c_str());
+                      UWarning, 1,  message.str().c_str());
     return 1;
   }
 
diff --git a/source/externals/usolids/src/UPolyhedraSide.cc b/source/externals/usolids/src/UPolyhedraSide.cc
index 2040379bd63..1630b0be551 100644
--- a/source/externals/usolids/src/UPolyhedraSide.cc
+++ b/source/externals/usolids/src/UPolyhedraSide.cc
@@ -466,7 +466,7 @@ bool UPolyhedraSide::Distance(const UVector3& p,
     if (solutions == 2 && s2 > 0 && (s2 < s1 || s1 < 0))
       s1 = s2;
 
-    segment = PhiSegment(std::atan2(p.y + s1 * v.y, p.x + s1 * v.x));
+    segment = PhiSegment(std::atan2(p.y() + s1 * v.y(), p.x() + s1 * v.x()));
   }
 
   UVector3 q = p + v;
@@ -644,7 +644,7 @@ double UPolyhedraSide::Extent(const UVector3 axis)
     //
     // Special case
     //
-    return axis.z < 0 ? -cone->ZLo() : cone->ZHi();
+    return axis.z() < 0 ? -cone->ZLo() : cone->ZHi();
   }
 
   int iPhi, i1, i2;
@@ -833,7 +833,7 @@ int UPolyhedraSide::LineHitsSegments(const UVector3& p,
   //
   // Try first intersection.
   //
-  *i1 = PhiSegment(std::atan2(p.y + s1 * v.y, p.x + s1 * v.x));
+  *i1 = PhiSegment(std::atan2(p.y() + s1 * v.y(), p.x() + s1 * v.x()));
   if (n == 1)
   {
     return (*i1 < 0) ? 0 : 1;
@@ -842,7 +842,7 @@ int UPolyhedraSide::LineHitsSegments(const UVector3& p,
   //
   // Try second intersection
   //
-  *i2 = PhiSegment(std::atan2(p.y + s2 * v.y, p.x + s2 * v.x));
+  *i2 = PhiSegment(std::atan2(p.y() + s2 * v.y(), p.x() + s2 * v.x()));
   if (*i1 == *i2) return 0;
 
   if (*i1 < 0)
diff --git a/source/externals/usolids/src/UQuadrangularFacet.cc b/source/externals/usolids/src/UQuadrangularFacet.cc
index 2359d253852..00dd4b7d171 100644
--- a/source/externals/usolids/src/UQuadrangularFacet.cc
+++ b/source/externals/usolids/src/UQuadrangularFacet.cc
@@ -86,7 +86,8 @@ UQuadrangularFacet::UQuadrangularFacet(const UVector3& vt0,
   }
   else
   {
-    UUtils::Exception("UQuadrangularFacet::UQuadrangularFacet()", "InvalidSetup", Warning, 1, "Length of sides of facet are too small or sides not planar.");
+    UUtils::Exception("UQuadrangularFacet::UQuadrangularFacet()", "GeomSolids1002",
+        UWarning, 1, "Length of sides of facet are too small or sides not planar.");
     cerr << endl;
     cerr << "P0 = " << GetVertex(0) << endl;
     cerr << "P1 = " << GetVertex(1) << endl;
@@ -214,7 +215,7 @@ double UQuadrangularFacet::GetArea()
 
 std::string UQuadrangularFacet::GetEntityType() const
 {
-  return "UQuadrangularFacet";
+  return "QuadrangularFacet";
 }
 
 UVector3 UQuadrangularFacet::GetSurfaceNormal() const
diff --git a/source/externals/usolids/src/UReduciblePolygon.cc b/source/externals/usolids/src/UReduciblePolygon.cc
index ee1bdee01f4..6123b0cf081 100644
--- a/source/externals/usolids/src/UReduciblePolygon.cc
+++ b/source/externals/usolids/src/UReduciblePolygon.cc
@@ -84,7 +84,7 @@ void UReduciblePolygon::Create(const double a[],
 {
   if (n < 3)
     UUtils::Exception("UReduciblePolygon::Create()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, "Less than 3 vertices specified.");
+                      UFatalErrorInArguments, 1, "Less than 3 vertices specified.");
 
   const double* anext = a, *bnext = b;
 
diff --git a/source/externals/usolids/src/USphere.cc b/source/externals/usolids/src/USphere.cc
index 501398ebd00..290b5fb5d3a 100644
--- a/source/externals/usolids/src/USphere.cc
+++ b/source/externals/usolids/src/USphere.cc
@@ -50,7 +50,7 @@ USphere::USphere(const std::string& pName,
     message << "Invalid radii for Solid: " << GetName() << std::endl
             << "pRmin = " << pRmin << ", pRmax = " << pRmax;
     UUtils::Exception("USphere::USphere()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
   fRmin = pRmin;
   fRmax = pRmax;
@@ -172,14 +172,30 @@ VUSolid::EnumInside USphere::Inside(const UVector3& p) const
   const double rMaxMinus = fRmax - halfTolerance;
   const double rMinPlus = (fRmin > 0) ? fRmin + halfRminTolerance : 0;
 
-  rho2 = p.x * p.x + p.y * p.y;
-  rad2 = rho2 + p.z * p.z;
+  rho2 = p.x() * p.x() + p.y() * p.y();
+  rad2 = rho2 + p.z() * p.z();
 
   // Check radial surfaces. Sets 'in'
 
   tolRMin = rMinPlus;
   tolRMax = rMaxMinus;
 
+  if(rad2 == 0.0)
+  { 
+    if (fRmin > 0.0)
+    {
+      return in = eOutside;
+    }
+    if ( (!fFullPhiSphere) || (!fFullThetaSphere) )
+    {
+      return in = eSurface;
+    }
+    else
+    {
+      return in = eInside; 
+    }
+  }
+
   if ((rad2 <= rMaxMinus * rMaxMinus) && (rad2 >= rMinPlus * rMinPlus))
   {
     in = eInside;
@@ -200,9 +216,9 @@ VUSolid::EnumInside USphere::Inside(const UVector3& p) const
 
   // Phi boundaries  : Do not check if it has no phi boundary!
 
-  if (!fFullPhiSphere && rho2)  // [fDPhi < 2*UUtils::kPi] and [p.x or p.y]
+  if (!fFullPhiSphere && rho2)  // [fDPhi < 2*UUtils::kPi] and [p.x() or p.y()]
   {
-    pPhi = std::atan2(p.y, p.x);
+    pPhi = std::atan2(p.y(), p.x());
 
     if (pPhi < fSPhi - halfAngTolerance)
     {
@@ -231,18 +247,20 @@ VUSolid::EnumInside USphere::Inside(const UVector3& p) const
 
   // Theta bondaries
 
-  if ((rho2 || p.z) && (!fFullThetaSphere))
+  if ((rho2 || p.z()) && (!fFullThetaSphere))
   {
     rho   = std::sqrt(rho2);
-    pTheta = std::atan2(rho, p.z);
+    pTheta = std::atan2(rho, p.z());
 
     if (in == eInside)
     {
-      if ((pTheta < fSTheta + halfAngTolerance)
-          || (pTheta > eTheta - halfAngTolerance))
+      if ( ((fSTheta > 0.0) && (pTheta < fSTheta + halfAngTolerance))
+        || ((eTheta < UUtils::kPi) && (pTheta > eTheta - halfAngTolerance)) ) 
       {
-        if ((pTheta >= fSTheta - halfAngTolerance)
-            && (pTheta <= eTheta + halfAngTolerance))
+
+       if ( (( (fSTheta>0.0)&&(pTheta>=fSTheta-halfAngTolerance) )
+            || (fSTheta == 0.0) )
+          && ((eTheta==UUtils::kPi)||(pTheta <= eTheta + halfAngTolerance) ) )
         {
           in = eSurface;
         }
@@ -254,8 +272,8 @@ VUSolid::EnumInside USphere::Inside(const UVector3& p) const
     }
     else
     {
-      if ((pTheta < fSTheta - halfAngTolerance)
-          || (pTheta > eTheta + halfAngTolerance))
+      if ( ((fSTheta > 0.0)&&(pTheta < fSTheta - halfAngTolerance))
+	   ||((eTheta < UUtils::kPi  )&&(pTheta > eTheta + halfAngTolerance)) )
       {
         in = eOutside;
       }
@@ -283,8 +301,8 @@ bool USphere::Normal(const UVector3& p, UVector3& n) const
   static const double halfCarTolerance = 0.5 * VUSolid::Tolerance();
   static const double halfAngTolerance = 0.5 * kAngTolerance;
 
-  rho2 = p.x * p.x + p.y * p.y;
-  radius = std::sqrt(rho2 + p.z * p.z);
+  rho2 = p.x() * p.x() + p.y() * p.y();
+  radius = std::sqrt(rho2 + p.z() * p.z());
   rho = std::sqrt(rho2);
 
   double    distRMax = std::fabs(radius - fRmax);
@@ -292,7 +310,7 @@ bool USphere::Normal(const UVector3& p, UVector3& n) const
 
   if (rho && !fFullSphere)
   {
-    pPhi = std::atan2(p.y, p.x);
+    pPhi = std::atan2(p.y(), p.x());
 
     if (pPhi < fSPhi - halfAngTolerance)
     {
@@ -322,16 +340,16 @@ bool USphere::Normal(const UVector3& p, UVector3& n) const
   {
     if (rho)
     {
-      pTheta     = std::atan2(rho, p.z);
+      pTheta     = std::atan2(rho, p.z());
       distSTheta = std::fabs(pTheta - fSTheta);
       distETheta = std::fabs(pTheta - eTheta);
 
-      nTs = UVector3(-cosSTheta * p.x / rho,
-                     -cosSTheta * p.y / rho,
+      nTs = UVector3(-cosSTheta * p.x() / rho,
+                     -cosSTheta * p.y() / rho,
                      sinSTheta);
 
-      nTe = UVector3(cosETheta * p.x / rho,
-                     cosETheta * p.y / rho,
+      nTe = UVector3(cosETheta * p.x() / rho,
+                     cosETheta * p.y() / rho,
                      -sinETheta);
     }
     else if (!fRmin)
@@ -350,7 +368,7 @@ bool USphere::Normal(const UVector3& p, UVector3& n) const
   }
   if (radius)
   {
-    nR = UVector3(p.x / radius, p.y / radius, p.z / radius);
+    nR = UVector3(p.x() / radius, p.y() / radius, p.z() / radius);
   }
 
   if (distRMax <= halfCarTolerance)
@@ -401,7 +419,7 @@ bool USphere::Normal(const UVector3& p, UVector3& n) const
       {
         sumnorm += nTe;
       }
-      if (sumnorm.z == 0.)
+      if (sumnorm.z() == 0.)
       {
         sumnorm += nZ;
       }
@@ -411,7 +429,7 @@ bool USphere::Normal(const UVector3& p, UVector3& n) const
   {
 #ifdef UDEBUG
     UUtils::Exception("USphere::SurfaceNormal(p)", "GeomSolids1002",
-                      Warning, 1, "Point p is not on surface !?");
+                      UWarning, 1, "Point p is not on surface !?");
 #endif
     norm = ApproxSurfaceNormal(p);
   }
@@ -441,8 +459,8 @@ UVector3 USphere::ApproxSurfaceNormal(const UVector3& p) const
   double distRMin, distRMax, distSPhi, distEPhi,
          distSTheta, distETheta, distMin;
 
-  rho2 = p.x * p.x + p.y * p.y;
-  radius = std::sqrt(rho2 + p.z * p.z);
+  rho2 = p.x() * p.x() + p.y() * p.y();
+  radius = std::sqrt(rho2 + p.z() * p.z());
   rho = std::sqrt(rho2);
 
   //
@@ -475,7 +493,7 @@ UVector3 USphere::ApproxSurfaceNormal(const UVector3& p) const
   //
   // Protected against (0,0,z)
 
-  pPhi = std::atan2(p.y, p.x);
+  pPhi = std::atan2(p.y(), p.x());
   if (pPhi < 0)
   {
     pPhi += 2 * UUtils::kPi;
@@ -520,7 +538,7 @@ UVector3 USphere::ApproxSurfaceNormal(const UVector3& p) const
 
   if (!fFullThetaSphere && radius)
   {
-    pTheta = std::atan2(rho, p.z);
+    pTheta = std::atan2(rho, p.z());
     distSTheta = std::fabs(pTheta - fSTheta) * radius;
     distETheta = std::fabs(pTheta - fSTheta - fDTheta) * radius;
 
@@ -547,10 +565,10 @@ UVector3 USphere::ApproxSurfaceNormal(const UVector3& p) const
   switch (side)
   {
     case kNRMin:      // Inner radius
-      norm = UVector3(-p.x / radius, -p.y / radius, -p.z / radius);
+      norm = UVector3(-p.x() / radius, -p.y() / radius, -p.z() / radius);
       break;
     case kNRMax:      // Outer radius
-      norm = UVector3(p.x / radius, p.y / radius, p.z / radius);
+      norm = UVector3(p.x() / radius, p.y() / radius, p.z() / radius);
       break;
     case kNSPhi:
       norm = UVector3(sinSPhi, -cosSPhi, 0);
@@ -571,7 +589,7 @@ UVector3 USphere::ApproxSurfaceNormal(const UVector3& p) const
     default:          // Should never reach this case ...
 
       UUtils::Exception("USphere::ApproxSurfaceNormal()",
-                        "GeomSolids1002", Warning, 1,
+                        "GeomSolids1002", UWarning, 1,
                         "Undefined side for valid surface normal to solid.");
       break;
   }
@@ -647,12 +665,12 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
 
   // General Precalcs
   //
-  rho2 = p.x * p.x + p.y * p.y;
-  rad2 = rho2 + p.z * p.z;
-  pTheta = std::atan2(std::sqrt(rho2), p.z);
+  rho2 = p.x() * p.x() + p.y() * p.y();
+  rad2 = rho2 + p.z() * p.z();
+  pTheta = std::atan2(std::sqrt(rho2), p.z());
 
-  pDotV2d = p.x * v.x + p.y * v.y;
-  pDotV3d = pDotV2d + p.z * v.z;
+  pDotV2d = p.x() * v.x() + p.y() * v.y();
+  pDotV3d = pDotV2d + p.z() * v.z();
 
   // Theta precalcs
   //
@@ -697,8 +715,8 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
           double fTerm = sd - std::fmod(sd, dRmax);
           sd = fTerm + DistanceToIn(p + fTerm * v, v);
         }
-        xi   = p.x + sd * v.x;
-        yi   = p.y + sd * v.y;
+        xi   = p.x() + sd * v.x();
+        yi   = p.y() + sd * v.y();
         rhoi = std::sqrt(xi * xi + yi * yi);
 
         if (!fFullPhiSphere && rhoi)    // Check phi intersection
@@ -709,7 +727,7 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
           {
             if (!fFullThetaSphere)   // Check theta intersection
             {
-              zi = p.z + sd * v.z;
+              zi = p.z() + sd * v.z();
 
               // rhoi & zi can never both be 0
               // (=>intersect at origin =>fRmax=0)
@@ -730,7 +748,7 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
         {
           if (!fFullThetaSphere)    // Check theta intersection
           {
-            zi = p.z + sd * v.z;
+            zi = p.z() + sd * v.z();
 
             // rhoi & zi can never both be 0
             // (=>intersect at origin => fRmax=0 !)
@@ -768,7 +786,7 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
         // Use inner phi tolerant boundary -> if on tolerant
         // phi boundaries, phi intersect code handles leaving/entering checks
 
-        cosPsi = (p.x * cosCPhi + p.y * sinCPhi) / std::sqrt(rho2);
+        cosPsi = (p.x() * cosCPhi + p.y() * sinCPhi) / std::sqrt(rho2);
 
         if (cosPsi >= cosHDPhiIT)
         {
@@ -827,7 +845,7 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
         // Use inner phi tolerant boundary -> if on tolerant
         // phi boundaries, phi intersect code handles leaving/entering checks
 
-        cosPsi = (p.x * cosCPhi + p.y * sinCPhi) / std::sqrt(rho2);
+        cosPsi = (p.x() * cosCPhi + p.y() * sinCPhi) / std::sqrt(rho2);
         if (cosPsi >= cosHDPhiIT)
         {
           // inside radii, delta r -ve, inside phi
@@ -869,8 +887,8 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
         sd = -pDotV3d + std::sqrt(d2);
         if (sd >= halfRminTolerance)  // It was >= 0 ??
         {
-          xi   = p.x + sd * v.x;
-          yi   = p.y + sd * v.y;
+          xi   = p.x() + sd * v.x();
+          yi   = p.y() + sd * v.y();
           rhoi = std::sqrt(xi * xi + yi * yi);
 
           if (!fFullPhiSphere && rhoi)   // Check phi intersection
@@ -881,7 +899,7 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
             {
               if (!fFullThetaSphere)  // Check theta intersection
               {
-                zi = p.z + sd * v.z;
+                zi = p.z() + sd * v.z();
 
                 // rhoi & zi can never both be 0
                 // (=>intersect at origin =>fRmax=0)
@@ -902,7 +920,7 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
           {
             if (!fFullThetaSphere)   // Check theta intersection
             {
-              zi = p.z + sd * v.z;
+              zi = p.z() + sd * v.z();
 
               // rhoi & zi can never both be 0
               // (=>intersect at origin => fRmax=0 !)
@@ -937,11 +955,11 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
     // First phi surface ('S'tarting phi)
     // Comp = Component in outwards normal dirn
     //
-    Comp = v.x * sinSPhi - v.y * cosSPhi;
+    Comp = v.x() * sinSPhi - v.y() * cosSPhi;
 
     if (Comp < 0)
     {
-      Dist = p.y * cosSPhi - p.x * sinSPhi;
+      Dist = p.y() * cosSPhi - p.x() * sinSPhi;
 
       if (Dist < halfCarTolerance)
       {
@@ -951,18 +969,18 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
         {
           if (sd > 0)
           {
-            xi = p.x + sd * v.x;
-            yi = p.y + sd * v.y;
-            zi = p.z + sd * v.z;
+            xi = p.x() + sd * v.x();
+            yi = p.y() + sd * v.y();
+            zi = p.z() + sd * v.z();
             rhoi2 = xi * xi + yi * yi ;
             radi2 = rhoi2 + zi * zi ;
           }
           else
           {
             sd    = 0;
-            xi    = p.x;
-            yi    = p.y;
-            zi    = p.z;
+            xi    = p.x();
+            yi    = p.y();
+            zi    = p.z();
             rhoi2 = rho2;
             radi2 = rad2;
           }
@@ -1000,11 +1018,11 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
     // Second phi surface ('E'nding phi)
     // Component in outwards normal dirn
 
-    Comp = -(v.x * sinEPhi - v.y * cosEPhi);
+    Comp = -(v.x() * sinEPhi - v.y() * cosEPhi);
 
     if (Comp < 0)
     {
-      Dist = -(p.y * cosEPhi - p.x * sinEPhi);
+      Dist = -(p.y() * cosEPhi - p.x() * sinEPhi);
       if (Dist < halfCarTolerance)
       {
         sd = Dist / Comp;
@@ -1013,18 +1031,18 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
         {
           if (sd > 0)
           {
-            xi    = p.x + sd * v.x;
-            yi    = p.y + sd * v.y;
-            zi    = p.z + sd * v.z;
+            xi    = p.x() + sd * v.x();
+            yi    = p.y() + sd * v.y();
+            zi    = p.z() + sd * v.z();
             rhoi2 = xi * xi + yi * yi ;
             radi2 = rhoi2 + zi * zi ;
           }
           else
           {
             sd    = 0   ;
-            xi    = p.x;
-            yi    = p.y;
-            zi    = p.z;
+            xi    = p.x();
+            yi    = p.y();
+            zi    = p.z();
             rhoi2 = rho2  ;
             radi2 = rad2  ;
           }
@@ -1086,7 +1104,7 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
 
     if (fSTheta)
     {
-      dist2STheta = rho2 - p.z * p.z * tanSTheta2;
+      dist2STheta = rho2 - p.z() * p.z() * tanSTheta2;
     }
     else
     {
@@ -1094,7 +1112,7 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
     }
     if (eTheta < UUtils::kPi)
     {
-      dist2ETheta = rho2 - p.z * p.z * tanETheta2;
+      dist2ETheta = rho2 - p.z() * p.z() * tanETheta2;
     }
     else
     {
@@ -1105,8 +1123,8 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
       // Inside (theta<stheta-tol) stheta cone
       // First root of stheta cone, second if first root -ve
 
-      t1 = 1 - v.z * v.z * (1 + tanSTheta2);
-      t2 = pDotV2d - p.z * v.z * tanSTheta2;
+      t1 = 1 - v.z() * v.z() * (1 + tanSTheta2);
+      t2 = pDotV2d - p.z() * v.z() * tanSTheta2;
       if (t1)
       {
         b = t2 / t1;
@@ -1117,7 +1135,7 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
         {
           d = std::sqrt(d2);
           sd = -b - d;    // First root
-          zi = p.z + sd * v.z;
+          zi = p.z() + sd * v.z();
 
           if ((sd < 0) || (zi * (fSTheta - UUtils::kPi / 2) > 0))
           {
@@ -1125,9 +1143,9 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
           }
           if ((sd >= 0) && (sd < snxt))
           {
-            xi    = p.x + sd * v.x;
-            yi    = p.y + sd * v.y;
-            zi    = p.z + sd * v.z;
+            xi    = p.x() + sd * v.x();
+            yi    = p.y() + sd * v.y();
+            zi    = p.z() + sd * v.z();
             rhoi2 = xi * xi + yi * yi;
             radi2 = rhoi2 + zi * zi;
             if ((radi2 <= tolORMax2)
@@ -1156,8 +1174,8 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
 
       if (eTheta < UUtils::kPi)
       {
-        t1 = 1 - v.z * v.z * (1 + tanETheta2);
-        t2 = pDotV2d - p.z * v.z * tanETheta2;
+        t1 = 1 - v.z() * v.z() * (1 + tanETheta2);
+        t2 = pDotV2d - p.z() * v.z() * tanETheta2;
         if (t1)
         {
           b = t2 / t1;
@@ -1171,9 +1189,9 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
 
             if ((sd >= 0) && (sd < snxt))
             {
-              xi    = p.x + sd * v.x;
-              yi    = p.y + sd * v.y;
-              zi    = p.z + sd * v.z;
+              xi    = p.x() + sd * v.x();
+              yi    = p.y() + sd * v.y();
+              zi    = p.z() + sd * v.z();
               rhoi2 = xi * xi + yi * yi;
               radi2 = rhoi2 + zi * zi;
 
@@ -1205,8 +1223,8 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
       // Inside (theta > etheta+tol) e-theta cone
       // First root of etheta cone, second if first root 'imaginary'
 
-      t1 = 1 - v.z * v.z * (1 + tanETheta2);
-      t2 = pDotV2d - p.z * v.z * tanETheta2;
+      t1 = 1 - v.z() * v.z() * (1 + tanETheta2);
+      t2 = pDotV2d - p.z() * v.z() * tanETheta2;
       if (t1)
       {
         b = t2 / t1;
@@ -1217,7 +1235,7 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
         {
           d = std::sqrt(d2);
           sd = -b - d;    // First root
-          zi = p.z + sd * v.z;
+          zi = p.z() + sd * v.z();
 
           if ((sd < 0) || (zi * (eTheta - UUtils::kPi / 2) > 0))
           {
@@ -1225,9 +1243,9 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
           }
           if ((sd >= 0) && (sd < snxt))
           {
-            xi    = p.x + sd * v.x;
-            yi    = p.y + sd * v.y;
-            zi    = p.z + sd * v.z;
+            xi    = p.x() + sd * v.x();
+            yi    = p.y() + sd * v.y();
+            zi    = p.z() + sd * v.z();
             rhoi2 = xi * xi + yi * yi;
             radi2 = rhoi2 + zi * zi;
 
@@ -1257,8 +1275,8 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
 
       if (fSTheta)
       {
-        t1 = 1 - v.z * v.z * (1 + tanSTheta2);
-        t2 = pDotV2d - p.z * v.z * tanSTheta2;
+        t1 = 1 - v.z() * v.z() * (1 + tanSTheta2);
+        t2 = pDotV2d - p.z() * v.z() * tanSTheta2;
         if (t1)
         {
           b = t2 / t1;
@@ -1272,9 +1290,9 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
 
             if ((sd >= 0) && (sd < snxt))
             {
-              xi    = p.x + sd * v.x;
-              yi    = p.y + sd * v.y;
-              zi    = p.z + sd * v.z;
+              xi    = p.x() + sd * v.x();
+              yi    = p.y() + sd * v.y();
+              zi    = p.z() + sd * v.z();
               rhoi2 = xi * xi + yi * yi;
               radi2 = rhoi2 + zi * zi;
 
@@ -1307,14 +1325,14 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
       // If entering through solid [r,phi] => 0 to in
       // else try 2nd root
 
-      t2 = pDotV2d - p.z * v.z * tanSTheta2;
+      t2 = pDotV2d - p.z() * v.z() * tanSTheta2;
       if ((t2 >= 0 && tolIRMin2 < rad2 && rad2 < tolIRMax2 && fSTheta < UUtils::kPi / 2)
           || (t2 < 0  && tolIRMin2 < rad2 && rad2 < tolIRMax2 && fSTheta > UUtils::kPi / 2)
-          || (v.z < 0 && tolIRMin2 < rad2 && rad2 < tolIRMax2 && fSTheta == UUtils::kPi / 2))
+          || (v.z() < 0 && tolIRMin2 < rad2 && rad2 < tolIRMax2 && fSTheta == UUtils::kPi / 2))
       {
         if (!fFullPhiSphere && rho2)  // Check phi intersection
         {
-          cosPsi = (p.x * cosCPhi + p.y * sinCPhi) / std::sqrt(rho2);
+          cosPsi = (p.x() * cosCPhi + p.y() * sinCPhi) / std::sqrt(rho2);
           if (cosPsi >= cosHDPhiIT)
           {
             return 0;
@@ -1328,7 +1346,7 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
 
       // Not entering immediately/travelling through
 
-      t1 = 1 - v.z * v.z * (1 + tanSTheta2);
+      t1 = 1 - v.z() * v.z() * (1 + tanSTheta2);
       if (t1)
       {
         b = t2 / t1;
@@ -1342,9 +1360,9 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
           if ((sd >= halfCarTolerance) && (sd < snxt) && (fSTheta < UUtils::kPi / 2))
           {
             // ^^^^^^^^^^^^^^^^^^^^^ shouldn't it be >=0 instead ?
-            xi    = p.x + sd * v.x;
-            yi    = p.y + sd * v.y;
-            zi    = p.z + sd * v.z;
+            xi    = p.x() + sd * v.x();
+            yi    = p.y() + sd * v.y();
+            zi    = p.z() + sd * v.z();
             rhoi2 = xi * xi + yi * yi;
             radi2 = rhoi2 + zi * zi;
 
@@ -1376,18 +1394,18 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
       // If entering through solid [r,phi] => 0 to in
       // else try 2nd root
 
-      t2 = pDotV2d - p.z * v.z * tanETheta2;
+      t2 = pDotV2d - p.z() * v.z() * tanETheta2;
 
       if (((t2 < 0) && (eTheta < UUtils::kPi / 2)
            && (tolIRMin2 < rad2) && (rad2 < tolIRMax2))
           || ((t2 >= 0) && (eTheta > UUtils::kPi / 2)
               && (tolIRMin2 < rad2) && (rad2 < tolIRMax2))
-          || ((v.z > 0) && (eTheta == UUtils::kPi / 2)
+          || ((v.z() > 0) && (eTheta == UUtils::kPi / 2)
               && (tolIRMin2 < rad2) && (rad2 < tolIRMax2)))
       {
         if (!fFullPhiSphere && rho2)   // Check phi intersection
         {
-          cosPsi = (p.x * cosCPhi + p.y * sinCPhi) / std::sqrt(rho2);
+          cosPsi = (p.x() * cosCPhi + p.y() * sinCPhi) / std::sqrt(rho2);
           if (cosPsi >= cosHDPhiIT)
           {
             return 0;
@@ -1401,7 +1419,7 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
 
       // Not entering immediately/travelling through
 
-      t1 = 1 - v.z * v.z * (1 + tanETheta2);
+      t1 = 1 - v.z() * v.z() * (1 + tanETheta2);
       if (t1)
       {
         b = t2 / t1;
@@ -1416,9 +1434,9 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
           if ((sd >= halfCarTolerance)
               && (sd < snxt) && (eTheta > UUtils::kPi / 2))
           {
-            xi    = p.x + sd * v.x;
-            yi    = p.y + sd * v.y;
-            zi    = p.z + sd * v.z;
+            xi    = p.x() + sd * v.x();
+            yi    = p.y() + sd * v.y();
+            zi    = p.z() + sd * v.z();
             rhoi2 = xi * xi + yi * yi;
             radi2 = rhoi2 + zi * zi;
 
@@ -1448,8 +1466,8 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
       // stheta+tol<theta<etheta-tol
       // For BOTH stheta & etheta check 2nd root for validity [r,phi]
 
-      t1 = 1 - v.z * v.z * (1 + tanSTheta2);
-      t2 = pDotV2d - p.z * v.z * tanSTheta2;
+      t1 = 1 - v.z() * v.z() * (1 + tanSTheta2);
+      t2 = pDotV2d - p.z() * v.z() * tanSTheta2;
       if (t1)
       {
         b = t2 / t1;
@@ -1463,9 +1481,9 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
 
           if ((sd >= 0) && (sd < snxt))
           {
-            xi    = p.x + sd * v.x;
-            yi    = p.y + sd * v.y;
-            zi    = p.z + sd * v.z;
+            xi    = p.x() + sd * v.x();
+            yi    = p.y() + sd * v.y();
+            zi    = p.z() + sd * v.z();
             rhoi2 = xi * xi + yi * yi;
             radi2 = rhoi2 + zi * zi;
 
@@ -1489,8 +1507,8 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
           }
         }
       }
-      t1 = 1 - v.z * v.z * (1 + tanETheta2);
-      t2 = pDotV2d - p.z * v.z * tanETheta2;
+      t1 = 1 - v.z() * v.z() * (1 + tanETheta2);
+      t2 = pDotV2d - p.z() * v.z() * tanETheta2;
       if (t1)
       {
         b = t2 / t1;
@@ -1504,9 +1522,9 @@ double USphere::DistanceToIn(const UVector3& p, const UVector3& v, double /*aPst
 
           if ((sd >= 0) && (sd < snxt))
           {
-            xi    = p.x + sd * v.x;
-            yi    = p.y + sd * v.y;
-            zi    = p.z + sd * v.z;
+            xi    = p.x() + sd * v.x();
+            yi    = p.y() + sd * v.y();
+            zi    = p.z() + sd * v.z();
             rhoi2 = xi * xi + yi * yi;
             radi2 = rhoi2 + zi * zi;
 
@@ -1549,8 +1567,8 @@ double USphere::SafetyFromOutside(const UVector3& p, bool /*aAccurate*/) const
   double rho2, rds, rho;
   double cosPsi;
   double pTheta, dTheta1, dTheta2;
-  rho2 = p.x * p.x + p.y * p.y;
-  rds = std::sqrt(rho2 + p.z * p.z);
+  rho2 = p.x() * p.x() + p.y() * p.y();
+  rds = std::sqrt(rho2 + p.z() * p.z());
   rho = std::sqrt(rho2);
 
   //
@@ -1581,18 +1599,18 @@ double USphere::SafetyFromOutside(const UVector3& p, bool /*aAccurate*/) const
   {
     // Psi=angle from central phi to point
     //
-    cosPsi = (p.x * cosCPhi + p.y * sinCPhi) / rho;
+    cosPsi = (p.x() * cosCPhi + p.y() * sinCPhi) / rho;
     if (cosPsi < std::cos(hDPhi))
     {
       // Point lies outside phi range
       //
-      if ((p.y * cosCPhi - p.x * sinCPhi) <= 0)
+      if ((p.y() * cosCPhi - p.x() * sinCPhi) <= 0)
       {
-        safePhi = std::fabs(p.x * sinSPhi - p.y * cosSPhi);
+        safePhi = std::fabs(p.x() * sinSPhi - p.y() * cosSPhi);
       }
       else
       {
-        safePhi = std::fabs(p.x * sinEPhi - p.y * cosEPhi);
+        safePhi = std::fabs(p.x() * sinEPhi - p.y() * cosEPhi);
       }
       if (safePhi > safe)
       {
@@ -1605,7 +1623,7 @@ double USphere::SafetyFromOutside(const UVector3& p, bool /*aAccurate*/) const
   //
   if ((rds != 0.0) && (!fFullThetaSphere))
   {
-    pTheta = std::acos(p.z / rds);
+    pTheta = std::acos(p.z() / rds);
     if (pTheta < 0)
     {
       pTheta += UUtils::kPi;
@@ -1679,11 +1697,11 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
 
   // General Precalcs
   //
-  rho2 = p.x * p.x + p.y * p.y;
-  rad2 = rho2 + p.z * p.z;
+  rho2 = p.x() * p.x() + p.y() * p.y();
+  rad2 = rho2 + p.z() * p.z();
 
-  pDotV2d = p.x * v.x + p.y * v.y;
-  pDotV3d = pDotV2d + p.z * v.z;
+  pDotV2d = p.x() * v.x() + p.y() * v.y();
+  pDotV3d = pDotV2d + p.z() * v.z();
 
   // Radial Intersections from USphere::DistanceToIn
   //
@@ -1723,7 +1741,7 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
         // not re-entering
       {
         validNorm = true;
-        n        = UVector3(p.x / fRmax, p.y / fRmax, p.z / fRmax);
+        n        = UVector3(p.x() / fRmax, p.y() / fRmax, p.z() / fRmax);
         return snxt = 0;
       }
       else
@@ -1748,7 +1766,7 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
             && (d2 >= fRminTolerance * fRmin) && (pDotV3d < 0))
         {
           validNorm = false;  // Rmin surface is concave
-          n        = UVector3(-p.x / fRmin, -p.y / fRmin, -p.z / fRmin);
+          n        = UVector3(-p.x() / fRmin, -p.y() / fRmin, -p.z() / fRmin);
           return snxt = 0;
         }
         else
@@ -1798,42 +1816,42 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
     {
       if (std::fabs(tanSTheta) > 5. / kAngTolerance) // kons is plane z=0
       {
-        if (v.z > 0.)
+        if (v.z() > 0.)
         {
-          if (std::fabs(p.z) <= halfTolerance)
+          if (std::fabs(p.z()) <= halfTolerance)
           {
             validNorm = true;
             n = UVector3(0., 0., 1.);
             return snxt = 0;
           }
-          stheta    = -p.z / v.z;
+          stheta    = -p.z() / v.z();
           sidetheta = kSTheta;
         }
       }
       else // kons is not plane
       {
-        t1          = 1 - v.z * v.z * (1 + tanSTheta2);
-        t2          = pDotV2d - p.z * v.z * tanSTheta2; // ~vDotN if p on cons
-        dist2STheta = rho2 - p.z * p.z * tanSTheta2; // t3
+        t1          = 1 - v.z() * v.z() * (1 + tanSTheta2);
+        t2          = pDotV2d - p.z() * v.z() * tanSTheta2; // ~vDotN if p on cons
+        dist2STheta = rho2 - p.z() * p.z() * tanSTheta2; // t3
 
-        distTheta = std::sqrt(rho2) - p.z * tanSTheta;
+        distTheta = std::sqrt(rho2) - p.z() * tanSTheta;
 
         if (std::fabs(t1) < halfAngTolerance) // 1st order equation,
         {
           // v parallel to kons
-          if (v.z > 0.)
+          if (v.z() > 0.)
           {
             if (std::fabs(distTheta) < halfTolerance) // p on surface
             {
-              if ((fSTheta < UUtils::kPi / 2) && (p.z > 0.))
+              if ((fSTheta < UUtils::kPi / 2) && (p.z() > 0.))
               {
                 validNorm = false;
                 if (rho2)
               {
                 rhoSecTheta = std::sqrt(rho2 * (1 + tanSTheta2));
 
-                n = UVector3(p.x / rhoSecTheta,
-                             p.y / rhoSecTheta,
+                n = UVector3(p.x() / rhoSecTheta,
+                             p.y() / rhoSecTheta,
                              -std::sin(fSTheta));
               }
               else
@@ -1842,15 +1860,15 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
               }
                 return snxt = 0.;
               }
-              else if ((fSTheta > UUtils::kPi / 2) && (p.z <= 0))
+              else if ((fSTheta > UUtils::kPi / 2) && (p.z() <= 0))
               {
                 validNorm = true;
                 if (rho2)
                 {
                   rhoSecTheta = std::sqrt(rho2 * (1 + tanSTheta2));
 
-                  n = UVector3(p.x / rhoSecTheta,
-                               p.y / rhoSecTheta,
+                  n = UVector3(p.x() / rhoSecTheta,
+                               p.y() / rhoSecTheta,
                                std::sin(fSTheta));
                 }
                 else n = UVector3(0., 0., 1.);
@@ -1872,8 +1890,8 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
               {
                 rhoSecTheta = std::sqrt(rho2 * (1 + tanSTheta2));
 
-                n = UVector3(p.x / rhoSecTheta,
-                             p.y / rhoSecTheta,
+                n = UVector3(p.x() / rhoSecTheta,
+                             p.y() / rhoSecTheta,
                              std::sin(fSTheta));
               }
               else
@@ -1882,15 +1900,15 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
               }
               return snxt = 0.;
             }
-            else if ((fSTheta < UUtils::kPi / 2) && (t2 < 0.) && (p.z >= 0.)) // leave
+            else if ((fSTheta < UUtils::kPi / 2) && (t2 < 0.) && (p.z() >= 0.)) // leave
             {
               validNorm = false;
               if (rho2)
               {
                 rhoSecTheta = std::sqrt(rho2 * (1 + tanSTheta2));
 
-                n = UVector3(p.x / rhoSecTheta,
-                             p.y / rhoSecTheta,
+                n = UVector3(p.x() / rhoSecTheta,
+                             p.y() / rhoSecTheta,
                              -std::sin(fSTheta));
               }
               else
@@ -1914,11 +1932,11 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
               sd = -b - d;         // First root
 
               if (((std::fabs(sd) < halfTolerance) && (t2 < 0.))
-                  || (sd < 0.) || ((sd > 0.) && (p.z + sd * v.z > 0.)))
+                  || (sd < 0.) || ((sd > 0.) && (p.z() + sd * v.z() > 0.)))
               {
                 sd = -b + d; // 2nd root
               }
-              if ((sd > halfTolerance) && (p.z + sd * v.z <= 0.))
+              if ((sd > halfTolerance) && (p.z() + sd * v.z() <= 0.))
               {
                 stheta    = sd;
                 sidetheta = kSTheta;
@@ -1929,11 +1947,11 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
               sd = -b - d;         // First root
 
               if (((std::fabs(sd) < halfTolerance) && (t2 >= 0.))
-                  || (sd < 0.) || ((sd > 0.) && (p.z + sd * v.z < 0.)))
+                  || (sd < 0.) || ((sd > 0.) && (p.z() + sd * v.z() < 0.)))
               {
                 sd = -b + d; // 2nd root
               }
-              if ((sd > halfTolerance) && (p.z + sd * v.z >= 0.))
+              if ((sd > halfTolerance) && (p.z() + sd * v.z() >= 0.))
               {
                 stheta    = sd;
                 sidetheta = kSTheta;
@@ -1947,15 +1965,15 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
     {
       if (std::fabs(tanETheta) > 5. / kAngTolerance) // kons is plane z=0
       {
-        if (v.z < 0.)
+        if (v.z() < 0.)
         {
-          if (std::fabs(p.z) <= halfTolerance)
+          if (std::fabs(p.z()) <= halfTolerance)
           {
             validNorm = true;
             n = UVector3(0., 0., -1.);
             return snxt = 0;
           }
-          sd = -p.z / v.z;
+          sd = -p.z() / v.z();
 
           if (sd < stheta)
           {
@@ -1966,27 +1984,27 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
       }
       else // kons is not plane
       {
-        t1          = 1 - v.z * v.z * (1 + tanETheta2);
-        t2          = pDotV2d - p.z * v.z * tanETheta2; // ~vDotN if p on cons
-        dist2ETheta = rho2 - p.z * p.z * tanETheta2; // t3
+        t1          = 1 - v.z() * v.z() * (1 + tanETheta2);
+        t2          = pDotV2d - p.z() * v.z() * tanETheta2; // ~vDotN if p on cons
+        dist2ETheta = rho2 - p.z() * p.z() * tanETheta2; // t3
 
-        distTheta = std::sqrt(rho2) - p.z * tanETheta;
+        distTheta = std::sqrt(rho2) - p.z() * tanETheta;
 
         if (std::fabs(t1) < halfAngTolerance) // 1st order equation,
         {
           // v parallel to kons
-          if (v.z < 0.)
+          if (v.z() < 0.)
           {
             if (std::fabs(distTheta) < halfTolerance) // p on surface
             {
-              if ((eTheta > UUtils::kPi / 2) && (p.z < 0.))
+              if ((eTheta > UUtils::kPi / 2) && (p.z() < 0.))
               {
                 validNorm = false;
                  if (rho2)
                 {
                   rhoSecTheta = std::sqrt(rho2 * (1 + tanETheta2));
-                  n = UVector3(p.x / rhoSecTheta,
-                               p.y / rhoSecTheta,
+                  n = UVector3(p.x() / rhoSecTheta,
+                               p.y() / rhoSecTheta,
                                sinETheta);
                 }
                 else
@@ -1995,14 +2013,14 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
                 }
                 return snxt = 0.;
               }
-              else if ((eTheta < UUtils::kPi / 2) && (p.z >= 0))
+              else if ((eTheta < UUtils::kPi / 2) && (p.z() >= 0))
               {
                 validNorm = true;
                 if (rho2)
                 {
                   rhoSecTheta = std::sqrt(rho2 * (1 + tanETheta2));
-                  n = UVector3(p.x / rhoSecTheta,
-                               p.y / rhoSecTheta,
+                  n = UVector3(p.x() / rhoSecTheta,
+                               p.y() / rhoSecTheta,
                                -sinETheta);
                 }
                 else
@@ -2031,22 +2049,22 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
               if (rho2)
               {
                 rhoSecTheta = std::sqrt(rho2 * (1 + tanETheta2));
-                n = UVector3(p.x / rhoSecTheta,
-                             p.y / rhoSecTheta,
+                n = UVector3(p.x() / rhoSecTheta,
+                             p.y() / rhoSecTheta,
                              -sinETheta);
               }
               else n = UVector3(0., 0., -1.);
               return snxt = 0.;
             }
             else if ((eTheta > UUtils::kPi / 2)
-                     && (t2 < 0.) && (p.z <= 0.)) // leave
+                     && (t2 < 0.) && (p.z() <= 0.)) // leave
             {
               validNorm = false;
                if (rho2)
               {
                 rhoSecTheta = std::sqrt(rho2 * (1 + tanETheta2));
-                n = -UVector3(p.x / rhoSecTheta,
-                             p.y / rhoSecTheta,
+                n = -UVector3(p.x() / rhoSecTheta,
+                             p.y() / rhoSecTheta,
                              sinETheta);
               }
               else n = UVector3(0., 0., -1.);
@@ -2085,11 +2103,11 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
               sd = -b - d;         // First root
 
               if (((std::fabs(sd) < halfTolerance) && (t2 >= 0.))
-                  || (sd < 0.) || ((sd > 0.) && (p.z + sd * v.z > 0.)))
+                  || (sd < 0.) || ((sd > 0.) && (p.z() + sd * v.z() > 0.)))
               {
                 sd = -b + d; // 2nd root
               }
-              if ((sd > halfTolerance) && (p.z + sd * v.z <= 0.))
+              if ((sd > halfTolerance) && (p.z() + sd * v.z() <= 0.))
               {
                 if (sd < stheta)
                 {
@@ -2109,17 +2127,17 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
 
   if (!fFullPhiSphere)
   {
-    if (p.x || p.y) // Check if on z axis (rho not needed later)
+    if (p.x() || p.y()) // Check if on z axis (rho not needed later)
     {
       // pDist -ve when inside
 
-      pDistS = p.x * sinSPhi - p.y * cosSPhi;
-      pDistE = -p.x * sinEPhi + p.y * cosEPhi;
+      pDistS = p.x() * sinSPhi - p.y() * cosSPhi;
+      pDistE = -p.x() * sinEPhi + p.y() * cosEPhi;
 
       // Comp -ve when in direction of outwards normal
 
-      compS  = -sinSPhi * v.x + cosSPhi * v.y;
-      compE  =  sinEPhi * v.x - cosEPhi * v.y;
+      compS  = -sinSPhi * v.x() + cosSPhi * v.y();
+      compE  =  sinEPhi * v.x() - cosEPhi * v.y();
       sidephi = kNull;
 
       if ((pDistS <= 0) && (pDistE <= 0))
@@ -2129,14 +2147,14 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
         if (compS < 0)
         {
           sphi = pDistS / compS;
-          xi   = p.x + sphi * v.x;
-          yi   = p.y + sphi * v.y;
+          xi   = p.x() + sphi * v.x();
+          yi   = p.y() + sphi * v.y();
 
           // Check intersection with correct half-plane (if not -> no intersect)
           //
           if ((std::fabs(xi) <= VUSolid::Tolerance()) && (std::fabs(yi) <= VUSolid::Tolerance()))
           {
-            vphi = std::atan2(v.y, v.x);
+            vphi = std::atan2(v.y(), v.x());
             sidephi = kSPhi;
             if (((fSPhi - halfAngTolerance) <= vphi)
                 && ((ePhi + halfAngTolerance) >= vphi))
@@ -2167,8 +2185,8 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
           sphi2 = pDistE / compE;
           if (sphi2 < sphi) // Only check further if < starting phi intersection
           {
-            xi = p.x + sphi2 * v.x;
-            yi = p.y + sphi2 * v.y;
+            xi = p.x() + sphi2 * v.x();
+            yi = p.y() + sphi2 * v.y();
 
             // Check intersection with correct half-plane
             //
@@ -2176,7 +2194,7 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
             {
               // Leaving via ending phi
               //
-              vphi = std::atan2(v.y, v.x);
+              vphi = std::atan2(v.y(), v.x());
 
               if (!((fSPhi - halfAngTolerance <= vphi)
                     && (fSPhi + fDPhi + halfAngTolerance >= vphi)))
@@ -2252,15 +2270,15 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
           if (compE < 0)
           {
             sphi = pDistE / compE;
-            xi   = p.x + sphi * v.x;
-            yi   = p.y + sphi * v.y;
+            xi   = p.x() + sphi * v.x();
+            yi   = p.y() + sphi * v.y();
 
             // Check intersection in correct half-plane
             // (if not -> not leaving phi extent)
             //
             if ((std::fabs(xi) <= VUSolid::Tolerance()) && (std::fabs(yi) <= VUSolid::Tolerance()))
             {
-              vphi = std::atan2(v.y, v.x);
+              vphi = std::atan2(v.y(), v.x());
               sidephi = kSPhi;
               if (((fSPhi - halfAngTolerance) <= vphi)
                   && ((ePhi + halfAngTolerance) >= vphi))
@@ -2293,15 +2311,15 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
             if (compE < 0)
             {
               sphi = pDistE / compE;
-              xi   = p.x + sphi * v.x;
-              yi   = p.y + sphi * v.y;
+              xi   = p.x() + sphi * v.x();
+              yi   = p.y() + sphi * v.y();
 
               // Check intersection in correct half-plane
               // (if not -> remain in extent)
               //
               if ((std::fabs(xi) <= VUSolid::Tolerance()) && (std::fabs(yi) <= VUSolid::Tolerance()))
               {
-                vphi = std::atan2(v.y, v.x);
+                vphi = std::atan2(v.y(), v.x());
                 sidephi = kSPhi;
                 if (((fSPhi - halfAngTolerance) <= vphi)
                     && ((ePhi + halfAngTolerance) >= vphi))
@@ -2337,15 +2355,15 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
           if (compS < 0)
           {
             sphi = pDistS / compS;
-            xi = p.x + sphi * v.x;
-            yi = p.y + sphi * v.y;
+            xi = p.x() + sphi * v.x();
+            yi = p.y() + sphi * v.y();
 
             // Check intersection in correct half-plane
             // (if not -> not leaving phi extent)
             //
             if ((std::fabs(xi) <= VUSolid::Tolerance()) && (std::fabs(yi) <= VUSolid::Tolerance()))
             {
-              vphi = std::atan2(v.y, v.x);
+              vphi = std::atan2(v.y(), v.x());
               sidephi = kSPhi;
               if (((fSPhi - halfAngTolerance) <= vphi)
                   && ((ePhi + halfAngTolerance) >= vphi))
@@ -2378,15 +2396,15 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
             if (compS < 0)
             {
               sphi = pDistS / compS;
-              xi   = p.x + sphi * v.x;
-              yi   = p.y + sphi * v.y;
+              xi   = p.x() + sphi * v.x();
+              yi   = p.y() + sphi * v.y();
 
               // Check intersection in correct half-plane
               // (if not -> remain in extent)
               //
               if ((std::fabs(xi) <= VUSolid::Tolerance()) && (std::fabs(yi) <= VUSolid::Tolerance()))
               {
-                vphi = std::atan2(v.y, v.x);
+                vphi = std::atan2(v.y(), v.x());
                 sidephi = kSPhi;
                 if (((fSPhi - halfAngTolerance) <= vphi)
                     && ((ePhi + halfAngTolerance) >= vphi))
@@ -2421,9 +2439,9 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
       // On z axis + travel not || to z axis -> if phi of vector direction
       // within phi of shape, Step limited by rmax, else Step =0
 
-      if (v.x || v.y)
+      if (v.x() || v.y())
       {
-        vphi = std::atan2(v.y, v.x);
+        vphi = std::atan2(v.y(), v.x());
         if ((fSPhi - halfAngTolerance < vphi) && (vphi < ePhi + halfAngTolerance))
         {
           sphi = UUtils::Infinity();
@@ -2454,17 +2472,17 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
   switch (side)
   {
     case kRMax:
-      xi = p.x + snxt * v.x;
-      yi = p.y + snxt * v.y;
-      zi = p.z + snxt * v.z;
+      xi = p.x() + snxt * v.x();
+      yi = p.y() + snxt * v.y();
+      zi = p.z() + snxt * v.z();
       n = UVector3(xi / fRmax, yi / fRmax, zi / fRmax);
       validNorm = true;
       break;
 
     case kRMin:
-      xi = p.x + snxt * v.x;
-      yi = p.y + snxt * v.y;
-      zi = p.z + snxt * v.z;
+      xi = p.x() + snxt * v.x();
+      yi = p.y() + snxt * v.y();
+      zi = p.z() + snxt * v.z();
       n = UVector3(-xi / fRmin, -yi / fRmin, -zi / fRmin);
       validNorm = false; // Rmin is concave
       break;
@@ -2503,8 +2521,8 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
       }
       else if (fSTheta > UUtils::kPi / 2)
       {
-        xi = p.x + snxt * v.x;
-        yi = p.y + snxt * v.y;
+        xi = p.x() + snxt * v.x();
+        yi = p.y() + snxt * v.y();
         rho2 = xi * xi + yi * yi;
         if (rho2)
         {
@@ -2520,8 +2538,8 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
       }
       else
       {
-       xi = p.x + snxt * v.x;
-        yi = p.y + snxt * v.y;
+       xi = p.x() + snxt * v.x();
+        yi = p.y() + snxt * v.y();
         rho2 = xi * xi + yi * yi;
         if (rho2)
         {
@@ -2546,8 +2564,8 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
       }
       else if (eTheta < UUtils::kPi / 2)
       {
-        xi = p.x + snxt * v.x;
-        yi = p.y + snxt * v.y;
+        xi = p.x() + snxt * v.x();
+        yi = p.y() + snxt * v.y();
         rho2 = xi * xi + yi * yi;
         if (rho2)
         {
@@ -2563,8 +2581,8 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
       }
       else
       {
-        xi = p.x + snxt * v.x;
-        yi = p.y + snxt * v.y;
+        xi = p.x() + snxt * v.x();
+        yi = p.y() + snxt * v.y();
         rho2 = xi * xi + yi * yi;
         if (rho2)
         {
@@ -2588,18 +2606,18 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
       message << "Undefined side for valid surface normal to solid."
               << std::endl
               << "Position:"  << std::endl << std::endl
-              << "p.x = "  << p.x << " mm" << std::endl
-              << "p.y = "  << p.y << " mm" << std::endl
-              << "p.z = "  << p.z << " mm" << std::endl << std::endl
+              << "p.x = "  << p.x() << " mm" << std::endl
+              << "p.y = "  << p.y() << " mm" << std::endl
+              << "p.z = "  << p.z() << " mm" << std::endl << std::endl
               << "Direction:" << std::endl << std::endl
-              << "v.x = "  << v.x << std::endl
-              << "v.y = "  << v.y << std::endl
-              << "v.z = "  << v.z << std::endl << std::endl
+              << "v.x = "  << v.x() << std::endl
+              << "v.y = "  << v.y() << std::endl
+              << "v.z = "  << v.z() << std::endl << std::endl
               << "Proposed distance :" << std::endl << std::endl
               << "snxt = "    << snxt << " mm" << std::endl;
       message.precision(oldprc);
       UUtils::Exception("USphere::DistanceToOut(p,v,..)",
-                        "GeomSolids1002", Warning, 1, message.str().c_str());
+                        "GeomSolids1002", UWarning, 1, message.str().c_str());
       break;
   }
   if (snxt == UUtils::Infinity())
@@ -2610,20 +2628,20 @@ double USphere::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n,
     int oldprc = message.precision(16);
     message << "Logic error: snxt = UUtils::Infinity() ???" << std::endl
             << "Position:"  << std::endl << std::endl
-            << "p.x = "  << p.x << " mm" << std::endl
-            << "p.y = "  << p.y << " mm" << std::endl
-            << "p.z = "  << p.z << " mm" << std::endl << std::endl
-            << "Rp = " << std::sqrt(p.x * p.x + p.y * p.y + p.z * p.z)
+            << "p.x = "  << p.x() << " mm" << std::endl
+            << "p.y = "  << p.y() << " mm" << std::endl
+            << "p.z = "  << p.z() << " mm" << std::endl << std::endl
+            << "Rp = " << std::sqrt(p.x() * p.x() + p.y() * p.y() + p.z() * p.z())
             << " mm" << std::endl << std::endl
             << "Direction:" << std::endl << std::endl
-            << "v.x = "  << v.x << std::endl
-            << "v.y = "  << v.y << std::endl
-            << "v.z = "  << v.z << std::endl << std::endl
+            << "v.x = "  << v.x() << std::endl
+            << "v.y = "  << v.y() << std::endl
+            << "v.z = "  << v.z() << std::endl << std::endl
             << "Proposed distance :" << std::endl << std::endl
             << "snxt = "    << snxt << " mm" << std::endl;
     message.precision(oldprc);
     UUtils::Exception("USphere::DistanceToOut(p,v,..)",
-                      "GeomSolids1002", Warning, 1, message.str().c_str());
+                      "GeomSolids1002", UWarning, 1, message.str().c_str());
   }
 
   return snxt;
@@ -2637,9 +2655,9 @@ double USphere::SafetyFromInside(const UVector3& p, bool /*aAccurate*/) const
 {
   double safe = 0.0, safeRMin, safeRMax, safePhi, safeTheta;
   double rho2, rds, rho;
-  double pTheta, dTheta1, dTheta2;
-  rho2 = p.x * p.x + p.y * p.y;
-  rds = std::sqrt(rho2 + p.z * p.z);
+  double pTheta, dTheta1 = UUtils::Infinity(),dTheta2 = UUtils::Infinity();
+  rho2 = p.x() * p.x() + p.y() * p.y();
+  rds = std::sqrt(rho2 + p.z() * p.z());
   rho = std::sqrt(rho2);
 
 #ifdef UDEBUG
@@ -2649,85 +2667,76 @@ double USphere::SafetyFromInside(const UVector3& p, bool /*aAccurate*/) const
     cout << std::endl;
 
     cout << "Position:"  << std::endl << std::endl;
-    cout << "p.x = "  << p.x << " mm" << std::endl;
-    cout << "p.y = "  << p.y << " mm" << std::endl;
-    cout << "p.z = "  << p.z << " mm" << std::endl << std::endl;
+    cout << "p.x = "  << p.x() << " mm" << std::endl;
+    cout << "p.y = "  << p.y() << " mm" << std::endl;
+    cout << "p.z = "  << p.z() << " mm" << std::endl << std::endl;
     cout.precision(old_prc);
     UUtils::Exception("USphere::DistanceToOut(p)",
-                      "GeomSolids1002", Warning, 1, "Point p is outside !?");
+                      "GeomSolids1002", UWarning, 1, "Point p is outside !?");
   }
 #endif
 
-  //
   // Distance to r shells
   //
+  safeRMax = fRmax-rds;
+  safe = safeRMax;  
   if (fRmin)
   {
-    safeRMin = rds - fRmin;
-    safeRMax = fRmax - rds;
-    if (safeRMin < safeRMax)
-    {
-      safe = safeRMin;
-    }
-    else
-    {
-      safe = safeRMax;
-    }
-  }
-  else
-  {
-    safe = fRmax - rds;
+     safeRMin = rds-fRmin;
+     safe = std::min( safeRMin, safeRMax ); 
   }
 
-  //
   // Distance to phi extent
   //
-  if (!fFullPhiSphere && rho)
+  if ( !fFullPhiSphere )
   {
-    if ((p.y * cosCPhi - p.x * sinCPhi) <= 0)
-    {
-      safePhi = -(p.x * sinSPhi - p.y * cosSPhi);
-    }
-    else
-    {
-      safePhi = (p.x * sinEPhi - p.y * cosEPhi);
-    }
-    if (safePhi < safe)
-    {
-      safe = safePhi;
-    }
+     if (rho>0.0)
+     {
+        if ((p.y()*cosCPhi-p.x()*sinCPhi)<=0)
+        {
+           safePhi=-(p.x()*sinSPhi-p.y()*cosSPhi);
+        }
+        else
+        {
+           safePhi=(p.x()*sinEPhi-p.y()*cosEPhi);
+        }
+     }
+     else
+     {
+        safePhi = 0.0;  // Distance to both Phi surfaces (extended)
+     }
+     // Both cases above can be improved - in case fRMin > 0.0
+     //  although it may be costlier (good for precise, not fast version)
+     
+     safe= std::min(safe, safePhi);
   }
 
-  //
   // Distance to Theta extent
   //
-  if ((rds)&&(!fFullThetaSphere))
+  if ( !fFullThetaSphere )
   {
-    pTheta = std::acos(p.z / rds);
-    if (pTheta < 0)
-    {
-      pTheta += UUtils::kPi;
-    }
-    dTheta1 = pTheta - fSTheta;
-    dTheta2 = eTheta - pTheta;
-    if (dTheta1 < dTheta2)
+    if( rds > 0.0 )
     {
-      safeTheta = rds * std::sin(dTheta1);
+       pTheta=std::acos(p.z()/rds);
+       if (pTheta<0) { pTheta+=UUtils::kPi; }
+       if(fSTheta>0.)
+       { dTheta1=pTheta-fSTheta;}
+       if(eTheta<UUtils::kPi)
+       { dTheta2=eTheta-pTheta;}
+      
+       safeTheta=rds*std::sin(std::min(dTheta1, dTheta2) );
     }
     else
     {
-      safeTheta = rds * std::sin(dTheta2);
-    }
-    if (safe > safeTheta)
-    {
-      safe = safeTheta;
+       safeTheta= 0.0;
+         // An improvement will be to return negative answer if outside (TODO)
     }
+    safe = std::min( safe, safeTheta );
   }
 
-  if (safe < 0)
-  {
-    safe = 0;
-  }
+  if (safe<0.0) { safe=0; }
+    // An improvement to return negative answer if outside (TODO)
+  
   return safe;
 }
 
@@ -2857,7 +2866,7 @@ USphere::CreateRotatedVertices(const UAffineTransform& pTransform,
   {
 
   UUtils::Exception("USphere::CreateRotatedVertices()",
-                "GeomSolids0003", FatalError,1,
+                "GeomSolids0003", UFatalError,1,
                 "Error in allocation of vertices. Out of memory !");
   }
 
diff --git a/source/externals/usolids/src/UTessellatedSolid.cc b/source/externals/usolids/src/UTessellatedSolid.cc
index 0ba36327ee9..7eb6a1e3325 100644
--- a/source/externals/usolids/src/UTessellatedSolid.cc
+++ b/source/externals/usolids/src/UTessellatedSolid.cc
@@ -14,15 +14,14 @@
 //          Created from original implementation in Geant4
 // --------------------------------------------------------------------
 
-#include <iostream>
+#include "UTessellatedSolid.hh"
+
+#include <algorithm>
 #include <stack>
+#include <list>
 #include <iostream>
 #include <iomanip>
 #include <fstream>
-#include <algorithm>
-#include <list>
-
-#include "UTessellatedSolid.hh"
 
 using namespace std;
 
@@ -43,7 +42,7 @@ void UTessellatedSolid::Initialize()
   fCubicVolume = 0.;
   fSurfaceArea = 0.;
 
-  fGeometryType = "UTessellatedSolid";
+  fGeometryType = "TessellatedSolid";
   fSolidClosed  = false;
 
   fMinExtent.Set(UUtils::kInfinity);
@@ -157,7 +156,8 @@ bool UTessellatedSolid::AddFacet(VUFacet* aFacet)
   // Add the facet to the vector.
   if (fSolidClosed)
   {
-    UUtils::Exception("UTessellatedSolid::AddFacet()", "GeomSolids1002", Warning, 1, "Attempt to add facets when solid is closed.");
+    UUtils::Exception("UTessellatedSolid::AddFacet()", "GeomSolids1002",
+      UWarning, 1, "Attempt to add facets when solid is closed.");
     return false;
   }
   else if (aFacet->IsDefined())
@@ -166,7 +166,7 @@ bool UTessellatedSolid::AddFacet(VUFacet* aFacet)
     UVector3 p = aFacet->GetCircumcentre();
     UVertexInfo value;
     value.id = fFacetList.size();
-    value.mag2 = p.x + p.y + p.z;
+    value.mag2 = p.x() + p.y() + p.z();
 
     bool found = false;
     if (!OutsideOfExtent(p, fgTolerance))
@@ -182,7 +182,7 @@ bool UTessellatedSolid::AddFacet(VUFacet* aFacet)
         UVector3 q = facet->GetCircumcentre();
         found = (facet == aFacet);
         if (found) break;
-        double dif = q.x + q.y + q.z - value.mag2;
+        double dif = q.x() + q.y() + q.z() - value.mag2;
         if (dif > fgTolerance3) break;
         it++;
       }
@@ -198,7 +198,7 @@ bool UTessellatedSolid::AddFacet(VUFacet* aFacet)
           UVector3 q = facet->GetCircumcentre();
           found = (facet == aFacet);
           if (found) break;
-          double dif = q.x + q.y + q.z - q.Mag2();
+          double dif = q.x() + q.y() + q.z() - q.Mag2();
           if (dif > fgTolerance3) break;
         }
       }
@@ -213,7 +213,8 @@ bool UTessellatedSolid::AddFacet(VUFacet* aFacet)
   }
   else
   {
-    UUtils::Exception("UTessellatedSolid::AddFacet()", "GeomSolids1002", Warning, 1, "Attempt to add facet not properly defined.");
+    UUtils::Exception("UTessellatedSolid::AddFacet()", "GeomSolids1002",
+      UWarning, 1, "Attempt to add facet not properly defined.");
     aFacet->StreamInfo(cout);
     return false;
   }
@@ -388,7 +389,7 @@ void UTessellatedSolid::CreateVertexList()
     {
       p = facet.GetVertex(i);
       value.id = fVertexList.size();
-      value.mag2 = p.x + p.y + p.z;
+      value.mag2 = p.x() + p.y() + p.z();
 
       bool found = false;
       int id = 0;
@@ -404,7 +405,7 @@ void UTessellatedSolid::CreateVertexList()
           double dif = (q - p).Mag2();
           found = (dif < fgTolerance24);
           if (found) break;
-          dif = q.x + q.y + q.z - value.mag2;
+          dif = q.x() + q.y() + q.z() - value.mag2;
           if (dif > fgTolerance3) break;
           it++;
         }
@@ -420,7 +421,7 @@ void UTessellatedSolid::CreateVertexList()
             double dif = (q - p).Mag2();
             found = (dif < fgTolerance24);
             if (found) break;
-            dif = value.mag2 - (q.x + q.y + q.z);
+            dif = value.mag2 - (q.x() + q.y() + q.z());
             if (dif > fgTolerance) break;
           }
         }
@@ -447,12 +448,12 @@ void UTessellatedSolid::CreateVertexList()
         if (value.id == 0) fMinExtent = fMaxExtent = p;
         else
         {
-          if (p.x > fMaxExtent.x) fMaxExtent.x = p.x;
-          else if (p.x < fMinExtent.x) fMinExtent.x = p.x;
-          if (p.y > fMaxExtent.y) fMaxExtent.y = p.y;
-          else if (p.y < fMinExtent.y) fMinExtent.y = p.y;
-          if (p.z > fMaxExtent.z) fMaxExtent.z = p.z;
-          else if (p.z < fMinExtent.z) fMinExtent.z = p.z;
+          if (p.x() > fMaxExtent.x()) fMaxExtent.x() = p.x();
+          else if (p.x() < fMinExtent.x()) fMinExtent.x() = p.x();
+          if (p.y() > fMaxExtent.y()) fMaxExtent.y() = p.y();
+          else if (p.y() < fMinExtent.y()) fMinExtent.y() = p.y();
+          if (p.z() > fMaxExtent.z()) fMaxExtent.z() = p.z();
+          else if (p.z() < fMinExtent.z()) fMinExtent.z() = p.z();
         }
       }
       else
@@ -471,7 +472,7 @@ void UTessellatedSolid::CreateVertexList()
       facet.SetVertexIndex(i, newIndex[i]);
 
   }
-  vector<UVector3>(fVertexList).swap(fVertexList);
+  vector<UVector3>(fVertexList).swap(fVertexList); // fVertexList.shrink_to_fit();
 
 #ifdef DEBUG
   double previousValue = 0;
@@ -732,7 +733,7 @@ VUSolid::EnumInside UTessellatedSolid::InsideVoxels(const UVector3& p) const
             << "p.z() = "   << p.z() / mm << " mm";
     message.precision(oldprc);
     UUtils::Exception("UTessellatedSolid::Inside()",
-                      "GeomSolids1002", Warning, 1, message.str().c_str());
+                      "GeomSolids1002", UWarning, 1, message.str().c_str());
   }
 #endif
   //
@@ -910,7 +911,7 @@ VUSolid::EnumInside UTessellatedSolid::InsideNoVoxels(const UVector3& p) const
               << "p.z() = "   << p.z() / mm << " mm";
       message.precision(oldprc);
       UUtils::Exception("UTessellatedSolid::Inside()",
-                        "GeomSolids1002", Warning, 1, message.str().c_str());
+                        "GeomSolids1002", UWarning, 1, message.str().c_str());
     }
 #endif
     //
@@ -1002,9 +1003,9 @@ bool UTessellatedSolid::Normal(const UVector3& p, UVector3& aNormal) const
             << "          Returning approximated value for normal.";
 
     UUtils::Exception("UTessellatedSolid::SurfaceNormal(p)", "GeomSolids1002",
-                      Warning, 1, message.str().c_str());
+                      UWarning, 1, message.str().c_str());
 #endif
-    aNormal = (p.z > 0 ? UVector3(0, 0, 1) : UVector3(0, 0, -1));
+    aNormal = (p.z() > 0 ? UVector3(0, 0, 1) : UVector3(0, 0, -1));
     return false;
   }
 }
@@ -1040,7 +1041,7 @@ double UTessellatedSolid::DistanceToInNoVoxels(const UVector3& p,
             << "DistanceToOut(p) == " << DistanceToOut(p);
     message.precision(oldprc) ;
     UUtils::Exception("UTriangularFacet::DistanceToIn(p,v)", "GeomSolids1002",
-                      Warning, 1, message.str().c_str());
+                      UWarning, 1, message.str().c_str());
   }
 #endif
 
@@ -1095,7 +1096,7 @@ double UTessellatedSolid::DistanceToOutNoVoxels(const UVector3& p, const UVector
             << "DistanceToIn(p) == " << DistanceToIn(p);
     message.precision(oldprc) ;
     UUtils::Exception("UTriangularFacet::DistanceToOut(p)", "GeomSolids1002",
-                      Warning, 1, message.str().c_str());
+                      UWarning, 1, message.str().c_str());
   }
 #endif
 
@@ -1407,7 +1408,7 @@ double UTessellatedSolid::SafetyFromOutside(const UVector3& p, bool aAccurate) c
             << "DistanceToOut(p) == " << DistanceToOut(p);
     message.precision(oldprc) ;
     UUtils::Exception("UTriangularFacet::DistanceToIn(p)", "GeomSolids1002",
-                      Warning, 1, message.str().c_str());
+                      UWarning, 1, message.str().c_str());
   }
 #endif
 
@@ -1470,7 +1471,7 @@ double UTessellatedSolid::SafetyFromInside(const UVector3& p, bool) const
             << "DistanceToIn(p) == " << DistanceToIn(p);
     message.precision(oldprc) ;
     UUtils::Exception("UTriangularFacet::DistanceToOut(p)", "GeomSolids1002",
-                      Warning, 1, message.str().c_str());
+                      UWarning, 1, message.str().c_str());
   }
 #endif
 
@@ -1551,42 +1552,42 @@ void UTessellatedSolid::Extent(UVector3& aMin, UVector3& aMax) const
 //
 double UTessellatedSolid::GetMinXExtent() const
 {
-  return fMinExtent.x;
+  return fMinExtent.x();
 }
 
 ///////////////////////////////////////////////////////////////////////////////
 //
 double UTessellatedSolid::GetMaxXExtent() const
 {
-  return fMaxExtent.x;
+  return fMaxExtent.x();
 }
 
 ///////////////////////////////////////////////////////////////////////////////
 //
 double UTessellatedSolid::GetMinYExtent() const
 {
-  return fMinExtent.y;
+  return fMinExtent.y();
 }
 
 ///////////////////////////////////////////////////////////////////////////////
 //
 double UTessellatedSolid::GetMaxYExtent() const
 {
-  return fMaxExtent.y;
+  return fMaxExtent.y();
 }
 
 ///////////////////////////////////////////////////////////////////////////////
 //
 double UTessellatedSolid::GetMinZExtent() const
 {
-  return fMinExtent.z;
+  return fMinExtent.z();
 }
 
 ///////////////////////////////////////////////////////////////////////////////
 //
 double UTessellatedSolid::GetMaxZExtent() const
 {
-  return fMaxExtent.z;
+  return fMaxExtent.z();
 }
 
 ///////////////////////////////////////////////////////////////////////////////
diff --git a/source/externals/usolids/src/UTet.cc b/source/externals/usolids/src/UTet.cc
index 341dc49b9a5..630c647b97a 100644
--- a/source/externals/usolids/src/UTet.cc
+++ b/source/externals/usolids/src/UTet.cc
@@ -63,12 +63,12 @@ UTet::UTet(const std::string& name,
   UVector3 fV43 = p4 - p3;
   UVector3 fV32 = p3 - p2;
 
-  fXMin = std::min(std::min(std::min(anchor.x, p2.x), p3.x), p4.x);
-  fXMax = std::max(std::max(std::max(anchor.x, p2.x), p3.x), p4.x);
-  fYMin = std::min(std::min(std::min(anchor.y, p2.y), p3.y), p4.y);
-  fYMax = std::max(std::max(std::max(anchor.y, p2.y), p3.y), p4.y);
-  fZMin = std::min(std::min(std::min(anchor.z, p2.z), p3.z), p4.z);
-  fZMax = std::max(std::max(std::max(anchor.z, p2.z), p3.z), p4.z);
+  fXMin = std::min(std::min(std::min(anchor.x(), p2.x()), p3.x()), p4.x());
+  fXMax = std::max(std::max(std::max(anchor.x(), p2.x()), p3.x()), p4.x());
+  fYMin = std::min(std::min(std::min(anchor.y(), p2.y()), p3.y()), p4.y());
+  fYMax = std::max(std::max(std::max(anchor.y(), p2.y()), p3.y()), p4.y());
+  fZMin = std::min(std::min(std::min(anchor.z(), p2.z()), p3.z()), p4.z());
+  fZMax = std::max(std::max(std::max(anchor.z(), p2.z()), p3.z()), p4.z());
 
   fDx = (fXMax - fXMin) * 0.5;
   fDy = (fYMax - fYMin) * 0.5;
@@ -85,7 +85,7 @@ UTet::UTet(const std::string& name,
   if (degeneracyFlag) *degeneracyFlag = degenerate;
   else if (degenerate)
   {
-    UUtils::Exception("UTet::UTet()", "GeomSolids0002", FatalErrorInArguments, 1,
+    UUtils::Exception("UTet::UTet()", "GeomSolids0002", UFatalErrorInArguments, 1,
                       "Degenerate tetrahedron not allowed.");
   }
 
@@ -477,7 +477,7 @@ double UTet::DistanceToOut(const UVector3&  p, const UVector3& v,
             << t1 << ", " << t2 << ", " << t3 << ", " << t4;
 
     UUtils::Exception("UTet::DistanceToOut(p,v,...)", "GeomSolids1002",
-                      Warning, 1, message.str().c_str());
+                      UWarning, 1, message.str().c_str());
     if (convex)
     {
       convex = false; // flag normal as meaningless
@@ -630,28 +630,28 @@ std::vector<UVector3> UTet::GetVertices() const
 void UTet::Extent(UVector3& aMin, UVector3& aMax) const
 {
   // Returns the full 3D cartesian extent of the solid.
-  aMin.x = fXMin;
-  aMax.x = fXMax;
-  aMin.y = fYMin;
-  aMax.y = fYMax;
-  aMin.z = fZMin;
-  aMax.z = fZMax;
+  aMin.x() = fXMin;
+  aMax.x() = fXMax;
+  aMin.y() = fYMin;
+  aMax.y() = fYMax;
+  aMin.z() = fZMin;
+  aMax.z() = fZMax;
 }
 //______________________________________________________________________________
 void UTet::GetParametersList(int, double* aArray) const
 {
-  aArray[0] = fAnchor.x;
-  aArray[1] = fAnchor.y;
-  aArray[2] = fAnchor.z;
-  aArray[3] = fP2.x;
-  aArray[4] = fP2.y;
-  aArray[5] = fP2.z;
-  aArray[6] = fP3.x;
-  aArray[7] = fP3.y;
-  aArray[8] = fP3.z;
-  aArray[9] = fP4.x;
-  aArray[10] = fP4.y;
-  aArray[11] = fP4.z;
+  aArray[0] = fAnchor.x();
+  aArray[1] = fAnchor.y();
+  aArray[2] = fAnchor.z();
+  aArray[3] = fP2.x();
+  aArray[4] = fP2.y();
+  aArray[5] = fP2.z();
+  aArray[6] = fP3.x();
+  aArray[7] = fP3.y();
+  aArray[8] = fP3.z();
+  aArray[9] = fP4.x();
+  aArray[10] = fP4.y();
+  aArray[11] = fP4.z();
 }
 //______________________________________________________________________________
 VUSolid* UTet::Clone() const
diff --git a/source/externals/usolids/src/UTransform3D.cc b/source/externals/usolids/src/UTransform3D.cc
index b39ef7894a7..586f3966eec 100644
--- a/source/externals/usolids/src/UTransform3D.cc
+++ b/source/externals/usolids/src/UTransform3D.cc
@@ -116,7 +116,7 @@ void UTransform3D::RotateX(double angle)
   v[8] = s * fRot[5] + c * fRot[8];
   std::memcpy(fRot, v, sizeof(kIdRot));
 
-  fTr.Set(fTr.x, c * fTr.y - s * fTr.z, s * fTr.y + c * fTr.z);
+  fTr.Set(fTr.x(), c * fTr.y() - s * fTr.z(), s * fTr.y() + c * fTr.z());
 }
 
 //______________________________________________________________________________
@@ -138,7 +138,7 @@ void UTransform3D::RotateY(double angle)
   v[8] = -s * fRot[2] + c * fRot[8];
   std::memcpy(fRot, v, sizeof(kIdRot));
 
-  fTr.Set(c * fTr.x + s * fTr.z, fTr.y, -s * fTr.x + c * fTr.z);
+  fTr.Set(c * fTr.x() + s * fTr.z(), fTr.y(), -s * fTr.x() + c * fTr.z());
 }
 
 //______________________________________________________________________________
@@ -160,7 +160,7 @@ void UTransform3D::RotateZ(double angle)
   v[8] = fRot[8];
   std::memcpy(&fRot[0], v, sizeof(kIdRot));
 
-  fTr.Set(c * fTr.x - s * fTr.y, s * fTr.x + c * fTr.y, fTr.z);
+  fTr.Set(c * fTr.x() - s * fTr.y(), s * fTr.x() + c * fTr.y(), fTr.z());
 }
 
 //______________________________________________________________________________
@@ -170,9 +170,9 @@ UVector3 UTransform3D::GlobalPoint(const UVector3& local) const
   // by the transformation. This is defined by multiplying this transformation
   // with the local vector.
   UVector3 global;
-  global.x = fTr.x + local.x * fRot[0] + local.y * fRot[1] + local.z * fRot[2];
-  global.y = fTr.y + local.x * fRot[3] + local.y * fRot[4] + local.z * fRot[5];
-  global.z = fTr.z + local.x * fRot[6] + local.y * fRot[7] + local.z * fRot[8];
+  global.x() = fTr.x() + local.x() * fRot[0] + local.y() * fRot[1] + local.z() * fRot[2];
+  global.y() = fTr.y() + local.x() * fRot[3] + local.y() * fRot[4] + local.z() * fRot[5];
+  global.z() = fTr.z() + local.x() * fRot[6] + local.y() * fRot[7] + local.z() * fRot[8];
   return global;
 }
 
@@ -183,9 +183,9 @@ UVector3 UTransform3D::GlobalVector(const UVector3& local) const
   // transformation to the global one. This is defined by multiplying this
   // transformation with the local vector while ignoring the translation.
   UVector3 global(
-    local.x * fRot[0] + local.y * fRot[1] + local.z * fRot[2],
-    local.x * fRot[3] + local.y * fRot[4] + local.z * fRot[5],
-    local.x * fRot[6] + local.y * fRot[7] + local.z * fRot[8]);
+    local.x() * fRot[0] + local.y() * fRot[1] + local.z() * fRot[2],
+    local.x() * fRot[3] + local.y() * fRot[4] + local.z() * fRot[5],
+    local.x() * fRot[6] + local.y() * fRot[7] + local.z() * fRot[8]);
 
   return global;
 }
@@ -198,9 +198,9 @@ UVector3 UTransform3D::LocalPoint(const UVector3& global) const
   // transformation with the global vector.
   UVector3 mt = global - fTr;
   UVector3 local(
-    mt.x * fRot[0] + mt.y * fRot[3] + mt.z * fRot[6],
-    mt.x * fRot[1] + mt.y * fRot[4] + mt.z * fRot[7],
-    mt.x * fRot[2] + mt.y * fRot[5] + mt.z * fRot[8]);
+    mt.x() * fRot[0] + mt.y() * fRot[3] + mt.z() * fRot[6],
+    mt.x() * fRot[1] + mt.y() * fRot[4] + mt.z() * fRot[7],
+    mt.x() * fRot[2] + mt.y() * fRot[5] + mt.z() * fRot[8]);
   return local;
 }
 
@@ -211,9 +211,9 @@ UVector3 UTransform3D::LocalVector(const UVector3& global) const
   // by the transformation. This is defined by multiplying the inverse
   // transformation with the global vector.
   UVector3 local(
-    global.x * fRot[0] + global.y * fRot[3] + global.z * fRot[6],
-    global.x * fRot[1] + global.y * fRot[4] + global.z * fRot[7],
-    global.x * fRot[2] + global.y * fRot[5] + global.z * fRot[8]);
+    global.x() * fRot[0] + global.y() * fRot[3] + global.z() * fRot[6],
+    global.x() * fRot[1] + global.y() * fRot[4] + global.z() * fRot[7],
+    global.x() * fRot[2] + global.y() * fRot[5] + global.z() * fRot[8]);
 
   return local;
 }
@@ -222,9 +222,9 @@ UVector3 UTransform3D::LocalVector(const UVector3& global) const
 UTransform3D& UTransform3D::operator *= (const UTransform3D& other)
 {
   // Multiply with other transformation.
-  fTr.x = fRot[0] * other.fTr[0] + fRot[1] * other.fTr[1] + fRot[2] * other.fTr[2];
-  fTr.y = fRot[3] * other.fTr[0] + fRot[4] * other.fTr[1] + fRot[5] * other.fTr[2];
-  fTr.z = fRot[6] * other.fTr[0] + fRot[7] * other.fTr[1] + fRot[8] * other.fTr[2];
+  fTr.x() = fRot[0] * other.fTr[0] + fRot[1] * other.fTr[1] + fRot[2] * other.fTr[2];
+  fTr.y() = fRot[3] * other.fTr[0] + fRot[4] * other.fTr[1] + fRot[5] * other.fTr[2];
+  fTr.z() = fRot[6] * other.fTr[0] + fRot[7] * other.fTr[1] + fRot[8] * other.fTr[2];
 
   double newrot[9];
   for (int i = 0; i < 3; i++)
@@ -244,9 +244,9 @@ UTransform3D& UTransform3D::operator *= (const UTransform3D& other)
 UTransform3D& UTransform3D::operator *= (const UVector3& vect)
 {
   // Multiply with a vector.
-  fTr.x = fRot[0] * vect.x + fRot[1] * vect.y + fRot[2] * vect.z;
-  fTr.y = fRot[3] * vect.x + fRot[4] * vect.y + fRot[5] * vect.z;
-  fTr.z = fRot[6] * vect.x + fRot[7] * vect.y + fRot[8] * vect.z;
+  fTr.x() = fRot[0] * vect.x() + fRot[1] * vect.y() + fRot[2] * vect.z();
+  fTr.y() = fRot[3] * vect.x() + fRot[4] * vect.y() + fRot[5] * vect.z();
+  fTr.z() = fRot[6] * vect.x() + fRot[7] * vect.y() + fRot[8] * vect.z();
   return *this;
 }
 
diff --git a/source/externals/usolids/src/UTrap.cc b/source/externals/usolids/src/UTrap.cc
index a4833ad8719..089b6fd81eb 100644
--- a/source/externals/usolids/src/UTrap.cc
+++ b/source/externals/usolids/src/UTrap.cc
@@ -58,7 +58,7 @@ UTrap::UTrap(const std::string& pName,
             << "					Y - " << pDy1 << ", " << pDy2 << std::endl
             << "					Z - " << pDz;
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   fDz = pDz;
@@ -112,7 +112,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Invalid length parameters for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   fDz = 0.5 * pZ ;
@@ -156,7 +156,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Face at ~-Y not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Top side with normal approx. +Y
@@ -167,7 +167,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Face at ~+Y not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Front side with normal approx. -X
@@ -178,7 +178,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Face at ~-X not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Back side iwth normal approx. +X
@@ -189,7 +189,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Face at ~+X not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
   fCubicVolume=0.;
   fSurfaceArea=0.;
@@ -212,7 +212,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Invalid length parameters for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   fDz = pDz;
@@ -256,7 +256,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Face at ~-Y not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Top side with normal approx. +Y
@@ -266,7 +266,8 @@ UTrap::UTrap(const std::string& pName,
   {
     std::ostringstream message;
     message << "Face at ~+Y not planar for Solid: " << GetName();
-    UUtils::Exception("UTrap::UTrap()", "GeomSolids0002", FatalErrorInArguments, 1, message.str().c_str());
+    UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Front side with normal approx. -X
@@ -277,7 +278,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Face at ~-X not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Back side iwth normal approx. +X
@@ -288,7 +289,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Face at ~+X not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
   fCubicVolume=0.;
   fSurfaceArea=0.;
@@ -312,7 +313,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Invalid length parameters for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   fDz = pDz ;
@@ -356,7 +357,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Face at ~-Y not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Top side with normal approx. +Y
@@ -367,7 +368,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Face at ~+Y not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Front side with normal approx. -X
@@ -378,7 +379,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Face at ~-X not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Back side iwth normal approx. +X
@@ -389,7 +390,7 @@ UTrap::UTrap(const std::string& pName,
     std::ostringstream message;
     message << "Face at ~+X not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
   fCubicVolume=0.;
   fSurfaceArea=0.;
@@ -509,7 +510,7 @@ void UTrap::SetAllParameters(double pDz,
             << "					Y - " << pDy1 << ", " << pDy2 << std::endl
             << "					Z - " << pDz;
     UUtils::Exception("UTrap::SetAllParameters()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
   fCubicVolume = 0.;
   fSurfaceArea = 0.;
@@ -537,23 +538,23 @@ void UTrap::SetPlanes(const UVector3 pt[8])
   // Start with check of centering - the center of gravity trap line
   // should Cross the origin of frame
 
-  if (!(pt[0].z < 0
-        && pt[0].z == pt[1].z && pt[0].z == pt[2].z
-        && pt[0].z == pt[3].z
-        && pt[4].z > 0
-        && pt[4].z == pt[5].z && pt[4].z == pt[6].z
-        && pt[4].z == pt[7].z
-        && std::fabs(pt[0].z + pt[4].z) < VUSolid::Tolerance()
-        && pt[0].y == pt[1].y && pt[2].y == pt[3].y
-        && pt[4].y == pt[5].y && pt[6].y == pt[7].y
-        && std::fabs(pt[0].y + pt[2].y + pt[4].y + pt[6].y) < VUSolid::Tolerance()
-        && std::fabs(pt[0].x + pt[1].x + pt[4].x + pt[5].x +
-                     pt[2].x + pt[3].x + pt[6].x + pt[7].x) < VUSolid::Tolerance()))
+  if (!(pt[0].z() < 0
+        && pt[0].z() == pt[1].z() && pt[0].z() == pt[2].z()
+        && pt[0].z() == pt[3].z()
+        && pt[4].z() > 0
+        && pt[4].z() == pt[5].z() && pt[4].z() == pt[6].z()
+        && pt[4].z() == pt[7].z()
+        && std::fabs(pt[0].z() + pt[4].z()) < VUSolid::Tolerance()
+        && pt[0].y() == pt[1].y() && pt[2].y() == pt[3].y()
+        && pt[4].y() == pt[5].y() && pt[6].y() == pt[7].y()
+        && std::fabs(pt[0].y() + pt[2].y() + pt[4].y() + pt[6].y()) < VUSolid::Tolerance()
+        && std::fabs(pt[0].x() + pt[1].x() + pt[4].x() + pt[5].x() +
+                     pt[2].x() + pt[3].x() + pt[6].x() + pt[7].x()) < VUSolid::Tolerance()))
   {
     std::ostringstream message;
     message << "Invalid vertice coordinates for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Bottom side with normal approx. -Y
@@ -563,7 +564,7 @@ void UTrap::SetPlanes(const UVector3 pt[8])
   if (!good)
   {
 
-    UUtils::Exception("UTrap::UTrap()", "GeomSolids0002", FatalError, 1,
+    UUtils::Exception("UTrap::UTrap()", "GeomSolids0002", UFatalError, 1,
                       "Face at ~-Y not planar.");
   }
 
@@ -576,7 +577,7 @@ void UTrap::SetPlanes(const UVector3 pt[8])
     std::ostringstream message;
     message << "Face at ~+Y not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Front side with normal approx. -X
@@ -587,7 +588,8 @@ void UTrap::SetPlanes(const UVector3 pt[8])
   {
     std::ostringstream message;
     message << "Face at ~-X not planar for Solid: " << GetName();
-    UUtils::Exception("UTrap::UTrap()", "GeomSolids0002", FatalErrorInArguments, 1, message.str().c_str());
+    UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Back side iwth normal approx. +X
@@ -598,22 +600,22 @@ void UTrap::SetPlanes(const UVector3 pt[8])
     std::ostringstream message;
     message << "Face at ~+X not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::UTrap()", "GeomSolids0002",
-                      FatalErrorInArguments, 1, message.str().c_str());
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
-  fDz = (pt[7]).z ;
+  fDz = (pt[7]).z() ;
 
-  fDy1     = ((pt[2]).y - (pt[1]).y) * 0.5;
-  fDx1     = ((pt[1]).x - (pt[0]).x) * 0.5;
-  fDx2     = ((pt[3]).x - (pt[2]).x) * 0.5;
-  fTalpha1 = ((pt[2]).x + (pt[3]).x - (pt[1]).x - (pt[0]).x) * 0.25 / fDy1;
+  fDy1     = ((pt[2]).y() - (pt[1]).y()) * 0.5;
+  fDx1     = ((pt[1]).x() - (pt[0]).x()) * 0.5;
+  fDx2     = ((pt[3]).x() - (pt[2]).x()) * 0.5;
+  fTalpha1 = ((pt[2]).x() + (pt[3]).x() - (pt[1]).x() - (pt[0]).x()) * 0.25 / fDy1;
 
-  fDy2     = ((pt[6]).y - (pt[5]).y) * 0.5;
-  fDx3     = ((pt[5]).x - (pt[4]).x) * 0.5;
-  fDx4     = ((pt[7]).x - (pt[6]).x) * 0.5;
-  fTalpha2 = ((pt[6]).x + (pt[7]).x - (pt[5]).x - (pt[4]).x) * 0.25 / fDy2;
+  fDy2     = ((pt[6]).y() - (pt[5]).y()) * 0.5;
+  fDx3     = ((pt[5]).x() - (pt[4]).x()) * 0.5;
+  fDx4     = ((pt[7]).x() - (pt[6]).x()) * 0.5;
+  fTalpha2 = ((pt[6]).x() + (pt[7]).x() - (pt[5]).x() - (pt[4]).x()) * 0.25 / fDy2;
 
-  fTthetaCphi = ((pt[4]).x + fDy2 * fTalpha2 + fDx3) / fDz;
-  fTthetaSphi = ((pt[4]).y + fDy2) / fDz;
+  fTthetaCphi = ((pt[4]).x() + fDy2 * fTalpha2 + fDx3) / fDz;
+  fTthetaSphi = ((pt[4]).y() + fDy2) / fDz;
 }
 
 //////////////////////////////////////////////////////////////////////////
@@ -651,7 +653,7 @@ bool UTrap::MakePlanes()
     std::ostringstream message;
     message << "Face at ~-Y not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::MakePlanes()", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
 
   // Top side with normal approx. +Y
@@ -662,7 +664,7 @@ bool UTrap::MakePlanes()
     std::ostringstream message;
     message << "Face at ~+Y not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::MakePlanes()", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
 
   // Front side with normal approx. -X
@@ -673,7 +675,7 @@ bool UTrap::MakePlanes()
     std::ostringstream message;
     message << "Face at ~-X not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::MakePlanes()", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
 
   // Back side iwth normal approx. +X
@@ -684,7 +686,7 @@ bool UTrap::MakePlanes()
     std::ostringstream message;
     message << "Face at ~+X not planar for Solid: " << GetName();
     UUtils::Exception("UTrap::MakePlanes()", "GeomSolids0002",
-                      FatalError, 1, message.str().c_str());
+                      UFatalError, 1, message.str().c_str());
   }
 
   return good;
@@ -724,25 +726,25 @@ bool UTrap::MakePlane(const UVector3& p1,
     // a,b,c correspond to the x/y/z components of the
     // normal vector to the plane
 
-    // a  = (p2.y-p1.y)*(p1.z+p2.z)+(p3.y-p2.y)*(p2.z+p3.z);
-    // a += (p4.y-p3.y)*(p3.z+p4.z)+(p1.y-p4.y)*(p4.z+p1.z); // ?
-    // b  = (p2.z-p1.z)*(p1.x+p2.x)+(p3.z-p2.z)*(p2.x+p3.x);
-    // b += (p4.z-p3.z)*(p3.x+p4.x)+(p1.z-p4.z)*(p4.x+p1.x); // ?
-    // c  = (p2.x-p1.x)*(p1.y+p2.y)+(p3.x-p2.x)*(p2.y+p3.y);
-    // c += (p4.x-p3.x)*(p3.y+p4.y)+(p1.x-p4.x)*(p4.y+p1.y); // ?
+    // a  = (p2.y()-p1.y())*(p1.z()+p2.z())+(p3.y()-p2.y())*(p2.z()+p3.z());
+    // a += (p4.y()-p3.y())*(p3.z()+p4.z())+(p1.y()-p4.y())*(p4.z()+p1.z()); // ?
+    // b  = (p2.z()-p1.z())*(p1.x()+p2.x())+(p3.z()-p2.z())*(p2.x()+p3.x());
+    // b += (p4.z()-p3.z())*(p3.x()+p4.x())+(p1.z()-p4.z())*(p4.x()+p1.x()); // ?
+    // c  = (p2.x()-p1.x())*(p1.y()+p2.y())+(p3.x()-p2.x())*(p2.y()+p3.y());
+    // c += (p4.x()-p3.x())*(p3.y()+p4.y())+(p1.x()-p4.x())*(p4.y()+p1.y()); // ?
 
     // Let create diagonals 4-2 and 3-1 than (4-2)x(3-1) provides
     // vector perpendicular to the plane directed to outside !!!
     // and a,b,c, = f(1,2,3,4) external relative to trap normal
 
-    a = +(p4.y - p2.y) * (p3.z - p1.z)
-        - (p3.y - p1.y) * (p4.z - p2.z);
+    a = +(p4.y() - p2.y()) * (p3.z() - p1.z())
+        - (p3.y() - p1.y()) * (p4.z() - p2.z());
 
-    b = -(p4.x - p2.x) * (p3.z - p1.z)
-        + (p3.x - p1.x) * (p4.z - p2.z);
+    b = -(p4.x() - p2.x()) * (p3.z() - p1.z())
+        + (p3.x() - p1.x()) * (p4.z() - p2.z());
 
-    c = +(p4.x - p2.x) * (p3.y - p1.y)
-        - (p3.x - p1.x) * (p4.y - p2.y);
+    c = +(p4.x() - p2.x()) * (p3.y() - p1.y())
+        - (p3.x() - p1.x()) * (p4.y() - p2.y());
 
     sd = std::sqrt(a * a + b * b + c * c); // so now vector plane.(a,b,c) is Unit
 
@@ -758,11 +760,11 @@ bool UTrap::MakePlane(const UVector3& p1,
       message << "Invalid parameters: norm.mod() <= 0, for Solid: "
               << GetName();
       UUtils::Exception("UTrap::MakePlanes()", "GeomSolids0002",
-                        FatalError, 1, message.str().c_str()) ;
+                        UFatalError, 1, message.str().c_str()) ;
     }
     // Calculate D: p1 in in plane so D=-n.p1.Vect()
 
-    plane.d = -(plane.a * p1.x + plane.b * p1.y + plane.c * p1.z);
+    plane.d = -(plane.a * p1.x() + plane.b * p1.y() + plane.c * p1.z());
 
     good = true;
   }
@@ -781,30 +783,30 @@ VUSolid::EnumInside UTrap::Inside(const UVector3& p) const
   VUSolid::EnumInside in;
   double Dist;
   int i;
-  if (std::fabs(p.z) <= fDz - VUSolid::Tolerance() * 0.5)
+  if (std::fabs(p.z()) <= fDz - VUSolid::Tolerance() * 0.5)
   {
     in = eInside;
 
     for (i = 0; i < 4; i++)
     {
-      Dist = fPlanes[i].a * p.x + fPlanes[i].b * p.y
-             + fPlanes[i].c * p.z + fPlanes[i].d;
+      Dist = fPlanes[i].a * p.x() + fPlanes[i].b * p.y()
+             + fPlanes[i].c * p.z() + fPlanes[i].d;
 
       if (Dist > VUSolid::Tolerance() * 0.5) return in = eOutside;
-      else if (Dist > -VUSolid::Tolerance() * 0.5)         in = eSurface;
+      else if (Dist > -VUSolid::Tolerance() * 0.5)  in = eSurface;
 
     }
   }
-  else if (std::fabs(p.z) <= fDz + VUSolid::Tolerance() * 0.5)
+  else if (std::fabs(p.z()) <= fDz + VUSolid::Tolerance() * 0.5)
   {
     in = eSurface;
 
     for (i = 0; i < 4; i++)
     {
-      Dist =  fPlanes[i].a * p.x + fPlanes[i].b * p.y
-              + fPlanes[i].c * p.z + fPlanes[i].d;
+      Dist =  fPlanes[i].a * p.x() + fPlanes[i].b * p.y()
+              + fPlanes[i].c * p.z() + fPlanes[i].d;
 
-      if (Dist > VUSolid::Tolerance() * 0.5)        return in = eOutside;
+      if (Dist > VUSolid::Tolerance() * 0.5) return in = eOutside;
     }
   }
   else  in = eOutside;
@@ -826,26 +828,26 @@ bool UTrap::Normal(const UVector3& p, UVector3& aNormal) const
 
   for (i = 0; i < 4; i++)
   {
-    dist =  std::fabs(fPlanes[i].a * p.x + fPlanes[i].b * p.y
-                      + fPlanes[i].c * p.z + fPlanes[i].d);
+    dist =  std::fabs(fPlanes[i].a * p.x() + fPlanes[i].b * p.y()
+                      + fPlanes[i].c * p.z() + fPlanes[i].d);
     if (dist < safe)
     {
       safe = dist;
     }
   }
-  distz = std::fabs(std::fabs(p.z) - fDz);
+  distz = std::fabs(std::fabs(p.z()) - fDz);
 
-  distmy = std::fabs(fPlanes[0].a * p.x + fPlanes[0].b * p.y
-                     + fPlanes[0].c * p.z + fPlanes[0].d);
+  distmy = std::fabs(fPlanes[0].a * p.x() + fPlanes[0].b * p.y()
+                     + fPlanes[0].c * p.z() + fPlanes[0].d);
 
-  disty = std::fabs(fPlanes[1].a * p.x + fPlanes[1].b * p.y
-                    + fPlanes[1].c * p.z + fPlanes[1].d);
+  disty = std::fabs(fPlanes[1].a * p.x() + fPlanes[1].b * p.y()
+                    + fPlanes[1].c * p.z() + fPlanes[1].d);
 
-  distmx = std::fabs(fPlanes[2].a * p.x + fPlanes[2].b * p.y
-                     + fPlanes[2].c * p.z + fPlanes[2].d);
+  distmx = std::fabs(fPlanes[2].a * p.x() + fPlanes[2].b * p.y()
+                     + fPlanes[2].c * p.z() + fPlanes[2].d);
 
-  distx = std::fabs(fPlanes[3].a * p.x + fPlanes[3].b * p.y
-                    + fPlanes[3].c * p.z + fPlanes[3].d);
+  distx = std::fabs(fPlanes[3].a * p.x() + fPlanes[3].b * p.y()
+                    + fPlanes[3].c * p.z() + fPlanes[3].d);
 
   UVector3 nX = UVector3(fPlanes[3].a, fPlanes[3].b, fPlanes[3].c);
   UVector3 nmX = UVector3(fPlanes[2].a, fPlanes[2].b, fPlanes[2].c);
@@ -876,14 +878,14 @@ bool UTrap::Normal(const UVector3& p, UVector3& aNormal) const
   if (distz <= delta)
   {
     noSurfaces ++;
-    if (p.z >= 0.)  sumnorm += nZ;
+    if (p.z() >= 0.)  sumnorm += nZ;
     else               sumnorm -= nZ;
   }
   if (noSurfaces == 0)
   {
 #ifdef UDEBUG
     UUtils::Exception("UTrap::SurfaceNormal(p)", "GeomSolids1002",
-                      Warning, 1, "Point p is not on surface !?");
+                      UWarning, 1, "Point p is not on surface !?");
 #endif
     norm = ApproxSurfaceNormal(p);
   }
@@ -904,22 +906,22 @@ UVector3 UTrap::ApproxSurfaceNormal(const UVector3& p) const
   int i, imin = 0;
   for (i = 0; i < 4; i++)
   {
-    Dist = std::fabs(fPlanes[i].a * p.x + fPlanes[i].b * p.y
-                     + fPlanes[i].c * p.z + fPlanes[i].d);
+    Dist = std::fabs(fPlanes[i].a * p.x() + fPlanes[i].b * p.y()
+                     + fPlanes[i].c * p.z() + fPlanes[i].d);
     if (Dist < safe)
     {
       safe = Dist;
       imin = i;
     }
   }
-  safez = std::fabs(std::fabs(p.z) - fDz);
+  safez = std::fabs(std::fabs(p.z()) - fDz);
   if (safe < safez)
   {
     return UVector3(fPlanes[imin].a, fPlanes[imin].b, fPlanes[imin].c);
   }
   else
   {
-    if (p.z > 0)
+    if (p.z() > 0)
     {
       return UVector3(0, 0, 1);
     }
@@ -950,26 +952,26 @@ double UTrap::DistanceToIn(const UVector3& p,
   //
   // Z Intersection range
   //
-  if (v.z > 0)
+  if (v.z() > 0)
   {
-    max = fDz - p.z ;
+    max = fDz - p.z() ;
     if (max > 0.5 * VUSolid::Tolerance())
     {
-      smax = max / v.z;
-      smin = (-fDz - p.z) / v.z;
+      smax = max / v.z();
+      smin = (-fDz - p.z()) / v.z();
     }
     else
     {
       return snxt = UUtils::kInfinity;
     }
   }
-  else if (v.z < 0)
+  else if (v.z() < 0)
   {
-    max = - fDz - p.z ;
+    max = - fDz - p.z() ;
     if (max < -0.5 * VUSolid::Tolerance())
     {
-      smax = max / v.z;
-      smin = (fDz - p.z) / v.z;
+      smax = max / v.z();
+      smin = (fDz - p.z()) / v.z();
     }
     else
     {
@@ -978,7 +980,7 @@ double UTrap::DistanceToIn(const UVector3& p,
   }
   else
   {
-    if (std::fabs(p.z) < fDz - 0.5 * VUSolid::Tolerance()) // Inside was <=fDz
+    if (std::fabs(p.z()) < fDz - 0.5 * VUSolid::Tolerance()) // Inside was <=fDz
     {
       smin = 0;
       smax = UUtils::kInfinity;
@@ -991,9 +993,9 @@ double UTrap::DistanceToIn(const UVector3& p,
 
   for (i = 0; i < 4; i++)
   {
-    pdist = fPlanes[i].a * p.x + fPlanes[i].b * p.y
-            + fPlanes[i].c * p.z + fPlanes[i].d;
-    Comp = fPlanes[i].a * v.x + fPlanes[i].b * v.y + fPlanes[i].c * v.z;
+    pdist = fPlanes[i].a * p.x() + fPlanes[i].b * p.y()
+            + fPlanes[i].c * p.z() + fPlanes[i].d;
+    Comp = fPlanes[i].a * v.x() + fPlanes[i].b * v.y() + fPlanes[i].c * v.z();
     if (pdist >= -0.5 * VUSolid::Tolerance())      // was >0
     {
       //
@@ -1065,11 +1067,11 @@ double UTrap::SafetyFromOutside(const UVector3& p, bool) const
 {
   double safe = 0.0, Dist;
   int i;
-  safe = std::fabs(p.z) - fDz;
+  safe = std::fabs(p.z()) - fDz;
   for (i = 0; i < 4; i++)
   {
-    Dist = fPlanes[i].a * p.x + fPlanes[i].b * p.y
-           + fPlanes[i].c * p.z + fPlanes[i].d;
+    Dist = fPlanes[i].a * p.x() + fPlanes[i].b * p.y()
+           + fPlanes[i].c * p.z() + fPlanes[i].d;
     if (Dist > safe) safe = Dist;
   }
   if (safe < 0) safe = 0;
@@ -1089,12 +1091,12 @@ double UTrap::DistanceToOut(const UVector3& p, const UVector3&  v, UVector3&
   //
   // Z Intersections
   //
-  if (v.z > 0)
+  if (v.z() > 0)
   {
-    max = fDz - p.z;
+    max = fDz - p.z();
     if (max > VUSolid::Tolerance() / 2)
     {
-      snxt = max / v.z;
+      snxt = max / v.z();
       side = kPZ;
     }
     else
@@ -1104,12 +1106,12 @@ double UTrap::DistanceToOut(const UVector3& p, const UVector3&  v, UVector3&
       return snxt = 0;
     }
   }
-  else if (v.z < 0)
+  else if (v.z() < 0)
   {
-    max = -fDz - p.z;
+    max = -fDz - p.z();
     if (max < -VUSolid::Tolerance() / 2)
     {
-      snxt = max / v.z;
+      snxt = max / v.z();
       side = kMZ;
     }
     else
@@ -1127,8 +1129,8 @@ double UTrap::DistanceToOut(const UVector3& p, const UVector3&  v, UVector3&
   //
   // Intersections with planes[0] (expanded because of setting enum)
   //
-  pdist = fPlanes[0].a * p.x + fPlanes[0].b * p.y + fPlanes[0].c * p.z + fPlanes[0].d;
-  Comp = fPlanes[0].a * v.x + fPlanes[0].b * v.y + fPlanes[0].c * v.z;
+  pdist = fPlanes[0].a * p.x() + fPlanes[0].b * p.y() + fPlanes[0].c * p.z() + fPlanes[0].d;
+  Comp = fPlanes[0].a * v.x() + fPlanes[0].b * v.y() + fPlanes[0].c * v.z();
   if (pdist > 0)
   {
     // Outside the plane
@@ -1168,8 +1170,8 @@ double UTrap::DistanceToOut(const UVector3& p, const UVector3&  v, UVector3&
   //
   // Intersections with planes[1] (expanded because of setting enum)
   //
-  pdist = fPlanes[1].a * p.x + fPlanes[1].b * p.y + fPlanes[1].c * p.z + fPlanes[1].d;
-  Comp = fPlanes[1].a * v.x + fPlanes[1].b * v.y + fPlanes[1].c * v.z;
+  pdist = fPlanes[1].a * p.x() + fPlanes[1].b * p.y() + fPlanes[1].c * p.z() + fPlanes[1].d;
+  Comp = fPlanes[1].a * v.x() + fPlanes[1].b * v.y() + fPlanes[1].c * v.z();
   if (pdist > 0)
   {
     // Outside the plane
@@ -1209,8 +1211,8 @@ double UTrap::DistanceToOut(const UVector3& p, const UVector3&  v, UVector3&
   //
   // Intersections with planes[2] (expanded because of setting enum)
   //
-  pdist = fPlanes[2].a * p.x + fPlanes[2].b * p.y + fPlanes[2].c * p.z + fPlanes[2].d;
-  Comp = fPlanes[2].a * v.x + fPlanes[2].b * v.y + fPlanes[2].c * v.z;
+  pdist = fPlanes[2].a * p.x() + fPlanes[2].b * p.y() + fPlanes[2].c * p.z() + fPlanes[2].d;
+  Comp = fPlanes[2].a * v.x() + fPlanes[2].b * v.y() + fPlanes[2].c * v.z();
   if (pdist > 0)
   {
     // Outside the plane
@@ -1250,8 +1252,8 @@ double UTrap::DistanceToOut(const UVector3& p, const UVector3&  v, UVector3&
   //
   // Intersections with planes[3] (expanded because of setting enum)
   //
-  pdist = fPlanes[3].a * p.x + fPlanes[3].b * p.y + fPlanes[3].c * p.z + fPlanes[3].d;
-  Comp = fPlanes[3].a * v.x + fPlanes[3].b * v.y + fPlanes[3].c * v.z;
+  pdist = fPlanes[3].a * p.x() + fPlanes[3].b * p.y() + fPlanes[3].c * p.z() + fPlanes[3].d;
+  Comp = fPlanes[3].a * v.x() + fPlanes[3].b * v.y() + fPlanes[3].c * v.z();
   if (pdist > 0)
   {
     // Outside the plane
@@ -1318,18 +1320,18 @@ double UTrap::DistanceToOut(const UVector3& p, const UVector3&  v, UVector3&
       message << "Undefined side for valid surface normal to solid."
               << std::endl
               << "Position:"  << std::endl << std::endl
-              << "p.x = "  << p.x << " mm" << std::endl
-              << "p.y = "  << p.y << " mm" << std::endl
-              << "p.z = "  << p.z << " mm" << std::endl << std::endl
+              << "p.x = "  << p.x() << " mm" << std::endl
+              << "p.y = "  << p.y() << " mm" << std::endl
+              << "p.z = "  << p.z() << " mm" << std::endl << std::endl
               << "Direction:" << std::endl << std::endl
-              << "v.x = "  << v.x << std::endl
-              << "v.y = "  << v.y << std::endl
-              << "v.z = "  << v.z << std::endl << std::endl
+              << "v.x = "  << v.x() << std::endl
+              << "v.y = "  << v.y() << std::endl
+              << "v.z = "  << v.z() << std::endl << std::endl
               << "Proposed distance :" << std::endl << std::endl
               << "snxt = "    << snxt << " mm" << std::endl;
       message.precision(oldprc);
       UUtils::Exception("UTrap::DistanceToOut(p,v,..)", "GeomSolids1002",
-                        Warning, 1, message.str().c_str());
+                        UWarning, 1, message.str().c_str());
       break;
   }
   return snxt;
@@ -1352,23 +1354,23 @@ double UTrap::SafetyFromInside(const UVector3& p, bool /*precise*/) const
     cout << std::endl ;
 
     cout << "Position:"  << std::endl << std::endl ;
-    cout << "p.x = "  << p.x << " mm" << std::endl ;
-    cout << "p.y = "  << p.y << " mm" << std::endl ;
-    cout << "p.z = "  << p.z << " mm" << std::endl << std::endl ;
+    cout << "p.x = "  << p.x() << " mm" << std::endl ;
+    cout << "p.y = "  << p.y() << " mm" << std::endl ;
+    cout << "p.z = "  << p.z() << " mm" << std::endl << std::endl ;
     cout.precision(oldprc) ;
     UUtils::Exception("UTrap::DistanceToOut(p)",
-                      "GeomSolids1002", Warning, 1, "Point p is outside !?");
+                      "GeomSolids1002", UWarning, 1, "Point p is outside !?");
   }
 #endif
 
-  safe = fDz - std::fabs(p.z);
+  safe = fDz - std::fabs(p.z());
   if (safe < 0) safe = 0;
   else
   {
     for (i = 0; i < 4; i++)
     {
-      Dist = -(fPlanes[i].a * p.x + fPlanes[i].b * p.y
-               + fPlanes[i].c * p.z + fPlanes[i].d);
+      Dist = -(fPlanes[i].a * p.x() + fPlanes[i].b * p.y()
+               + fPlanes[i].c * p.z() + fPlanes[i].d);
       if (Dist < safe) safe = Dist;
     }
     if (safe < 0) safe = 0;
@@ -1383,7 +1385,7 @@ double UTrap::SafetyFromInside(const UVector3& p, bool /*precise*/) const
 
 UGeometryType UTrap::GetEntityType() const
 {
-  return std::string("UTrap");
+  return std::string("Trap");
 }
 
 //////////////////////////////////////////////////////////////////////////
@@ -1451,15 +1453,15 @@ UVector3 UTrap::GetPointOnPlane(UVector3 p0, UVector3 p1,
   v = p3 - p2;
   w = p0 - p3;
 
-  Area = UVector3(w.y * v.z - w.z * v.y,
-                  w.z * v.x - w.x * v.z,
-                  w.x * v.y - w.y * v.x);
+  Area = UVector3(w.y() * v.z() - w.z() * v.y(),
+                  w.z() * v.x() - w.x() * v.z(),
+                  w.x() * v.y() - w.y() * v.x());
 
   aOne = 0.5 * Area.Mag();
 
-  Area = UVector3(t.y * u.z - t.z * u.y,
-                  t.z * u.x - t.x * u.z,
-                  t.x * u.y - t.y * u.x);
+  Area = UVector3(t.y() * u.z() - t.z() * u.y(),
+                  t.z() * u.x() - t.x() * u.z(),
+                  t.x() * u.y() - t.y() * u.x());
 
   aTwo = 0.5 * Area.Mag();
 
@@ -1546,8 +1548,8 @@ UVector3 UTrap::GetPointOnSurface() const
 void UTrap::Extent(UVector3& aMin, UVector3& aMax) const
 {
  //Z axis
-  aMin.z = -fDz;
-  aMax.z = fDz;
+  aMin.z() = -fDz;
+  aMax.z() = fDz;
   
   double temp[8] ;     // some points for intersection with zMin/zMax
   UVector3 pt[8];   // vertices after translation
@@ -1570,47 +1572,47 @@ void UTrap::Extent(UVector3& aMin, UVector3& aMax) const
   pt[7]=UVector3(fDz*fTthetaCphi+fDy2*fTalpha2+fDx4,
                         fDz*fTthetaSphi+fDy2,+fDz);
 
-  temp[0] = pt[0].x+(pt[4].x-pt[0].x)
-      *(aMin.z-pt[0].z)/(pt[4].z-pt[0].z) ;
-  temp[1] = pt[0].x+(pt[4].x-pt[0].x)
-      *(aMax.z-pt[0].z)/(pt[4].z-pt[0].z) ;
-  temp[2] = pt[2].x+(pt[6].x-pt[2].x)
-      *(aMin.z-pt[2].z)/(pt[6].z-pt[2].z) ;
-  temp[3] = pt[2].x+(pt[6].x-pt[2].x)
-      *(aMax.z-pt[2].z)/(pt[6].z-pt[2].z) ;
-  temp[4] = pt[3].x+(pt[7].x-pt[3].x)
-      *(aMin.z-pt[3].z)/(pt[7].z-pt[3].z) ;
-  temp[5] = pt[3].x+(pt[7].x-pt[3].x)
-      *(aMax.z-pt[3].z)/(pt[7].z-pt[3].z) ;
-  temp[6] = pt[1].x+(pt[5].x-pt[1].x)
-      *(aMin.z-pt[1].z)/(pt[5].z-pt[1].z) ;
-  temp[7] = pt[1].x+(pt[5].x-pt[1].x)
-      *(aMax.z-pt[1].z)/(pt[5].z-pt[1].z) ;
+  temp[0] = pt[0].x()+(pt[4].x()-pt[0].x())
+      *(aMin.z()-pt[0].z())/(pt[4].z()-pt[0].z()) ;
+  temp[1] = pt[0].x()+(pt[4].x()-pt[0].x())
+      *(aMax.z()-pt[0].z())/(pt[4].z()-pt[0].z()) ;
+  temp[2] = pt[2].x()+(pt[6].x()-pt[2].x())
+      *(aMin.z()-pt[2].z())/(pt[6].z()-pt[2].z()) ;
+  temp[3] = pt[2].x()+(pt[6].x()-pt[2].x())
+      *(aMax.z()-pt[2].z())/(pt[6].z()-pt[2].z()) ;
+  temp[4] = pt[3].x()+(pt[7].x()-pt[3].x())
+      *(aMin.z()-pt[3].z())/(pt[7].z()-pt[3].z()) ;
+  temp[5] = pt[3].x()+(pt[7].x()-pt[3].x())
+      *(aMax.z()-pt[3].z())/(pt[7].z()-pt[3].z()) ;
+  temp[6] = pt[1].x()+(pt[5].x()-pt[1].x())
+      *(aMin.z()-pt[1].z())/(pt[5].z()-pt[1].z()) ;
+  temp[7] = pt[1].x()+(pt[5].x()-pt[1].x())
+      *(aMax.z()-pt[1].z())/(pt[5].z()-pt[1].z()) ;
       
-  aMax.x =  - std::fabs(fDz*fTthetaCphi) - fDx1 - fDx2 -fDx3 - fDx4 ;
-  aMin.x = -aMax.x ;
+  aMax.x() =  - std::fabs(fDz*fTthetaCphi) - fDx1 - fDx2 -fDx3 - fDx4 ;
+  aMin.x() = -aMax.x() ;
 
   for(int i = 0 ; i < 8 ; i++ )
   {
-    if( temp[i] > aMax.x) aMax.x = temp[i] ;
-    if( temp[i] < aMin.x) aMin.x = temp[i] ;
+    if( temp[i] > aMax.x()) aMax.x() = temp[i] ;
+    if( temp[i] < aMin.x()) aMin.x() = temp[i] ;
   }                                            
   //Y axis
-  temp[0] = pt[0].y+(pt[4].y-pt[0].y)*(aMin.z-pt[0].z)
-                       /(pt[4].z-pt[0].z) ;
-  temp[1] = pt[0].y+(pt[4].y-pt[0].y)*(aMax.z-pt[0].z)
-                       /(pt[4].z-pt[0].z) ;
-  temp[2] = pt[2].y+(pt[6].y-pt[2].y)*(aMin.z-pt[2].z)
-                       /(pt[6].z-pt[2].z) ;
-  temp[3] = pt[2].y+(pt[6].y-pt[2].y)*(aMax.z-pt[2].z)
-                       /(pt[6].z-pt[2].z) ;
-
-  aMax.y = - std::fabs(fDz*fTthetaSphi) - fDy1 - fDy2 ;
-  aMin.y = -aMax.y ;
+  temp[0] = pt[0].y()+(pt[4].y()-pt[0].y())*(aMin.z()-pt[0].z())
+                       /(pt[4].z()-pt[0].z()) ;
+  temp[1] = pt[0].y()+(pt[4].y()-pt[0].y())*(aMax.z()-pt[0].z())
+                       /(pt[4].z()-pt[0].z()) ;
+  temp[2] = pt[2].y()+(pt[6].y()-pt[2].y())*(aMin.z()-pt[2].z())
+                       /(pt[6].z()-pt[2].z()) ;
+  temp[3] = pt[2].y()+(pt[6].y()-pt[2].y())*(aMax.z()-pt[2].z())
+                       /(pt[6].z()-pt[2].z()) ;
+
+  aMax.y() = - std::fabs(fDz*fTthetaSphi) - fDy1 - fDy2 ;
+  aMin.y() = -aMax.y() ;
   
   for( int i = 0 ; i < 4 ; i++ )
   {
-    if( temp[i] > aMax.y ) aMax.y = temp[i] ;
-    if( temp[i] < aMin.y ) aMin.y = temp[i] ;
+    if( temp[i] > aMax.y() ) aMax.y() = temp[i] ;
+    if( temp[i] < aMin.y() ) aMin.y() = temp[i] ;
   }
 }
diff --git a/source/externals/usolids/src/UTrd.cc b/source/externals/usolids/src/UTrd.cc
index 6868c521998..2cde3a02103 100644
--- a/source/externals/usolids/src/UTrd.cc
+++ b/source/externals/usolids/src/UTrd.cc
@@ -69,7 +69,8 @@ void UTrd::CheckAndSetAllParameters ( double pdx1,  double pdx2,
                 << "          X - " << pdx1 << ", " << pdx2 << std::endl
                 << "          Y - " << pdy1 << ", " << pdy2 << std::endl
                 << "          Z - " << pdz << std::endl;
-      UUtils::Exception("UTrd::CheckAndSetAllParameters()", "InvalidSetup", FatalErrorInArguments, 1, "Invalid parameters.");
+      UUtils::Exception("UTrd::CheckAndSetAllParameters()", "GeomSolids0002",
+                        UFatalErrorInArguments, 1, "Invalid parameters.");
     }
   }
 }
@@ -97,25 +98,25 @@ double UTrd::SafetyFromInside(const UVector3& p, bool aAccurate) const
     std::cout << "p.y() = "   << p.y() / mm << " mm" << std::endl ;
     std::cout << "p.z() = "   << p.z() / mm << " mm" << std::endl << std::endl ;
     std::cout.precision(oldprc) ;
-    UUtils::Exception("UTrd::DistanceToOut(p)", "Notification", Warning, 1,
+    UUtils::Exception("UTrd::DistanceToOut(p)", "GeomSolids1002", UWarning, 1,
                       "Point p is outside !?");
   }
 #endif
 
-  safe = fDz - std::fabs(p.z); // z perpendicular Dist
+  safe = fDz - std::fabs(p.z()); // z perpendicular Dist
 
-  zbase = fDz + p.z;
+  zbase = fDz + p.z();
 
   // xdist = distance perpendicular to z axis to closest x plane from p
-  //       = (x half width of shape at p.z) - std::abs(p.x)
+  //       = (x half width of shape at p.z()) - std::abs(p.x())
   //
   tanxz = (fDx2 - fDx1) * 0.5 / fDz; // angle between two parts on trinngle, which reflects proportional part on triangle related to position of point, see it on picture
-  xdist = fDx1 + tanxz * zbase - std::fabs(p.x); // distance to closest point on x border on x-axis on which point is located to
+  xdist = fDx1 + tanxz * zbase - std::fabs(p.x()); // distance to closest point on x border on x-axis on which point is located to
   saf1 = xdist / std::sqrt(1.0 + tanxz * tanxz); // x*std::cos(ang_xz) =
   // shortest (perpendicular)
   // distance to plane, see picture
   tanyz = (fDy2 - fDy1) * 0.5 / fDz;
-  ydist = fDy1 + tanyz * zbase - std::fabs(p.y);
+  ydist = fDy1 + tanyz * zbase - std::fabs(p.y());
   saf2 = ydist / std::sqrt(1.0 + tanyz * tanyz);
 
   // Return minimum x/y/z distance
@@ -137,20 +138,20 @@ double UTrd::SafetyFromInsideAccurate(const UVector3& p) const
   double saf[3];
   //--- Compute safety first
   // check Z facettes
-  saf[0] = fDz - std::abs(p.z);
+  saf[0] = fDz - std::abs(p.z());
   double fx = 0.5 * (fDx1 - fDx2) / fDz;
   double calf = 1. / std::sqrt(1.0 + fx * fx);
   // check X facettes
-  double distx = 0.5 * (fDx1 + fDx2) - fx * p.z;
+  double distx = 0.5 * (fDx1 + fDx2) - fx * p.z();
   if (distx < 0) saf[1] = UUtils::kInfinity;
-  else         saf[1] = (distx - std::abs(p.x)) * calf;
+  else         saf[1] = (distx - std::abs(p.x())) * calf;
 
   double fy = 0.5 * (fDy1 - fDy2) / fDz;
   calf = 1. / std::sqrt(1.0 + fy * fy);
   // check Y facettes
-  distx = 0.5 * (fDy1 + fDy2) - fy * p.z;
+  distx = 0.5 * (fDy1 + fDy2) - fy * p.z();
   if (distx < 0) saf[2] = UUtils::kInfinity;
-  else         saf[2] = (distx - std::abs(p.y)) * calf;
+  else         saf[2] = (distx - std::abs(p.y())) * calf;
 
   return amin(3, saf);
 }
@@ -176,17 +177,17 @@ double UTrd::SafetyFromOutside(const UVector3& p, bool aAccurate) const
   double tanyz, disty, safy;
   double zbase;
 
-  safe = std::abs(p.z) - fDz;
+  safe = std::abs(p.z()) - fDz;
   if (safe < 0) safe = 0;  // Also used to ensure x/y distances
   // POSITIVE
-  zbase = fDz + p.z;
+  zbase = fDz + p.z();
 
   // Find distance along x direction to closest x plane
   //
   tanxz = (fDx2 - fDx1) * 0.5 / fDz;
-  //    widx=fDx1+tanxz*(fDz+p.z()); // x width at p.z
+  //    widx=fDx1+tanxz*(fDz+p.z()); // x width at p.z()
   //    distx=std::abs(p.x())-widx;      // distance to plane
-  distx = std::abs(p.x) - (fDx1 + tanxz * zbase); // distance to point on border of trd, related to axis on which point p lies
+  distx = std::abs(p.x()) - (fDx1 + tanxz * zbase); // distance to point on border of trd, related to axis on which point p lies
   if (distx > safe)
   {
     safx = distx / std::sqrt(1.0 + tanxz * tanxz); // perpendicular distance calculation; vector Dist=Dist*std::cos(ang), it can be probably negative, then comparing in next statement, we will get rid of such distance, because it directs away from the solid
@@ -195,9 +196,9 @@ double UTrd::SafetyFromOutside(const UVector3& p, bool aAccurate) const
 
   // Find distance along y direction to slanted wall
   tanyz = (fDy2 - fDy1) * 0.5 / fDz;
-  //    widy=fDy1+tanyz*(fDz+p.z()); // y width at p.z
+  //    widy=fDy1+tanyz*(fDz+p.z()); // y width at p.z()
   //    disty=std::abs(p.y())-widy;      // distance to plane
-  disty = std::abs(p.y) - (fDy1 + tanyz * zbase);
+  disty = std::abs(p.y()) - (fDy1 + tanyz * zbase);
   if (disty > safe)
   {
     safy = disty / std::sqrt(1.0 + tanyz * tanyz); // distance along vector
@@ -214,20 +215,20 @@ double UTrd::SafetyFromOutsideAccurate(const UVector3& p) const
   double saf[3];
   //--- Compute safety first
   // check Z facettes
-  saf[0] = fDz - std::abs(p.z);
+  saf[0] = fDz - std::abs(p.z());
   double fx = 0.5 * (fDx1 - fDx2) / fDz;
   double calf = 1. / std::sqrt(1.0 + fx * fx);
   // check X facettes
-  double distx = 0.5 * (fDx1 + fDx2) - fx * p.z;
+  double distx = 0.5 * (fDx1 + fDx2) - fx * p.z();
   if (distx < 0) saf[1] = UUtils::kInfinity;
-  else         saf[1] = (distx - std::abs(p.x)) * calf;
+  else         saf[1] = (distx - std::abs(p.x())) * calf;
 
   double fy = 0.5 * (fDy1 - fDy2) / fDz;
   calf = 1. / std::sqrt(1.0 + fy * fy);
   // check Y facettes
-  distx = 0.5 * (fDy1 + fDy2) - fy * p.z;
+  distx = 0.5 * (fDy1 + fDy2) - fy * p.z();
   if (distx < 0) saf[2] = UUtils::kInfinity;
-  else         saf[2] = (distx - std::abs(p.y)) * calf;
+  else         saf[2] = (distx - std::abs(p.y())) * calf;
 
   for (int i = 0; i < 3; i++) saf[i] = -saf[i];
   return amax(3, saf);
@@ -250,60 +251,60 @@ double UTrd::SafetyFromOutsideAccurate(const UVector3& p) const
 // 2. it counts with tolerance
 // 3. algorithm checks are similar:
 // Geant4: x=0.5*(fDx2*zbase1+fDx1*zbase2)/fDz - fgTolerance/2;
-// Root: double dx = 0.5*(fDx2*(point.z+fDz)+fDx1*(fDz-point.z))/fDz;
+// Root: double dx = 0.5*(fDx2*(point.z()+fDz)+fDx1*(fDz-point.z()))/fDz;
 //
 VUSolid::EnumInside UTrd::Inside(const UVector3& p) const
 {
   VUSolid::EnumInside in = eOutside;
   double x, y, zbase1, zbase2;
 
-  if (std::abs(p.z) <= fDz - fgTolerance / 2)
+  if (std::abs(p.z()) <= fDz - fgTolerance / 2)
   {
-    zbase1 = p.z + fDz; // Dist from -ve z plane
-    zbase2 = fDz - p.z; // Dist from +ve z plane
+    zbase1 = p.z() + fDz; // Dist from -ve z plane
+    zbase2 = fDz - p.z(); // Dist from +ve z plane
 
     // Check whether inside x tolerance
     //
-    x = 0.5 * (fDx2 * zbase1 + fDx1 * zbase2) / fDz - fgTolerance / 2; // calculate x coordinate of one corner point corresponding to p.z inside trd (on x axis), ... by using proportional calculation related to triangle
-    if (std::abs(p.x) <= x)
+    x = 0.5 * (fDx2 * zbase1 + fDx1 * zbase2) / fDz - fgTolerance / 2; // calculate x coordinate of one corner point corresponding to p.z() inside trd (on x axis), ... by using proportional calculation related to triangle
+    if (std::abs(p.x()) <= x)
     {
       y = 0.5 * ((fDy2 * zbase1 + fDy1 * zbase2)) / fDz - fgTolerance / 2;
-      if (std::abs(p.y) <= y)
+      if (std::abs(p.y()) <= y)
       {
         in = eInside;
       }
-      else if (std::abs(p.y) <= y + fgTolerance)
+      else if (std::abs(p.y()) <= y + fgTolerance)
       {
         in = eSurface;
       }
     }
-    else if (std::abs(p.x) <= x + fgTolerance)
+    else if (std::abs(p.x()) <= x + fgTolerance)
     {
       // y = y half width of shape at z of point + tolerant boundary
       //
       y = 0.5 * ((fDy2 * zbase1 + fDy1 * zbase2)) / fDz + fgTolerance / 2;
-      if (std::abs(p.y) <= y)
+      if (std::abs(p.y()) <= y)
       {
         in = eSurface;
       }
     }
   }
-  else if (std::abs(p.z) <= fDz + fgTolerance / 2)
+  else if (std::abs(p.z()) <= fDz + fgTolerance / 2)
   {
     // Only need to check outer tolerant boundaries
     //
-    zbase1 = p.z + fDz; // Dist from -ve z plane
-    zbase2 = fDz - p.z; // Dist from +ve z plane
+    zbase1 = p.z() + fDz; // Dist from -ve z plane
+    zbase2 = fDz - p.z(); // Dist from +ve z plane
 
     // x = x half width of shape at z of point plus tolerance
     //
     x = 0.5 * (fDx2 * zbase1 + fDx1 * zbase2) / fDz + fgTolerance / 2;
-    if (std::abs(p.x) <= x)
+    if (std::abs(p.x()) <= x)
     {
       // y = y half width of shape at z of point
       //
       y = 0.5 * ((fDy2 * zbase1 + fDy1 * zbase2)) / fDz + fgTolerance / 2;
-      if (std::abs(p.y) <= y) in = eSurface;
+      if (std::abs(p.y()) <= y) in = eSurface;
     }
   }
   return in;
@@ -328,35 +329,35 @@ double UTrd::DistanceToIn(const UVector3& p,
   double s1, s2, tanxz, tanyz, ds1, ds2;
   double ss1, ss2, sn1 = 0., sn2 = 0., dist;
 
-  if (v.z)    // Calculate valid z intersect range
+  if (v.z())    // Calculate valid z intersect range
   {
-    if (v.z > 0)     // Calculate smax: must be +ve or no intersection.
+    if (v.z() > 0)     // Calculate smax: must be +ve or no intersection.
     {
-      dist = fDz - p.z ;  // to plane at +dz
+      dist = fDz - p.z() ;  // to plane at +dz
 
       if (dist >= 0.5 * VUSolid::fgTolerance)
       {
-        smax = dist / v.z; // distance to intersection with +dz, maximum
-        smin = -(fDz + p.z) / v.z; // distance to intersection with +dz, minimum
+        smax = dist / v.z(); // distance to intersection with +dz, maximum
+        smin = -(fDz + p.z()) / v.z(); // distance to intersection with +dz, minimum
       }
       else  return snxt ;
     }
-    else // v.z <0
+    else // v.z() <0
     {
-      dist = fDz + p.z; // plane at -dz
+      dist = fDz + p.z(); // plane at -dz
 
       if (dist >= 0.5 * VUSolid::fgTolerance)
       {
-        smax = -dist / v.z;
-        smin = (fDz - p.z) / v.z;
+        smax = -dist / v.z();
+        smin = (fDz - p.z()) / v.z();
       }
       else return snxt ;
     }
     if (smin < 0) smin = 0 ;
   }
-  else // v.z=0
+  else // v.z()=0
   {
-    if (std::abs(p.z) >= fDz) return snxt ;      // Outside & no intersect
+    if (std::abs(p.z()) >= fDz) return snxt ;      // Outside & no intersect
     else
     {
       smin = 0 ;    // Always inside z range
@@ -366,15 +367,15 @@ double UTrd::DistanceToIn(const UVector3& p,
 
   // Calculate x intersection range
   //
-  // Calc half width at p.z, and components towards planes
+  // Calc half width at p.z(), and components towards planes
 
   tanxz = (fDx2 - fDx1) * 0.5 / fDz ;
-  s1    = 0.5 * (fDx1 + fDx2) + tanxz * p.z ; // x half width at p.z
-  ds1   = v.x - tanxz * v.z ;     // Components of v towards faces at +-x
-  ds2   = v.x + tanxz * v.z ;
-  ss1   = s1 - p.x;         // -delta x to +ve plane
+  s1    = 0.5 * (fDx1 + fDx2) + tanxz * p.z() ; // x half width at p.z()
+  ds1   = v.x() - tanxz * v.z() ;     // Components of v towards faces at +-x
+  ds2   = v.x() + tanxz * v.z() ;
+  ss1   = s1 - p.x();         // -delta x to +ve plane
   // -ve when outside
-  ss2   = -s1 - p.x;        // -delta x to -ve plane
+  ss2   = -s1 - p.x();        // -delta x to -ve plane
   // +ve when outside
   if (ss1 < 0 && ss2 <= 0)
   {
@@ -455,11 +456,11 @@ double UTrd::DistanceToIn(const UVector3& p,
   // (repeat of x intersection code)
 
   tanyz = (fDy2 - fDy1) * 0.5 / fDz ;
-  s2    = 0.5 * (fDy1 + fDy2) + tanyz * p.z; // y half width at p.z
-  ds1   = v.y - tanyz * v.z;     // Components of v towards faces at +-y
-  ds2   = v.y + tanyz * v.z;
-  ss1   = s2 - p.y;         // -delta y to +ve plane
-  ss2   = -s2 - p.y;        // -delta y to -ve plane
+  s2    = 0.5 * (fDy1 + fDy2) + tanyz * p.z(); // y half width at p.z()
+  ds1   = v.y() - tanyz * v.z();     // Components of v towards faces at +-y
+  ds2   = v.y() + tanyz * v.z();
+  ss1   = s2 - p.y();         // -delta y to +ve plane
+  ss2   = -s2 - p.y();        // -delta y to -ve plane
 
   if (ss1 < 0 && ss2 <= 0)
   {
@@ -562,12 +563,12 @@ double UTrd::DistanceToOut(const UVector3&  p, const UVector3& v,
   double tanxz = 0., cosxz = 0., tanyz = 0., cosyz = 0.;
 
   // Calculate z plane intersection
-  if (v.z > 0)
+  if (v.z() > 0)
   {
-    pdist = fDz - p.z;
+    pdist = fDz - p.z();
     if (pdist > VUSolid::fgTolerance / 2)
     {
-      snxt = pdist / v.z;
+      snxt = pdist / v.z();
       side = kPZ;
     }
     else
@@ -576,12 +577,12 @@ double UTrd::DistanceToOut(const UVector3&  p, const UVector3& v,
       return snxt = 0;
     }
   }
-  else if (v.z < 0)
+  else if (v.z() < 0)
   {
-    pdist = fDz + p.z;
+    pdist = fDz + p.z();
     if (pdist > VUSolid::fgTolerance / 2)
     {
-      snxt = -pdist / v.z;
+      snxt = -pdist / v.z();
       side = kMZ;
     }
     else
@@ -606,15 +607,15 @@ double UTrd::DistanceToOut(const UVector3&  p, const UVector3& v,
 
   // +ve plane (1)
   //
-  ss1 = central + tanxz * p.z - p.x; // distance || x axis to plane
+  ss1 = central + tanxz * p.z() - p.x(); // distance || x axis to plane
   // (+ve if point inside)
-  ds1 = v.x - tanxz * v.z; // component towards plane at +x
+  ds1 = v.x() - tanxz * v.z(); // component towards plane at +x
   // (-ve if +ve -> -ve direction)
   // -ve plane (2)
   //
-  ss2 = -tanxz * p.z - p.x - central; //distance || x axis to plane
+  ss2 = -tanxz * p.z() - p.x() - central; //distance || x axis to plane
   // (-ve if point inside)
-  ds2 = tanxz * v.z + v.x; // component towards plane at -x
+  ds2 = tanxz * v.z() + v.x(); // component towards plane at -x
 
   if (ss1 > 0 && ss2 < 0)
   {
@@ -753,15 +754,15 @@ double UTrd::DistanceToOut(const UVector3&  p, const UVector3& v,
 
     // +ve plane (1)
     //
-    ss1 = central + tanyz * p.z - p.y; // distance || y axis to plane
+    ss1 = central + tanyz * p.z() - p.y(); // distance || y axis to plane
     // (+ve if point inside)
-    ds1 = v.y - tanyz * v.z; // component towards +ve plane
+    ds1 = v.y() - tanyz * v.z(); // component towards +ve plane
     // (-ve if +ve -> -ve direction)
     // -ve plane (2)
     //
-    ss2 = -tanyz * p.z - p.y - central; // distance || y axis to plane
+    ss2 = -tanyz * p.z() - p.y() - central; // distance || y axis to plane
     // (-ve if point inside)
-    ds2 = tanyz * v.z + v.y; // component towards -ve plane
+    ds2 = tanyz * v.z() + v.y(); // component towards -ve plane
 
     if (ss1 > 0 && ss2 < 0)
     {
@@ -920,7 +921,8 @@ double UTrd::DistanceToOut(const UVector3&  p, const UVector3& v,
         n.Set(0, 0, -1);
         break;
       default:
-        UUtils::Exception("UTrd::DistanceToOut(p,v,..)", "Notification", Warning, 1, "Undefined side for valid surface normal to solid.");
+        UUtils::Exception("UTrd::DistanceToOut(p,v,..)", "GeomSolids1002",
+                UWarning, 1, "Undefined side for valid surface normal to solid.");
         break;
     }
   }
@@ -938,43 +940,44 @@ bool UTrd::Normal(const UVector3& p, UVector3& norm) const
 
   double tanx  = (fDx2 - fDx1) / z;
   double secx  = std::sqrt(1.0 + tanx * tanx);
-  double newpx = std::abs(p.x) - p.z * tanx;
+  double newpx = std::abs(p.x()) - p.z() * tanx;
   double widx  = fDx2 - fDz * tanx;
 
   double tany  = (fDy2 - fDy1) / z;
   double secy  = std::sqrt(1.0 + tany * tany);
-  double newpy = std::abs(p.y) - p.z * tany;
+  double newpy = std::abs(p.y()) - p.z() * tany;
   double widy  = fDy2 - fDz * tany;
 
   double distx = std::abs(newpx - widx) / secx;   // perp. distance to x side
   double disty = std::abs(newpy - widy) / secy;   //                to y side
-  double distz = std::abs(std::abs(p.z) - fDz); //                to z side
+  double distz = std::abs(std::abs(p.z()) - fDz); //                to z side
 
   if (distx <= delta) // we are near the x corner?
   {
     double fcos = 1.0 / secx;
     noSurfaces ++;
-    if (p.x >= 0.) sumnorm.x += fcos;
-    else sumnorm.x -= fcos;
-    sumnorm.z -= tanx * fcos;
+    if (p.x() >= 0.) sumnorm.x() += fcos;
+    else sumnorm.x() -= fcos;
+    sumnorm.z() -= tanx * fcos;
   }
   if (disty <= delta) // y corner ...
   {
     double fcos = 1.0 / secy;
     noSurfaces++;
-    if (p.y >= 0.) sumnorm.y += fcos;
-    else sumnorm.y -= fcos;
-    sumnorm.z -= tany * fcos;
+    if (p.y() >= 0.) sumnorm.y() += fcos;
+    else sumnorm.y() -= fcos;
+    sumnorm.z() -= tany * fcos;
   }
   if (distz <= delta)
   {
     noSurfaces++;
-    sumnorm.z += (p.z >= 0.) ? 1.0 : -1.0;
+    sumnorm.z() += (p.z() >= 0.) ? 1.0 : -1.0;
   }
   if (noSurfaces == 0)
   {
 #ifdef UDEBUG
-    UUtils::Exception("UTrd::SurfaceNormal(p)", "Notification", Warning, 1, "Point p is not on surface !?");
+    UUtils::Exception("UTrd::SurfaceNormal(p)", "GeomSolids1002",
+                      UWarning, 1, "Point p is not on surface !?");
 #endif
     // point is not on surface, calculate normal closest to surface. this is not likely to be used too often..., normally the user gives point on surface...
     //     norm = ApproxSurfaceNormal(p);
@@ -991,7 +994,7 @@ bool UTrd::Normal(const UVector3& p, UVector3& norm) const
         //
         fcos = 1.0 / secx;
         // normal=(+/-std::cos(ang),0,-std::sin(ang))
-        if (p.x >= 0)
+        if (p.x() >= 0)
           norm = UVector3(fcos, 0, -tanx * fcos);
         else
           norm = UVector3(-fcos, 0, -tanx * fcos);
@@ -1000,7 +1003,7 @@ bool UTrd::Normal(const UVector3& p, UVector3& norm) const
       {
         // Closest to Z
         //
-        if (p.z >= 0)
+        if (p.z() >= 0)
           norm = UVector3(0, 0, 1);
         else
           norm = UVector3(0, 0, -1);
@@ -1013,7 +1016,7 @@ bool UTrd::Normal(const UVector3& p, UVector3& norm) const
         // Closest to Y
         //
         fcos = 1.0 / secy;
-        if (p.y >= 0)
+        if (p.y() >= 0)
           norm = UVector3(0, fcos, -tany * fcos);
         else
           norm = UVector3(0, -fcos, -tany * fcos);
@@ -1022,7 +1025,7 @@ bool UTrd::Normal(const UVector3& p, UVector3& norm) const
       {
         // Closest to Z
         //
-        if (p.z >= 0)
+        if (p.z() >= 0)
           norm = UVector3(0, 0, 1);
         else
           norm = UVector3(0, 0, -1);
@@ -1055,17 +1058,17 @@ UVector3 UTrd::ApproxSurfaceNormal(const UVector3& p) const
 
   tanx = (fDx2 - fDx1) / z;
   secx = std::sqrt(1.0 + tanx * tanx);
-  newpx = std::abs(p.x) - p.z * tanx;
+  newpx = std::abs(p.x()) - p.z() * tanx;
   widx = fDx2 - fDz * tanx;
 
   tany = (fDy2 - fDy1) / z;
   secy = std::sqrt(1.0 + tany * tany);
-  newpy = std::abs(p.y) - p.z * tany;
+  newpy = std::abs(p.y()) - p.z() * tany;
   widy = fDy2 - fDz * tany;
 
   distx = std::abs(newpx - widx) / secx; // perpendicular distance to x side
   disty = std::abs(newpy - widy) / secy; //                        to y side
-  distz = std::abs(std::abs(p.z) - fDz); //                        to z side
+  distz = std::abs(std::abs(p.z()) - fDz); //                        to z side
 
   // find closest side
   //
@@ -1077,7 +1080,7 @@ UVector3 UTrd::ApproxSurfaceNormal(const UVector3& p) const
       //
       fcos = 1.0 / secx;
       // normal=(+/-std::cos(ang),0,-std::sin(ang))
-      if (p.x >= 0)
+      if (p.x() >= 0)
         norm = UVector3(fcos, 0, -tanx * fcos);
       else
         norm = UVector3(-fcos, 0, -tanx * fcos);
@@ -1086,7 +1089,7 @@ UVector3 UTrd::ApproxSurfaceNormal(const UVector3& p) const
     {
       // Closest to Z
       //
-      if (p.z >= 0)
+      if (p.z() >= 0)
         norm = UVector3(0, 0, 1);
       else
         norm = UVector3(0, 0, -1);
@@ -1099,7 +1102,7 @@ UVector3 UTrd::ApproxSurfaceNormal(const UVector3& p) const
       // Closest to Y
       //
       fcos = 1.0 / secy;
-      if (p.y >= 0)
+      if (p.y() >= 0)
         norm = UVector3(0, fcos, -tany * fcos);
       else
         norm = UVector3(0, -fcos, -tany * fcos);
@@ -1108,7 +1111,7 @@ UVector3 UTrd::ApproxSurfaceNormal(const UVector3& p) const
     {
       // Closest to Z
       //
-      if (p.z >= 0)
+      if (p.z() >= 0)
         norm = UVector3(0, 0, 1);
       else
         norm = UVector3(0, 0, -1);
diff --git a/source/externals/usolids/src/UTriangularFacet.cc b/source/externals/usolids/src/UTriangularFacet.cc
index 1e98a9b7d6d..dc740504259 100644
--- a/source/externals/usolids/src/UTriangularFacet.cc
+++ b/source/externals/usolids/src/UTriangularFacet.cc
@@ -69,7 +69,8 @@ UTriangularFacet::UTriangularFacet(const UVector3& vt0, const UVector3& vt1, con
             << "Side lengths = P[0]->P[1]" << eMag1 << endl
             << "Side lengths = P[0]->P[2]" << eMag2 << endl
             << "Side lengths = P[1]->P[2]" << eMag3;
-    UUtils::Exception("UTriangularFacet::UTriangularFacet()", "GeomSolids1001", Warning, 1, message.str().c_str());
+    UUtils::Exception("UTriangularFacet::UTriangularFacet()", "GeomSolids1001",
+                      UWarning, 1, message.str().c_str());
     fIsDefined     = false;
     fSurfaceNormal.Set(0);
     fA = fB = fC = 0.0;
@@ -101,7 +102,7 @@ UTriangularFacet::UTriangularFacet(const UVector3& vt0, const UVector3& vt1, con
               << "  fVertices[2] = " << GetVertex(2) << endl
               << "Area = " << fArea;
       UUtils::Exception("UTriangularFacet::UTriangularFacet()",
-                        "GeomSolids1001", Warning, 1, message.str().c_str());
+                        "GeomSolids1001", UWarning, 1, message.str().c_str());
       lambda0 = 0.5;
       lambda1 = 0.5;  
     }
@@ -830,7 +831,7 @@ double UTriangularFacet::GetArea()
 
 UGeometryType UTriangularFacet::GetEntityType() const
 {
-  return "UTriangularFacet";
+  return "TriangularFacet";
 }
 
 UVector3 UTriangularFacet::GetSurfaceNormal() const
diff --git a/source/externals/usolids/src/UTubs.cc b/source/externals/usolids/src/UTubs.cc
index 6396ff0dd24..11461eb1ba1 100644
--- a/source/externals/usolids/src/UTubs.cc
+++ b/source/externals/usolids/src/UTubs.cc
@@ -42,7 +42,8 @@ UTubs::UTubs(const std::string& pName,
   {
     std::ostringstream message;
     message << "Negative Z half-length (" << pDz << ") in solid: " << GetName();
-    UUtils::Exception("UTubs::UTubs()", "GeomSolids0002", FatalErrorInArguments, 1, message.str().c_str());
+    UUtils::Exception("UTubs::UTubs()", "GeomSolids0002",
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
   if ((pRMin >= pRMax) || (pRMin < 0))   // Check radii
   {
@@ -50,7 +51,8 @@ UTubs::UTubs(const std::string& pName,
     message << "Invalid values for radii in solid: " << GetName()
             << std::endl
             << "pRMin = " << pRMin << ", pRMax = " << pRMax;
-    UUtils::Exception("UTubs::UTubs()", "GeomSolids0002", FatalErrorInArguments, 1, message.str().c_str());
+    UUtils::Exception("UTubs::UTubs()", "GeomSolids0002",
+                      UFatalErrorInArguments, 1, message.str().c_str());
   }
 
   // Check angles
@@ -158,9 +160,9 @@ inline VUSolid::EnumInside UTubs::Inside(const UVector3& p) const
   static const double halfRadTolerance = kRadTolerance * 0.5;
   static const double halfAngTolerance = kAngTolerance * 0.5;
 
-  if (std::fabs(p.z) <= fDz - halfCarTolerance)
+  if (std::fabs(p.z()) <= fDz - halfCarTolerance)
   {
-    r2 = p.x * p.x + p.y * p.y;
+    r2 = p.x() * p.x() + p.y() * p.y();
 
     if (fRMin)
     {
@@ -184,14 +186,14 @@ inline VUSolid::EnumInside UTubs::Inside(const UVector3& p) const
         // Try inner tolerant phi boundaries (=>inside)
         // if not inside, try outer tolerant phi boundaries
 
-        if ((tolRMin == 0) && (std::fabs(p.x) <= halfCarTolerance)
-            && (std::fabs(p.y) <= halfCarTolerance))
+        if ((tolRMin == 0) && (std::fabs(p.x()) <= halfCarTolerance)
+            && (std::fabs(p.y()) <= halfCarTolerance))
         {
           in = eSurface;
         }
         else
         {
-          pPhi = std::atan2(p.y, p.x);
+          pPhi = std::atan2(p.y(), p.x());
           if (pPhi < -halfAngTolerance)
           {
             pPhi += 2 * UUtils::kPi;  // 0<=pPhi<2UUtils::kPi
@@ -254,7 +256,7 @@ inline VUSolid::EnumInside UTubs::Inside(const UVector3& p) const
         }
         else // Try outer tolerant phi boundaries only
         {
-          pPhi = std::atan2(p.y, p.x);
+          pPhi = std::atan2(p.y(), p.x());
 
           if (pPhi < -halfAngTolerance)
           {
@@ -289,10 +291,10 @@ inline VUSolid::EnumInside UTubs::Inside(const UVector3& p) const
       }
     }
   }
-  else if (std::fabs(p.z) <= fDz + halfCarTolerance)
+  else if (std::fabs(p.z()) <= fDz + halfCarTolerance)
   {
     // Check within tolerant r limits
-    r2 = p.x * p.x + p.y * p.y;
+    r2 = p.x() * p.x() + p.y() * p.y();
     tolRMin = fRMin - halfRadTolerance;
     tolRMax = fRMax + halfRadTolerance;
 
@@ -310,7 +312,7 @@ inline VUSolid::EnumInside UTubs::Inside(const UVector3& p) const
       }
       else // Try outer tolerant phi boundaries
       {
-        pPhi = std::atan2(p.y, p.x);
+        pPhi = std::atan2(p.y(), p.x());
 
         if (pPhi < -halfAngTolerance)
         {
@@ -367,17 +369,17 @@ bool UTubs::Normal(const UVector3& p, UVector3& n) const
   UVector3 nZ = UVector3(0, 0, 1.0);
   UVector3 nR, nPs, nPe;
 
-  rho = std::sqrt(p.x * p.x + p.y * p.y);
+  rho = std::sqrt(p.x() * p.x() + p.y() * p.y());
 
   distRMin = std::fabs(rho - fRMin);
   distRMax = std::fabs(rho - fRMax);
-  distZ   = std::fabs(std::fabs(p.z) - fDz);
+  distZ   = std::fabs(std::fabs(p.z()) - fDz);
 
   if (!fPhiFullTube)    // Protected against (0,0,z)
   {
     if (rho > halfCarTolerance)
     {
-      pPhi = std::atan2(p.y, p.x);
+      pPhi = std::atan2(p.y(), p.x());
 
       if (pPhi < fSPhi - halfCarTolerance)
       {
@@ -401,7 +403,7 @@ bool UTubs::Normal(const UVector3& p, UVector3& n) const
   }
   if (rho > halfCarTolerance)
   {
-    nR = UVector3(p.x / rho, p.y / rho, 0);
+    nR = UVector3(p.x() / rho, p.y() / rho, 0);
   }
 
   if (distRMax <= halfCarTolerance)
@@ -430,7 +432,7 @@ bool UTubs::Normal(const UVector3& p, UVector3& n) const
   if (distZ <= halfCarTolerance)
   {
     noSurfaces ++;
-    if (p.z >= 0.)
+    if (p.z() >= 0.)
     {
       sumnorm += nZ;
     }
@@ -443,9 +445,9 @@ bool UTubs::Normal(const UVector3& p, UVector3& n) const
   {
 #ifdef UDEBUG
     UUtils::Exception("UTubs::SurfaceNormal(p)", "GeomSolids1002",
-                      Warning, 1, "Point p is not on surface !?");
+                      UWarning, 1, "Point p is not on surface !?");
     int oldprc = cout.precision(20);
-    cout << "UTubs::SN ( " << p.x << ", " << p.y << ", " << p.z << " ); "
+    cout << "UTubs::SN ( " << p.x() << ", " << p.y() << ", " << p.z() << " ); "
          << std::endl << std::endl;
     cout.precision(oldprc);
 #endif
@@ -477,11 +479,11 @@ UVector3 UTubs::ApproxSurfaceNormal(const UVector3& p) const
   double rho, phi;
   double distZ, distRMin, distRMax, distSPhi, distEPhi, distMin;
 
-  rho = std::sqrt(p.x * p.x + p.y * p.y);
+  rho = std::sqrt(p.x() * p.x() + p.y() * p.y());
 
   distRMin = std::fabs(rho - fRMin);
   distRMax = std::fabs(rho - fRMax);
-  distZ   = std::fabs(std::fabs(p.z) - fDz);
+  distZ   = std::fabs(std::fabs(p.z()) - fDz);
 
   if (distRMin < distRMax) // First minimum
   {
@@ -511,7 +513,7 @@ UVector3 UTubs::ApproxSurfaceNormal(const UVector3& p) const
   }
   if (!fPhiFullTube &&  rho)  // Protected against (0,0,z)
   {
-    phi = std::atan2(p.y, p.x);
+    phi = std::atan2(p.y(), p.x());
 
     if (phi < 0)
     {
@@ -547,17 +549,17 @@ UVector3 UTubs::ApproxSurfaceNormal(const UVector3& p) const
   {
     case kNRMin : // Inner radius
     {
-      norm = UVector3(-p.x / rho, -p.y / rho, 0);
+      norm = UVector3(-p.x() / rho, -p.y() / rho, 0);
       break;
     }
     case kNRMax : // Outer radius
     {
-      norm = UVector3(p.x / rho, p.y / rho, 0);
+      norm = UVector3(p.x() / rho, p.y() / rho, 0);
       break;
     }
     case kNZ :    // + or - dz
     {
-      if (p.z > 0)
+      if (p.z() > 0)
       {
         norm = UVector3(0, 0, 1);
       }
@@ -581,7 +583,7 @@ UVector3 UTubs::ApproxSurfaceNormal(const UVector3& p) const
     {
       // DumpInfo();
       UUtils::Exception("UTubs::ApproxSurfaceNormal()",
-                        "GeomSolids1002", Warning, 1,
+                        "GeomSolids1002", UWarning, 1,
                         "Undefined side for valid surface normal to solid.");
       break;
     }
@@ -646,19 +648,19 @@ double UTubs::DistanceToIn(const UVector3& p, const UVector3& v, double) const
   tolIDz = fDz - halfCarTolerance;
   tolODz = fDz + halfCarTolerance;
 
-  if (std::fabs(p.z) >= tolIDz)
+  if (std::fabs(p.z()) >= tolIDz)
   {
-    if (p.z * v.z < 0)   // at +Z going in -Z or visa versa
+    if (p.z() * v.z() < 0)   // at +Z going in -Z or visa versa
     {
-      sd = (std::fabs(p.z) - fDz) / std::fabs(v.z); // Z intersect distance
+      sd = (std::fabs(p.z()) - fDz) / std::fabs(v.z()); // Z intersect distance
 
       if (sd < 0.0)
       {
         sd = 0.0;
       }
 
-      xi   = p.x + sd * v.x;              // Intersection coords
-      yi   = p.y + sd * v.y;
+      xi   = p.x() + sd * v.x();              // Intersection coords
+      yi   = p.y() + sd * v.y();
       rho2 = xi * xi + yi * yi;
 
       // Check validity of intersection
@@ -705,9 +707,9 @@ double UTubs::DistanceToIn(const UVector3& p, const UVector3& v, double) const
   // Hence (v.x^2+v.y^2)t^2+ 2t(p.x*v.x+p.y*v.y)+p.x^2+p.y^2-R^2=0
   //            t1                t2                t3
 
-  t1 = 1.0 - v.z * v.z;
-  t2 = p.x * v.x + p.y * v.y;
-  t3 = p.x * p.x + p.y * p.y;
+  t1 = 1.0 - v.z() * v.z();
+  t2 = p.x() * v.x() + p.y() * v.y();
+  t3 = p.x() * p.x() + p.y() * p.y();
 
   if (t1 > 0)          // Check not || to z axis
   {
@@ -734,7 +736,7 @@ double UTubs::DistanceToIn(const UVector3& p, const UVector3& v, double) const
           }
           // Check z intersection
           //
-          zi = p.z + sd * v.z;
+          zi = p.z() + sd * v.z();
           if (std::fabs(zi) <= tolODz)
           {
             // Z ok. Check phi intersection if reqd
@@ -745,8 +747,8 @@ double UTubs::DistanceToIn(const UVector3& p, const UVector3& v, double) const
             }
             else
             {
-              xi     = p.x + sd * v.x;
-              yi     = p.y + sd * v.y;
+              xi     = p.x() + sd * v.x();
+              yi     = p.y() + sd * v.y();
               cosPsi = (xi * fCosCPhi + yi * fSinCPhi) / fRMax;
               if (cosPsi >= fCosHDPhiIT)
               {
@@ -762,13 +764,13 @@ double UTubs::DistanceToIn(const UVector3& p, const UVector3& v, double) const
       // Inside outer radius :
       // check not inside, and heading through tubs (-> 0 to in)
 
-      if ((t3 > tolIRMin2) && (t2 < 0) && (std::fabs(p.z) <= tolIDz))
+      if ((t3 > tolIRMin2) && (t2 < 0) && (std::fabs(p.z()) <= tolIDz))
       {
         // Inside both radii, delta r -ve, inside z extent
 
         if (!fPhiFullTube)
         {
-          inum   = p.x * fCosCPhi + p.y * fSinCPhi;
+          inum   = p.x() * fCosCPhi + p.y() * fSinCPhi;
           iden   = std::sqrt(t3);
           cosPsi = inum / iden;
           if (cosPsi >= fCosHDPhiIT)
@@ -864,7 +866,7 @@ double UTubs::DistanceToIn(const UVector3& p, const UVector3& v, double) const
             double fTerm = sd - std::fmod(sd, dRmax);
             sd = fTerm + DistanceToIn(p + fTerm * v, v);
           }
-          zi = p.z + sd * v.z;
+          zi = p.z() + sd * v.z();
           if (std::fabs(zi) <= tolODz)
           {
             // Z ok. Check phi
@@ -875,8 +877,8 @@ double UTubs::DistanceToIn(const UVector3& p, const UVector3& v, double) const
             }
             else
             {
-              xi     = p.x + sd * v.x;
-              yi     = p.y + sd * v.y;
+              xi     = p.x() + sd * v.x();
+              yi     = p.y() + sd * v.y();
               cosPsi = (xi * fCosCPhi + yi * fSinCPhi) / fRMin;
               if (cosPsi >= fCosHDPhiIT)
               {
@@ -905,11 +907,11 @@ double UTubs::DistanceToIn(const UVector3& p, const UVector3& v, double) const
   {
     // First phi surface (Starting phi)
     //
-    Comp    = v.x * fSinSPhi - v.y * fCosSPhi;
+    Comp    = v.x() * fSinSPhi - v.y() * fCosSPhi;
 
     if (Comp < 0)    // Component in outwards normal dirn
     {
-      Dist = (p.y * fCosSPhi - p.x * fSinSPhi);
+      Dist = (p.y() * fCosSPhi - p.x() * fSinSPhi);
 
       if (Dist < halfCarTolerance)
       {
@@ -921,20 +923,20 @@ double UTubs::DistanceToIn(const UVector3& p, const UVector3& v, double) const
           {
             sd = 0.0;
           }
-          zi = p.z + sd * v.z;
+          zi = p.z() + sd * v.z();
           if (std::fabs(zi) <= tolODz)
           {
-            xi   = p.x + sd * v.x;
-            yi   = p.y + sd * v.y;
+            xi   = p.x() + sd * v.x();
+            yi   = p.y() + sd * v.y();
             rho2 = xi * xi + yi * yi;
 
             if (((rho2 >= tolIRMin2) && (rho2 <= tolIRMax2))
                 || ((rho2 > tolORMin2) && (rho2 < tolIRMin2)
-                    && (v.y * fCosSPhi - v.x * fSinSPhi > 0)
-                    && (v.x * fCosSPhi + v.y * fSinSPhi >= 0))
+                    && (v.y() * fCosSPhi - v.x() * fSinSPhi > 0)
+                    && (v.x() * fCosSPhi + v.y() * fSinSPhi >= 0))
                 || ((rho2 > tolIRMax2) && (rho2 < tolORMax2)
-                    && (v.y * fCosSPhi - v.x * fSinSPhi > 0)
-                    && (v.x * fCosSPhi + v.y * fSinSPhi < 0)))
+                    && (v.y() * fCosSPhi - v.x() * fSinSPhi > 0)
+                    && (v.x() * fCosSPhi + v.y() * fSinSPhi < 0)))
             {
               // z and r intersections good
               // - check intersecting with correct half-plane
@@ -951,11 +953,11 @@ double UTubs::DistanceToIn(const UVector3& p, const UVector3& v, double) const
 
     // Second phi surface (Ending phi)
 
-    Comp    = -(v.x * fSinEPhi - v.y * fCosEPhi);
+    Comp    = -(v.x() * fSinEPhi - v.y() * fCosEPhi);
 
     if (Comp < 0)   // Component in outwards normal dirn
     {
-      Dist = -(p.y * fCosEPhi - p.x * fSinEPhi);
+      Dist = -(p.y() * fCosEPhi - p.x() * fSinEPhi);
 
       if (Dist < halfCarTolerance)
       {
@@ -967,19 +969,19 @@ double UTubs::DistanceToIn(const UVector3& p, const UVector3& v, double) const
           {
             sd = 0;
           }
-          zi = p.z + sd * v.z;
+          zi = p.z() + sd * v.z();
           if (std::fabs(zi) <= tolODz)
           {
-            xi   = p.x + sd * v.x;
-            yi   = p.y + sd * v.y;
+            xi   = p.x() + sd * v.x();
+            yi   = p.y() + sd * v.y();
             rho2 = xi * xi + yi * yi;
             if (((rho2 >= tolIRMin2) && (rho2 <= tolIRMax2))
                 || ((rho2 > tolORMin2)  && (rho2 < tolIRMin2)
-                    && (v.x * fSinEPhi - v.y * fCosEPhi > 0)
-                    && (v.x * fCosEPhi + v.y * fSinEPhi >= 0))
+                    && (v.x() * fSinEPhi - v.y() * fCosEPhi > 0)
+                    && (v.x() * fCosEPhi + v.y() * fSinEPhi >= 0))
                 || ((rho2 > tolIRMax2) && (rho2 < tolORMax2)
-                    && (v.x * fSinEPhi - v.y * fCosEPhi > 0)
-                    && (v.x * fCosEPhi + v.y * fSinEPhi < 0)))
+                    && (v.x() * fSinEPhi - v.y() * fCosEPhi > 0)
+                    && (v.x() * fCosEPhi + v.y() * fSinEPhi < 0)))
             {
               // z and r intersections good
               // - check intersecting with correct half-plane
@@ -1033,10 +1035,10 @@ double UTubs::SafetyFromOutside(const UVector3& p, bool aAccurate) const
   double safePhi;
   bool outside;
 
-  rho  = std::sqrt(p.x * p.x + p.y * p.y);
+  rho  = std::sqrt(p.x() * p.x() + p.y() * p.y());
   safe1 = fRMin - rho;
   safe2 = rho - fRMax;
-  safe3 = std::fabs(p.z) - fDz;
+  safe3 = std::fabs(p.z()) - fDz;
 
   if (safe1 > safe2)
   {
@@ -1107,12 +1109,12 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
 
   // Z plane intersection
 
-  if (v.z > 0)
+  if (v.z() > 0)
   {
-    pdist = fDz - p.z;
+    pdist = fDz - p.z();
     if (pdist > halfCarTolerance)
     {
-      snxt = pdist / v.z;
+      snxt = pdist / v.z();
       side = kPZ;
     }
     else
@@ -1122,13 +1124,13 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
       return snxt = 0;
     }
   }
-  else if (v.z < 0)
+  else if (v.z() < 0)
   {
-    pdist = fDz + p.z;
+    pdist = fDz + p.z();
 
     if (pdist > halfCarTolerance)
     {
-      snxt = -pdist / v.z;
+      snxt = -pdist / v.z();
       side = kMZ;
     }
     else
@@ -1155,9 +1157,9 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
   //
   //            t1                t2                    t3
 
-  t1   = 1.0 - v.z * v.z;   // since v normalised
-  t2   = p.x * v.x + p.y * v.y;
-  t3   = p.x * p.x + p.y * p.y;
+  t1   = 1.0 - v.z() * v.z();   // since v normalised
+  t2   = p.x() * v.x() + p.y() * v.y();
+  t3   = p.x() * p.x() + p.y() * p.y();
 
   if (snxt > 10 * (fDz + fRMax))
   {
@@ -1200,7 +1202,7 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
       {
         // On tolerant boundary & heading outwards (or perpendicular to)
         // outer radial surface -> leaving immediately
-          n = UVector3(p.x / fRMax, p.y / fRMax, 0);
+          n = UVector3(p.x() / fRMax, p.y() / fRMax, 0);
           validNorm = true;
           return snxt = 0; // Leaving by rmax immediately
       }
@@ -1229,7 +1231,7 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
           else
           {
             validNorm = false;  // Concave side
-            n = UVector3(-p.x / fRMin, -p.y / fRMin, 0);
+            n = UVector3(-p.x() / fRMin, -p.y() / fRMin, 0);
             return snxt = 0.0;
           }
         }
@@ -1246,7 +1248,7 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
           else // Case: On the border+t2<kRadTolerance
             //       (v is perpendicular to the surface)
           {
-            n = UVector3(p.x / fRMax, p.y / fRMax, 0);
+            n = UVector3(p.x() / fRMax, p.y() / fRMax, 0);
             validNorm = true;
             return snxt = 0.0;
           }
@@ -1267,7 +1269,7 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
         else // Case: On the border+t2<kRadTolerance
           //       (v is perpendicular to the surface)
         {
-          n = UVector3(p.x / fRMax, p.y / fRMax, 0);
+          n = UVector3(p.x() / fRMax, p.y() / fRMax, 0);
           validNorm = true;
           return snxt = 0.0;
         }
@@ -1281,7 +1283,7 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
       // add angle calculation with correction
       // of the difference in domain of atan2 and Sphi
       //
-      vphi = std::atan2(v.y, v.x);
+      vphi = std::atan2(v.y(), v.x());
 
       if (vphi < fSPhi - halfAngTolerance)
       {
@@ -1293,17 +1295,17 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
       }
 
 
-      if (p.x || p.y)    // Check if on z axis (rho not needed later)
+      if (p.x() || p.y())    // Check if on z axis (rho not needed later)
       {
         // pDist -ve when inside
 
-        pDistS = p.x * fSinSPhi - p.y * fCosSPhi;
-        pDistE = -p.x * fSinEPhi + p.y * fCosEPhi;
+        pDistS = p.x() * fSinSPhi - p.y() * fCosSPhi;
+        pDistE = -p.x() * fSinEPhi + p.y() * fCosEPhi;
 
         // Comp -ve when in direction of outwards normal
 
-        compS  = -fSinSPhi * v.x + fCosSPhi * v.y;
-        compE  =  fSinEPhi * v.x - fCosEPhi * v.y;
+        compS  = -fSinSPhi * v.x() + fCosSPhi * v.y();
+        compE  =  fSinEPhi * v.x() - fCosEPhi * v.y();
 
         sidephi = kNull;
 
@@ -1320,8 +1322,8 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
 
             if (sphi >= -halfCarTolerance)
             {
-              xi = p.x + sphi * v.x;
-              yi = p.y + sphi * v.y;
+              xi = p.x() + sphi * v.x();
+              yi = p.y() + sphi * v.y();
 
               // Check intersecting with correct half-plane
               // (if not -> no intersect)
@@ -1366,8 +1368,8 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
             //
             if ((sphi2 > -halfCarTolerance) && (sphi2 < sphi))
             {
-              xi = p.x + sphi2 * v.x;
-              yi = p.y + sphi2 * v.y;
+              xi = p.x() + sphi2 * v.x();
+              yi = p.y() + sphi2 * v.y();
 
               if ((std::fabs(xi) <= VUSolid::Tolerance()) && (std::fabs(yi) <= VUSolid::Tolerance()))
               {
@@ -1447,15 +1449,15 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
         // Note: returned vector not normalised
         // (divide by fRMax for Unit vector)
         //
-        xi = p.x + snxt * v.x;
-        yi = p.y + snxt * v.y;
+        xi = p.x() + snxt * v.x();
+        yi = p.y() + snxt * v.y();
         n = UVector3(xi / fRMax, yi / fRMax, 0);
         validNorm = true;
         break;
 
       case kRMin:
-        xi = p.x + snxt * v.x;
-        yi = p.y + snxt * v.y;
+        xi = p.x() + snxt * v.x();
+        yi = p.y() + snxt * v.y();
         n = UVector3(-xi / fRMin, -yi / fRMin, 0);
         validNorm = false;  // Rmin is inconvex
         break;
@@ -1504,18 +1506,18 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
         message << "Undefined side for valid surface normal to solid."
                 << std::endl
                 << "Position:"  << std::endl << std::endl
-                << "p.x = "  << p.x << " mm" << std::endl
-                << "p.y = "  << p.y << " mm" << std::endl
-                << "p.z = "  << p.z << " mm" << std::endl << std::endl
+                << "p.x = "  << p.x() << " mm" << std::endl
+                << "p.y = "  << p.y() << " mm" << std::endl
+                << "p.z = "  << p.z() << " mm" << std::endl << std::endl
                 << "Direction:" << std::endl << std::endl
-                << "v.x = "  << v.x << std::endl
-                << "v.y = "  << v.y << std::endl
-                << "v.z = "  << v.z << std::endl << std::endl
+                << "v.x = "  << v.x() << std::endl
+                << "v.y = "  << v.y() << std::endl
+                << "v.z = "  << v.z() << std::endl << std::endl
                 << "Proposed distance :" << std::endl << std::endl
                 << "snxt = "    << snxt << " mm" << std::endl;
         message.precision(oldprc);
         UUtils::Exception("UTubs::DistanceToOut(p,v,..)", "GeomSolids1002",
-                          Warning, 1, message.str().c_str());
+                          UWarning, 1, message.str().c_str());
         break;
     }
   }
@@ -1534,7 +1536,7 @@ double UTubs::DistanceToOut(const UVector3& p, const UVector3& v, UVector3& n, b
 double UTubs::SafetyFromInside(const UVector3& p, bool) const
 {
   double safe = 0.0, rho, safeZ;
-  rho = std::sqrt(p.x * p.x + p.y * p.y);
+  rho = std::sqrt(p.x() * p.x() + p.y() * p.y());
 
 #ifdef UDEBUG
   if (Inside(p) == eOutside)
@@ -1543,16 +1545,16 @@ double UTubs::SafetyFromInside(const UVector3& p, bool) const
     cout << std::endl;
     DumpInfo();
     cout << "Position:" << std::endl << std::endl;
-    cout << "p.x = "   << p.x << " mm" << std::endl;
-    cout << "p.y = "   << p.y << " mm" << std::endl;
-    cout << "p.z = "   << p.z << " mm" << std::endl << std::endl;
+    cout << "p.x = "   << p.x() << " mm" << std::endl;
+    cout << "p.y = "   << p.y() << " mm" << std::endl;
+    cout << "p.z = "   << p.z() << " mm" << std::endl << std::endl;
     cout.precision(oldprc);
     UUtils::Exception("UTubs::DistanceToOut(p)", "GeomSolids1002",
-                      Warning, 1, "Point p is outside !?");
+                      UWarning, 1, "Point p is outside !?");
   }
 #endif
   safe = SafetyFromInsideR(p, rho);
-  safeZ = fDz - std::fabs(p.z);
+  safeZ = fDz - std::fabs(p.z());
 
   if (safeZ < safe)
   {
diff --git a/source/externals/usolids/src/UUtils.cc b/source/externals/usolids/src/UUtils.cc
index 57598d7716a..7b570dad0e8 100644
--- a/source/externals/usolids/src/UUtils.cc
+++ b/source/externals/usolids/src/UUtils.cc
@@ -33,14 +33,14 @@ void UUtils::TransformLimits(UVector3& min, UVector3& max, const UTransform3D& t
   // "transformation"
   UVector3 vertices[8] =     // Detemination of the vertices thanks to the extension of each solid:
   {
-    UVector3(min.x, min.y, min.z), // 1st vertice:
-    UVector3(min.x, max.y, min.z), // 2nd vertice:
-    UVector3(max.x, max.y, min.z),
-    UVector3(max.x, min.y, min.z),
-    UVector3(min.x, min.y, max.z),
-    UVector3(min.x, max.y, max.z),
-    UVector3(max.x, max.y, max.z),
-    UVector3(max.x, min.y, max.z)
+    UVector3(min.x(), min.y(), min.z()), // 1st vertice:
+    UVector3(min.x(), max.y(), min.z()), // 2nd vertice:
+    UVector3(max.x(), max.y(), min.z()),
+    UVector3(max.x(), min.y(), min.z()),
+    UVector3(min.x(), min.y(), max.z()),
+    UVector3(min.x(), max.y(), max.z()),
+    UVector3(max.x(), max.y(), max.z()),
+    UVector3(max.x(), min.y(), max.z())
   };
 
   min.Set(kInfinity);
@@ -55,14 +55,14 @@ void UUtils::TransformLimits(UVector3& min, UVector3& max, const UTransform3D& t
     UVector3 current = transformation.GlobalPoint(vertices[i]);
 
     // If need be, replacement of the min & max values:
-    if (current.x > max.x) max.x = current.x;
-    if (current.x < min.x) min.x = current.x;
+    if (current.x() > max.x()) max.x() = current.x();
+    if (current.x() < min.x()) min.x() = current.x();
 
-    if (current.y > max.y) max.y = current.y;
-    if (current.y < min.y) min.y = current.y;
+    if (current.y() > max.y()) max.y() = current.y();
+    if (current.y() < min.y()) min.y() = current.y();
 
-    if (current.z > max.z) max.z = current.z;
-    if (current.z < min.z) min.z = current.z;
+    if (current.z() > max.z()) max.z() = current.z();
+    if (current.z() < min.z()) min.z() = current.z();
   }
 }
 
@@ -142,19 +142,19 @@ void UUtils:: Exception(const char* originOfException,
           << description << std::endl;
   switch (severity)
   {
-    case FatalError:
+    case UFatalError:
       std::cerr << es_banner << message.str() << "*** Fatal Exception ***"
                 << ee_banner << std::endl;
       break;
-    case FatalErrorInArguments:
+    case UFatalErrorInArguments:
       std::cerr << es_banner << message.str() << "*** Fatal Error In Argument ***"
                 << ee_banner << std::endl;
       break;
-    case Error:
+    case UError:
       std::cerr << es_banner << message.str() << "*** Error ***" << level
                 << ee_banner << std::endl;
       break;
-    case Warning:
+    case UWarning:
       std::cerr << ws_banner << message.str() << "*** This is just a warning message ***"
                 << we_banner << std::endl;
       toBeAborted = false;
diff --git a/source/externals/usolids/src/UVCSGfaceted.cc b/source/externals/usolids/src/UVCSGfaceted.cc
index 4c87a930235..1f5cda18386 100644
--- a/source/externals/usolids/src/UVCSGfaceted.cc
+++ b/source/externals/usolids/src/UVCSGfaceted.cc
@@ -214,7 +214,7 @@ bool UVCSGfaceted::Normal(const UVector3& p, UVector3& n) const
 
   UBits bits(numFace);
 
-  int index = GetSection(p.z);
+  int index = GetSection(p.z());
   const vector<int>& candidates = fCandidates[index];
   int size = candidates.size();
   for (int i = 0; i < size; ++i)
@@ -417,7 +417,7 @@ double UVCSGfaceted::DistanceTo(const UVector3& p,
 //
 UGeometryType UVCSGfaceted::GetEntityType() const
 {
-  return std::string("UCSGfaceted");
+  return std::string("VCSGfaceted");
 }
 
 
@@ -601,7 +601,7 @@ double UVCSGfaceted::SafetyFromOutside(const UVector3& p, bool accurate) const
 {
   if (!accurate)
   {
-    UVector3 pb(p.x, p.y, p.z - fBoxShift);
+    UVector3 pb(p.x(), p.y(), p.z() - fBoxShift);
     return fBox.SafetyFromOutside(pb);
   }
   return DistanceTo(p, false);
@@ -672,7 +672,7 @@ double UVCSGfaceted::DistanceToIn(const UVector3& p, const UVector3& v, double /
 {
   if (fNoVoxels) return DistanceToInNoVoxels(p, v);
 
-  UVector3 pb(p.x, p.y, p.z - fBoxShift);
+  UVector3 pb(p.x(), p.y(), p.z() - fBoxShift);
 
   double idistance, shift;
   idistance = fBox.DistanceToIn(pb, v); // using only box, this appears
@@ -687,10 +687,10 @@ double UVCSGfaceted::DistanceToIn(const UVector3& p, const UVector3& v, double /
   //  idistance = enclosingCylinder->DistanceTo(pb, v);
   //  if (idistance == UUtils::kInfinity) return idistance;
 
-  double z = p.z + idistance * v.z;
+  double z = p.z() + idistance * v.z();
   int index = GetSection(z);
-  int increment = (v.z > 0) ? 1 : -1;
-  if (std::fabs(v.z) < fgTolerance) increment = 0;
+  int increment = (v.z() > 0) ? 1 : -1;
+  if (std::fabs(v.z()) < fgTolerance) increment = 0;
 
   double distance = UUtils::kInfinity;
   double distFromSurface = UUtils::kInfinity;
@@ -736,7 +736,7 @@ double UVCSGfaceted::DistanceToIn(const UVector3& p, const UVector3& v, double /
     if (index < 0 || index > fMaxSection)
       break;
     int newz = increment > 0 ? index  : index + 1;
-    shift = (fZs[newz] - z) / v.z;
+    shift = (fZs[newz] - z) / v.z();
   }
   while (idistance + shift < distance);
 
@@ -757,8 +757,8 @@ double UVCSGfaceted::DistanceToOut(const UVector3& p, const UVector3&  v, UVecto
 {
   if (fNoVoxels) return DistanceToOutNoVoxels(p, v, n, aConvex);
 
-  int index =  GetSection(p.z);
-  int increment = (v.z > 0) ? 1 : -1;
+  int index =  GetSection(p.z());
+  int increment = (v.z() > 0) ? 1 : -1;
 
   bool allBehind = true;
   double distance = UUtils::kInfinity;
@@ -810,7 +810,7 @@ double UVCSGfaceted::DistanceToOut(const UVector3& p, const UVector3&  v, UVecto
     if (index < 0 || index > fMaxSection)
       break;
     int newz = increment > 0 ? index  : index + 1;
-    shift = (fZs[newz] - p.z) / v.z;
+    shift = (fZs[newz] - p.z()) / v.z();
   }
   while (shift < distance);
 
@@ -850,7 +850,7 @@ VUSolid::EnumInside UVCSGfaceted::Inside(const UVector3& p) const
 
 //  if (fEnclosingCylinder->MustBeOutside(p)) return eOutside;
 
-  int index =  GetSection(p.z);
+  int index =  GetSection(p.z());
   double shift;
 
   UBits bits(numFace);
@@ -885,13 +885,13 @@ VUSolid::EnumInside UVCSGfaceted::Inside(const UVector3& p) const
     {
       if (--index >= 0)
       {
-        shift = fZs[index + 1] - p.z;
+        shift = fZs[index + 1] - p.z();
         if (shift < best) continue;
       }
       index = middle;
     }
     if (++index > fMaxSection) break;
-    shift = p.z - fZs[index];
+    shift = p.z() - fZs[index];
   }
   while (shift > best);
 
@@ -923,7 +923,7 @@ double UVCSGfaceted::SafetyFromInside(const UVector3& p, bool) const
 {
   if (fNoVoxels) return SafetyFromInsideNoVoxels(p);
 
-  int index = UVoxelizer::BinarySearch(fZs, p.z);
+  int index = UVoxelizer::BinarySearch(fZs, p.z());
   if (index < 0 || index > fMaxSection) return 0;
 
   UBits bits(numFace);
diff --git a/source/externals/usolids/src/UVector3.cc b/source/externals/usolids/src/UVector3.cc
index 7a845fb8b7d..95978ead3dd 100644
--- a/source/externals/usolids/src/UVector3.cc
+++ b/source/externals/usolids/src/UVector3.cc
@@ -21,9 +21,9 @@
 UVector3::UVector3(double theta, double phi)
 {
   // Creates a unit vector based on theta and phi angles
-  x = std::sin(theta) * std::cos(phi);
-  y = std::sin(theta) * std::sin(phi);
-  z = std::cos(theta);
+  x_ = std::sin(theta) * std::cos(phi);
+  y_ = std::sin(theta) * std::sin(phi);
+  z_ = std::cos(theta);
 }
 
 //______________________________________________________________________________
@@ -64,7 +64,7 @@ double UVector3::Perp() const
 double UVector3::Phi() const
 {
   //return the  azimuth angle. returns phi from -pi to pi
-  return x == 0.0 && y == 0.0 ? 0.0 : UUtils::ATan2(y, x);
+  return x_ == 0.0 && y_ == 0.0 ? 0.0 : UUtils::ATan2(y_, x_);
 }
 
 //______________________________________________________________________________
@@ -73,7 +73,7 @@ double UVector3::Theta() const
   //return the polar angle from 0 to pi
   double mag2 = Mag2();
   if (mag2 == 0.0) return 0.0;
-  return UUtils::ACos(z / std::sqrt(mag2));
+  return UUtils::ACos(z_ / std::sqrt(mag2));
 }
 
 //______________________________________________________________________________
@@ -81,7 +81,7 @@ UVector3 UVector3::Unit() const
 {
   // return unit vector parallel to this.
   double  tot = Mag2();
-  UVector3 p(x, y, z);
+  UVector3 p(x_, y_, z_);
   return tot > 0.0 ? p *= (1.0 / std::sqrt(tot)) : p;
 }
 
@@ -92,9 +92,9 @@ double UVector3::Normalize()
   double  mag = Mag2();
   if (mag == 0.0) return mag;;
   mag = std::sqrt(mag);
-  x /= mag;
-  y /= mag;
-  z /= mag;
+  x_ /= mag;
+  y_ /= mag;
+  z_ /= mag;
   return mag;
 }
 
@@ -104,9 +104,9 @@ void UVector3::RotateX(double angle)
   //rotate vector around X
   double s = std::sin(angle);
   double c = std::cos(angle);
-  double yy = y;
-  y = c * yy - s * z;
-  z = s * yy + c * z;
+  double yy = y_;
+  y_ = c * yy - s * z_;
+  z_ = s * yy + c * z_;
 }
 
 //______________________________________________________________________________
@@ -115,9 +115,9 @@ void UVector3::RotateY(double angle)
   //rotate vector around Y
   double s = std::sin(angle);
   double c = std::cos(angle);
-  double zz = z;
-  z = c * zz - s * x;
-  x = s * zz + c * x;
+  double zz = z_;
+  z_ = c * zz - s * x_;
+  x_ = s * zz + c * x_;
 }
 
 //______________________________________________________________________________
@@ -126,39 +126,7 @@ void UVector3::RotateZ(double angle)
   //rotate vector around Z
   double s = std::sin(angle);
   double c = std::cos(angle);
-  double xx = x;
-  x = c * xx - s * y;
-  y = s * xx + c * y;
+  double xx = x_;
+  x_ = c * xx - s * y_;
+  y_ = s * xx + c * y_;
 }
-
-UVector3 operator + (const UVector3& a, const UVector3& b)
-{
-  return UVector3(a.x + b.x, a.y + b.y, a.z + b.z);
-}
-
-UVector3 operator - (const UVector3& a, const UVector3& b)
-{
-  return UVector3(a.x - b.x, a.y - b.y, a.z - b.z);
-}
-
-UVector3 operator * (const UVector3& p, double a)
-{
-  return UVector3(a * p.x, a * p.y, a * p.z);
-}
-
-UVector3 operator / (const UVector3& p, double a)
-{
-  a = 1. / a;
-  return UVector3(a * p.x, a * p.y, a * p.z);
-}
-
-UVector3 operator * (double a, const UVector3& p)
-{
-  return UVector3(a * p.x, a * p.y, a * p.z);
-}
-
-double operator * (const UVector3& a, const UVector3& b)
-{
-  return a.Dot(b);
-}
-
diff --git a/source/externals/usolids/src/UVoxelizer.cc b/source/externals/usolids/src/UVoxelizer.cc
index c74cd818c93..fa99d0813f4 100644
--- a/source/externals/usolids/src/UVoxelizer.cc
+++ b/source/externals/usolids/src/UVoxelizer.cc
@@ -437,7 +437,7 @@ void UVoxelizer::BuildBoundingBox(UVector3& amin, UVector3& amax, double toleran
     fBoundingBoxSize[i] = (max - min) / 2 + tolerance * 0.5;
     fBoundingBoxCenter[i] = min + fBoundingBoxSize[i];
   }
-  fBoundingBox = UBox("", fBoundingBoxSize.x, fBoundingBoxSize.y, fBoundingBoxSize.z);
+  fBoundingBox = UBox("", fBoundingBoxSize.x(), fBoundingBoxSize.y(), fBoundingBoxSize.z());
 }
 
 
@@ -886,18 +886,18 @@ int UVoxelizer::GetCandidatesVoxelArray(const UVector3& point, vector<int>& list
       int slice;
       if (fBoundaries[0].size() > 2)
       {
-        slice = BinarySearch(fBoundaries[0], point.x);
+        slice = BinarySearch(fBoundaries[0], point.x());
         if (!(mask = ((unsigned int*) fBitmasks[0].fAllBits)[slice])) return 0;
       }
       if (fBoundaries[1].size() > 2)
       {
-        slice = BinarySearch(fBoundaries[1], point.y);
+        slice = BinarySearch(fBoundaries[1], point.y());
         if (!(mask &= ((unsigned int*) fBitmasks[1].fAllBits)[slice]
              )) return 0;
       }
       if (fBoundaries[2].size() > 2)
       {
-        slice = BinarySearch(fBoundaries[2], point.z);
+        slice = BinarySearch(fBoundaries[2], point.z());
         if (!(mask &= ((unsigned int*) fBitmasks[2].fAllBits)[slice]
              )) return 0;
       }
@@ -1025,10 +1025,10 @@ double UVoxelizer::MinDistanceToBox(const UVector3& aPoint, const UVector3& f)
   // of its surfaces. The algorithm may be accurate or should provide a fast
   // underestimate.
   double safe, safx, safy, safz;
-  safe = safx = -f.x + std::abs(aPoint.x);
-  safy = -f.y + std::abs(aPoint.y);
+  safe = safx = -f.x() + std::abs(aPoint.x());
+  safy = -f.y() + std::abs(aPoint.y());
   if (safy > safe) safe = safy;
-  safz = -f.z + std::abs(aPoint.z);
+  safz = -f.z() + std::abs(aPoint.z());
   if (safz > safe) safe = safz;
   if (safe < 0.0) return 0.0; // point is inside
 //  if (!aAccurate) return safe;
@@ -1187,17 +1187,17 @@ UVoxelCandidatesIterator::UVoxelCandidatesIterator(const UVoxelizer &f, const UV
   if (carNodes > 1)
   {
     n = 1+(carNodes-1)/(8*sizeof(unsigned int));
-    int sliceX = UVoxelizer::BinarySearch(f.fBoundaries[0], point.x);
-    int sliceY = UVoxelizer::BinarySearch(f.fBoundaries[1], point.y);
-    int sliceZ = UVoxelizer::BinarySearch(f.fBoundaries[2], point.z);
+    int sliceX = UVoxelizer::BinarySearch(f.fBoundaries[0], point.x());
+    int sliceY = UVoxelizer::BinarySearch(f.fBoundaries[1], point.y());
+    int sliceZ = UVoxelizer::BinarySearch(f.fBoundaries[2], point.z());
 
     unsigned int *maskX = ((unsigned int *) f.fBitmasks[0].fAllBits) + sliceX*n;
-    maskXLeft = (sliceX && point.x == f.fBoundaries[0][sliceX]) ? maskX - n : NULL;
+    maskXLeft = (sliceX && point.x() == f.fBoundaries[0][sliceX]) ? maskX - n : NULL;
 
     unsigned int *maskY = ((unsigned int *) f.fBitmasks[1].fAllBits) + sliceY*n;
-    maskYLeft = (sliceY && point.y == f.fBoundaries[1][sliceY]) ? maskY - n : NULL;
+    maskYLeft = (sliceY && point.y() == f.fBoundaries[1][sliceY]) ? maskY - n : NULL;
     unsigned int *maskZ = ((unsigned int *) f.fBitmasks[2].fAllBits) + sliceZ*n;
-    maskZLeft = (sliceZ && point.z == f.fBoundaries[2][sliceZ]) ? maskZ - n  : NULL;
+    maskZLeft = (sliceZ && point.z() == f.fBoundaries[2][sliceZ]) ? maskZ - n  : NULL;
 
     if (sliceX == -1 || sliceX == f.fBoundaries[0].back()) nextAvailable = false;
     if (sliceY == -1 || sliceY == f.fBoundaries[1].back()) nextAvailable = false;
@@ -1205,9 +1205,9 @@ UVoxelCandidatesIterator::UVoxelCandidatesIterator(const UVoxelizer &f, const UV
   }
   else
   {
-    if (point.x < f.fBoundaries[0].front() || point.x > f.fBoundaries[0].back()) nextAvailable = false;
-    if (point.y < f.fBoundaries[1].front() || point.y > f.fBoundaries[1].back()) nextAvailable = false;
-    if (point.z < f.fBoundaries[2].front() || point.z > f.fBoundaries[2].back()) nextAvailable = false;
+    if (point.x() < f.fBoundaries[0].front() || point.x() > f.fBoundaries[0].back()) nextAvailable = false;
+    if (point.y() < f.fBoundaries[1].front() || point.y() > f.fBoundaries[1].back()) nextAvailable = false;
+    if (point.z() < f.fBoundaries[2].front() || point.z() > f.fBoundaries[2].back()) nextAvailable = false;
   }
 }
 
diff --git a/source/externals/usolids/src/VUSolid.cc b/source/externals/usolids/src/VUSolid.cc
index ef5c1cd97a6..96bb9432e8f 100644
--- a/source/externals/usolids/src/VUSolid.cc
+++ b/source/externals/usolids/src/VUSolid.cc
@@ -39,8 +39,8 @@ int UIntersectingCone::LineHitsCone2( const UVector3 &p,
 	const UVector3 &v,
 	double &s1, double &s2 )
 {
-	double x0 = p.x, y0 = p.y, z0 = p.z;
-	double tx = v.x, ty = v.y, tz = v.z;
+	double x0 = p.x(), y0 = p.y(), z0 = p.z();
+	double tx = v.x(), ty = v.y(), tz = v.z();
 
 	// Special case which might not be so rare: B = 0 (precisely)
 	//
@@ -114,8 +114,8 @@ int UIntersectingCone::LineHitsCone2( const UVector3 &p,
 	const UVector3 &v,
 	double &s1, double &s2 )
 {
-	double x0 = p.x, y0 = p.y, z0 = p.z;
-	double tx = v.x, ty = v.y, tz = v.z;
+	double x0 = p.x(), y0 = p.y(), z0 = p.z();
+	double tx = v.x(), ty = v.y(), tz = v.z();
 
 	// Special case which might not be so rare: B = 0 (precisely)
 	//
@@ -232,14 +232,14 @@ double VUSolid::EstimateCubicVolume(int nStat, double epsilon) const
 
   for(int i = 0; i < nStat; i++ )
   {
-    px = min.x+(max.x-min.x)*UUtils::Random();
-    py = min.y+(max.y-min.y)*UUtils::Random();
-    pz = min.z+(max.z-min.z)*UUtils::Random();
+    px = min.x()+(max.x()-min.x())*UUtils::Random();
+    py = min.y()+(max.y()-min.y())*UUtils::Random();
+    pz = min.z()+(max.z()-min.z())*UUtils::Random();
     p	= UVector3(px,py,pz);
     in = this->Inside(p);
     if(in != eOutside) iInside++;		
   }
-  volume = (max.x-min.x)*(max.y-min.y)*(max.z-min.z)*iInside/nStat;
+  volume = (max.x()-min.x())*(max.y()-min.y())*(max.z()-min.z())*iInside/nStat;
   return volume;
 }
 
@@ -283,9 +283,9 @@ double VUSolid::EstimateSurfaceArea(int nStat, double ell) const
 
   if(nStat < 100) { nStat = 100; }
 
-  double dX=max.x-min.x;
-  double dY=max.y-min.y;
-  double dZ=max.z-min.z;
+  double dX=max.x()-min.x();
+  double dY=max.y()-min.y();
+  double dZ=max.z()-min.z();
   if(ell<=0.)					// Automatic definition of skin thickness
   {
     double minval=dX;
@@ -295,13 +295,13 @@ double VUSolid::EstimateSurfaceArea(int nStat, double ell) const
   }
 
   double dd=2*ell;
-  min.x-=ell; min.y-=ell; min.z-=ell; dX+=dd; dY+=dd; dZ+=dd;
+  min.x()-=ell; min.y()-=ell; min.z()-=ell; dX+=dd; dY+=dd; dZ+=dd;
 
   for(int i = 0; i < nStat; i++ )
   {
-    px = min.x+dX*UUtils::Random();
-    py = min.y+dY*UUtils::Random();
-    pz = min.z+dZ*UUtils::Random();
+    px = min.x()+dX*UUtils::Random();
+    py = min.y()+dY*UUtils::Random();
+    pz = min.z()+dZ*UUtils::Random();
     p	= UVector3(px,py,pz);
     in = this->Inside(p);
     if(in != eOutside)
diff --git a/source/geometry/divisions/History b/source/geometry/divisions/History
index 8da5b781c8a..3f2a439b5ca 100644
--- a/source/geometry/divisions/History
+++ b/source/geometry/divisions/History
@@ -1,4 +1,4 @@
-$Id: History 79490 2014-03-05 15:23:33Z gcosmo $
+$Id: History 90699 2015-06-08 09:34:37Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,6 +17,16 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+June 2nd, 2015          G.Cosmo (geomdiv-V10-00-01)
+- Delete rotation matrix in destructor.
+
+June 2nd, 2015          P.Arce
+- Avoid creation/deletion of rotation matrix in G4VDivisionParameterisation
+  for ChangeRotMatrix(). Addressing problem report #1743.
+
+April 30th, 2015        G.Cosmo
+- Fixed Coverity defect in G4ReplicatedSlice for uninitialised pointer.
+
 March 5th, 2014         G.Cosmo (geomdiv-V10-00-00)
 - Added missing dependency to graphics_reps.
 
diff --git a/source/geometry/divisions/include/G4VDivisionParameterisation.hh b/source/geometry/divisions/include/G4VDivisionParameterisation.hh
index dbff26cf580..563e7096a84 100644
--- a/source/geometry/divisions/include/G4VDivisionParameterisation.hh
+++ b/source/geometry/divisions/include/G4VDivisionParameterisation.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4VDivisionParameterisation.hh 66872 2013-01-15 01:25:57Z japost $
+// $Id: G4VDivisionParameterisation.hh 90699 2015-06-08 09:34:37Z gcosmo $
 //
 // class G4VDivisionParameterisation
 //
@@ -45,6 +45,7 @@
 #include "G4Types.hh"
 #include "geomdefs.hh"
 #include "G4VPVParameterisation.hh"
+#include "G4RotationMatrix.hh"
 
 enum DivisionType { DivNDIVandWIDTH, DivNDIV, DivWIDTH };
 
@@ -110,6 +111,8 @@ class G4VDivisionParameterisation : public G4VPVParameterisation
     G4double kCarTolerance;
 
     G4double fhgap;
+
+    G4RotationMatrix* fRotMatrix;
 };
 
 #include "G4VDivisionParameterisation.icc"
diff --git a/source/geometry/divisions/src/G4ReplicatedSlice.cc b/source/geometry/divisions/src/G4ReplicatedSlice.cc
index dc132b5ccb0..26bc386d07a 100644
--- a/source/geometry/divisions/src/G4ReplicatedSlice.cc
+++ b/source/geometry/divisions/src/G4ReplicatedSlice.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4ReplicatedSlice.cc 66356 2012-12-18 09:02:32Z gcosmo $
+// $Id: G4ReplicatedSlice.cc 90699 2015-06-08 09:34:37Z gcosmo $
 //
 // --------------------------------------------------------------------
 
@@ -319,6 +319,7 @@ void G4ReplicatedSlice::SetParameterisation( G4LogicalVolume* motherLogical,
 {
   G4VSolid* mSolid = motherLogical->GetSolid();
   G4String mSolidType = mSolid->GetEntityType();
+  fparam = 0;
 
   // If the solid is a reflected one, update type to its
   // real constituent solid.
diff --git a/source/geometry/divisions/src/G4VDivisionParameterisation.cc b/source/geometry/divisions/src/G4VDivisionParameterisation.cc
index d05b30230c0..ea3155744fb 100644
--- a/source/geometry/divisions/src/G4VDivisionParameterisation.cc
+++ b/source/geometry/divisions/src/G4VDivisionParameterisation.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4VDivisionParameterisation.cc 66872 2013-01-15 01:25:57Z japost $
+// $Id: G4VDivisionParameterisation.cc 90699 2015-06-08 09:34:37Z gcosmo $
 //
 // class G4VDivisionParameterisation Implementation file
 //
@@ -51,6 +51,7 @@ G4VDivisionParameterisation( EAxis axis, G4int nDiv,
     fDivisionType(divType), fmotherSolid( motherSolid ), fReflectedSolid(false),
     fDeleteSolid(false), theVoluFirstCopyNo(1), fhgap(0.)
 {
+  fRotMatrix = new G4RotationMatrix();
 #ifdef G4DIVDEBUG
   if (verbose >= 1)
   {
@@ -66,7 +67,8 @@ G4VDivisionParameterisation( EAxis axis, G4int nDiv,
 //--------------------------------------------------------------------------
 G4VDivisionParameterisation::~G4VDivisionParameterisation()
 {
-  if (fDeleteSolid) delete fmotherSolid; 
+  if (fDeleteSolid) delete fmotherSolid;
+  if (fRotMatrix) { delete fRotMatrix; fRotMatrix=0; }
 }
 
 //--------------------------------------------------------------------------
@@ -87,13 +89,9 @@ void
 G4VDivisionParameterisation::
 ChangeRotMatrix( G4VPhysicalVolume *physVol, G4double rotZ ) const
 {
-  G4RotationMatrix* rm = new G4RotationMatrix();
-  rm->rotateZ( rotZ );
-  //----- set rotation
-  //----- delete first old rotation matrix 
-  G4RotationMatrix* rmold = physVol->GetRotation();
-  delete rmold;
-  physVol->SetRotation(rm);
+  *fRotMatrix = G4RotationMatrix();
+  fRotMatrix->rotateZ( rotZ );
+  physVol->SetRotation(fRotMatrix);
 }
 
 //--------------------------------------------------------------------------
diff --git a/source/geometry/management/History b/source/geometry/management/History
index e765c5a30bc..e5290f262a6 100644
--- a/source/geometry/management/History
+++ b/source/geometry/management/History
@@ -1,4 +1,4 @@
-$Id: History 87218 2014-11-27 09:55:11Z gcosmo $
+$Id: History 90703 2015-06-08 09:43:54Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,6 +17,19 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+April 30, 2015 G.Cosmo                     geommng-V10-00-07
+- Removed unused data-member in G4LogicalVolume, and fixed minor
+  Coverity defect for unitialised member 'fBiasWeight' in constructor.
+- Use scoped enum for EnumSide in G4USolid.cc if c++11 enabled.
+
+April 29, 2015 J.Apostolakis
+- Added streaming operator <<() to G4AffineTransform.
+- Cosmetics to G4RegionStore header.
+
+March 3, 2015 G.Cosmo
+- Use accessors x(), y() and z() from UVector3, instead of directly accessing
+  its data-members.
+
 November 27, 2014 G.Cosmo                  geommng-V10-00-06
 - Fixed implementation of StreamInfo() for G4USolid.
 
diff --git a/source/geometry/management/include/G4AffineTransform.hh b/source/geometry/management/include/G4AffineTransform.hh
index f2071cbacdd..ac6af18766b 100644
--- a/source/geometry/management/include/G4AffineTransform.hh
+++ b/source/geometry/management/include/G4AffineTransform.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4AffineTransform.hh 66356 2012-12-18 09:02:32Z gcosmo $
+// $Id: G4AffineTransform.hh 90701 2015-06-08 09:43:16Z gcosmo $
 //
 //
 // class G4AffineTransform
@@ -165,6 +165,9 @@ private:
   G4double tx,ty,tz;
 };
 
+std::ostream&
+  operator << (std::ostream &os, const G4AffineTransform &transf);
+
 #include "G4AffineTransform.icc"
 
 #endif
diff --git a/source/geometry/management/include/G4AffineTransform.icc b/source/geometry/management/include/G4AffineTransform.icc
index dab77a8e388..ed07ed7c9de 100644
--- a/source/geometry/management/include/G4AffineTransform.icc
+++ b/source/geometry/management/include/G4AffineTransform.icc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4AffineTransform.icc 66356 2012-12-18 09:02:32Z gcosmo $
+// $Id: G4AffineTransform.icc 90701 2015-06-08 09:43:16Z gcosmo $
 //
 //
 // G4AffineTransformation Inline implementation
@@ -395,3 +395,61 @@ void G4AffineTransform::SetNetTranslation(const G4ThreeVector& tlate)
         ty=tlate.y();
         tz=tlate.z();
 }
+
+inline
+std::ostream&
+  operator << (std::ostream &os, const G4AffineTransform &transf)
+{
+  char  buffer[1024];
+  int oldPrec= os.precision(6); 
+  double DeviationTolerance= 1.0e-05;
+
+  double diagDeviation= 0.0; 
+  double offdDeviationUL= 0.0;
+  double offdDeviationDR= 0.0;
+  double offdDeviation= 0.0; 
+                                     
+  os << "  Transformation: " << G4endl; 
+
+  // double  a = std::max ( 1, 2, 3 ) ; 
+  
+  bool UnitTr = ! transf.IsRotated(); 
+  diagDeviation= std::max ( std::fabs( transf[0] - 1.0 ) ,     //  | rxx - 1 |
+                            std::fabs( transf[5] - 1.0 ) );     //  | ryy - 1 |
+  diagDeviation= std::max ( diagDeviation, 
+                            std::fabs( transf[10] - 1.0 ) );   //  | rzz - 1 |
+  
+  offdDeviationUL= std::max ( std::fabs( transf[1] ) ,      //  | rxy |
+                              std::fabs( transf[2] ) );     //  | rxz |
+  offdDeviationUL= std::max ( offdDeviationUL, 
+                              std::fabs( transf[4] ) );     //  | ryx |
+  
+  offdDeviationDR= std::max ( std::fabs( transf[6] ) ,      //  | ryz |
+                              std::fabs( transf[8] ) );     //  | rzx |
+  offdDeviationDR= std::max ( offdDeviationDR, 
+                              std::fabs( transf[9] )   );   //  | rzy |
+  offdDeviation= std::max( offdDeviationUL, offdDeviationDR ); 
+
+  if( UnitTr || std::max( diagDeviation, offdDeviation ) < DeviationTolerance ) {
+     os << "    UNIT  Rotation " << G4endl;
+  } else {
+//      os << "   " << transf[0]  << " " << transf[1] << " " << transf[2] << G4endl
+//            << "   " << transf[4]  << " " << transf[5] << " " << transf[6] << G4endl
+//            << "   " << transf[8]  << " " << transf[9] << " " << transf[10] << G4endl
+//            << "   " << transf[12]  << " " << transf[13] << " " << transf[14] << G4endl
+//            << G4endl;
+     sprintf( buffer, "rx/x,y,z  %10.6f  %10.6f  %10.6f ", transf[0], transf[1], transf[2] ); 
+     os << buffer << G4endl;
+     sprintf( buffer, "ry/x,y,z  %10.6f  %10.6f  %10.6f ", transf[4], transf[5], transf[6] );
+     os << buffer << G4endl;
+     sprintf( buffer, "rz/x,y,z  %10.6f  %10.6f  %10.6f ", transf[8], transf[9], transf[10] );
+     os << buffer << G4endl;
+  }
+
+  sprintf( buffer, "tr/x,y,z  %10.6f  %10.6f  %10.6f ", transf[12], transf[13], transf[14] );
+  os << buffer << G4endl;
+  
+  os.precision(oldPrec); 
+
+  return os; 
+}
diff --git a/source/geometry/management/include/G4LogicalVolume.hh b/source/geometry/management/include/G4LogicalVolume.hh
index 166ad4aaec0..8404649d844 100644
--- a/source/geometry/management/include/G4LogicalVolume.hh
+++ b/source/geometry/management/include/G4LogicalVolume.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4LogicalVolume.hh 78050 2013-12-03 08:17:33Z gcosmo $
+// $Id: G4LogicalVolume.hh 90701 2015-06-08 09:43:16Z gcosmo $
 //
 // 
 // class G4LogicalVolume
@@ -417,9 +417,6 @@ class G4LogicalVolume
     G4double fBiasWeight;
       // Weight used in the event biasing technique.
   
-    G4bool fChangedState;
-      // Invalidates any estimations from previous state
-  
     G4int instanceID;
       // This new field is used as instance ID.
     G4GEOM_DLL static G4LVManager subInstanceManager;
diff --git a/source/geometry/management/include/G4LogicalVolume.icc b/source/geometry/management/include/G4LogicalVolume.icc
index 3fd8266b049..a4ab36c2671 100644
--- a/source/geometry/management/include/G4LogicalVolume.icc
+++ b/source/geometry/management/include/G4LogicalVolume.icc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4LogicalVolume.icc 78050 2013-12-03 08:17:33Z gcosmo $
+// $Id: G4LogicalVolume.icc 90701 2015-06-08 09:43:16Z gcosmo $
 //
 // 
 // class G4LogicalVolume Inline Implementation file
@@ -266,7 +266,6 @@ inline
 void G4LogicalVolume::ResetMass()
 {
   G4MT_mass= 0.0;
-  // Do not fChangedState= 1; 
 }
 
 // ********************************************************************
diff --git a/source/geometry/management/include/G4RegionStore.hh b/source/geometry/management/include/G4RegionStore.hh
index 66a44fb4cde..64ec48cb4de 100644
--- a/source/geometry/management/include/G4RegionStore.hh
+++ b/source/geometry/management/include/G4RegionStore.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4RegionStore.hh 66872 2013-01-15 01:25:57Z japost $
+// $Id: G4RegionStore.hh 90701 2015-06-08 09:43:16Z gcosmo $
 //
 // class G4RegionStore
 //
@@ -64,9 +64,9 @@ class G4RegionStore : public std::vector<G4Region*>
 {
   public:  // with description
 
-    static void Register(G4Region* pSolid);
+    static void Register(G4Region* pRegion);
       // Add the region to the collection.
-    static void DeRegister(G4Region* pSolid);
+    static void DeRegister(G4Region* pRegion);
       // Remove the region from the collection.
     static G4RegionStore* GetInstance();
       // Get a ptr to the unique G4RegionStore, creating it if necessary.
diff --git a/source/geometry/management/src/G4LogicalVolume.cc b/source/geometry/management/src/G4LogicalVolume.cc
index 5032793c101..f7e0dfd95e6 100644
--- a/source/geometry/management/src/G4LogicalVolume.cc
+++ b/source/geometry/management/src/G4LogicalVolume.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4LogicalVolume.cc 83991 2014-09-26 09:22:26Z gcosmo $
+// $Id: G4LogicalVolume.cc 90701 2015-06-08 09:43:16Z gcosmo $
 //
 // 
 // class G4LogicalVolume Implementation
@@ -144,7 +144,7 @@ G4LogicalVolume::G4LogicalVolume( G4VSolid* pSolid,
                                   G4bool optimise )
  : fDaughters(0,(G4VPhysicalVolume*)0), 
    fVoxel(0), fOptimise(optimise), fRootRegion(false), fLock(false),
-   fSmartless(2.), fVisAttributes(0), fRegion(0)
+   fSmartless(2.), fVisAttributes(0), fRegion(0), fBiasWeight(1.)
 {
   // Initialize 'Shadow'/master pointers - for use in copying to workers
   fSolid = pSolid;
@@ -178,7 +178,7 @@ G4LogicalVolume::G4LogicalVolume( __void__& )
  : fDaughters(0,(G4VPhysicalVolume*)0),
    fName(""), fUserLimits(0),
    fVoxel(0), fOptimise(true), fRootRegion(false), fLock(false),
-   fSmartless(2.), fVisAttributes(0), fRegion(0), fBiasWeight(0.),
+   fSmartless(2.), fVisAttributes(0), fRegion(0), fBiasWeight(1.),
    fSolid(0), fSensitiveDetector(0), fFieldManager(0)
 {
   instanceID = subInstanceManager.CreateSubInstance();
diff --git a/source/geometry/management/src/G4USolid.cc b/source/geometry/management/src/G4USolid.cc
index 949dbd4667d..b427cdb339f 100644
--- a/source/geometry/management/src/G4USolid.cc
+++ b/source/geometry/management/src/G4USolid.cc
@@ -73,14 +73,19 @@ EInside G4USolid::Inside(const G4ThreeVector& p) const
   UVector3 pt;
   VUSolid::EnumInside in_temp;
   EInside in = kOutside;
-  pt.x = p.x();
-  pt.y = p.y();
-  pt.z = p.z(); // better assign at construction
+  pt.x() = p.x();
+  pt.y() = p.y();
+  pt.z() = p.z(); // better assign at construction
 
   in_temp = fShape->Inside(pt);
 
+#ifndef G4USE_STD11
   if (in_temp == VUSolid::eSurface)return kSurface;
   if (in_temp == VUSolid::eInside)return kInside;
+#else
+  if (in_temp == VUSolid::EnumInside::eSurface)return kSurface;
+  if (in_temp == VUSolid::EnumInside::eInside)return kInside;
+#endif
 
   return in;
 }
@@ -88,25 +93,25 @@ EInside G4USolid::Inside(const G4ThreeVector& p) const
 G4ThreeVector G4USolid::SurfaceNormal(const G4ThreeVector& pt) const
 {
   UVector3 p;
-  p.x = pt.x();
-  p.y = pt.y();
-  p.z = pt.z();
+  p.x() = pt.x();
+  p.y() = pt.y();
+  p.z() = pt.z();
   UVector3 n;
   fShape->Normal(p, n);
-  return G4ThreeVector(n.x, n.y, n.z);
+  return G4ThreeVector(n.x(), n.y(), n.z());
 }
 
 G4double G4USolid::DistanceToIn(const G4ThreeVector& pt,
                                 const G4ThreeVector& d)const
 {
   UVector3 p;
-  p.x = pt.x();
-  p.y = pt.y();
-  p.z = pt.z(); // better assign at construction
+  p.x() = pt.x();
+  p.y() = pt.y();
+  p.z() = pt.z(); // better assign at construction
   UVector3 v;
-  v.x = d.x();
-  v.y = d.y();
-  v.z = d.z(); // better assign at construction
+  v.x() = d.x();
+  v.y() = d.y();
+  v.z() = d.z(); // better assign at construction
   G4double dist = fShape->DistanceToIn(p, v);
   if (dist > kInfinity) dist = kInfinity;
   return dist;
@@ -115,9 +120,9 @@ G4double G4USolid::DistanceToIn(const G4ThreeVector& pt,
 G4double G4USolid::DistanceToIn(const G4ThreeVector& pt) const
 {
   UVector3 p;
-  p.x = pt.x();
-  p.y = pt.y();
-  p.z = pt.z(); // better assign at construction
+  p.x() = pt.x();
+  p.y() = pt.y();
+  p.z() = pt.z(); // better assign at construction
   G4double dist = fShape->SafetyFromOutside(p); // true?
   if (dist > kInfinity) dist = kInfinity;
   return dist;
@@ -130,13 +135,13 @@ G4double G4USolid::DistanceToOut(const G4ThreeVector& pt,
                                  G4ThreeVector* norm) const
 {
   UVector3 p;
-  p.x = pt.x();
-  p.y = pt.y();
-  p.z = pt.z(); // better assign at construction
+  p.x() = pt.x();
+  p.y() = pt.y();
+  p.z() = pt.z(); // better assign at construction
   UVector3 v;
-  v.x = d.x();
-  v.y = d.y();
-  v.z = d.z(); // better assign at construction
+  v.x() = d.x();
+  v.y() = d.y();
+  v.z() = d.z(); // better assign at construction
   UVector3 n;
   bool valid;
   G4double dist = fShape->DistanceToOut(p, v, n,valid); // should use local variable
@@ -145,9 +150,9 @@ G4double G4USolid::DistanceToOut(const G4ThreeVector& pt,
     if(valid){ *validNorm = true;}
     else {* validNorm =false;}
     if(*validNorm)
-    { norm->setX(n.x);
-      norm->setY(n.y);
-      norm->setZ(n.z);
+    { norm->setX(n.x());
+      norm->setY(n.y());
+      norm->setZ(n.z());
     } // *norm = n, but only after calcNorm check
   }
   if (dist > kInfinity) dist = kInfinity;
@@ -157,9 +162,9 @@ G4double G4USolid::DistanceToOut(const G4ThreeVector& pt,
 G4double G4USolid::DistanceToOut(const G4ThreeVector& pt) const
 {
   UVector3 p;
-  p.x = pt.x();
-  p.y = pt.y();
-  p.z = pt.z(); // better assign at construction
+  p.x() = pt.x();
+  p.y() = pt.y();
+  p.z() = pt.z(); // better assign at construction
   return fShape->SafetyFromInside(p); // true?
 }
 
@@ -177,7 +182,7 @@ G4ThreeVector G4USolid::GetPointOnSurface() const
 {
   UVector3 p;
   p = fShape->GetPointOnSurface();
-  return G4ThreeVector(p.x, p.y, p.z);
+  return G4ThreeVector(p.x(), p.y(), p.z());
 }
 
 G4bool G4USolid::CalculateExtent(const EAxis pAxis,
@@ -532,7 +537,7 @@ G4Polyhedron* G4USolid::CreatePolyhedron() const
            v!=(*uPolyhedron).vertices.end(); v++)
      {
            UVector3 p=(*v);
-           G4ThreeVector pt(p.x,p.y,p.z);
+           G4ThreeVector pt(p.x(),p.y(),p.z());
 
            polyhedron->AddVertex(pt);
       }
diff --git a/source/geometry/navigation/History b/source/geometry/navigation/History
index 7b0f836d1dc..d1aa6b0f495 100644
--- a/source/geometry/navigation/History
+++ b/source/geometry/navigation/History
@@ -1,4 +1,4 @@
-$Id: History 89289 2015-03-31 08:35:38Z gcosmo $
+$Id: History 90836 2015-06-10 09:31:06Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,6 +17,155 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+May 10, 2015 - J.Apostolakis (geomnav-V10-00-22)
+----------------------------	
+- G4NavigationLogger: Changes, refinements for ReportOutsideMotherVolume()
+  * Delegate printing details to new method 'ReportVolumeAndIntersection'.
+  * Print additional diagnostic information (to help with ATLAS issue.)
+  * New properties:
+     * fMinTriggerDistance: a larger error is fatal (def. DBL_MAX)
+     * fReportSoftWarnings: is set, report if small safety (abs<tolerance)
+                            is not rounded to zero.
+	
+June 3, 2015 - G.Cosmo
+----------------------
+- Minor printout fix in G4NavigationLogger::ReportOutsideMother().
+
+May 29, 2015 - G.Cosmo
+----------------------
+- Fixed compilation errors when compiling with G4DEBUG_FIELD turned on.
+  Addressing problem report #1748.
+
+May 11, 2015 - G.Cosmo
+----------------------
+- Minor fixes and code cleanup/simplification.
+
+May 10, 2015 - J.Apostolakis
+----------------------------
+- Navigation Helper classes (Normal, Voxel, Parameterised)
+  * Use return value of motherSolid DistanceToOut(p,v), each time
+    that it is called.  Correct 'invalid' to zero:
+      If it is  kInfinity, reset value to zero!
+      If it is  negative,  reset value to zero!
+  * Small cleanup - always use variables 'mother'ExitNormal.
+    'mother'ValidExitNormal.  Enables small simplification.
+  * Do not return motherExitNormal (valid=false), if outside mother.
+
+May 8, 2015 - G.Cosmo
+---------------------
+- Fixed spurious compilation warnings.
+
+May 7, 2015 - G.Cosmo
+---------------------
+- Protect all changes for extra checks made by navigators in ComputeStep()
+  introduced in the previous tags within 'check_mode' and G4VERBOSE, to
+  allow restoring original run-time performance penalised by more 8-10%.
+- Code cleanup and various minor fixes.
+
+May 3, 2015 - J.Apostolakis
+---------------------------
+- ComputeStep() methods of Normal/Voxel/Parameterised Navigation:
+  Protect stepping for case of being outside mother volume.
+  Always evaluate mother's DistanceToOut(p,v), in order to check whether
+  answer indicates invalid position (i.e. outside mother solid).
+  Created to address issue of tracking in ATLAS - (JIRA issue ATLAS-SIM 1815
+  and SIM-433, ie https://sft.its.cern.ch/jira/browse/SIM-433 )
+    
+  Detailed description:
+  ComputeStep() methods of the 'Navigation' helper methods changed to always
+  evaluate the mother DistanceToOut(p,v), in order to check whether the answer
+  is 
+      * valid, indicating that the point is inside / on surface), or
+      * invalid, indicating the point is outside (when the value is either
+        negative or equal to kInfinity).
+  Addresses / protects Navigation from the case that a point escapes a volume,
+  and never again encounters the volume boundary. 
+
+  Note: DistanceToOut(p,v,...) in some solids is able to return a value that
+        indicates that it has been called from Outside the solid (contrary to
+        its expectation / contract.)
+        But not all solids provide this diagnostic (it would be a very
+        invaluable improvement in the specification / implementation, and
+        likely simple to add and cheap to evaluate.)
+
+  Enabled ComputeStep() to recognise this response (invalid point - i.e.
+  outside mother). Before it was not recognised, but used instead as a numeric
+  value (kInfinity). In case it was kInfinity, this meant the volume could not
+  be chosen, and the track never exited the volume!
+
+  This invalid response now triggers an immediate exit from the volume
+  daughters do not need to be considered.
+    
+  'Behaviour' change: this modification changes the logic in ComputeStep(),
+  and always calls the mother solid's DistanceToOut() method.
+  (before it was called only if the currentStep was larger than the mother
+  Solid's safety. )
+
+  Expected performance impact:
+  The (mandatory) call to DistanceToOut(p,v) in ComputeStep is extra work,
+  as it was optional before.
+  Expect an overhead, proportional to the cost of the 'average' DistanceToOut()
+  method (in the geometry model).
+  The worst cases are expected to be geometries with one or more large 
+  complex volumes (e.g. Polycone.) which is either
+  - a leaf node (with above-average density material), or
+  - which has a large number of volumes placed directly inside it.
+
+  Potential alternative approach:
+  An invalid point must be recognised using some method of a solid.
+  There are three possibilities:
+  - the inside method is called for the mother volume at the start
+    of every step. This would be a new additional call;
+  - the safety method "DistanceToOut(p)" is used to recognise this condition.
+    This could be done if it returns a negative value for positions outside
+    the solid. This call already occurs, but would become more expensive;
+  - the intersection distance "DistanceToOut(p,v,..) is used, and must be
+    called at every step.   This is the choice that has now been made.
+    It is possible to consider the alternative choices, to evaluate their
+    computational cost, and the effort to review/improve the implementations.
+
+  The most realistic alternative is a) to rely on the Safety method(s) to
+  respond zero if the point is on the 'wrong' side of the volume boundary,
+  and b) to call DistanceToOut(p,v) only if (step < mother Safety).
+	
+May 02, 2015 - J.Apostolakis
+----------------------------
+- Correction for roundoff issue in G4PropagatorInField
+    
+April 30, 2015 - J.Apostolakis
+------------------------------
+- NavigationLogger:
+  * Added method  for Reporting A Point is Outside the Mother volume.
+  * Added methods CheckAndReportBadNormal, CheckDaughterEntryPoint
+- G4AuxiliaryNavigationServices:
+  * Optimisation: Reuse dot product, rather than recomputing
+  * Added optional printout (protected by debug flag)
+  * Replaced the fake 'TestOne' non-inline method, with utility method
+    ReportTolerances.
+- G4VIntersectionLocator
+  * New PrintStatus method with additional ostringstream argument.
+- G4NormalNavigation:
+  * Moved Set/Get Verbose Level methods to source file (reduces dependency
+    on logger)
+- G4PathFinder:
+  * Reformatted warning/error message.
+    (Consolidation, include changes commited February 19, 2015, but not
+    tagged).
+     
+January  28, 2015 - J.Apostolakis
+---------------------------------
+- G4PropagatorInField: Added new methods to report looping and stuck tracks.
+  Cleanup.
+- G4PathFinder: Fix to two calls to ComputeSafety - second argument is length,
+  not bool.
+    
+December 15, 2014 - J.Apostolakis
+---------------------------------
+- Improvements to enable identification of first and last step in a volume, when
+    tracking in a field. (Bugzilla issue 1032).
+  Revised G4PropagatorInField, adding new method PrepareNewTrack() and data members.
+  Note: Co-works with and is required tags in processes/transportation and track.  
+    
 January  15, 2015 - J.Apostolakis  (geomnav-V10-00-21)
 ---------------------------------
 - G4PathFinder: Pass to equation of motion relevant properties of current
diff --git a/source/geometry/navigation/include/G4AuxiliaryNavServices.hh b/source/geometry/navigation/include/G4AuxiliaryNavServices.hh
index 96595a928f5..1498723747f 100644
--- a/source/geometry/navigation/include/G4AuxiliaryNavServices.hh
+++ b/source/geometry/navigation/include/G4AuxiliaryNavServices.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4AuxiliaryNavServices.hh 66356 2012-12-18 09:02:32Z gcosmo $
+// $Id: G4AuxiliaryNavServices.hh 90836 2015-06-10 09:31:06Z gcosmo $
 //
 // 
 // class G4AuxiliaryNavServices
@@ -71,10 +71,8 @@ class G4AuxiliaryNavServices
      // Is the track (point, direction) exiting the solid 'sampleSolid' ? 
      // Returns true if we are going to exit the volume.
 
- private:
- 
-   G4bool testOne();
-
+   static void ReportTolerances();
+     // Print global values of Cartesian, Radial and Angle Tolerances
 };
 
 #include "G4AuxiliaryNavServices.icc"
diff --git a/source/geometry/navigation/include/G4AuxiliaryNavServices.icc b/source/geometry/navigation/include/G4AuxiliaryNavServices.icc
index a0565bc74d6..5ef600e5d4d 100644
--- a/source/geometry/navigation/include/G4AuxiliaryNavServices.icc
+++ b/source/geometry/navigation/include/G4AuxiliaryNavServices.icc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4AuxiliaryNavServices.icc 66356 2012-12-18 09:02:32Z gcosmo $
+// $Id: G4AuxiliaryNavServices.icc 90836 2015-06-10 09:31:06Z gcosmo $
 //
 //
 // class G4AuxiliaryNavServices Inline implementation
@@ -55,9 +55,23 @@ CheckPointOnSurface( const G4VSolid* sampleSolid,
       // Check whether we enter the volume
       // 
       sampleNormal = sampleSolid->SurfaceNormal(localPoint);
-      if ( sampleNormal.dot(localDirection) <= 0 )
+
+      G4double dotProd= sampleNormal.dot(localDirection);
+      
+#ifdef G4DEBUG_AUX_NAVIGATION
+      G4cout << " dir.norm= " << dotProd // sampleNormal.dot(localDirection) 
+             << " localDirection= " << localDirection
+             << " sampleNormal= " << sampleNormal;
+      if( dotProd == 0.0 )
+      {
+        G4cout << " distanceToIn = " 
+               << sampleSolid->DistanceToIn( localPoint, localDirection );
+      }
+#endif
+
+      if ( dotProd <= 0.0 )         
       {
-        if( sampleNormal.dot(localDirection) == 0 )
+        if( dotProd == 0.0 )
         {
           // We can't decide yet, let's make sure we're entering the solid.
           // If by a confusion we entered the next solid we find out now
@@ -83,6 +97,10 @@ CheckPointOnSurface( const G4VSolid* sampleSolid,
       enter = true;
     }
   }
+#ifdef G4DEBUG_AUX_NAVIGATION  
+  G4cout << " enter = " << (enter ? "true" : "false" ) << G4endl;
+#endif
+  
   return enter;
 }
 
diff --git a/source/geometry/navigation/include/G4NavigationLogger.hh b/source/geometry/navigation/include/G4NavigationLogger.hh
index fbd35eaaaa5..0977b6124f5 100644
--- a/source/geometry/navigation/include/G4NavigationLogger.hh
+++ b/source/geometry/navigation/include/G4NavigationLogger.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4NavigationLogger.hh 66356 2012-12-18 09:02:32Z gcosmo $
+// $Id: G4NavigationLogger.hh 90836 2015-06-10 09:31:06Z gcosmo $
 //
 // 
 // class G4NavigationLogger
@@ -56,34 +56,83 @@ class G4NavigationLogger
     void PreComputeStepLog  (const G4VPhysicalVolume* motherPhysical,
                                    G4double motherSafety,
                              const G4ThreeVector& localPoint) const;
+      // Report about first check - mother safety
+   
     void AlongComputeStepLog(const G4VSolid* sampleSolid,
                              const G4ThreeVector& samplePoint,
                              const G4ThreeVector& sampleDirection,
                              const G4ThreeVector& localDirection,
                                    G4double sampleSafety,
                                    G4double sampleStep) const;
+     // Report about a candidate daughter 
+   
+   void CheckDaughterEntryPoint(const G4VSolid* sampleSolid,
+                                const G4ThreeVector& samplePoint,
+                                const G4ThreeVector& sampleDirection,
+                                const G4VSolid* motherSolid,
+                                const G4ThreeVector& localPoint,
+                                const G4ThreeVector& localDirection,
+                                G4double motherStep,
+                                G4double sampleStep) const;
+     // Check suspicious distance to a candidate daughter
+   
     void PostComputeStepLog (const G4VSolid* motherSolid,
                              const G4ThreeVector& localPoint,
                              const G4ThreeVector& localDirection,
                                    G4double motherStep,
                                    G4double motherSafety) const;
+     // Report exit distance from mother 
+   
     void ComputeSafetyLog   (const G4VSolid* solid,
                              const G4ThreeVector& point,
                                    G4double safety,
-                                   G4bool banner) const;
+                                   G4bool isMotherVolume,    //  For labeling
+                                   G4int banner= -1) const;
+     // Report about safety computation (daughter?)
+   
     void PrintDaughterLog   (const G4VSolid* sampleSolid,
                              const G4ThreeVector& samplePoint,
                                    G4double sampleSafety,
-                                   G4double sampleStep) const;
+                                   G4bool   onlySafety,
+                             const G4ThreeVector& sampleDirection,
+                                   G4double sampleStep ) const;
+     // Report about a new minimum distance to candidate daughter
+
+    G4bool CheckAndReportBadNormal(const G4ThreeVector& unitNormal,
+                                   const G4ThreeVector& localPoint,
+                                   const G4ThreeVector& localDirection,
+                                         G4double       step,
+                                   const G4VSolid*      solid,                                 
+                                   const char* msg ) const;
+      // Report issue with normal - for ComputeStep()
+  
+    void ReportOutsideMother(const G4ThreeVector& localPoint,
+                             const G4ThreeVector& localDirection,
+                             const G4VPhysicalVolume* motherPV,
+                                   G4double tDist = 30.0*CLHEP::cm ) const;
+      // Report if point wrongly located outside mother volume
+
+   void ReportVolumeAndIntersection( std::ostream& ostrm,
+                                     const G4ThreeVector& localPoint,
+                                     const G4ThreeVector& localDirection,
+                                     const G4VPhysicalVolume* physical ) const;
+      // Auxiliary method to report information about volume & position/direction 
+      
   public:  // without description
 
     inline G4int GetVerboseLevel() const  { return fVerbose; }
     inline void  SetVerboseLevel(G4int level)  { fVerbose = level; }
 
+    inline G4double GetMinTriggerDistance() const { return fMinTriggerDistance; }
+    inline void     SetMinTriggerDistance(G4double d) { fMinTriggerDistance= d; }
+    inline G4bool   GetReportSoftWarnings() const { return fReportSoftWarnings; }    
+    inline void     SetReportSoftWarnings(G4bool b) { fReportSoftWarnings = b; } 
   private:
 
-    G4String fId;     // Navigation type
-    G4int fVerbose;   // Verbosity level
+    G4String fId;                  // Navigation type
+    G4int    fVerbose;             // Verbosity level
+    G4double fMinTriggerDistance;  // Errors beyond this distance are fatal in ReportMother
+    G4bool   fReportSoftWarnings;  // Flag> Whether to warn about small issues
 };
 
 #endif
diff --git a/source/geometry/navigation/include/G4NormalNavigation.hh b/source/geometry/navigation/include/G4NormalNavigation.hh
index fa15eb86624..30e936de6bc 100644
--- a/source/geometry/navigation/include/G4NormalNavigation.hh
+++ b/source/geometry/navigation/include/G4NormalNavigation.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4NormalNavigation.hh 66356 2012-12-18 09:02:32Z gcosmo $
+// $Id: G4NormalNavigation.hh 90836 2015-06-10 09:31:06Z gcosmo $
 //
 // 
 // class G4NormalNavigation
@@ -43,12 +43,14 @@
 #include <iomanip>
 
 #include "G4NavigationHistory.hh"
-#include "G4NavigationLogger.hh"
+
 #include "G4VPhysicalVolume.hh"
 #include "G4LogicalVolume.hh"
 #include "G4VSolid.hh"
 #include "G4ThreeVector.hh"
-#include "G4AuxiliaryNavServices.hh"    // Needed for inline methods
+#include "G4AuxiliaryNavServices.hh"
+
+class G4NavigationLogger;
 
 class G4NormalNavigation
 {
@@ -60,7 +62,7 @@ class G4NormalNavigation
     ~G4NormalNavigation();
       // Destructor
 
-    G4bool LevelLocate( G4NavigationHistory &history,
+    inline G4bool LevelLocate( G4NavigationHistory &history,
                   const G4VPhysicalVolume *blockedVol,
                   const G4int blockedNum,
                   const G4ThreeVector &globalPoint,
@@ -90,8 +92,8 @@ class G4NormalNavigation
                             const G4NavigationHistory &history,
                             const G4double pMaxLength=DBL_MAX );
 
-    inline G4int GetVerboseLevel() const;
-    inline void  SetVerboseLevel(G4int level);
+    G4int GetVerboseLevel() const;
+    void  SetVerboseLevel(G4int level);
       // Get/Set Verbose(ness) level.
       // [if level>0 && G4VERBOSE, printout can occur]
 
diff --git a/source/geometry/navigation/include/G4NormalNavigation.icc b/source/geometry/navigation/include/G4NormalNavigation.icc
index c8e927f0566..4c2fcbf3506 100644
--- a/source/geometry/navigation/include/G4NormalNavigation.icc
+++ b/source/geometry/navigation/include/G4NormalNavigation.icc
@@ -24,13 +24,23 @@
 // ********************************************************************
 //
 //
-// $Id: G4NormalNavigation.icc 80287 2014-04-10 09:49:49Z gcosmo $
+// $Id: G4NormalNavigation.icc 90836 2015-06-10 09:31:06Z gcosmo $
 //
 // 
 // G4NormalNavigation Inline Implementation
 //
 // --------------------------------------------------------------------
 
+// ********************************************************************
+// CheckMode
+// ********************************************************************
+//
+inline
+void G4NormalNavigation::CheckMode(G4bool mode)
+{
+  fCheck = mode;
+}
+
 // ********************************************************************
 // LevelLocate
 // ********************************************************************
@@ -91,33 +101,3 @@ G4NormalNavigation::LevelLocate( G4NavigationHistory& history,
   }
   return found;
 }
-
-// ********************************************************************
-// GetVerboseLevel
-// ********************************************************************
-//
-inline
-G4int G4NormalNavigation::GetVerboseLevel() const
-{
-  return fLogger->GetVerboseLevel();
-}
-
-// ********************************************************************
-// SetVerboseLevel
-// ********************************************************************
-//
-inline
-void G4NormalNavigation::SetVerboseLevel(G4int level)
-{
-  fLogger->SetVerboseLevel(level);
-}
-
-// ********************************************************************
-// CheckMode
-// ********************************************************************
-//
-inline
-void G4NormalNavigation::CheckMode(G4bool mode)
-{
-  fCheck = mode;
-}
diff --git a/source/geometry/navigation/include/G4PropagatorInField.hh b/source/geometry/navigation/include/G4PropagatorInField.hh
index 61de0c82284..ef01e489de9 100644
--- a/source/geometry/navigation/include/G4PropagatorInField.hh
+++ b/source/geometry/navigation/include/G4PropagatorInField.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 // 
-// $Id: G4PropagatorInField.hh 81577 2014-06-03 10:13:36Z gcosmo $
+// $Id: G4PropagatorInField.hh 90836 2015-06-10 09:31:06Z gcosmo $
 //
 //
 // Class G4PropagatorInField 
@@ -99,6 +99,10 @@ class G4PropagatorInField
    inline G4int  GetVerboseLevel() const;
    inline G4int  Verbose() const;
 
+   inline void    SetVerboseTrace( G4bool enable ) { fVerbTracePiF = enable; }
+   inline G4bool  GetVerboseTrace()        { return fVerbTracePiF; }
+   // Tracing key parts of Compute Step
+   
    inline G4int   GetMaxLoopCount() const;
    inline void    SetMaxLoopCount( G4int new_max );
      // A maximum for the number of steps that a (looping) particle can take.
@@ -155,6 +159,10 @@ class G4PropagatorInField
      // and return whether an intersection occurred
      // NOTE : SAFETY IS CHANGED
 
+   inline G4bool IsFirstStepInVolume()  { return fFirstStepInVolume; }
+   inline G4bool IsLastStepInVolume()   { return fLastStepInVolume;  }
+   void   PrepareNewTrack() { fNewTrack = true; fFirstStepInVolume=false; fLastStepInVolume=false; } 
+      
    inline G4VIntersectionLocator* GetIntersectionLocator();
    inline void SetIntersectionLocator(G4VIntersectionLocator *pLocator );
      // Change or get the object which calculates the exact 
@@ -179,17 +187,21 @@ class G4PropagatorInField
 
    inline G4double  GetZeroStepThreshold(); 
    inline void      SetZeroStepThreshold( G4double newLength ); 
-
+   
    void RefreshIntersectionLocator(); 
      // Update the Locator with parameters from this class
      //    and from current field manager
 
- protected:  // with description
+ protected:  // without description
 
    void PrintStepLengthDiagnostic( G4double      currentProposedStepLength,
                                    G4double      decreaseFactor,
                                    G4double      stepTrial,
                              const G4FieldTrack& aFieldTrack);
+
+   void ReportLoopingParticle( G4int count, double StepTaken, G4VPhysicalVolume* pPhysVol);
+   void ReportStuckParticle( G4int noZeroSteps, G4double proposedStep, G4double lastTriedStep,
+                             G4VPhysicalVolume* physVol );   
  private:
    // ----------------------------------------------------------------------
    //  DATA Members
@@ -264,9 +276,12 @@ class G4PropagatorInField
        // Last safety origin & value: for optimisation
 
    G4int          fVerboseLevel;
-       // For debuging purposes
+   G4bool         fVerbTracePiF;
+       // For debugging purposes
 
- private:
+   G4bool         fFirstStepInVolume; 
+   G4bool         fLastStepInVolume; 
+   G4bool         fNewTrack;
 };
 
 // Inline methods.
diff --git a/source/geometry/navigation/include/G4PropagatorInField.icc b/source/geometry/navigation/include/G4PropagatorInField.icc
index 779f531bf38..26711f92af9 100644
--- a/source/geometry/navigation/include/G4PropagatorInField.icc
+++ b/source/geometry/navigation/include/G4PropagatorInField.icc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4PropagatorInField.icc 81577 2014-06-03 10:13:36Z gcosmo $
+// $Id: G4PropagatorInField.icc 90836 2015-06-10 09:31:06Z gcosmo $
 //
 // 
 // ------------------------------------------------------------------------
@@ -203,7 +203,11 @@ G4int G4PropagatorInField::GetThresholdNoZeroSteps( G4int i )
    return t;
 }
 
-inline G4double  G4PropagatorInField::GetZeroStepThreshold(){ return fZeroStepThreshold; }
+inline G4double  G4PropagatorInField::GetZeroStepThreshold()
+{
+  return fZeroStepThreshold;
+}
+
 inline void      G4PropagatorInField::SetZeroStepThreshold( G4double newLength )
 { 
   fZeroStepThreshold= newLength;
@@ -273,10 +277,32 @@ G4bool G4PropagatorInField::IntersectChord( const G4ThreeVector&  StartPointA,
 {
   // Calculate the direction and length of the chord AB
   //
-  return fIntersectionLocator
+#ifdef G4DEBUG_PROPAGATION   
+  if( fVerbTracePiF )
+     G4cout << "**** G4PropagatorInField::IntersectChord called."
+            << " InPut: StartPointA: " << StartPointA
+            << " EndPointB= " << EndPointB
+            << " StepLength= " << LinearStepLength
+            << " IntersecLen= " << IntersectionPoint
+            << G4endl;
+#endif  
+
+  G4bool retVal=
+     fIntersectionLocator
          ->IntersectChord(StartPointA,EndPointB,NewSafety,
                           fPreviousSafety,fPreviousSftOrigin,
                           LinearStepLength,IntersectionPoint);
+
+#ifdef G4DEBUG_PROPAGATION
+  if( fVerbTracePiF )
+     G4cout << "**** G4PropagatorInField::IntersectChord  ended."
+            << " OutPut: Safety= " << NewSafety
+            << " StepLength= " << LinearStepLength
+            << " IntersecPt= " << IntersectionPoint
+            << G4endl;
+#endif  
+
+  return retVal;
 }
 
 inline G4EquationOfMotion*   G4PropagatorInField::GetCurrentEquationOfMotion()
diff --git a/source/geometry/navigation/include/G4VIntersectionLocator.hh b/source/geometry/navigation/include/G4VIntersectionLocator.hh
index 96e6a4cedee..700fd00d40c 100644
--- a/source/geometry/navigation/include/G4VIntersectionLocator.hh
+++ b/source/geometry/navigation/include/G4VIntersectionLocator.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4VIntersectionLocator.hh 66356 2012-12-18 09:02:32Z gcosmo $
+// $Id: G4VIntersectionLocator.hh 90836 2015-06-10 09:31:06Z gcosmo $
 //
 //
 // Class G4VIntersectionLocator 
@@ -125,6 +125,14 @@ class G4VIntersectionLocator
     inline G4bool AreIntersectionsAdjusted(){ return fUseNormalCorrection; }  
       // Change adjustment flag  ( New Interface ) 
 
+     void printStatus( const G4FieldTrack& startFT,
+                       const G4FieldTrack& currentFT, 
+                             G4double      requestStep, 
+                             G4double      safety,
+                             G4int         step,
+                       std::ostringstream& oss);
+       // Print Method for any ostream - e.g. cerr -- and for G4Exception
+    
   protected:  // with description
 
     G4FieldTrack ReEstimateEndpoint( const G4FieldTrack &CurrentStateA,  
@@ -172,6 +180,23 @@ class G4VIntersectionLocator
                           G4bool validNormal   );
       // Print a three-line report on the current "sub-step", ie trial intersection
 
+    G4bool LocateGlobalPointWithinVolumeAndCheck( const G4ThreeVector& pos );
+      // Locate point using navigator - updates state of Navigator.
+      // By default, it assumes that the point is inside the current volume,
+      // and returns true.
+      // In check mode, checks whether the point is *inside* the volume.
+      //   If it is inside, it returns true.
+      //   If not, issues a warning and returns false.
+
+    void LocateGlobalPointWithinVolumeCheckAndReport( const G4ThreeVector& pos,
+                                            const G4String& CodeLocationInfo,
+                                                  G4int     CheckMode );
+      // As above, but report information about code location.
+      // If CheckMode > 1, report extra information.
+   
+    inline void   SetCheckMode( G4bool value ) { fCheckMode = value; }
+    inline G4bool GetCheckMode()               { return fCheckMode; }
+
   private:  // no description
 
     G4ThreeVector GetLocalSurfaceNormal(const G4ThreeVector &CurrentE_Point,
@@ -190,7 +215,8 @@ class G4VIntersectionLocator
 
     G4int    fVerboseLevel;          // For debugging
     G4bool   fUseNormalCorrection;   // Configuration parameter
-
+    G4bool   fCheckMode;
+   
     G4Navigator   *fiNavigator;
 
     G4ChordFinder *fiChordFinder;
diff --git a/source/geometry/navigation/src/G4AuxiliaryNavServices.cc b/source/geometry/navigation/src/G4AuxiliaryNavServices.cc
index 6a9b2c7af45..46a950f86a9 100644
--- a/source/geometry/navigation/src/G4AuxiliaryNavServices.cc
+++ b/source/geometry/navigation/src/G4AuxiliaryNavServices.cc
@@ -23,16 +23,28 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4AuxiliaryNavServices.cc 66356 2012-12-18 09:02:32Z gcosmo $
+// $Id: G4AuxiliaryNavServices.cc 90836 2015-06-10 09:31:06Z gcosmo $
 //
 // --------------------------------------------------------------------
 
 #include "G4AuxiliaryNavServices.hh"
+#include "G4GeometryTolerance.hh"
 
-// This method currently exists only to allow compilers to find
-// the inline method (which are the core of this class)
-//
-G4bool G4AuxiliaryNavServices::testOne()
+// The existence a method here allows compilers to find the inline method
+// (which are the core of this class)
+// [ Compilers store the inline method in the module with the first 
+//   non-inline method.]
+// If this method did not exist, there would be none.
+
+void G4AuxiliaryNavServices::ReportTolerances()
 {
-  return true;
+   G4int oldPrec= G4cout.precision(16);
+   
+   G4cout << " Cartesian Tolerance (kCarTolerance): " << G4GeometryTolerance::GetInstance()->GetSurfaceTolerance()
+          << " (global) " << G4endl;
+   G4cout << " Radial Tolerance (kRadTolerance): " << G4GeometryTolerance::GetInstance()->GetRadialTolerance()
+          << " (global) " << G4endl;
+   G4cout << " Angular Tolerance (kAngTolerance): " << G4GeometryTolerance::GetInstance()->GetAngularTolerance()
+          << " (global) " << G4endl;
+   G4cout.precision(oldPrec); 
 }
diff --git a/source/geometry/navigation/src/G4BrentLocator.cc b/source/geometry/navigation/src/G4BrentLocator.cc
index 5812f01761b..427bf9de7cc 100644
--- a/source/geometry/navigation/src/G4BrentLocator.cc
+++ b/source/geometry/navigation/src/G4BrentLocator.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4BrentLocator.cc 66872 2013-01-15 01:25:57Z japost $
+// $Id: G4BrentLocator.cc 90836 2015-06-10 09:31:06Z gcosmo $
 //
 // Class G4BrentLocator implementation
 //
@@ -189,7 +189,7 @@ G4bool G4BrentLocator::EstimateIntersectionPoint(
 #ifdef G4DEBUG_FIELD
   static G4double tolerance= 1.0e-8; 
   G4ThreeVector  StartPosition= CurveStartPointVelocity.GetPosition(); 
-  if( (TrialPoint - StartPosition).mag() < tolerance * mm ) 
+  if( (TrialPoint - StartPosition).mag() < tolerance * CLHEP::mm ) 
   {
      G4Exception("G4BrentLocator::EstimateIntersectionPoint()", 
                  "GeomNav1002", JustWarning,
diff --git a/source/geometry/navigation/src/G4MultiLevelLocator.cc b/source/geometry/navigation/src/G4MultiLevelLocator.cc
index d474fad4359..3c3ac0baf6e 100644
--- a/source/geometry/navigation/src/G4MultiLevelLocator.cc
+++ b/source/geometry/navigation/src/G4MultiLevelLocator.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4MultiLevelLocator.cc 66872 2013-01-15 01:25:57Z japost $
+// $Id: G4MultiLevelLocator.cc 90836 2015-06-10 09:31:06Z gcosmo $
 //
 // Class G4MultiLevelLocator implementation
 //
@@ -159,7 +159,7 @@ G4bool G4MultiLevelLocator::EstimateIntersectionPoint(
   G4int depth=0; // Depth counts how many subdivisions of initial step made
 
 #ifdef G4DEBUG_FIELD
-  static const G4double tolerance = 1.0e-8 * mm; 
+  static const G4double tolerance = 1.0e-8 * CLHEP::mm; 
   G4ThreeVector  StartPosition= CurveStartPointVelocity.GetPosition(); 
   if( (TrialPoint - StartPosition).mag() < tolerance) 
   {
@@ -234,7 +234,7 @@ G4bool G4MultiLevelLocator::EstimateIntersectionPoint(
       G4double       MomDir_dot_Norm= NewMomentumDir.dot( NormalAtEntry ) ;
       
 #ifdef G4DEBUG_FIELD
-      if( VerboseLevel > 3 )
+      if( fVerboseLevel > 3 )
       { 
          G4ThreeVector  ChordAB           = Point_B - Point_A;
          G4double       ABchord_length    = ChordAB.mag(); 
diff --git a/source/geometry/navigation/src/G4NavigationLogger.cc b/source/geometry/navigation/src/G4NavigationLogger.cc
index ce67742da4d..c87b2f4c173 100644
--- a/source/geometry/navigation/src/G4NavigationLogger.cc
+++ b/source/geometry/navigation/src/G4NavigationLogger.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4NavigationLogger.cc 66872 2013-01-15 01:25:57Z japost $
+// $Id: G4NavigationLogger.cc 90836 2015-06-10 09:31:06Z gcosmo $
 //
 //
 // class G4NavigationLogger Implementation
@@ -34,12 +34,16 @@
 // --------------------------------------------------------------------
 
 #include <iomanip>
+#include <CLHEP/Units/SystemOfUnits.h>
 
 #include "G4NavigationLogger.hh"
 #include "G4GeometryTolerance.hh"
 
+// const double millimeter = CLHEP::Units::millimeter;
+using CLHEP::millimeter;
+
 G4NavigationLogger::G4NavigationLogger(const G4String& id)
-  : fId(id), fVerbose(0)
+   : fId(id), fVerbose(0), fMinTriggerDistance( DBL_MAX ), fReportSoftWarnings( false )
 {
 }
 
@@ -47,80 +51,92 @@ G4NavigationLogger::~G4NavigationLogger()
 {
 }
 
+// ********************************************************************
+// PreComputeStepLog
+// ********************************************************************
+//
 void
 G4NavigationLogger::PreComputeStepLog(const G4VPhysicalVolume* motherPhysical,
                                             G4double motherSafety,
                                       const G4ThreeVector& localPoint) const
 {
-    G4VSolid* motherSolid = motherPhysical->GetLogicalVolume()->GetSolid();
-    G4String fType = fId + "::ComputeStep()";
-    if( fVerbose == 1 )
-    {
-      G4cout << "*************** " << fType << " *****************" << G4endl
-             << " VolType "
-             << std::setw(15) << "Safety/mm" << " "
-             << std::setw(15) << "Distance/mm" << " "
-             << std::setw(52) << "Position (local coordinates)"
-             << " - Solid" << G4endl;
-      G4cout << "  Mother "
-             << std::setw(15) << motherSafety << " " 
-             << std::setw(15) << "N/C"        << " " << localPoint << " - "
-             << motherSolid->GetEntityType() << ": " << motherSolid->GetName()
-             << G4endl;
-    }
-    if ( motherSafety < 0.0 )
+  G4VSolid* motherSolid = motherPhysical->GetLogicalVolume()->GetSolid();
+  G4String fType = fId + "::ComputeStep()";
+  // const double millimeter = CLHEP::millimeter;
+  
+  if ( fVerbose == 1 || fVerbose > 4 )       
+  {
+    G4cout << "*************** " << fType << " *****************" << G4endl
+           << " VolType "
+           << std::setw(15) << "Safety/mm" << " "
+           << std::setw(15) << "Distance/mm" << " "
+           << std::setw(52) << "Position (local coordinates)"
+           << " - Solid" << G4endl;
+    G4cout << "  Mother "
+           << std::setw(15) << motherSafety / millimeter << " " 
+           << std::setw(15) << "N/C"        << " " << localPoint << " - "
+           << motherSolid->GetEntityType() << ": " << motherSolid->GetName()
+           << G4endl;
+  }
+  if ( motherSafety < 0.0 )
+  {
+    std::ostringstream message;
+    message << "Negative Safety In Voxel Navigation !" << G4endl
+            << "        Current solid " << motherSolid->GetName()
+            << " gave negative safety: " << motherSafety / millimeter << G4endl
+            << "        for the current (local) point " << localPoint;
+    message << " Solid info: " << *motherSolid << G4endl;      
+    G4Exception(fType, "GeomNav0003", FatalException, message);
+  }
+  if( motherSolid->Inside(localPoint)==kOutside )
+  {
+    std::ostringstream message;
+    message << "Point is outside Current Volume - " << G4endl
+            << "          Point " << localPoint / millimeter
+            << " is outside current volume '" << motherPhysical->GetName()
+            << "'" << G4endl;
+    G4double estDistToSolid= motherSolid->DistanceToIn(localPoint); 
+    message << "          Estimated isotropic distance to solid (distToIn)= " 
+            << estDistToSolid << G4endl;
+    if( estDistToSolid > 100.0 * motherSolid->GetTolerance() )
     {
-      std::ostringstream message;
-      message << "Negative Safety In Voxel Navigation !" << G4endl
-             << "        Current solid " << motherSolid->GetName()
-             << " gave negative safety: " << motherSafety << G4endl
-             << "        for the current (local) point " << localPoint;
-      motherSolid->DumpInfo();
-      G4Exception(fType, "GeomNav0003", FatalException, message);
+      message << " Solid info: " << *motherSolid << G4endl;
+      G4Exception(fType, "GeomNav0003", JustWarning, message,
+                  "Point is far outside Current Volume !" ); 
     }
-    if( motherSolid->Inside(localPoint)==kOutside )
+    else
     {
-      std::ostringstream message;
-      message << "Point is outside Current Volume - " << G4endl
-              << "          Point " << localPoint
-              << " is outside current volume " << motherPhysical->GetName()
-              << G4endl;
-      G4double estDistToSolid= motherSolid->DistanceToIn(localPoint); 
-      message << "          Estimated isotropic distance to solid (distToIn)= " 
-              << estDistToSolid;
-      if( estDistToSolid > 100.0 * motherSolid->GetTolerance() )
-      {
-        motherSolid->DumpInfo();
-        G4Exception(fType, "GeomNav0003", FatalException, message,
-                    "Point is far outside Current Volume !" ); 
-      }
-      else
-        G4Exception(fType, "GeomNav1001", JustWarning, message,
-                    "Point is a little outside Current Volume."); 
+      G4Exception(fType, "GeomNav1001", JustWarning, message,
+                  "Point is a little outside Current Volume.");
     }
+  }
 
-    // Verification / verbosity
-    //
-    if ( fVerbose > 1 )
-    {
-      static G4ThreadLocal G4int precVerf= 20;  // Precision 
-      G4int oldprec = G4cout.precision(precVerf);
-      G4cout << " - Information on mother / key daughters ..." << G4endl;
-      G4cout << "  Type   " << std::setw(12) << "Solid-Name"   << " " 
-             << std::setw(3*(6+precVerf))    << " local point" << " "
-             << std::setw(4+precVerf)        << "solid-Safety" << " "
-             << std::setw(4+precVerf)        << "solid-Step"   << " "
-             << std::setw(17)                << "distance Method "
-             << std::setw(3*(6+precVerf))    << " local direction" << " "
-             << G4endl;
-      G4cout << "  Mother " << std::setw(12) << motherSolid->GetName() << " "
-             << std::setw(4+precVerf)        << localPoint   << " "
-             << std::setw(4+precVerf)        << motherSafety << " "
-             << G4endl;
-      G4cout.precision(oldprec);
-    }
+  // Verification / verbosity
+  //
+  if ( fVerbose > 1 )
+  {
+    static const G4int precVerf= 16;  // Precision 
+    G4int oldprec = G4cout.precision(precVerf);
+    G4cout << " - Information on mother / key daughters ..." << G4endl;
+    G4cout << "  Type   " << std::setw(12) << "Solid-Name"   << " " 
+           << std::setw(3*(6+precVerf))    << " local point" << " "
+           << std::setw(4+precVerf)        << "solid-Safety" << " "
+           << std::setw(4+precVerf)        << "solid-Step"   << " "
+           << std::setw(17)                << "distance Method "
+           << std::setw(3*(6+precVerf))    << " local direction" << " "
+           << G4endl;
+    G4cout << "  Mother " << std::setw(12) << motherSolid->GetName() << " "
+           << std::setw(4+precVerf)        << localPoint   << " "
+           << std::setw(4+precVerf)        << motherSafety << " "
+           << G4endl;
+    G4cout.precision(oldprec);
+  }
 }
 
+// ********************************************************************
+// AlongComputeStepLog
+// ********************************************************************
+//
 void
 G4NavigationLogger::AlongComputeStepLog(const G4VSolid* sampleSolid,
                                         const G4ThreeVector& samplePoint,
@@ -145,7 +161,7 @@ G4NavigationLogger::AlongComputeStepLog(const G4VSolid* sampleSolid,
     else if (insideIntPt == kSurface)
       { solidResponse = "-kSurface-"; }
 
-    if ( fVerbose == 1 )
+    if ( fVerbose == 1 || fVerbose > 4 )
     {
       G4cout << "    Invoked Inside() for solid: "
              << sampleSolid->GetName()
@@ -170,8 +186,8 @@ G4NavigationLogger::AlongComputeStepLog(const G4VSolid* sampleSolid,
     }
     if( insideIntPt != kSurface )
     {
-      G4int oldcoutPrec = G4cout.precision(16); 
       std::ostringstream message;
+      message.precision(16); 
       message << "Conflicting response from Solid." << G4endl
               << "          Inaccurate solid DistanceToIn"
               << " for solid " << sampleSolid->GetName() << G4endl
@@ -188,8 +204,9 @@ G4NavigationLogger::AlongComputeStepLog(const G4VSolid* sampleSolid,
       {
         message << "          DistanceToOut(p) = " << safetyOut;
       }
+      message << G4endl;
+      message << " Solid Parameters: " << *sampleSolid;
       G4Exception(fType, "GeomNav1001", JustWarning, message);
-      G4cout.precision(oldcoutPrec);
     }
     else
     {  
@@ -223,7 +240,7 @@ G4NavigationLogger::AlongComputeStepLog(const G4VSolid* sampleSolid,
     //
     if ( fVerbose > 1 )
     {
-      static G4ThreadLocal G4int precVerf= 20;  // Precision 
+      static const G4int precVerf= 20;  // Precision 
       G4int oldprec = G4cout.precision(precVerf);
       G4cout << "Daughter "
              << std::setw(12)         << sampleSolid->GetName() << " "
@@ -238,6 +255,188 @@ G4NavigationLogger::AlongComputeStepLog(const G4VSolid* sampleSolid,
   }
 }
 
+// ********************************************************************
+// CheckDaughterEntryPoint
+// ********************************************************************
+//
+void
+G4NavigationLogger::CheckDaughterEntryPoint(const G4VSolid* sampleSolid,
+                                            const G4ThreeVector& samplePoint,
+                                            const G4ThreeVector& sampleDirection,
+                                            const G4VSolid* motherSolid,
+                                            const G4ThreeVector& localPoint,
+                                            const G4ThreeVector& localDirection,
+                                                  G4double motherStep,
+                                                  G4double sampleStep) const
+{
+  const G4double kCarTolerance = motherSolid->GetTolerance();
+   
+  // Double check the expected condition of being called
+  //
+  G4bool SuspiciousDaughterDist = ( sampleStep >= motherStep )
+                               && ( sampleStep < kInfinity );
+
+  if( sampleStep >= kInfinity )
+  {
+    G4ExceptionDescription msg;
+    msg.precision(12);
+    msg << " WARNING - Called with 'infinite' step. " << G4endl;
+    msg << "    Checks have no meaning if daughter step is infinite." << G4endl;
+    msg << "    kInfinity  = " << kInfinity  / millimeter << G4endl;
+    msg << "    sampleStep = " << sampleStep / millimeter << G4endl;
+    msg << "    sampleStep < kInfinity " << (sampleStep<kInfinity) << G4endl;
+    msg << "    kInfinity - sampleStep " << (kInfinity-sampleStep) / millimeter << G4endl;
+    msg << " Returning immediately.";
+    G4Exception("G4NavigationLogger::CheckDaughterEntryPoint()",
+                "GeomNav0003", JustWarning, msg);
+    return; 
+  }
+
+  // The intersection point with the daughter is after the exit point
+  // from the mother volume !!
+  // This is legal / allowed to occur only if the mother is concave
+  // ****************************************************************
+  // If mother is convex the daughter volume must be encountered
+  // before the exit from the current volume!
+   
+  // Check #1) whether the track will re-enter the current mother 
+  //           in the extension past its current exit point 
+  G4ThreeVector localExitMotherPos= localPoint+motherStep*localDirection;
+  G4double distExitToReEntry= motherSolid->DistanceToIn(localExitMotherPos,
+                                                        localDirection); 
+   
+  // Check #2) whether the 'entry' point in the daughter is inside the mother
+  //
+  G4ThreeVector localEntryInDaughter = localPoint+sampleStep*localDirection; 
+  EInside insideMother= motherSolid->Inside( localEntryInDaughter ); 
+   
+  G4String solidResponse = "-kInside-";
+  if (insideMother == kOutside)       { solidResponse = "-kOutside-"; }
+  else if (insideMother == kSurface)  { solidResponse = "-kSurface-"; }
+
+  G4double       distToReEntry = distExitToReEntry + motherStep;
+  G4ThreeVector  localReEntryPoint = localPoint+distToReEntry*localDirection;
+
+  // Clear error  -- Daughter entry point is bad
+  G4bool DaughterEntryIsOutside = SuspiciousDaughterDist
+         && ( (sampleStep < distToReEntry) || (insideMother == kOutside ) );
+  G4bool EntryIsMotherExit = std::fabs(sampleStep-motherStep) < kCarTolerance;
+
+  // Check for more subtle error - is exit point of daughter correct ?
+  G4ThreeVector sampleEntryPoint= samplePoint+sampleStep*sampleDirection;
+  G4double sampleCrossingDist= sampleSolid->DistanceToOut( sampleEntryPoint,
+                                                           sampleDirection );
+  G4double      sampleExitDist = sampleStep+sampleCrossingDist;
+  G4ThreeVector sampleExitPoint= samplePoint+sampleExitDist*sampleDirection;
+
+  G4bool TransitProblem = ( (sampleStep < motherStep)
+                         && (sampleExitDist > motherStep + kCarTolerance) )
+           || ( EntryIsMotherExit && (sampleCrossingDist > kCarTolerance) );
+
+  if( DaughterEntryIsOutside
+       || TransitProblem
+       || (SuspiciousDaughterDist && (fVerbose > 3) ) )
+  {
+    G4ExceptionDescription msg;
+    msg.precision(16);
+
+    if( DaughterEntryIsOutside )
+    {   
+      msg << "WARNING> Intersection distance to Daughter volume is further"
+          <<    " than the distance to boundary." << G4endl
+          << "  It appears that part of the daughter volume is *outside*"
+          <<    " this mother. " << G4endl;
+      msg << "  One of the following checks signaled a problem:" << G4endl
+          << "  -sampleStep (dist to daugh) <  mother-exit dist + distance "
+          <<      "to ReEntry point for mother " << G4endl
+          << "  -position of daughter intersection is outside mother volume."
+          << G4endl;
+    }
+    else if( TransitProblem )
+    {
+      G4double protrusion = sampleExitDist - motherStep;
+
+      msg << "WARNING>  Daughter volume extends beyond mother boundary. "
+          << G4endl;
+      if ( ( sampleStep < motherStep )
+        && (sampleExitDist > motherStep + kCarTolerance ) )
+      {
+        // 1st Issue with Daughter
+        msg << "        Crossing distance in the daughter causes is to extend"
+            << " beyond the mother exit. " << G4endl;
+        msg << "        Length protruding = " << protrusion << G4endl;
+      }
+      if( EntryIsMotherExit )
+      {
+        // 1st Issue with Daughter
+        msg << "        Intersection distance to Daughter is within "
+            << " tolerance of the distance" << G4endl;
+        msg << "        to the mother boundary * and * " << G4endl;
+        msg << "        the crossing distance in the daughter is > tolerance."
+            << G4endl;           
+      }         
+    }      
+    else
+    {
+      msg << "NearMiss> Intersection to Daughter volume is in extension past the"
+          <<   " current exit point of the mother volume." << G4endl;
+      msg << "          This is not an error - just an unusual occurence,"
+          <<   " possible in the case of concave volume. " << G4endl;
+    }
+    msg << "---- Information about intersection with daughter, mother: "
+        << G4endl;
+    msg << "    sampleStep (daughter) = " << sampleStep << G4endl
+        << "    motherStep            = " << motherStep << G4endl
+        << "    distToRentry(mother)  = " << distToReEntry << G4endl
+        << "    Inside(entry pnt daug): " << solidResponse << G4endl
+        << "    dist across daughter  = " << sampleCrossingDist << G4endl;
+    msg << " Mother Name (Solid) : " << motherSolid->GetName() << G4endl
+        << " In local (mother) coordinates: " << G4endl
+        << "    Starting     Point    = " << localPoint << G4endl
+        << "    Direction             = " << localDirection << G4endl
+        << "    Exit Point    (mother)= " << localExitMotherPos << G4endl
+        << "    Entry Point (daughter)= " << localPoint+sampleStep*localDirection
+        << G4endl;
+    if( distToReEntry < kInfinity )
+    {
+      msg << "    ReEntry Point (mother)= " << localReEntryPoint << G4endl;
+    }
+    else
+    {
+      msg << "    No ReEntry - track does not encounter mother volume again! "
+          << G4endl;
+    }
+    msg << " Daughter Name (Solid): " << sampleSolid->GetName() << G4endl
+        << " In daughter coordinates: " << G4endl
+        << "    Starting     Point    = " << samplePoint << G4endl
+        << "    Direction             = " << sampleDirection << G4endl
+        << "    Entry Point (daughter)= " << sampleEntryPoint
+        << G4endl;
+    msg << "  Description of mother solid: " << G4endl
+        << *motherSolid << G4endl
+        << "  Description of daughter solid: " << G4endl
+        << *sampleSolid << G4endl;
+    G4String fType = fId + "::ComputeStep()";
+
+    if( DaughterEntryIsOutside || TransitProblem )
+    {
+      G4Exception(fType, "GeomNav0003", JustWarning, msg);
+    }
+    else
+    {
+      G4cout << fType
+             << " -- Checked distance of Entry to daughter vs exit of mother"
+             << G4endl;
+      G4cout << msg.str();
+      G4cout << G4endl;
+    }
+  }
+}
+
+// ********************************************************************
+// PostComputeStepLog
+// ********************************************************************
+//
 void
 G4NavigationLogger::PostComputeStepLog(const G4VSolid* motherSolid,
                                        const G4ThreeVector& localPoint,
@@ -245,7 +444,7 @@ G4NavigationLogger::PostComputeStepLog(const G4VSolid* motherSolid,
                                              G4double motherStep,
                                              G4double motherSafety) const
 {
-  if( fVerbose == 1 )
+  if ( fVerbose == 1 || fVerbose > 4 )     
   {
     G4cout << "  Mother "
            << std::setw(15) << motherSafety << " " 
@@ -272,7 +471,7 @@ G4NavigationLogger::PostComputeStepLog(const G4VSolid* motherSolid,
   }
   if ( fVerbose > 1 )
   {
-    static G4ThreadLocal G4int precVerf= 20;  // Precision 
+    static const G4int precVerf= 20;  // Precision 
     G4int oldprec = G4cout.precision(precVerf);
     G4cout << "  Mother " << std::setw(12) << motherSolid->GetName() << " "
            << std::setw(4+precVerf)       << localPoint   << " "
@@ -285,47 +484,330 @@ G4NavigationLogger::PostComputeStepLog(const G4VSolid* motherSolid,
   }
 }
 
+// ********************************************************************
+// ComputeSafetyLog
+// ********************************************************************
+//
 void
 G4NavigationLogger::ComputeSafetyLog(const G4VSolid* solid,
                                      const G4ThreeVector& point,
                                            G4double safety,
-                                           G4bool banner) const
+                                           G4bool isMotherVolume, 
+                                           G4int banner) const
 {
-  G4String volumeType = "Daughter ";
-  if (banner)
+  if( banner < 0 )
   {
-    G4cout << "************** " << fId << "::ComputeSafety() ****************" << G4endl;
-    G4cout << " VolType "
-           << std::setw(15) << "Safety/mm" << " "
-           << std::setw(52) << "Position (local coordinates)"
-           << " - Solid" << G4endl;
-    volumeType = "  Mother ";
+    banner = isMotherVolume;
+  }
+  if( fVerbose >= 1 )
+  {
+    G4String volumeType = isMotherVolume ? " Mother " : "Daughter";
+    if (banner)
+    {
+      G4cout << "************** " << fId << "::ComputeSafety() ****************"
+             << G4endl;
+      G4cout << " VolType "
+             << std::setw(15) << "Safety/mm" << " "
+             << std::setw(52) << "Position (local coordinates)"
+             << " - Solid" << G4endl;
+    }
+    G4cout << volumeType
+           << std::setw(15) << safety << " " << point  << " - "
+           << solid->GetEntityType() << ": " << solid->GetName() << G4endl;
   }
-  G4cout << volumeType
-         << std::setw(15) << safety << " " << point  << " - "
-         << solid->GetEntityType() << ": " << solid->GetName() << G4endl;
 }
 
+// ********************************************************************
+// PrintDaughterLog
+// ********************************************************************
+//
 void
 G4NavigationLogger::PrintDaughterLog (const G4VSolid* sampleSolid,
                                       const G4ThreeVector& samplePoint,
                                             G4double sampleSafety,
-                                            G4double sampleStep) const
+                                            G4bool   withStep,
+                                      const G4ThreeVector& sampleDirection,                                                                               G4double sampleStep ) const
 {
-  if ( fVerbose == 1 )
+  if ( fVerbose >= 1 )
   {
+    G4int oldPrec= G4cout.precision(8);
     G4cout << "Daughter "
            << std::setw(15) << sampleSafety << " ";
-    if (sampleStep)
+    if (withStep)  // (sampleStep != -1.0 )
     {
       G4cout << std::setw(15) << sampleStep << " ";
     }
     else
     {
-      G4cout << std::setw(15) << "N/C" << " ";
+      G4cout << std::setw(15) << "Not-Available" << " ";
     }
     G4cout << samplePoint   << " - "
-           << sampleSolid->GetEntityType() << ": " << sampleSolid->GetName()
-           << G4endl;
+           << sampleSolid->GetEntityType() << ": " << sampleSolid->GetName();
+    if( withStep )
+    {
+      G4cout << " dir= " << sampleDirection;
+    }
+    G4cout << G4endl;
+    G4cout.precision(oldPrec);
+  }
+}
+
+// ********************************************************************
+// CheckAndReportBadNormal
+// ********************************************************************
+//
+G4bool
+G4NavigationLogger::
+CheckAndReportBadNormal(const G4ThreeVector& unitNormal,
+                        const G4ThreeVector& localPoint,
+                        const G4ThreeVector& localDirection,
+                              G4double         step,
+                        const G4VSolid*      solid,
+                        const char*          msg ) const
+{
+  G4double  normMag2 = unitNormal.mag2();
+  G4bool badLength = ( std::fabs ( normMag2 - 1.0 ) > CLHEP::perMillion );
+
+  if( badLength )
+  {
+    G4double  normMag= std::sqrt(normMag2); 
+    G4ExceptionDescription message;
+    message.precision(10);
+    message << "============================================================"
+            << G4endl;
+    message << " WARNING>  Normal is not a unit vector. "
+            << "           Expected normal-global-frame to be valid "
+            << " i.e. a unit vector!" << G4endl
+            << "  - but |normal|   = "  << normMag
+            << "  - and |normal|^2     = "  << normMag2 << G4endl
+            << "    which differ from 1.0 by: " <<  G4endl 
+            << "        |normal|-1 = " << normMag - 1.0
+            << "    and |normal|^2 - 1 = " << normMag2 - 1.0 << G4endl
+            << "   n = " << unitNormal << G4endl;
+    message << " Info string: " << * msg << G4endl;
+    message << "============================================================"
+            << G4endl;
+
+    message.precision(16);
+
+    message << " Information on call to DistanceToOut: " << G4endl;
+    message << "   Position  = " << localPoint << G4endl
+            << "   Direction = " << localDirection << G4endl;
+    message << "   Obtained> distance      = " << step << G4endl;
+    message << "           > Exit position = " << localPoint+step*localDirection
+            << G4endl;
+    message << " Parameters of solid:     " << G4endl;
+    message << *solid; 
+    message << "============================================================";
+      
+    G4String fMethod = fId + "::ComputeStep()";
+    G4Exception( fMethod, "GeomNav0003", JustWarning, message); 
+  }
+  return badLength;
+}
+
+// ********************************************************************
+// ReportOutsideMother
+// ********************************************************************
+//
+// Report Exception if point is outside mother.
+// Fatal exception will be used if either 'checkMode error is > triggerDist
+//
+void
+G4NavigationLogger::ReportOutsideMother(const G4ThreeVector& localPoint,
+                                        const G4ThreeVector& localDirection,
+                                        const G4VPhysicalVolume* physical,
+                                              G4double triggerDist) const                                   
+{
+  const G4LogicalVolume* logicalVol = physical
+                                    ? physical->GetLogicalVolume() : 0;
+  const G4VSolid* solid = logicalVol
+                        ? logicalVol->GetSolid() : 0;
+
+  G4String fMethod = fId + "::ComputeStep()";
+
+  if( solid == 0 )
+  {
+    G4Exception(fMethod, "GeomNav0003", FatalException,
+                "Erroneous call to ReportOutsideMother: no Solid is available");
+    return;
+  }
+  const G4double kCarTolerance = solid->GetTolerance();
+
+  // Double check reply - it should be kInfinity
+  const G4double distToOut = solid->DistanceToOut(localPoint, localDirection);
+  // const G4double distToOutNeg = solid->DistanceToOut(localPoint, -localDirection);
+  
+  const EInside  inSolid   = solid->Inside(localPoint);
+  const G4double safetyToIn  = solid->DistanceToIn(localPoint);
+  const G4double safetyToOut = solid->DistanceToOut(localPoint);
+
+  const G4double distToInPos = solid->DistanceToIn(localPoint, localDirection);
+  // const G4double distToInNeg = solid->DistanceToIn(localPoint, -localDirection);  
+
+  // 1. Check consistency between Safety obtained and report from distance
+  //     We must ensure that (mother)Safety <= 0.0
+  //       in the case that the point is outside!
+  //    [ If this is not the case, this problem can easily go undetected,
+  //       except in Check mode ! ] 
+  if( safetyToOut > kCarTolerance
+      && ( distToOut < 0.0 || distToOut >= kInfinity ) )
+  {
+     G4ExceptionDescription msg1;     
+     // fNavClerk->ReportBadSafety(localPoint, localDirection,
+     //                     motherPhysical, motherSafety, motherStep);
+     msg1 << " Dangerous inconsistency in response of solid." << G4endl
+          << "    Solid type: " << solid->GetEntityType()
+          << "    Name= " << solid->GetName()           << G4endl;
+     msg1 << " Mother volume gives safety > 0 despite being called for *Outside* point "
+          << G4endl
+          << "   Location = " << localPoint     << G4endl
+          << "   Direction= " << localDirection << G4endl
+          << "   - Safety (Isotropic d) = " << safetyToOut   << G4endl
+          << "   - Intersection Distance= " << distToOut << G4endl
+          << G4endl;
+     G4Exception( fMethod, "GeomNav0123", JustWarning, msg1);
+  }
+
+  // 2. Inconsistency - Too many distances are zero (or will be rounded to zero)
+
+  G4ExceptionDescription msg2;
+  if( std::fabs(distToOut) < kCarTolerance && std::fabs(distToInPos) < kCarTolerance ) 
+  {
+     // If both distanceToIn and distanceToOut (p,v) are zero for one direction,
+     //  the particle could get stuck!
+  }
+
+  G4ExceptionDescription msg;
+  msg.precision(10);
+  // G4bool reportIssue= true;
+  
+  if( std::fabs(distToOut) < kCarTolerance )
+  {
+    // 3. Soft error - safety is not rounded to zero
+    //    Report nothing - except in 'loud' mode
+    if( fReportSoftWarnings )
+    {
+      // reportIssue= true;
+      msg << " Warning>  DistanceToOut(p,v): Distance from surface is not rounded to zero" << G4endl;
+    } else { 
+      // reportIssue= false;
+      return;
+    }
+  }
+  else
+  {
+    // 4. General message - complain that the point is outside!
+    //     and provide all information about the current location,
+    //     direction and the answers of the solid
+    msg << "============================================================" << G4endl;
+    msg << " WARNING>  Current Point appears to be Outside mother volume !! " << G4endl;
+    msg << "   Response of DistanceToOut was negative or kInfinity when called in "
+        << fMethod << G4endl;
   }
+
+  // Generate and 'print'/stream all the information needed
+  this->ReportVolumeAndIntersection( msg, localPoint, localDirection, physical ); 
+  
+  // Default for distance of 'major' error
+  if( triggerDist <= 0.0 ) {
+     // triggerDist = 1.e+6 * kCarTolerance; // Well beyond tolerance
+    triggerDist = std::max ( 1.0e+6 * kCarTolerance,  // Well beyond tolerance
+                             fMinTriggerDistance );
+  }
+
+  G4bool majorError = inSolid==kOutside
+                    ? ( safetyToIn > triggerDist )
+                    : ( safetyToOut > triggerDist );
+  
+  G4ExceptionSeverity exceptionType = JustWarning;
+  if ( majorError )
+  {
+    exceptionType = FatalException;
+  }
+  
+  G4Exception( fMethod, "GeomNav0003", exceptionType, msg);
+}
+
+namespace  G4NavigationLogger_Namespace {
+  const G4String EInsideNames[3] = { "kOutside", "kSurface", "kInside" }; 
+}
+
+void
+G4NavigationLogger::ReportVolumeAndIntersection( std::ostream&      os,
+                                           const G4ThreeVector&     localPoint,
+                                           const G4ThreeVector&     localDirection,
+                                           const G4VPhysicalVolume* physical ) const 
+{
+  G4String fMethod = fId + "::ComputeStep() / output from G4NavigatorLogger::ReportVolumeAndIntersection";   
+  const G4LogicalVolume* logicalVol = physical
+                                    ? physical->GetLogicalVolume() : 0;
+  const G4VSolid* solid = logicalVol
+                        ? logicalVol->GetSolid() : 0;
+  if( solid == 0 )
+  {
+     os << " ERROR> Solid is not available. Logical Volume = " << logicalVol << std::endl;
+     return;
+  }
+  const G4double kCarTolerance = solid->GetTolerance();
+
+  // Double check reply - it should be kInfinity
+  const G4double distToOut = solid->DistanceToOut(localPoint, localDirection);
+  const G4double distToOutNeg = solid->DistanceToOut(localPoint, -localDirection);
+  
+  const EInside  inSolid   = solid->Inside(localPoint);
+  const G4double safetyToIn  = solid->DistanceToIn(localPoint);
+  const G4double safetyToOut = solid->DistanceToOut(localPoint);
+
+  const G4double distToInPos = solid->DistanceToIn(localPoint, localDirection);
+  const G4double distToInNeg = solid->DistanceToIn(localPoint, -localDirection);  
+
+  const G4ThreeVector exitNormal = solid->SurfaceNormal(localPoint); 
+
+  // Double check whether points nearby are in/surface/out
+  const G4double epsilonDist = 1000.0 * kCarTolerance;
+  const G4ThreeVector PointPlusDir  = localPoint + epsilonDist * localDirection;
+  const G4ThreeVector PointMinusDir = localPoint - epsilonDist * localDirection;
+  const G4ThreeVector PointPlusNorm  = localPoint + epsilonDist * exitNormal;  
+  const G4ThreeVector PointMinusNorm = localPoint - epsilonDist * exitNormal;
+
+  const EInside inPlusDir= solid->Inside(PointPlusDir);
+  const EInside inMinusDir= solid->Inside(PointMinusDir);  
+  const EInside inPlusNorm= solid->Inside(PointPlusNorm);
+  const EInside inMinusNorm= solid->Inside(PointMinusNorm);  
+
+  // Basic information 
+  os << "   Current physical volume = " << physical->GetName() << G4endl;
+  os << "   Position (loc)  = " << localPoint << G4endl
+      << "   Direction (dir) = " << localDirection << G4endl;
+  os << " For confirmation:" << G4endl;
+  os << "   Response of DistanceToOut (loc, +dir)= " << distToOut << G4endl;
+  os << "   Response of DistanceToOut (loc, -dir)= " << distToOutNeg << G4endl;
+  
+  os << "   Inside responds = " << inSolid << " , ie: ";
+  if( inSolid == kOutside ) {
+    os << " Outside -- a problem, as observed in " << fMethod << G4endl;
+  } else if( inSolid == kSurface ) {
+    os << " Surface -- unexpected / inconsistent response ! " << G4endl;
+  } else {
+    os << " Inside  -- unexpected / inconsistent response ! " << G4endl;
+  }
+  os << "   Obtain safety(ToIn) = " << safetyToIn << G4endl;
+  os << "   Obtain safety(ToOut) = " << safetyToOut << G4endl;
+  os << " Response of DistanceToIn (loc, +dir)= "  << distToInPos << G4endl;
+  os << " Response of DistanceToIn (loc, -dir)= "  << distToInNeg << G4endl;
+
+  os << " Exit Normal at loc = " << exitNormal << G4endl;
+  os << "     Dir . Normal   = " << exitNormal.dot( localDirection );
+  os << G4endl;
+
+  os << " Checking points moved from position by distance/dir.  Solid responses: " << G4endl
+     << "  +eps in direction :    " << G4NavigationLogger_Namespace::EInsideNames[inPlusDir] 
+     << "  +eps in Normal  :    " << G4NavigationLogger_Namespace::EInsideNames[inPlusNorm]  << G4endl
+     << "  -eps in direction :    " << G4NavigationLogger_Namespace::EInsideNames[inMinusDir]
+     << "  -eps in Normal  :    " << G4NavigationLogger_Namespace::EInsideNames[inMinusNorm]  << G4endl;
+     
+  os << " Parameters of solid:     " << G4endl;
+  os << *solid;
+  os << "============================================================";
 }
diff --git a/source/geometry/navigation/src/G4NormalNavigation.cc b/source/geometry/navigation/src/G4NormalNavigation.cc
index 72767148c49..cd9f7a7440e 100644
--- a/source/geometry/navigation/src/G4NormalNavigation.cc
+++ b/source/geometry/navigation/src/G4NormalNavigation.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4NormalNavigation.cc 66356 2012-12-18 09:02:32Z gcosmo $
+// $Id: G4NormalNavigation.cc 90836 2015-06-10 09:31:06Z gcosmo $
 //
 //
 // class G4NormalNavigation Implementation
@@ -34,6 +34,7 @@
 // --------------------------------------------------------------------
 
 #include "G4NormalNavigation.hh"
+#include "G4NavigationLogger.hh"
 #include "G4AffineTransform.hh"
 
 // ********************************************************************
@@ -41,7 +42,7 @@
 // ********************************************************************
 //
 G4NormalNavigation::G4NormalNavigation()
-  : fCheck(false)
+   : fCheck(false)
 {
   fLogger = new G4NavigationLogger("G4NormalNavigation");
 }
@@ -59,6 +60,11 @@ G4NormalNavigation::~G4NormalNavigation()
 // ComputeStep
 // ********************************************************************
 //
+//  On entry
+//    exitNormal, validExitNormal:  for previous exited volume (daughter)
+// 
+//  On exit
+//    exitNormal, validExitNormal:  for mother, if exiting it (else unchanged)
 G4double
 G4NormalNavigation::ComputeStep(const G4ThreeVector &localPoint,
                                 const G4ThreeVector &localDirection,
@@ -76,8 +82,11 @@ G4NormalNavigation::ComputeStep(const G4ThreeVector &localPoint,
   G4LogicalVolume *motherLogical;
   G4VSolid *motherSolid;
   G4ThreeVector sampleDirection;
-  G4double ourStep=currentProposedStepLength, motherSafety, ourSafety;
+  G4double ourStep=currentProposedStepLength, ourSafety;
+  G4double motherSafety, motherStep=DBL_MAX;
   G4int localNoDaughters, sampleNo;
+  G4bool motherValidExitNormal=false;
+  G4ThreeVector motherExitNormal; 
 
   motherPhysical = history.GetTopVolume();
   motherLogical  = motherPhysical->GetLogicalVolume();
@@ -87,15 +96,15 @@ G4NormalNavigation::ComputeStep(const G4ThreeVector &localPoint,
   //
   motherSafety = motherSolid->DistanceToOut(localPoint);
   ourSafety = motherSafety; // Working isotropic safety
+
+  localNoDaughters = motherLogical->GetNoDaughters();
   
 #ifdef G4VERBOSE
-  if ( fCheck )
+  if ( fCheck && ( (localNoDaughters>0) || (ourStep < motherSafety) )  )
   {
     fLogger->PreComputeStepLog(motherPhysical, motherSafety, localPoint);
   }
 #endif
-
-  //
   // Compute daughter safeties & intersections
   //
 
@@ -107,14 +116,50 @@ G4NormalNavigation::ComputeStep(const G4ThreeVector &localPoint,
     {
       // Block exited daughter volume
       //
-      blockedExitedVol =* pBlockedPhysical;
+      blockedExitedVol = (*pBlockedPhysical);
       ourSafety = 0;
     }
   }
   exiting  = false;
   entering = false;
 
-  localNoDaughters = motherLogical->GetNoDaughters();
+#ifdef G4VERBOSE
+  if ( fCheck )
+  {
+    // Compute early:
+    //  a) to check whether point is (wrongly) outside
+    //               (signaled if step < 0 or step == kInfinity )
+    //  b) to check value against answer of daughters!
+
+    motherStep = motherSolid->DistanceToOut(localPoint,
+                                            localDirection,
+                                            true,
+                                           &motherValidExitNormal,
+                                           &motherExitNormal);
+
+    if( (motherStep >= kInfinity) || (motherStep < 0.0) )
+    {
+      // Error - indication of being outside solid !!
+      fLogger->ReportOutsideMother(localPoint, localDirection, motherPhysical);
+    
+      ourStep = motherStep = 0.0;
+   
+      exiting= true;
+      entering= false;
+    
+      // If we are outside the solid does the normal make sense?
+      validExitNormal= motherValidExitNormal;
+      exitNormal= motherExitNormal;
+    
+      *pBlockedPhysical= 0; // or motherPhysical ?
+      blockedReplicaNo= 0;  // or motherReplicaNumber ?
+    
+      newSafety= 0.0;
+      return ourStep;
+    }
+  }
+#endif
+
   for ( sampleNo=localNoDaughters-1; sampleNo>=0; sampleNo--)
   {
     samplePhysical = motherLogical->GetDaughter(sampleNo);
@@ -123,33 +168,28 @@ G4NormalNavigation::ComputeStep(const G4ThreeVector &localPoint,
       G4AffineTransform sampleTf(samplePhysical->GetRotation(),
                                  samplePhysical->GetTranslation());
       sampleTf.Invert();
-      const G4ThreeVector samplePoint =
-              sampleTf.TransformPoint(localPoint);
+      const G4ThreeVector samplePoint = sampleTf.TransformPoint(localPoint);
       const G4VSolid *sampleSolid =
               samplePhysical->GetLogicalVolume()->GetSolid();
       const G4double sampleSafety =
               sampleSolid->DistanceToIn(samplePoint);
-#ifdef G4VERBOSE
-      if( fCheck )
-      {
-        fLogger->PrintDaughterLog(sampleSolid, samplePoint, sampleSafety, 0);
-      }
-#endif
+
       if ( sampleSafety<ourSafety )
       {
         ourSafety=sampleSafety;
       }
+    
       if ( sampleSafety<=ourStep )
       {
         sampleDirection = sampleTf.TransformAxis(localDirection);
         const G4double sampleStep =
                 sampleSolid->DistanceToIn(samplePoint,sampleDirection);
-
-#ifdef G4VERBOSE
+#ifdef G4VERBOSE        
         if( fCheck )
         {
           fLogger->PrintDaughterLog(sampleSolid, samplePoint,
-                                    sampleSafety, sampleStep);
+                                    sampleSafety, true,
+                                    sampleDirection, sampleStep);          
         }
 #endif
         if ( sampleStep<=ourStep )
@@ -165,9 +205,30 @@ G4NormalNavigation::ComputeStep(const G4ThreeVector &localPoint,
             fLogger->AlongComputeStepLog(sampleSolid, samplePoint,
               sampleDirection, localDirection, sampleSafety, sampleStep);
           }
-#endif
+#endif          
+        }
+
+#ifdef G4VERBOSE
+        if( fCheck && (sampleStep < kInfinity) && (sampleStep >= motherStep) )
+        {
+           // The intersection point with the daughter is at or after the exit
+           // point from the mother volume.  Double check!
+           fLogger->CheckDaughterEntryPoint(sampleSolid,
+                                            samplePoint, sampleDirection,
+                                            motherSolid,
+                                            localPoint,  localDirection,
+                                            motherStep,  sampleStep);
         }
+#endif
+      } // end of if ( sampleSafety <= ourStep ) 
+#ifdef G4VERBOSE
+      else if( fCheck )
+      {
+         fLogger->PrintDaughterLog(sampleSolid,  samplePoint,
+                                   sampleSafety, false,
+                                   G4ThreeVector(0.,0.,0.), -1.0 );
       }
+#endif          
     }
   }
   if ( currentProposedStepLength<ourSafety )
@@ -181,29 +242,64 @@ G4NormalNavigation::ComputeStep(const G4ThreeVector &localPoint,
   }
   else
   {
-    // Compute mother intersection if required
+    // Consider intersection with mother solid
     //
     if ( motherSafety<=ourStep )
     {
-      G4double motherStep = motherSolid->DistanceToOut(localPoint,
-                                                       localDirection,
-                                                       true,
-                                                       &validExitNormal,
-                                                       &exitNormal);
+      if ( !fCheck )  // The call is moved above when running in check_mode
+      {
+        motherStep = motherSolid->DistanceToOut(localPoint,
+                                                localDirection,
+                                                true,
+                                               &motherValidExitNormal,
+                                               &motherExitNormal);
+      }
 #ifdef G4VERBOSE
-      if ( fCheck )
+      else  // check_mode
       {
         fLogger->PostComputeStepLog(motherSolid, localPoint, localDirection,
                                     motherStep, motherSafety);
+        if( motherValidExitNormal )
+        {
+          fLogger->CheckAndReportBadNormal(motherExitNormal,
+                                           localPoint,
+                                           localDirection,
+                                           motherStep,
+                                           motherSolid,
+                                           "From motherSolid::DistanceToOut" );
+        }
       }
 #endif
 
+      if( (motherStep >= kInfinity) || (motherStep < 0.0) )
+      {
+        // Clearly outside the mother solid!
+#ifdef G4VERBOSE         
+        fLogger->ReportOutsideMother(localPoint, localDirection, motherPhysical);
+#endif         
+        ourStep = motherStep = 0.0;
+        exiting = true;
+        entering = false;
+        // validExitNormal= motherValidExitNormal;
+        // exitNormal= motherExitNormal;
+        //  The normal could be useful - but only if near the mother
+        //  But it could be unreliable!
+        validExitNormal = false;
+        *pBlockedPhysical= 0; // or motherPhysical ?
+        blockedReplicaNo= 0;  // or motherReplicaNumber ?
+        newSafety= 0.0;
+        return ourStep;
+      }
+
       if ( motherStep<=ourStep )
       {
         ourStep  = motherStep;
         exiting  = true;
         entering = false;
-        if ( validExitNormal )
+        validExitNormal= motherValidExitNormal;
+        exitNormal= motherExitNormal;
+        
+        if ( motherValidExitNormal )
         {
           const G4RotationMatrix *rot = motherPhysical->GetRotation();
           if (rot)
@@ -248,7 +344,7 @@ G4double G4NormalNavigation::ComputeSafety(const G4ThreeVector &localPoint,
 #ifdef G4VERBOSE
   if( fCheck )
   {
-    fLogger->ComputeSafetyLog(motherSolid, localPoint, motherSafety, true);
+    fLogger->ComputeSafetyLog(motherSolid,localPoint,motherSafety,true,true);
   }
 #endif
 
@@ -274,9 +370,34 @@ G4double G4NormalNavigation::ComputeSafety(const G4ThreeVector &localPoint,
 #ifdef G4VERBOSE
     if(fCheck)
     {
-      fLogger->ComputeSafetyLog(sampleSolid, samplePoint, sampleSafety, false);
+      fLogger->ComputeSafetyLog(sampleSolid,samplePoint,
+                                sampleSafety,false,false);
+        // Not mother, no banner
     }
 #endif
   }
   return ourSafety;
 }
+
+// The following methods have been imported to this source file
+//  in order to avoid dependency of the header file on the
+//  header implementation of G4NavigationLogger.
+
+// ********************************************************************
+// GetVerboseLevel
+// ********************************************************************
+//
+G4int G4NormalNavigation::GetVerboseLevel() const
+{
+  return fLogger->GetVerboseLevel();
+}
+
+// ********************************************************************
+// SetVerboseLevel
+// ********************************************************************
+//
+void G4NormalNavigation::SetVerboseLevel(G4int level)
+{
+  fLogger->SetVerboseLevel(level);
+}
+
diff --git a/source/geometry/navigation/src/G4ParameterisedNavigation.cc b/source/geometry/navigation/src/G4ParameterisedNavigation.cc
index a017d99e0d9..d66511f44de 100644
--- a/source/geometry/navigation/src/G4ParameterisedNavigation.cc
+++ b/source/geometry/navigation/src/G4ParameterisedNavigation.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4ParameterisedNavigation.cc 80287 2014-04-10 09:49:49Z gcosmo $
+// $Id: G4ParameterisedNavigation.cc 90836 2015-06-10 09:31:06Z gcosmo $
 //
 //
 // class G4ParameterisedNavigation Implementation
@@ -51,6 +51,8 @@
 #include "G4TouchableHistory.hh"
 #include "G4VNestedParameterisation.hh"
 
+#include "G4AuxiliaryNavServices.hh"
+
 // ********************************************************************
 // Constructor
 // ********************************************************************
@@ -91,7 +93,11 @@ G4double G4ParameterisedNavigation::
   G4LogicalVolume *motherLogical;
   G4VSolid *motherSolid, *sampleSolid;
   G4ThreeVector sampleDirection;
-  G4double ourStep=currentProposedStepLength, motherSafety, ourSafety;
+  G4double ourStep=currentProposedStepLength, ourSafety;
+  G4double motherSafety, motherStep=DBL_MAX;
+  G4bool motherValidExitNormal=false;
+  G4ThreeVector motherExitNormal;
+  
   G4int sampleNo;
 
   G4bool initialNode, noStep;
@@ -153,18 +159,46 @@ G4double G4ParameterisedNavigation::
                     "GeomNav1002", JustWarning, message,
                     "Point is a little outside Current Volume."); 
     }
+
+    // Compute early:
+    //  a) to check whether point is (wrongly) outside
+    //               (signaled if step < 0 or step == kInfinity )
+    //  b) to check value against answer of daughters!
+    //
+    motherStep = motherSolid->DistanceToOut(localPoint,
+                                            localDirection,
+                                            true,
+                                           &motherValidExitNormal,
+                                           &motherExitNormal);
+  
+    if( (motherStep >= kInfinity) || (motherStep < 0.0) )
+    {
+      // Error - indication of being outside solid !!
+      //
+      fLogger->ReportOutsideMother(localPoint, localDirection, motherPhysical);
+
+      ourStep = motherStep = 0.0;
+      exiting = true;
+      entering = false;
+    
+      // If we are outside the solid does the normal make sense?
+      validExitNormal = motherValidExitNormal;
+      exitNormal = motherExitNormal;
+    
+      *pBlockedPhysical= 0; // or motherPhysical ?
+      blockedReplicaNo= 0;  // or motherReplicaNumber ?
+    
+      newSafety= 0.0;
+      return ourStep;
+    }
   }
 #endif
 
-  //
-  // Compute daughter safeties & intersections
-  //
-
   initialNode = true;
   noStep = true;
 
-  // By definition, parameterised volumes exist as first
-  // daughter of the mother volume
+  // By definition, the parameterised volume is the first
+  // (and only) daughter of the mother volume
   //
   samplePhysical = motherLogical->GetDaughter(0);
   samplePhysical->GetReplicationData(axis,nReplicas,width,offset,consuming);
@@ -188,6 +222,8 @@ G4double G4ParameterisedNavigation::
 
   sampleParam = samplePhysical->GetParameterisation();
 
+  // Loop over voxels & compute daughter safeties & intersections
+
   do
   {
     curVoxelNode = fVoxelNode;
@@ -292,37 +328,37 @@ G4double G4ParameterisedNavigation::
       }
       else
       {
-        //
-        // Compute mother intersection if required
+        // Consider intersection with mother solid
         //
         if ( motherSafety<=ourStep )
         {
-          G4double motherStep = motherSolid->DistanceToOut(localPoint,
-                                                           localDirection,
-                                                           true,
-                                                           &validExitNormal,
-                                                           &exitNormal);
+          if ( !fCheck )           
+          {
+            motherStep = motherSolid->DistanceToOut(localPoint,
+                                                   localDirection,
+                                                   true,
+                                                   &motherValidExitNormal,
+                                                   &motherExitNormal);
+          }
+
+          if( ( motherStep < 0.0 ) || ( motherStep >= kInfinity) )
+          {
 #ifdef G4VERBOSE
-          if ( fCheck ) 
-            if( ( motherStep < 0.0 ) || ( motherStep >= kInfinity) )
-            {
-              G4int oldPrOut= G4cout.precision(16); 
-              G4int oldPrErr= G4cerr.precision(16);
-              std::ostringstream message;
-              message << "Current point is outside the current solid !"
-                      << G4endl
-                      << "        Problem in Navigation"  << G4endl
-                      << "        Point (local coordinates): "
-                      << localPoint << G4endl
-                      << "        Local Direction: "
-                      << localDirection << G4endl
-                      << "        Solid: " << motherSolid->GetName(); 
-              motherSolid->DumpInfo();
-              G4Exception("G4ParameterisedNavigation::ComputeStep()",
-                          "GeomNav0003", FatalException, message);
-              G4cout.precision(oldPrOut);
-              G4cerr.precision(oldPrErr);
-            }
+            fLogger->ReportOutsideMother(localPoint, localDirection, motherPhysical);
+#endif
+            ourStep = motherStep = 0.0;
+            // Rely on the code below to set the remaining state, i.e.
+            // exiting, entering,  exitNormal & validExitNormal,
+            // pBlockedPhysical etc.
+          }
+#ifdef G4VERBOSE
+          if( motherValidExitNormal && ( fCheck || (motherStep<=ourStep)) )
+          {
+            fLogger->CheckAndReportBadNormal(motherExitNormal,
+                                             localPoint, localDirection,
+                                             motherStep, motherSolid,
+                                             "From motherSolid::DistanceToOut");
+          }
 #endif
           if ( motherStep<=ourStep )
           {
diff --git a/source/geometry/navigation/src/G4PathFinder.cc b/source/geometry/navigation/src/G4PathFinder.cc
index 9bf65293a04..887a5bd4cad 100644
--- a/source/geometry/navigation/src/G4PathFinder.cc
+++ b/source/geometry/navigation/src/G4PathFinder.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4PathFinder.cc 89289 2015-03-31 08:35:38Z gcosmo $
+// $Id: G4PathFinder.cc 90836 2015-06-10 09:31:06Z gcosmo $
 // GEANT4 tag $ Name:  $
 // 
 // class G4PathFinder Implementation
@@ -263,23 +263,22 @@ G4PathFinder::ComputeStep( const G4FieldTrack &InitialFieldTrack,
 #ifdef G4DEBUG_PATHFINDER      
   else
   {
-     if( proposedStepLength < fTrueMinStep )  // For 2nd+ geometry 
+     const G4double checkTolerance = 1.0e-9; 
+     if( proposedStepLength < fTrueMinStep * ( 1.0 + checkTolerance) )  // For 2nd+ geometry 
      { 
        std::ostringstream message;
+       message.precision( 12 ); 
        message << "Problem in step size request." << G4endl
-               << "        Error can be caused by incorrect process ordering."
                << "        Being requested to make a step which is shorter"
                << " than the minimum Step " << G4endl
                << "        already computed for any Navigator/geometry during"
                << " this tracking-step: " << G4endl
-               << "        This can happen due to an error in process ordering."
+               << "        This could happen due to an error in process ordering."
                << G4endl
                << "        Check that all physics processes are registered"
-               << G4endl
                << "        before all processes with a navigator/geometry."
                << G4endl
                << "        If using pre-packaged physics list and/or"
-               << G4endl
                << "        functionality, please report this error."
                << G4endl << G4endl
                << "        Additional information for problem: "  << G4endl
@@ -292,8 +291,11 @@ G4PathFinder::ComputeStep( const G4FieldTrack &InitialFieldTrack,
                << "        Navigator raw return value" << G4endl
                << "        Requested step now = " << proposedStepLength
                << G4endl
-               << "        Difference min-req = "
+               << "        Difference min-req (absolute) = "
                << fTrueMinStep-proposedStepLength << G4endl
+               << "        Relative (to max of two) = " 
+               << (fTrueMinStep-proposedStepLength)
+                  / std::max(proposedStepLength, fTrueMinStep) << G4endl
                << "     -- Step info> stepNo= " << stepNo
                << " last= " << fLastStepNo 
                << " newTr= " << fNewTrack << G4endl;
@@ -365,6 +367,8 @@ G4PathFinder::PrepareNewTrack( const G4ThreeVector& position,
   fNewTrack= true; 
   this->MovePoint();   // Signal further that the last status is wiped
 
+  fpFieldPropagator->PrepareNewTrack();   // Inform field propagator of new track
+  
   // Message the G4NavigatorPanel / Dispatcher to find active navigators
   //
   std::vector<G4Navigator*>::iterator pNavigatorIter; 
@@ -749,7 +753,7 @@ G4double  G4PathFinder::ComputeSafety( const G4ThreeVector& position )
 
    for( G4int num=0; num<fNoActiveNavigators; ++pNavigatorIter,++num )
    {
-      G4double safety = (*pNavigatorIter)->ComputeSafety( position,true );
+      G4double safety = (*pNavigatorIter)->ComputeSafety( position, DBL_MAX, true );
       if( safety < minSafety ) { minSafety = safety; } 
       fNewSafetyComputed[num]= safety;
    } 
@@ -1181,7 +1185,7 @@ G4PathFinder::DoNextCurvedStep( const G4FieldTrack &initialState,
      G4double minSafety= kInfinity, safety; 
      for( numNav=0; numNav < fNoActiveNavigators; ++numNav )
      {
-        safety= fpNavigator[numNav]->ComputeSafety( startPoint, false );
+        safety= fpNavigator[numNav]->ComputeSafety( startPoint, DBL_MAX, false );
         fPreSafetyValues[numNav]= safety; 
         fCurrentPreStepSafety[numNav]= safety; 
         minSafety = std::min( safety, minSafety ); 
diff --git a/source/geometry/navigation/src/G4PropagatorInField.cc b/source/geometry/navigation/src/G4PropagatorInField.cc
index da65d26c1eb..5bd2c8e36a9 100644
--- a/source/geometry/navigation/src/G4PropagatorInField.cc
+++ b/source/geometry/navigation/src/G4PropagatorInField.cc
@@ -24,7 +24,10 @@
 // ********************************************************************
 //
 //
+// $Id: G4PropagatorInField.cc 90836 2015-06-10 09:31:06Z gcosmo $
+// GEANT4 tag $ Name:  $
 // 
+// class G4PropagatorInField Implementation
 // 
 //  This class implements an algorithm to track a particle in a
 //  non-uniform magnetic field. It utilises an ODE solver (with
@@ -35,8 +38,6 @@
 // 14.10.96 John Apostolakis,   design and implementation
 // 17.03.97 John Apostolakis,   renaming new set functions being added
 //
-// $Id: G4PropagatorInField.cc 69711 2013-05-13 09:22:17Z gcosmo $
-// GEANT4 tag $ Name:  $
 // ---------------------------------------------------------------------------
 
 #include <iomanip>
@@ -72,7 +73,11 @@ G4PropagatorInField::G4PropagatorInField( G4Navigator    *theNavigator,
                         G4ThreeVector(0.,0.,0.),0.0,0.0,0.0,0.0,0.0),
     fParticleIsLooping(false),
     fNoZeroStep(0), 
-    fVerboseLevel(0)
+    fVerboseLevel(0),
+    fVerbTracePiF(false),
+    fFirstStepInVolume(true),
+    fLastStepInVolume(true),
+    fNewTrack(true)
 {
   if(fDetectorFieldMgr) { fEpsilonStep = fDetectorFieldMgr->GetMaximumEpsilonStep();}
   else                  { fEpsilonStep= 1.0e-5; } 
@@ -95,24 +100,33 @@ G4PropagatorInField::G4PropagatorInField( G4Navigator    *theNavigator,
   G4cout << " PiF:   Value of kCarTolerance = "
          << kCarTolerance / millimeter 
 	 << " mm. " << G4endl;
+  fVerboseLevel = 3;   
+  fVerbTracePiF = true;   
 #endif 
 
-  // Definding Intersection Locator and his parameters
-  if(vLocator==0){
+  // Defining Intersection Locator and his parameters
+  if (vLocator==0)
+  {
     fIntersectionLocator= new G4MultiLevelLocator(theNavigator);
-    fAllocatedLocator=true;
-  }else{
-    fIntersectionLocator=vLocator;
-    fAllocatedLocator=false;
+    fAllocatedLocator= true;
+  }
+  else
+  {
+    fIntersectionLocator= vLocator;
+    fAllocatedLocator= false;
   }
-  RefreshIntersectionLocator();  //  Copy all relevant parameters 
+  RefreshIntersectionLocator();  //  Copy all relevant parameters
 }
 
+///////////////////////////////////////////////////////////////////////////
+//
 G4PropagatorInField::~G4PropagatorInField()
 {
-  if(fAllocatedLocator)delete  fIntersectionLocator; 
+  if(fAllocatedLocator)  { delete  fIntersectionLocator; }
 }
 
+///////////////////////////////////////////////////////////////////////////
+//
 // Update the IntersectionLocator with current parameters
 void
 G4PropagatorInField::RefreshIntersectionLocator()
@@ -122,6 +136,7 @@ G4PropagatorInField::RefreshIntersectionLocator()
   fIntersectionLocator->SetChordFinderFor(GetChordFinder());
   fIntersectionLocator->SetSafetyParametersFor( fUseSafetyForOptimisation);
 }
+
 ///////////////////////////////////////////////////////////////////////////
 //
 // Compute the next geometric Step
@@ -148,6 +163,23 @@ G4PropagatorInField::ComputeStep(
     fpTrajectoryFilter->CreateNewTrajectorySegment();
   }
 
+  fFirstStepInVolume = fNewTrack ? true : fLastStepInVolume;
+  fLastStepInVolume= false;
+  fNewTrack= false; 
+
+  if( fVerboseLevel > 2 )
+  {
+    G4cout << "G4PropagatorInField::ComputeStep() called" << G4endl;
+    G4cout << "   Starting FT: " << pFieldTrack;
+    G4cout << "   Requested length = " << CurrentProposedStepLength << G4endl;
+    G4cout << "   PhysVol = ";
+    if( pPhysVol )
+       G4cout << pPhysVol->GetName() << G4endl;
+    else
+       G4cout << " N/A ";
+    G4cout << G4endl;
+  }
+  
   // Parameters for adaptive Runge-Kutta integration
   
   G4double      h_TrialStepSize;        // 1st Step Size 
@@ -237,11 +269,11 @@ G4PropagatorInField::ComputeStep(
      stepTrial *= decreaseFactor;
 
 #ifdef G4DEBUG_FIELD
-     G4cout << " G4PropagatorInField::ComputeStep(): " << G4endl
-	    << "  Decreasing step -  " 
-	    << " decreaseFactor= " << std::setw(8) << decreaseFactor 
-	    << " stepTrial = "     << std::setw(18) << stepTrial << " "
-	    << " fZeroStepThreshold = " << fZeroStepThreshold << G4endl;
+     G4cerr << " G4PropagatorInField::ComputeStep(): " << G4endl
+	    << "  Decreasing step -  in volume " << pPhysVol;
+     if( pPhysVol )
+        G4cerr << "    with name " << pPhysVol->GetName(); 
+     G4cerr << G4endl;
      PrintStepLengthDiagnostic(CurrentProposedStepLength, decreaseFactor,
                                stepTrial, pFieldTrack);
 #endif
@@ -269,8 +301,14 @@ G4PropagatorInField::ComputeStep(
   { 
     G4FieldTrack SubStepStartState = CurrentState;
     G4ThreeVector SubStartPoint = CurrentState.GetPosition(); 
-
-    if( !first_substep) {
+    
+    if(!first_substep)
+    {
+      if( fVerboseLevel > 4 )
+      {
+        G4cout << " PiF: Calling Nav/Locate Global Point within-Volume "
+               << G4endl;
+      }
       fNavigator->LocateGlobalPointWithinVolume( SubStartPoint );
     }
 
@@ -367,18 +405,7 @@ G4PropagatorInField::ComputeStep(
     fParticleIsLooping = true;
 
     if ( fVerboseLevel > 0 )
-    {
-       G4cout << " G4PropagateInField::ComputeStep(): " << G4endl
-              << "  Killing looping particle " 
-              // << " of " << energy  << " energy "
-              << " after " << do_loop_count << " field substeps "
-              << " totaling " << StepTaken / mm << " mm " ;
-       if( pPhysVol )
-          G4cout << " in volume " << pPhysVol->GetName() ; 
-       else
-         G4cout << " in unknown or null volume. " ; 
-       G4cout << G4endl;
-    }
+       ReportLoopingParticle( do_loop_count, StepTaken, pPhysVol );
   }
 
   if( !intersects )
@@ -387,8 +414,12 @@ G4PropagatorInField::ComputeStep(
     // B is the endpoint Step of the current Step.
     //
     End_PointAndTangent = CurrentState; 
-    TruePathLength = StepTaken;
+    TruePathLength = StepTaken;   //  Original code
+    // Tried the following to avoid potential issue with round-off error
+    // - but has issues... Suppressing this change JA 2015/05/02
+    // TruePathLength = CurrentProposedStepLength;
   }
+  fLastStepInVolume = intersects;
   
   // Set pFieldTrack to the return value
   //
@@ -417,37 +448,28 @@ G4PropagatorInField::ComputeStep(
   }
 #endif
 
-  // In particular anomalous cases, we can get repeated zero steps
-  // In order to correct this efficiently, we identify these cases
-  // and only take corrective action when they occur.
-  // 
-  if( ( (TruePathLength < fZeroStepThreshold) 
-	&& ( TruePathLength+kCarTolerance < CurrentProposedStepLength  ) 
-	) 
-      || ( TruePathLength < 0.5*kCarTolerance )
-    )
+  if( TruePathLength+kCarTolerance >= CurrentProposedStepLength )
   {
-    fNoZeroStep++;
+     fNoZeroStep = 0;     
   }
-  else{
-    fNoZeroStep = 0;
+  else
+  {     
+     // In particular anomalous cases, we can get repeated zero steps
+     // We identify these cases and take corrective action when they occur.
+     // 
+     if( TruePathLength < std::max( fZeroStepThreshold, 0.5*kCarTolerance ) )
+     {
+        fNoZeroStep++;
+     }
+     else{
+        fNoZeroStep = 0;
+     }
   }
-
   if( fNoZeroStep > fAbandonThreshold_NoZeroSteps )
   { 
      fParticleIsLooping = true;
-     std::ostringstream message;
-     message << "Particle is stuck; it will be killed." << G4endl
-             << "  Zero progress for "  << fNoZeroStep << " attempted steps." 
-             << G4endl
-             << "  Proposed Step is " << CurrentProposedStepLength
-             << " but Step Taken is "<< fFull_CurveLen_of_LastAttempt << G4endl;
-     if( pPhysVol )
-       message << " in volume " << pPhysVol->GetName() ; 
-     else
-       message << " in unknown or null volume. " ; 
-     G4Exception("G4PropagatorInField::ComputeStep()",
-                 "GeomNav1002", JustWarning, message);
+     ReportStuckParticle( fNoZeroStep, CurrentProposedStepLength, fFull_CurveLen_of_LastAttempt,
+                               pPhysVol );
      fNoZeroStep = 0; 
   }
  
@@ -604,6 +626,8 @@ G4PropagatorInField::GimmeTrajectoryVectorAndForgetIt() const
   }
 }
 
+///////////////////////////////////////////////////////////////////////////
+//
 void 
 G4PropagatorInField::SetTrajectoryFilter(G4VCurvedTrajectoryFilter* filter)
 {
@@ -675,3 +699,40 @@ G4int G4PropagatorInField::SetVerboseLevel( G4int level )
 
   return oldval;
 }
+
+void G4PropagatorInField::ReportLoopingParticle( G4int              count,
+                                                 G4double           StepTaken,
+                                                 G4VPhysicalVolume* pPhysVol)
+{
+   std::ostringstream message;
+   message << "  Killing looping particle " 
+      // << " of " << energy  << " energy "
+          << " after " << count << " field substeps "
+          << " totaling " << StepTaken / mm << " mm " ;
+   if( pPhysVol )
+      G4cout << " in volume " << pPhysVol->GetName() ; 
+   else
+      G4cout << " in unknown or null volume. " ; 
+   // G4cout << G4endl;
+   G4Exception("G4PropagatorInField::ComputeStep()", "GeomNav1002",
+               JustWarning, message);   
+}
+
+void G4PropagatorInField::ReportStuckParticle( G4int      noZeroSteps,
+                                               G4double   proposedStep,
+                                               G4double   lastTriedStep,
+                                               G4VPhysicalVolume* physVol )
+{
+   std::ostringstream message;
+   message << "Particle is stuck; it will be killed." << G4endl
+           << "  Zero progress for "  << noZeroSteps << " attempted steps." 
+           << G4endl
+           << "  Proposed Step is " << proposedStep
+           << " but Step Taken is "<< lastTriedStep << G4endl;
+   if( physVol )
+      message << " in volume " << physVol->GetName() ; 
+   else
+      message << " in unknown or null volume. " ; 
+   G4Exception("G4PropagatorInField::ComputeStep()",
+               "GeomNav1002", JustWarning, message);
+}
diff --git a/source/geometry/navigation/src/G4ReplicaNavigation.cc b/source/geometry/navigation/src/G4ReplicaNavigation.cc
index 79d83fd1f53..a8902d326fb 100644
--- a/source/geometry/navigation/src/G4ReplicaNavigation.cc
+++ b/source/geometry/navigation/src/G4ReplicaNavigation.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4ReplicaNavigation.cc 87208 2014-11-27 08:57:44Z gcosmo $
+// $Id: G4ReplicaNavigation.cc 90836 2015-06-10 09:31:06Z gcosmo $
 //
 //
 // class G4ReplicaNavigation Implementation
@@ -801,10 +801,8 @@ G4ReplicaNavigation::ComputeStep(const G4ThreeVector &globalPoint,
   G4ExitNormal normalOutStc;
   const G4int topDepth= history.GetDepth();
 
-  if ( sampleSafety<ourSafety )
-  {
-    ourSafety = sampleSafety;
-  }
+  ourSafety = std::min( ourSafety, sampleSafety);
+
   if ( sampleSafety<ourStep )
   {
 
diff --git a/source/geometry/navigation/src/G4SimpleLocator.cc b/source/geometry/navigation/src/G4SimpleLocator.cc
index 48d6678c04c..cb299aea8cb 100644
--- a/source/geometry/navigation/src/G4SimpleLocator.cc
+++ b/source/geometry/navigation/src/G4SimpleLocator.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4SimpleLocator.cc 66872 2013-01-15 01:25:57Z japost $
+// $Id: G4SimpleLocator.cc 90836 2015-06-10 09:31:06Z gcosmo $
 //
 // Class G4SimpleLocator implementation
 //
@@ -122,7 +122,7 @@ G4bool G4SimpleLocator::EstimateIntersectionPoint(
 #ifdef G4DEBUG_FIELD
   static G4double tolerance = 1.0e-8; 
   G4ThreeVector  StartPosition= CurveStartPointVelocity.GetPosition(); 
-  if( (TrialPoint - StartPosition).mag() < tolerance * mm ) 
+  if( (TrialPoint - StartPosition).mag() < tolerance * CLHEP::mm ) 
   {
      G4Exception("G4SimpleLocator::EstimateIntersectionPoint()", 
                  "GeomNav1002", JustWarning,
diff --git a/source/geometry/navigation/src/G4VIntersectionLocator.cc b/source/geometry/navigation/src/G4VIntersectionLocator.cc
index 36149efb611..39d6c6ff1ba 100644
--- a/source/geometry/navigation/src/G4VIntersectionLocator.cc
+++ b/source/geometry/navigation/src/G4VIntersectionLocator.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4VIntersectionLocator.cc 66872 2013-01-15 01:25:57Z japost $
+// $Id: G4VIntersectionLocator.cc 90836 2015-06-10 09:31:06Z gcosmo $
 //
 // Class G4VIntersectionLocator implementation
 //
@@ -69,7 +69,7 @@ G4VIntersectionLocator::~G4VIntersectionLocator()
 
 ///////////////////////////////////////////////////////////////////////////
 //
-// Dumps status of propagator.
+// Dump status of propagator to cout (old method)
 //
 void
 G4VIntersectionLocator::printStatus( const G4FieldTrack&        StartFT,
@@ -77,6 +77,23 @@ G4VIntersectionLocator::printStatus( const G4FieldTrack&        StartFT,
                                            G4double             requestStep, 
                                            G4double             safety,
                                            G4int                stepNo)
+{
+   std::ostringstream os; 
+   printStatus( StartFT, CurrentFT, requestStep, safety, stepNo, os);
+   G4cout << os.str();
+}
+
+///////////////////////////////////////////////////////////////////////////
+//
+// Dumps status of propagator.
+//
+void
+G4VIntersectionLocator::printStatus( const G4FieldTrack&        StartFT,
+                                     const G4FieldTrack&        CurrentFT, 
+                                           G4double             requestStep, 
+                                           G4double             safety,
+                                           G4int                stepNo,
+                                           std::ostringstream&  os )
 {
   const G4int verboseLevel= fVerboseLevel;
   const G4ThreeVector StartPosition       = StartFT.GetPosition();
@@ -89,11 +106,11 @@ G4VIntersectionLocator::printStatus( const G4FieldTrack&        StartFT,
 
   if( ((stepNo == 0) && (verboseLevel <3)) || (verboseLevel >= 3) )
   {
-    oldprc = G4cout.precision(4);
-    G4cout << std::setw( 6)  << " " 
+    oldprc = os.precision(4);
+    os << std::setw( 6)  << " " 
            << std::setw( 25) << " Current Position  and  Direction" << " "
            << G4endl; 
-    G4cout << std::setw( 5) << "Step#" 
+    os << std::setw( 5) << "Step#" 
            << std::setw(10) << "  s  " << " "
            << std::setw(10) << "X(mm)" << " "
            << std::setw(10) << "Y(mm)" << " "  
@@ -101,12 +118,12 @@ G4VIntersectionLocator::printStatus( const G4FieldTrack&        StartFT,
            << std::setw( 7) << " N_x " << " "
            << std::setw( 7) << " N_y " << " "
            << std::setw( 7) << " N_z " << " " ;
-    G4cout << std::setw( 7) << " Delta|N|" << " "
+    os << std::setw( 7) << " Delta|N|" << " "
            << std::setw( 9) << "StepLen" << " "  
            << std::setw(12) << "StartSafety" << " "  
            << std::setw( 9) << "PhsStep" << " ";  
-    G4cout << G4endl;
-    G4cout.precision(oldprc);
+    os << G4endl;
+    os.precision(oldprc);
   }
   if((stepNo == 0) && (verboseLevel <=3))
   {
@@ -118,48 +135,48 @@ G4VIntersectionLocator::printStatus( const G4FieldTrack&        StartFT,
   {
     if( stepNo >= 0)
     {
-       G4cout << std::setw( 4) << stepNo << " ";
+       os << std::setw( 4) << stepNo << " ";
     }
     else
     {
-       G4cout << std::setw( 5) << "Start" ;
+       os << std::setw( 5) << "Start" ;
     }
-    oldprc = G4cout.precision(8);
-    G4cout << std::setw(10) << CurrentFT.GetCurveLength() << " "; 
-    G4cout << std::setw(10) << CurrentPosition.x() << " "
+    oldprc = os.precision(8);
+    os << std::setw(10) << CurrentFT.GetCurveLength() << " "; 
+    os << std::setw(10) << CurrentPosition.x() << " "
            << std::setw(10) << CurrentPosition.y() << " "
            << std::setw(10) << CurrentPosition.z() << " ";
-    G4cout.precision(4);
-    G4cout << std::setw( 7) << CurrentUnitVelocity.x() << " "
+    os.precision(4);
+    os << std::setw( 7) << CurrentUnitVelocity.x() << " "
            << std::setw( 7) << CurrentUnitVelocity.y() << " "
            << std::setw( 7) << CurrentUnitVelocity.z() << " ";
-    G4cout.precision(3); 
-    G4cout << std::setw( 7)
+    os.precision(3); 
+    os << std::setw( 7)
            << CurrentFT.GetMomentum().mag()- StartFT.GetMomentum().mag()
            << " "; 
-    G4cout << std::setw( 9) << step_len << " "; 
-    G4cout << std::setw(12) << safety << " ";
+    os << std::setw( 9) << step_len << " "; 
+    os << std::setw(12) << safety << " ";
     if( requestStep != -1.0 )
     {
-      G4cout << std::setw( 9) << requestStep << " ";
+      os << std::setw( 9) << requestStep << " ";
     }
     else
     {
-      G4cout << std::setw( 9) << "Init/NotKnown" << " "; 
+      os << std::setw( 9) << "Init/NotKnown" << " "; 
     }
-    G4cout << G4endl;
-    G4cout.precision(oldprc);
+    os << G4endl;
+    os.precision(oldprc);
   }
   else // if( verboseLevel > 3 )
   {
     //  Multi-line output
        
-    G4cout << "Step taken was " << step_len  
+    os << "Step taken was " << step_len  
            << " out of PhysicalStep= " <<  requestStep << G4endl;
-    G4cout << "Final safety is: " << safety << G4endl;
-    G4cout << "Chord length = " << (CurrentPosition-StartPosition).mag()
+    os << "Final safety is: " << safety << G4endl;
+    os << "Chord length = " << (CurrentPosition-StartPosition).mag()
            << G4endl;
-    G4cout << G4endl; 
+    os << G4endl; 
   }
 }
 
@@ -252,17 +269,24 @@ ReEstimateEndpoint( const G4FieldTrack& CurrentStateA,
   if (  (noInaccuracyWarnings < maxNoWarnings ) 
        || (fVerboseLevel > 1) )
     {
-      G4cerr << "G4PropagatorInField::LocateIntersectionPoint():"
-             << G4endl
-             << " Warning: Integration inaccuracy requires" 
-             <<   " an adjustment in the step's endpoint."  << G4endl
-             << "   Two mid-points are further apart than their"
-             <<   " curve length difference"                << G4endl 
-             << "   Dist = "       << std::sqrt(linearDistSq)
-             << " curve length = " << curveDist             << G4endl; 
-      G4cerr << " Correction applied is " 
-             << (newEndPoint.GetPosition()-EstimatedEndStateB.GetPosition()).mag()
-             << G4endl;
+      G4ThreeVector move = newEndPoint.GetPosition()
+                         - EstimatedEndStateB.GetPosition();
+      std::ostringstream message;
+      message.precision(12);
+      message << " Integration inaccuracy requires" 
+              << " an adjustment in the step's endpoint."  << G4endl
+              << "   Two mid-points are further apart than their"
+              << " curve length difference"                << G4endl 
+              << "   Dist = "       << std::sqrt(linearDistSq)
+              << " curve length = " << curveDist             << G4endl; 
+      message << " Correction applied is " << move.mag() << G4endl
+              << "  Old Estimated B position= "
+              << EstimatedEndStateB.GetPosition() << G4endl
+              << "  Recalculated    Position= "
+              << newEndPoint.GetPosition() << G4endl
+              << "   Change ( new - old )   = " << move;
+      G4Exception("G4VIntersectionLocator::ReEstimateEndpoint()",
+                  "GeomNav1002", JustWarning, message);
     }
 #else
   // Statistics on the RMS value of the corrections
@@ -324,7 +348,7 @@ GetLocalSurfaceNormal(const G4ThreeVector& CurrentE_Point, G4bool& validNormal)
         validNormal = true;
 
 #ifdef G4DEBUG_FIELD
-        if( std::fabs(Normal.mag2() - 1.0 ) > perMille) 
+        if( std::fabs(Normal.mag2() - 1.0 ) > CLHEP::perThousand) 
         {
           G4cerr << "PROBLEM in G4VIntersectionLocator::GetLocalSurfaceNormal."
                  << G4endl;
@@ -443,13 +467,11 @@ G4VIntersectionLocator::GetSurfaceNormal(const G4ThreeVector& CurrentInt_Point,
    && ( std::fabs(NormalAtEntryLast.mag2() - 1.0) > perThousand ) )
   {
     std::ostringstream message; 
-    message << "G4VIntersectionLocator::GetSurfaceNormal -- identified problem."
-            << G4endl;
     message << "PROBLEM: Normal is not unit - magnitude = "
             << NormalAtEntryLast.mag() << G4endl; 
     message << "   at trial intersection point " << CurrentInt_Point << G4endl;
-    message << "   Obtained from Get *Last* Surface Normal." << G4endl; 
-    G4Exception("G4VIntersectionLocator::GetGlobalSurfaceNormal()",
+    message << "   Obtained from Get *Last* Surface Normal."; 
+    G4Exception("G4VIntersectionLocator::GetSurfaceNormal()",
                 "GeomNav1002", JustWarning, message);
   }
 #endif
@@ -559,3 +581,88 @@ void G4VIntersectionLocator::ReportTrialStep( G4int step_no,
   }
   return; 
 }
+
+// Locate point using navigator: updates state of Navigator
+// By default, it assumes that the point is inside the current volume,
+// and returns true.
+// In check mode, checks whether the point is *inside* the volume.
+//   If it is inside, it returns true
+//   If not, issues a warning and returns false.
+//
+G4bool
+G4VIntersectionLocator::
+LocateGlobalPointWithinVolumeAndCheck( const G4ThreeVector& position )
+{
+  G4bool good= true;
+  G4Navigator* nav= GetNavigatorFor();
+  const G4String MethodName("G4VIntersectionLocator::LocateGlobalPointWithinVolumeAndCheck()");
+
+  if( fCheckMode )
+  {
+    G4bool navCheck= nav->IsCheckModeActive();  // Recover original value
+    nav->CheckMode(true);
+
+    // Identify the current volume
+    
+    G4TouchableHistoryHandle startTH= nav->CreateTouchableHistoryHandle();
+    G4VPhysicalVolume* motherPhys=  startTH->GetVolume();
+    G4VSolid*          motherSolid= startTH->GetSolid();
+    G4AffineTransform transform = nav->GetGlobalToLocalTransform();
+    // GetLocalToGlobalTransform();
+    G4int  motherCopyNo= motherPhys->GetCopyNo();
+    
+    // Let's check that the point is inside the current solid
+    G4ThreeVector  localPosition = transform.TransformPoint(position);
+    EInside        inMother= motherSolid->Inside( localPosition );
+    if( inMother != kInside )
+    {
+      G4cerr << " ERROR in " << MethodName << " Position located "
+             << ( inMother == kSurface ? " on Surface " : " outside " )
+             << "expected volume" << G4endl;
+      G4double  safetyFromOut= motherSolid->DistanceToIn(localPosition);
+      G4cerr << "   Safety (from Outside) = " << safetyFromOut  << G4endl;
+    }
+    
+    // 1. Simple next step - quick relocation and check result.
+    // nav->LocateGlobalPointWithinVolume( position );
+    
+    // 2. Full relocation - to cross-check answer !
+    G4VPhysicalVolume* nextPhysical= nav->LocateGlobalPointAndSetup(position);
+    if(    (nextPhysical != motherPhys)
+        || (nextPhysical->GetCopyNo() != motherCopyNo )
+       )
+    {
+      G4cerr << " ERROR in " << MethodName
+             << " Position located outside expected volume" << G4endl;
+    }
+    nav->CheckMode(navCheck);  // Recover original value
+  }
+  else
+  {
+    nav->LocateGlobalPointWithinVolume( position );
+  }
+  return good;
+}
+
+void
+G4VIntersectionLocator::
+LocateGlobalPointWithinVolumeCheckAndReport( const G4ThreeVector& position,
+                                             const G4String& CodeLocationInfo,
+                                             G4int CheckMode )
+{
+  // Save value of Check mode first
+  G4bool oldCheck= GetCheckMode();
+  
+  G4bool ok= LocateGlobalPointWithinVolumeAndCheck( position );
+  if( !ok )
+  {
+    G4cerr << " ERROR occured in Intersection Locator" << G4endl;
+    G4cerr << "       Code Location info: " << CodeLocationInfo << G4endl;
+    if( CheckMode > 1 ) {
+      // Additional information
+      
+    }
+  }
+  
+  SetCheckMode( oldCheck );
+}
diff --git a/source/geometry/navigation/src/G4VoxelNavigation.cc b/source/geometry/navigation/src/G4VoxelNavigation.cc
index e90482c38da..184220652bd 100644
--- a/source/geometry/navigation/src/G4VoxelNavigation.cc
+++ b/source/geometry/navigation/src/G4VoxelNavigation.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4VoxelNavigation.cc 66356 2012-12-18 09:02:32Z gcosmo $
+// $Id: G4VoxelNavigation.cc 90836 2015-06-10 09:31:06Z gcosmo $
 //
 //
 // class G4VoxelNavigation Implementation
@@ -32,11 +32,18 @@
 // Author: P.Kent, 1996
 //
 // --------------------------------------------------------------------
+#include <ostream>
 
 #include "G4VoxelNavigation.hh"
 #include "G4GeometryTolerance.hh"
 #include "G4VoxelSafety.hh"
 
+#include "G4AuxiliaryNavServices.hh"
+
+#ifdef G4DEBUG_NAVIGATION
+static int debugVerboseLevel= 5;    // Reports most about daughter volumes
+#endif
+
 // ********************************************************************
 // Constructor
 // ********************************************************************
@@ -51,7 +58,11 @@ G4VoxelNavigation::G4VoxelNavigation()
     fVoxelNode(0), fpVoxelSafety(0), fCheck(false), fBestSafety(false)
 {
   fLogger = new G4NavigationLogger("G4VoxelNavigation");
-  fpVoxelSafety = new G4VoxelSafety (); 
+  fpVoxelSafety = new G4VoxelSafety();
+
+#ifdef G4DEBUG_NAVIGATION
+  SetVerboseLevel(debugVerboseLevel);   // Reports most about daughter volumes
+#endif
 }
 
 // ********************************************************************
@@ -85,7 +96,8 @@ G4VoxelNavigation::ComputeStep( const G4ThreeVector& localPoint,
   G4LogicalVolume *motherLogical;
   G4VSolid *motherSolid;
   G4ThreeVector sampleDirection;
-  G4double ourStep=currentProposedStepLength, motherSafety, ourSafety;
+  G4double ourStep=currentProposedStepLength, ourSafety;
+  G4double motherSafety, motherStep=DBL_MAX;
   G4int localNoDaughters, sampleNo;
 
   G4bool initialNode, noStep;
@@ -130,6 +142,50 @@ G4VoxelNavigation::ComputeStep( const G4ThreeVector& localPoint,
   exiting = false;
   entering = false;
 
+  // For extra checking,  get the distance to Mother early !!
+  G4bool   motherValidExitNormal= false;
+  G4ThreeVector motherExitNormal(0.0, 0.0, 0.0);
+
+#ifdef G4VERBOSE
+  if ( fCheck )
+  {
+    // Compute early -- a) for validity
+    //                  b) to check against answer of daughters!
+    motherStep = motherSolid->DistanceToOut(localPoint,
+                                            localDirection,
+                                            true,
+                                           &motherValidExitNormal,
+                                           &motherExitNormal);
+
+    fLogger->PostComputeStepLog(motherSolid, localPoint, localDirection,
+                                motherStep, motherSafety);
+
+    if( (motherStep >= kInfinity) || (motherStep < 0.0) )
+    {
+      // Error - indication of being outside solid !!
+      fLogger->ReportOutsideMother(localPoint, localDirection, motherPhysical);
+    
+      ourStep = 0.0;
+    
+      exiting= true;
+      entering= false;
+    
+      // validExitNormal= motherValidExitNormal;
+      // exitNormal= motherExitNormal;
+      // Makes sense and is useful only if the point is very close ...
+      //  Alternatives: i) validExitNormal= false;
+      //               ii) Check safety from outside and choose !!
+      validExitNormal= false;
+    
+      *pBlockedPhysical= 0; // or motherPhysical ?
+      blockedReplicaNo= 0;  // or motherReplicaNumber ?
+    
+      newSafety= 0.0;
+      return ourStep;
+    }
+  }
+#endif
+
   localNoDaughters = motherLogical->GetNoDaughters();
 
   fBList.Enlarge(localNoDaughters);
@@ -160,12 +216,7 @@ G4VoxelNavigation::ComputeStep( const G4ThreeVector& localPoint,
                      samplePhysical->GetLogicalVolume()->GetSolid();
           const G4double sampleSafety     =
                      sampleSolid->DistanceToIn(samplePoint);
-#ifdef G4VERBOSE
-          if( fCheck )
-          {
-            fLogger->PrintDaughterLog(sampleSolid,samplePoint,sampleSafety,0);
-          }
-#endif
+
           if ( sampleSafety<ourSafety )
           {
             ourSafety = sampleSafety;
@@ -179,7 +230,8 @@ G4VoxelNavigation::ComputeStep( const G4ThreeVector& localPoint,
             if( fCheck )
             {
               fLogger->PrintDaughterLog(sampleSolid, samplePoint,
-                                        sampleSafety, sampleStep);
+                                        sampleSafety, true,
+                                        sampleDirection, sampleStep);
             }
 #endif
             if ( sampleStep<=ourStep )
@@ -191,9 +243,7 @@ G4VoxelNavigation::ComputeStep( const G4ThreeVector& localPoint,
               blockedReplicaNo = -1;
 #ifdef G4VERBOSE
               // Check to see that the resulting point is indeed in/on volume.
-              // This check could eventually be made only for successful
-              // candidate.
-
+              // This could be done only for successful candidate.
               if ( fCheck )
               {
                 fLogger->AlongComputeStepLog (sampleSolid, samplePoint,
@@ -201,7 +251,31 @@ G4VoxelNavigation::ComputeStep( const G4ThreeVector& localPoint,
               }
 #endif
             }
+#ifdef G4VERBOSE
+            if ( fCheck && ( sampleStep < kInfinity )
+                        && ( sampleStep >= motherStep ) )            
+            {               
+               // The intersection point with the daughter is after the exit
+               // point from the mother volume.  Double check this !!
+               fLogger->CheckDaughterEntryPoint(sampleSolid,
+                                                samplePoint, sampleDirection,
+                                                motherSolid,
+                                                localPoint, localDirection,
+                                                motherStep, sampleStep);
+            }
+#endif
+          }            
+#ifdef G4VERBOSE
+          else // ie if sampleSafety > outStep 
+          {
+            if( fCheck )
+            {
+              fLogger->PrintDaughterLog(sampleSolid, samplePoint,
+                                        sampleSafety, false,
+                                        G4ThreeVector(0.,0.,0.), -1.0 );
+            }
           }
+#endif                         
         }
       }
     }
@@ -230,22 +304,63 @@ G4VoxelNavigation::ComputeStep( const G4ThreeVector& localPoint,
         //
         if ( motherSafety<=ourStep )
         {
-          G4double motherStep =
-              motherSolid->DistanceToOut(localPoint,
-                                         localDirection,
-                                         true, &validExitNormal, &exitNormal);
+          if( !fCheck )
+          {
+            motherStep = motherSolid->DistanceToOut(localPoint, localDirection,
+                              true, &motherValidExitNormal, &motherExitNormal);
+          }
+          // Not correct - unless mother limits step (see below)
+          // validExitNormal= motherValidExitNormal;
+          // exitNormal= motherExitNormal;
 #ifdef G4VERBOSE
-          if ( fCheck )
+          else // check_mode
           {
             fLogger->PostComputeStepLog(motherSolid, localPoint, localDirection,
                                         motherStep, motherSafety);
+            if( motherValidExitNormal )
+            {
+              fLogger->CheckAndReportBadNormal(motherExitNormal,
+                                              localPoint, localDirection, 
+                                              motherStep, motherSolid,                                    
+                                        "From motherSolid::DistanceToOut" );
+            }          
           }
 #endif
+          if( (motherStep >= kInfinity) || (motherStep < 0.0) )
+          {
+            // Error - indication of being outside solid !!
+            //
+            fLogger->ReportOutsideMother(localPoint, localDirection, motherPhysical);
+             
+            motherStep = 0.0;
+            ourStep = 0.0;
+            exiting = true;
+            entering = false;
+             
+            // validExitNormal= motherValidExitNormal;
+            // exitNormal= motherExitNormal;
+            // Useful only if the point is very close to surface
+            // => but it would need to be rotated to grand-mother ref frame !
+            validExitNormal= false;
+
+            *pBlockedPhysical= 0; // or motherPhysical ?
+            blockedReplicaNo= 0;  // or motherReplicaNumber ?
+    
+            newSafety= 0.0;
+            return ourStep;
+          }          
+          
           if ( motherStep<=ourStep )
           {
             ourStep = motherStep;
             exiting = true;
             entering = false;
+
+            // Exit normal: Natural location to set these;confirmed short step
+            //
+            validExitNormal= motherValidExitNormal;
+            exitNormal= motherExitNormal;
+
             if ( validExitNormal )
             {
               const G4RotationMatrix *rot = motherPhysical->GetRotation();
@@ -622,7 +737,7 @@ G4VoxelNavigation::ComputeSafety(const G4ThreeVector& localPoint,
 #ifdef G4VERBOSE
   if( fCheck )
   {
-    fLogger->ComputeSafetyLog (motherSolid, localPoint, motherSafety, true);
+    fLogger->ComputeSafetyLog (motherSolid,localPoint,motherSafety,true,true);
   }
 #endif
   //
@@ -653,7 +768,7 @@ G4VoxelNavigation::ComputeSafety(const G4ThreeVector& localPoint,
 #ifdef G4VERBOSE
     if( fCheck )
     {
-      fLogger->ComputeSafetyLog (sampleSolid,samplePoint,sampleSafety,false);
+      fLogger->ComputeSafetyLog(sampleSolid,samplePoint,sampleSafety,false,false);
     }
 #endif
   }
diff --git a/source/geometry/solids/Boolean/History b/source/geometry/solids/Boolean/History
index 2a3f20067db..0b7b01b74ff 100644
--- a/source/geometry/solids/Boolean/History
+++ b/source/geometry/solids/Boolean/History
@@ -1,5 +1,5 @@
 
-$Id: History 86201 2014-11-07 15:22:50Z gcosmo $
+$Id: History 90704 2015-06-08 09:50:07Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -20,6 +20,10 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+ March 3, 2015  G.Cosmo                  geom-bool-V10-00-10
+ - Use accessors x(), y() and z() from UVector3, instead of directly accessing
+   its data-members.
+
  November 7, 2014  G.Cosmo               geom-bool-V10-00-09
  - Fixed Coverity defects in G4UMultiUnion::CreatePolyhedron() for
    memory leaks.
diff --git a/source/geometry/solids/Boolean/include/G4UMultiUnion.hh b/source/geometry/solids/Boolean/include/G4UMultiUnion.hh
index b900fa29a11..d6c3e1f8e81 100644
--- a/source/geometry/solids/Boolean/include/G4UMultiUnion.hh
+++ b/source/geometry/solids/Boolean/include/G4UMultiUnion.hh
@@ -116,7 +116,7 @@ inline G4Transform3D* G4UMultiUnion::GetTransformation(G4int index) const
     rot(CLHEP::HepRep3x3(tr.fRot[0], tr.fRot[1], tr.fRot[2],
                          tr.fRot[3], tr.fRot[4], tr.fRot[5],
                          tr.fRot[6], tr.fRot[7], tr.fRot[8]));
-  G4ThreeVector transl(tr.fTr.x, tr.fTr.y, tr.fTr.z);
+  G4ThreeVector transl(tr.fTr.x(), tr.fTr.y(), tr.fTr.z());
 
   return new G4Transform3D(rot, transl);
 }
diff --git a/source/geometry/solids/CSG/History b/source/geometry/solids/CSG/History
index ad57539713f..5aa147c1f7b 100644
--- a/source/geometry/solids/CSG/History
+++ b/source/geometry/solids/CSG/History
@@ -1,4 +1,4 @@
-$Id: History 88946 2015-03-16 16:14:24Z gcosmo $
+$Id: History 90706 2015-06-08 09:54:31Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,6 +17,25 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+May 20, 2015  T.Nikitina                 geom-csg-V10-00-08
+- Fixed DistanceToOut(p) and Inside(p) in G4Sphere for sphere cut in theta
+  for point (0,0,0) and for cases when Start/End angle have not to be taken
+  in account (STheta==0 || eTheta==pi).
+  Added corresponding test cases to unit test for testG4Sphere.
+  Fix triggered by analysing setup provided in problem report #1702.
+
+May 5, 2015  G.Cosmo
+- Fixed Coverity defect for unused variable quantity in G4Cons.
+
+April 28, 2015  T.Nikitina
+- Fixed calculation of Normal in G4Para for kPX and kMX sides in
+  DistanceToOut(p,v) and ApproxSurfaceNormal(p).
+  Addressing problem report #1736. 
+
+March 3, 2015  G.Cosmo
+- Use accessors x(), y() and z() from UVector3, instead of directly accessing
+  its data-members.
+
 February 16, 2015  G.Cosmo               geom-csg-V10-00-07
 - Fixed typo in copy-ctor and assignment operator for G4Tubs and G4OTubs.
 
diff --git a/source/geometry/solids/CSG/include/G4UTrap.hh b/source/geometry/solids/CSG/include/G4UTrap.hh
index 03d008f7454..d6b0ca6af66 100644
--- a/source/geometry/solids/CSG/include/G4UTrap.hh
+++ b/source/geometry/solids/CSG/include/G4UTrap.hh
@@ -189,7 +189,7 @@ inline TrapSidePlane G4UTrap::GetSidePlane(G4int n) const
 inline G4ThreeVector G4UTrap::GetSymAxis() const
 {
   UVector3 axis = GetShape()->GetSymAxis();
-  return G4ThreeVector(axis.x, axis.y, axis.z);
+  return G4ThreeVector(axis.x(), axis.y(), axis.z());
 }
 
 inline
diff --git a/source/geometry/solids/CSG/src/G4Cons.cc b/source/geometry/solids/CSG/src/G4Cons.cc
index da5759768cb..22706c2c1ec 100644
--- a/source/geometry/solids/CSG/src/G4Cons.cc
+++ b/source/geometry/solids/CSG/src/G4Cons.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4Cons.cc 83617 2014-09-04 13:31:37Z gcosmo $
+// $Id: G4Cons.cc 90706 2015-06-08 09:54:31Z gcosmo $
 // GEANT4 tag $Name: $
 //
 //
@@ -783,25 +783,25 @@ G4double G4Cons::DistanceToIn( const G4ThreeVector& p,
         tolORMin  = fRmin1 - halfRadTolerance*secRMin ;
         tolIRMin  = fRmin1 + halfRadTolerance*secRMin ;
         tolIRMax  = fRmax1 - halfRadTolerance*secRMin ;
-        tolORMax2 = (fRmax1 + halfRadTolerance*secRMax)*
-                    (fRmax1 + halfRadTolerance*secRMax) ;
+        // tolORMax2 = (fRmax1 + halfRadTolerance*secRMax)*
+        //             (fRmax1 + halfRadTolerance*secRMax) ;
       }
       else
       {
         tolORMin  = fRmin2 - halfRadTolerance*secRMin ;
         tolIRMin  = fRmin2 + halfRadTolerance*secRMin ;
         tolIRMax  = fRmax2 - halfRadTolerance*secRMin ;
-        tolORMax2 = (fRmax2 + halfRadTolerance*secRMax)*
-                    (fRmax2 + halfRadTolerance*secRMax) ;
+        // tolORMax2 = (fRmax2 + halfRadTolerance*secRMax)*
+        //             (fRmax2 + halfRadTolerance*secRMax) ;
       }
       if ( tolORMin > 0 ) 
       {
-        tolORMin2 = tolORMin*tolORMin ;
+        // tolORMin2 = tolORMin*tolORMin ;
         tolIRMin2 = tolIRMin*tolIRMin ;
       }
       else                
       {
-        tolORMin2 = 0.0 ;
+        // tolORMin2 = 0.0 ;
         tolIRMin2 = 0.0 ;
       }
       if ( tolIRMax > 0 )  { tolIRMax2 = tolIRMax*tolIRMax; }     
diff --git a/source/geometry/solids/CSG/src/G4Para.cc b/source/geometry/solids/CSG/src/G4Para.cc
index 539203268a5..5f8f18dbd64 100644
--- a/source/geometry/solids/CSG/src/G4Para.cc
+++ b/source/geometry/solids/CSG/src/G4Para.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4Para.cc 83572 2014-09-01 15:23:27Z gcosmo $
+// $Id: G4Para.cc 90706 2015-06-08 09:54:31Z gcosmo $
 //
 // class G4Para
 //
@@ -489,8 +489,7 @@ G4ThreeVector G4Para::SurfaceNormal( const G4ThreeVector& p ) const
   newpy  = p.y()-fTthetaSphi*p.z();
 
   calpha = 1/std::sqrt(1+fTalpha*fTalpha);
-  if (fTalpha) {salpha = -calpha*fTalpha;} // NOTE: using MINUS std::sin(alpha)
-  else         {salpha = 0.;}
+  salpha = -calpha*fTalpha; // NOTE: using MINUS std::sin(alpha)
   
   //  xshift = newpx*calpha+newpy*salpha;
   xshift = newpx - newpy*fTalpha;
@@ -562,15 +561,8 @@ G4ThreeVector G4Para::ApproxSurfaceNormal( const G4ThreeVector& p ) const
   newpy=p.y()-fTthetaSphi*p.z();
 
   calpha=1/std::sqrt(1+fTalpha*fTalpha);
-  if (fTalpha)
-  {
-    salpha=-calpha/fTalpha;  // NOTE: actually use MINUS std::sin(alpha)
-  }
-  else
-  {
-    salpha=0;
-  }
-
+  salpha=-calpha*fTalpha;  // NOTE: actually use MINUS std::sin(alpha)
+  
   xshift=newpx*calpha+newpy*salpha;
 
   distx=std::fabs(std::fabs(xshift)-fDx*calpha);
@@ -1000,14 +992,7 @@ G4double G4Para::DistanceToOut(const G4ThreeVector& p, const G4ThreeVector& v,
       {
         *validNorm=true; // Leaving via plus X
         calpha=1/std::sqrt(1+fTalpha*fTalpha);
-        if (fTalpha)
-        {
-          salpha=-calpha/fTalpha;  // NOTE: actually use MINUS std::sin(alpha)
-        }
-        else
-        {
-          salpha=0;
-        }
+        salpha=-calpha*fTalpha;  // NOTE: actually use MINUS std::sin(alpha)
         tntheta=fTthetaCphi*calpha+fTthetaSphi*salpha;
         cosntheta=1/std::sqrt(1+tntheta*tntheta);
         *n=G4ThreeVector(calpha*cosntheta,salpha*cosntheta,-tntheta*cosntheta);
@@ -1033,14 +1018,7 @@ G4double G4Para::DistanceToOut(const G4ThreeVector& p, const G4ThreeVector& v,
       {
         *validNorm=true; // Leaving via minus X
         calpha=1/std::sqrt(1+fTalpha*fTalpha);
-        if (fTalpha)
-        {
-          salpha=-calpha/fTalpha;  // NOTE: actually use MINUS std::sin(alpha)
-        }
-        else
-        {
-          salpha=0;
-        }
+        salpha=-calpha*fTalpha;  // NOTE: actually use MINUS std::sin(alpha)
         tntheta=fTthetaCphi*calpha+fTthetaSphi*salpha;
         cosntheta=-1/std::sqrt(1+tntheta*tntheta);
         *n=G4ThreeVector(calpha*cosntheta,salpha*cosntheta,-tntheta*cosntheta);
@@ -1070,28 +1048,14 @@ G4double G4Para::DistanceToOut(const G4ThreeVector& p, const G4ThreeVector& v,
         break;        
       case kMX:
         calpha=1/std::sqrt(1+fTalpha*fTalpha);
-        if (fTalpha)
-        {
-          salpha=-calpha/fTalpha;  // NOTE: actually use MINUS std::sin(alpha)
-        }
-        else
-        {
-          salpha=0;
-        }
+        salpha=-calpha*fTalpha;  // NOTE: actually use MINUS std::sin(alpha)
         tntheta=fTthetaCphi*calpha+fTthetaSphi*salpha;
         cosntheta=-1/std::sqrt(1+tntheta*tntheta);
         *n=G4ThreeVector(calpha*cosntheta,salpha*cosntheta,-tntheta*cosntheta);
         break;
       case kPX:
         calpha=1/std::sqrt(1+fTalpha*fTalpha);
-        if (fTalpha)
-        {
-          salpha=-calpha/fTalpha;  // NOTE: actually use MINUS std::sin(alpha)
-        }
-        else
-        {
-          salpha=0;
-        }
+        salpha=-calpha*fTalpha;  // NOTE: actually use MINUS std::sin(alpha)
         tntheta=fTthetaCphi*calpha+fTthetaSphi*salpha;
         cosntheta=1/std::sqrt(1+tntheta*tntheta);
         *n=G4ThreeVector(calpha*cosntheta,salpha*cosntheta,-tntheta*cosntheta);
diff --git a/source/geometry/solids/CSG/src/G4Sphere.cc b/source/geometry/solids/CSG/src/G4Sphere.cc
index 6ef826cdc57..7a4445b53d1 100644
--- a/source/geometry/solids/CSG/src/G4Sphere.cc
+++ b/source/geometry/solids/CSG/src/G4Sphere.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4Sphere.cc 83572 2014-09-01 15:23:27Z gcosmo $
+// $Id: G4Sphere.cc 90706 2015-06-08 09:54:31Z gcosmo $
 //
 // class G4Sphere
 //
@@ -488,6 +488,22 @@ EInside G4Sphere::Inside( const G4ThreeVector& p ) const
   tolRMin = Rmin_plus;
   tolRMax = Rmax_minus;
 
+  if(rad2 == 0.0)
+  { 
+    if (fRmin > 0.0)
+    {
+      return in = kOutside;
+    }
+    if ( (!fFullPhiSphere) || (!fFullThetaSphere) )
+    {
+      return in = kSurface;
+    }
+    else
+    {
+      return in = kInside; 
+    }
+  }
+
   if ( (rad2 <= Rmax_minus*Rmax_minus) && (rad2 >= Rmin_plus*Rmin_plus) )
   {
     in = kInside;
@@ -534,11 +550,12 @@ EInside G4Sphere::Inside( const G4ThreeVector& p ) const
 
     if ( in == kInside )
     {
-      if ( (pTheta < fSTheta + halfAngTolerance)
-        || (pTheta > eTheta - halfAngTolerance) )
+      if ( ((fSTheta > 0.0) && (pTheta < fSTheta + halfAngTolerance))
+	|| ((eTheta < pi) && (pTheta > eTheta - halfAngTolerance)) )
       {
-        if ( (pTheta >= fSTheta - halfAngTolerance)
-          && (pTheta <= eTheta + halfAngTolerance) )
+	if ( (( (fSTheta>0.0)&&(pTheta>=fSTheta-halfAngTolerance) )
+             || (fSTheta == 0.0) )
+          && ((eTheta==pi)||(pTheta <= eTheta + halfAngTolerance) ) )
         {
           in = kSurface;
         }
@@ -550,8 +567,8 @@ EInside G4Sphere::Inside( const G4ThreeVector& p ) const
     }
     else
     {
-      if ( (pTheta < fSTheta - halfAngTolerance)
-        || (pTheta > eTheta + halfAngTolerance) )
+        if ( ((fSTheta > 0.0)&&(pTheta < fSTheta - halfAngTolerance))
+	   ||((eTheta < pi  )&&(pTheta > eTheta + halfAngTolerance)) )
       {
         in = kOutside;
       }
@@ -2782,7 +2799,7 @@ G4double G4Sphere::DistanceToOut( const G4ThreeVector& p ) const
 {
   G4double safe=0.0,safeRMin,safeRMax,safePhi,safeTheta;
   G4double rho2,rds,rho;
-  G4double pTheta,dTheta1,dTheta2;
+  G4double pTheta,dTheta1 = kInfinity,dTheta2 = kInfinity;
   rho2=p.x()*p.x()+p.y()*p.y();
   rds=std::sqrt(rho2+p.z()*p.z());
   rho=std::sqrt(rho2);
@@ -2803,58 +2820,67 @@ G4double G4Sphere::DistanceToOut( const G4ThreeVector& p ) const
   }
 #endif
 
-  //
   // Distance to r shells
-  //    
+  //
+  safeRMax = fRmax-rds;
+  safe = safeRMax;  
   if (fRmin)
   {
-    safeRMin=rds-fRmin;
-    safeRMax=fRmax-rds;
-    if (safeRMin<safeRMax)
-    {
-      safe=safeRMin;
-    }
-    else
-    {
-      safe=safeRMax;
-    }
+     safeRMin = rds-fRmin;
+     safe = std::min( safeRMin, safeRMax ); 
   }
-  else
+
+  // Distance to phi extent
+  //
+  if ( !fFullPhiSphere )
   {
-    safe=fRmax-rds;
+     if (rho>0.0)
+     {
+        if ((p.y()*cosCPhi-p.x()*sinCPhi)<=0)
+        {
+           safePhi=-(p.x()*sinSPhi-p.y()*cosSPhi);
+        }
+        else
+        {
+           safePhi=(p.x()*sinEPhi-p.y()*cosEPhi);
+        }
+     }
+     else
+     {
+        safePhi = 0.0;  // Distance to both Phi surfaces (extended)
+     }
+     // Both cases above can be improved - in case fRMin > 0.0
+     //  although it may be costlier (good for precise, not fast version)
+     
+     safe= std::min(safe, safePhi);
   }
 
+  // Distance to Theta extent
   //
-  // Distance to phi extent
-  //
-  if (!fFullPhiSphere && rho)
+  if ( !fFullThetaSphere )
   {
-    if ((p.y()*cosCPhi-p.x()*sinCPhi)<=0)
-    {
-      safePhi=-(p.x()*sinSPhi-p.y()*cosSPhi);
+    if( rds > 0.0 )
+    {
+       pTheta=std::acos(p.z()/rds);
+       if (pTheta<0) { pTheta+=pi; }
+       if(fSTheta>0.)
+       { dTheta1=pTheta-fSTheta;}
+       if(eTheta<pi)
+       { dTheta2=eTheta-pTheta;}
+      
+       safeTheta=rds*std::sin(std::min(dTheta1, dTheta2) );
     }
     else
     {
-      safePhi=(p.x()*sinEPhi-p.y()*cosEPhi);
+       safeTheta= 0.0;
+         // An improvement will be to return negative answer if outside (TODO)
     }
-    if (safePhi<safe)  { safe=safePhi; }
-  }
-
-  //
-  // Distance to Theta extent
-  //    
-  if (rds)
-  {
-    pTheta=std::acos(p.z()/rds);
-    if (pTheta<0)  { pTheta+=pi; }
-    dTheta1=pTheta-fSTheta;
-    dTheta2=eTheta-pTheta;
-    if (dTheta1<dTheta2)  { safeTheta=rds*std::sin(dTheta1); }
-    else                  { safeTheta=rds*std::sin(dTheta2); }
-    if (safe>safeTheta)   { safe=safeTheta; }
+    safe = std::min( safe, safeTheta );
   }
 
-  if (safe<0)  { safe=0; }
+  if (safe<0.0) { safe=0; }
+    // An improvement to return negative answer if outside (TODO)
+  
   return safe;
 }
 
diff --git a/source/geometry/solids/specific/History b/source/geometry/solids/specific/History
index f07d40a578d..52d89b01a69 100644
--- a/source/geometry/solids/specific/History
+++ b/source/geometry/solids/specific/History
@@ -1,4 +1,4 @@
-$Id: History 88948 2015-03-16 16:26:50Z gcosmo $
+$Id: History 90708 2015-06-08 10:01:42Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,6 +17,10 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+03-Mar-2015  G.Cosmo               (geom-specific-V10-00-13)
+- Use accessors x(), y() and z() from UVector3, instead of directly accessing
+  its data-members.
+
 23-Feb-2015  T.Nikitina            (geom-specific-V10-00-12)
 - Fix in SetOriginalParameters() for G4Polycone and G4Polyhedra, in case
   of presence of 'rings' structures. Addressing problem report #1705.
diff --git a/source/geometry/solids/specific/include/G4UTet.hh b/source/geometry/solids/specific/include/G4UTet.hh
index e6109d6d3bc..db7454d61a2 100644
--- a/source/geometry/solids/specific/include/G4UTet.hh
+++ b/source/geometry/solids/specific/include/G4UTet.hh
@@ -95,7 +95,7 @@ inline std::vector<G4ThreeVector> G4UTet::GetVertices() const
   std::vector<G4ThreeVector> vertices;
   for (unsigned int i=0; i<vec.size(); ++i)
   {
-    G4ThreeVector v(vec[i].x, vec[i].y, vec[i].z);
+    G4ThreeVector v(vec[i].x(), vec[i].y(), vec[i].z());
     vertices.push_back(v);
   }
   return vertices;
diff --git a/source/geometry/solids/specific/src/G4UGenericTrap.cc b/source/geometry/solids/specific/src/G4UGenericTrap.cc
index 3dc1f9e96c0..328e1e52bca 100644
--- a/source/geometry/solids/specific/src/G4UGenericTrap.cc
+++ b/source/geometry/solids/specific/src/G4UGenericTrap.cc
@@ -134,8 +134,8 @@ G4Polyhedron* G4UGenericTrap::CreatePolyhedron() const
       G4double Dx,Dy;
       UVector3 minBox = GetShape()->GetMinimumBBox();
       UVector3 maxBox = GetShape()->GetMaximumBBox();
-      G4ThreeVector minVec(minBox.x, minBox.y, minBox.z);
-      G4ThreeVector maxVec(maxBox.x, maxBox.y, maxBox.z);
+      G4ThreeVector minVec(minBox.x(), minBox.y(), minBox.z());
+      G4ThreeVector maxVec(maxBox.x(), maxBox.y(), maxBox.z());
       Dx = 0.5*(maxVec.x()- minVec.y());
       Dy = 0.5*(maxVec.y()- minVec.y());
       if (Dy > Dx)  { Dx=Dy; }
diff --git a/source/geometry/volumes/History b/source/geometry/volumes/History
index 26036ac38af..3a0b1cb2f69 100644
--- a/source/geometry/volumes/History
+++ b/source/geometry/volumes/History
@@ -1,4 +1,4 @@
-$Id: History 88950 2015-03-16 16:31:29Z gcosmo $
+$Id: History 90710 2015-06-08 10:06:27Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,6 +17,13 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+April 15th, 2015 G.Cosmo                  - geomvol-V10-00-10
+- Simplified implementation in G4NavigationHistoryPool to make use of simple
+  stack of free entries. Pre-allocate size of vectors and inlined GetLevels().
+
+April 8th, 2015 A.Dotti
+- Updated unit-tests to new G4Exception signature.
+
 December 12th, 2014 G.Cosmo               - geomvol-V10-00-09
 - Use canonical form for copy-ctor and operator=() in G4GRSSolid, G4GRSVolume,
   G4LogicalBorderSurface and G4LogicalSkinSurface.
diff --git a/source/geometry/volumes/include/G4NavigationHistoryPool.hh b/source/geometry/volumes/include/G4NavigationHistoryPool.hh
index 6d4bfb5a29b..5babf05568d 100644
--- a/source/geometry/volumes/include/G4NavigationHistoryPool.hh
+++ b/source/geometry/volumes/include/G4NavigationHistoryPool.hh
@@ -54,9 +54,9 @@ class G4NavigationHistoryPool
     inline std::vector<G4NavigationLevel> * GetNewLevels();
       // Return the pointer to a new collection of levels being allocated.
 
-    std::vector<G4NavigationLevel> * GetLevels();
+    inline std::vector<G4NavigationLevel> * GetLevels();
       // Return the pointer of the first available collection of levels
-      // If none are available (i.e. non active) allocate collection.
+      // If none are available (i.e. empty Free vector) allocate collection.
 
     inline void DeRegister(std::vector<G4NavigationLevel> * pLevels);
       // Deactivate levels collection in pool.
@@ -86,7 +86,7 @@ class G4NavigationHistoryPool
     static G4ThreadLocal G4NavigationHistoryPool* fgInstance;
 
     std::vector<std::vector<G4NavigationLevel> *> fPool;
-    std::vector<G4bool> fActive;
+    std::vector<std::vector<G4NavigationLevel> *> fFree;
 };
 
 // ***************************************************************************
@@ -97,7 +97,6 @@ inline void G4NavigationHistoryPool::
 Register(std::vector<G4NavigationLevel> * pLevels)
 {
   fPool.push_back(pLevels);
-  fActive.push_back(true);
 }
 
 // ***************************************************************************
@@ -107,9 +106,7 @@ Register(std::vector<G4NavigationLevel> * pLevels)
 inline void G4NavigationHistoryPool::
 DeRegister(std::vector<G4NavigationLevel> * pLevels)
 {
-  std::vector<std::vector<G4NavigationLevel> *>::iterator
-    pos = std::find(fPool.begin(), fPool.end(), pLevels);
-  fActive[pos-fPool.begin()]=false;
+  fFree.push_back(pLevels);
 }
 
 // ***************************************************************************
@@ -125,4 +122,26 @@ inline std::vector<G4NavigationLevel> * G4NavigationHistoryPool::GetNewLevels()
   return aLevelVec;
 }
 
+// ***************************************************************************
+// Return the pointer of the first available collection of levels
+// If none are available (i.e. non active) allocate collection
+// ***************************************************************************
+//
+inline std::vector<G4NavigationLevel> * G4NavigationHistoryPool::GetLevels()
+{
+  std::vector<G4NavigationLevel> * levels = 0;
+
+  if (fFree.size() !=0)
+  {
+    levels = fFree.back();
+    fFree.pop_back();
+  }
+  else
+  {
+    levels = GetNewLevels();
+  }
+
+  return levels;
+}
+
 #endif
diff --git a/source/geometry/volumes/src/G4NavigationHistoryPool.cc b/source/geometry/volumes/src/G4NavigationHistoryPool.cc
index d5dda8957de..f74a09f8ba5 100644
--- a/source/geometry/volumes/src/G4NavigationHistoryPool.cc
+++ b/source/geometry/volumes/src/G4NavigationHistoryPool.cc
@@ -49,6 +49,8 @@ G4ThreadLocal G4NavigationHistoryPool* G4NavigationHistoryPool::fgInstance = 0;
 //
 G4NavigationHistoryPool::G4NavigationHistoryPool()
 {
+  fPool.reserve(512);
+  fFree.reserve(512);
 }
 
 // ***************************************************************************
@@ -71,7 +73,7 @@ void G4NavigationHistoryPool::Clean()
     delete fPool[i];
   }
   fPool.clear();
-  fActive.clear();
+  fFree.clear();
 }
 
 // ***************************************************************************
@@ -94,25 +96,12 @@ void G4NavigationHistoryPool::Reset()
 {
   for(size_t i=0; i<fPool.size(); ++i)
   {
-    fPool[i] = 0; fActive[i] = false;
+    fPool[i] = 0;
   }
-}
-
-// ***************************************************************************
-// Return the pointer of the first available collection of levels
-// If none are available (i.e. non active) allocate collection
-// ***************************************************************************
-//
-std::vector<G4NavigationLevel> * G4NavigationHistoryPool::GetLevels()
-{
-  std::vector<G4bool>::iterator
-    pos = std::find(fActive.begin(), fActive.end(), false);
-  if (pos != fActive.end())
+  for(size_t j=0; j<fFree.size(); ++j)
   {
-    *pos = true;
-    return fPool[pos-fActive.begin()];
+    fFree[j] = 0;
   }
-  return GetNewLevels();
 }
 
 // ***************************************************************************
diff --git a/source/global/HEPNumerics/src/G4StatDouble.cc b/source/global/HEPNumerics/src/G4StatDouble.cc
index f897a4e6c8c..be04c861471 100644
--- a/source/global/HEPNumerics/src/G4StatDouble.cc
+++ b/source/global/HEPNumerics/src/G4StatDouble.cc
@@ -102,7 +102,7 @@ G4double G4StatDouble::mean(G4double ext_sum_w) const
 G4double G4StatDouble::rms(G4double ssum_wx, G4double ssum_wx2,
                            G4double ssum_w, G4int nn)
 {
-  G4double vrms;
+  G4double vrms = 0.0;
   if (nn > 1)
   {
     G4double vmean = ssum_wx / ssum_w;
@@ -134,10 +134,6 @@ G4double G4StatDouble::rms(G4double ssum_wx, G4double ssum_wx2,
 //         << ((m_sum_wx2 / m_sum_w) - (mean * mean)) 
 // 	   << G4endl;
   }
-  else
-  {
-    vrms = -1.;
-  }
   return vrms * m_scale;
 }
 
diff --git a/source/global/HEPRandom/include/G4RandomTools.hh b/source/global/HEPRandom/include/G4RandomTools.hh
index a5e0be5939b..7b311e8fc6d 100644
--- a/source/global/HEPRandom/include/G4RandomTools.hh
+++ b/source/global/HEPRandom/include/G4RandomTools.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4RandomTools.hh 67970 2013-03-13 10:10:06Z gcosmo $
+// $Id: G4RandomTools.hh 90717 2015-06-08 14:19:29Z gcosmo $
 //
 // 
 // ---------------------------------------------------------------------------
@@ -56,9 +56,12 @@ inline G4ThreeVector G4LambertianRand(const G4ThreeVector& normal)
 {
   G4ThreeVector vect;
   G4double ndotv;
+  G4int count=0;
+  const G4int max_trials = 1024;
 
   do
   {
+    ++count;
     vect = G4RandomDirection();
     ndotv = normal * vect;
 
@@ -68,7 +71,7 @@ inline G4ThreeVector G4LambertianRand(const G4ThreeVector& normal)
       ndotv = -ndotv;
     }
 
-  } while (!(G4UniformRand() < ndotv));
+  } while (!(G4UniformRand() < ndotv) && (count < max_trials));
 
   return vect;
 }
diff --git a/source/global/HEPRandom/include/Randomize.hh b/source/global/HEPRandom/include/Randomize.hh
index 91c4e3d20c6..bceb15e874e 100644
--- a/source/global/HEPRandom/include/Randomize.hh
+++ b/source/global/HEPRandom/include/Randomize.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: Randomize.hh 80506 2014-04-24 14:44:18Z gcosmo $
+// $Id: Randomize.hh 90717 2015-06-08 14:19:29Z gcosmo $
 //
 #ifndef randomize_h
 #define randomize_h 1
@@ -32,14 +32,14 @@
 #include <CLHEP/Random/Randomize.h>
 
 #if __clang__
-  #if (defined(G4MULTITHREADED) && !defined(G4USE_STD11) && \
+  #if ((defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
       !__has_feature(cxx_thread_local))
     #define CLANG_NOSTDTLS
   #endif
 #endif
 
-#if (defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
-    (defined(CLANG_NOSTDTLS))
+#if (defined(G4MULTITHREADED) && \
+    (!defined(G4USE_STD11) || (defined(CLANG_NOSTDTLS))))
 
 // MT needs special Random Number distribution classes
 //
@@ -65,8 +65,6 @@
 
 #define G4UniformRand() G4MTHepRandom::getTheEngine()->flat()
 
-// Currently not be used in G4 source
-//
 #define G4RandFlatArray G4MTRandFlat::shootArray
 #define G4RandFlatInt G4MTRandFlat::shootInt
 #define G4RandGeneralTmp G4MTRandGeneral
diff --git a/source/global/HEPRandom/src/G4MTHepRandom.cc b/source/global/HEPRandom/src/G4MTHepRandom.cc
index 4ef82a41f61..6db709657fa 100644
--- a/source/global/HEPRandom/src/G4MTHepRandom.cc
+++ b/source/global/HEPRandom/src/G4MTHepRandom.cc
@@ -27,14 +27,14 @@
 // $Id:$
 //
 #if __clang__
-  #if (defined(G4MULTITHREADED) && !defined(G4USE_STD11) && \
+  #if ((defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
       !__has_feature(cxx_thread_local))
     #define CLANG_NOSTDTLS
   #endif
 #endif
 
-#if (defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
-    (defined(CLANG_NOSTDTLS))
+#if (defined(G4MULTITHREADED) && \
+    (!defined(G4USE_STD11) || (defined(CLANG_NOSTDTLS))))
 
 #include <CLHEP/Random/StaticRandomStates.h>
 #include <CLHEP/Random/JamesRandom.h>
diff --git a/source/global/HEPRandom/src/G4MTRandBit.cc b/source/global/HEPRandom/src/G4MTRandBit.cc
index 286630ffc67..a5e01e9965f 100644
--- a/source/global/HEPRandom/src/G4MTRandBit.cc
+++ b/source/global/HEPRandom/src/G4MTRandBit.cc
@@ -27,14 +27,14 @@
 // $Id:$
 //
 #if __clang__
-  #if (defined(G4MULTITHREADED) && !defined(G4USE_STD11) && \
+  #if ((defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
       !__has_feature(cxx_thread_local))
     #define CLANG_NOSTDTLS
   #endif
 #endif
 
-#if (defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
-    (defined(CLANG_NOSTDTLS))
+#if (defined(G4MULTITHREADED) && \
+    (!defined(G4USE_STD11) || (defined(CLANG_NOSTDTLS))))
 
 #include "G4MTRandBit.hh"
 
diff --git a/source/global/HEPRandom/src/G4MTRandExponential.cc b/source/global/HEPRandom/src/G4MTRandExponential.cc
index d48d3ea3319..e52dc8cc292 100644
--- a/source/global/HEPRandom/src/G4MTRandExponential.cc
+++ b/source/global/HEPRandom/src/G4MTRandExponential.cc
@@ -27,14 +27,14 @@
 // $Id:$
 //
 #if __clang__
-  #if (defined(G4MULTITHREADED) && !defined(G4USE_STD11) && \
+  #if ((defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
       !__has_feature(cxx_thread_local))
     #define CLANG_NOSTDTLS
   #endif
 #endif
 
-#if (defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
-    (defined(CLANG_NOSTDTLS))
+#if (defined(G4MULTITHREADED) && \
+    (!defined(G4USE_STD11) || (defined(CLANG_NOSTDTLS))))
 
 #include "G4MTRandExponential.hh"
 
diff --git a/source/global/HEPRandom/src/G4MTRandFlat.cc b/source/global/HEPRandom/src/G4MTRandFlat.cc
index 3561a1a6f6d..dedbabe78bc 100644
--- a/source/global/HEPRandom/src/G4MTRandFlat.cc
+++ b/source/global/HEPRandom/src/G4MTRandFlat.cc
@@ -27,14 +27,14 @@
 // $Id:$
 //
 #if __clang__
-  #if (defined(G4MULTITHREADED) && !defined(G4USE_STD11) && \
+  #if ((defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
       !__has_feature(cxx_thread_local))
     #define CLANG_NOSTDTLS
   #endif
 #endif
 
-#if (defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
-    (defined(CLANG_NOSTDTLS))
+#if (defined(G4MULTITHREADED) && \
+    (!defined(G4USE_STD11) || (defined(CLANG_NOSTDTLS))))
 
 #include "G4MTRandFlat.hh"
 
diff --git a/source/global/HEPRandom/src/G4MTRandGamma.cc b/source/global/HEPRandom/src/G4MTRandGamma.cc
index d7f3061d172..810537a7016 100644
--- a/source/global/HEPRandom/src/G4MTRandGamma.cc
+++ b/source/global/HEPRandom/src/G4MTRandGamma.cc
@@ -27,14 +27,14 @@
 // $Id:$
 //
 #if __clang__
-  #if (defined(G4MULTITHREADED) && !defined(G4USE_STD11) && \
+  #if ((defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
       !__has_feature(cxx_thread_local))
     #define CLANG_NOSTDTLS
   #endif
 #endif
 
-#if (defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
-    (defined(CLANG_NOSTDTLS))
+#if (defined(G4MULTITHREADED) && \
+    (!defined(G4USE_STD11) || (defined(CLANG_NOSTDTLS))))
 
 #include <cmath> // for log()
 
diff --git a/source/global/HEPRandom/src/G4MTRandGauss.cc b/source/global/HEPRandom/src/G4MTRandGauss.cc
index 202827f0a7b..c49dae68876 100644
--- a/source/global/HEPRandom/src/G4MTRandGauss.cc
+++ b/source/global/HEPRandom/src/G4MTRandGauss.cc
@@ -27,14 +27,14 @@
 // $Id:$
 //
 #if __clang__
-  #if (defined(G4MULTITHREADED) && !defined(G4USE_STD11) && \
+  #if ((defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
       !__has_feature(cxx_thread_local))
     #define CLANG_NOSTDTLS
   #endif
 #endif
 
-#if (defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
-    (defined(CLANG_NOSTDTLS))
+#if (defined(G4MULTITHREADED) && \
+    (!defined(G4USE_STD11) || (defined(CLANG_NOSTDTLS))))
 
 #include <cmath> // for log()
 
diff --git a/source/global/HEPRandom/src/G4MTRandGaussQ.cc b/source/global/HEPRandom/src/G4MTRandGaussQ.cc
index 1e6fe3ff66a..37eefc1b6a0 100644
--- a/source/global/HEPRandom/src/G4MTRandGaussQ.cc
+++ b/source/global/HEPRandom/src/G4MTRandGaussQ.cc
@@ -27,14 +27,14 @@
 // $Id:$
 //
 #if __clang__
-  #if (defined(G4MULTITHREADED) && !defined(G4USE_STD11) && \
+  #if ((defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
       !__has_feature(cxx_thread_local))
     #define CLANG_NOSTDTLS
   #endif
 #endif
 
-#if (defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
-    (defined(CLANG_NOSTDTLS))
+#if (defined(G4MULTITHREADED) && \
+    (!defined(G4USE_STD11) || (defined(CLANG_NOSTDTLS))))
 
 #include <cmath> // for log()
 #include <CLHEP/Units/PhysicalConstants.h>
diff --git a/source/global/HEPRandom/src/G4MTRandGeneral.cc b/source/global/HEPRandom/src/G4MTRandGeneral.cc
index 0ca95de6b4d..966f26ff655 100644
--- a/source/global/HEPRandom/src/G4MTRandGeneral.cc
+++ b/source/global/HEPRandom/src/G4MTRandGeneral.cc
@@ -27,14 +27,14 @@
 // $Id:$
 //
 #if __clang__
-  #if (defined(G4MULTITHREADED) && !defined(G4USE_STD11) && \
+  #if ((defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
       !__has_feature(cxx_thread_local))
     #define CLANG_NOSTDTLS
   #endif
 #endif
 
-#if (defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
-    (defined(CLANG_NOSTDTLS))
+#if (defined(G4MULTITHREADED) && \
+    (!defined(G4USE_STD11) || (defined(CLANG_NOSTDTLS))))
 
 #include "G4MTRandGeneral.hh"
 
diff --git a/source/global/History b/source/global/History
index a9cd68039a1..618f02d63c4 100644
--- a/source/global/History
+++ b/source/global/History
@@ -17,6 +17,40 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+June 12, 2015 A.Dotti (global-V10-00-47)
+- Fix bug in G4CacheReference::Destroy method
+- Modify behavior of G4Cache to identify internal
+  inconsistencies. An exception is thrown
+
+May 27, 2015 J.Allison (global-V10-00-46)
+- Define G4THREADSLEEP(tick) macro in G4Threading.hh also for sequential
+  builds.
+
+May 26, 2015 G.Cosmo
+- Corrected logic for use of TLS on clang compiler for the Random module.
+
+May 22, 2015 G.Cosmo
+- Added inclusion of <unistd.h> in G4Threading.hh for self-consistency
+  with the call to sleep().
+
+May 18, 2015 A.Dotti
+- Adding copy constructor and assignement operator for G4Cache
+  Addressing issue #1739
+
+May 13, 2015 G.Cosmo
+- Added guard against potential loop in G4RandomTools::G4LambertianRand().
+
+April 26, 2015 V.Ivantchenko
+- G4StatDouble: return RMS 0 instead of -1 in the case the number
+  of entries is below 2 (fixes arithmetic exceptions in examples for 
+  run with 1 event only).
+
+April 8, 2015 G.Cosmo
+- Corrected GNUmakefile in HepRandom unit tests.
+
+March 27, 2015 G.Cosmo
+- Added "g/mole" Molar mass definition to G4UnitsTable.
+
 January 12, 2015 G.Cosmo (global-V10-00-45)
 - Define G4THREADSLEEP(tick) macro in G4Threading.hh.
 
diff --git a/source/global/management/include/G4Cache.hh b/source/global/management/include/G4Cache.hh
index 758695f5a05..87a4b34ae98 100644
--- a/source/global/management/include/G4Cache.hh
+++ b/source/global/management/include/G4Cache.hh
@@ -105,6 +105,9 @@ public:
     inline value_type Pop();
     // Gets copy of cached value
     
+    G4Cache(const G4Cache& rhs);
+    G4Cache& operator=(const G4Cache& rhs);
+
 protected:
   const int& GetId() const { return id; }
 private:
@@ -119,9 +122,6 @@ private:
     return theCache.GetCache(id);
   }
 
-  //Disable copy constructor
-  G4Cache(const G4Cache& rhs);
-  G4Cache& operator=(const G4Cache& rhs);
 };
 
 
@@ -222,6 +222,35 @@ G4Cache<V>::G4Cache()
 #endif
 }
 
+template<class V>
+G4Cache<V>::G4Cache(const G4Cache<V>& rhs)
+{
+	//Copy is special, we need to copy the content
+	//of the cache, not the cache object
+	if ( this == &rhs ) return;
+	G4AutoLock l(&gMutex);
+	id = instancesctr++;
+	//Force copy of cached data
+	V aCopy = rhs.GetCache();
+	Put( aCopy );
+#ifdef g4cdebug
+	cout<<"Copy constructor with id: "<<id<<endl;
+#endif
+}
+
+template<class V>
+G4Cache<V>& G4Cache<V>::operator=(const G4Cache<V>& rhs)
+{
+	if (this == &rhs) return *this;
+	//Force copy of cached data
+	V aCopy = rhs.GetCache();
+	Put(aCopy);
+#ifdef g4cdebug
+	cout<<"Assignement operator with id: "<<id<<endl;
+#endif
+	return *this;
+}
+
 template<class V>
 G4Cache<V>::G4Cache(const V& v)
 {
diff --git a/source/global/management/include/G4CacheDetails.hh b/source/global/management/include/G4CacheDetails.hh
index ad11292ac2d..d3c4995e882 100644
--- a/source/global/management/include/G4CacheDetails.hh
+++ b/source/global/management/include/G4CacheDetails.hh
@@ -63,6 +63,7 @@
 
 #include <vector>
 #include "G4Threading.hh"
+#include "globals.hh"
 
 #ifdef g4cdebug
 #include <iostream>
@@ -159,7 +160,14 @@ void G4CacheReference<V>::Destroy( unsigned int id, G4bool last )
 #ifdef g4cdebug
         cout<<"Destroying element"<<id<<" is last?"<<last<<endl;
 #endif
-        if ( cache->size() <id && (*cache)[id] ) {
+        if ( cache->size() < id ) {
+        	G4ExceptionDescription msg;
+        	msg<<"Internal fatal error. Invalid G4Cache size (requested id: "<<id<<" but cache has size: "<<cache->size();
+        	msg<<" Possibly client created G4Cache object in a thread and tried to delete it from another thread!";
+        	G4Exception("G4CacheReference<V>::Destroy","Cache001",FatalException,msg);
+        	return;
+        }
+        if ( cache->size() > id && (*cache)[id] ) {
             delete (*cache)[id];
             (*cache)[id]=0;
         }
@@ -202,7 +210,14 @@ inline void G4CacheReference<V*>::Destroy( unsigned int id , G4bool last)
 #ifdef g4cdebug
         cout<<"Destroying element"<<id<<" is last?"<<last<<"-Pointer template specialization-"<<endl;
 #endif
-        if ( cache->size() <id && (*cache)[id] ) {
+        if ( cache->size() < id ) {
+        	G4ExceptionDescription msg;
+        	msg<<"Internal fatal error. Invalid G4Cache size (requested id: "<<id<<" but cache has size: "<<cache->size();
+        	msg<<" Possibly client created G4Cache object in a thread and tried to delete it from another thread!";
+        	G4Exception("G4CacheReference<V*>::Destroy","Cache001",FatalException,msg);
+        	return;
+        }
+        if ( cache->size() > id && (*cache)[id] ) {
             //Ownership is for client
             //delete (*cache)[id];
             (*cache)[id]=0;
@@ -235,7 +250,11 @@ void G4CacheReference<G4double>::Initialize( unsigned int id )
         cache->resize(id+1,static_cast<G4double>(0));
 }
 
+#ifdef g4cdebug
+void G4CacheReference<G4double>::Destroy( unsigned int id , G4bool last) {
+#else
 void G4CacheReference<G4double>::Destroy( unsigned int /*id*/ , G4bool last) {
+#endif
     if ( cache && last ) {
 #ifdef g4cdebug
         cout<<"Destroying element"<<id<<" is last?"<<last<<"-Pointer template specialization-"<<endl;
diff --git a/source/global/management/include/G4Threading.hh b/source/global/management/include/G4Threading.hh
index fa432866f7e..89b48c359e2 100644
--- a/source/global/management/include/G4Threading.hh
+++ b/source/global/management/include/G4Threading.hh
@@ -40,6 +40,15 @@
 
 #include "G4Types.hh"
 
+// Macro to put current thread to sleep
+//
+#if defined(WIN32)
+#define G4THREADSLEEP( tick ) { Sleep(tick); }
+#else
+#include <unistd.h>    // needed for sleep()
+#define G4THREADSLEEP( tick ) { sleep(tick); }
+#endif
+
 #if defined(G4MULTITHREADED)
   //===============================
   // Multi-threaded build
@@ -72,10 +81,6 @@
     #define G4MUTEXINIT(mutex) pthread_mutex_init( &mutex , NULL);
     #define G4MUTEXDESTROY(mutex) pthread_mutex_destroy( &mutex );
 
-    // Macro to put current thread to sleep
-    //
-    #define G4THREADSLEEP( tick ) { sleep(tick); }
-	
     // Macro to create a G4Thread object
     //
     #define G4THREADCREATE( worker , func , arg )  { \
@@ -138,7 +143,6 @@
     BOOL G4ReleaseMutex( __in G4Mutex m);
     #define G4MUTEXUNLOCK G4ReleaseMutex
 
-    #define G4THREADSLEEP( tick ) { Sleep(tick); }
     #define G4THREADCREATE( worker, func, arg ) { *worker = CreateThread( NULL, 16*1024*1024 , func , arg , 0 , NULL ); }
     #define G4THREADJOIN( worker ) WaitForSingleObject( worker , INFINITE);
     #define G4THREADSELF GetCurrentThreadId
@@ -174,7 +178,6 @@
   #define G4MUTEXDESTROY(mutex) ;;
   #define G4MUTEXLOCK fake_mutex_lock_unlock
   #define G4MUTEXUNLOCK fake_mutex_lock_unlock
-  #define G4THREADSLEEP ( tick ) ;;
   #define G4THREADCREATE( worker , func , arg ) ;;
   #define G4THREADJOIN( worker ) ;;
   #define G4THREADSELF( nothing ) G4Thread(nothing); 
diff --git a/source/global/management/include/G4Version.hh b/source/global/management/include/G4Version.hh
index 085e1bfff0c..e0e34743f09 100644
--- a/source/global/management/include/G4Version.hh
+++ b/source/global/management/include/G4Version.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4Version.hh 88952 2015-03-16 16:36:44Z gcosmo $
+// $Id: G4Version.hh 90717 2015-06-08 14:19:29Z gcosmo $
 // GEANT4 tag $Name:$
 //
 // Version information
@@ -46,11 +46,11 @@
 //     |--> patch number
 
 #ifndef G4VERSION_NUMBER
-#define G4VERSION_NUMBER  1011
+#define G4VERSION_NUMBER  1012
 #endif
 
 #ifndef G4VERSION_TAG
-#define G4VERSION_TAG "$Name: geant4-10-01-patch-01 $"
+#define G4VERSION_TAG "$Name: geant4-10-01-patch-02 $"
 #endif
 
 // as variables
@@ -58,10 +58,10 @@
 #include "G4String.hh"
 
 #ifdef G4MULTITHREADED
-static const G4String G4Version = "$Name: geant4-10-01-patch-01 [MT]$";
+static const G4String G4Version = "$Name: geant4-10-01-patch-02 [MT]$";
 #else
-static const G4String G4Version = "$Name: geant4-10-01-patch-01 $";
+static const G4String G4Version = "$Name: geant4-10-01-patch-02 $";
 #endif
-static const G4String G4Date    = "(27-March-2015)";
+static const G4String G4Date    = "(19-June-2015)";
 
 #endif
diff --git a/source/global/management/src/G4UnitsTable.cc b/source/global/management/src/G4UnitsTable.cc
index 955b93ad6df..dde12dcad65 100644
--- a/source/global/management/src/G4UnitsTable.cc
+++ b/source/global/management/src/G4UnitsTable.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4UnitsTable.cc 67970 2013-03-13 10:10:06Z gcosmo $
+// $Id: G4UnitsTable.cc 90717 2015-06-08 14:19:29Z gcosmo $
 // 
 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 //
@@ -322,6 +322,7 @@ void G4UnitDefinition::BuildUnitsTable()
  
  //Amount of substance
  new G4UnitDefinition("mole","mol","Amount of substance",mole);
+ new G4UnitDefinition("g/mole","g/mol","Molar mass",g/mole);
  
  //Activity
  new G4UnitDefinition("becquerel","Bq","Activity",becquerel);
diff --git a/source/materials/History b/source/materials/History
index 56c52d4d21e..6e5c94f2a7b 100644
--- a/source/materials/History
+++ b/source/materials/History
@@ -1,4 +1,4 @@
-$Id: History 88957 2015-03-16 16:46:05Z gcosmo $
+$Id: History 90722 2015-06-08 14:30:21Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,6 +17,10 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+28-05-15 V.Ivanchenko (materials-V10-00-28)
+- G4NistManager - fixed problem #1747 - correct printout of elements
+    and materials
+
 06-02-15 V.Ivanchenko (materials-V10-00-27)
 - G4Material, G4NistManager, G4NistMaterialBuilder, G4IonisParamMat 
     introduced NTP_Temperature=20C; set this tempature default for 
diff --git a/source/materials/src/G4NistManager.cc b/source/materials/src/G4NistManager.cc
index 1077eb6c706..3a2a55e55bb 100644
--- a/source/materials/src/G4NistManager.cc
+++ b/source/materials/src/G4NistManager.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4NistManager.cc 74262 2013-10-02 14:37:32Z gcosmo $
+// $Id: G4NistManager.cc 90722 2015-06-08 14:30:21Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -162,7 +162,6 @@ void G4NistManager::PrintG4Element(const G4String& name)
     G4Element* elm = (*theElementTable)[i];
     if ( name == elm->GetName() || "all" == name) {
       G4cout << *elm << G4endl;
-      return;
     }
   }
 }
@@ -177,7 +176,6 @@ void G4NistManager::PrintG4Material(const G4String& name)
     G4Material* mat = (*theMaterialTable)[i];
     if ( name == mat->GetName() || "all" == name) {
       G4cout << *mat << G4endl;
-      return;
     }
   }
 }
diff --git a/source/persistency/gdml/History b/source/persistency/gdml/History
index 842b0ba8ddc..abcd6df6b33 100644
--- a/source/persistency/gdml/History
+++ b/source/persistency/gdml/History
@@ -1,4 +1,4 @@
-$Id: History 87077 2014-11-24 15:29:00Z gcosmo $
+$Id: History 90766 2015-06-09 10:13:41Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,6 +17,26 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+30 April 2015 Gabriele Cosmo (gdml-V10-00-12)
+- Fixed non-initialised boolean flag in G4GDMLRead, reported by Coverity.
+
+20 April 2015 Gabriele Cosmo
+- Corrected parsing of shape type-ID for MultiUnion in G4GDMLWriteSolids.
+
+16 April 2015 Gabriele Cosmo
+- Improved text in G4Exception for failed import of file in G4GDMLRead.
+
+13 April 2015 Witek Pokorski
+- Correction for optional stripping of world-volume.
+
+9 April 2015 Gabriele Cosmo
+- Added "dichroic" surface model for optical property, consistent with
+  addition done in release 10.0.
+
+27 March 2015 Gabriele Cosmo
+- Avoid use of standard evaluator for import of units; adopt G4UnitsTable
+  instead, in order to avoid loss of precision due to unit's conversion.
+
 24 November 2014 Gabriele Cosmo (gdml-V10-00-11)
 - Fixed typo in G4GDMLWriteSolids::BooleanWrite() for the case of repeated
   displacements of the reference solid in the same Boolean operation (issue
diff --git a/source/persistency/gdml/include/G4GDMLRead.hh b/source/persistency/gdml/include/G4GDMLRead.hh
index e9d7c30b35b..a3f88ef540c 100644
--- a/source/persistency/gdml/include/G4GDMLRead.hh
+++ b/source/persistency/gdml/include/G4GDMLRead.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4GDMLRead.hh 68053 2013-03-13 14:39:51Z gcosmo $
+// $Id: G4GDMLRead.hh 90766 2015-06-09 10:13:41Z gcosmo $
 //
 // class G4GDMLRead
 //
@@ -119,13 +119,14 @@ class G4GDMLRead
      // Main method for reading GDML files.
 
    void StripNames() const;
+   void StripName(G4String&) const;
      //
      // Strip off pointers from entity IDs.
 
    void OverlapCheck(G4bool);
      //
      // Activate/de-activate surface check for overlaps (default is off)
-
+  
  protected:
 
    G4GDMLRead();
@@ -134,7 +135,6 @@ class G4GDMLRead
    G4String Transcode(const XMLCh* const);
    G4String GenerateName(const G4String& name, G4bool strip=false);
    G4String Strip(const G4String&) const;
-   void StripName(G4String&) const;
    void GeneratePhysvolName(const G4String&,G4VPhysicalVolume*);
    void LoopRead(const xercesc::DOMElement* const,
                  void(G4GDMLRead::*)(const xercesc::DOMElement* const));
@@ -144,6 +144,7 @@ class G4GDMLRead
    G4GDMLEvaluator eval;
    G4bool validate;
    G4bool check;
+   G4bool dostrip;
 
  private:
 
diff --git a/source/persistency/gdml/include/G4GDMLReadStructure.hh b/source/persistency/gdml/include/G4GDMLReadStructure.hh
index aee6f0e5660..22d41a59229 100644
--- a/source/persistency/gdml/include/G4GDMLReadStructure.hh
+++ b/source/persistency/gdml/include/G4GDMLReadStructure.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4GDMLReadStructure.hh 68053 2013-03-13 14:39:51Z gcosmo $
+// $Id: G4GDMLReadStructure.hh 90766 2015-06-09 10:13:41Z gcosmo $
 //
 //
 // class G4GDMLReadStructure
@@ -101,6 +101,7 @@ class G4GDMLReadStructure : public G4GDMLReadParamvol
    G4GDMLAssemblyMapType assemblyMap;
    G4LogicalVolume *pMotherLogical;
    std::map<std::string, G4VPhysicalVolume*> setuptoPV;
+   G4bool strip;
 };
 
 #endif
diff --git a/source/persistency/gdml/include/G4GDMLWrite.hh b/source/persistency/gdml/include/G4GDMLWrite.hh
index 424b053fd29..c50ea8e560c 100644
--- a/source/persistency/gdml/include/G4GDMLWrite.hh
+++ b/source/persistency/gdml/include/G4GDMLWrite.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4GDMLWrite.hh 69013 2013-04-15 09:41:13Z gcosmo $
+// $Id: G4GDMLWrite.hh 90766 2015-06-09 10:13:41Z gcosmo $
 //
 //
 // class G4GDMLWrite
@@ -98,6 +98,8 @@ class G4GDMLWrite
       // inheriting from G4GDMLWriteStructure and being registered
       // as argument to G4GDMLParser.
 
+    G4String GenerateName(const G4String&,const void* const);
+
   protected:
 
     G4GDMLWrite();
@@ -105,7 +107,6 @@ class G4GDMLWrite
 
     VolumeMapType& VolumeMap();
 
-    G4String GenerateName(const G4String&,const void* const);
     xercesc::DOMAttr* NewAttribute(const G4String&, const G4String&);
     xercesc::DOMAttr* NewAttribute(const G4String&, const G4double&);
     xercesc::DOMElement* NewElement(const G4String&);
diff --git a/source/persistency/gdml/src/G4GDMLRead.cc b/source/persistency/gdml/src/G4GDMLRead.cc
index eda6c62082f..3d595b0e9cc 100644
--- a/source/persistency/gdml/src/G4GDMLRead.cc
+++ b/source/persistency/gdml/src/G4GDMLRead.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4GDMLRead.cc 81112 2014-05-21 08:50:44Z gcosmo $
+// $Id: G4GDMLRead.cc 90766 2015-06-09 10:13:41Z gcosmo $
 //
 // class G4GDMLRead Implementation
 //
@@ -43,7 +43,7 @@
 #include "G4PhysicalVolumeStore.hh"
 
 G4GDMLRead::G4GDMLRead()
-  : validate(true), check(false), inLoop(0), loopCount(0)
+  : validate(true), check(false), dostrip(true), inLoop(0), loopCount(0)
 {
    G4UnitDefinition::BuildUnitsTable();
 }
@@ -72,12 +72,9 @@ G4String G4GDMLRead::GenerateName(const G4String& nameIn, G4bool strip)
    if (inLoop>0)
    {
      nameOut = eval.SolveBrackets(nameOut);
-//     std::stringstream stream;
-//     stream << "0x" << loopCount;
-//     nameOut = nameOut + stream.str();
    }
    if (strip) { StripName(nameOut); }
-
+   
    return nameOut;
 }
 
@@ -127,7 +124,7 @@ void G4GDMLRead::StripNames() const
 
   // Solids...
   //
-  for (i=0; i<solids->size(); i++)
+  for (i=0; i<solids->size(); ++i)
   {
     G4VSolid* psol = (*solids)[i];
     sname = psol->GetName();
@@ -137,7 +134,7 @@ void G4GDMLRead::StripNames() const
 
   // Logical volumes...
   //
-  for (i=0; i<lvols->size(); i++)
+  for (i=0; i<lvols->size(); ++i)
   {
     G4LogicalVolume* lvol = (*lvols)[i];
     sname = lvol->GetName();
@@ -147,7 +144,7 @@ void G4GDMLRead::StripNames() const
 
   // Physical volumes...
   //
-  for (i=0; i<pvols->size(); i++)
+  for (i=0; i<pvols->size(); ++i)
   {
     G4VPhysicalVolume* pvol = (*pvols)[i];
     sname = pvol->GetName();
@@ -157,7 +154,7 @@ void G4GDMLRead::StripNames() const
 
   // Materials...
   //
-  for (i=0; i<materials->size(); i++)
+  for (i=0; i<materials->size(); ++i)
   {
     G4Material* pmat = (*materials)[i];
     sname = pmat->GetName();
@@ -167,7 +164,7 @@ void G4GDMLRead::StripNames() const
 
   // Elements...
   //
-  for (i=0; i<elements->size(); i++)
+  for (i=0; i<elements->size(); ++i)
   {
     G4Element* pelm = (*elements)[i];
     sname = pelm->GetName();
@@ -273,6 +270,7 @@ void G4GDMLRead::Read(const G4String& fileName,
                             G4bool isModule,
                             G4bool strip)
 {
+   dostrip = strip;
    if (isModule)
    {
       G4cout << "G4GDML: Reading module '" << fileName << "'..." << G4endl;
@@ -320,12 +318,14 @@ void G4GDMLRead::Read(const G4String& fileName,
    if (!element)
    {
      std::ostringstream message;
-     message << "ERROR - Empty document!" << G4endl
+     message << "ERROR - Empty document or unable to validate schema!" << G4endl
              << "        Check Internet connection is ON in case of schema"
              << G4endl
              << "        validation enabled and location defined as URL in"
              << G4endl
-             << "        the GDML file - " << fileName << " - being imported!";
+             << "        the GDML file - " << fileName << " - being imported!"
+             << G4endl
+             << "        Otherwise, verify GDML schema server is reachable!";
      G4Exception("G4GDMLRead::Read()", "InvalidRead", FatalException, message);
      return;
    }
diff --git a/source/persistency/gdml/src/G4GDMLReadDefine.cc b/source/persistency/gdml/src/G4GDMLReadDefine.cc
index e60bd653432..07df2924e67 100644
--- a/source/persistency/gdml/src/G4GDMLReadDefine.cc
+++ b/source/persistency/gdml/src/G4GDMLReadDefine.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4GDMLReadDefine.cc 68053 2013-03-13 14:39:51Z gcosmo $
+// $Id: G4GDMLReadDefine.cc 90766 2015-06-09 10:13:41Z gcosmo $
 //
 // class G4GDMLReadDefine Implementation
 //
@@ -32,6 +32,7 @@
 // --------------------------------------------------------------------
 
 #include "G4GDMLReadDefine.hh"
+#include "G4UnitsTable.hh"
 
 G4GDMLMatrix::G4GDMLMatrix()
   : m(0), rows(0), cols(0)
@@ -297,7 +298,7 @@ G4GDMLReadDefine::PositionRead(const xercesc::DOMElement* const positionElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); }  else
-      if (attName=="unit") { unit = eval.Evaluate(attValue); } else
+      if (attName=="unit") { unit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="x") { position.setX(eval.Evaluate(attValue)); } else
       if (attName=="y") { position.setY(eval.Evaluate(attValue)); } else
       if (attName=="z") { position.setZ(eval.Evaluate(attValue)); }
@@ -336,7 +337,7 @@ G4GDMLReadDefine::RotationRead(const xercesc::DOMElement* const rotationElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); }  else
-      if (attName=="unit") { unit = eval.Evaluate(attValue); } else
+      if (attName=="unit") { unit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="x") { rotation.setX(eval.Evaluate(attValue)); } else
       if (attName=="y") { rotation.setY(eval.Evaluate(attValue)); } else
       if (attName=="z") { rotation.setZ(eval.Evaluate(attValue)); }
@@ -446,7 +447,7 @@ void G4GDMLReadDefine::QuantityRead(const xercesc::DOMElement* const element)
 
       if (attName=="name") { name = attValue; } else
       if (attName=="value") { value = eval.Evaluate(attValue); } else
-      if (attName=="unit") { unit = eval.Evaluate(attValue); }
+      if (attName=="unit") { unit = G4UnitDefinition::GetValueOf(attValue); }
    }
 
    quantityMap[name] = value*unit;
@@ -519,7 +520,7 @@ G4GDMLReadDefine::VectorRead(const xercesc::DOMElement* const vectorElement,
       const G4String attName = Transcode(attribute->getName());
       const G4String attValue = Transcode(attribute->getValue());
 
-      if (attName=="unit") { unit = eval.Evaluate(attValue); } else
+      if (attName=="unit") { unit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="x") { vec.setX(eval.Evaluate(attValue)); } else
       if (attName=="y") { vec.setY(eval.Evaluate(attValue)); } else
       if (attName=="z") { vec.setZ(eval.Evaluate(attValue)); }
diff --git a/source/persistency/gdml/src/G4GDMLReadMaterials.cc b/source/persistency/gdml/src/G4GDMLReadMaterials.cc
index 1cfcdfe36c3..92f7b44be8b 100644
--- a/source/persistency/gdml/src/G4GDMLReadMaterials.cc
+++ b/source/persistency/gdml/src/G4GDMLReadMaterials.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4GDMLReadMaterials.cc 86379 2014-11-10 11:34:33Z gcosmo $
+// $Id: G4GDMLReadMaterials.cc 90766 2015-06-09 10:13:41Z gcosmo $
 // GEANT4 tag $ Name:$
 //
 // class G4GDMLReadMaterials Implementation
@@ -37,6 +37,7 @@
 
 #include "G4PhysicalConstants.hh"
 #include "G4SystemOfUnits.hh"
+#include "G4UnitsTable.hh"
 #include "G4Element.hh"
 #include "G4Isotope.hh"
 #include "G4Material.hh"
@@ -80,7 +81,7 @@ G4GDMLReadMaterials::AtomRead(const xercesc::DOMElement* const atomElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="value") { value = eval.Evaluate(attValue); } else
-      if (attName=="unit")  { unit = eval.Evaluate(attValue); }
+      if (attName=="unit")  { unit = G4UnitDefinition::GetValueOf(attValue); }
    }
 
    return value*unit;
@@ -150,7 +151,7 @@ G4double G4GDMLReadMaterials::DRead(const xercesc::DOMElement* const DElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="value") { value = eval.Evaluate(attValue); } else
-      if (attName=="unit")  { unit = eval.Evaluate(attValue); }
+      if (attName=="unit")  { unit = G4UnitDefinition::GetValueOf(attValue); }
    }
 
    return value*unit;
@@ -184,7 +185,7 @@ G4double G4GDMLReadMaterials::PRead(const xercesc::DOMElement* const PElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="value") { value = eval.Evaluate(attValue); } else
-      if (attName=="unit")  { unit = eval.Evaluate(attValue); }
+      if (attName=="unit")  { unit = G4UnitDefinition::GetValueOf(attValue); }
    }
 
    return value*unit;
@@ -218,7 +219,7 @@ G4double G4GDMLReadMaterials::TRead(const xercesc::DOMElement* const TElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="value") { value = eval.Evaluate(attValue); } else
-      if (attName=="unit")  { unit = eval.Evaluate(attValue); }
+      if (attName=="unit")  { unit = G4UnitDefinition::GetValueOf(attValue); }
    }
 
    return value*unit;
@@ -252,7 +253,7 @@ G4double G4GDMLReadMaterials::MEERead(const xercesc::DOMElement* const PElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="value") { value = eval.Evaluate(attValue); } else
-      if (attName=="unit")  { unit = eval.Evaluate(attValue); }
+      if (attName=="unit")  { unit = G4UnitDefinition::GetValueOf(attValue); }
    }
 
    return value*unit;
diff --git a/source/persistency/gdml/src/G4GDMLReadParamvol.cc b/source/persistency/gdml/src/G4GDMLReadParamvol.cc
index b02e6bd019a..435635d02a3 100644
--- a/source/persistency/gdml/src/G4GDMLReadParamvol.cc
+++ b/source/persistency/gdml/src/G4GDMLReadParamvol.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4GDMLReadParamvol.cc 77913 2013-11-29 10:59:07Z gcosmo $
+// $Id: G4GDMLReadParamvol.cc 90766 2015-06-09 10:13:41Z gcosmo $
 //
 // class G4GDMLReadParamvol Implementation
 //
@@ -37,6 +37,7 @@
 #include "G4PVParameterised.hh"
 #include "G4PVPlacement.hh"
 #include "G4VPhysicalVolume.hh"
+#include "G4UnitsTable.hh"
 
 G4GDMLReadParamvol::G4GDMLReadParamvol()
   : G4GDMLReadSetup(), parameterisation(0)
@@ -75,7 +76,7 @@ Box_dimensionsRead( const xercesc::DOMElement* const element,
       const G4String attName = Transcode(attribute->getName());
       const G4String attValue = Transcode(attribute->getValue());
 
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="x") { parameter.dimension[0] = eval.Evaluate(attValue); } else
       if (attName=="y") { parameter.dimension[1] = eval.Evaluate(attValue); } else
       if (attName=="z") { parameter.dimension[2] = eval.Evaluate(attValue); }
@@ -114,7 +115,7 @@ Trd_dimensionsRead( const xercesc::DOMElement* const element,
       const G4String attName = Transcode(attribute->getName());
       const G4String attValue = Transcode(attribute->getValue());
 
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="x1") { parameter.dimension[0]=eval.Evaluate(attValue); } else
       if (attName=="x2") { parameter.dimension[1]=eval.Evaluate(attValue); } else
       if (attName=="y1") { parameter.dimension[2]=eval.Evaluate(attValue); } else
@@ -159,9 +160,9 @@ Trap_dimensionsRead( const xercesc::DOMElement* const element,
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="lunit")
-        { lunit = eval.Evaluate(attValue); } else
+        { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="aunit")
-        { aunit = eval.Evaluate(attValue); } else
+        { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="z")
         { parameter.dimension[0] = eval.Evaluate(attValue); } else
       if (attName=="theta")
@@ -229,9 +230,9 @@ Tube_dimensionsRead( const xercesc::DOMElement* const element,
       const G4String attValue = Transcode(attribute->getValue());
     
       if (attName=="lunit")
-        { lunit = eval.Evaluate(attValue); } else
+        { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="aunit")
-        { aunit = eval.Evaluate(attValue); } else
+        { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="InR")
         { parameter.dimension[0] = eval.Evaluate(attValue); } else
       if (attName=="OutR")
@@ -281,9 +282,9 @@ Cone_dimensionsRead( const xercesc::DOMElement* const element,
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="lunit")
-        { lunit = eval.Evaluate(attValue); } else
+        { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="aunit")
-        { aunit = eval.Evaluate(attValue); } else
+        { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="rmin1")
         { parameter.dimension[0] = eval.Evaluate(attValue); } else
       if (attName=="rmax1")
@@ -339,9 +340,9 @@ Sphere_dimensionsRead( const xercesc::DOMElement* const element,
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="lunit")
-        { lunit = eval.Evaluate(attValue); } else
+        { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="aunit")
-        { aunit = eval.Evaluate(attValue); } else
+        { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="rmin")
         { parameter.dimension[0] = eval.Evaluate(attValue); } else
       if (attName=="rmax")
@@ -392,7 +393,7 @@ Orb_dimensionsRead( const xercesc::DOMElement* const element,
       const G4String attName = Transcode(attribute->getName());
       const G4String attValue = Transcode(attribute->getValue());
 
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="r") { parameter.dimension[0] = eval.Evaluate(attValue); }
    }
 
@@ -429,9 +430,9 @@ Torus_dimensionsRead( const xercesc::DOMElement* const element,
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="lunit")
-        { lunit = eval.Evaluate(attValue); } else
+        { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="aunit")
-        { aunit = eval.Evaluate(attValue); } else
+        { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="rmin")
         { parameter.dimension[0] = eval.Evaluate(attValue); } else
       if (attName=="rmax")
@@ -479,7 +480,7 @@ Ellipsoid_dimensionsRead( const xercesc::DOMElement* const element,
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="lunit")
-        { lunit = eval.Evaluate(attValue); } else
+        { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="ax")
         { parameter.dimension[0] = eval.Evaluate(attValue); } else
       if (attName=="by")
@@ -529,9 +530,9 @@ Para_dimensionsRead( const xercesc::DOMElement* const element,
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="lunit")
-        { lunit = eval.Evaluate(attValue); } else
+        { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="aunit")
-        { aunit = eval.Evaluate(attValue); } else
+        { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="x")
         { parameter.dimension[0] = eval.Evaluate(attValue); } else
       if (attName=="y")
@@ -584,9 +585,9 @@ Hype_dimensionsRead( const xercesc::DOMElement* const element,
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="lunit")
-        { lunit = eval.Evaluate(attValue); } else
+        { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="aunit")
-        { aunit = eval.Evaluate(attValue); } else
+        { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="rmin")
         { parameter.dimension[0] = eval.Evaluate(attValue); } else
       if (attName=="rmax")
@@ -638,9 +639,9 @@ Polycone_dimensionsRead( const xercesc::DOMElement* const element,
       const G4String attValue = Transcode(attribute->getValue());
     
       if (attName=="lunit")
-        { lunit = eval.Evaluate(attValue); } else
+        { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="aunit")
-        { aunit = eval.Evaluate(attValue); } else
+        { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="startPhi")
         { parameter.dimension[0] = eval.Evaluate(attValue); } else
       if (attName=="openPhi")
@@ -711,9 +712,9 @@ Polyhedra_dimensionsRead( const xercesc::DOMElement* const element,
       const G4String attValue = Transcode(attribute->getValue());
     
       if (attName=="lunit")
-        { lunit = eval.Evaluate(attValue); } else
+        { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="aunit")
-        { aunit = eval.Evaluate(attValue); } else
+        { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="startPhi")
         { parameter.dimension[0] = eval.Evaluate(attValue); } else
       if (attName=="openPhi")
diff --git a/source/persistency/gdml/src/G4GDMLReadSolids.cc b/source/persistency/gdml/src/G4GDMLReadSolids.cc
index ab619ae5280..9a71b173935 100644
--- a/source/persistency/gdml/src/G4GDMLReadSolids.cc
+++ b/source/persistency/gdml/src/G4GDMLReadSolids.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4GDMLReadSolids.cc 86814 2014-11-18 14:47:24Z gcosmo $
+// $Id: G4GDMLReadSolids.cc 90766 2015-06-09 10:13:41Z gcosmo $
 //
 // class G4GDMLReadSolids Implementation
 //
@@ -66,6 +66,7 @@
 #include "G4TwistedTubs.hh"
 #include "G4UnionSolid.hh"
 #include "G4OpticalSurface.hh"
+#include "G4UnitsTable.hh"
 #include "G4SurfaceProperty.hh"
 
 G4GDMLReadSolids::G4GDMLReadSolids() : G4GDMLReadMaterials()
@@ -206,7 +207,7 @@ void G4GDMLReadSolids::BoxRead(const xercesc::DOMElement* const boxElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="x") { x = eval.Evaluate(attValue); } else
       if (attName=="y") { y = eval.Evaluate(attValue); } else
       if (attName=="z") { z = eval.Evaluate(attValue); }
@@ -256,8 +257,8 @@ void G4GDMLReadSolids::ConeRead(const xercesc::DOMElement* const coneElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="rmin1") { rmin1 = eval.Evaluate(attValue); } else
       if (attName=="rmax1") { rmax1 = eval.Evaluate(attValue); } else
       if (attName=="rmin2") { rmin2 = eval.Evaluate(attValue); } else
@@ -312,7 +313,7 @@ ElconeRead(const xercesc::DOMElement* const elconeElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="dx") { dx = eval.Evaluate(attValue); } else
       if (attName=="dy") { dy = eval.Evaluate(attValue); } else
       if (attName=="zmax") { zmax = eval.Evaluate(attValue); } else
@@ -360,7 +361,7 @@ EllipsoidRead(const xercesc::DOMElement* const ellipsoidElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name  = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="ax") { ax = eval.Evaluate(attValue); } else
       if (attName=="by") { by = eval.Evaluate(attValue); } else
       if (attName=="cz") { cz = eval.Evaluate(attValue); } else
@@ -410,7 +411,7 @@ EltubeRead(const xercesc::DOMElement* const eltubeElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="dx") { dx = eval.Evaluate(attValue); } else
       if (attName=="dy") { dy = eval.Evaluate(attValue); } else
       if (attName=="dz") { dz = eval.Evaluate(attValue); }
@@ -452,7 +453,7 @@ void G4GDMLReadSolids::XtruRead(const xercesc::DOMElement* const xtruElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); }
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); }
    }
 
    std::vector<G4TwoVector> twoDimVertexList;
@@ -517,8 +518,8 @@ void G4GDMLReadSolids::HypeRead(const xercesc::DOMElement* const hypeElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="rmin") { rmin = eval.Evaluate(attValue); } else
       if (attName=="rmax") { rmax = eval.Evaluate(attValue); } else
       if (attName=="inst") { inst = eval.Evaluate(attValue); } else
@@ -705,7 +706,7 @@ void G4GDMLReadSolids::OrbRead(const xercesc::DOMElement* const orbElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="r") { r = eval.Evaluate(attValue); }
    }
 
@@ -750,8 +751,8 @@ void G4GDMLReadSolids::ParaRead(const xercesc::DOMElement* const paraElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="x") { x = eval.Evaluate(attValue); } else
       if (attName=="y") { y = eval.Evaluate(attValue); } else
       if (attName=="z") { z = eval.Evaluate(attValue); } else
@@ -803,7 +804,7 @@ ParaboloidRead(const xercesc::DOMElement* const paraElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name")  { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="rlo")   { rlo =  eval.Evaluate(attValue); } else
       if (attName=="rhi")   { rhi = eval.Evaluate(attValue); } else
       if (attName=="dz")    { dz = eval.Evaluate(attValue); } 
@@ -849,8 +850,8 @@ PolyconeRead(const xercesc::DOMElement* const polyconeElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="startphi") { startphi = eval.Evaluate(attValue); }else
       if (attName=="deltaphi") { deltaphi = eval.Evaluate(attValue); }
    }
@@ -932,8 +933,8 @@ GenericPolyconeRead(const xercesc::DOMElement* const polyconeElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="startphi") { startphi = eval.Evaluate(attValue); }else
       if (attName=="deltaphi") { deltaphi = eval.Evaluate(attValue); }
    }
@@ -1011,8 +1012,8 @@ PolyhedraRead(const xercesc::DOMElement* const polyhedraElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="startphi") { startphi = eval.Evaluate(attValue); } else
       if (attName=="deltaphi") { deltaphi = eval.Evaluate(attValue); } else
       if (attName=="numsides") { numsides = eval.EvaluateInteger(attValue); }
@@ -1096,8 +1097,8 @@ GenericPolyhedraRead(const xercesc::DOMElement* const polyhedraElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="startphi") { startphi = eval.Evaluate(attValue); } else
       if (attName=="deltaphi") { deltaphi = eval.Evaluate(attValue); } else
       if (attName=="numsides") { numsides = eval.EvaluateInteger(attValue); }
@@ -1186,7 +1187,7 @@ QuadrangularRead(const xercesc::DOMElement* const quadrangularElement)
       if (attName=="vertex4")
         { vertex4 = GetPosition(GenerateName(attValue)); } else
       if (attName=="lunit")
-        { lunit = eval.Evaluate(attValue); } else
+        { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="type")
         { if (attValue=="RELATIVE") { type = RELATIVE; } }
    }
@@ -1230,8 +1231,8 @@ ReflectedSolidRead(const xercesc::DOMElement* const reflectedSolidElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="solid") { solid = GenerateName(attValue); } else
       if (attName=="sx") { scale.setX(eval.Evaluate(attValue)); } else
       if (attName=="sy") { scale.setY(eval.Evaluate(attValue)); } else
@@ -1333,8 +1334,8 @@ SphereRead(const xercesc::DOMElement* const sphereElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="rmin") { rmin = eval.Evaluate(attValue); } else
       if (attName=="rmax") { rmax = eval.Evaluate(attValue); } else
       if (attName=="startphi") { startphi = eval.Evaluate(attValue); } else
@@ -1445,7 +1446,7 @@ void G4GDMLReadSolids::TetRead(const xercesc::DOMElement* const tetElement)
       if (attName=="name")
         { name = GenerateName(attValue); } else
       if (attName=="lunit")
-        { lunit = eval.Evaluate(attValue); } else
+        { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="vertex1")
         { vertex1 = GetPosition(GenerateName(attValue)); } else
       if (attName=="vertex2")
@@ -1494,8 +1495,8 @@ void G4GDMLReadSolids::TorusRead(const xercesc::DOMElement* const torusElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="rmin") { rmin = eval.Evaluate(attValue); } else
       if (attName=="rmax") { rmax = eval.Evaluate(attValue); } else
       if (attName=="rtor") { rtor = eval.Evaluate(attValue); } else
@@ -1546,7 +1547,7 @@ GenTrapRead(const xercesc::DOMElement* const gtrapElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="dz") { dz = eval.Evaluate(attValue); } else
       if (attName=="v1x") { v1x = eval.Evaluate(attValue); } else
       if (attName=="v1y") { v1y = eval.Evaluate(attValue); } else
@@ -1620,8 +1621,8 @@ void G4GDMLReadSolids::TrapRead(const xercesc::DOMElement* const trapElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="z") { z = eval.Evaluate(attValue); } else
       if (attName=="theta") { theta = eval.Evaluate(attValue); } else
       if (attName=="phi") { phi = eval.Evaluate(attValue); } else
@@ -1683,7 +1684,7 @@ void G4GDMLReadSolids::TrdRead(const xercesc::DOMElement* const trdElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="x1") { x1 = eval.Evaluate(attValue); } else
       if (attName=="x2") { x2 = eval.Evaluate(attValue); } else
       if (attName=="y1") { y1 = eval.Evaluate(attValue); } else
@@ -1739,7 +1740,7 @@ TriangularRead(const xercesc::DOMElement* const triangularElement)
       if (attName=="vertex3")
         { vertex3 = GetPosition(GenerateName(attValue)); } else
       if (attName=="lunit")
-        { lunit = eval.Evaluate(attValue); } else
+        { lunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="type")
         { if (attValue=="RELATIVE") { type = RELATIVE; } }
    }
@@ -1782,8 +1783,8 @@ void G4GDMLReadSolids::TubeRead(const xercesc::DOMElement* const tubeElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="rmin") { rmin = eval.Evaluate(attValue); } else
       if (attName=="rmax") { rmax = eval.Evaluate(attValue); } else
       if (attName=="z") { z = eval.Evaluate(attValue); } else
@@ -1837,8 +1838,8 @@ void G4GDMLReadSolids::CutTubeRead(const xercesc::DOMElement* const cuttubeEleme
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="rmin") { rmin = eval.Evaluate(attValue); } else
       if (attName=="rmax") { rmax = eval.Evaluate(attValue); } else
       if (attName=="z") { z = eval.Evaluate(attValue); } else
@@ -1897,8 +1898,8 @@ TwistedboxRead(const xercesc::DOMElement* const twistedboxElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="PhiTwist") { PhiTwist = eval.Evaluate(attValue); } else
       if (attName=="x") { x = eval.Evaluate(attValue); } else
       if (attName=="y") { y = eval.Evaluate(attValue); } else
@@ -1955,8 +1956,8 @@ TwistedtrapRead(const xercesc::DOMElement* const twistedtrapElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="PhiTwist") { PhiTwist = eval.Evaluate(attValue); } else
       if (attName=="z") { z = eval.Evaluate(attValue); } else
       if (attName=="Theta") { Theta = eval.Evaluate(attValue); } else
@@ -2023,8 +2024,8 @@ TwistedtrdRead(const xercesc::DOMElement* const twistedtrdElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="x1") { x1 = eval.Evaluate(attValue); } else
       if (attName=="x2") { x2 = eval.Evaluate(attValue); } else
       if (attName=="y1") { y1 = eval.Evaluate(attValue); } else
@@ -2079,8 +2080,8 @@ TwistedtubsRead(const xercesc::DOMElement* const twistedtubsElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = GenerateName(attValue); } else
-      if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else
-      if (attName=="aunit") { aunit = eval.Evaluate(attValue); } else
+      if (attName=="lunit") { lunit = G4UnitDefinition::GetValueOf(attValue); } else
+      if (attName=="aunit") { aunit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="twistedangle") { twistedangle=eval.Evaluate(attValue); } else
       if (attName=="endinnerrad")  { endinnerrad=eval.Evaluate(attValue);  } else
       if (attName=="endouterrad")  { endouterrad=eval.Evaluate(attValue);  } else
@@ -2244,8 +2245,9 @@ OpticalSurfaceRead(const xercesc::DOMElement* const opticalsurfaceElement)
    G4SurfaceType type;   
    
    if ((smodel=="glisur") || (smodel=="0")) { model = glisur; } else
-   if ((smodel=="unified") || (smodel=="1")) { model = unified; }
-   else { model = LUT; }
+   if ((smodel=="unified") || (smodel=="1")) { model = unified; } else
+   if ((smodel=="LUT") || (smodel=="2")) { model = LUT; }
+   else { model = dichroic; }
 
    if ((sfinish=="polished") || (sfinish=="0"))
       { finish = polished; } else
@@ -2313,7 +2315,9 @@ OpticalSurfaceRead(const xercesc::DOMElement* const opticalsurfaceElement)
       { type = dielectric_dielectric; } else
    if ((stype=="dielectric_LUT") || (stype=="2"))
       { type = dielectric_LUT; } else
-   if ((stype=="firsov") || (stype=="3"))
+   if ((stype=="dielectric_dichroic") || (stype=="3"))
+      { type = dielectric_dichroic; } else
+   if ((stype=="firsov") || (stype=="4"))
       { type = firsov; }
    else { type = x_ray; }
 
diff --git a/source/persistency/gdml/src/G4GDMLReadStructure.cc b/source/persistency/gdml/src/G4GDMLReadStructure.cc
index dbeac308da8..606c63115c2 100644
--- a/source/persistency/gdml/src/G4GDMLReadStructure.cc
+++ b/source/persistency/gdml/src/G4GDMLReadStructure.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4GDMLReadStructure.cc 68053 2013-03-13 14:39:51Z gcosmo $
+// $Id: G4GDMLReadStructure.cc 90777 2015-06-09 14:36:30Z gcosmo $
 //
 // class G4GDMLReadStructure Implementation
 //
@@ -33,6 +33,7 @@
 
 #include "G4GDMLReadStructure.hh"
 
+#include "G4UnitsTable.hh"
 #include "G4LogicalVolume.hh"
 #include "G4VPhysicalVolume.hh"
 #include "G4PVPlacement.hh"
@@ -46,7 +47,7 @@
 #include "G4VisAttributes.hh"
 
 G4GDMLReadStructure::G4GDMLReadStructure()
-  : G4GDMLReadParamvol(), pMotherLogical(0)
+  : G4GDMLReadParamvol(), pMotherLogical(0), strip(false)
 {
 }
 
@@ -190,7 +191,7 @@ DivisionvolRead(const xercesc::DOMElement* const divisionvolElement)
       const G4String attValue = Transcode(attribute->getValue());
 
       if (attName=="name") { name = attValue; } else
-      if (attName=="unit") { unit = eval.Evaluate(attValue); } else
+      if (attName=="unit") { unit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="width") { width = eval.Evaluate(attValue); } else
       if (attName=="offset") { offset = eval.Evaluate(attValue); } else
       if (attName=="number") { number = eval.EvaluateInteger(attValue); } else
@@ -582,7 +583,7 @@ QuantityRead(const xercesc::DOMElement* const readElement)
       const G4String attName = Transcode(attribute->getName());
       const G4String attValue = Transcode(attribute->getValue());
 
-      if (attName=="unit") { unit = eval.Evaluate(attValue); } else
+      if (attName=="unit") { unit = G4UnitDefinition::GetValueOf(attValue); } else
       if (attName=="value"){ value= eval.Evaluate(attValue); } 
    }
 
@@ -901,8 +902,9 @@ GetAuxMap() const
 
 G4VPhysicalVolume* G4GDMLReadStructure::
 GetWorldVolume(const G4String& setupName)
-{    
-   G4LogicalVolume* volume = GetVolume(Strip(GetSetup(setupName)));
+{
+   G4LogicalVolume* volume =
+     GetVolume(GenerateName(GetSetup(setupName), dostrip));
    volume->SetVisAttributes(G4VisAttributes::Invisible);
 
    G4VPhysicalVolume* pvWorld = 0;
diff --git a/source/persistency/gdml/src/G4GDMLWriteSolids.cc b/source/persistency/gdml/src/G4GDMLWriteSolids.cc
index 54dfc7ea46d..4efcb82a9e6 100644
--- a/source/persistency/gdml/src/G4GDMLWriteSolids.cc
+++ b/source/persistency/gdml/src/G4GDMLWriteSolids.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4GDMLWriteSolids.cc 87077 2014-11-24 15:29:00Z gcosmo $
+// $Id: G4GDMLWriteSolids.cc 90766 2015-06-09 10:13:41Z gcosmo $
 //
 // class G4GDMLWriteSolids Implementation
 //
@@ -1029,7 +1029,7 @@ void G4GDMLWriteSolids::AddSolid(const G4VSolid* const solidPtr)
    if (const G4BooleanSolid* const booleanPtr
      = dynamic_cast<const G4BooleanSolid*>(solidPtr))
      { BooleanWrite(solidsElement,booleanPtr); } else
-   if (solidPtr->GetEntityType()=="G4MultipleUnion")
+   if (solidPtr->GetEntityType()=="G4MultiUnion")
      { const G4MultiUnion* const munionPtr
      = static_cast<const G4MultiUnion*>(solidPtr);
        MultiUnionWrite(solidsElement,munionPtr); } else
diff --git a/source/physics_lists/constructors/gamma_lepto_nuclear/History b/source/physics_lists/constructors/gamma_lepto_nuclear/History
index d6560dd4465..18f6ae969d9 100644
--- a/source/physics_lists/constructors/gamma_lepto_nuclear/History
+++ b/source/physics_lists/constructors/gamma_lepto_nuclear/History
@@ -1,4 +1,4 @@
-$Id: History 81364 2014-05-27 12:55:46Z gcosmo $
+$Id: History 91003 2015-06-15 08:09:15Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -14,6 +14,13 @@ introduced in the code and keeptrack of all tags.
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+08-June-2015, V.Ivanchenko              (phys-ctor-glnuclear-V10-00-06)
+- G4EmExtraPhysics, G4EmMessenger - fixed problem #1752; clean up
+    messenger and add new UI commands
+
+06-April-2015, A. Dotti
+- Coverity fixes
+
 27-May-2013, V.Ivanchenko               (phys-ctor-glnuclear-V10-00-05)
 - G4BertiniElectroNuclearBuilder - removed double deletion
 
diff --git a/source/physics_lists/constructors/gamma_lepto_nuclear/include/G4EmExtraPhysics.hh b/source/physics_lists/constructors/gamma_lepto_nuclear/include/G4EmExtraPhysics.hh
index 55ab2c30908..6ee3ed46268 100644
--- a/source/physics_lists/constructors/gamma_lepto_nuclear/include/G4EmExtraPhysics.hh
+++ b/source/physics_lists/constructors/gamma_lepto_nuclear/include/G4EmExtraPhysics.hh
@@ -47,12 +47,8 @@
 
 #include "G4EmMessenger.hh"
 
-#include "G4SynchrotronRadiation.hh"
-#include "G4BertiniElectroNuclearBuilder.hh"
-#include "G4MuonNuclearProcess.hh"
-#include "G4MuonVDNuclearModel.hh"
-
 class G4BertiniElectroNuclearBuilder;
+class G4SynchrotronRadiation;
 
 class G4EmExtraPhysics : public G4VPhysicsConstructor
 {
@@ -68,26 +64,22 @@ public:
   void ConstructParticle();
   void ConstructProcess();
 
-  void Synch(G4String & aState);
-  void GammaNuclear(G4String & aState);
-  void MuonNuclear(G4String & aState);
+  void Synch(G4bool val);
+  void SynchAll(G4bool val);
+  void GammaNuclear(G4bool val);
+  void MuonNuclear(G4bool val);
 
 private:
 
-  void BuildSynch();
-  void BuildGammaNuclear();
-  void BuildMuonNuclear();
+  static G4bool gnActivated;
+  static G4bool munActivated;
+  static G4bool synActivated;
+  static G4bool synActivatedForAll;
 
-  static G4ThreadLocal G4bool wasBuilt;
-  static G4ThreadLocal G4bool gnActivated;
-  static G4ThreadLocal G4bool munActivated;
-  static G4ThreadLocal G4bool synActivated;
-  static G4ThreadLocal G4bool synchOn;
-  static G4ThreadLocal G4bool gammNucOn;
-  static G4ThreadLocal G4bool muNucOn;
+  static G4ThreadLocal G4BertiniElectroNuclearBuilder* theGNPhysics;
+  static G4ThreadLocal G4SynchrotronRadiation* theSynchRad;
 
-  G4BertiniElectroNuclearBuilder* theGNPhysics;
-  G4EmMessenger*           theMessenger;
+  G4EmMessenger* theMessenger;
   G4int verbose;
 };
 
diff --git a/source/physics_lists/constructors/gamma_lepto_nuclear/include/G4EmMessenger.hh b/source/physics_lists/constructors/gamma_lepto_nuclear/include/G4EmMessenger.hh
index 43bf03cc05a..a72ffb1ea8c 100644
--- a/source/physics_lists/constructors/gamma_lepto_nuclear/include/G4EmMessenger.hh
+++ b/source/physics_lists/constructors/gamma_lepto_nuclear/include/G4EmMessenger.hh
@@ -45,7 +45,7 @@ class G4EmExtraPhysics;
 
 #include "G4UImessenger.hh"
 #include "G4UIdirectory.hh"
-#include "G4UIcmdWithAString.hh"
+#include "G4UIcmdWithABool.hh"
 
 class G4EmMessenger: public G4UImessenger
 {
@@ -57,9 +57,10 @@ public:
 
 private:
   G4EmExtraPhysics*   theB;
-  G4UIcmdWithAString* theSynch;
-  G4UIcmdWithAString* theGN;
-  G4UIcmdWithAString* theMUN;
+  G4UIcmdWithABool*   theSynch;
+  G4UIcmdWithABool*   theSynchAll;
+  G4UIcmdWithABool*   theGN;
+  G4UIcmdWithABool*   theMUN;
   G4UIdirectory*      aDir1;
   G4UIdirectory*      aDir2;
 };
diff --git a/source/physics_lists/constructors/gamma_lepto_nuclear/src/G4EmExtraPhysics.cc b/source/physics_lists/constructors/gamma_lepto_nuclear/src/G4EmExtraPhysics.cc
index 7ffa68b0d30..8a22a8e1614 100644
--- a/source/physics_lists/constructors/gamma_lepto_nuclear/src/G4EmExtraPhysics.cc
+++ b/source/physics_lists/constructors/gamma_lepto_nuclear/src/G4EmExtraPhysics.cc
@@ -53,37 +53,34 @@
 #include "G4Positron.hh"
 #include "G4MuonPlus.hh"
 #include "G4MuonMinus.hh"
-#include "G4ProcessManager.hh"
+
+#include "G4SynchrotronRadiation.hh"
+#include "G4BertiniElectroNuclearBuilder.hh"
+#include "G4MuonNuclearProcess.hh"
+#include "G4MuonVDNuclearModel.hh"
+
+#include "G4PhysicsListHelper.hh"
 #include "G4BuilderType.hh"
 #include "G4AutoDelete.hh"
-
+ 
 // factory
 #include "G4PhysicsConstructorFactory.hh"
 //
 G4_DECLARE_PHYSCONSTR_FACTORY(G4EmExtraPhysics);
 
-G4ThreadLocal G4bool G4EmExtraPhysics::wasBuilt     = false;
-G4ThreadLocal G4bool G4EmExtraPhysics::munActivated = false;
-G4ThreadLocal G4bool G4EmExtraPhysics::gnActivated  = false;
-G4ThreadLocal G4bool G4EmExtraPhysics::synActivated = false;
-G4ThreadLocal G4bool G4EmExtraPhysics::synchOn      = false;
-G4ThreadLocal G4bool G4EmExtraPhysics::gammNucOn    = true;
-G4ThreadLocal G4bool G4EmExtraPhysics::muNucOn      = true;
-
-namespace {
-    //Thread-private instance of a messenger.
-    //Needed because this is a shared instance,
-    //but threads need access to UI commands.
-    G4ThreadLocal G4EmMessenger* theLocalMessenger = 0;
-}
+G4bool G4EmExtraPhysics::gnActivated  = true;
+G4bool G4EmExtraPhysics::munActivated = true;
+G4bool G4EmExtraPhysics::synActivated = false;
+G4bool G4EmExtraPhysics::synActivatedForAll = false;
+
+G4ThreadLocal G4BertiniElectroNuclearBuilder* G4EmExtraPhysics::theGNPhysics=0;
+G4ThreadLocal G4SynchrotronRadiation* G4EmExtraPhysics::theSynchRad=0;
 
 G4EmExtraPhysics::G4EmExtraPhysics(G4int ver): 
   G4VPhysicsConstructor("G4GammaLeptoNuclearPhys"),
   verbose(ver)
 {
-  theGNPhysics = 0;
   theMessenger = new G4EmMessenger(this);
-  theLocalMessenger = theMessenger;
   SetPhysicsType(bEmExtra);
   if(verbose > 1) G4cout << "### G4EmExtraPhysics" << G4endl;
 }
@@ -100,31 +97,28 @@ G4EmExtraPhysics::G4EmExtraPhysics(const G4String&):
 G4EmExtraPhysics::~G4EmExtraPhysics()
 {
   delete theMessenger;
-  delete theGNPhysics;
+  theMessenger = 0;
 }
 
-void G4EmExtraPhysics::Synch(G4String & newState)
+void G4EmExtraPhysics::Synch(G4bool val)
 {
-  if(newState == "on" || newState == "ON") {
-    synchOn = true;
-    if(wasBuilt) BuildSynch();
-  } else synchOn = false;
+  synActivated = val;
 }
 
-void G4EmExtraPhysics::GammaNuclear(G4String & newState)
+void G4EmExtraPhysics::SynchAll(G4bool val)
 {
-  if(newState == "on" || newState == "ON") {
-    gammNucOn = true;
-    if(wasBuilt) BuildGammaNuclear();
-  } else  gammNucOn = false;
+  synActivatedForAll = val;
+  if(synActivatedForAll) { synActivated = true; }
 }
 
-void G4EmExtraPhysics::MuonNuclear(G4String & newState)
+void G4EmExtraPhysics::GammaNuclear(G4bool val)
 {
-  if(newState == "on" || newState == "ON") {
-    muNucOn = true;
-    if(wasBuilt) BuildMuonNuclear();
-  } else muNucOn = false;
+  gnActivated = val;
+}
+
+void G4EmExtraPhysics::MuonNuclear(G4bool val)
+{
+  munActivated = val;
 }
 
 void G4EmExtraPhysics::ConstructParticle()
@@ -138,56 +132,44 @@ void G4EmExtraPhysics::ConstructParticle()
 
 void G4EmExtraPhysics::ConstructProcess()
 {
-  if(wasBuilt) return;
-  wasBuilt = true;
-  if ( theLocalMessenger == 0 ) {
-    //This thread needs a private instence of the messenger
-    theLocalMessenger = new G4EmMessenger(this);
-    G4AutoDelete::Register(theLocalMessenger); 
-    //This is tricky. Messenger should be safely deleted at the end of the job
+  G4ParticleDefinition* electron = G4Electron::Electron();
+  G4ParticleDefinition* positron = G4Positron::Positron();
+  G4ParticleDefinition* muonplus = G4MuonPlus::MuonPlus();
+  G4ParticleDefinition* muonminus = G4MuonMinus::MuonMinus();
+
+  G4PhysicsListHelper* ph = G4PhysicsListHelper::GetPhysicsListHelper();
+  if(gnActivated) {
+    theGNPhysics = new G4BertiniElectroNuclearBuilder();
+    theGNPhysics->Build();
+    G4AutoDelete::Register(theGNPhysics);
+  }
+  if(munActivated) {
+    G4MuonNuclearProcess* muNucProcess = new G4MuonNuclearProcess();
+    G4MuonVDNuclearModel* muNucModel = new G4MuonVDNuclearModel();
+    muNucProcess->RegisterMe(muNucModel);
+    ph->RegisterProcess( muNucProcess, muonplus);
+    ph->RegisterProcess( muNucProcess, muonminus);
+  }
+  if(synActivated) {
+    theSynchRad = new G4SynchrotronRadiation();
+    ph->RegisterProcess( theSynchRad, electron);
+    ph->RegisterProcess( theSynchRad, positron);
+    G4AutoDelete::Register(theSynchRad);
+    if(synActivatedForAll) {
+      aParticleIterator->reset();
+      G4ParticleDefinition* particle=0;
+
+      while( (*aParticleIterator)() ) {
+	particle = aParticleIterator->value();
+	if( particle->GetPDGStable() && particle->GetPDGCharge() != 0.0) { 
+	  if(verbose > 1) {
+	    G4cout << "### G4SynchrotronRadiation for " 
+		   << particle->GetParticleName() << G4endl;
+	  }
+	  ph->RegisterProcess( theSynchRad, particle);
+	}
+      }
+    }
   }
-  if (synchOn)   BuildSynch();
-  if (gammNucOn) BuildGammaNuclear();
-  if (muNucOn)   BuildMuonNuclear();
-}
-
-void G4EmExtraPhysics::BuildMuonNuclear()
-{
-  if(munActivated) return;
-  munActivated = true;
-  G4ProcessManager * pManager = 0;
-
-  G4MuonNuclearProcess* muNucProcess = new G4MuonNuclearProcess();
-  G4MuonVDNuclearModel* muNucModel = new G4MuonVDNuclearModel();
-  muNucProcess->RegisterMe(muNucModel);
-
-  pManager = G4MuonPlus::MuonPlus()->GetProcessManager();
-  pManager->AddDiscreteProcess(muNucProcess);
-
-  pManager = G4MuonMinus::MuonMinus()->GetProcessManager();
-  pManager->AddDiscreteProcess(muNucProcess);
-}
-
-void G4EmExtraPhysics::BuildGammaNuclear()
-{
-  if(gnActivated) return;
-  gnActivated = true;
-
-  theGNPhysics = new G4BertiniElectroNuclearBuilder();
-  theGNPhysics->Build();
 }
 
-void G4EmExtraPhysics::BuildSynch()
-{
-  if(synActivated) return;
-  synActivated = true;
-  G4ProcessManager * pManager = 0;
-
-  pManager = G4Electron::Electron()->GetProcessManager();
-  G4SynchrotronRadiation* theElectronSynch = new G4SynchrotronRadiation();
-  pManager->AddDiscreteProcess(theElectronSynch);
-
-  pManager = G4Positron::Positron()->GetProcessManager();
-  G4SynchrotronRadiation* thePositronSynch = new G4SynchrotronRadiation();
-  pManager->AddDiscreteProcess(thePositronSynch);
-}
diff --git a/source/physics_lists/constructors/gamma_lepto_nuclear/src/G4EmMessenger.cc b/source/physics_lists/constructors/gamma_lepto_nuclear/src/G4EmMessenger.cc
index a888023c8c9..0dec83e776d 100644
--- a/source/physics_lists/constructors/gamma_lepto_nuclear/src/G4EmMessenger.cc
+++ b/source/physics_lists/constructors/gamma_lepto_nuclear/src/G4EmMessenger.cc
@@ -52,41 +52,38 @@
 G4EmMessenger::G4EmMessenger(G4EmExtraPhysics* ab)
 {
   theB = ab;
-  aDir1 = new G4UIdirectory("/physics_engine/");
+  aDir1 = new G4UIdirectory("/physics_lists/");
   aDir1->SetGuidance("commands related to the physics simulation engine.");
 
   // general stuff.
-  aDir2 = new G4UIdirectory("/physics_engine/tailor/");
+  aDir2 = new G4UIdirectory("/physics_lists/em/");
   aDir2->SetGuidance("tailoring the processes");
 
   // command for synchrotron radiation.
-  theSynch = new G4UIcmdWithAString("/physics_engine/tailor/SyncRadiation",this);
+  theSynch = new G4UIcmdWithABool("/physics_lists/em/SyncRadiation",this);
   theSynch->SetGuidance("Switching on/off synchrotron radiation.");
-  theSynch->SetParameterName("status",false);
-  theSynch->SetCandidates("on off");
-  theSynch->SetDefaultValue("off");
-  theSynch->AvailableForStates(G4State_PreInit,G4State_Idle);
+  theSynch->AvailableForStates(G4State_PreInit);
+
+  // command for synchrotron radiation.
+  theSynchAll = new G4UIcmdWithABool("/physics_lists/em/SyncRadiationAll",this);
+  theSynchAll->SetGuidance("Switching on/off synchrotron radiation for all charged.");
+  theSynchAll->AvailableForStates(G4State_PreInit);
 
   // command for gamma nuclear physics.
-  theGN = new G4UIcmdWithAString("/physics_engine/tailor/GammaNuclear",this);
+  theGN = new G4UIcmdWithABool("/physics_lists/em/GammaNuclear",this);
   theGN->SetGuidance("Switching on gamma nuclear physics.");
-  theGN->SetParameterName("status",false);
-  theGN->SetCandidates("on off");
-  theGN->SetDefaultValue("on");
-  theGN->AvailableForStates(G4State_PreInit,G4State_Idle);
+  theGN->AvailableForStates(G4State_PreInit);
 
   // command for muon nuclear physics.
-  theMUN = new G4UIcmdWithAString("/physics_engine/tailor/MuonNuclear",this);
+  theMUN = new G4UIcmdWithABool("/physics_lists/em/MuonNuclear",this);
   theMUN->SetGuidance("Switching on muon nuclear physics.");
-  theMUN->SetParameterName("status",false);
-  theMUN->SetCandidates("on off");
-  theMUN->SetDefaultValue("off");
-  theMUN->AvailableForStates(G4State_PreInit,G4State_Idle);
+  theMUN->AvailableForStates(G4State_PreInit);
 }
 
 G4EmMessenger::~G4EmMessenger()
 {
   delete theSynch;
+  delete theSynchAll;
   delete theGN;
   delete theMUN;
   delete aDir1;
@@ -95,7 +92,8 @@ G4EmMessenger::~G4EmMessenger()
 
 void G4EmMessenger::SetNewValue(G4UIcommand* aComm, G4String aS)
 {
-  if(aComm==theSynch) theB->Synch(aS);
-  if(aComm==theGN)    theB->GammaNuclear(aS);
-  if(aComm==theMUN)   theB->MuonNuclear(aS);
+  if(aComm==theSynch)    theB->Synch(theSynch->GetNewBoolValue(aS));
+  if(aComm==theSynchAll) theB->SynchAll(theSynchAll->GetNewBoolValue(aS));
+  if(aComm==theGN)       theB->GammaNuclear(theGN->GetNewBoolValue(aS));
+  if(aComm==theMUN)      theB->MuonNuclear(theMUN->GetNewBoolValue(aS));
 }
diff --git a/source/processes/electromagnetic/dna/History b/source/processes/electromagnetic/dna/History
index ade542a0c71..db2be169ac3 100644
--- a/source/processes/electromagnetic/dna/History
+++ b/source/processes/electromagnetic/dna/History
@@ -14,6 +14,26 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------*
 
+05-06-2015, MK,  tag emdna-V10-00-66
+- G4IT: remove a "virtual" keyword when accessing position
+
+12-02-2015, MK,  tag emdna-V10-00-65
+- G4ITReaction: Remove "gAll" introduced for testing
+- G4ITModelProcessor: Remove "assert" introduced for testing
+- G4ITTransportation: Remove extra parenthesis in the undef of PrepareState 
+
+11-02-2015, MK
+- Fix reproductibility of the chemistry module
+- Fix the "no reaction table found" bug: G4ITReaction class created
+- G4shared_ptr refers to std::shared_ptr when C++11 is activated
+
+16-01-2015, SI
+- added Fe56 into G4DNARuddIonisationExtendedModel
+
+14-12-2014, MK
+- BornIonisation: correct array cleaning
+- ScreenRutherfordElastic: correct retrieval of water density 
+
 12-12-2014, G.Cosmo,  tag emdna-V10-00-64
 - Explicitly initialise to zero TLS pointers in G4KDNode.hh and G4ITFinder.icc
   to allow for compilation on Linux/clang-3.5.
diff --git a/source/processes/electromagnetic/dna/management/include/G4IT.hh b/source/processes/electromagnetic/dna/management/include/G4IT.hh
index eae9f4687e8..5f3eed98f2a 100644
--- a/source/processes/electromagnetic/dna/management/include/G4IT.hh
+++ b/source/processes/electromagnetic/dna/management/include/G4IT.hh
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4IT.hh 87061 2014-11-24 11:43:34Z gcosmo $
+// $Id: G4IT.hh 90900 2015-06-11 08:06:17Z gcosmo $
 //
 // Author: Mathieu Karamitros, kara@cenbg.in2p3.fr
 
@@ -126,7 +126,7 @@ public:
   inline const G4Track* GetTrack() const;
 
   virtual const G4ThreeVector& GetPosition() const;
-  virtual const double& operator[](int i) const;
+  double operator[](int i) const;
 
   void RecordCurrentPositionNTime();
 
diff --git a/source/processes/electromagnetic/dna/management/include/G4ITModelProcessor.hh b/source/processes/electromagnetic/dna/management/include/G4ITModelProcessor.hh
index 3642f01aae3..6a118bd4d84 100644
--- a/source/processes/electromagnetic/dna/management/include/G4ITModelProcessor.hh
+++ b/source/processes/electromagnetic/dna/management/include/G4ITModelProcessor.hh
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4ITModelProcessor.hh 87375 2014-12-02 08:17:28Z gcosmo $
+// $Id: G4ITModelProcessor.hh 90769 2015-06-09 10:33:41Z gcosmo $
 //
 // Author: Mathieu Karamitros, kara@cenbg.in2p3.fr
 
@@ -55,6 +55,18 @@
 class G4VITTimeStepComputer;
 class G4VITReactionProcess;
 class G4ITModelHandler;
+class G4ITReactionSet;
+
+//#ifndef compTrackPerID__
+//#define compTrackPerID__
+//  struct compTrackPerID
+//  {
+//    bool operator()(G4Track* rhs, G4Track* lhs) const
+//    {
+//      return rhs->GetTrackID() < lhs->GetTrackID();
+//    }
+//  };
+//#endif
 
 /**
  * The G4ITModelProcessor will call the two processes defined in G4VITModel.
@@ -93,7 +105,7 @@ public:
 
   //____________________________________________________________
   // Reaction process part
-  void FindReaction(std::map<G4Track*, G4TrackVectorHandle>*,
+  void FindReaction(G4ITReactionSet* reactionSet,
                     const double currentStepTime,
                     const double previousStepTime,
                     const bool reachedUserStepTimeLimit);
diff --git a/source/processes/electromagnetic/dna/management/include/G4ITReaction.hh b/source/processes/electromagnetic/dna/management/include/G4ITReaction.hh
new file mode 100644
index 00000000000..f142a3a243b
--- /dev/null
+++ b/source/processes/electromagnetic/dna/management/include/G4ITReaction.hh
@@ -0,0 +1,240 @@
+/*
+ * G4ITReactionInfo.hh
+ *
+ *  Created on: 1 févr. 2015
+ *      Author: matkara
+ */
+
+#ifndef G4ITREACTIONINFO_HH_
+#define G4ITREACTIONINFO_HH_
+
+#include "tls.hh"
+#include <list>
+#include <map>
+#include <G4memory.hh>
+#include "G4Track.hh"
+#include <set>
+
+typedef G4shared_ptr< std::vector<G4Track*> > G4TrackVectorHandle;
+
+#ifndef compTrackPerID__
+#define compTrackPerID__
+  struct compTrackPerID
+  {
+    bool operator()(G4Track* rhs, G4Track* lhs) const
+    {
+      return rhs->GetTrackID() < lhs->GetTrackID();
+    }
+  };
+#endif
+
+class G4Track;
+class G4ITReactionSet;
+class G4ITReactionPerTrack;
+class G4ITReaction;
+typedef G4shared_ptr<G4ITReaction> G4ITReactionPtr;
+typedef G4shared_ptr<G4ITReactionPerTrack> G4ITReactionPerTrackPtr;
+
+typedef std::list<G4ITReactionPtr> G4ITReactionList;
+typedef std::map<G4Track*,
+                 G4ITReactionPerTrackPtr,
+                 compTrackPerID> G4ITReactionPerTrackMap;
+typedef std::list<std::pair<G4ITReactionPerTrackPtr,
+                            G4ITReactionList::iterator> > G4ReactionPerTrackIt;
+
+class G4ITReaction : public G4enable_shared_from_this<G4ITReaction>
+{
+  G4ITReaction(double time, G4Track*, G4Track*);
+public:
+  static G4ITReactionPtr New(double time, G4Track* trackA, G4Track* trackB)
+  {
+    return G4ITReactionPtr(new G4ITReaction(time, trackA, trackB));
+  }
+  virtual ~G4ITReaction();
+
+  G4Track* GetReactant(G4Track* trackA)
+  {
+    if(fReactants.first != trackA) return fReactants.first;
+    return fReactants.second;
+  }
+
+  std::pair<G4Track*, G4Track*> GetReactants() const{
+    return fReactants;
+  }
+
+  void RemoveMe(G4ITReactionSet* reactionSet);
+
+  void AddIterator(G4ITReactionPerTrackPtr reactionPerTrack,
+                   G4ITReactionList::iterator it)
+  {
+    fReactionPerTrack.push_back(std::make_pair(reactionPerTrack, it));
+  }
+
+  double fTime;
+  std::pair<G4Track*, G4Track*> fReactants;
+  G4ReactionPerTrackIt fReactionPerTrack;
+  //static G4ThreadLocal std::set<G4ITReaction*>* gAll;
+};
+
+class G4ITReactionPerTrack  : public G4enable_shared_from_this<G4ITReactionPerTrack>
+{
+  G4ITReactionPerTrack(){}
+public:
+  static G4ITReactionPerTrackPtr New()
+  {
+    return G4ITReactionPerTrackPtr(new G4ITReactionPerTrack());
+  }
+
+  virtual ~G4ITReactionPerTrack()
+  {
+    fReactions.clear();
+  }
+
+  void AddReaction(G4ITReactionPtr reaction)
+  {
+    G4ITReactionList::iterator it =
+      fReactions.insert(fReactions.end(), reaction);
+    reaction->AddIterator(this->shared_from_this(), it);
+  }
+
+  void AddIterator(G4ITReactionPerTrackMap::iterator it)
+  {
+    fReactionSetIt.push_back(it);
+  }
+
+  bool RemoveReaction(G4ITReactionList::iterator it,
+                      G4ITReactionSet* reactionSet);
+  void RemoveMe(G4ITReactionSet* reactionSet)
+  {
+    G4ITReactionList::iterator next;
+    G4ITReactionPerTrackPtr backMeUp = this->shared_from_this();
+    for(G4ITReactionList::iterator it = fReactions.begin() ;
+        it !=  fReactions.end() ; it = next)
+    {
+      next = it;
+      ++next;
+       (*it)->RemoveMe(reactionSet);
+    }
+    fReactions.clear();
+    fReactionSetIt.clear();
+  }
+
+  G4ITReactionList& GetReactionList()
+  {
+    return fReactions;
+  }
+
+  std::list<G4ITReactionPerTrackMap::iterator>& GetListOfIterators()
+  {
+    return fReactionSetIt;
+  }
+
+protected:
+  G4ITReactionList fReactions;
+  std::list<G4ITReactionPerTrackMap::iterator> fReactionSetIt;
+};
+
+class G4ITReactionSet
+{
+public:
+  G4ITReactionSet(){}
+  virtual ~G4ITReactionSet(){fReactionPerTrack.clear();}
+
+  void AddReaction(double time, G4Track* trackA, G4Track* trackB)
+  {
+    G4ITReactionPtr reaction(G4ITReaction::New(time, trackA, trackB));
+    AddReaction(trackA, reaction);
+    AddReaction(trackB, reaction);
+  }
+
+  void AddReactions(double time, G4Track* trackA, G4TrackVectorHandle reactants)
+  {
+    std::vector<G4Track*>::iterator it = reactants->begin();
+    for(;it != reactants->end() ; ++it)
+    {
+      AddReaction(time, trackA, *it);
+    }
+  }
+
+  void RemoveReactionSet(G4Track* track)
+  {
+    G4ITReactionPerTrackMap::iterator it = fReactionPerTrack.find(track);
+    if(it != fReactionPerTrack.end())
+    {
+      G4ITReactionPerTrackPtr backItUp = it->second->shared_from_this();
+      backItUp->RemoveMe(this);
+      //fReactionPerTrack.erase(it); // not needed : once empty ==> auto-erase
+      it = fReactionPerTrack.find(track);
+      if(it != fReactionPerTrack.end())
+      {
+        fReactionPerTrack.erase(it);
+      }
+    }
+  }
+
+  void SelectThisReaction(G4ITReactionPtr reaction)
+  {
+    reaction->RemoveMe(this);
+    RemoveReactionSet(reaction->GetReactants().first);
+    RemoveReactionSet(reaction->GetReactants().second);
+  }
+
+  G4ITReactionPerTrackMap& GetReactionMap()
+  {
+    return fReactionPerTrack;
+  }
+
+  void RemoveReactionPerTrack(G4ITReactionPerTrackPtr reactionPerTrack)
+  {
+    for(std::list<G4ITReactionPerTrackMap::iterator>::iterator it =
+            reactionPerTrack->GetListOfIterators().begin() ;
+        it != reactionPerTrack->GetListOfIterators().end() ;
+        ++it)
+    {
+      fReactionPerTrack.erase(*it);
+    }
+    reactionPerTrack->GetListOfIterators().clear();
+    reactionPerTrack->GetReactionList().clear();
+  }
+
+  void CleanAllReaction()
+  {
+    for(G4ITReactionPerTrackMap::iterator it = fReactionPerTrack.begin();
+        it != fReactionPerTrack.end() ;
+        it = fReactionPerTrack.begin())
+    {
+      it->second->RemoveMe(this);
+    }
+    fReactionPerTrack.clear();
+  }
+
+  bool Empty()
+  {
+    return fReactionPerTrack.empty();
+  }
+
+protected:
+  void AddReaction(G4Track* track, G4ITReactionPtr reaction)
+  {
+    G4ITReactionPerTrackMap::iterator it = fReactionPerTrack.find(track);
+
+    G4ITReactionPerTrackPtr reactionPerTrack;
+
+    if(it == fReactionPerTrack.end())
+    {
+     reactionPerTrack = G4ITReactionPerTrack::New();
+     std::pair< G4ITReactionPerTrackMap::iterator,bool> pos =
+          fReactionPerTrack.insert(std::make_pair(track, reactionPerTrack));
+     reactionPerTrack->AddIterator(pos.first);
+    }
+    else
+    {
+     reactionPerTrack = it->second;
+    }
+
+    reactionPerTrack->AddReaction(reaction);
+  }
+  G4ITReactionPerTrackMap fReactionPerTrack;
+};
+
+#endif /* G4ITREACTIONINFO_HH_ */
diff --git a/source/processes/electromagnetic/dna/management/include/G4Scheduler.hh b/source/processes/electromagnetic/dna/management/include/G4Scheduler.hh
index 1a3e98e085d..afdc33b9fa3 100644
--- a/source/processes/electromagnetic/dna/management/include/G4Scheduler.hh
+++ b/source/processes/electromagnetic/dna/management/include/G4Scheduler.hh
@@ -58,6 +58,7 @@
 #include "G4ITStepStatus.hh"
 #include "G4ITTrackHolder.hh"
 #include "G4VStateDependent.hh"
+#include "G4ITReaction.hh"
 
 class G4ITTrackingManager;
 class G4ITModelProcessor;
@@ -68,6 +69,18 @@ class G4SchedulerMessenger;
 class G4ITTrackingInteractivity;
 class G4ITGun;
 
+#ifndef compTrackPerID__
+#define compTrackPerID__
+  struct compTrackPerID
+  {
+    bool operator()(G4Track* rhs, G4Track* lhs) const
+    {
+      return rhs->GetTrackID() < lhs->GetTrackID();
+    }
+  };
+#endif
+
+
 /**
  * G4ITStepManager enables to synchronize in time
  * the step of tracks.
@@ -241,7 +254,8 @@ private:
   // Time calculated by the interaction length methods
   // in ComputeInteractionLength()
 
-  std::map<G4Track*, G4TrackVectorHandle> fReactingTracks;
+  // std::map<G4Track*, G4TrackVectorHandle, compTrackPerID> fReactingTracks;
+  G4ITReactionSet fReactionSet;
   std::vector<G4Track*> fLeadingTracks;
 
   bool fInteractionStep;
diff --git a/source/processes/electromagnetic/dna/management/include/G4TrackState.hh b/source/processes/electromagnetic/dna/management/include/G4TrackState.hh
index d9f439af77f..b9a7e758792 100644
--- a/source/processes/electromagnetic/dna/management/include/G4TrackState.hh
+++ b/source/processes/electromagnetic/dna/management/include/G4TrackState.hh
@@ -287,7 +287,7 @@ template<class OriginalType>
   G4shared_ptr<G4VTrackState> ConvertToAbstractTrackState(G4shared_ptr<G4TrackState<OriginalType> > state)
   {
 
-    G4shared_ptr<G4VTrackState> output = CLHEP::dynamic_pointer_cast<G4VTrackState>(state);
+    G4shared_ptr<G4VTrackState> output = G4dynamic_pointer_cast<G4VTrackState>(state);
     return output;
   }
 
@@ -295,7 +295,7 @@ template<class FinalType>
   G4shared_ptr<G4TrackState<FinalType> > ConvertToConcreteTrackState(G4VTrackStateHandle state)
   {
 
-    G4shared_ptr<G4TrackState<FinalType> > output = CLHEP::dynamic_pointer_cast<G4TrackState<FinalType> >(state);
+    G4shared_ptr<G4TrackState<FinalType> > output = G4dynamic_pointer_cast<G4TrackState<FinalType> >(state);
     return output;
   }
 
@@ -310,21 +310,21 @@ template<class T>
 
     virtual ~G4TrackStateDependent()
     { ;}
-    virtual void SetTrackState(CLHEP::shared_ptr<StateType> state)
+    virtual void SetTrackState(G4shared_ptr<StateType> state)
     {
       fpTrackState = state;
     }
 
     virtual G4VTrackStateHandle PopTrackState()
     {
-      G4VTrackStateHandle output = CLHEP::dynamic_pointer_cast<G4VTrackState>(fpTrackState);
+      G4VTrackStateHandle output = G4dynamic_pointer_cast<G4VTrackState>(fpTrackState);
       fpTrackState.reset();
       return output;
     }
 
     virtual G4VTrackStateHandle GetTrackState() const
     {
-      G4VTrackStateHandle output = CLHEP::dynamic_pointer_cast<G4VTrackState>(fpTrackState);
+      G4VTrackStateHandle output = G4dynamic_pointer_cast<G4VTrackState>(fpTrackState);
       return output;
     }
 
diff --git a/source/processes/electromagnetic/dna/management/include/G4TrackingInformation.hh b/source/processes/electromagnetic/dna/management/include/G4TrackingInformation.hh
index ef7a8e60b26..f9183df79fc 100644
--- a/source/processes/electromagnetic/dna/management/include/G4TrackingInformation.hh
+++ b/source/processes/electromagnetic/dna/management/include/G4TrackingInformation.hh
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4TrackingInformation.hh 85244 2014-10-27 08:24:13Z gcosmo $
+// $Id: G4TrackingInformation.hh 90769 2015-06-09 10:33:41Z gcosmo $
 //
 // Author: Mathieu Karamitros, kara@cenbg.in2p3.fr
 
@@ -111,9 +111,9 @@ public:
    * computed at the InteractionLegth stage in the track.
    */
 
-  G4::shared_ptr<G4ProcessState_Lock> GetProcessState(size_t index);
+  G4shared_ptr<G4ProcessState_Lock> GetProcessState(size_t index);
 
-  inline void RecordProcessState(G4::shared_ptr<G4ProcessState_Lock>,
+  inline void RecordProcessState(G4shared_ptr<G4ProcessState_Lock>,
                                  size_t index);
 
   //___________________________________________________
@@ -198,7 +198,7 @@ protected:
    * (cf. G4ITStepProcessor header)
    */
 //    std::vector<G4ProcessState_Lock*> fProcessState;
-  std::vector<G4::shared_ptr<G4ProcessState_Lock> > fProcessState;
+  std::vector<G4shared_ptr<G4ProcessState_Lock> > fProcessState;
 
   //_______________________________________________________
   G4ITStepProcessorState_Lock* fpStepProcessorState;
@@ -235,7 +235,7 @@ inline G4ITStepProcessorState_Lock* G4TrackingInformation::GetStepProcessorState
  }*/
 
 inline
-void G4TrackingInformation::RecordProcessState(G4::shared_ptr<G4ProcessState_Lock> state,
+void G4TrackingInformation::RecordProcessState(G4shared_ptr<G4ProcessState_Lock> state,
                                                size_t index)
 {
   // G4cout << "G4TrackingInformation::RecordProcessState" << G4endl;
diff --git a/source/processes/electromagnetic/dna/management/include/G4VITProcess.hh b/source/processes/electromagnetic/dna/management/include/G4VITProcess.hh
index c67b229c407..dac5a33a34e 100644
--- a/source/processes/electromagnetic/dna/management/include/G4VITProcess.hh
+++ b/source/processes/electromagnetic/dna/management/include/G4VITProcess.hh
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4VITProcess.hh 87375 2014-12-02 08:17:28Z gcosmo $
+// $Id: G4VITProcess.hh 90769 2015-06-09 10:33:41Z gcosmo $
 //
 // Author: Mathieu Karamitros, kara@cenbg.in2p3.fr
 
@@ -65,10 +65,10 @@ struct G4ProcessState_Lock
 };
 
 /*
- class G4ProcessStateHandle_Lock : public G4::shared_ptr<G4ProcessState_Lock>
+ class G4ProcessStateHandle_Lock : public G4shared_ptr<G4ProcessState_Lock>
  {
  public:
- G4ProcessStateHandle_Lock(G4ProcessState_Lock* plock) : G4::shared_ptr<G4ProcessState_Lock>(plock)
+ G4ProcessStateHandle_Lock(G4ProcessState_Lock* plock) : G4shared_ptr<G4ProcessState_Lock>(plock)
  {}
  virtual ~G4ProcessStateHandle_Lock(){}
  };
@@ -78,16 +78,16 @@ struct G4ProcessState_Lock
     reference_cast<destinationType>(source)
 
 #define DowncastProcessState(destinationType) \
-	G4::dynamic_pointer_cast<destinationType>(G4VITProcess::fpState)
+	G4dynamic_pointer_cast<destinationType>(G4VITProcess::fpState)
 
 #define UpcastProcessState(destinationType) \
-	G4::dynamic_pointer_cast<destinationType>(G4VITProcess::fpState)
+	G4dynamic_pointer_cast<destinationType>(G4VITProcess::fpState)
 
 #define DowncastState(destinationType,source) \
-	G4::dynamic_pointer_cast<destinationType>(source)
+	G4dynamic_pointer_cast<destinationType>(source)
 
 #define UpcastState(destinationType,source) \
-	G4::dynamic_pointer_cast<destinationType>(source)
+	G4dynamic_pointer_cast<destinationType>(source)
 
 /**
  * G4VITProcess inherits from G4VProcess.
@@ -128,12 +128,12 @@ public:
 //        fpState = (G4ProcessState*) aProcInfo;
 //    }
 
-  G4::shared_ptr<G4ProcessState_Lock> GetProcessState()
+  G4shared_ptr<G4ProcessState_Lock> GetProcessState()
   {
     return UpcastProcessState(G4ProcessState_Lock);
   }
 
-  void SetProcessState(G4::shared_ptr<G4ProcessState_Lock> aProcInfo)
+  void SetProcessState(G4shared_ptr<G4ProcessState_Lock> aProcInfo)
   {
     fpState = DowncastState(G4ProcessState, aProcInfo);
   }
@@ -225,7 +225,7 @@ protected:
       return fpState->GetState<T>();
     }
 
-  G4::shared_ptr<G4ProcessState> fpState;
+  G4shared_ptr<G4ProcessState> fpState;
 
   void virtual SubtractNumberOfInteractionLengthLeft(G4double previousStepSize);
 
diff --git a/source/processes/electromagnetic/dna/management/include/G4VITTimeStepComputer.hh b/source/processes/electromagnetic/dna/management/include/G4VITTimeStepComputer.hh
index e4b32135a0a..21c521c87b1 100644
--- a/source/processes/electromagnetic/dna/management/include/G4VITTimeStepComputer.hh
+++ b/source/processes/electromagnetic/dna/management/include/G4VITTimeStepComputer.hh
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4VITTimeStepComputer.hh 87375 2014-12-02 08:17:28Z gcosmo $
+// $Id: G4VITTimeStepComputer.hh 90769 2015-06-09 10:33:41Z gcosmo $
 ////
 // Author: Mathieu Karamitros, kara@cenbg.in2p3.fr
 ////
@@ -55,10 +55,10 @@
 #include "G4ITReactionTable.hh"
 #include "G4ReferenceCountedHandle.hh"
 #include "AddClone_def.hh"
-#include "CLHEP/Utility/memory.h"
+#include "G4memory.hh"
 
 //typedef G4ReferenceCountedHandle< std::vector<G4Track*> > G4TrackVectorHandle;
-typedef CLHEP::shared_ptr< std::vector<G4Track*> > G4TrackVectorHandle;
+typedef G4shared_ptr< std::vector<G4Track*> > G4TrackVectorHandle;
 
 /**
   * Before stepping all tracks G4Scheduler calls all the G4VITModel
diff --git a/source/processes/electromagnetic/dna/management/include/G4memory.hh b/source/processes/electromagnetic/dna/management/include/G4memory.hh
index a8a9d2b6ec7..79c48943fb2 100644
--- a/source/processes/electromagnetic/dna/management/include/G4memory.hh
+++ b/source/processes/electromagnetic/dna/management/include/G4memory.hh
@@ -26,6 +26,18 @@
 #ifndef G4SHARED_PTR_HH_
 #define G4SHARED_PTR_HH_
 
+#if __cplusplus >= 201103L
+#include <memory>
+
+#define G4shared_ptr std::shared_ptr
+#define G4weak_ptr std::weak_ptr
+#define G4static_pointer_cast std::static_pointer_cast
+#define G4const_pointer_cast std::const_pointer_cast
+#define G4dynamic_pointer_cast std::dynamic_pointer_cast
+#define G4enable_shared_from_this std::enable_shared_from_this
+#define G4enable_shared_from_this2 std::enable_shared_from_this
+
+#else
 #include "CLHEP/Utility/memory.h"
 
 #define G4shared_ptr G4::shared_ptr
@@ -72,7 +84,7 @@ public:
 	shared_from_this()
 	{
 		shared_ptr<T>  p( weak_this_ );
-		assert( p.get() == this );
+		// assert( p.get() == this );
 		return p;
 	}
 
@@ -80,7 +92,7 @@ public:
 	shared_from_this() const
 	{
 		shared_ptr<T const>  p( weak_this_ );
-		assert( p.get() == this );
+		// assert( p.get() == this );
 		return p;
 	}
 
@@ -218,5 +230,6 @@ namespace G4
 	using CLHEP::enable_shared_from_this;
 	using CLHEP::enable_shared_from_this2;
 }
+#endif
 
 #endif /* G4SHARED_PTR_HH_ */
diff --git a/source/processes/electromagnetic/dna/management/sources.cmake b/source/processes/electromagnetic/dna/management/sources.cmake
index e70db9190b1..a3fa386e8a6 100644
--- a/source/processes/electromagnetic/dna/management/sources.cmake
+++ b/source/processes/electromagnetic/dna/management/sources.cmake
@@ -11,7 +11,7 @@
 #
 # Generated on : 24/9/2010
 #
-# $Id: sources.cmake 87519 2014-12-05 23:08:43Z gcosmo $
+# $Id: sources.cmake 90769 2015-06-09 10:33:41Z gcosmo $
 #
 #------------------------------------------------------------------------------
 
@@ -59,6 +59,7 @@ GEANT4_DEFINE_MODULE(NAME G4emdna-man
         G4ITNavigator2.hh
         G4ITNavigator2.icc
         G4ITPathFinder.hh
+        G4ITReaction.hh
         G4ITReactionChange.hh
         G4ITReactionTable.hh
         G4ITSafetyHelper.hh
@@ -111,6 +112,7 @@ GEANT4_DEFINE_MODULE(NAME G4emdna-man
         G4ITNavigator2.cc
         G4ITNavigatorState2.cc
         G4ITPathFinder.cc
+        G4ITReaction.cc
         G4ITReactionChange.cc
         G4ITReactionTable.cc
         G4ITSafetyHelper.cc
diff --git a/source/processes/electromagnetic/dna/management/src/G4IT.cc b/source/processes/electromagnetic/dna/management/src/G4IT.cc
index 1de6a9bc989..214cd35024e 100644
--- a/source/processes/electromagnetic/dna/management/src/G4IT.cc
+++ b/source/processes/electromagnetic/dna/management/src/G4IT.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4IT.cc 87061 2014-11-24 11:43:34Z gcosmo $
+// $Id: G4IT.cc 90900 2015-06-11 08:06:17Z gcosmo $
 //
 // Author: Mathieu Karamitros (kara (AT) cenbg . in2p3 . fr)
 //
@@ -212,7 +212,7 @@ const G4ThreeVector& G4IT::GetPosition() const
   return *(new G4ThreeVector());
 }
 
-const double& G4IT::operator[](int i) const
+double G4IT::operator[](int i) const
 {
-  return const_cast<G4ThreeVector&>(GetTrack()->GetPosition())[i];
+  return GetTrack()->GetPosition()[i];
 }
diff --git a/source/processes/electromagnetic/dna/management/src/G4ITModelProcessor.cc b/source/processes/electromagnetic/dna/management/src/G4ITModelProcessor.cc
index 9240928a308..c0047a41a9a 100644
--- a/source/processes/electromagnetic/dna/management/src/G4ITModelProcessor.cc
+++ b/source/processes/electromagnetic/dna/management/src/G4ITModelProcessor.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4ITModelProcessor.cc 87375 2014-12-02 08:17:28Z gcosmo $
+// $Id: G4ITModelProcessor.cc 90769 2015-06-09 10:33:41Z gcosmo $
 //
 // Author: Mathieu Karamitros (kara (AT) cenbg . in2p3 . fr)
 //
@@ -37,6 +37,7 @@
 #include "G4VITTimeStepComputer.hh"
 #include "G4VITReactionProcess.hh"
 //#include "G4ITTimeStepper.hh"
+#include "G4ITReaction.hh"
 
 //#define DEBUG_MEM
 
@@ -69,7 +70,7 @@ G4ITModelProcessor::G4ITModelProcessor()
 G4ITModelProcessor::~G4ITModelProcessor()
 {
   //dtor
-//    if(fpModelHandler) delete fpModelHandler; deleted by G4Scheduler
+  //    if(fpModelHandler) delete fpModelHandler; deleted by G4Scheduler
   fCurrentModel.clear();
   fReactionInfo.clear();
 }
@@ -109,7 +110,7 @@ void G4ITModelProcessor::InitializeStepper(const G4double& currentGlobalTime,
   {
     G4ExceptionDescription exceptionDescription;
     exceptionDescription
-        << "No G4ITModelHandler was passed to the modelProcessor.";
+    << "No G4ITModelHandler was passed to the modelProcessor.";
     G4Exception("G4ITModelProcessor::InitializeStepper", "ITModelProcessor002",
                 FatalErrorInArgument, exceptionDescription);
   }
@@ -120,7 +121,7 @@ void G4ITModelProcessor::InitializeStepper(const G4double& currentGlobalTime,
   {
     G4ExceptionDescription exceptionDescription;
     exceptionDescription
-        << "No G4ITModelManager was register to G4ITModelHandler.";
+    << "No G4ITModelManager was register to G4ITModelHandler.";
     G4Exception("G4ITModelProcessor::InitializeStepper", "ITModelProcessor003",
                 FatalErrorInArgument, exceptionDescription);
   }
@@ -157,7 +158,7 @@ void G4ITModelProcessor::InitializeStepper(const G4double& currentGlobalTime,
         mem_first = MemoryUsage();
 #endif
 
-//      stepper->PrepareForAllProcessors() ;
+        //      stepper->PrepareForAllProcessors() ;
         stepper->Prepare();
 
 #if defined (DEBUG_MEM)
@@ -207,7 +208,7 @@ void G4ITModelProcessor::DoCalculateStep()
   else // ie many models have been declared and will be used
   {
     std::vector<G4VITStepModel*>& model = fCurrentModel[GetIT(fpTrack)
-        ->GetITType()];
+                                                        ->GetITType()];
 
     for (int i = 0; i < (int) model.size(); i++)
     {
@@ -218,69 +219,70 @@ void G4ITModelProcessor::DoCalculateStep()
 }
 
 //______________________________________________________________________________
-void G4ITModelProcessor::FindReaction(std::map<G4Track*, G4TrackVectorHandle>* tracks,
-                                      const double currentStepTime,
-                                      const double previousStepTime,
-                                      const bool reachedUserStepTimeLimit)
+void G4ITModelProcessor::FindReaction(
+    G4ITReactionSet* reactionSet,
+    const double currentStepTime,
+    const double previousStepTime,
+    const bool reachedUserStepTimeLimit)
 {
   // DEBUG
   //    G4cout << "G4ITReactionManager::FindReaction" << G4endl;
-  if (tracks == 0) return;
-
+  //if (tracks == 0) return;
+  if(reactionSet == 0) return;
   if (fpModelHandler->GetAllModelManager()->empty()) return;
 
-  std::map<G4Track*, G4TrackVectorHandle>::iterator tracks_i = tracks->begin();
-
-//    G4cout << "G4ITModelProcessor::FindReaction at step :" << G4ITTimeStepper::Instance()->GetNbSteps() << G4endl;
+  G4ITReactionPerTrackMap& reactionPerTrackMap = reactionSet->GetReactionMap();
 
-  for (tracks_i = tracks->begin(); tracks_i != tracks->end(); tracks_i++)
-  {
-    /// Get track A
-    G4Track* trackA = tracks_i->first;
+  std::map<G4Track*, G4ITReactionPerTrackPtr, compTrackPerID>::iterator tracks_i = reactionPerTrackMap.begin();
 
-    if (trackA == 0) continue;
+  //std::map<G4Track*, G4TrackVectorHandle, compTrackPerID>::iterator tracks_i = tracks->begin();
 
-    // G4cout << "trackA is " << GetIT(trackA)->GetName() << G4endl;
+  //    G4cout << "G4ITModelProcessor::FindReaction at step :" << G4ITTimeStepper::Instance()->GetNbSteps() << G4endl;
 
-    std::map<const G4Track*, G4bool>::iterator it_hasReacted =
-        fHasReacted->find(trackA);
-    if (it_hasReacted != fHasReacted->end()) continue;
-    if (trackA->GetTrackStatus() == fStopAndKill) continue;
+  //  for (tracks_i = tracks->begin(); tracks_i != tracks->end(); tracks_i++)
+  for (tracks_i = reactionPerTrackMap.begin();
+       tracks_i != reactionPerTrackMap.end() ;
+       tracks_i = reactionPerTrackMap.begin())
+  {
+    //G4cout << "here" << G4endl;
+    G4Track* trackA = tracks_i->first;
+    if (trackA->GetTrackStatus() == fStopAndKill)
+    {
+      //G4cout << "continue 1" << G4endl;
+      continue;
+    }
+    
+    G4ITReactionPerTrackPtr reactionPerTrack = tracks_i->second;
+    G4ITReactionList& reactionList = reactionPerTrack->GetReactionList();
 
     G4IT* ITA = GetIT(trackA);
     G4ITType ITypeA = ITA->GetITType();
 
     const std::vector<G4VITStepModel*> model = fCurrentModel[ITypeA];
 
-    G4TrackVectorHandle& trackB_vector = tracks_i->second;
-    std::vector<G4Track*>::iterator trackB_i = trackB_vector->begin();
-
     G4Track* trackB = 0;
     G4ITType ITypeB(-1);
     G4VITReactionProcess* process = 0;
     G4ITReactionChange* changes = 0;
+    
+    assert(reactionList.begin() != reactionList.end());
 
-    for (; trackB_i != trackB_vector->end(); trackB_i++)
+    for(G4ITReactionList::iterator it = reactionList.begin() ;
+        it != reactionList.end() ; it = reactionList.begin() )
     {
-      trackB = *trackB_i;
-
-      if (trackB == 0) continue;
-      it_hasReacted = fHasReacted->find(trackB);
-      if (it_hasReacted != fHasReacted->end()) continue;
-      if (trackB->GetTrackStatus() == fStopAndKill) continue;
-
-      // DEBUG
-      //             G4cout << "Couple : " << trackA->GetParticleDefinition->GetParticleName() << " ("
-      //                        << trackA->GetTrackID() << ")   "
-      //                        << trackB->GetParticleDefinition->GetParticleName() << " ("
-      //                        << trackB->GetTrackID() << ")"
-      //                        << G4endl;
+      G4ITReactionPtr reaction(*it);
+      trackB = reaction->GetReactant(trackA);
+      if(trackB->GetTrackStatus() == fStopAndKill)
+      {
+        //G4cout << "continue 2" << G4endl;
+        continue;
+      }
 
       if (trackB == trackA)
       {
         G4ExceptionDescription exceptionDescription;
         exceptionDescription
-            << "The IT reaction process sent back a reaction between trackA and trackB. ";
+        << "The IT reaction process sent back a reaction between trackA and trackB. ";
         exceptionDescription << "The problem is trackA == trackB";
         G4Exception("G4ITModelProcessor::FindReaction", "ITModelProcessor005",
                     FatalErrorInArgument, exceptionDescription);
@@ -295,6 +297,8 @@ void G4ITModelProcessor::FindReaction(std::map<G4Track*, G4TrackVectorHandle>* t
 
         if (model[ITypeB]) process = model[ITypeB]->GetReactionProcess();
       }
+      
+      reactionSet->SelectThisReaction(reaction);
 
       if (process && process->TestReactibility(*trackA, *trackB,
                                                currentStepTime,
@@ -306,18 +310,13 @@ void G4ITModelProcessor::FindReaction(std::map<G4Track*, G4TrackVectorHandle>* t
 
       if (changes)
       {
-        (*fHasReacted)[trackA] = true;
-        (*fHasReacted)[trackB] = true;
-        changes->GetTrackA();
-        changes->GetTrackB();
-
         fReactionInfo.push_back(changes);
 
-//				G4cout << "pushing reaction for trackA (" << trackA->GetTrackID() << ") and trackB ("
-//					   << trackB->GetTrackID() << ")" << G4endl;
-//
-//				G4cout << "nb of secondaries : " << changes->GetNumberOfSecondaries() << G4endl;
-//				G4cout << "with track 0 = " << changes->GetSecondary(0) << G4endl;
+        //        G4cout << "pushing reaction for trackA (" << trackA->GetTrackID() << ") and trackB ("
+        //             << trackB->GetTrackID() << ")" << G4endl;
+        //
+        //        G4cout << "nb of secondaries : " << changes->GetNumberOfSecondaries() << G4endl;
+        //        G4cout << "with track 0 = " << changes->GetSecondary(0) << G4endl;
 
         process->ResetChanges();
         changes = 0;
@@ -326,6 +325,6 @@ void G4ITModelProcessor::FindReaction(std::map<G4Track*, G4TrackVectorHandle>* t
       }
     }
   }
-
-  fHasReacted->clear();
+  
+  //assert(G4ITReaction::gAll->empty() == true);
 }
diff --git a/source/processes/electromagnetic/dna/management/src/G4ITReaction.cc b/source/processes/electromagnetic/dna/management/src/G4ITReaction.cc
new file mode 100644
index 00000000000..b9604f34102
--- /dev/null
+++ b/source/processes/electromagnetic/dna/management/src/G4ITReaction.cc
@@ -0,0 +1,53 @@
+/*
+ * G4ITReactionInfo.cc
+ *
+ *  Created on: 1 févr. 2015
+ *      Author: matkara
+ */
+
+#include <G4ITReaction.hh>
+#include "globals.hh"
+
+//G4ThreadLocal std::set<G4ITReaction*>* G4ITReaction::gAll(0);
+
+
+G4ITReaction::G4ITReaction(double time, G4Track* trackA, G4Track* trackB) :
+  G4enable_shared_from_this<G4ITReaction>(),
+  fTime(time),
+  fReactants(trackA,trackB)
+{
+  //if(gAll == 0) gAll = new std::set<G4ITReaction*>();
+  //gAll->insert(this);
+}
+
+G4ITReaction::~G4ITReaction()
+{
+  //gAll->erase(this);
+}
+
+void G4ITReaction::RemoveMe(G4ITReactionSet* reactionSet)
+{
+  G4ITReactionPtr backMeUp = this->shared_from_this();
+  for(G4ReactionPerTrackIt::iterator it = fReactionPerTrack.begin() ;
+      it != fReactionPerTrack.end() ; ++it)
+  {
+    // G4cout << it->first.get() << G4endl;
+    // assert(it->first.get() != 0);
+    it->first->RemoveReaction(it->second, reactionSet);
+  }
+  fReactionPerTrack.clear();
+}
+
+bool G4ITReactionPerTrack::RemoveReaction(G4ITReactionList::iterator it,
+                                          G4ITReactionSet* reactionSet)
+{
+  // G4cout << "G4ITReactionPerTrack::RemoveReaction" << G4endl;
+  fReactions.erase(it);
+  if(fReactions.empty())
+  {
+    // G4cout << "G4ITReactionPerTrack is empty" << G4endl;
+    reactionSet->RemoveReactionPerTrack(this->shared_from_this());
+    return true;
+  }
+  return false;
+}
diff --git a/source/processes/electromagnetic/dna/management/src/G4ITTransportation.cc b/source/processes/electromagnetic/dna/management/src/G4ITTransportation.cc
index dff404bafc5..dc68290aaa5 100644
--- a/source/processes/electromagnetic/dna/management/src/G4ITTransportation.cc
+++ b/source/processes/electromagnetic/dna/management/src/G4ITTransportation.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4ITTransportation.cc 87375 2014-12-02 08:17:28Z gcosmo $
+// $Id: G4ITTransportation.cc 90769 2015-06-09 10:33:41Z gcosmo $
 //
 /// \brief This class is a slightly modified version of G4Transportation
 ///        initially written by John Apostolakis and colleagues
@@ -73,8 +73,12 @@
 
 class G4VSensitiveDetector;
 
+#ifndef PrepareState
+#define PrepareState() G4ITTransportationState* __state = this->GetState<G4ITTransportationState>();
+#endif
+
 #ifndef State
-#define State(theXInfo) (GetState<G4ITTransportationState>()->theXInfo)
+#define State(theXInfo) (__state->theXInfo)
 #endif
 
 //#define DEBUG_MEM
@@ -250,6 +254,7 @@ AlongStepGetPhysicalInteractionLength(const G4Track& track,
                                       G4double& currentSafety,
                                       G4GPILSelection* selection)
 {
+  PrepareState()
   G4double geometryStepLength(-1.0), newSafety(-1.0);
 
   State(fParticleIsLooping) = false;
@@ -643,6 +648,7 @@ void G4ITTransportation::ComputeStep(const G4Track& track,
                                      const double timeStep,
                                      double& oPhysicalStep)
 {
+  PrepareState()
   const G4DynamicParticle* pParticle = track.GetDynamicParticle();
   G4ThreeVector startMomentumDir = pParticle->GetMomentumDirection();
   G4ThreeVector startPosition = track.GetPosition();
@@ -690,6 +696,8 @@ G4VParticleChange* G4ITTransportation::AlongStepDoIt(const G4Track& track,
   mem_first = MemoryUsage();
 #endif
 
+  PrepareState()
+  
   // G4cout << "G4ITTransportation::AlongStepDoIt" << G4endl;
   // set  pdefOpticalPhoton
   // Andrea Dotti: the following statement should be in a single line:
@@ -862,6 +870,8 @@ G4VParticleChange* G4ITTransportation::PostStepDoIt(const G4Track& track,
                                                     const G4Step&)
 {
   //    G4cout << "G4ITTransportation::PostStepDoIt" << G4endl;
+ 
+  PrepareState()
   G4TouchableHandle retCurrentTouchable; // The one to return
   G4bool isLastStep = false;
 
@@ -1073,9 +1083,11 @@ void G4ITTransportation::StartTracking(G4Track* track)
 
   // Update the current touchable handle  (from the track's)
   //
+  PrepareState()
   State(fCurrentTouchableHandle) = track->GetTouchableHandle();
 
   G4VITProcess::StartTracking(track);
 }
 
 #undef State
+#undef PrepareState
diff --git a/source/processes/electromagnetic/dna/management/src/G4Scheduler.cc b/source/processes/electromagnetic/dna/management/src/G4Scheduler.cc
index 19927355508..a9baf60e14f 100644
--- a/source/processes/electromagnetic/dna/management/src/G4Scheduler.cc
+++ b/source/processes/electromagnetic/dna/management/src/G4Scheduler.cc
@@ -354,8 +354,9 @@ void G4Scheduler::Reset()
 
   fNbSteps = 0;
   fContinue = true;
-  fReactingTracks.clear();
+  // fReactingTracks.clear();
   fLeadingTracks.clear();
+  fReactionSet.CleanAllReaction();
 }
 //_________________________________________________________________________
 
@@ -723,7 +724,8 @@ void G4Scheduler::Stepping()
     // Give the priority to the IL
   {
     fInteractionStep = true;
-    fReactingTracks.clear(); // Give the priority to the IL
+//    fReactingTracks.clear(); // Give the priority to the IL
+    fReactionSet.CleanAllReaction();
     fTimeStep = fILTimeStep;
     fITStepStatus = eInteractionWithMedium;
   }
@@ -741,7 +743,8 @@ void G4Scheduler::Stepping()
     fTimeStep = fEndTime - fGlobalTime;
     fITStepStatus = eInteractionWithMedium; // ie: transportation
     fInteractionStep = true;
-    fReactingTracks.clear();
+//    fReactingTracks.clear();
+    fReactionSet.CleanAllReaction();
     ResetLeadingTracks();
   }
 
@@ -1125,7 +1128,8 @@ void G4Scheduler::ExtractTimeStepperData(G4ITModelProcessor* MP)
          */
 
         fTSTimeStep = sampledMinTimeStep;
-        fReactingTracks.clear();
+        //fReactingTracks.clear();
+        fReactionSet.CleanAllReaction();
         if (bool(reactants))
         {
           // G4cout << "*** (1) G4Scheduler::ExtractTimeStepperData insert
@@ -1134,7 +1138,8 @@ void G4Scheduler::ExtractTimeStepperData(G4ITModelProcessor* MP)
           // G4cout << reactants->size() << G4endl;
           // G4cout << GetIT(reactants->operator[](0))->GetName() << G4endl;
 
-          fReactingTracks.insert(make_pair(track, reactants));
+         //  fReactingTracks.insert(make_pair(track, reactants));
+          fReactionSet.AddReactions(fTSTimeStep, track, reactants);
           stepper->ResetReactants();
         }
       }
@@ -1161,7 +1166,8 @@ void G4Scheduler::ExtractTimeStepperData(G4ITModelProcessor* MP)
           // G4cout << reactants->size() << G4endl;
           // G4cout << GetIT(reactants->operator[](0))->GetName() << G4endl;
 
-          fReactingTracks.insert(make_pair(track, reactants));
+         // fReactingTracks.insert(make_pair(track, reactants));
+          fReactionSet.AddReactions(fTSTimeStep, track, reactants);
           stepper->ResetReactants();
         }
       }
@@ -1487,12 +1493,14 @@ void G4Scheduler::ExtractDoItData(G4ITStepProcessor* SP)
       break;
 
     case fStopAndKill:
+      fReactionSet.RemoveReactionSet(track);
       PushSecondaries(SP);
       G4TrackList::Pop(track);
       EndTracking(track);
       break;
 
     case fKillTrackAndSecondaries:
+      fReactionSet.RemoveReactionSet(track);
       G4TrackVector* secondaries = SP->GetSecondaries();
       if (secondaries)
       {
@@ -1536,7 +1544,8 @@ void G4Scheduler::PushSecondaries(G4ITStepProcessor* SP)
 
 void G4Scheduler::ComputeTrackReaction()
 {
-  if (fReactingTracks.empty())
+//  if (fReactingTracks.empty())
+  if (fReactionSet.Empty())
   {
     return;
   }
@@ -1544,7 +1553,8 @@ void G4Scheduler::ComputeTrackReaction()
   if (fITStepStatus == eCollisionBetweenTracks)
   //        if(fInteractionStep == false)
   {
-    fpModelProcessor->FindReaction(&fReactingTracks, fTimeStep,
+    fpModelProcessor->FindReaction(&fReactionSet,
+                                   fTimeStep,
                                    fPreviousTimeStep, fReachedUserTimeLimit);
     // TODO
     // A ne faire uniquement si le temps choisis est celui calculé par le time stepper
@@ -1694,7 +1704,8 @@ void G4Scheduler::ComputeTrackReaction()
   //    G4cout << "fInteractionStep == true" << G4endl ;
   //}
 
-  fReactingTracks.clear();
+//  fReactingTracks.clear();
+  fReactionSet.CleanAllReaction();
 }
 
 //_________________________________________________________________________
@@ -1759,6 +1770,7 @@ void G4Scheduler::ResetLeadingTracks()
 
 void G4Scheduler::EndTracking(G4Track* trackToBeKilled)
 {
+//  fReactionSet.RemoveReactionSet(trackToBeKilled);
   fpTrackingManager->EndTracking(trackToBeKilled);
   fTrackContainer.PushToKill(trackToBeKilled);
 }
diff --git a/source/processes/electromagnetic/dna/management/src/G4TrackingInformation.cc b/source/processes/electromagnetic/dna/management/src/G4TrackingInformation.cc
index 62060ac3687..cd9e051abae 100644
--- a/source/processes/electromagnetic/dna/management/src/G4TrackingInformation.cc
+++ b/source/processes/electromagnetic/dna/management/src/G4TrackingInformation.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4TrackingInformation.cc 80151 2014-04-03 09:42:22Z gcosmo $
+// $Id: G4TrackingInformation.cc 90769 2015-06-09 10:33:41Z gcosmo $
 //
 // Author: Mathieu Karamitros (kara (AT) cenbg . in2p3 . fr) 
 //
@@ -104,7 +104,7 @@ G4TrackingInformation& G4TrackingInformation::operator=(const G4TrackingInformat
 //    return fProcessState[index];
 //}
 
-G4::shared_ptr<G4ProcessState_Lock> G4TrackingInformation::GetProcessState(size_t index)
+G4shared_ptr<G4ProcessState_Lock> G4TrackingInformation::GetProcessState(size_t index)
 {
     if(index> G4VITProcess::GetMaxProcessIndex())
     {
diff --git a/source/processes/electromagnetic/dna/models/src/G4DNABornIonisationModel.cc b/source/processes/electromagnetic/dna/models/src/G4DNABornIonisationModel.cc
index c2cd03c622e..55f46041e9f 100644
--- a/source/processes/electromagnetic/dna/models/src/G4DNABornIonisationModel.cc
+++ b/source/processes/electromagnetic/dna/models/src/G4DNABornIonisationModel.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4DNABornIonisationModel.cc 87137 2014-11-25 09:12:48Z gcosmo $
+// $Id: G4DNABornIonisationModel.cc 90769 2015-06-09 10:33:41Z gcosmo $
 //
 
 #include "G4DNABornIonisationModel.hh"
@@ -161,15 +161,17 @@ void G4DNABornIonisationModel::Initialise(const G4ParticleDefinition* particle,
   eVecm.clear();
   pVecm.clear();
 
-  eProbaShellMap->clear();
-  pProbaShellMap->clear();
-
-  eDiffCrossSectionData->clear();
-  pDiffCrossSectionData->clear();
+  for (int j=0; j<5; j++)
+  {
+    eProbaShellMap[j].clear();
+    pProbaShellMap[j].clear();
 
-  eNrjTransfData->clear();
-  pNrjTransfData->clear();
+    eDiffCrossSectionData[j].clear();
+    pDiffCrossSectionData[j].clear();
 
+    eNrjTransfData[j].clear();
+    pNrjTransfData[j].clear();
+  }
   //
 
   eTdummyVec.push_back(0.);
@@ -179,9 +181,13 @@ void G4DNABornIonisationModel::Initialise(const G4ParticleDefinition* particle,
     double eDummy;
     eDiffCrossSection>>tDummy>>eDummy;
     if (tDummy != eTdummyVec.back()) eTdummyVec.push_back(tDummy);
+
+    double tmp;
     for (int j=0; j<5; j++)
     {
-      eDiffCrossSection>>eDiffCrossSectionData[j][tDummy][eDummy];
+      eDiffCrossSection>> tmp;
+
+      eDiffCrossSectionData[j][tDummy][eDummy] = tmp;
 
       if (fasterCode)
       {
diff --git a/source/processes/electromagnetic/dna/models/src/G4DNAMoleculeEncounterStepper.cc b/source/processes/electromagnetic/dna/models/src/G4DNAMoleculeEncounterStepper.cc
index 8e8b75e46ba..30ffa903f8b 100644
--- a/source/processes/electromagnetic/dna/models/src/G4DNAMoleculeEncounterStepper.cc
+++ b/source/processes/electromagnetic/dna/models/src/G4DNAMoleculeEncounterStepper.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4DNAMoleculeEncounterStepper.cc 85244 2014-10-27 08:24:13Z gcosmo $
+// $Id: G4DNAMoleculeEncounterStepper.cc 90769 2015-06-09 10:33:41Z gcosmo $
 //
 // Author: Mathieu Karamitros (kara@cenbg.in2p3.fr)
 //
@@ -328,15 +328,16 @@ G4double G4DNAMoleculeEncounterStepper::CalculateStep(const G4Track& trackA,
 //     G4cout << "Potential reactions :" << G4endl;
 //        G4cout << GetMolecule(trackA)->GetName()
 //    << " ("<< trackA.GetTrackID()<< ") " << " + ..." << G4endl;
-//    << " | " << trackB->GetTrackID() << G4endl;
+//    //<< " | " << trackB->GetTrackID() << G4endl;
 //
-//        for(int j = 0 ; j < fReactants->size() ; j++)
+//        for(int j = 0 ; j < (int) fReactants->size() ; j++)
 //        {
 //         G4cout << GetMolecule(fReactants->at(j) )->GetName()
 //    <<" ("<< fReactants->at(j)->GetTrackID() << ")" << G4endl;
 //        }
 //  }
-  }
+
+ }
 
 #ifdef G4VERBOSE
   //    DEBUG
diff --git a/source/processes/electromagnetic/dna/models/src/G4DNARuddIonisationExtendedModel.cc b/source/processes/electromagnetic/dna/models/src/G4DNARuddIonisationExtendedModel.cc
index b1b674d85c8..f7dc3039da6 100644
--- a/source/processes/electromagnetic/dna/models/src/G4DNARuddIonisationExtendedModel.cc
+++ b/source/processes/electromagnetic/dna/models/src/G4DNARuddIonisationExtendedModel.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4DNARuddIonisationExtendedModel.cc 81941 2014-06-06 15:50:50Z gcosmo $
+// $Id: G4DNARuddIonisationExtendedModel.cc 90769 2015-06-09 10:33:41Z gcosmo $
 // GEANT4 tag $Name:  $
 //
 // Modified by Z. Francis, S. Incerti to handle HZE 
@@ -159,7 +159,7 @@ void G4DNARuddIonisationExtendedModel::Initialise(const G4ParticleDefinition* pa
     G4ParticleDefinition* nitrogenDef =  G4IonTable::GetIonTable()->GetIon(7,14);
     G4ParticleDefinition* oxygenDef =  G4IonTable::GetIonTable()->GetIon(8,16);
     G4ParticleDefinition* siliconDef = G4IonTable::GetIonTable()->GetIon(14,28);
-    G4ParticleDefinition* ironDef =  G4IonTable::GetIonTable()->GetIon(26,52);
+    G4ParticleDefinition* ironDef =  G4IonTable::GetIonTable()->GetIon(26,56);
     //
 
     G4String proton;
@@ -408,8 +408,8 @@ void G4DNARuddIonisationExtendedModel::Initialise(const G4ParticleDefinition* pa
     //SEB
     //lowEnergyLimit[iron] = lowEnergyLimitForA[5]* particle->GetAtomicMass();
     //highEnergyLimit[iron] = 1e6* particle->GetAtomicMass()* MeV;
-    lowEnergyLimit[iron] = 0.5*52*MeV;
-    highEnergyLimit[iron] = 1e6*52*MeV;
+    lowEnergyLimit[iron] = 0.5*56*MeV;
+    highEnergyLimit[iron] = 1e6*56*MeV;
     //
 
     // Cross section
@@ -538,7 +538,7 @@ G4double G4DNARuddIonisationExtendedModel::CrossSectionPerVolume(const G4Materia
                                                                  G4double,
                                                                  G4double)
 {
-    //SEB: particleDefinition->GetParticleName() is for eg. Fe52
+    //SEB: particleDefinition->GetParticleName() is for eg. Fe56
     //     particleDefinition->GetPDGMass() is correct
     //     particleDefinition->GetAtomicNumber() is correct
 
@@ -583,7 +583,7 @@ G4double G4DNARuddIonisationExtendedModel::CrossSectionPerVolume(const G4Materia
             &&
             particleDefinition != G4IonTable::GetIonTable()->GetIon(14,28)
             &&
-            particleDefinition != G4IonTable::GetIonTable()->GetIon(26,52)
+            particleDefinition != G4IonTable::GetIonTable()->GetIon(26,56)
             //
             )
 
@@ -680,7 +680,7 @@ void G4DNARuddIonisationExtendedModel::SampleSecondaries(std::vector<G4DynamicPa
                                                          G4double,
                                                          G4double)
 {
-    //SEB: particle->GetDefinition()->GetParticleName() is for eg. Fe52
+    //SEB: particle->GetDefinition()->GetParticleName() is for eg. Fe56
     //     particle->GetDefinition()->GetPDGMass() is correct
     //     particle->GetDefinition()->GetAtomicNumber() is correct
     //     particle->GetDefinition()->GetAtomicMass() is correct
diff --git a/source/processes/electromagnetic/dna/models/src/G4DNAScreenedRutherfordElasticModel.cc b/source/processes/electromagnetic/dna/models/src/G4DNAScreenedRutherfordElasticModel.cc
index 6f4443853a0..625da2c4902 100644
--- a/source/processes/electromagnetic/dna/models/src/G4DNAScreenedRutherfordElasticModel.cc
+++ b/source/processes/electromagnetic/dna/models/src/G4DNAScreenedRutherfordElasticModel.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4DNAScreenedRutherfordElasticModel.cc 87137 2014-11-25 09:12:48Z gcosmo $
+// $Id: G4DNAScreenedRutherfordElasticModel.cc 90769 2015-06-09 10:33:41Z gcosmo $
 //
 
 #include "G4DNAScreenedRutherfordElasticModel.hh"
@@ -206,7 +206,7 @@ G4double G4DNAScreenedRutherfordElasticModel::CrossSectionPerVolume(const G4Mate
 
   }
 
-  return sigma*material->GetAtomicNumDensityVector()[1];
+  return sigma*waterDensity;
 }
 
 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/source/processes/electromagnetic/dna/molecules/management/src/G4MolecularConfiguration.cc b/source/processes/electromagnetic/dna/molecules/management/src/G4MolecularConfiguration.cc
index 06242252e2c..2d40a0d4e24 100644
--- a/source/processes/electromagnetic/dna/molecules/management/src/G4MolecularConfiguration.cc
+++ b/source/processes/electromagnetic/dna/molecules/management/src/G4MolecularConfiguration.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4MolecularConfiguration.cc 87375 2014-12-02 08:17:28Z gcosmo $
+// $Id: G4MolecularConfiguration.cc 90769 2015-06-09 10:33:41Z gcosmo $
 //
 // Author: Mathieu Karamitros (kara (AT) cenbg . in2p3 . fr) 
 //
@@ -214,8 +214,8 @@ G4MolecularConfiguration*
 G4MolecularConfiguration::GetMolecularConfiguration(const G4MoleculeDefinition* molDef,
                                                     int charge)
 {
-  G4MolecularConfiguration* molConf = GetManager()->GetMolecularConfiguration(
-      molDef, charge);
+  G4MolecularConfiguration* molConf =
+      GetManager()->GetMolecularConfiguration(molDef, charge);
 
   if (molConf)
   {
diff --git a/source/processes/electromagnetic/dna/utils/include/G4DNAChemistryManager.hh b/source/processes/electromagnetic/dna/utils/include/G4DNAChemistryManager.hh
index 6d8fd4e4f3d..c92cf4914f7 100644
--- a/source/processes/electromagnetic/dna/utils/include/G4DNAChemistryManager.hh
+++ b/source/processes/electromagnetic/dna/utils/include/G4DNAChemistryManager.hh
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4DNAChemistryManager.hh 87375 2014-12-02 08:17:28Z gcosmo $
+// $Id: G4DNAChemistryManager.hh 90900 2015-06-11 08:06:17Z gcosmo $
 //
 
 // Author: Mathieu Karamitros, kara@cenbg.in2p3.fr
@@ -110,6 +110,7 @@ public:
   //============================================================================
   virtual G4bool Notify(G4ApplicationState requestedState);
   virtual void SetNewValue(G4UIcommand*, G4String);
+  virtual G4String GetCurrentValue(G4UIcommand * command);
 
   //============================================================================
   // INITIALIZATION AND FINALIZATION METHODS
diff --git a/source/processes/electromagnetic/dna/utils/include/G4DNAMolecularReactionTable.hh b/source/processes/electromagnetic/dna/utils/include/G4DNAMolecularReactionTable.hh
index d1b75c7e208..c85ee1f988d 100644
--- a/source/processes/electromagnetic/dna/utils/include/G4DNAMolecularReactionTable.hh
+++ b/source/processes/electromagnetic/dna/utils/include/G4DNAMolecularReactionTable.hh
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4DNAMolecularReactionTable.hh 85244 2014-10-27 08:24:13Z gcosmo $
+// $Id: G4DNAMolecularReactionTable.hh 90769 2015-06-09 10:33:41Z gcosmo $
 //
 // Author: Mathieu Karamitros, kara@cenbg.in2p3.fr
 
@@ -32,8 +32,8 @@
 // We would be very happy hearing from you, send us your feedback! :)
 //
 // In order for Geant4-DNA to be maintained and still open-source,
-// article citations are crucial. 
-// If you use Geant4-DNA chemistry and you publish papers about your software, 
+// article citations are crucial.
+// If you use Geant4-DNA chemistry and you publish papers about your software,
 // in addition to the general paper on Geant4-DNA:
 //
 // Int. J. Model. Simul. Sci. Comput. 1 (2010) 157–178
@@ -42,7 +42,7 @@
 // reference papers on chemistry:
 //
 // J. Comput. Phys. 274 (2014) 841-882
-// Prog. Nucl. Sci. Tec. 2 (2011) 503-508 
+// Prog. Nucl. Sci. Tec. 2 (2011) 503-508
 
 
 #ifndef G4MolecularReactionTable_h
@@ -58,129 +58,137 @@ class G4VDNAReactionModel ;
 class G4DNAMolecularReactionTable;
 
 /**
-  * G4DNAMolecularReactionData contains the information
-  * relative to a given reaction (eg : °OH + °OH -> H2O2)
-  */
+ * G4DNAMolecularReactionData contains the information
+ * relative to a given reaction (eg : °OH + °OH -> H2O2)
+ */
 
 class G4DNAMolecularReactionData
 {
-public :
-    G4DNAMolecularReactionData(G4double reactionRate,
-                            const G4Molecule* reactive1,
-                            const G4Molecule* reactive2);
-
-    G4DNAMolecularReactionData(G4double reactionRate,
-                            const G4String& reactive1,
-                            const G4String& reactive2);
-    ~G4DNAMolecularReactionData();
-
-    const G4Molecule* GetReactive1() const { return fReactive1; }
-    const G4Molecule* GetReactive2() const { return fReactive2; }
-
-    G4double GetReactionRate() const {return fReactionRate;}
-    G4double GetReducedReactionRadius() const {return fReducedReactionRadius;}
-
-    //_____________________________________________________
-    void SetReactive1(const G4Molecule* reactive) ;
-    void SetReactive2(const G4Molecule* reactive) ;
-    void SetReactive(const G4Molecule* reactive1, const G4Molecule* reactive2);
-    void AddProduct(const G4Molecule* molecule);
-
-    void SetReactive1(const G4String& reactive) ;
-    void SetReactive2(const G4String& reactive) ;
-    void SetReactive(const G4String& reactive1, const G4String& reactive2);
-    void AddProduct(const G4String& molecule);
-
-    G4int GetNbProducts() const
-    {
-        if(fProducts) return fProducts->size();
-        return 0;
-    }
-
-    const G4Molecule* GetProduct(G4int i) const
-    {
-        if(fProducts) return (*fProducts)[i];
-        return 0;
-    }
-
-protected :
-    G4DNAMolecularReactionData();
-    const G4Molecule* fReactive1;
-    const G4Molecule* fReactive2;
-    G4double fReactionRate;
-    G4double fReducedReactionRadius;
-
-    std::vector<const G4Molecule*>* fProducts;
+  public :
+  G4DNAMolecularReactionData(G4double reactionRate,
+                             const G4Molecule* reactive1,
+                             const G4Molecule* reactive2);
+  
+  G4DNAMolecularReactionData(G4double reactionRate,
+                             const G4String& reactive1,
+                             const G4String& reactive2);
+  ~G4DNAMolecularReactionData();
+  
+  const G4Molecule* GetReactive1() const { return fReactive1; }
+  const G4Molecule* GetReactive2() const { return fReactive2; }
+  
+  G4double GetReactionRate() const {return fReactionRate;}
+  G4double GetReducedReactionRadius() const {return fReducedReactionRadius;}
+  
+  //_____________________________________________________
+  void SetReactive1(const G4Molecule* reactive) ;
+  void SetReactive2(const G4Molecule* reactive) ;
+  void SetReactive(const G4Molecule* reactive1, const G4Molecule* reactive2);
+  void AddProduct(const G4Molecule* molecule);
+  
+  void SetReactive1(const G4String& reactive) ;
+  void SetReactive2(const G4String& reactive) ;
+  void SetReactive(const G4String& reactive1, const G4String& reactive2);
+  void AddProduct(const G4String& molecule);
+  
+  G4int GetNbProducts() const
+  {
+    if(fProducts) return fProducts->size();
+    return 0;
+  }
+  
+  const G4Molecule* GetProduct(G4int i) const
+  {
+    if(fProducts) return (*fProducts)[i];
+    return 0;
+  }
+  
+  protected :
+  G4DNAMolecularReactionData();
+  const G4Molecule* fReactive1;
+  const G4Molecule* fReactive2;
+  G4double fReactionRate;
+  G4double fReducedReactionRadius;
+  
+  std::vector<const G4Molecule*>* fProducts;
 };
 
 struct compMoleculeP
 {
-    bool operator () (const G4Molecule* molecule1, const G4Molecule* molecule2) const
-    {
-        return *molecule1<*molecule2;
-    }
+  bool operator () (const G4Molecule* molecule1, const G4Molecule* molecule2) const
+  {
+    return *molecule1<*molecule2;
+  }
 };
 
 /**
-  * G4DNAMolecularReactionTable sorts out the G4DNAMolecularReactionData
-  * for bimolecular reaction
-  */
+ * G4DNAMolecularReactionTable sorts out the G4DNAMolecularReactionData
+ * for bimolecular reaction
+ */
 
 class G4DNAMolecularReactionTable : public G4ITReactionTable
 {
 protected:
-    G4DNAMolecularReactionTable();
-    static G4DNAMolecularReactionTable* fInstance;
-//    static G4ThreadLocal G4DNAMolecularReactionTable* fInstance;
-
-public :
-    static G4DNAMolecularReactionTable* GetReactionTable();
-    static void DeleteInstance();
-    virtual ~G4DNAMolecularReactionTable();
-
-    /**
-    * Define a reaction :
-    * First argument : reaction rate
-    * Second argument : reactant 1
-    * Third argument : reactant 2
-    * Fourth argument : a std std::vector holding the molecular products
-    * if this last argument is NULL then it will be interpreted as
-    * a reaction giving no products
-    */
-    void SetReaction(G4double observedReactionRate,
-                     const G4Molecule* reactive1, const G4Molecule* reactive2);
-
-    void SetReaction(G4DNAMolecularReactionData*);
-
-    const G4DNAMolecularReactionData* GetReactionData(const G4Molecule*, const G4Molecule*) const;
-
-    //_________________________________________________________________
-    /**
-     * Given a molecule's type, it returns with which a reaction is allowed
-     */
-    const std::vector<const G4Molecule*>* CanReactWith(const G4Molecule* aMolecule) const ;
-    const std::map<const G4Molecule*, const G4DNAMolecularReactionData*, compMoleculeP>* GetReativesNData(const G4Molecule* aMolecule) const ;
-    const std::vector<const G4DNAMolecularReactionData*>* GetReactionData(const G4Molecule*) const ;
-
-    //_________________________________________________________________
-    void PrintTable(G4VDNAReactionModel* = 0);
-
-protected :
-    const G4MoleculeHandleManager* fMoleculeHandleManager;
-    G4bool fVerbose;
-
-    //_________________________________________________
-    typedef std::map<const G4Molecule*,
-                        std::map<const G4Molecule*,
-                                 const G4DNAMolecularReactionData*,
-                                 compMoleculeP>,
-                    compMoleculeP > ReactionDataMap;
-    typedef std::map<const G4Molecule*,std::vector<const G4Molecule*>,compMoleculeP> ReactivesMV ;
-    typedef std::map<const G4Molecule*,std::vector<const G4DNAMolecularReactionData*>,compMoleculeP> ReactionDataMV ;
-
-    ReactionDataMap fReactionData;
-    ReactivesMV     fReactivesMV;
-    ReactionDataMV  fReactionDataMV;
+  G4DNAMolecularReactionTable();
+  static G4DNAMolecularReactionTable* fInstance;
+  //    static G4ThreadLocal G4DNAMolecularReactionTable* fInstance;
+  
+  public :
+  static G4DNAMolecularReactionTable* GetReactionTable();
+  static void DeleteInstance();
+  virtual ~G4DNAMolecularReactionTable();
+  
+  /**
+   * Define a reaction :
+   * First argument : reaction rate
+   * Second argument : reactant 1
+   * Third argument : reactant 2
+   * Fourth argument : a std std::vector holding the molecular products
+   * if this last argument is NULL then it will be interpreted as
+   * a reaction giving no products
+   */
+  void SetReaction(G4double observedReactionRate,
+                   const G4Molecule* reactive1, const G4Molecule* reactive2);
+  
+  void SetReaction(G4DNAMolecularReactionData*);
+  
+  const G4DNAMolecularReactionData* GetReactionData(const G4Molecule*,
+                                                    const G4Molecule*) const;
+  
+  //_________________________________________________________________
+  /**
+   * Given a molecule's type, it returns with which a reaction is allowed
+   */
+  const std::vector<const G4Molecule*>* CanReactWith(const G4Molecule*) const ;
+  const std::map<const G4Molecule*,
+                 const G4DNAMolecularReactionData*,
+                 compMoleculeP>* GetReativesNData(const G4Molecule*) const ;
+  const std::vector<const G4DNAMolecularReactionData*>*
+                                      GetReactionData(const G4Molecule*) const ;
+  
+  //_________________________________________________________________
+  void PrintTable(G4VDNAReactionModel* = 0);
+  
+  protected :
+  const G4MoleculeHandleManager* fMoleculeHandleManager;
+  G4bool fVerbose;
+  
+  //_________________________________________________
+  typedef std::map<const G4Molecule*,
+  std::map<const G4Molecule*,
+  const G4DNAMolecularReactionData*,
+  compMoleculeP>,
+  compMoleculeP > ReactionDataMap;
+  typedef std::map<const G4Molecule*,
+                   std::vector<const G4Molecule*>,
+                   compMoleculeP> ReactivesMV ;
+  typedef std::map<const G4Molecule*,
+                   std::vector<const G4DNAMolecularReactionData*>,
+                   compMoleculeP> ReactionDataMV ;
+  
+  ReactionDataMap fReactionData;
+  ReactivesMV     fReactivesMV;
+  ReactionDataMV  fReactionDataMV;
 };
 #endif /*G4MolecularReactionTable_HH*/
 
diff --git a/source/processes/electromagnetic/dna/utils/include/G4VUserChemistryList.hh b/source/processes/electromagnetic/dna/utils/include/G4VUserChemistryList.hh
index f7c62192c62..97d5fa8fb37 100644
--- a/source/processes/electromagnetic/dna/utils/include/G4VUserChemistryList.hh
+++ b/source/processes/electromagnetic/dna/utils/include/G4VUserChemistryList.hh
@@ -50,7 +50,7 @@ class G4DNAMolecularReactionTable;
 class G4VITStepModel;
 class G4MoleculeDefinition;
 
-class G4VPhysicsContructor;
+class G4VPhysicsConstructor;
 
 class G4VUserChemistryList
 {
@@ -62,7 +62,7 @@ public:
   // please put this flag to true
   virtual bool IsPhysicsConstructor()
   {
-    if((G4VPhysicsContructor*)(this)) return true;
+    if((G4VPhysicsConstructor*)(this)) return true;
     return false;
   }
 
diff --git a/source/processes/electromagnetic/dna/utils/src/G4DNAChemistryManager.cc b/source/processes/electromagnetic/dna/utils/src/G4DNAChemistryManager.cc
index 1743c983750..aa43c70e302 100644
--- a/source/processes/electromagnetic/dna/utils/src/G4DNAChemistryManager.cc
+++ b/source/processes/electromagnetic/dna/utils/src/G4DNAChemistryManager.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4DNAChemistryManager.cc 87375 2014-12-02 08:17:28Z gcosmo $
+// $Id: G4DNAChemistryManager.cc 90900 2015-06-11 08:06:17Z gcosmo $
 //
 // Author: Mathieu Karamitros (kara@cenbg.in2p3.fr)
 //
@@ -238,6 +238,16 @@ void G4DNAChemistryManager::SetNewValue(G4UIcommand* command, G4String value)
   }
 }
 
+G4String G4DNAChemistryManager::GetCurrentValue(G4UIcommand* command)
+{
+  if (command == fpActivateChem)
+  {
+    return G4UIcmdWithABool::ConvertToString(fActiveChemistry);
+  }
+
+  return "";
+}
+
 void G4DNAChemistryManager::Run()
 {
   if (fActiveChemistry)
diff --git a/source/processes/electromagnetic/dna/utils/src/G4DNAMolecularReactionTable.cc b/source/processes/electromagnetic/dna/utils/src/G4DNAMolecularReactionTable.cc
index 46ed2c4f92f..9a19ffac1a3 100644
--- a/source/processes/electromagnetic/dna/utils/src/G4DNAMolecularReactionTable.cc
+++ b/source/processes/electromagnetic/dna/utils/src/G4DNAMolecularReactionTable.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4DNAMolecularReactionTable.cc 85244 2014-10-27 08:24:13Z gcosmo $
+// $Id: G4DNAMolecularReactionTable.cc 90769 2015-06-09 10:33:41Z gcosmo $
 //
 // Author: Mathieu Karamitros (kara (AT) cenbg . in2p3 . fr) 
 //
@@ -96,7 +96,7 @@ G4DNAMolecularReactionData::G4DNAMolecularReactionData(G4double reactionRate,
   {
     sumDiffCoeff = reactive1->GetDiffusionCoefficient();
     fReducedReactionRadius = fReactionRate
-        / (4 * pi * reactive1->GetDiffusionCoefficient() * Avogadro);
+        / (4 * pi * sumDiffCoeff * Avogadro);
   }
   else
   {
@@ -121,7 +121,7 @@ G4DNAMolecularReactionData::G4DNAMolecularReactionData(G4double reactionRate,
   {
     sumDiffCoeff = fReactive1->GetDiffusionCoefficient();
     fReducedReactionRadius = fReactionRate
-        / (4 * pi * fReactive1->GetDiffusionCoefficient() * Avogadro);
+        / (4 * pi * sumDiffCoeff * Avogadro);
   }
   else
   {
diff --git a/source/processes/electromagnetic/highenergy/History b/source/processes/electromagnetic/highenergy/History
index 8247fd3c35e..b5e720a0f87 100644
--- a/source/processes/electromagnetic/highenergy/History
+++ b/source/processes/electromagnetic/highenergy/History
@@ -1,4 +1,4 @@
-$Id: History 88977 2015-03-17 10:03:17Z gcosmo $
+$Id: History 90577 2015-06-04 09:49:57Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,6 +17,9 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+28 April 2015: V.Ivant (emhighenergy-V10-00-07)
+- G4eeTo3PiModel - do not use default constructor of G4LorentzVector
+
 20 Feb 2015: V.Ivant (emhighenergy-V10-00-06)
 - G4eeTo3PiModel - increased majoranta for sampling of 3-body final
     state; fixed bug in sampling
diff --git a/source/processes/electromagnetic/highenergy/src/G4eeTo3PiModel.cc b/source/processes/electromagnetic/highenergy/src/G4eeTo3PiModel.cc
index f5206785b2b..4084a007243 100644
--- a/source/processes/electromagnetic/highenergy/src/G4eeTo3PiModel.cc
+++ b/source/processes/electromagnetic/highenergy/src/G4eeTo3PiModel.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4eeTo3PiModel.cc 88977 2015-03-17 10:03:17Z gcosmo $
+// $Id: G4eeTo3PiModel.cc 90577 2015-06-04 09:49:57Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -110,7 +110,7 @@ void G4eeTo3PiModel::SampleSecondaries(std::vector<G4DynamicParticle*>* newp,
   G4double x0 = massPi0/e;
   G4double x1 = massPi/e;
 
-  G4LorentzVector w0, w1, w2;
+  G4LorentzVector w0(0.,0.,0.,0.), w1(0.,0.,0.,0.), w2(0.,0.,0.,0.);
   G4ThreeVector dir0, dir1;
   G4double e0, p0, e2, p, gg, m01, m02, m12;
 
diff --git a/source/processes/electromagnetic/lowenergy/History b/source/processes/electromagnetic/lowenergy/History
index b3d8f17db4d..b381a86d5a3 100644
--- a/source/processes/electromagnetic/lowenergy/History
+++ b/source/processes/electromagnetic/lowenergy/History
@@ -1,4 +1,4 @@
-$Id: History 88975 2015-03-17 10:00:42Z gcosmo $
+$Id: History 90578 2015-06-04 09:55:07Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,6 +17,11 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+30.04.2015 V. Ivanchenko, tag emlowen-V10-00-24
+           - G4EMDataSet - fixed Coverity warnings
+           - G4LivermorePhotoElectricModel - implement the same protection as in
+               standard model to avoid rare precision lost in de-excitation
+
 05.12.2014 G. Cosmo, tag emlowen-V10-00-23
            - Corrected sources.cmake to include missing files:
              G4hSRIM2000p.hh
diff --git a/source/processes/electromagnetic/lowenergy/src/G4EMDataSet.cc b/source/processes/electromagnetic/lowenergy/src/G4EMDataSet.cc
index fa161fd909f..a47cdba26ce 100644
--- a/source/processes/electromagnetic/lowenergy/src/G4EMDataSet.cc
+++ b/source/processes/electromagnetic/lowenergy/src/G4EMDataSet.cc
@@ -99,17 +99,16 @@ G4EMDataSet::G4EMDataSet(G4int argZ,
   pdf(0),
   randomSet(random)
 {
-  if (algorithm == 0) {
+  if (!algorithm || !energies || !data) {
     G4Exception("G4EMDataSet::G4EMDataSet",
 		    "em1012",FatalException,"interpolation == 0");
-  } else if ((energies == 0) ^ (data == 0)) {
-    G4Exception("G4EMDataSet::G4EMDataSet",
-		    "em1012",FatalException,"different size for energies and data (zero case)");
-  } else if (energies->size() != data->size()) { 
-    G4Exception("G4EMDataSet::G4EMDataSet",
-		    "em1012",FatalException,"different size for energies and data");
-  } else if (randomSet) {
-    BuildPdf();
+  } else {
+    if (energies->size() != data->size()) { 
+      G4Exception("G4EMDataSet::G4EMDataSet",
+		  "em1012",FatalException,"different size for energies and data");
+    } else if (randomSet) {
+      BuildPdf();
+    }
   }
 }
 
@@ -133,27 +132,21 @@ G4EMDataSet::G4EMDataSet(G4int argZ,
   pdf(0),
   randomSet(random)
 {
-  if (algorithm == 0) {
+  if (!algorithm || !energies || !data || !log_energies || !log_data) {
     G4Exception("G4EMDataSet::G4EMDataSet",
 		    "em1012",FatalException,"interpolation == 0");
-  } else if ((energies == 0) ^ (data == 0)) {
-    G4Exception("G4EMDataSet::G4EMDataSet",
-		    "em1012",FatalException,"different size for energies and data (zero case)");
-  } else if (energies->size() != data->size()) { 
-    G4Exception("G4EMDataSet::G4EMDataSet",
-		    "em1012",FatalException,"different size for energies and data");
-  } else if ((log_energies == 0) ^ (log_data == 0)) {
-    G4Exception("G4EMDataSet::G4EMDataSet",
-		    "em1012",FatalException,"different size for log energies and log data (zero case)");
-  } else if (log_energies->size() != log_data->size()) {
-    G4Exception("G4EMDataSet::G4EMDataSet",
-		    "em1012",FatalException,"different size for log energies and log data");
-  } else if (randomSet) {
-    BuildPdf();
+  } else {
+    if ((energies->size() != data->size()) ||
+	(energies->size() != log_energies->size()) ||
+	(energies->size() != log_data->size())) { 
+      G4Exception("G4EMDataSet::G4EMDataSet",
+		  "em1012",FatalException,"different size for energies and data");
+    } else if (randomSet) {
+      BuildPdf();
+    }
   }
 }
 
-
 G4EMDataSet::~G4EMDataSet()
 { 
   delete algorithm;
@@ -164,16 +157,9 @@ G4EMDataSet::~G4EMDataSet()
   delete log_data; 
 }
 
-
 G4double G4EMDataSet::FindValue(G4double energy, G4int /* componentId */) const
 {
-  if (!energies) {
-   G4Exception("G4EMDataSet::FindValue",
-		    "em1012",FatalException,"energies == 0");
-    return 0.0;
-  } else if (energies->empty()) {
-    return 0.0;
-  } else if (energy <= (*energies)[0]) {
+  if (energy <= (*energies)[0]) {
     return (*data)[0];
   }
   size_t i = energies->size()-1;
@@ -189,48 +175,40 @@ G4double G4EMDataSet::FindValue(G4double energy, G4int /* componentId */) const
   return algorithm->Calculate(energy, FindLowerBound(energy), *energies, *data);
 }
 
-
 void G4EMDataSet::PrintData(void) const
 {
-  if (!energies)
-    {
-      G4cout << "Data not available." << G4endl;
-    }
-  else
+  size_t size = energies->size();
+  for (size_t i(0); i<size; i++)
     {
-      size_t size = energies->size();
-      for (size_t i(0); i<size; i++)
-	{
-	  G4cout << "Point: " << ((*energies)[i]/unitEnergies)
-		 << " - Data value: " << ((*data)[i]/unitData);
-	  if (pdf != 0) G4cout << " - PDF : " << (*pdf)[i];
-	  G4cout << G4endl; 
-	}
+      G4cout << "Point: " << ((*energies)[i]/unitEnergies)
+	     << " - Data value: " << ((*data)[i]/unitData);
+      if (pdf != 0) G4cout << " - PDF : " << (*pdf)[i];
+      G4cout << G4endl; 
     }
 }
 
-
 void G4EMDataSet::SetEnergiesData(G4DataVector* dataX, 
 				  G4DataVector* dataY, 
 				  G4int /* componentId */)
 {
-  if (energies) { delete energies; }
-  energies = dataX;
-
-  if (data) { delete data; }
-  data = dataY;
- 
-  if ((energies == 0) ^ (data==0)) {
+  if(!dataX || !dataY) {
     G4Exception("G4EMDataSet::SetEnergiesData",
-		    "em1012",FatalException,"different size for energies and data (zero case)");
-    return;
-  } else if (energies == 0) { return; }
-
-  //G4cout << "Size of energies: " << energies->size() << G4endl << "Size of data: " << data->size() << G4endl;
-  if (energies->size() != data->size()) { 
-   G4Exception("G4EMDataSet::SetEnergiesData",
-		    "em1012",FatalException,"different size for energies and data");
-  }
+		    "em1012",FatalException,"new interpolation == 0");
+  } else {
+    if (dataX->size() != dataY->size()) { 
+      G4Exception("G4EMDataSet::SetEnergiesData",
+		  "em1012",FatalException,"different size for energies and data");
+    } else {
+
+      delete energies; 
+      energies = dataX;
+
+      delete data; 
+      data = dataY;
+      //G4cout << "Size of energies: " << energies->size() << G4endl 
+      //<< "Size of data: " << data->size() << G4endl;
+    }
+  } 
 }
 
 void G4EMDataSet::SetLogEnergiesData(G4DataVector* dataX,
@@ -239,54 +217,32 @@ void G4EMDataSet::SetLogEnergiesData(G4DataVector* dataX,
 				     G4DataVector* data_logY,
                                      G4int /* componentId */)
 {
-  //Load of the actual energy and data values  
-  if (energies) { delete energies; }
-  energies = dataX;
-  if (data) { delete data; }
-  data = dataY;
-  //Load of the logarithmic energy and data values
-  if (log_energies) { delete log_energies; }
-  log_energies = data_logX;
-  if (log_data) { delete log_data; }
-  log_data = data_logY;
-
-  //Check if data loaded properly from data files
-  if ( !energies ) {
-    if(data || log_energies || log_data ) { 
-      G4Exception("G4EMDataSet::SetLogEnergiesData",
-		    "em1012",FatalException,"inconsistent data");
-    }
-    return;
+  if(!dataX || !dataY || !data_logX || !data_logY) {
+    G4Exception("G4EMDataSet::SetEnergiesData",
+		    "em1012",FatalException,"new interpolation == 0");
   } else {
-    if ( !data ) {
-      G4Exception("G4EMDataSet::SetLogEnergiesData",
-		    "em1012",FatalException,"only energy, no data");
-      return; 
-    } else if (energies->size() != data->size()) { 
-      G4Exception("G4EMDataSet::SetLogEnergiesData",
-		    "em1012",FatalException,"different size for energies and data");
-      return;
-    }
-    //G4cout << "Size of energies: " << energies->size() << G4endl << "Size of data: " << data->size() << G4endl << G4endl;
-
-    //Check if logarithmic data loaded properly from data files 
-    if ( !log_energies ) {
-      if(log_data) {
-        G4Exception("G4EMDataSet::SetLogEnergiesData",
-		    "em1012",FatalException,"inconsistence of log_data");
-      }
-      return;
+    if (dataX->size() != dataY->size() ||
+	dataX->size() != data_logX->size() ||
+	dataX->size() != data_logY->size()) {
+      G4Exception("G4EMDataSet::SetEnergiesData",
+		  "em1012",FatalException,"different size for energies and data");
     } else {
-      if ( !log_data ) { 
-        G4Exception("G4EMDataSet::SetLogEnergiesData",
-		    "em1012",FatalException,"only log_energies, no data");
-      } else if ((log_energies->size() != log_data->size()) || (log_energies->size() != data->size())) { 
-        G4Exception("G4EMDataSet::SetLogEnergiesData",
-		    "em1012",FatalException,"different size for log energies and data");
-      }
+
+      delete energies; 
+      energies = dataX;
+
+      delete data; 
+      data = dataY;
+
+      delete log_energies; 
+      log_energies = data_logX;
+
+      delete log_data; 
+      log_data = data_logY;
+      //G4cout << "Size of energies: " << energies->size() << G4endl 
+      //<< "Size of data: " << data->size() << G4endl;
     }
-  }
-  //G4cout << "Size of log energies: " << log_energies->size() << G4endl << "Size of log data: " << log_data->size() << G4endl;  
+  } 
 }
 
 G4bool G4EMDataSet::LoadData(const G4String& fileName)
diff --git a/source/processes/electromagnetic/lowenergy/src/G4LivermorePhotoElectricModel.cc b/source/processes/electromagnetic/lowenergy/src/G4LivermorePhotoElectricModel.cc
index 4bb41781251..6e0afc1fcca 100644
--- a/source/processes/electromagnetic/lowenergy/src/G4LivermorePhotoElectricModel.cc
+++ b/source/processes/electromagnetic/lowenergy/src/G4LivermorePhotoElectricModel.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4LivermorePhotoElectricModel.cc 83410 2014-08-21 15:17:53Z gcosmo $
+// $Id: G4LivermorePhotoElectricModel.cc 90578 2015-06-04 09:55:07Z gcosmo $
 //
 //
 // Author: Sebastien Incerti
@@ -394,14 +394,30 @@ G4LivermorePhotoElectricModel::SampleSecondaries(
   if(shell) {
     G4int index = couple->GetIndex();
     if(fAtomDeexcitation->CheckDeexcitationActiveRegion(index)) {
-      size_t nbefore = fvect->size();
+      G4int nbefore = fvect->size();
 
       fAtomDeexcitation->GenerateParticles(fvect, shell, Z, index);
-      size_t nafter = fvect->size();
+      G4int nafter = fvect->size();
       if(nafter > nbefore) {
-	for (size_t j=nbefore; j<nafter; ++j) {
-	  edep -= ((*fvect)[j])->GetKineticEnergy();
-	} 
+	G4double esec = 0.0;
+	for (G4int j=nbefore; j<nafter; ++j) {
+
+	  G4double e = ((*fvect)[j])->GetKineticEnergy();
+	  if(esec + e > edep) {
+	    // correct energy in order to have energy balance
+	    e = edep - esec;
+	    ((*fvect)[j])->SetKineticEnergy(e);
+	    esec += e;
+	    // delete the rest of secondaries (should not happens)
+	    for (G4int jj=nafter-1; jj>j; --jj) { 
+	      delete (*fvect)[jj]; 
+	      fvect->pop_back(); 
+	    }
+	    break;	      
+	  }
+	  esec += e; 
+	}
+        edep -= esec;
       }
     }
   }
diff --git a/source/processes/electromagnetic/lowenergy/src/G4LowEWentzelVIModel.cc b/source/processes/electromagnetic/lowenergy/src/G4LowEWentzelVIModel.cc
index 2ce2838cbe1..5fdd1d6b471 100644
--- a/source/processes/electromagnetic/lowenergy/src/G4LowEWentzelVIModel.cc
+++ b/source/processes/electromagnetic/lowenergy/src/G4LowEWentzelVIModel.cc
@@ -96,7 +96,7 @@ G4double G4LowEWentzelVIModel::ComputeTruePathLengthLimit(
   tlimit = std::min(tlimit, currentRange);
 
   // stop here if small range particle
-  if(inside || tlimit < tlimitminfix) { 
+  if(tlimit < tlimitminfix) { 
     return ConvertTrueToGeom(tlimit, currentMinimalStep); 
   }
 
@@ -104,7 +104,6 @@ G4double G4LowEWentzelVIModel::ComputeTruePathLengthLimit(
   G4double presafety = sp->GetSafety();
   // far from geometry boundary
   if(currentRange < presafety) {
-    inside = true;  
     return ConvertTrueToGeom(tlimit, currentMinimalStep);
   }
 
@@ -113,7 +112,6 @@ G4double G4LowEWentzelVIModel::ComputeTruePathLengthLimit(
   if(stepStatus != fGeomBoundary && presafety < tlimitminfix) {
     presafety = ComputeSafety(sp->GetPosition(), tlimit); 
     if(currentRange < presafety) {
-      inside = true;  
       return ConvertTrueToGeom(tlimit, currentMinimalStep);
     }
   }
diff --git a/source/processes/electromagnetic/standard/History b/source/processes/electromagnetic/standard/History
index 835bd323119..483488db882 100644
--- a/source/processes/electromagnetic/standard/History
+++ b/source/processes/electromagnetic/standard/History
@@ -1,4 +1,4 @@
-$Id: History 88979 2015-03-17 10:10:21Z gcosmo $
+$Id: History 91130 2015-06-22 12:34:29Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -18,6 +18,29 @@ committal in the CVS repository !
 
      ----------------------------------------------------------
 
+30 April 15:  V.Ivanchenko (emstand-V10-00-57)
+- G4WentzelVIModel - repeat check on safety for each new step,
+    in SampleScattering optimized use of random engine
+- G4PAIModel, G4PAIModelData, G4PAIPhotModel, G4PAIPhotModelData - 
+    (V.Grichine) last part of fixes for the problem report #1731:
+    when next run is initialized old data class is deleted and
+    a new one is created
+
+28 April 15: V.Ivanchenko
+- G4WentzelOKandVIxSection - improved angular sampling
+
+27 April 15: V.Ivanchenko
+- G4UniversalFluctuation, G4KleinNishinaCompton,
+  G4KleinNishinaModel - defined pointer to random engine locally
+
+24 April 15: V.Ivanchenko
+- G4PAIModel, G4PAIModelData - fixes of problem report #1731:
+    cuts are not used in Initialise method but only in run time methods;
+    added copy of vector of G4MaterialCutsCouple from master to worker
+    threads 
+- G4KleinNishinaModel, G4WentzelOKandVIxSection - accurate 
+    initialisation of G4ThreeVectors and G4LorentzVector in constructors
+
 16 January 15: V.Ivanchenko (emstand-V10-00-53)
 - G4UniversalFluctuation - switch to use 
   G4Random::getTheEngine() to have more clean code 
diff --git a/source/processes/electromagnetic/standard/include/G4PAIModel.hh b/source/processes/electromagnetic/standard/include/G4PAIModel.hh
index c2c4c3ca660..3efab2b243f 100644
--- a/source/processes/electromagnetic/standard/include/G4PAIModel.hh
+++ b/source/processes/electromagnetic/standard/include/G4PAIModel.hh
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4PAIModel.hh 73607 2013-09-02 10:04:03Z gcosmo $
+// $Id: G4PAIModel.hh 90583 2015-06-04 11:16:41Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -112,6 +112,8 @@ public:
 
   inline G4PAIModelData* GetPAIModelData();
 
+  inline const std::vector<const G4MaterialCutsCouple*>& GetVectorOfCouples();
+
   inline G4double ComputeMaxEnergy(G4double scaledEnergy);
 
   inline void SetVerboseLevel(G4int verbose);
@@ -146,8 +148,6 @@ private:
   G4double fMass;
   G4double fRatio;
   G4double fChargeSquare;
-
-  G4bool   isInitialised;
 };
 
 inline G4PAIModelData* G4PAIModel::GetPAIModelData()
@@ -155,6 +155,12 @@ inline G4PAIModelData* G4PAIModel::GetPAIModelData()
   return fModelData;
 }
 
+inline const std::vector<const G4MaterialCutsCouple*>& 
+G4PAIModel::GetVectorOfCouples()
+{
+  return fMaterialCutsCoupleVector;
+}
+
 inline G4double G4PAIModel::ComputeMaxEnergy(G4double scaledEnergy)
 {
   return MaxSecondaryEnergy(fParticle, scaledEnergy/fRatio);
diff --git a/source/processes/electromagnetic/standard/include/G4PAIModelData.hh b/source/processes/electromagnetic/standard/include/G4PAIModelData.hh
index aef7f2ff3e3..873b98653bd 100644
--- a/source/processes/electromagnetic/standard/include/G4PAIModelData.hh
+++ b/source/processes/electromagnetic/standard/include/G4PAIModelData.hh
@@ -74,7 +74,7 @@ public:
 
   ~G4PAIModelData();
 
-  void Initialise(const G4MaterialCutsCouple*, G4double cut, G4PAIModel*);
+  void Initialise(const G4MaterialCutsCouple*, G4PAIModel*);
 
   G4double DEDXPerVolume(G4int coupleIndex, G4double scaledTkin,
 			 G4double cut) const;
@@ -84,11 +84,12 @@ public:
 
   G4double SampleAlongStepTransfer(G4int coupleIndex, G4double kinEnergy,
 				   G4double scaledTkin,
+				   G4double tmax,
 				   G4double stepFactor) const;
 
   G4double SamplePostStepTransfer(G4int coupleIndex, 
 				  G4double scaledTkin, 
-				  G4double scaledTmax) const;
+				  G4double tmin, G4double tmax) const;
 
 private:
 
@@ -111,8 +112,8 @@ private:
   std::vector<G4PhysicsTable*>      fPAIxscBank;
   std::vector<G4PhysicsTable*>      fPAIdEdxBank;
   std::vector<G4PhysicsLogVector*>  fdEdxTable;
-  std::vector<G4PhysicsLogVector*>  fdNdxCutTable;
-  std::vector<G4PhysicsLogVector*>  fdEdxCutTable;
+  //  std::vector<G4PhysicsLogVector*>  fdNdxCutTable;
+  //std::vector<G4PhysicsLogVector*>  fdEdxCutTable;
 
 };
 
diff --git a/source/processes/electromagnetic/standard/include/G4PAIPhotModel.hh b/source/processes/electromagnetic/standard/include/G4PAIPhotModel.hh
index e8e2130b174..53c8d9e2b35 100644
--- a/source/processes/electromagnetic/standard/include/G4PAIPhotModel.hh
+++ b/source/processes/electromagnetic/standard/include/G4PAIPhotModel.hh
@@ -107,6 +107,8 @@ public:
 
   inline G4PAIPhotData* GetPAIPhotData();
 
+  inline const std::vector<const G4MaterialCutsCouple*>& GetVectorOfCouples();
+
   inline G4double ComputeMaxEnergy(G4double scaledEnergy);
 
   inline void SetVerboseLevel(G4int verbose);
@@ -141,8 +143,6 @@ private:
   G4double fMass;
   G4double fRatio;
   G4double fChargeSquare;
-
-  G4bool   isInitialised;
 };
 
 inline G4PAIPhotData* G4PAIPhotModel::GetPAIPhotData()
@@ -150,6 +150,12 @@ inline G4PAIPhotData* G4PAIPhotModel::GetPAIPhotData()
   return fModelData;
 }
 
+inline const std::vector<const G4MaterialCutsCouple*>& 
+G4PAIPhotModel::GetVectorOfCouples()
+{
+  return fMaterialCutsCoupleVector;
+}
+
 inline G4double G4PAIPhotModel::ComputeMaxEnergy(G4double scaledEnergy)
 {
   return MaxSecondaryEnergy(fParticle, scaledEnergy/fRatio);
diff --git a/source/processes/electromagnetic/standard/src/G4KleinNishinaCompton.cc b/source/processes/electromagnetic/standard/src/G4KleinNishinaCompton.cc
index de169580a81..93518d6d36e 100644
--- a/source/processes/electromagnetic/standard/src/G4KleinNishinaCompton.cc
+++ b/source/processes/electromagnetic/standard/src/G4KleinNishinaCompton.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4KleinNishinaCompton.cc 82754 2014-07-08 14:06:13Z gcosmo $
+// $Id: G4KleinNishinaCompton.cc 90583 2015-06-04 11:16:41Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -176,6 +176,8 @@ void G4KleinNishinaCompton::SampleSecondaries(
   G4double alpha1     = - G4Log(eps0);
   G4double alpha2     = 0.5*(1.- epsilon0sq);
 
+  rndmEngineMod = G4Random::getTheEngine();
+
   G4int nloop = 0;
   do {
     ++nloop;
diff --git a/source/processes/electromagnetic/standard/src/G4KleinNishinaModel.cc b/source/processes/electromagnetic/standard/src/G4KleinNishinaModel.cc
index 4c71e015efc..e19a7513063 100644
--- a/source/processes/electromagnetic/standard/src/G4KleinNishinaModel.cc
+++ b/source/processes/electromagnetic/standard/src/G4KleinNishinaModel.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4KleinNishinaModel.cc 88979 2015-03-17 10:10:21Z gcosmo $
+// $Id: G4KleinNishinaModel.cc 90583 2015-06-04 11:16:41Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -75,7 +75,10 @@ static const G4double dT0 = keV;
 static const G4int nlooplim = 1000;
 
 G4KleinNishinaModel::G4KleinNishinaModel(const G4String& nam)
-  : G4VEmModel(nam)
+  : G4VEmModel(nam), 
+    lv1(0.,0.,0.,0.),
+    lv2(0.,0.,0.,0.),
+    bst(0.,0.,0.)
 {
   theGamma = G4Gamma::Gamma();
   theElectron = G4Electron::Electron();
@@ -191,6 +194,7 @@ void G4KleinNishinaModel::SampleSecondaries(
 
   //static const G4double eminus2 =  1.0 - G4Exp(-2.0);
 
+  rndmEngineMod = G4Random::getTheEngine();
   do {
     ++nloop;
     G4double xprob = totprob*rndmEngineMod->flat();
@@ -349,7 +353,7 @@ void G4KleinNishinaModel::SampleSecondaries(
 		   << "  Eshell(keV)= " << shell->BindingEnergy()/keV 
 		   << G4endl;
 	  */
-	  // delete the rest of secondaries
+	  // delete the rest of secondaries (should not happens)
 	  for (G4int jj=nafter-1; jj>j; --jj) { 
 	    delete (*fvect)[jj]; 
 	    fvect->pop_back(); 
diff --git a/source/processes/electromagnetic/standard/src/G4PAIModel.cc b/source/processes/electromagnetic/standard/src/G4PAIModel.cc
index bc6027ca6b5..d2f5f80a861 100644
--- a/source/processes/electromagnetic/standard/src/G4PAIModel.cc
+++ b/source/processes/electromagnetic/standard/src/G4PAIModel.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4PAIModel.cc 83400 2014-08-21 14:48:50Z gcosmo $
+// $Id: G4PAIModel.cc 90583 2015-06-04 11:16:41Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -54,14 +54,9 @@
 #include "G4SystemOfUnits.hh"
 #include "G4PhysicalConstants.hh"
 #include "G4Region.hh"
-#include "G4PhysicsLogVector.hh"
-#include "G4PhysicsFreeVector.hh"
-#include "G4PhysicsTable.hh"
-#include "G4ProductionCutsTable.hh"
 #include "G4MaterialCutsCouple.hh"
 #include "G4MaterialTable.hh"
-#include "G4SandiaTable.hh"
-#include "G4OrderedTable.hh"
+#include "G4RegionStore.hh"
 
 #include "Randomize.hh"
 #include "G4Electron.hh"
@@ -95,8 +90,6 @@ G4PAIModel::G4PAIModel(const G4ParticleDefinition* p, const G4String& nam)
 
   // default generator
   SetAngularDistribution(new G4DeltaAngle());
-
-  isInitialised = false;
 }
 
 ////////////////////////////////////////////////////////////////////////////
@@ -114,28 +107,35 @@ void G4PAIModel::Initialise(const G4ParticleDefinition* p,
   if(fVerbose > 0) {
     G4cout<<"G4PAIModel::Initialise for "<<p->GetParticleName()<<G4endl;
   }
-
-  if(isInitialised) { return; }
-  isInitialised = true;
-
   SetParticle(p);
   fParticleChange = GetParticleChangeForLoss();
 
   if(IsMaster()) { 
 
-    InitialiseElementSelectors(p, cuts);
-
-    if(!fModelData) {
-
-      G4double tmin = LowEnergyLimit()*fRatio;
-      G4double tmax = HighEnergyLimit()*fRatio;
-      fModelData = new G4PAIModelData(tmin, tmax, fVerbose);
-    }
+    delete fModelData;      
+    fMaterialCutsCoupleVector.clear(); 
+    if(fVerbose > 0) {
+      G4cout << "G4PAIModel instantiates data for  " << p->GetParticleName()
+	     << G4endl;
+    }  
+    G4double tmin = LowEnergyLimit()*fRatio;
+    G4double tmax = HighEnergyLimit()*fRatio;
+    fModelData = new G4PAIModelData(tmin, tmax, fVerbose);
+  
     // Prepare initialization
     const G4MaterialTable* theMaterialTable = G4Material::GetMaterialTable();
     size_t numOfMat   = G4Material::GetNumberOfMaterials();
     size_t numRegions = fPAIRegionVector.size();
 
+    // protect for unit tests
+    if(0 == numRegions) {
+      G4Exception("G4PAIModel::Initialise()","em0106",JustWarning,
+                  "no G4Regions are registered for the PAI model - World is used");
+      fPAIRegionVector.push_back(G4RegionStore::GetInstance()
+				 ->GetRegion("DefaultRegionForTheWorld", false));
+      numRegions = 1;
+    }
+
     if(fVerbose > 0) {
       G4cout << "G4PAIModel is defined for " << numRegions << " regions "   
 	     << G4endl;
@@ -178,21 +178,24 @@ void G4PAIModel::Initialise(const G4ParticleDefinition* p,
 	  //G4cout << "   isNew: " << isnew << "  " << cutCouple << G4endl;
 	  if(isnew) { 
 	    fMaterialCutsCoupleVector.push_back(cutCouple); 
-	    G4double deltaCutInKinEnergy = cuts[cutCouple->GetIndex()];
-	    fModelData->Initialise(cutCouple, deltaCutInKinEnergy, this);
+	    fModelData->Initialise(cutCouple, this);
 	  }
 	}
       }
     }
+    InitialiseElementSelectors(p, cuts);
   }
 }
 
 /////////////////////////////////////////////////////////////////////////
 
-void G4PAIModel::InitialiseLocal(const G4ParticleDefinition*, 
+void G4PAIModel::InitialiseLocal(const G4ParticleDefinition* p, 
 				 G4VEmModel* masterModel)
 {
+  SetParticle(p);
   fModelData = static_cast<G4PAIModel*>(masterModel)->GetPAIModelData();
+  fMaterialCutsCoupleVector = 
+    static_cast<G4PAIModel*>(masterModel)->GetVectorOfCouples();
   SetElementSelectors(masterModel->GetElementSelectors());
 }
 
@@ -202,13 +205,11 @@ G4double G4PAIModel::ComputeDEDXPerVolume(const G4Material*,
 					  const G4ParticleDefinition* p,
 					  G4double kineticEnergy,
 					  G4double cutEnergy)
-{
-  /*
-  G4cout << "===1=== " << CurrentCouple() 
-	 << "  idx= " << CurrentCouple()->GetIndex()
-	 << "   " <<  fMaterialCutsCoupleVector[0]
-	 << G4endl;
-  */
+{  
+  //G4cout << "===1=== " << CurrentCouple() 
+  //	 << "  idx= " << CurrentCouple()->GetIndex()
+  //	 << "   " <<  fMaterialCutsCoupleVector[0]
+  //	 << G4endl; 
   G4int coupleIndex = FindCoupleIndex(CurrentCouple());
   //G4cout << "===2=== " << coupleIndex << G4endl;
   if(0 > coupleIndex) { return 0.0; }
@@ -217,7 +218,8 @@ G4double G4PAIModel::ComputeDEDXPerVolume(const G4Material*,
 
   G4double scaledTkin = kineticEnergy*fRatio;
  
-  return fChargeSquare*fModelData->DEDXPerVolume(coupleIndex, scaledTkin, cut);
+  return fChargeSquare*fModelData->DEDXPerVolume(coupleIndex, scaledTkin, 
+						 cut);
 }
 
 /////////////////////////////////////////////////////////////////////////
@@ -228,7 +230,12 @@ G4double G4PAIModel::CrossSectionPerVolume( const G4Material*,
 					    G4double cutEnergy,
 					    G4double maxEnergy  ) 
 {
+  //G4cout << "===3=== " << CurrentCouple() 
+  //	 << "  idx= " << CurrentCouple()->GetIndex()
+  //	 << "   " <<  fMaterialCutsCoupleVector[0]
+  //	 << G4endl; 
   G4int coupleIndex = FindCoupleIndex(CurrentCouple());
+  //G4cout << "===4=== " << coupleIndex << G4endl;
   if(0 > coupleIndex) { return 0.0; }
 
   G4double tmax = std::min(MaxSecondaryEnergy(p, kineticEnergy), maxEnergy);
@@ -238,7 +245,8 @@ G4double G4PAIModel::CrossSectionPerVolume( const G4Material*,
 
   return fChargeSquare*fModelData->CrossSectionPerVolume(coupleIndex, 
 							 scaledTkin, 
-							 cutEnergy, tmax);
+							 cutEnergy, 
+							 tmax);
 }
 
 ///////////////////////////////////////////////////////////////////////////
@@ -253,6 +261,8 @@ void G4PAIModel::SampleSecondaries(std::vector<G4DynamicParticle*>* vdp,
 				   G4double maxEnergy)
 {
   G4int coupleIndex = FindCoupleIndex(matCC);
+
+  //G4cout << "G4PAIModel::SampleSecondaries: coupleIndex= "<<coupleIndex<<G4endl;
   if(0 > coupleIndex) { return; }
 
   SetParticle(dp->GetDefinition());
@@ -268,7 +278,7 @@ void G4PAIModel::SampleSecondaries(std::vector<G4DynamicParticle*>* vdp,
   G4double totalMomentum = sqrt(kineticEnergy*(totalEnergy+fMass));
 
   G4double deltaTkin = 
-    fModelData->SamplePostStepTransfer(coupleIndex, scaledTkin, tmax);
+    fModelData->SamplePostStepTransfer(coupleIndex, scaledTkin, tmin, tmax);
 
   //G4cout<<"G4PAIModel::SampleSecondaries; deltaKIn = "<<deltaTkin/keV
   //	<<" keV "<< " Escaled(MeV)= " << scaledTkin << G4endl;
@@ -304,7 +314,7 @@ void G4PAIModel::SampleSecondaries(std::vector<G4DynamicParticle*>* vdp,
 
 G4double G4PAIModel::SampleFluctuations( const G4MaterialCutsCouple* matCC,
                                          const G4DynamicParticle* aParticle,
-					 G4double, G4double step,
+					 G4double tmax, G4double step,
 					 G4double eloss)
 {
   G4int coupleIndex = FindCoupleIndex(matCC);
@@ -322,7 +332,7 @@ G4double G4PAIModel::SampleFluctuations( const G4MaterialCutsCouple* matCC,
   G4double scaledTkin = Tkin*fRatio;
 
   G4double loss = fModelData->SampleAlongStepTransfer(coupleIndex, Tkin,
-						      scaledTkin,
+						      scaledTkin, tmax,
 						      step*fChargeSquare);
   
   // G4cout<<"PAIModel AlongStepLoss = "<<loss/keV<<" keV, on step = "
@@ -352,18 +362,6 @@ G4double G4PAIModel::Dispersion( const G4Material* material,
                  * electronDensity * q * q;
 
   return siga;
-  /*
-  G4double loss, sumLoss=0., sumLoss2=0., sigma2, meanLoss=0.;
-  for(G4int i = 0; i < fMeanNumber; i++)
-  {
-    loss      = SampleFluctuations(material,aParticle,tmax,step,meanLoss);
-    sumLoss  += loss;
-    sumLoss2 += loss*loss;
-  }
-  meanLoss = sumLoss/fMeanNumber;
-  sigma2   = meanLoss*meanLoss + (sumLoss2-2*sumLoss*meanLoss)/fMeanNumber;
-  return sigma2;
-  */
 }
 
 /////////////////////////////////////////////////////////////////////
@@ -390,6 +388,5 @@ void G4PAIModel::DefineForRegion(const G4Region* r)
   fPAIRegionVector.push_back(r);
 }
 
-//
-//
-/////////////////////////////////////////////////
+///////////////////////////////////////////////////////////////
+
diff --git a/source/processes/electromagnetic/standard/src/G4PAIModelData.cc b/source/processes/electromagnetic/standard/src/G4PAIModelData.cc
index e317220f376..0060d068f6d 100644
--- a/source/processes/electromagnetic/standard/src/G4PAIModelData.cc
+++ b/source/processes/electromagnetic/standard/src/G4PAIModelData.cc
@@ -78,8 +78,8 @@ G4PAIModelData::G4PAIModelData(G4double tmin, G4double tmax, G4int ver)
 						 fTotBin);
   if(0 < ver) {
     G4cout << "### G4PAIModelData: Nbins= " << fTotBin
-	   << " Tlowest(MeV)= " << fLowestKineticEnergy/MeV
-	   << " Tmin(keV)= " << tmin/keV 
+	   << " Tlowest(keV)= " << lowestTkin/keV
+	   << " Tmin(keV)= " << fLowestKineticEnergy/keV 
 	   << " Tmax(GeV)= " << fHighestKineticEnergy/GeV 
 	   << G4endl;
   }
@@ -101,8 +101,6 @@ G4PAIModelData::~G4PAIModelData()
 	delete fPAIdEdxBank[i];
       }
       delete fdEdxTable[i];
-      delete fdNdxCutTable[i];
-      delete fdEdxCutTable[i];
     }
   }
   delete fParticleEnergyVector;
@@ -111,29 +109,17 @@ G4PAIModelData::~G4PAIModelData()
 ///////////////////////////////////////////////////////////////////////////////
 
 void G4PAIModelData::Initialise(const G4MaterialCutsCouple* couple,
-                                G4double cut, G4PAIModel* model)
+                                G4PAIModel* model)
 {
   const G4Material* mat = couple->GetMaterial();     
   fSandia.Initialize(const_cast<G4Material*>(mat));
 
   G4PhysicsTable* PAItransferTable = new G4PhysicsTable(fTotBin+1);
   G4PhysicsTable* PAIdEdxTable = new G4PhysicsTable(fTotBin+1);
-
-  G4PhysicsLogVector* dEdxCutVector =
-    new G4PhysicsLogVector(fLowestKineticEnergy,
-			   fHighestKineticEnergy,
-			   fTotBin);
-
   G4PhysicsLogVector* dEdxMeanVector =
     new G4PhysicsLogVector(fLowestKineticEnergy,
 			   fHighestKineticEnergy,
 			   fTotBin);
-
-  G4PhysicsLogVector* dNdxCutVector = 
-    new G4PhysicsLogVector(fLowestKineticEnergy,
-			   fHighestKineticEnergy,
-			   fTotBin);
-
   // low energy Sandia interval
   G4double Tmin = fSandia.GetSandiaMatTablePAI(0,0); 
 
@@ -150,10 +136,10 @@ void G4PAIModelData::Initialise(const G4MaterialCutsCouple* couple,
     if (Tmax < Tmin + deltaLow ) { Tmax = Tmin + deltaLow; }
 
     fPAIySection.Initialize(mat, Tmax, bg2, &fSandia);
-    /*
-    G4cout << i << ". TransferMax(keV)= "<< Tmax/keV << "  cut(keV)= " 
-    	   << cut/keV << "  E(MeV)= " << kinEnergy/MeV << G4endl;
-    */
+    
+    //G4cout << i << ". TransferMax(keV)= "<< Tmax/keV  
+    //	   << "  E(MeV)= " << kinEnergy/MeV << G4endl;
+    
     G4int n = fPAIySection.GetSplineSize();
     G4int kmin = 0;
     for(G4int k = 0; k < n; ++k) {
@@ -178,10 +164,13 @@ void G4PAIModelData::Initialise(const G4MaterialCutsCouple* couple,
       //else { G4cout << "G4PAIModelData::Initialise Warning: Ekin(MeV)= "
       //		    << t/MeV << " IntegralTransfer= " << tr 
       //		    << " < " << tr0 << G4endl; }
-      transferVector->PutValue(k , t, t*tr);
+      transferVector->PutValue(k, t, t*tr);
       dEdxVector->PutValue(k, t, fPAIySection.GetIntegralPAIdEdx(k+1));
     }
+    //G4cout << "TransferVector:" << G4endl;
     //G4cout << *transferVector << G4endl;
+    //G4cout << "DEDXVector:" << G4endl;
+    //G4cout << *dEdxVector << G4endl;
 
     G4double ionloss = fPAIySection.GetMeanEnergyLoss();//  total <dE/dx>
 
@@ -189,14 +178,6 @@ void G4PAIModelData::Initialise(const G4MaterialCutsCouple* couple,
 
     dEdxMeanVector->PutValue(i,ionloss);
 
-    G4double dNdxCut = transferVector->Value(cut)/cut;
-    G4double dEdxCut = dEdxVector->Value(cut);
-    //G4cout << "i= " << i << " x= " << dNdxCut << G4endl;
-    if(dNdxCut < 0.0) { dNdxCut = 0.0; }
-    if(dEdxCut < 0.0) { dEdxCut = 0.0; }
-    dNdxCutVector->PutValue(i, dNdxCut);
-    dEdxCutVector->PutValue(i, dEdxCut);
-
     PAItransferTable->insertAt(i,transferVector);
     PAIdEdxTable->insertAt(i,dEdxVector);
 
@@ -208,17 +189,13 @@ void G4PAIModelData::Initialise(const G4MaterialCutsCouple* couple,
   } // end of Tkin loop`
   fPAIxscBank.push_back(PAItransferTable);
   fPAIdEdxBank.push_back(PAIdEdxTable);
+  //G4cout << "dEdxMeanVector: " << G4endl;
+  //G4cout << *dEdxMeanVector << G4endl;
   /*
   dEdxMeanVector->SetSpline(true);
   dEdxMeanVector->FillSecondDerivatives();
-  dNdxCutVector->SetSpline(true);
-  dNdxCutVector->FillSecondDerivatives();
-  dEdxCutVector->SetSpline(true);
-  dEdxCutVector->FillSecondDerivatives();
   */
   fdEdxTable.push_back(dEdxMeanVector);
-  fdNdxCutTable.push_back(dNdxCutVector);
-  fdEdxCutTable.push_back(dEdxCutVector);
 }
 
 //////////////////////////////////////////////////////////////////////////////
@@ -230,7 +207,11 @@ G4double G4PAIModelData::DEDXPerVolume(G4int coupleIndex, G4double scaledTkin,
   // iPlace is in interval from 0 to (N-1)
   size_t iPlace = fParticleEnergyVector->FindBin(scaledTkin, 0);
   size_t nPlace = fParticleEnergyVector->GetVectorLength() - 1;
-
+  /*
+  G4cout << "G4PAIModelData::DEDXPerVolume: coupleIdx= " << coupleIndex
+	 << " Tscaled= " << scaledTkin << " cut= " << cut 
+	 << " iPlace= " << iPlace << " nPlace= " << nPlace << G4endl;
+  */
   G4bool one = true;
   if(scaledTkin >= fParticleEnergyVector->Energy(nPlace)) { iPlace = nPlace; }
   else if(scaledTkin > fParticleEnergyVector->Energy(0)) { 
@@ -240,6 +221,7 @@ G4double G4PAIModelData::DEDXPerVolume(G4int coupleIndex, G4double scaledTkin,
   // VI: apply interpolation of the vector
   G4double dEdx = fdEdxTable[coupleIndex]->Value(scaledTkin);
   G4double del  = (*(fPAIdEdxBank[coupleIndex]))(iPlace)->Value(cut);
+  //G4cout << "dEdx= " << dEdx << " del= " << del << G4endl;
   if(!one) {
     G4double del2 = (*(fPAIdEdxBank[coupleIndex]))(iPlace+1)->Value(cut);
     G4double E1 = fParticleEnergyVector->Energy(iPlace); 
@@ -251,8 +233,9 @@ G4double G4PAIModelData::DEDXPerVolume(G4int coupleIndex, G4double scaledTkin,
     del += W2*del2;
   }
   dEdx -= del;
+  //G4cout << "dEdx= " << dEdx << " del= " << del << G4endl;
 
-  if( dEdx < 0.) { dEdx = 0.; }
+  dEdx = std::max(dEdx, 0.); 
   return dEdx;
 }
 
@@ -297,7 +280,7 @@ G4PAIModelData::CrossSectionPerVolume(G4int coupleIndex,
     cross += W2*cross2;
   }
 
-  if( cross < 0.0) { cross = 0.0; }
+  cross = std::max(cross, 0.0); 
   return cross;
 }
 
@@ -306,11 +289,11 @@ G4PAIModelData::CrossSectionPerVolume(G4int coupleIndex,
 G4double G4PAIModelData::SampleAlongStepTransfer(G4int coupleIndex, 
                                                  G4double kinEnergy,
 						 G4double scaledTkin,
+						 G4double tmax,
 						 G4double stepFactor) const
 {
+  //G4cout << "=== G4PAIModelData::SampleAlongStepTransfer" << G4endl;
   G4double loss = 0.0;
-  G4double omega; 
-  G4double position, E1, E2, W1, W2, W, dNdxCut1, dNdxCut2, meanNumber;
 
   size_t iPlace = fParticleEnergyVector->FindBin(scaledTkin, 0);
   size_t nPlace = fParticleEnergyVector->GetVectorLength() - 1;
@@ -320,54 +303,65 @@ G4double G4PAIModelData::SampleAlongStepTransfer(G4int coupleIndex,
   else if(scaledTkin > fParticleEnergyVector->Energy(0)) { 
     one = false; 
   }
-  G4PhysicsLogVector* vcut = fdNdxCutTable[coupleIndex];
+
+  G4double meanNumber = 0.0;
+  G4double meanN11 = 0.0;
+  G4double meanN12 = 0.0;
+  G4double meanN21 = 0.0;
+  G4double meanN22 = 0.0;
+
   G4PhysicsVector* v1 = (*(fPAIxscBank[coupleIndex]))(iPlace);
   G4PhysicsVector* v2 = 0;
 
-  dNdxCut1 = (*vcut)[iPlace];
   G4double e1 = v1->Energy(0);
-  G4double e2 = e1;
+  G4double e2 = std::min(tmax, v1->GetMaxEnergy());
 
-  G4double meanN1 = ((*v1)[0]/e1 - dNdxCut1)*stepFactor;
-  meanNumber = meanN1;
-
-  //G4cout<<"iPlace = "<<iPlace<< " meanN1= " << meanN1 
-  //	<< " dNdxCut1= " << dNdxCut1 << G4endl;
+  if(e2 >= e1) {
+    meanN11 = (*v1)[0]/e1;
+    meanN12 = v1->Value(e2)/e2;
+    meanNumber = (meanN11 - meanN12)*stepFactor;
+  }
+  //G4cout<<"iPlace = "<<iPlace<< " meanN11= " << meanN11
+  //	<< " meanN12= " << meanN12 << G4endl;
 
-  dNdxCut2 = dNdxCut1;
-  W1 = 1.0;
-  W2 = 0.0;
+  G4double W1 = 1.0;
+  G4double W2 = 0.0;
   if(!one) {
     v2 = (*(fPAIxscBank[coupleIndex]))(iPlace+1);
-    dNdxCut2 = (*vcut)[iPlace+1];
-    e2 = v2->Energy(0);
-    G4double meanN2 = ((*v2)[0]/e2 - dNdxCut2)*stepFactor;
-    E1 = fParticleEnergyVector->Energy(iPlace); 
-    E2 = fParticleEnergyVector->Energy(iPlace+1);
-    W = 1.0/(E2 - E1);
-    W1 = (E2 - scaledTkin)*W;
-    W2 = (scaledTkin - E1)*W;
-    meanNumber = W1*meanN1 + W2*meanN2;
-    //G4cout<<"meanN= " <<  meanNumber << " meanN2= " << meanN2 
-    //	  << " dNdxCut2= " << dNdxCut2 << G4endl;
+
+    e1 = v2->Energy(0);
+    e2 = std::min(tmax, v2->GetMaxEnergy());
+    if(e2 >= e1) {
+      meanN21 = (*v2)[0]/e1;
+      meanN22 = v2->Value(e2)/e2;
+      G4double E1 = fParticleEnergyVector->Energy(iPlace); 
+      G4double E2 = fParticleEnergyVector->Energy(iPlace+1);
+      G4double W = 1.0/(E2 - E1);
+      W1 = (E2 - scaledTkin)*W;
+      W2 = (scaledTkin - E1)*W;
+      meanNumber *= W1;
+      meanNumber += (meanN21 - meanN22)*stepFactor*W2;
+    }
   }
-  if(meanNumber < 0.0) { return 0.0; }
 
+  if(meanNumber < 0.0) { return loss; }
   G4int numOfCollisions = G4Poisson(meanNumber);
 
-  //G4cout << "N= " << numOfCollisions << G4endl;
+  //G4cout << "meanNumber= " <<  meanNumber << " N= " << numOfCollisions << G4endl;
 
-  if(0 == numOfCollisions) { return 0.0; }
+  if(0 == numOfCollisions) { return loss; }
 
+  G4double position, omega, omega2;
   for(G4int i=0; i< numOfCollisions; ++i) {
     G4double rand = G4UniformRand();
-    position = dNdxCut1 + ((*v1)[0]/e1 - dNdxCut1)*rand;
+    position = meanN12 + (meanN11 - meanN12)*rand;
     omega = GetEnergyTransfer(coupleIndex, iPlace, position);
     //G4cout << "omega(keV)= " << omega/keV << G4endl;
     if(!one) {
-      position = dNdxCut2 + ((*v2)[0]/e2 - dNdxCut2)*rand;
-      G4double omega2 = GetEnergyTransfer(coupleIndex, iPlace+1, position);
-      omega = omega*W1 + omega2*W2;
+      position = meanN22 + (meanN21 - meanN22)*rand;
+      omega2 = GetEnergyTransfer(coupleIndex, iPlace+1, position);
+      omega *= W1;
+      omega += omega2*W2;
     }
     //G4cout << "omega(keV)= " << omega/keV << G4endl;
 
@@ -375,8 +369,7 @@ G4double G4PAIModelData::SampleAlongStepTransfer(G4int coupleIndex,
     if(loss > kinEnergy) { break; }
   }
   
-  // G4cout<<"PAIModelData AlongStepLoss = "<<loss/keV<<" keV, on step = "
-  //<<step/mm<<" mm"<<G4endl; 
+  //G4cout<<"PAIModelData AlongStepLoss = "<<loss/keV<<" keV"<<G4endl; 
   if(loss > kinEnergy) { loss = kinEnergy; }
   else if(loss < 0.)   { loss = 0.; }
   return loss;
@@ -389,9 +382,10 @@ G4double G4PAIModelData::SampleAlongStepTransfer(G4int coupleIndex,
 
 G4double G4PAIModelData::SamplePostStepTransfer(G4int coupleIndex, 
 						G4double scaledTkin,
+						G4double tmin,
 						G4double tmax) const
 {  
-  //G4cout<<"G4PAIModelData::GetPostStepTransfer idx= "<< coupleIndex 
+  //G4cout<<"=== G4PAIModelData::SamplePostStepTransfer idx= "<< coupleIndex 
   //	<< " Tkin= " << scaledTkin << "  Tmax= " << tmax << G4endl;
   G4double transfer = 0.0;
   G4double rand = G4UniformRand();
@@ -405,67 +399,59 @@ G4double G4PAIModelData::SamplePostStepTransfer(G4int coupleIndex,
     one = false; 
   }
   G4PhysicsTable* table = fPAIxscBank[coupleIndex];
-  G4PhysicsLogVector* vcut = fdNdxCutTable[coupleIndex];
   G4PhysicsVector* v1 = (*table)[iPlace];
 
-  G4double position;
-
-  //G4cout << *v1 << G4endl;
-
-  G4double dNdxCut1 = (*vcut)[iPlace];  
+  G4double emin = std::max(tmin, v1->Energy(0));
   G4double emax = std::min(tmax, v1->GetMaxEnergy());
-  G4double dNdxCutM = v1->Value(emax)/emax;  
+  if(emax < emin) { return transfer; }
+
+  G4double dNdx1 = v1->Value(emin)/emin;  
+  G4double dNdx2 = v1->Value(emax)/emax;  
   /*
-  G4cout << "iPlace= " << iPlace << " nPlace= " << nPlace << "  emax= " << emax 
-	 << " dNdxCut1= " << dNdxCut1 << " dNdxCutM= " << dNdxCutM 
-	 << " one= " << one << G4endl;
+  G4cout << "iPlace= " << iPlace << " nPlace= " << nPlace 
+	 << "  emin= " << emin << "  emax= " << emax 
+	 << " dNdx1= " << dNdx1 << " dNdx2= " << dNdx2
+	 << " one: " << one << G4endl;
   */
-  if(one) {
-    position = dNdxCutM + (dNdxCut1 - dNdxCutM)*rand;
-    transfer = GetEnergyTransfer(coupleIndex, iPlace, position);
+  G4double position = dNdx2 + (dNdx1 - dNdx2)*rand;
+  transfer = GetEnergyTransfer(coupleIndex, iPlace, position);
 
-    //G4cout<<"PAImodel PostStepTransfer = "<<transfer/keV<<" keV"
-    //	  << " position= " << position << G4endl; 
+  //G4cout<<"PAImodel PostStepTransfer = "<<transfer/keV<<" keV"
+  //	<< " position= " << position << G4endl; 
 
-  } else {
+  if(!one) {
 
-    G4double E1, E2, W1, W2, W;
-    G4double dNdxCut2 = (*vcut)[iPlace+1];  
     G4PhysicsVector* v2 = (*table)[iPlace+1];
+    emin = std::max(tmin, v2->Energy(0));
     emax = std::min(tmax, v2->GetMaxEnergy());
-    G4double dNdxCutM2 = v2->Value(emax)/emax;  
-
-    //G4cout << "  emax2= " << emax 
-    //	   << " dNdxCut2= " << dNdxCut2 << " dNdxCutM2= " << dNdxCutM2 << G4endl;
-
-    E1 = fParticleEnergyVector->Energy(iPlace); 
-    E2 = fParticleEnergyVector->Energy(iPlace+1);
-    W  = 1.0/(E2 - E1);
-    W1 = (E2 - scaledTkin)*W;
-    W2 = (scaledTkin - E1)*W;
-    /*
-    G4cout<< "E1= " << E1 << " E2= " << E2 <<" iPlace= " << iPlace 
-	  << " dNdxCut1 = "<<dNdxCut1 <<" dNdxCut2 = "<<dNdxCut2
-	  << " W1= " << W1 << " W2= " << W2 <<G4endl;
-    */
-    position = dNdxCutM + (dNdxCut1 - dNdxCutM)*rand;
-    G4double tr1 = 0.0;
-    if(position > 0.0) {
-      tr1 = GetEnergyTransfer(coupleIndex, iPlace, position);
+    if(emin <= emax) {
+      dNdx1 = v2->Value(emin)/emin;  
+      dNdx2 = v2->Value(emax)/emax;  
+
+      //G4cout << "  emax2= " << emax 
+      //     << " dNdx2= " << dNdx2 << " dNdx1= " << dNdx1 << G4endl;
+
+      G4double E1 = fParticleEnergyVector->Energy(iPlace); 
+      G4double E2 = fParticleEnergyVector->Energy(iPlace+1);
+      G4double W  = 1.0/(E2 - E1);
+      G4double W1 = (E2 - scaledTkin)*W;
+      G4double W2 = (scaledTkin - E1)*W;
+    
+      //G4cout<< "E1= " << E1 << " E2= " << E2 <<" iPlace= " << iPlace 
+      //    << " W1= " << W1 << " W2= " << W2 <<G4endl;
+    
+      position = dNdx2 + (dNdx1 - dNdx2)*rand;
+      G4double tr2 = GetEnergyTransfer(coupleIndex, iPlace+1, position);
+
+      //G4cout<<"PAImodel PostStepTransfer1 = "<<tr2/keV<<" keV"
+      //    << " position= " << position << G4endl; 
+      transfer *= W1;
+      transfer += tr2*W2;
     }
-    //G4cout<<"PAImodel PostStepTransfer1 = "<<tr1/keV<<" keV"
-    //	  << " position= " << position << G4endl; 
-
-    position = dNdxCutM2 + (dNdxCut2 - dNdxCutM2)*rand;
-    G4double tr2 = GetEnergyTransfer(coupleIndex, iPlace+1, position);
-    //G4cout<<"PAImodel PostStepTransfer2 = "<<tr2/keV<<" keV"
-    //	  << " position= " << position << G4endl; 
-
-    transfer = tr1*W1 + tr2*W2;
   }
   //G4cout<<"PAImodel PostStepTransfer = "<<transfer/keV<<" keV"
   //	<< " position= " << position << G4endl; 
-  if(transfer < 0.0 ) { transfer = 0.0; }
+  transfer = std::max(transfer, 0.0);
   return transfer;
 }
 
@@ -498,7 +484,8 @@ G4double G4PAIModelData::GetEnergyTransfer(G4int coupleIndex,
   y1 = (*v)[iTransfer-1]/x1;
   /*
   G4cout << "i= " << iTransfer << " imax= " << iTransferMax
-  	 << " x1= " << x1 << " x2= " << x2 << G4endl;
+  	 << " x1= " << x1 << " x2= " << x2 
+  	 << " y1= " << y1 << " y2= " << y2 << G4endl;
   */
   energyTransfer = x1;
   if ( x1 != x2 ) {
@@ -508,21 +495,23 @@ G4double G4PAIModelData::GetEnergyTransfer(G4int coupleIndex,
       if(x1*1.1 < x2) {
 	const G4int nbins = 5;
         G4double del = (x2 - x1)/G4int(nbins);
-        x2  = x1;
+        x2 = x1;
         for(G4int i=1; i<=nbins; ++i) {
           x2 += del;
           y2 = v->Value(x2)/x2;
-          if(position >= y2) { break; }
+          if(position >= y2) { 
+	    break; 
+	  }
           x1 = x2;
           y1 = y2;
 	}
       }
       //G4cout << "x1(keV)= " << x1/keV << " x2(keV)= " << x2/keV
-      //     << " y1= " << y1 << " y2= " << y2 << " pos= " << position << G4endl;
+      //   << " y1= " << y1 << " y2= " << y2 << " pos= " << position << G4endl;
       energyTransfer = (y2 - y1)*x1*x2/(position*(x1 - x2) - y1*x1 + y2*x2);
     }
   }
-  //  G4cout << "x1(keV)= " << x1/keV << " x2(keV)= " << x2/keV
+  //G4cout << "x1(keV)= " << x1/keV << " x2(keV)= " << x2/keV
   //	 << " y1= " << y1 << " y2= " << y2 << " pos= " << position
   //	 << " E(keV)= " << energyTransfer/keV << G4endl; 
   return energyTransfer;
diff --git a/source/processes/electromagnetic/standard/src/G4PAIPhotData.cc b/source/processes/electromagnetic/standard/src/G4PAIPhotData.cc
index 943a0c20486..12f6ddb5897 100644
--- a/source/processes/electromagnetic/standard/src/G4PAIPhotData.cc
+++ b/source/processes/electromagnetic/standard/src/G4PAIPhotData.cc
@@ -149,22 +149,10 @@ void G4PAIPhotData::Initialise(const G4MaterialCutsCouple* couple,
 
   // if( deltaCutInKineticEnergyNow != cut ) deltaCutInKineticEnergyNow = cut; // exception??
 
-  const G4Material* mat = couple->GetMaterial();     
-  fSandia.Initialize(const_cast<G4Material*>(mat));
-
-  G4PhysicsTable* PAItransferTable = new G4PhysicsTable(fTotBin+1);
-  G4PhysicsTable* PAIphotonTable = new G4PhysicsTable(fTotBin+1);
-  G4PhysicsTable* PAIplasmonTable = new G4PhysicsTable(fTotBin+1);
-
-  G4PhysicsTable* PAIdEdxTable = new G4PhysicsTable(fTotBin+1);
   G4PhysicsLogVector* dEdxCutVector =
     new G4PhysicsLogVector(fLowestKineticEnergy,
 			   fHighestKineticEnergy,
 			   fTotBin);
-  G4PhysicsLogVector* dEdxMeanVector =
-    new G4PhysicsLogVector(fLowestKineticEnergy,
-			   fHighestKineticEnergy,
-			   fTotBin);
 
   G4PhysicsLogVector* dNdxCutVector = 
     new G4PhysicsLogVector(fLowestKineticEnergy,
@@ -179,6 +167,19 @@ void G4PAIPhotData::Initialise(const G4MaterialCutsCouple* couple,
 			   fHighestKineticEnergy,
 			   fTotBin);
 
+  const G4Material* mat = couple->GetMaterial();     
+  fSandia.Initialize(const_cast<G4Material*>(mat));
+
+  G4PhysicsTable* PAItransferTable = new G4PhysicsTable(fTotBin+1);
+  G4PhysicsTable* PAIphotonTable = new G4PhysicsTable(fTotBin+1);
+  G4PhysicsTable* PAIplasmonTable = new G4PhysicsTable(fTotBin+1);
+
+  G4PhysicsTable* PAIdEdxTable = new G4PhysicsTable(fTotBin+1);
+  G4PhysicsLogVector* dEdxMeanVector =
+    new G4PhysicsLogVector(fLowestKineticEnergy,
+			   fHighestKineticEnergy,
+			   fTotBin);
+
   // low energy Sandia interval
   G4double Tmin = fSandia.GetSandiaMatTablePAI(0,0); 
 
diff --git a/source/processes/electromagnetic/standard/src/G4PAIPhotModel.cc b/source/processes/electromagnetic/standard/src/G4PAIPhotModel.cc
index 429a2028e4f..ec15f0161f3 100644
--- a/source/processes/electromagnetic/standard/src/G4PAIPhotModel.cc
+++ b/source/processes/electromagnetic/standard/src/G4PAIPhotModel.cc
@@ -51,6 +51,7 @@
 #include "G4MaterialTable.hh"
 #include "G4SandiaTable.hh"
 #include "G4OrderedTable.hh"
+#include "G4RegionStore.hh"
 
 #include "Randomize.hh"
 #include "G4Electron.hh"
@@ -85,8 +86,6 @@ G4PAIPhotModel::G4PAIPhotModel(const G4ParticleDefinition* p, const G4String& na
 
   // default generator
   SetAngularDistribution(new G4DeltaAngle());
-
-  isInitialised = false;
 }
 
 ////////////////////////////////////////////////////////////////////////////
@@ -102,61 +101,80 @@ G4PAIPhotModel::~G4PAIPhotModel()
 void G4PAIPhotModel::Initialise(const G4ParticleDefinition* p,
 			    const G4DataVector& cuts)
 {
-  // if(fVerbose > 0) 
+  if(fVerbose > 0) 
   {
     G4cout<<"G4PAIPhotModel::Initialise for "<<p->GetParticleName()<<G4endl;
   }
-
-  if(isInitialised) { return; }
-  isInitialised = true;
-
   SetParticle(p);
   fParticleChange = GetParticleChangeForLoss();
 
-  if(IsMaster()) { 
+  if( IsMaster() ) 
+  { 
 
     InitialiseElementSelectors(p, cuts);
 
-    if(!fModelData) {
+    delete fModelData;
+    fMaterialCutsCoupleVector.clear(); 
 
-      G4double tmin = LowEnergyLimit()*fRatio;
-      G4double tmax = HighEnergyLimit()*fRatio;
-      fModelData = new G4PAIPhotData(tmin, tmax, fVerbose);
-    }
+    G4double tmin = LowEnergyLimit()*fRatio;
+    G4double tmax = HighEnergyLimit()*fRatio;
+    fModelData = new G4PAIPhotData(tmin, tmax, fVerbose);
+    
     // Prepare initialization
     const G4MaterialTable* theMaterialTable = G4Material::GetMaterialTable();
     size_t numOfMat   = G4Material::GetNumberOfMaterials();
     size_t numRegions = fPAIRegionVector.size();
 
-    for(size_t iReg = 0; iReg < numRegions; ++iReg) {
+    // protect for unit tests
+    if(0 == numRegions) {
+      G4Exception("G4PAIModel::Initialise()","em0106",JustWarning,
+                  "no G4Regions are registered for the PAI model - World is used");
+      fPAIRegionVector.push_back(G4RegionStore::GetInstance()
+				 ->GetRegion("DefaultRegionForTheWorld", false));
+      numRegions = 1;
+    }
+
+    for( size_t iReg = 0; iReg < numRegions; ++iReg ) 
+    {
       const G4Region* curReg = fPAIRegionVector[iReg];
       G4Region* reg = const_cast<G4Region*>(curReg);
 
-      for(size_t jMat = 0; jMat < numOfMat; ++jMat) {
+      for(size_t jMat = 0; jMat < numOfMat; ++jMat) 
+      {
 	G4Material* mat = (*theMaterialTable)[jMat];
 	const G4MaterialCutsCouple* cutCouple = reg->FindCouple(mat);
 	//G4cout << "Couple <" << fCutCouple << G4endl;
-	if(cutCouple) {
-	  /*
+	if(cutCouple) 
+        {
+	  if(fVerbose>0)
+	  {
 	    G4cout << "Reg <" <<curReg->GetName() << ">  mat <" 
-	    << fMaterial->GetName() << ">  fCouple= " 
-	    << fCutCouple << " idx= " << fCutCouple->GetIndex()
-	    <<"  " << p->GetParticleName() <<G4endl;
-	    // G4cout << cuts.size() << G4endl;
-	    */
+	    << mat->GetName() << ">  fCouple= " 
+	    << cutCouple << ", idx= " << cutCouple->GetIndex()
+	    <<"  " << p->GetParticleName() 
+	    <<", cuts.size() = " << cuts.size() << G4endl;
+	  }
 	  // check if this couple is not already initialized
+
 	  size_t n = fMaterialCutsCoupleVector.size();
-	  if(0 < n) {
-	    for(size_t i=0; i<fMaterialCutsCoupleVector.size(); ++i) {
+
+	  G4bool isnew = true;
+	  if( 0 < n ) 
+          {
+	    for(size_t i=0; i<fMaterialCutsCoupleVector.size(); ++i) 
+            {
 	      if(cutCouple == fMaterialCutsCoupleVector[i]) {
+		isnew = false;
 		break;
 	      }
 	    }
 	  }
 	  // initialise data banks
-	  fMaterialCutsCoupleVector.push_back(cutCouple);
-	  G4double deltaCutInKinEnergy = cuts[cutCouple->GetIndex()];
-	  fModelData->Initialise(cutCouple, deltaCutInKinEnergy, this);
+	  if(isnew) {
+	    fMaterialCutsCoupleVector.push_back(cutCouple);
+	    G4double deltaCutInKinEnergy = cuts[cutCouple->GetIndex()];
+	    fModelData->Initialise(cutCouple, deltaCutInKinEnergy, this);
+	  }
 	}
       }
     }
@@ -169,7 +187,8 @@ void G4PAIPhotModel::InitialiseLocal(const G4ParticleDefinition*,
 				 G4VEmModel* masterModel)
 {
   fModelData = static_cast<G4PAIPhotModel*>(masterModel)->GetPAIPhotData();
-  SetElementSelectors(masterModel->GetElementSelectors());
+  fMaterialCutsCoupleVector = static_cast<G4PAIPhotModel*>(masterModel)->GetVectorOfCouples();
+  SetElementSelectors( masterModel->GetElementSelectors() );
 }
 
 //////////////////////////////////////////////////////////////////////////////
diff --git a/source/processes/electromagnetic/standard/src/G4UniversalFluctuation.cc b/source/processes/electromagnetic/standard/src/G4UniversalFluctuation.cc
index 2388bfaea1e..104b49a7149 100644
--- a/source/processes/electromagnetic/standard/src/G4UniversalFluctuation.cc
+++ b/source/processes/electromagnetic/standard/src/G4UniversalFluctuation.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4UniversalFluctuation.cc 88979 2015-03-17 10:10:21Z gcosmo $
+// $Id: G4UniversalFluctuation.cc 91066 2015-06-17 09:17:45Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
diff --git a/source/processes/electromagnetic/standard/src/G4WentzelOKandVIxSection.cc b/source/processes/electromagnetic/standard/src/G4WentzelOKandVIxSection.cc
index 9bebdc4082e..637c00526cb 100644
--- a/source/processes/electromagnetic/standard/src/G4WentzelOKandVIxSection.cc
+++ b/source/processes/electromagnetic/standard/src/G4WentzelOKandVIxSection.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4WentzelOKandVIxSection.cc 85306 2014-10-27 14:17:47Z gcosmo $
+// $Id: G4WentzelOKandVIxSection.cc 90583 2015-06-04 11:16:41Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -64,6 +64,7 @@ G4double G4WentzelOKandVIxSection::FormFactor[]        = {0.0};
 using namespace std;
 
 G4WentzelOKandVIxSection::G4WentzelOKandVIxSection(G4bool combined) :
+  temp(0.,0.,0.),
   numlimit(0.1),
   nwarnings(0),
   nwarnlimit(50),
@@ -306,37 +307,35 @@ G4WentzelOKandVIxSection::SampleSingleScattering(G4double cosTMin,
 						 G4double elecRatio)
 {
   temp.set(0.0,0.0,1.0);
+  CLHEP::HepRandomEngine* rndmEngineMod = G4Random::getTheEngine();
  
   G4double formf = formfactA;
   G4double cost1 = cosTMin;
   G4double cost2 = cosTMax;
   if(elecRatio > 0.0) {
-    if(G4UniformRand() <= elecRatio) {
+    if(rndmEngineMod->flat() <= elecRatio) {
       formf = 0.0;
       cost1 = std::max(cost1,cosTetMaxElec);
       cost2 = std::max(cost2,cosTetMaxElec);
     }
   }
   if(cost1 > cost2) {
-    G4double z1, z2;
     G4double w1 = 1. - cost1 + screenZ;
     G4double w2 = 1. - cost2 + screenZ;
-    do {
-      z1 = w1*w2/(w1 + G4UniformRand()*(w2 - w1)) - screenZ;
-      z2 = 1. - z1*factB + factB1*targetZ*sqrt(z1*factB)*(2 - z1);
-    } while(G4UniformRand() > z2);
+    G4double z1 = w1*w2/(w1 + rndmEngineMod->flat()*(w2 - w1)) - screenZ;
 
     G4double fm = 1.0 + formf*z1;
-    G4double grej = (1.0 + z1*factD)*fm*fm;
+    G4double grej = (1. - z1*factB + factB1*targetZ*sqrt(z1*factB)*(2 - z1))
+      /((1.0 + z1*factD)*fm*fm);
 
-    if(G4UniformRand()*grej < 1.0) {
-      // exclude "false" scattering due to formfactor
+    if(rndmEngineMod->flat() <= grej) {
+      // exclude "false" scattering due to formfactor and spin effect
       G4double cost = 1.0 - z1;
       if(cost > 1.0)       { cost = 1.0; }
       else if(cost < -1.0) { cost =-1.0; }
       G4double sint = sqrt((1.0 - cost)*(1.0 + cost));
       //G4cout << "sint= " << sint << G4endl;
-      G4double phi  = twopi*G4UniformRand();
+      G4double phi  = twopi*rndmEngineMod->flat();
       temp.set(sint*cos(phi),sint*sin(phi),cost);
     }
   }
diff --git a/source/processes/electromagnetic/standard/src/G4WentzelVIModel.cc b/source/processes/electromagnetic/standard/src/G4WentzelVIModel.cc
index e3b3ad7d82a..ed65cdde4bf 100644
--- a/source/processes/electromagnetic/standard/src/G4WentzelVIModel.cc
+++ b/source/processes/electromagnetic/standard/src/G4WentzelVIModel.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4WentzelVIModel.cc 88979 2015-03-17 10:10:21Z gcosmo $
+// $Id: G4WentzelVIModel.cc 90583 2015-06-04 11:16:41Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -244,7 +244,6 @@ G4double G4WentzelVIModel::ComputeCrossSectionPerAtom(
 void G4WentzelVIModel::StartTracking(G4Track* track)
 {
   SetupParticle(track->GetDynamicParticle()->GetDefinition());
-  inside = false;
   G4VEmModel::StartTracking(track);
 }
 
@@ -280,7 +279,7 @@ G4double G4WentzelVIModel::ComputeTruePathLengthLimit(
   if(tlimit > currentRange) { tlimit = currentRange; }
 
   // stop here if small range particle
-  if(inside || tlimit < tlimitminfix) { 
+  if(tlimit < tlimitminfix) { 
     return ConvertTrueToGeom(tlimit, currentMinimalStep); 
   }
 
@@ -288,7 +287,6 @@ G4double G4WentzelVIModel::ComputeTruePathLengthLimit(
   G4double presafety = sp->GetSafety();
   // far from geometry boundary
   if(currentRange < presafety) {
-    inside = true;  
     return ConvertTrueToGeom(tlimit, currentMinimalStep);
   }
 
@@ -297,7 +295,6 @@ G4double G4WentzelVIModel::ComputeTruePathLengthLimit(
   if(stepStatus != fGeomBoundary && presafety < tlimitminfix) {
     presafety = ComputeSafety(sp->GetPosition(), tlimit); 
     if(currentRange < presafety) {
-      inside = true;  
       return ConvertTrueToGeom(tlimit, currentMinimalStep);
     }
   }
@@ -521,7 +518,6 @@ G4WentzelVIModel::SampleScattering(const G4ThreeVector& oldDirection,
   G4double prob2 = 0.0;
 
   // large scattering angle case - two step approach
-
   if(!singleScatteringMode) {
     static const G4double zzmin = 0.05;
     if(useSecondMoment) { 
@@ -547,7 +543,7 @@ G4WentzelVIModel::SampleScattering(const G4ThreeVector& oldDirection,
 
   // step limit due to single scattering
   G4double x1 = 2*tPathLength;
-  if(0.0 < xtsec) { x1 = -G4Log(G4UniformRand())/xtsec; }
+  if(0.0 < xtsec) { x1 = -G4Log(rndmEngineMod->flat())/xtsec; }
 
   // no scattering case
   if(singleScatteringMode && x1 > tPathLength)  
@@ -606,7 +602,7 @@ G4WentzelVIModel::SampleScattering(const G4ThreeVector& oldDirection,
       // select element
       G4int i = 0;
       if(nelm > 1) {
-	G4double qsec = G4UniformRand()*xtsec;
+	G4double qsec = rndmEngineMod->flat()*xtsec;
 	for (; i<nelm; ++i) { if(xsecn[i] >= qsec) { break; } }
       }
       G4double cosTetM = 
@@ -622,7 +618,7 @@ G4WentzelVIModel::SampleScattering(const G4ThreeVector& oldDirection,
 
       // new proposed step length
       x2 -= step; 
-      x1  = -G4Log(G4UniformRand())/xtsec; 
+      x1  = -G4Log(rndmEngineMod->flat())/xtsec; 
 
     // multiple scattering
     } else { 
@@ -632,11 +628,11 @@ G4WentzelVIModel::SampleScattering(const G4ThreeVector& oldDirection,
 
       // sample z in interval 0 - 1
       G4bool isFirst = true;
-      if(prob2 > 0.0 && G4UniformRand() < prob2) { isFirst = false; } 
+      if(prob2 > 0.0 && rndmEngineMod->flat() < prob2) { isFirst = false; } 
       do {
-	//z = -z0*G4Log(1.0 - (1.0 - zzz)*G4UniformRand());
-	if(isFirst) { z = -G4Log(G4UniformRand()); }
-        else        { z = G4RandGamma::shoot(2.0,2.0); }
+	//z = -z0*G4Log(1.0 - (1.0 - zzz)*rndmEngineMod->flat());
+	if(isFirst) { z = -G4Log(rndmEngineMod->flat()); }
+        else        { z = G4RandGamma::shoot(rndmEngineMod, 2.0, 2.0); }
 	z *= z0;
       } while(z > 1.0);
 
@@ -644,7 +640,7 @@ G4WentzelVIModel::SampleScattering(const G4ThreeVector& oldDirection,
       if(cost > 1.0)       { cost = 1.0; }
       else if(cost < -1.0) { cost =-1.0; }
       sint = sqrt((1.0 - cost)*(1.0 + cost));
-      phi  = twopi*G4UniformRand();
+      phi  = twopi*rndmEngineMod->flat();
       G4double vx1 = sint*cos(phi);
       G4double vy1 = sint*sin(phi);
 
@@ -652,8 +648,8 @@ G4WentzelVIModel::SampleScattering(const G4ThreeVector& oldDirection,
       if (latDisplasment) {
 	G4double rms = invsqrt12*sqrt(2*z0);
 	G4double r   = x0*mscfac;
-	G4double dx  = r*(0.5*vx1 + rms*G4RandGauss::shoot(0.0,1.0));
-	G4double dy  = r*(0.5*vy1 + rms*G4RandGauss::shoot(0.0,1.0));
+	G4double dx  = r*(0.5*vx1 + rms*G4RandGauss::shoot(rndmEngineMod, 0.0, 1.0));
+	G4double dy  = r*(0.5*vy1 + rms*G4RandGauss::shoot(rndmEngineMod, 0.0, 1.0));
 	G4double dz;
 	G4double d   = r*r - dx*dx - dy*dy;
 
diff --git a/source/processes/electromagnetic/utils/History b/source/processes/electromagnetic/utils/History
index 82cf4e9c39c..12e78e52714 100644
--- a/source/processes/electromagnetic/utils/History
+++ b/source/processes/electromagnetic/utils/History
@@ -1,4 +1,4 @@
-$Id: History 88981 2015-03-17 10:14:15Z gcosmo $
+$Id: History 91064 2015-06-17 09:08:14Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,6 +17,11 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
+27 April 15: V.Ivant (emutils-V10-00-49)
+- G4VMultipleScattering, G4VMscModel, G4VEmAngularDistribution 
+    accurate initialisation of G4ThreeVectors and G4LorentzVector 
+    in constructors
+
 06 February 15: V.Ivant (emutils-V10-00-47)
 - G4VEmProcess - fixed crash in printout for verbose level > 2 
                  (reported by D.Mancusi) 
diff --git a/source/processes/electromagnetic/utils/include/G4VEmModel.hh b/source/processes/electromagnetic/utils/include/G4VEmModel.hh
index 42ce295e12b..b0cf405e8f8 100644
--- a/source/processes/electromagnetic/utils/include/G4VEmModel.hh
+++ b/source/processes/electromagnetic/utils/include/G4VEmModel.hh
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4VEmModel.hh 84661 2014-10-17 14:30:16Z gcosmo $
+// $Id: G4VEmModel.hh 91064 2015-06-17 09:08:14Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -426,6 +426,7 @@ private:
 inline void G4VEmModel::SetCurrentCouple(const G4MaterialCutsCouple* p)
 {
   fCurrentCouple = p;
+  rndmEngineMod = G4Random::getTheEngine();
 }
 
 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
diff --git a/source/processes/electromagnetic/utils/src/G4VEmAngularDistribution.cc b/source/processes/electromagnetic/utils/src/G4VEmAngularDistribution.cc
index f040ff05764..02c0ced6e3c 100644
--- a/source/processes/electromagnetic/utils/src/G4VEmAngularDistribution.cc
+++ b/source/processes/electromagnetic/utils/src/G4VEmAngularDistribution.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4VEmAngularDistribution.cc 73847 2013-09-13 14:32:39Z gcosmo $
+// $Id: G4VEmAngularDistribution.cc 90579 2015-06-04 10:00:26Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -51,10 +51,8 @@
 #include "G4VEmAngularDistribution.hh"
 
 G4VEmAngularDistribution::G4VEmAngularDistribution(const G4String& name) 
-  : fName(name)
-{
-  fLocalDirection.set(0.0,0.0,1.0);
-}
+  : fLocalDirection(0.0,0.0,1.0),fName(name)
+{}
 
 G4VEmAngularDistribution::~G4VEmAngularDistribution() 
 {}
diff --git a/source/processes/electromagnetic/utils/src/G4VMscModel.cc b/source/processes/electromagnetic/utils/src/G4VMscModel.cc
index 3ee7a3aeba0..eda3f77781a 100644
--- a/source/processes/electromagnetic/utils/src/G4VMscModel.cc
+++ b/source/processes/electromagnetic/utils/src/G4VMscModel.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4VMscModel.cc 71484 2013-06-17 08:12:51Z gcosmo $
+// $Id: G4VMscModel.cc 90579 2015-06-04 10:00:26Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -67,6 +67,7 @@ G4VMscModel::G4VMscModel(const G4String& nam):
   lambdalimit(mm),
   geomMin(1.e-6*CLHEP::mm),
   geomMax(1.e50*CLHEP::mm),
+  fDisplacement(0.,0.,0.),
   steppingAlgorithm(fUseSafety),
   samplez(false),
   latDisplasment(true)
diff --git a/source/processes/electromagnetic/utils/src/G4VMultipleScattering.cc b/source/processes/electromagnetic/utils/src/G4VMultipleScattering.cc
index 4923e4af090..44e32376991 100644
--- a/source/processes/electromagnetic/utils/src/G4VMultipleScattering.cc
+++ b/source/processes/electromagnetic/utils/src/G4VMultipleScattering.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4VMultipleScattering.cc 88981 2015-03-17 10:14:15Z gcosmo $
+// $Id: G4VMultipleScattering.cc 90579 2015-06-04 10:00:26Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -101,6 +101,8 @@ G4VMultipleScattering::G4VMultipleScattering(const G4String& name,
   facrange(0.04),
   latDisplacement(true),
   isIon(false),
+  fNewPosition(0.,0.,0.),
+  fNewDirection(0.,0.,1.),
   fDispBeyondSafety(false)
 {
   theParameters = G4EmParameters::Instance();
diff --git a/source/processes/hadronic/cross_sections/History b/source/processes/hadronic/cross_sections/History
index 2a994845559..22cd2edf577 100644
--- a/source/processes/hadronic/cross_sections/History
+++ b/source/processes/hadronic/cross_sections/History
@@ -14,6 +14,11 @@ code and to keep track of all tags.
      * Please list in reverse chronological order (last date on top)
      ---------------------------------------------------------------
 
+27 May 2015  A.Ribon      (hadr-cross-V10-00-20)
+---------------------------------------------------
+- G4ComponentGGHadronNucleusXsc : Grichine's extension of applicability
+  for kaons down to 0.1*MeV
+
 06 February 2015 W.Pokorski (hadr-cross-V10-00-19)
 ------------------------------------------------
 - including V.Grishine change in G4ComponentGGHadronNucleusXsc to work
diff --git a/source/processes/hadronic/cross_sections/src/G4ComponentGGHadronNucleusXsc.cc b/source/processes/hadronic/cross_sections/src/G4ComponentGGHadronNucleusXsc.cc
index 4542e16ef23..16b23e277e1 100644
--- a/source/processes/hadronic/cross_sections/src/G4ComponentGGHadronNucleusXsc.cc
+++ b/source/processes/hadronic/cross_sections/src/G4ComponentGGHadronNucleusXsc.cc
@@ -242,22 +242,41 @@ G4ComponentGGHadronNucleusXsc::IsIsoApplicable(const G4DynamicParticle* aDP,
 
   const G4ParticleDefinition* theParticle = aDP->GetDefinition();
  
-  if ( ( kineticEnergy  >= fLowerLimit &&
+  if ( 
+       Z >= 1  // >=  H for kaons
+       &&     
+       ( 
+         kineticEnergy  >= fLowerLimit 
+         &&
 	 //         Z > 1 &&      // >=  He
-       ( theParticle == theAProton   ||
-         theParticle == theGamma     ||
-        theParticle == theSMinus    ||  
-         theParticle == theProton    ||
-         theParticle == theNeutron   ||   
-         theParticle == thePiPlus    ||
-         theParticle == thePiMinus       )  &&
-         Z >= 1 &&      // >=  H for kaons
+         ( 
+           theParticle == theAProton   ||
+           theParticle == theGamma     ||
+           theParticle == theSMinus    ||  
+           theParticle == theProton    ||
+           theParticle == theNeutron   ||   
+           theParticle == thePiPlus    ||
+           theParticle == thePiMinus       
+         )
+       )  
+     ) 
+     applicable = true;
+
+  if ( 
+       Z >= 1  // >=  H for kaons
+       &&
        ( 
-         theParticle == theKPlus     ||
-         theParticle == theKMinus    || 
-         theParticle == theK0L       ||
-         theParticle == theK0S       
-                                     )    )    ) applicable = true;
+         kineticEnergy  >= 0.01*fLowerLimit 
+         &&
+         ( 
+           theParticle == theKPlus     ||
+           theParticle == theKMinus    || 
+           theParticle == theK0L       ||
+           theParticle == theK0S       
+         )    
+       )    
+     ) 
+     applicable = true;
 
   return applicable;
 }
@@ -385,16 +404,16 @@ G4ComponentGGHadronNucleusXsc::GetIsoCrossSection(const G4DynamicParticle* aPart
      // fElasticXsc   = fTotalXsc - fInelasticXsc;      
     }
     else if( theParticle == theKPlus || 
-           theParticle == theKMinus  || 
-           theParticle == theK0S     || 
-           theParticle == theK0L        ) 
+             theParticle == theKMinus  || 
+             theParticle == theK0S     || 
+             theParticle == theK0L        ) 
     { 
       fInelasticXsc = hpInXsc;
       fElasticXsc   = fTotalXsc - fInelasticXsc;
     }   
     else
     {
-    fInelasticXsc = hpInXsc;
+      fInelasticXsc = hpInXsc;
       fElasticXsc   = fTotalXsc - fInelasticXsc;
     }
     if (fElasticXsc < 0.) fElasticXsc = 0.;
diff --git a/source/processes/hadronic/models/binary_cascade/History b/source/processes/hadronic/models/binary_cascade/History
index ddee51636d3..4cb3f1f215f 100644
--- a/source/processes/hadronic/models/binary_cascade/History
+++ b/source/processes/hadronic/models/binary_cascade/History
@@ -13,6 +13,11 @@ code and to keep track of all tags.
      * Please list in reverse chronological order (last date on top)
      ---------------------------------------------------------------
 
+27-April 2015, Gunter Folger           had-binary-V10-00-03
+- Fix for compiler warning (clang 3.6) on expression with side effects
+  - G4BinaryCascade::DebugApplyCollisionFail(): use const & as 
+       argument to typeid()
+
 11-November 2014 Gunter Folger    had-binary-V10-00-11
 - BinaryLightReaction: Momentum correction wrong in case of no Fragment, but 
        primary projectile nucleon(s) in final state. 
diff --git a/source/processes/hadronic/models/binary_cascade/src/G4BinaryCascade.cc b/source/processes/hadronic/models/binary_cascade/src/G4BinaryCascade.cc
index 81f654e22e8..11800b0633f 100644
--- a/source/processes/hadronic/models/binary_cascade/src/G4BinaryCascade.cc
+++ b/source/processes/hadronic/models/binary_cascade/src/G4BinaryCascade.cc
@@ -876,8 +876,8 @@ G4bool  G4BinaryCascade::BuildLateParticleCollisions(G4KineticTrackVector * seco
       }
    }
    //theCollisionMgr->Print();
-
    const G4HadProjectile * primary = GetPrimaryProjectile();  // check for primary from TheoHE model
+
    if (primary){
       G4LorentzVector mom=primary->Get4Momentum();
       theProjectile4Momentum += mom;
@@ -1147,7 +1147,6 @@ void  G4BinaryCascade::FindCollisions(G4KineticTrackVector * secondaries)
     for(std::vector<G4KineticTrack *>::iterator i = secondaries->begin();
             i != secondaries->end(); ++i)
     {
-
         for(std::vector<G4BCAction *>::iterator j = theImR.begin();
                 j!=theImR.end(); j++)
         {
@@ -3104,7 +3103,8 @@ void G4BinaryCascade::DebugApplyCollisionFail(G4CollisionInitialState * collisio
    }
    if ( !products  || havePion)
    {
-      G4cout << " Collision " << collision << ", type: "<< typeid(*collision->GetGenerator()).name()
+		const G4BCAction &action= *collision->GetGenerator();
+      G4cout << " Collision " << collision << ", type: "<< typeid(action).name()
 							                    << ", with NO products! " <<G4endl;
       G4cout << G4endl<<"Initial condition are these:"<<G4endl;
       G4cout << "proj: "<<collision->GetPrimary()->GetDefinition()->GetParticleName()<<G4endl;
diff --git a/source/processes/hadronic/models/cascade/History b/source/processes/hadronic/models/cascade/History
index 7ca7857c8fe..f579a17e902 100644
--- a/source/processes/hadronic/models/cascade/History
+++ b/source/processes/hadronic/models/cascade/History
@@ -15,6 +15,12 @@ code and to keep track of all tags.
      * Please list in reverse chronological order (last date on top)
      ---------------------------------------------------------------
 
+23 April 2015  A. Ribon (hadr-casc-V10-00-21)     
+---------------------------------------------
+- G4PreCompoundDeexcitation: delete precompound products (i.e. 
+  G4ReactionProduct objects) before cleaning and deleting their
+  vector container.
+
 1 December 2014  M. Kelsey (hadr-casc-V10-00-20)
 ------------------------------------------------
 - G4CascadParticle.cc:  For stopped particles (zero path length), if at core
diff --git a/source/processes/hadronic/models/cascade/cascade/src/G4PreCompoundDeexcitation.cc b/source/processes/hadronic/models/cascade/cascade/src/G4PreCompoundDeexcitation.cc
index d5447c559e7..1fc549d0f8c 100644
--- a/source/processes/hadronic/models/cascade/cascade/src/G4PreCompoundDeexcitation.cc
+++ b/source/processes/hadronic/models/cascade/cascade/src/G4PreCompoundDeexcitation.cc
@@ -120,6 +120,12 @@ void G4PreCompoundDeexcitation::deExcite(const G4Fragment& fragment,
     globalOutput.addOutgoingParticles(precompoundProducts);
     globalOutput.setVerboseLevel(0);
 
+    for ( size_t i = 0; i < precompoundProducts->size(); i++ ) {
+      if ( (*precompoundProducts)[ i ] ) {
+        delete (*precompoundProducts)[ i ];
+        (*precompoundProducts)[ i ] = 0;
+      }
+    }
     precompoundProducts->clear();
     delete precompoundProducts;
   }
diff --git a/source/processes/hadronic/models/de_excitation/History b/source/processes/hadronic/models/de_excitation/History
index 4aac3f8f98b..1f99c726e39 100644
--- a/source/processes/hadronic/models/de_excitation/History
+++ b/source/processes/hadronic/models/de_excitation/History
@@ -14,6 +14,20 @@ code and to keep track of all tags.
      * Please list in reverse chronological order (last date on top)
      ---------------------------------------------------------------
 
+16 Apr 2015 Vladimir Ivanchenko (hadr-deex-V10-00-32)
+----------------------------------------------------------
+- G4NeutronRadCapture - proper initialisation of G4LorentzVector
+    in class constructor
+
+10 Apr 2015 Vladimir Ivanchenko
+----------------------------------------------------------
+- G4NeutronRadCapture - fixed Coverity reports
+
+13 Mar 2015 Vladimir Ivanchenko
+----------------------------------------------------------
+- G4NeutronRadCapture - added check on
+    initial kinematics for all isotopes 
+
 02 Feb 2015 Vladimir Ivanchenko (hadr-deex-V10-00-30)
 ----------------------------------------------------------
 - G4GEMProbability - due to change of history a very rare bug appeares
diff --git a/source/processes/hadronic/models/de_excitation/photon_evaporation/include/G4NeutronRadCapture.hh b/source/processes/hadronic/models/de_excitation/photon_evaporation/include/G4NeutronRadCapture.hh
index 2358b77ac57..286cb32e1c1 100644
--- a/source/processes/hadronic/models/de_excitation/photon_evaporation/include/G4NeutronRadCapture.hh
+++ b/source/processes/hadronic/models/de_excitation/photon_evaporation/include/G4NeutronRadCapture.hh
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4NeutronRadCapture.hh 74869 2013-10-23 09:26:17Z gcosmo $
+// $Id: G4NeutronRadCapture.hh 90590 2015-06-04 13:37:40Z gcosmo $
 //
 //
 // Geant4 header : G4NeutronRadCapture
@@ -44,6 +44,7 @@
 #include "G4HadronicInteraction.hh"
 #include "G4HadProjectile.hh"
 #include "G4Nucleus.hh"
+#include "G4LorentzVector.hh"
 
 class G4PhotonEvaporation;
 class G4IonTable;
@@ -68,6 +69,8 @@ private:
   G4double minExcitation;
   G4PhotonEvaporation* photonEvaporation;
   G4IonTable*  theTableOfIons;
+  G4LorentzVector lab4mom;
+
 };
 
 #endif
diff --git a/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4NeutronRadCapture.cc b/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4NeutronRadCapture.cc
index a2986e6e20c..8f723064973 100644
--- a/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4NeutronRadCapture.cc
+++ b/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4NeutronRadCapture.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4NeutronRadCapture.cc 88987 2015-03-17 10:39:50Z gcosmo $
+// $Id: G4NeutronRadCapture.cc 91067 2015-06-17 09:22:30Z gcosmo $
 //
 //
 // Physics model class G4NeutronRadCapture 
@@ -40,7 +40,9 @@
 #include "G4Fragment.hh"
 #include "G4FragmentVector.hh"
 #include "G4NucleiProperties.hh"
+#include "G4VEvaporationChannel.hh"
 #include "G4PhotonEvaporation.hh"
+#include "G4PromptPhotonEvaporation.hh"
 #include "G4DynamicParticle.hh"
 #include "G4ParticleTable.hh"
 #include "G4IonTable.hh"
@@ -50,15 +52,17 @@
 #include "G4Alpha.hh"
 
 G4NeutronRadCapture::G4NeutronRadCapture() 
-  : G4HadronicInteraction("nRadCapture")
+  : G4HadronicInteraction("nRadCapture"),
+    lab4mom(0.,0.,0.,0.)
 {
-  lowestEnergyLimit = 0.1*eV;
+  lowestEnergyLimit = 10*eV;
   minExcitation = 1*keV;
   SetMinEnergy( 0.0*GeV );
   SetMaxEnergy( 100.*TeV );
-  photonEvaporation = new G4PhotonEvaporation();
+
+  photonEvaporation = new G4PhotonEvaporation(); 
   photonEvaporation->SetICM(true);
-  //photonEvaporation = 0;
+ 
   theTableOfIons = G4ParticleTable::GetParticleTable()->GetIonTable();
 }
 
@@ -79,18 +83,20 @@ G4HadFinalState* G4NeutronRadCapture::ApplyYourself(
   G4double time = aTrack.GetGlobalTime();
 
   // Create initial state
-  G4double m1 = G4NucleiProperties::GetNuclearMass(A, Z);
-  G4LorentzVector lv0(0.0,0.0,0.0,m1);   
-  G4LorentzVector lv1 = aTrack.Get4Momentum() + lv0;
+  lab4mom.set(0.,0.,0.,G4NucleiProperties::GetNuclearMass(A, Z));
+  lab4mom += aTrack.Get4Momentum();
+
+  G4double M  = lab4mom.mag();
+  ++A;
+  G4double mass = G4NucleiProperties::GetNuclearMass(A, Z);
+  //G4cout << "Capture start: Z= " << Z << " A= " << A 
+  //	 << " LabM= " << M << " Mcompound= " << mass << G4endl;
 
   // simplified method of 1 gamma emission
-  if(A <= 3) {
+  if(A <= 4) {
 
-    G4ThreeVector bst = lv1.boostVector();
-    G4double M  = lv1.mag();
+    G4ThreeVector bst = lab4mom.boostVector();
 
-    ++A;
-    G4double mass = G4NucleiProperties::GetNuclearMass(A, Z);
     if(M - mass <= lowestEnergyLimit) {
       return &theParticleChange;
     }
@@ -102,12 +108,15 @@ G4HadFinalState* G4NeutronRadCapture::ApplyYourself(
 	     << "  Z= " << Z << "  A= " << A << G4endl;
     }
     G4double e1 = (M - mass)*(M + mass)/(2*M);
+
     G4double cost = 2.0*G4UniformRand() - 1.0;
     if(cost > 1.0) {cost = 1.0;}
     else if(cost < -1.0) {cost = -1.0;}
     G4double sint = std::sqrt((1. - cost)*(1.0 + cost));
     G4double phi  = G4UniformRand()*CLHEP::twopi;
-    G4LorentzVector lv2(e1*sint*std::cos(phi),e1*sint*std::sin(phi),e1*cost,e1);
+
+    G4LorentzVector lv2(e1*sint*std::cos(phi),e1*sint*std::sin(phi),
+			e1*cost,e1);
     lv2.boost(bst);
     G4HadSecondary* news = 
       new G4HadSecondary(new G4DynamicParticle(G4Gamma::Gamma(), lv2));
@@ -117,19 +126,19 @@ G4HadFinalState* G4NeutronRadCapture::ApplyYourself(
 
     const G4ParticleDefinition* theDef = 0;
 
-    lv1 -= lv2; 
+    lab4mom -= lv2; 
     if      (Z == 1 && A == 2) {theDef = G4Deuteron::Deuteron();}
     else if (Z == 1 && A == 3) {theDef = G4Triton::Triton();}
     else if (Z == 2 && A == 3) {theDef = G4He3::He3();}
     else if (Z == 2 && A == 4) {theDef = G4Alpha::Alpha();}
-    else {  theDef = theTableOfIons->GetIon(Z,A,0); }
+    else {  theDef = theTableOfIons->GetIon(Z,A,0.0); }
 
     if (verboseLevel > 1) {
       G4cout << "Gamma 4-mom: " << lv2 << "   " 
-	     << theDef->GetParticleName() << "   " << lv1 << G4endl;
+	     << theDef->GetParticleName() << "   " << lab4mom << G4endl;
     }
     if(theDef) {
-      news = new G4HadSecondary(new G4DynamicParticle(theDef, lv1));
+      news = new G4HadSecondary(new G4DynamicParticle(theDef, lab4mom));
       news->SetTime(time);
       theParticleChange.AddSecondary(*news);
       delete news;
@@ -138,10 +147,19 @@ G4HadFinalState* G4NeutronRadCapture::ApplyYourself(
   // Use photon evaporation  
   } else {
  
-    G4Fragment* aFragment = new G4Fragment(A+1, Z, lv1);
+    // protection against wrong kinematic 
+    if(M < mass) {
+      G4double etot = std::max(mass, lab4mom.e());
+      G4double ptot = sqrt((etot - mass)*(etot + mass));
+      G4ThreeVector v = lab4mom.vect().unit();
+      lab4mom.set(v.x()*ptot,v.y()*ptot,v.z()*ptot,etot);
+    }
+
+    G4Fragment* aFragment = new G4Fragment(A, Z, lab4mom);
 
     if (verboseLevel > 1) {
-      G4cout << "G4NeutronRadCapture::ApplyYourself initial G4Fragmet:" << G4endl;
+      G4cout << "G4NeutronRadCapture::ApplyYourself initial G4Fragmet:" 
+	     << G4endl;
       G4cout << aFragment << G4endl;
     }
 
@@ -164,7 +182,7 @@ G4HadFinalState* G4NeutronRadCapture::ApplyYourself(
       Z = f->GetZ_asInt();
       A = f->GetA_asInt();
 
-      const G4ParticleDefinition* theDef = 0;
+      const G4ParticleDefinition* theDef;
       if(0 == Z && 0 == A) {theDef =  f->GetParticleDefinition();}
       else if (Z == 1 && A == 2) {theDef = G4Deuteron::Deuteron();}
       else if (Z == 1 && A == 3) {theDef = G4Triton::Triton();}
@@ -172,70 +190,30 @@ G4HadFinalState* G4NeutronRadCapture::ApplyYourself(
       else if (Z == 2 && A == 4) {theDef = G4Alpha::Alpha();}
       else {
         G4double eexc = f->GetExcitationEnergy();
-        G4double excitation = eexc;
-	G4int level = 0;
-	theDef = theTableOfIons->GetIon(Z, A, level);
+	if(eexc <= minExcitation) { eexc = 0.0; }
+	theDef = theTableOfIons->GetIon(Z, A, eexc);
 	/*
-	G4cout << "### Find ion Z= " << theFragmentZ << " A= " << theFragmentA
-	       << " Eexc(MeV)= " << excitation/MeV << "  " 
-	       << theKindOfFragment << G4endl;
+	G4cout << "### Find ion Z= " << Z << " A= " << A
+	       << " Eexc(MeV)= " << eexc/MeV << "  " 
+	       << theDef << G4endl;
 	*/
-	// production of an isomer
-        if(eexc > minExcitation) {
-          G4double elevel1 = 0.0;
-          G4double elevel2 = 0.0;
-	  const G4ParticleDefinition* ion = 0;
-          for(level=1; level<9; ++level) {
-	    ion = theTableOfIons->GetIon(Z, A, level);
-            //G4cout << level << "  " << ion << G4endl;
-            if(ion) {
-	      const G4Ions* ip = dynamic_cast<const G4Ions*>(ion);
-	      if(ip) {
-		elevel2 = ip->GetExcitationEnergy();
-		//G4cout<<"   Level "<<level<<" E(MeV)= "<<elevel2/MeV<<G4endl;
-		// close level
-		if(std::fabs(eexc - elevel2) < minExcitation) {
-		  excitation = eexc - elevel2;
-		  theDef = ion;
-		  break;
-		  // previous level was closer
-		} else if(elevel2 - eexc >= eexc - elevel1) {
-		  excitation = eexc - elevel1;
-		  break;
-		  // will check next level and save current
-		} else {
-		  theDef = ion;
-		  excitation = eexc - elevel2;
-		  elevel1 = elevel2;
-		}
-	      }
-	    } else {
-	      break;
-	    }
-	  }
-	}
-	// correction of total energy for ground state isotopes
-	etot += excitation;
-        etot -= theDef->GetPDGMass();
-        if(etot < 0.0) { etot = 0.0; }
       }
+      G4double ekin = std::max(0.0,etot - theDef->GetPDGMass());
       if (verboseLevel > 1) {
 	G4cout << i << ". " << theDef->GetParticleName()
 	       << " Ekin(MeV)= " << etot/MeV
 	       << " p: " << f->GetMomentum().vect() 
 	       << G4endl;
       }
-      if(theDef) {
-	G4HadSecondary* news = 
-	  new G4HadSecondary(new G4DynamicParticle(theDef,
-						   f->GetMomentum().vect().unit(),
-						   etot));
-        G4double timeF = f->GetCreationTime();
-        if(timeF < 0.0) { timeF = 0.0; }
-	news->SetTime(time + timeF);
-	theParticleChange.AddSecondary(*news);
-	delete news;
-      }
+      G4HadSecondary* news = new G4HadSecondary(
+	new G4DynamicParticle(theDef,
+			      f->GetMomentum().vect().unit(),
+			      ekin));
+      G4double timeF = f->GetCreationTime();
+      if(timeF < 0.0) { timeF = 0.0; }
+      news->SetTime(time + timeF);
+      theParticleChange.AddSecondary(*news);
+      delete news;
       delete f;
     }
     delete fv;
diff --git a/source/processes/hadronic/models/parton_string/diffraction/History b/source/processes/hadronic/models/parton_string/diffraction/History
index 664728eafd1..81a921530c0 100644
--- a/source/processes/hadronic/models/parton_string/diffraction/History
+++ b/source/processes/hadronic/models/parton_string/diffraction/History
@@ -1,4 +1,4 @@
-$Id: History 87254 2014-11-28 07:49:23Z gcosmo $
+$Id: History 90572 2015-06-04 09:32:32Z gcosmo $
 -------------------------------------------------------------------
 
        ==========================================================
@@ -14,6 +14,25 @@ code and to keep track of all tags.
      ---------------------------------------------------------------
      * Please list in reverse chronological order (last date on top)
      ---------------------------------------------------------------
+
+28-May-2015 A. Ribon       (hadr-string-diff-V10-00-17)
+- G4FTFModel : fixed energy non-conservation in nucleus-nucleus interactions
+  in the method SamplingNucleonKinematics.
+
+24-May-2015 V. Uzhinsky    (hadr-string-diff-V10-00-16)
+  Bug is fixed in G4FTFModel::SamplingNucleonKinematics for
+  hadron-nucleon interactions. fixed bug #1741
+
+18-May-2015 V. Uzhinsky
+- G4FTFParameters.cc 
+    A bug at Xnn calculations found by Alberto is fixed. The bug gives Xin=0 for projectile
+    nucleons in Nucl-Nucl interactions.
+
+22-Apr-2015 A. Ribon
+- G4FTFParticipants : added a new method to clean up the member vector.
+- G4FTFModel : using the above new method to release the memory allocated
+               in GetStrings().
+
 27-Nov-2014 V. Uzhinsky    (hadr-string-diff-V10-00-15)
 - Charge non-conservation is erased for meson-nucleus interactions
   in G4Diffractive Excitation. It was caused by quark exchange.
diff --git a/source/processes/hadronic/models/parton_string/diffraction/include/G4FTFModel.hh b/source/processes/hadronic/models/parton_string/diffraction/include/G4FTFModel.hh
index 4ae248111a6..eed0e299976 100644
--- a/source/processes/hadronic/models/parton_string/diffraction/include/G4FTFModel.hh
+++ b/source/processes/hadronic/models/parton_string/diffraction/include/G4FTFModel.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4FTFModel.hh 83402 2014-08-21 15:05:10Z gcosmo $
+// $Id: G4FTFModel.hh 90572 2015-06-04 09:32:32Z gcosmo $
 // GEANT4 tag $Name:  $
 //
 // Class Description
@@ -103,8 +103,8 @@ class G4FTFModel : public G4VPartonStringModel {
                                 G4Nucleon* involvedNucleons[], G4double& sumMasses );
     // Utility method used by PutOnMassShell.
 
-    G4bool SamplingNucleonKinematics( const G4double averagePt2, const G4double maxPt2,
-                                      const G4double dCor, G4V3DNucleus* nucleus, 
+    G4bool SamplingNucleonKinematics( G4double averagePt2, const G4double maxPt2,
+                                      G4double dCor, G4V3DNucleus* nucleus, 
                                       const G4LorentzVector& pResidual, 
                                       const G4double residualMass, const G4int residualMassNumber,
                                       const G4int numberOfInvolvedNucleons,
diff --git a/source/processes/hadronic/models/parton_string/diffraction/include/G4FTFParticipants.hh b/source/processes/hadronic/models/parton_string/diffraction/include/G4FTFParticipants.hh
index 9f5167f7f3b..08769d73cfc 100644
--- a/source/processes/hadronic/models/parton_string/diffraction/include/G4FTFParticipants.hh
+++ b/source/processes/hadronic/models/parton_string/diffraction/include/G4FTFParticipants.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4FTFParticipants.hh 74627 2013-10-17 07:04:38Z gcosmo $
+// $Id: G4FTFParticipants.hh 90572 2015-06-04 09:32:32Z gcosmo $
 //
 
 #ifndef G4FTFParticipants_h
@@ -63,6 +63,7 @@ class G4FTFParticipants : public G4VParticipants {
     void SortInteractionsIncT();
     void ShiftInteractionTime();
     G4InteractionContent& GetInteraction();  
+    void Clean();
     std::vector< G4InteractionContent* > theInteractions;
 
   private:
diff --git a/source/processes/hadronic/models/parton_string/diffraction/src/G4FTFModel.cc b/source/processes/hadronic/models/parton_string/diffraction/src/G4FTFModel.cc
index 38e7f75f4cc..1c26a573654 100644
--- a/source/processes/hadronic/models/parton_string/diffraction/src/G4FTFModel.cc
+++ b/source/processes/hadronic/models/parton_string/diffraction/src/G4FTFModel.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4FTFModel.cc 87183 2014-11-26 15:23:34Z gcosmo $
+// $Id: G4FTFModel.cc 90572 2015-06-04 09:32:32Z gcosmo $
 // GEANT4 tag $Name:  $
 //
 
@@ -154,6 +154,8 @@ void G4FTFModel::Init( const G4Nucleus& aNucleus, const G4DynamicParticle& aProj
          << " " << aNucleus.GetZ_asInt() << G4endl;
   #endif
 
+  theParticipants.Clean();
+
   theParticipants.SetProjectileNucleus( 0 );
 
   G4LorentzVector tmp( 0.0, 0.0, 0.0, 0.0 );
@@ -349,6 +351,8 @@ G4ExcitedStringVector* G4FTFModel::GetStrings() {
   G4int Uzhi; G4cin >> Uzhi;
   #endif
 
+  theParticipants.Clean();
+
   return theStrings;
 }
 
@@ -465,7 +469,8 @@ void G4FTFModel::ReggeonCascade() {
   if ( ! GetProjectileNucleus() ) return;
 
   // Nucleus-Nucleus Interaction : Destruction of Projectile
-  for ( G4int InvPN = 0; InvPN < NumberOfInvolvedNucleonsOfProjectile; InvPN++ ) { 
+  G4int InitNINp = NumberOfInvolvedNucleonsOfProjectile;
+  for ( G4int InvPN = 0; InvPN < InitNINp; InvPN++ ) { 
     G4Nucleon* aProjectileNucleon = TheInvolvedNucleonsOfProjectile[ InvPN ];
     aProjectileNucleon->SetBindingEnergy( ExcitationE );
 
@@ -2754,9 +2759,9 @@ GenerateDeltaIsobar( const G4double sqrtS,                  // input parameter
 //============================================================================
 
 G4bool G4FTFModel::
-SamplingNucleonKinematics( const G4double averagePt2,             // input parameter
+SamplingNucleonKinematics( G4double averagePt2,                   // input parameter
                            const G4double maxPt2,                 // input parameter
-                           const G4double dCor,                   // input parameter
+                           G4double dCor,                         // input parameter
                            G4V3DNucleus* nucleus,                 // input parameter
                            const G4LorentzVector& pResidual,      // input parameter
                            const G4double residualMass,           // input parameter
@@ -2777,7 +2782,19 @@ SamplingNucleonKinematics( const G4double averagePt2,             // input param
 
   if ( ! nucleus ) return false;
 
-  G4bool success = true;
+  if ( residualMassNumber == 0  &&  numberOfInvolvedNucleons == 1 ) {
+    dCor = 0.0; 
+    averagePt2 = 0.0;
+  } 
+
+  G4bool success = true;                            
+
+  G4double SumMasses = residualMass; 
+  for ( G4int i = 0; i < numberOfInvolvedNucleons; i++ ) {
+    G4Nucleon* aNucleon = involvedNucleons[i];
+    if ( ! aNucleon ) continue;
+    SumMasses += aNucleon->GetSplitableHadron()->GetDefinition()->GetPDGMass();
+  }
 
   do {  // while ( ! success )
 
@@ -2791,25 +2808,33 @@ SamplingNucleonKinematics( const G4double averagePt2,             // input param
       G4ThreeVector tmpPt = GaussianPt( averagePt2, maxPt2 );
       ptSum += tmpPt;
       G4ThreeVector tmpX = GaussianPt( dCor*dCor, 1.0 );
-      G4double x = tmpX.x();
+      G4double x = tmpX.x() +
+                   aNucleon->GetSplitableHadron()->GetDefinition()->GetPDGMass() / SumMasses;
+      if ( x < 0.0 || x > 1.0 ) { 
+        success = false; 
+        break; 
+      }
       xSum += x;
       //AR The energy is in the lab (instead of cms) frame but it will not be used.
       G4LorentzVector tmp( tmpPt.x(), tmpPt.y(), x, aNucleon->Get4Momentum().e() );
       aNucleon->SetMomentum( tmp );
     }
 
+    if ( xSum < 0.0  ||  xSum > 1.0 ) success = false;
+
+    if ( ! success ) continue;
+
     G4double deltaPx = ( ptSum.x() - pResidual.x() ) / numberOfInvolvedNucleons;
     G4double deltaPy = ( ptSum.y() - pResidual.y() ) / numberOfInvolvedNucleons;
     G4double delta = 0.0;
     if ( residualMassNumber == 0 ) {
       delta = ( xSum - 1.0 ) / numberOfInvolvedNucleons;
     } else {
-      delta = -1.0 / nucleus->GetMassNumber();
+      delta = 0.0;
     }
 
     xSum = 1.0;
     mass2 = 0.0;
-
     for ( G4int i = 0; i < numberOfInvolvedNucleons; i++ ) {
       G4Nucleon* aNucleon = involvedNucleons[i];
       if ( ! aNucleon ) continue;
diff --git a/source/processes/hadronic/models/parton_string/diffraction/src/G4FTFParameters.cc b/source/processes/hadronic/models/parton_string/diffraction/src/G4FTFParameters.cc
index cffbe032f99..c7e6ec57559 100644
--- a/source/processes/hadronic/models/parton_string/diffraction/src/G4FTFParameters.cc
+++ b/source/processes/hadronic/models/parton_string/diffraction/src/G4FTFParameters.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4FTFParameters.cc 86868 2014-11-19 14:46:25Z gcosmo $
+// $Id: G4FTFParameters.cc 90572 2015-06-04 09:32:32Z gcosmo $
 // GEANT4 tag $Name:  $
 //
 
@@ -171,11 +171,11 @@ G4FTFParameters::G4FTFParameters( const G4ParticleDefinition* particle,
   NumberOfTargetNucleons = NumberOfTargetProtons + NumberOfTargetNeutrons;
 
   if ( ProjectilePDGcode == 2212  ||  ProjectilePDGcode == 2112 ) {  // Projectile is nucleon        
- 
-    G4double XtotPP = FTFxsManager->GetTotalElementCrossSection( particle, KineticEnergy, 1, 0 );
+    G4ParticleDefinition* Proton = G4Proton::Proton();                                          //ALB 
+    G4double XtotPP = FTFxsManager->GetTotalElementCrossSection( Proton, KineticEnergy, 1, 0 );
     G4ParticleDefinition* Neutron = G4Neutron::Neutron();
     G4double XtotPN = FTFxsManager->GetTotalElementCrossSection( Neutron, KineticEnergy, 1, 0 );
-    G4double XelPP  = FTFxsManager->GetElasticElementCrossSection( particle, KineticEnergy, 1, 0 );
+    G4double XelPP  = FTFxsManager->GetElasticElementCrossSection( Proton, KineticEnergy, 1, 0 );
     G4double XelPN  = FTFxsManager->GetElasticElementCrossSection( Neutron, KineticEnergy, 1, 0 );
 
     #ifdef debugFTFparams
@@ -503,18 +503,24 @@ G4FTFParameters::G4FTFParameters( const G4ParticleDefinition* particle,
   //G4cout << "Param ProjectilePDGcode " << ProjectilePDGcode << G4endl;
 
   if ( ProjectilePDGcode > 1000 ) {  // Projectile is baryon
-    //        Proc#   A1      B1            A2       B2   A3   Atop       Ymin
-    SetParams( 0,     13.71, 1.75,          -214.5, 4.25, 0.0, 0.5  ,     1.1 );  // Qexchange without Exc.
-    SetParams( 1,      25.0, 1.0,          -50.34, 1.5 , 0.0, 0.0  ,     1.4 );  // Qexchange with    Exc.
-    SetParams( 2, 6.0/Xinel, 0.0 ,-6.0/Xinel*16.28, 3.0 , 0.0, 0.0  ,     0.93);  // Projectile diffraction
-    SetParams( 3, 6.0/Xinel, 0.0 ,-6.0/Xinel*16.28, 3.0 , 0.0, 0.0  ,     0.93);  // Target diffraction
-    SetParams( 4,       1.0, 0.0 ,          -2.01 , 0.5 , 0.0, 0.0  ,     1.4 );  // Qexchange with    Exc. Additional multiply
-//
+    //        Proc#     A1      B1            A2       B2   A3   Atop       Ymin
+    SetParams(   0,     13.71, 1.75,          -214.5, 4.25, 0.0, 0.5  ,     1.1 );  // Qexchange without Exc.
+    SetParams(   1,      25.0, 1.0 ,          -50.34, 1.5 , 0.0, 0.0  ,     1.4 );   // Qexchange with    Exc.
+    if ( Xinel > 0.0 ) {
+      SetParams( 2, 6.0/Xinel, 0.0 ,-6.0/Xinel*16.28, 3.0 , 0.0, 0.0  ,     0.93);  // Projectile diffraction
+      SetParams( 3, 6.0/Xinel, 0.0 ,-6.0/Xinel*16.28, 3.0 , 0.0, 0.0  ,     0.93);  // Target diffraction
+      SetParams( 4,       1.0, 0.0 ,           -2.01, 0.5 , 0.0, 0.0  ,     1.4 );  // Qexchange with    Exc. Additional multiply
+    } else {
+      SetParams( 2,       0.0, 0.0 ,            0.0 , 0.0 , 0.0, 0.0  ,     0.0 );
+      SetParams( 3,       0.0, 0.0 ,            0.0 , 0.0 , 0.0, 0.0  ,     0.0 );
+      SetParams( 4,       0.0, 0.0 ,            0.0 , 0.0 , 0.0, 0.0  ,     0.0 );
+    }
+
     if ( AbsProjectileBaryonNumber > 1  ||  NumberOfTargetNucleons > 1 ) {
-      SetParams( 2,       0.0, 0.0 ,           0.0  , 0.0 , 0.0, 0.0   , -100.0  );  // Projectile diffraction
-//      SetParams( 3,       0.0, 0.0 ,           0.0  , 0.0 , 0.0, 0.0   , -100.0  );  // Target diffraction
+      SetParams( 2,       0.0, 0.0 ,            0.0 , 0.0 , 0.0, 0.0  ,  -100.0 );  // Projectile diffraction
+      //SetParams( 3,       0.0, 0.0 ,            0.0 , 0.0 , 0.0, 0.0  ,  -100.0 );  // Target diffraction
     }
-//
+
     SetDeltaProbAtQuarkExchange( 0.0 );
     if ( NumberOfTargetNucleons > 26 ) {
       SetProbOfSameQuarkExchange( 1.0);
@@ -531,16 +537,22 @@ G4FTFParameters::G4FTFParameters( const G4ParticleDefinition* particle,
 
   } else if( ProjectilePDGcode < -1000 ) {  // Projectile is anti_baryon
 
-    //        Proc#   A1      B1            A2       B2   A3   Atop       Ymin
-    SetParams( 0,      0.0 , 0.0 ,           0.0  , 0.0 , 0.0, 0.0  ,  1000.0  );  // Qexchange without Exc. 
-    SetParams( 1,      0.0 , 0.0 ,           0.0  , 0.0 , 0.0, 0.0  ,  1000.0  );  // Qexchange with    Exc.
-    SetParams( 2, 6.0/Xinel, 0.0 ,-6.0/Xinel*16.28, 3.0 , 0.0, 0.0  ,     0.93);  // Projectile diffraction
-    SetParams( 3, 6.0/Xinel, 0.0 ,-6.0/Xinel*16.28, 3.0 , 0.0, 0.0  ,     0.93);  // Target diffraction
-    SetParams( 4,       1.0, 0.0 ,             0.0  , 0.0 , 0.0, 0.0  ,     0.93 );  // Qexchange with    Exc. Additional multiply
+    //        Proc#     A1      B1            A2       B2   A3   Atop       Ymin
+    SetParams(   0,       0.0, 0.0 ,             0.0, 0.0 , 0.0, 0.0  ,  1000.0  );  // Qexchange without Exc. 
+    SetParams(   1,       0.0, 0.0 ,             0.0, 0.0 , 0.0, 0.0  ,  1000.0  );  // Qexchange with    Exc.
+    if ( Xinel > 0.0 ) {
+      SetParams( 2, 6.0/Xinel, 0.0 ,-6.0/Xinel*16.28, 3.0 , 0.0, 0.0  ,     0.93 );  // Projectile diffraction
+      SetParams( 3, 6.0/Xinel, 0.0 ,-6.0/Xinel*16.28, 3.0 , 0.0, 0.0  ,     0.93 );  // Target diffraction
+      SetParams( 4,       1.0, 0.0 ,             0.0, 0.0 , 0.0, 0.0  ,     0.93 );  // Qexchange with    Exc. Additional multiply
+    } else {
+      SetParams( 2,       0.0, 0.0 ,             0.0, 0.0 , 0.0, 0.0  ,     0.0  );
+      SetParams( 3,       0.0, 0.0 ,             0.0, 0.0 , 0.0, 0.0  ,     0.0  );
+      SetParams( 4,       0.0, 0.0 ,             0.0, 0.0 , 0.0, 0.0  ,     0.0  );
+    }
 
     if ( AbsProjectileBaryonNumber > 1  ||  NumberOfTargetNucleons > 1 ) {
-      SetParams( 2,      0.0 , 0.0 ,           0.0  , 0.0 , 0.0, 0.0  ,  -100.0  );  // Projectile diffraction
-//      SetParams( 3,      0.0 , 0.0 ,           0.0  , 0.0 , 0.0, 0.0  ,  -100.0  );  // Target diffraction
+      SetParams( 2,       0.0, 0.0 ,             0.0, 0.0 , 0.0, 0.0  ,  -100.0  );  // Projectile diffraction
+      //SetParams( 3,       0.0, 0.0 ,             0.0, 0.0 , 0.0, 0.0  ,  -100.0  );  // Target diffraction
     }
     SetDeltaProbAtQuarkExchange( 0.0 );
     SetProbOfSameQuarkExchange( 0.0 );
@@ -600,16 +612,22 @@ G4FTFParameters::G4FTFParameters( const G4ParticleDefinition* particle,
 
    } else {  // Projectile is undefined, Nucleon assumed
 
-    //        Proc#   A1      B1            A2       B2   A3   Atop       Ymin
-    SetParams( 0,     13.71, 1.75,          -214.5, 4.25, 0.0, 0.5  ,     1.1 );  // Qexchange without Exc.
-    SetParams( 1,      25.0, 1.0,          -50.34, 1.5 , 0.0, 0.0  ,     1.4 );  // Qexchange with    Exc.
-    SetParams( 2, 6.0/Xinel, 0.0 ,-6.0/Xinel*16.28, 3.0 , 0.0, 0.0  ,     0.93);  // Projectile diffraction
-    SetParams( 3, 6.0/Xinel, 0.0 ,-6.0/Xinel*16.28, 3.0 , 0.0, 0.0  ,     0.93);  // Target diffraction
-    SetParams( 4,       1.0, 0.0 ,          -2.01 , 0.5 , 0.0, 0.0  ,     1.4 );  // Qexchange with    Exc. Additional multiply
+    //        Proc#     A1      B1            A2       B2   A3   Atop       Ymin
+    SetParams(   0,     13.71, 1.75,         -214.5 , 4.25, 0.0, 0.5  ,     1.1 );  // Qexchange without Exc.
+    SetParams(   1,      25.0, 1.0 ,          -50.34, 1.5 , 0.0, 0.0  ,     1.4 );  // Qexchange with    Exc.
+    if ( Xinel > 0.0 ) {
+      SetParams( 2, 6.0/Xinel, 0.0 ,-6.0/Xinel*16.28, 3.0 , 0.0, 0.0  ,     0.93);  // Projectile diffraction
+      SetParams( 3, 6.0/Xinel, 0.0 ,-6.0/Xinel*16.28, 3.0 , 0.0, 0.0  ,     0.93);  // Target diffraction
+      SetParams( 4,       1.0, 0.0 ,           -2.01, 0.5 , 0.0, 0.0  ,     1.4 );  // Qexchange with    Exc. Additional multiply
+    } else {
+      SetParams( 2,       0.0, 0.0 ,            0.0 , 0.0 , 0.0, 0.0  ,     0.0 );
+      SetParams( 3,       0.0, 0.0 ,            0.0 , 0.0 , 0.0, 0.0  ,     0.0 );
+      SetParams( 4,       0.0, 0.0 ,            0.0 , 0.0 , 0.0, 0.0  ,     0.0 );
+    }
 
     if ( AbsProjectileBaryonNumber > 1  ||  NumberOfTargetNucleons > 1 ) {
-      SetParams( 2,      0.0 , 0.0 ,            0.0 , 0.0 , 0.0, 0.0  ,  -100.0  );  // Projectile diffraction
-//      SetParams( 3,      0.0 , 0.0 ,            0.0 , 0.0 , 0.0, 0.0  ,  -100.0  );  // Target diffraction
+      SetParams( 2,       0.0, 0.0 ,            0.0 , 0.0 , 0.0, 0.0  ,  -100.0 );  // Projectile diffraction
+      //SetParams( 3,       0.0, 0.0 ,            0.0 , 0.0 , 0.0, 0.0  ,  -100.0 );  // Target diffraction
     }
     SetDeltaProbAtQuarkExchange( 0.0 );              // 7 June 2011
     SetProbOfSameQuarkExchange( 0.0 );
diff --git a/source/processes/hadronic/models/parton_string/diffraction/src/G4FTFParticipants.cc b/source/processes/hadronic/models/parton_string/diffraction/src/G4FTFParticipants.cc
index 8b404e29129..40e2d085e6e 100644
--- a/source/processes/hadronic/models/parton_string/diffraction/src/G4FTFParticipants.cc
+++ b/source/processes/hadronic/models/parton_string/diffraction/src/G4FTFParticipants.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4FTFParticipants.cc 87254 2014-11-28 07:49:23Z gcosmo $
+// $Id: G4FTFParticipants.cc 90572 2015-06-04 09:32:32Z gcosmo $
 // GEANT4 tag $Name:  $
 //
 
@@ -347,3 +347,18 @@ void G4FTFParticipants::ShiftInteractionTime() {
   }
   return;
 }
+
+
+//============================================================================
+
+void G4FTFParticipants::Clean() {
+  for ( size_t i = 0; i < theInteractions.size(); i++ ) {
+    if ( theInteractions[ i ] ) {
+      delete theInteractions[ i ];
+      theInteractions[ i ] = 0;
+    }
+  }
+  theInteractions.clear();
+  currentInteraction = -1;
+}
+
diff --git a/source/processes/hadronic/models/pre_equilibrium/History b/source/processes/hadronic/models/pre_equilibrium/History
index 56eed94ef3f..2a8f333bab9 100644
--- a/source/processes/hadronic/models/pre_equilibrium/History
+++ b/source/processes/hadronic/models/pre_equilibrium/History
@@ -14,6 +14,26 @@ code and to keep track of all tags.
      * Please list in reverse chronological order (last date on top)
      ---------------------------------------------------------------
 
+15-April-2015 V.Ivanchenko   hadr-pre-V10-00-03
+-------------------------------------------------
+- G4PreCompoundTransition - extended protection against numerical 
+    problem; use G4Log and G4Exp instead of G4Pow; cleanup sampling of
+    number of charged excitons
+- G4PreCompoundModel - cleanup
+
+15-April-2015 V.Ivanchenko
+-------------------------------------------------
+- G4PreCompoundTransition - added protection against numerical problem
+    due too high excitation energy; code cleanup
+
+18-March-2015 V.Ivanchenko
+-------------------------------------------------
+- G4PreCompoundAlpha, G4PreCompoundDeuteron, G4PreCompoundHe3,
+  G4PreCompoundModel, G4PreCompoundNeutron, G4PreCompoundProton,
+  G4PreCompoundTransitions, G4PreCompoundTriton - fixed minor
+    Coverity report, cleanup local constants, minor cleanup of the
+    code, should not affect any result
+
 07-July-2014 V.Ivanchenko+J.M.Juesada  hadr-pre-V10-00-02
 ---------------------------------------------------------
 - G4PreCompoundIon - cleanup transition probability computation
diff --git a/source/processes/hadronic/models/pre_equilibrium/exciton_model/include/G4PreCompoundTransitions.hh b/source/processes/hadronic/models/pre_equilibrium/exciton_model/include/G4PreCompoundTransitions.hh
index ea3521be77f..e816a37318d 100644
--- a/source/processes/hadronic/models/pre_equilibrium/exciton_model/include/G4PreCompoundTransitions.hh
+++ b/source/processes/hadronic/models/pre_equilibrium/exciton_model/include/G4PreCompoundTransitions.hh
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4PreCompoundTransitions.hh 68028 2013-03-13 13:48:15Z gcosmo $
+// $Id: G4PreCompoundTransitions.hh 90591 2015-06-04 13:45:29Z gcosmo $
 //
 // by V. Lara
 // 01.05.2008 J. M. Quesada . New methods for accessing to individual transition 
@@ -42,12 +42,10 @@
 //                    number of excitons will be the same
 
 #include "G4VPreCompoundTransitions.hh"
-
 #include "globals.hh"
-#include "G4Fragment.hh"
 
 class G4ParticleDefinition;
-class G4Pow;
+class G4Fragment;
 
 class G4PreCompoundTransitions : public G4VPreCompoundTransitions
 {
@@ -68,7 +66,6 @@ private:
   G4bool operator==(const G4PreCompoundTransitions &right) const;
   G4bool operator!=(const G4PreCompoundTransitions &right) const;
 
-  G4Pow* g4pow;
   const G4ParticleDefinition* proton;
 
   G4double FermiEnergy;
diff --git a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundAlpha.cc b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundAlpha.cc
index 62e2e48ebe1..d4b10f0c543 100644
--- a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundAlpha.cc
+++ b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundAlpha.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4PreCompoundAlpha.cc 82765 2014-07-08 14:25:39Z gcosmo $
+// $Id: G4PreCompoundAlpha.cc 90591 2015-06-04 13:45:29Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -45,6 +45,17 @@
 #include "G4SystemOfUnits.hh"
 #include "G4Alpha.hh"
 
+const G4double  p0 = 10.95;
+const G4double  p1 = -85.2;
+const G4double  p2 = 1146.;
+const G4double  landa0 = 0.0643;
+const G4double  landa1 = -13.96;
+const G4double  mm0 = 781.2;
+const G4double  mu1 = 0.29;
+const G4double  nu0 = -304.7;
+const G4double  nu1 = -470.0;
+const G4double  nu2 = -8.580;        
+
 G4PreCompoundAlpha::G4PreCompoundAlpha()
   : G4PreCompoundIon(G4Alpha::Alpha(), &theAlphaCoulombBarrier)
 {
@@ -98,15 +109,9 @@ G4double G4PreCompoundAlpha::CrossSection(G4double K)
   FragmentA = theA + ResidualA;
   FragmentAthrd = g4pow->Z13(FragmentA);
 
-  if (OPTxs==0) { return GetOpt0( K); }
-  else if( OPTxs==1 || OPTxs==2) { return GetOpt12( K); }
-  else if (OPTxs==3 || OPTxs==4) { return GetOpt34( K); }
-  else{
-    std::ostringstream errOs;
-    errOs << "BAD Alpha CROSS SECTION OPTION !!"  <<G4endl;
-    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
-    return 0.;
-  }
+  if (OPTxs==0)       { return GetOpt0( K); }
+  else if(OPTxs <= 2) { return GetOpt12( K); }
+  else                { return GetOpt34( K); }
 }
 
 G4double G4PreCompoundAlpha::GetAlpha()
@@ -138,24 +143,11 @@ G4double G4PreCompoundAlpha::GetAlpha()
 
 G4double G4PreCompoundAlpha::GetOpt12(G4double K)
 {
-  G4double Kc=K;
-
   // JMQ xsec is set constant above limit of validity
-  if (K > 50*MeV) { Kc = 50*MeV; }
-
+  G4double Kc = std::min(K, 50*MeV);
   G4double landa ,mu ,nu ,p , Ec,q,r,ji,xs;
 
-  G4double     p0 = 10.95;
-  G4double     p1 = -85.2;
-  G4double     p2 = 1146.;
-  G4double     landa0 = 0.0643;
-  G4double     landa1 = -13.96;
-  G4double     mm0 = 781.2;
-  G4double     mu1 = 0.29;
-  G4double     nu0 = -304.7;
-  G4double     nu1 = -470.0;
-  G4double     nu2 = -8.580;   
-  G4double     delta=1.2;          
+  const G4double     delta=1.2;          
 
   Ec = 1.44*theZ*ResidualZ/(1.5*ResidualAthrd+delta);
   p = p0 + p1/Ec + p2/(Ec*Ec);
@@ -170,8 +162,7 @@ G4double G4PreCompoundAlpha::GetOpt12(G4double K)
   if(Kc < Ec) { xs = p*Kc*Kc + q*Kc + r;}
   else {xs = p*(Kc - ji)*(Kc - ji) + landa*Kc + mu + nu*(2 - Kc/ji)/ji ;}
   
-  if (xs <0.0) {xs=0.0;}
-              
+  xs = std::max(xs, 0.0);
   return xs;
 }
 
@@ -179,65 +170,51 @@ G4double G4PreCompoundAlpha::GetOpt12(G4double K)
 G4double G4PreCompoundAlpha::GetOpt34(G4double K)
 // c     ** alpha from huizenga and igo
 {
-  G4double landa, mu, nu, p , signor(1.),sig;
-  G4double ec,ecsq,xnulam,etest(0.),a; 
-  G4double b,ecut,cut,ecut2,geom,elab;
-
-  G4double     flow = 1.e-18;
-  G4double     spill= 1.e+18;
-
-  G4double     p0 = 10.95;
-  G4double     p1 = -85.2;
-  G4double     p2 = 1146.;
-  G4double     landa0 = 0.0643;
-  G4double     landa1 = -13.96;
-  G4double     mm0 = 781.2;
-  G4double     mu1 = 0.29;
-  G4double     nu0 = -304.7;
-  G4double     nu1 = -470.0;
-  G4double     nu2 = -8.580;        
-  
-  G4double      ra=1.20;
+  const G4double     flow = 1.e-18;
+  const G4double     spill= 1.e+18;  
+  const G4double     ra = 1.20;
+  const G4double     signor = 1.0;
         
   //JMQ 13/02/09 increase of reduced radius to lower the barrier
   // ec = 1.44 * theZ * ResidualZ / (1.5*ResidualAthrd+ra);
-  ec = 1.44 * theZ * ResidualZ / (1.7*ResidualAthrd+ra);
-  ecsq = ec * ec;
-  p = p0 + p1/ec + p2/ecsq;
-  landa = landa0*ResidualA + landa1;
-  a = g4pow->powZ(ResidualA,mu1);
-  mu = mm0 * a;
-  nu = a* (nu0+nu1*ec+nu2*ecsq);  
-  xnulam = nu / landa;
-  if (xnulam > spill) { xnulam=0.; }
-  if (xnulam >= flow) { etest = 1.2 *std::sqrt(xnulam); }
+  G4double ec = 1.44 * theZ * ResidualZ / (1.7*ResidualAthrd+ra);
+  G4double ecsq = ec * ec;
+  G4double p = p0 + p1/ec + p2/ecsq;
+  G4double landa = landa0*ResidualA + landa1;
+  G4double a = g4pow->powZ(ResidualA,mu1);
+  G4double mu = mm0 * a;
+  G4double nu = a* (nu0+nu1*ec+nu2*ecsq);  
+  G4double xnulam = nu / landa;
+  G4double etest = 0.0;
+  if (xnulam > spill)      { xnulam=0.; }
+  else if (xnulam >= flow) { etest = 1.2 *std::sqrt(xnulam); }
 
   a = -2.*p*ec + landa - nu/ecsq;
-  b = p*ecsq + mu + 2.*nu/ec;
-  ecut = 0.;
-  cut = a*a - 4.*p*b;
+  G4double b = p*ecsq + mu + 2.*nu/ec;
+  G4double ecut = 0.;
+  G4double cut = a*a - 4.*p*b;
   if (cut > 0.) { ecut = std::sqrt(cut); }
-  ecut = (ecut-a) / (p+p);
-  ecut2 = ecut;
+  ecut = (ecut-a) / (2*p);
+
   //JMQ 290310 for avoiding unphysical increase below minimum (at ecut)
   // ecut<0 means that there is no cut with energy axis, i.e. xs is set 
   // to 0 bellow minimum
-  //  if (cut < 0.) ecut2 = ecut - 2.;
-  if (cut < 0.) { ecut2 = ecut; }
-  elab = K * FragmentA / G4double(ResidualA);
-  sig = 0.;
+
+  G4double elab = K * FragmentA / G4double(ResidualA);
+  G4double sig = 0.;
   
-  if (elab <= ec) { //start for E<Ec
-    if (elab > ecut2) { sig = (p*elab*elab+a*elab+b) * signor; }
-  }           //end for E<Ec
-  else {           //start for E>Ec
+  if (elab <= ec) { 
+    if (elab > ecut) { sig = std::max(0.0,(p*elab*elab+a*elab+b) * signor); }
+
+  } else {  
     sig = (landa*elab+mu+nu/elab) * signor;
-    geom = 0.;
-    if (xnulam < flow || elab < etest) { return sig; }
-    geom = std::sqrt(theA*K);
-    geom = 1.23*ResidualAthrd + ra + 4.573/geom;
-    geom = 31.416 * geom * geom;
-    sig = std::max(geom,sig);
-  }           //end for E>Ec
+    G4double geom = 0.;
+    if (xnulam >= flow && elab >= etest) {
+      geom = std::sqrt(theA*K);
+      geom = 1.23*ResidualAthrd + ra + 4.573/geom;
+      geom = 31.416 * geom * geom;
+    }
+    sig = std::max(sig, geom);
+  }          
   return sig;
 }
diff --git a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundDeuteron.cc b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundDeuteron.cc
index ec8ab21b477..fdb21b2b453 100644
--- a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundDeuteron.cc
+++ b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundDeuteron.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4PreCompoundDeuteron.cc 68028 2013-03-13 13:48:15Z gcosmo $
+// $Id: G4PreCompoundDeuteron.cc 90591 2015-06-04 13:45:29Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -93,15 +93,9 @@ G4double G4PreCompoundDeuteron::CrossSection(G4double K)
   FragmentA = theA + ResidualA;
   FragmentAthrd = g4pow->Z13(FragmentA);
 
-  if (OPTxs==0) { return GetOpt0( K); }
-  else if( OPTxs==1 || OPTxs==2) { return GetOpt12( K); }
-  else if (OPTxs==3 || OPTxs==4) { return GetOpt34( K); }
-  else{
-    std::ostringstream errOs;
-    errOs << "BAD DEUTERON CROSS SECTION OPTION !!"  <<G4endl;
-    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
-    return 0.;
-  }
+  if (OPTxs==0)        { return GetOpt0( K); }
+  else if( OPTxs <= 2) { return GetOpt12( K); }
+  else                 { return GetOpt34( K); }
 }
 
 G4double G4PreCompoundDeuteron::GetAlpha()
@@ -114,9 +108,10 @@ G4double G4PreCompoundDeuteron::GetAlpha()
     } 
   else 
     {
-      C = ((((0.15417e-06*aZ) - 0.29875e-04)*aZ + 0.21071e-02)*aZ - 0.66612e-01)*aZ + 0.98375; 
+      C = ((((0.15417e-06*aZ) - 0.29875e-04)*aZ + 0.21071e-02)*aZ 
+	   - 0.66612e-01)*aZ + 0.98375; 
     }
-  return 1.0 + C/2.0;
+  return 1.0 + 0.5*C;
 }
 //
 //********************* OPT=1,2 : Chatterjee's cross section ********************
@@ -131,17 +126,17 @@ G4double G4PreCompoundDeuteron::GetOpt12(G4double K)
 
   G4double landa ,mu ,nu ,p , Ec,q,r,ji,xs;
  
-  G4double    p0 = -38.21;
-  G4double    p1 = 922.6;
-  G4double    p2 = -2804.;
-  G4double    landa0 = -0.0323;
-  G4double    landa1 = -5.48;
-  G4double    mm0 = 336.1;
-  G4double    mu1 = 0.48;
-  G4double    nu0 = 524.3;
-  G4double    nu1 = -371.8;
-  G4double    nu2 = -5.924;  
-  G4double    delta=1.2;            
+  const G4double p0 = -38.21;
+  const G4double p1 = 922.6;
+  const G4double p2 = -2804.;
+  const G4double landa0 = -0.0323;
+  const G4double landa1 = -5.48;
+  const G4double mm0 = 336.1;
+  const G4double mu1 = 0.48;
+  const G4double nu0 = 524.3;
+  const G4double nu1 = -371.8;
+  const G4double nu2 = -5.924;  
+  const G4double delta = 1.2;            
 
   Ec = 1.44*theZ*ResidualZ/(1.5*ResidualAthrd+delta);
   p = p0 + p1/Ec + p2/(Ec*Ec);
@@ -155,9 +150,8 @@ G4double G4PreCompoundDeuteron::GetOpt12(G4double K)
   ji=std::max(Kc,Ec);
   if(Kc < Ec) { xs = p*Kc*Kc + q*Kc + r;}
   else {xs = p*(Kc - ji)*(Kc - ji) + landa*Kc + mu + nu*(2 - Kc/ji)/ji ;}
-                 
-  if (xs <0.0) {xs=0.0;}
               
+  xs = std::max(xs, 0.0);
   return xs;
 }
 
@@ -165,66 +159,63 @@ G4double G4PreCompoundDeuteron::GetOpt12(G4double K)
 G4double G4PreCompoundDeuteron::GetOpt34(G4double K)
 //     ** d from o.m. of perey and perey
 {
-
-  G4double landa, mu, nu, p ,signor(1.),sig;
-  G4double ec,ecsq,xnulam,etest(0.),a; 
-  G4double b,ecut,cut,ecut2,geom,elab;
-
-  G4double     flow = 1.e-18;
-  G4double     spill= 1.e+18;
-
-  G4double     p0 = 0.798;
-  G4double     p1 = 420.3;
-  G4double     p2 = -1651.;
-  G4double     landa0 = 0.00619;
-  G4double     landa1 = -7.54;
-  G4double     mm0 = 583.5;
-  G4double     mu1 = 0.337;
-  G4double     nu0 = 421.8;
-  G4double     nu1 = -474.5;
-  G4double     nu2 = -3.592;      
+  const G4double flow = 1.e-18;
+  const G4double spill= 1.e+18;
+
+  const G4double p0 = 0.798;
+  const G4double p1 = 420.3;
+  const G4double p2 = -1651.;
+  const G4double landa0 = 0.00619;
+  const G4double landa1 = -7.54;
+  const G4double mm0 = 583.5;
+  const G4double mu1 = 0.337;
+  const G4double nu0 = 421.8;
+  const G4double nu1 = -474.5;
+  const G4double nu2 = -3.592;      
  
-  G4double     ra=0.80;
+  const G4double ra = 0.80;
+  const G4double signor = 1.0;
         
   //JMQ 13/02/09 increase of reduced radius to lower the barrier
   // ec = 1.44 * theZ * ResidualZ / (1.5*ResidualAthrd+ra);
-  ec = 1.44 * theZ * ResidualZ / (1.7*ResidualAthrd+ra);
-  ecsq = ec * ec;
-  p = p0 + p1/ec + p2/ecsq;
-  landa = landa0*ResidualA + landa1;
-  a = g4pow->powZ(ResidualA,mu1);
-  mu = mm0 * a;
-  nu = a* (nu0+nu1*ec+nu2*ecsq);  
-  xnulam = nu / landa;
-  if (xnulam > spill) { xnulam=0.; }
-  if (xnulam >= flow) { etest = 1.2 *std::sqrt(xnulam); }
+  G4double ec = 1.44 * theZ * ResidualZ / (1.7*ResidualAthrd+ra);
+  G4double ecsq = ec * ec;
+  G4double p = p0 + p1/ec + p2/ecsq;
+  G4double landa = landa0*ResidualA + landa1;
+  G4double a = g4pow->powZ(ResidualA,mu1);
+  G4double mu = mm0 * a;
+  G4double nu = a* (nu0+nu1*ec+nu2*ecsq);  
+  G4double xnulam = nu / landa;
+  G4double etest = 0.0;
+  if (xnulam > spill)      { xnulam=0.; }
+  else if (xnulam >= flow) { etest = 1.2 *std::sqrt(xnulam); }
 
   a = -2.*p*ec + landa - nu/ecsq;
-  b = p*ecsq + mu + 2.*nu/ec;
-  ecut = 0.;
-  cut = a*a - 4.*p*b;
+  G4double b = p*ecsq + mu + 2.*nu/ec;
+  G4double ecut = 0.;
+  G4double cut = a*a - 4.*p*b;
   if (cut > 0.) { ecut = std::sqrt(cut); }
-  ecut = (ecut-a) / (p+p);
-  ecut2 = ecut;
+  ecut = (ecut-a) / (2*p);
+
   //JMQ 290310 for avoiding unphysical increase below minimum (at ecut)
   //ecut<0 means that there is no cut with energy axis, i.e. xs is set 
   //to 0 bellow minimum
-  //  if (cut < 0.) ecut2 = ecut - 2.;
-  if (cut < 0.) { ecut2 = ecut; }
-  elab = K * FragmentA / G4double(ResidualA);
-  sig = 0.;
-
-  if (elab <= ec) { //start for E<Ec
-    if (elab > ecut2) { sig = (p*elab*elab+a*elab+b) * signor; }
-  }           //end for E<Ec
-  else {           //start for E>Ec
+
+  G4double elab = K * FragmentA / G4double(ResidualA);
+  G4double sig = 0.;
+
+  if (elab <= ec) { 
+    if (elab > ecut) { sig = std::max(0.0,(p*elab*elab+a*elab+b) * signor); }
+
+  } else {           
     sig = (landa*elab+mu+nu/elab) * signor;
-    geom = 0.;
-    if (xnulam < flow || elab < etest) { return sig; }
-    geom = std::sqrt(theA*K);
-    geom = 1.23*ResidualAthrd + ra + 4.573/geom;
-    geom = 31.416 * geom * geom;
+    G4double geom = 0.;
+    if (xnulam >= flow && elab >= etest) { 
+      geom = std::sqrt(theA*K);
+      geom = 1.23*ResidualAthrd + ra + 4.573/geom;
+      geom = 31.416 * geom * geom;
+    }
     sig = std::max(geom,sig);
-  }           //end for E>Ec
+  }          
   return sig;
 }
diff --git a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundHe3.cc b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundHe3.cc
index f7f4ad9c86e..2b9f87e4ed3 100644
--- a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundHe3.cc
+++ b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundHe3.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4PreCompoundHe3.cc 82765 2014-07-08 14:25:39Z gcosmo $
+// $Id: G4PreCompoundHe3.cc 90591 2015-06-04 13:45:29Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -96,15 +96,9 @@ G4double G4PreCompoundHe3::CrossSection(G4double K)
   FragmentA = theA + ResidualA;
   FragmentAthrd = g4pow->Z13(FragmentA);
 
-  if (OPTxs==0) return GetOpt0( K);
-  else if( OPTxs==1 || OPTxs==2) return GetOpt12( K);
-  else if (OPTxs==3 || OPTxs==4)  return GetOpt34( K);
-  else{
-    std::ostringstream errOs;
-    errOs << "BAD He3 CROSS SECTION OPTION !!"  <<G4endl;
-    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
-    return 0.;
-  }
+  if (OPTxs==0)        { return GetOpt0( K); }
+  else if( OPTxs <= 2) { return GetOpt12( K); }
+  else                 { return GetOpt34( K); }
 }
 
 G4double G4PreCompoundHe3::GetAlpha()
@@ -142,17 +136,17 @@ G4double G4PreCompoundHe3::GetOpt12(const  G4double K)
 
   G4double landa ,mu ,nu ,p , Ec,q,r,ji,xs;
 
-  G4double     p0 = -3.06;
-  G4double     p1 = 278.5;
-  G4double     p2 = -1389.;
-  G4double     landa0 = -0.00535;
-  G4double     landa1 = -11.16;
-  G4double     mm0 = 555.5;
-  G4double     mu1 = 0.40;
-  G4double     nu0 = 687.4;
-  G4double     nu1 = -476.3;
-  G4double     nu2 = 0.509;    
-  G4double     delta=1.2;              
+  const G4double  p0 = -3.06;
+  const G4double  p1 = 278.5;
+  const G4double  p2 = -1389.;
+  const G4double  landa0 = -0.00535;
+  const G4double  landa1 = -11.16;
+  const G4double  mm0 = 555.5;
+  const G4double  mu1 = 0.40;
+  const G4double  nu0 = 687.4;
+  const G4double  nu1 = -476.3;
+  const G4double  nu2 = 0.509;    
+  const G4double  delta=1.2;              
 
   Ec = 1.44*theZ*ResidualZ/(1.5*ResidualAthrd+delta);
   p = p0 + p1/Ec + p2/(Ec*Ec);
@@ -167,9 +161,8 @@ G4double G4PreCompoundHe3::GetOpt12(const  G4double K)
   ji=std::max(Kc,Ec);
   if(Kc < Ec) { xs = p*Kc*Kc + q*Kc + r;}
   else {xs = p*(Kc - ji)*(Kc - ji) + landa*Kc + mu + nu*(2 - Kc/ji)/ji ;}
-  
-  if (xs <0.0) {xs=0.0;}
               
+  xs = std::max(xs, 0.0);
   return xs;
 
 }
@@ -178,66 +171,63 @@ G4double G4PreCompoundHe3::GetOpt12(const  G4double K)
 G4double G4PreCompoundHe3::GetOpt34(const  G4double K)
 //c     ** 3he from o.m. of gibson et al
 {
-  G4double landa, mu, nu, p , signor(1.),sig;
-  G4double ec,ecsq,xnulam,etest(0.),a; 
-  G4double b,ecut,cut,ecut2,geom,elab;
-
-  G4double     flow = 1.e-18;
-  G4double     spill= 1.e+18;
-
-  G4double     p0 = -2.88;
-  G4double     p1 = 205.6;
-  G4double     p2 = -1487.;
-  G4double     landa0 = 0.00459;
-  G4double     landa1 = -8.93;
-  G4double     mm0 = 611.2;
-  G4double     mu1 = 0.35;
-  G4double     nu0 = 473.8;
-  G4double     nu1 = -468.2;
-  G4double     nu2 = -2.225;      
+  const G4double  flow = 1.e-18;
+  const G4double  spill= 1.e+18;
+
+  const G4double  p0 = -2.88;
+  const G4double  p1 = 205.6;
+  const G4double  p2 = -1487.;
+  const G4double  landa0 = 0.00459;
+  const G4double  landa1 = -8.93;
+  const G4double  mm0 = 611.2;
+  const G4double  mu1 = 0.35;
+  const G4double  nu0 = 473.8;
+  const G4double  nu1 = -468.2;
+  const G4double  nu2 = -2.225;      
   
-  G4double      ra=0.80;
+  const G4double  ra = 0.80;
+  const G4double  signor = 1.0;
         
   //JMQ 13/02/09 increase of reduced radius to lower the barrier
   // ec = 1.44 * theZ * ResidualZ / (1.5*ResidualAthrd+ra);
-  ec = 1.44 * theZ * ResidualZ / (1.7*ResidualAthrd+ra);
-  ecsq = ec * ec;
-  p = p0 + p1/ec + p2/ecsq;
-  landa = landa0*ResidualA + landa1;
-  a = g4pow->powZ(ResidualA,mu1);
-  mu = mm0 * a;
-  nu = a* (nu0+nu1*ec+nu2*ecsq);  
-  xnulam = nu / landa;
-  if (xnulam > spill) { xnulam=0.; }
-  if (xnulam >= flow) { etest = 1.2 *std::sqrt(xnulam); }
-  
+  G4double ec = 1.44 * theZ * ResidualZ / (1.7*ResidualAthrd+ra);
+  G4double ecsq = ec * ec;
+  G4double p = p0 + p1/ec + p2/ecsq;
+  G4double landa = landa0*ResidualA + landa1;
+  G4double a = g4pow->powZ(ResidualA,mu1);
+  G4double mu = mm0 * a;
+  G4double nu = a* (nu0+nu1*ec+nu2*ecsq);  
+  G4double xnulam = nu / landa;
+  G4double etest = 0.0;
+  if (xnulam > spill)      { xnulam=0.; }
+  else if (xnulam >= flow) { etest = 1.2 *std::sqrt(xnulam); }
+
   a = -2.*p*ec + landa - nu/ecsq;
-  b = p*ecsq + mu + 2.*nu/ec;
-  ecut = 0.;
-  cut = a*a - 4.*p*b;
-  if (cut > 0.) ecut = std::sqrt(cut);
-  ecut = (ecut-a) / (p+p);
-  ecut2 = ecut;
+  G4double b = p*ecsq + mu + 2.*nu/ec;
+  G4double ecut = 0.;
+  G4double cut = a*a - 4.*p*b;
+  if (cut > 0.) { ecut = std::sqrt(cut); }
+  ecut = (ecut-a) / (2*p);
+
   //JMQ 290310 for avoiding unphysical increase below minimum (at ecut)
   // ecut<0 means that there is no cut with energy axis, i.e. xs is set
   // to 0 bellow minimum
-  //  if (cut < 0.) ecut2 = ecut - 2.;
-  if (cut < 0.) { ecut2 = ecut; }
-  elab = K * FragmentA /G4double(ResidualA);
-  sig = 0.;
-  
-  if (elab <= ec) { //start for E<Ec
-    if (elab > ecut2) { sig = (p*elab*elab+a*elab+b) * signor; }
-  }           //end for E<Ec
-  else {           //start for E>Ec
+
+  G4double elab = K * FragmentA / G4double(ResidualA);
+  G4double sig = 0.;
+
+  if (elab <= ec) { 
+    if (elab > ecut) { sig = std::max(0.0,(p*elab*elab+a*elab+b) * signor); }
+
+  } else {           
     sig = (landa*elab+mu+nu/elab) * signor;
-    geom = 0.;
-    if (xnulam < flow || elab < etest) { return sig; }
-    geom = std::sqrt(theA*K);
-    geom = 1.23*ResidualAthrd + ra + 4.573/geom;
-    geom = 31.416 * geom * geom;
+    G4double geom = 0.;
+    if (xnulam >= flow && elab >= etest) { 
+      geom = std::sqrt(theA*K);
+      geom = 1.23*ResidualAthrd + ra + 4.573/geom;
+      geom = 31.416 * geom * geom;
+    }
     sig = std::max(geom,sig);
-  }           //end for E>Ec
+  }          
   return sig;
-  
 }
diff --git a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundModel.cc b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundModel.cc
index f0f0b9ae4e8..72029feb8b2 100644
--- a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundModel.cc
+++ b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundModel.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4PreCompoundModel.cc 80062 2014-03-31 13:41:30Z gcosmo $
+// $Id: G4PreCompoundModel.cc 90591 2015-06-04 13:45:29Z gcosmo $
 //
 // by V. Lara
 //
@@ -39,7 +39,8 @@
 //                      - CEM transition probabilities (useCEMtr=true)  
 // 20.08.2010 V.Ivanchenko Cleanup of the code: 
 //                      - integer Z and A;
-//                      - emission and transition classes created at initialisation
+//                      - emission and transition classes created at 
+//                        initialisation
 //                      - options are set at initialisation
 //                      - do not use copy-constructors for G4Fragment  
 // 03.01.2012 V.Ivanchenko Added pointer to G4ExcitationHandler to the 
@@ -64,15 +65,18 @@
 #include "G4LorentzVector.hh"
 #include "G4Exp.hh"
 
+////////////////////////////////////////////////////////////////////////////////
+
 G4PreCompoundModel::G4PreCompoundModel(G4ExcitationHandler* ptr) 
   : G4VPreCompoundModel(ptr,"PRECO"), useHETCEmission(false), 
     useGNASHTransition(false), OPTxs(3), useSICB(false), 
     useNGB(false), useSCO(false), useCEMtr(true), maxZ(3), maxA(5) 
-				      //maxZ(9), maxA(17)
 {
   if(!ptr) { SetExcitationHandler(new G4ExcitationHandler()); }
   G4PreCompoundParameters param;
-  fLevelDensity = param.GetLevelDensity();
+
+  // 12/pi2 factor is used in real computation
+  fLevelDensity = param.GetLevelDensity()*12.0/CLHEP::pi2;
 
   theEmission = new G4PreCompoundEmission();
   if(useHETCEmission) { theEmission->SetHETCModel(); }
@@ -89,6 +93,8 @@ G4PreCompoundModel::G4PreCompoundModel(G4ExcitationHandler* ptr)
   neutron = G4Neutron::Neutron();
 }
 
+////////////////////////////////////////////////////////////////////////////////
+
 G4PreCompoundModel::~G4PreCompoundModel() 
 {
   delete theEmission;
@@ -96,44 +102,20 @@ G4PreCompoundModel::~G4PreCompoundModel()
   delete GetExcitationHandler();
 }
 
-void G4PreCompoundModel::ModelDescription(std::ostream& outFile) const
-{
-	outFile << "The GEANT4 precompound model is considered as an extension of the\n"
-		<<	"hadron kinetic model. It gives a possibility to extend the low energy range\n"
-		<<	"of the hadron kinetic model for nucleon-nucleus inelastic collision and it \n"
-		<<	"provides a ”smooth” transition from kinetic stage of reaction described by the\n"
-		<<	"hadron kinetic model to the equilibrium stage of reaction described by the\n"
-		<<	"equilibrium deexcitation models.\n"
-		<<	"The initial information for calculation of pre-compound nuclear stage\n"
-		<<	"consists of the atomic mass number A, charge Z of residual nucleus, its\n"
-		<<	"four momentum P0 , excitation energy U and number of excitons n, which equals\n"
-		<<	"the sum of the number of particles p (from them p_Z are charged) and the number of\n"
-		<<	"holes h.\n"
-		<<	"At the preequilibrium stage of reaction, we follow the exciton model approach in ref. [1],\n"
-		<<	"taking into account the competition among all possible nuclear transitions\n"
-		<<	"with ∆n = +2, −2, 0 (which are defined by their associated transition probabilities) and\n"
-		<<	"the emission of neutrons, protons, deutrons, thritium and helium nuclei (also defined by\n"
-		<<	"their associated emission  probabilities according to exciton model)\n"
-		<<	"\n"
-		<<	"[1] K.K. Gudima, S.G. Mashnik, V.D. Toneev, Nucl. Phys. A401 329 (1983)\n"
-		<< "\n";
-}
-void G4PreCompoundModel::DeExciteModelDescription(std::ostream& outFile) const
-{
-   outFile << "description of precompound model as used with DeExcite()"
-           << "\n";
-}
-/////////////////////////////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////////////////////
 
-G4HadFinalState* G4PreCompoundModel::ApplyYourself(const G4HadProjectile & thePrimary,
-						   G4Nucleus & theNucleus)
+G4HadFinalState* 
+G4PreCompoundModel::ApplyYourself(const G4HadProjectile & thePrimary,
+				  G4Nucleus & theNucleus)
 {  
   const G4ParticleDefinition* primary = thePrimary.GetDefinition();
   if(primary != neutron && primary != proton) {
-    std::ostringstream errOs;
-    errOs << "BAD primary type in G4PreCompoundModel: " 
-	  << primary->GetParticleName() <<G4endl;
-    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
+    G4ExceptionDescription ed;
+    ed << "G4PreCompoundModel is used for ";
+    if(primary) { ed << primary->GetParticleName(); }
+    G4Exception("G4PreCompoundModel::ApplyYourself()","had0033",FatalException,
+                ed,"");
+    return 0;
   }
 
   G4int Zp = 0;
@@ -153,16 +135,8 @@ G4HadFinalState* G4PreCompoundModel::ApplyYourself(const G4HadProjectile & thePr
 
   // prepare fragment
   G4Fragment anInitialState(A + Ap, Z + Zp, p);
-
-  // projectile and target nucleons
-  // Add nucleon on which interaction happens
-  //++Ap;
-  //if(A*G4UniformRand() <= G4double(Z)) { Zp += 1; }
   anInitialState.SetNumberOfExcitedParticle(2, 1);
   anInitialState.SetNumberOfHoles(1,0);
-  //  anInitialState.SetNumberOfExcitedParticle(Ap, Zp);
-  // anInitialState.SetNumberOfHoles(Ap,Zp);
-
   anInitialState.SetCreationTime(thePrimary.GetGlobalTime());
   
   // call excitation handler
@@ -171,7 +145,8 @@ G4HadFinalState* G4PreCompoundModel::ApplyYourself(const G4HadProjectile & thePr
   // fill particle change
   theResult.Clear();
   theResult.SetStatusChange(stopAndKill);
-  for(G4ReactionProductVector::iterator i= result->begin(); i != result->end(); ++i)
+  for(G4ReactionProductVector::iterator i= result->begin(); 
+      i != result->end(); ++i)
     {
       G4DynamicParticle * aNew = 
 	new G4DynamicParticle((*i)->GetDefinition(),
@@ -186,7 +161,7 @@ G4HadFinalState* G4PreCompoundModel::ApplyYourself(const G4HadProjectile & thePr
   return &theResult;
 }
 
-/////////////////////////////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////////////////////
 
 G4ReactionProductVector* G4PreCompoundModel::DeExcite(G4Fragment& aFragment)
 {
@@ -205,22 +180,17 @@ G4ReactionProductVector* G4PreCompoundModel::DeExcite(G4Fragment& aFragment)
   }
   
   // main loop  
+  G4int count = 0;
+  const G4int countmax = 10000;
   for (;;) {
-    
-    //fragment++;
-    //G4cout<<"-------------------------------------------------------------------"<<G4endl;
-    //G4cout<<"Fragment number .. "<<fragment<<G4endl;
-    
-    // Initialize fragment according with the nucleus parameters
-    //G4cout << "### Loop over fragment" << G4endl;
+    //G4cout << "### PreCompound loop over fragment" << G4endl;
     //G4cout << aFragment << G4endl;
 
     theEmission->Initialize(aFragment);
     
-    G4double gg = (6.0/pi2)*aFragment.GetA_asInt()*fLevelDensity;
-    
     G4int EquilibriumExcitonNumber = 
-      G4lrint(std::sqrt(2*gg*aFragment.GetExcitationEnergy()));
+      G4lrint(std::sqrt(aFragment.GetExcitationEnergy()
+			*aFragment.GetA_asInt()*fLevelDensity));
     //   
     //    G4cout<<"Neq="<<EquilibriumExcitonNumber<<G4endl;
     //
@@ -237,11 +207,10 @@ G4ReactionProductVector* G4PreCompoundModel::DeExcite(G4Fragment& aFragment)
     //        G4double NE=aFragment.GetNumberOfExcitons();
     //        G4cout<<" Ex. Energy="<<aFragment.GetExcitationEnergy()<<G4endl;
     //   G4cout<<"N. excitons="<<NE<<"  N. Part="<<NP<<"N. Holes ="<<NH<<G4endl;
-    //G4int transition=0;
     do {
-      //transition++;
-      //G4cout<<"transition number .."<<transition<<G4endl;
-      //G4cout<<" n ="<<aFragment.GetNumberOfExcitons()<<G4endl;
+      ++count;
+      //G4cout<<"transition number .."<<count
+      //      <<" n ="<<aFragment.GetNumberOfExcitons()<<G4endl;
       G4bool go_ahead = false;
       // soft cutoff criterium as an "ad-hoc" solution to force 
       // increase in  evaporation  
@@ -255,7 +224,7 @@ G4ReactionProductVector* G4PreCompoundModel::DeExcite(G4Fragment& aFragment)
 	  if( G4UniformRand() < 1.0 -  G4Exp(-x*x/0.32) ) { go_ahead = false; }
 	} 
         
-      // JMQ: WARNING:  CalculateProbability MUST be called prior to Get methods !! 
+      // JMQ: WARNING:  CalculateProbability MUST be called prior to Get!! 
       // (O values would be returned otherwise)
       G4double TotalTransitionProbability = 
 	theTransition->CalculateProbability(aFragment);
@@ -269,7 +238,7 @@ G4ReactionProductVector* G4PreCompoundModel::DeExcite(G4Fragment& aFragment)
       //V.Ivanchenko (May 2011) added check on number of nucleons
       //                        to send a fragment to FermiBreakUp
       if(!go_ahead || P1 <= P2+P3 || 
-	 (aFragment.GetZ_asInt() < maxZ && aFragment.GetA_asInt() < maxA) )        
+	 (aFragment.GetZ_asInt() < maxZ && aFragment.GetA_asInt() < maxA) )
 	{
 	  //G4cout<<"#4 EquilibriumEmission"<<G4endl; 
 	  PerformEquilibriumEmission(aFragment,Result);
@@ -315,13 +284,21 @@ G4ReactionProductVector* G4PreCompoundModel::DeExcite(G4Fragment& aFragment)
 	    }
 	}
     } while (ThereIsTransition);   // end of do loop
+    if(count >= countmax) {
+      G4ExceptionDescription ed;
+      ed << "G4PreCompoundModel loop over " << countmax << " iterations; "
+	 << "current G4Fragment: \n" << aFragment;
+      G4Exception("G4PreCompoundModel::DeExcite()","had0034",JustWarning,
+		  ed,"");
+      count = 0;
+    }
   } // end of for (;;) loop
   return Result;
 }
 
-/////////////////////////////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////////////////////
 //       Initialisation
-/////////////////////////////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////////////////////
 
 void G4PreCompoundModel::UseHETCEmission() 
 { 
@@ -378,4 +355,37 @@ void G4PreCompoundModel::UseCEMtr()
   useCEMtr = true; 
 }
 
+////////////////////////////////////////////////////////////////////////////////
+//       Documentation
+////////////////////////////////////////////////////////////////////////////////
+
+void G4PreCompoundModel::ModelDescription(std::ostream& outFile) const
+{
+	outFile << "The GEANT4 precompound model is considered as an extension of the\n"
+		<<	"hadron kinetic model. It gives a possibility to extend the low energy range\n"
+		<<	"of the hadron kinetic model for nucleon-nucleus inelastic collision and it \n"
+		<<	"provides a ”smooth” transition from kinetic stage of reaction described by the\n"
+		<<	"hadron kinetic model to the equilibrium stage of reaction described by the\n"
+		<<	"equilibrium deexcitation models.\n"
+		<<	"The initial information for calculation of pre-compound nuclear stage\n"
+		<<	"consists of the atomic mass number A, charge Z of residual nucleus, its\n"
+		<<	"four momentum P0 , excitation energy U and number of excitons n, which equals\n"
+		<<	"the sum of the number of particles p (from them p_Z are charged) and the number of\n"
+		<<	"holes h.\n"
+		<<	"At the preequilibrium stage of reaction, we follow the exciton model approach in ref. [1],\n"
+		<<	"taking into account the competition among all possible nuclear transitions\n"
+		<<	"with ∆n = +2, −2, 0 (which are defined by their associated transition probabilities) and\n"
+		<<	"the emission of neutrons, protons, deutrons, thritium and helium nuclei (also defined by\n"
+		<<	"their associated emission  probabilities according to exciton model)\n"
+		<<	"\n"
+		<<	"[1] K.K. Gudima, S.G. Mashnik, V.D. Toneev, Nucl. Phys. A401 329 (1983)\n"
+		<< "\n";
+}
+
+void G4PreCompoundModel::DeExciteModelDescription(std::ostream& outFile) const
+{
+   outFile << "description of precompound model as used with DeExcite()"
+           << "\n";
+}
+
 /////////////////////////////////////////////////////////////////////////////////////////
diff --git a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundNeutron.cc b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundNeutron.cc
index a155e36f94d..ffe2b7ccc93 100644
--- a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundNeutron.cc
+++ b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundNeutron.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4PreCompoundNeutron.cc 68028 2013-03-13 13:48:15Z gcosmo $
+// $Id: G4PreCompoundNeutron.cc 90591 2015-06-04 13:45:29Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -86,15 +86,9 @@ G4double G4PreCompoundNeutron::CrossSection(const  G4double K)
   FragmentA = theA + ResidualA;
   FragmentAthrd = g4pow->Z13(FragmentA);
 
-  if (OPTxs==0) { return GetOpt0( K); }
-  else if( OPTxs==1 || OPTxs==2) { return GetOpt12( K); }
-  else if (OPTxs==3 || OPTxs==4) { return GetOpt34( K); }
-  else{
-    std::ostringstream errOs;
-    errOs << "BAD NEUTRON CROSS SECTION OPTION !!"  <<G4endl;
-    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
-    return 0.;
-  }
+  if (OPTxs==0)        { return GetOpt0( K); }
+  else if( OPTxs <= 2) { return GetOpt12( K); }
+  else                 { return GetOpt34( K); }
 }
 
 G4double G4PreCompoundNeutron::GetAlpha()
@@ -120,89 +114,83 @@ G4double G4PreCompoundNeutron::GetOpt12(G4double K)
   // JMQ  xsec is set constat above limit of validity
   if (K > 50*MeV) { Kc = 50*MeV; }
 
-  G4double landa, landa0, landa1, mu, mm0, mu1,nu, nu0, nu1, nu2,xs;
-
-  landa0 = 18.57;
-  landa1 = -22.93;
-  mm0 = 381.7;
-  mu1 = 24.31;
-  nu0 = 0.172;
-  nu1 = -15.39;
-  nu2 = 804.8;
-  landa = landa0/ResidualAthrd + landa1;
-  mu = mm0*ResidualAthrd + mu1*ResidualAthrd*ResidualAthrd;
-  nu = nu0*ResidualAthrd*ResidualA + nu1*ResidualAthrd*ResidualAthrd + nu2 ;
-  xs=landa*Kc + mu + nu/Kc;
-  if (xs <= 0.0 ){
-    std::ostringstream errOs;
-    G4cout<<"WARNING:  NEGATIVE OPT=1 neutron cross section "<<G4endl;     
-    errOs << "RESIDUAL: Ar=" << ResidualA << " Zr=" << ResidualZ <<G4endl;
-    errOs <<"  xsec("<<Kc<<" MeV) ="<<xs <<G4endl;
-    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
-              }
+  const G4double landa0 = 18.57;
+  const G4double landa1 = -22.93;
+  const G4double mm0 = 381.7;
+  const G4double mu1 = 24.31;
+  const G4double nu0 = 0.172;
+  const G4double nu1 = -15.39;
+  const G4double nu2 = 804.8;
+
+  G4double landa = landa0/ResidualAthrd + landa1;
+  G4double mu = mm0*ResidualAthrd + mu1*ResidualAthrd*ResidualAthrd;
+  G4double nu = nu0*ResidualAthrd*ResidualA + nu1*ResidualAthrd*ResidualAthrd + nu2 ;
+  G4double xs = landa*Kc + mu + nu/Kc;
+
+  xs = std::max(xs, 0.0);
   return xs;
 }
 
 // *********** OPT=3,4 : Kalbach's cross sections (from PRECO code)*************
 G4double G4PreCompoundNeutron::GetOpt34(G4double K)
 {
-  G4double landa, landa0, landa1, mu, mm0, mu1,nu, nu0, nu1, nu2;
-  G4double p, p0;
-  G4double flow,ec,ecsq,xnulam,etest(0.),ra(0.),a,signor(1.),sig; 
-  G4double b,ecut,cut,ecut2,geom,elab;
 
-  flow = 1.e-18;
+  const G4double flow = 1.e-18;
 
   // PRECO xs for neutrons is choosen
-  p0 = -312.;
-  landa0 = 12.10;
-  landa1=  -11.27;
-  mm0 = 234.1;
-  mu1 = 38.26;
-  nu0 = 1.55;
-  nu1 = -106.1;
-  nu2 = 1280.8; 
-
-  if (ResidualA < 40)  { signor =0.7 + ResidualA*0.0075; }
-  if (ResidualA > 210) { signor = 1. + (ResidualA-210)/250.; }
-  landa = landa0/ResidualAthrd + landa1;
-  mu = mm0*ResidualAthrd + mu1*ResidualAthrd*ResidualAthrd;
-  nu = nu0*ResidualAthrd*ResidualA + nu1*ResidualAthrd*ResidualAthrd + nu2;
+  const G4double p0 = -312.;
+  const G4double landa0 = 12.10;
+  const G4double landa1=  -11.27;
+  const G4double mm0 = 234.1;
+  const G4double mu1 = 38.26;
+  const G4double nu0 = 1.55;
+  const G4double nu1 = -106.1;
+  const G4double nu2 = 1280.8; 
+  const G4double ra  = 0.0;
+
+  G4double signor = 1.0;
+  if(ResidualA < 40)       { signor =0.7 + ResidualA*0.0075; }
+  else if(ResidualA > 210) { signor = 1. + (ResidualA-210)/250.; }
+
+  G4double landa = landa0/ResidualAthrd + landa1;
+  G4double mu = mm0*ResidualAthrd + mu1*ResidualAthrd*ResidualAthrd;
+  G4double nu = nu0*ResidualAthrd*ResidualA + nu1*ResidualAthrd*ResidualAthrd + nu2;
 
   // JMQ very low energy behaviour corrected (problem  for A (apprx.)>60)
-  if (nu < 0.) { nu=-nu; }
+  if (nu < 0.) { nu = -nu; }
 
-  ec = 0.5;
-  ecsq = 0.25;
-  p = p0;
-  xnulam = 1.;
-  etest = 32.;
+  G4double ec = 0.5;
+  G4double ecsq = 0.25;
+  G4double p = p0;
+  G4double xnulam = 1.;
+  G4double etest = 32.;
   //          ** etest is the energy above which the rxn cross section is
   //          ** compared with the geometrical limit and the max taken.
   //          ** xnulam here is a dummy value to be used later.
 
-  a = -2.*p*ec + landa - nu/ecsq;
-  b = p*ecsq + mu + 2.*nu/ec;
-  ecut = 0.;
-  cut = a*a - 4.*p*b;
+  G4double a = -2.*p*ec + landa - nu/ecsq;
+  G4double b = p*ecsq + mu + 2.*nu/ec;
+  G4double ecut = 0.;
+  G4double cut = a*a - 4.*p*b;
   if (cut > 0.) { ecut = std::sqrt(cut); }
-  ecut = (ecut-a) / (p+p);
-  ecut2 = ecut;
-  if (cut < 0.) { ecut2 = ecut - 2.; }
-  elab = K * FragmentA / G4double(ResidualA);
-  sig = 0.;
-  if (elab <= ec) { //start for E<Ec 
-    if (elab > ecut2) { sig = (p*elab*elab+a*elab+b) * signor; } 
-  }              //end for E<Ec
-  else {           //start for  E>Ec
+  ecut = (ecut-a) / (2*p);
+  if (cut < 0.) { ecut -= 2.; }
+
+  G4double elab = K * FragmentA / G4double(ResidualA);
+  G4double sig = 0.;
+
+  if (elab <= ec) { 
+    if (elab > ecut) { sig = std::max(0.0,(p*elab*elab+a*elab+b) * signor); }
+
+  } else {           
     sig = (landa*elab+mu+nu/elab) * signor;
-    geom = 0.;
-    if (xnulam < flow || elab < etest) { return sig; }
-    geom = std::sqrt(theA*K);
-    geom = 1.23*ResidualAthrd + ra + 4.573/geom;
-    geom = 31.416 * geom * geom;
+    G4double geom = 0.;
+    if (xnulam >= flow && elab >= etest) { 
+      geom = std::sqrt(theA*K);
+      geom = 1.23*ResidualAthrd + ra + 4.573/geom;
+      geom = 31.416 * geom * geom;
+    }
     sig = std::max(geom,sig);
-
-  }
-  return sig;
+  } 
+  return sig; 
 }
diff --git a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundProton.cc b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundProton.cc
index 7c99024719f..9936a08d32f 100644
--- a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundProton.cc
+++ b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundProton.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4PreCompoundProton.cc 74903 2013-10-23 16:47:40Z gcosmo $
+// $Id: G4PreCompoundProton.cc 90591 2015-06-04 13:45:29Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -90,16 +90,10 @@ G4double G4PreCompoundProton::CrossSection(G4double K)
   FragmentA = theA + ResidualA;
   FragmentAthrd = g4pow->Z13(FragmentA);
 
-  if (OPTxs==0) { return GetOpt0(K); }
-  else if( OPTxs==1) { return GetOpt1(K); }
-  else if( OPTxs==2|| OPTxs==4) { return GetOpt2(K); }
-  else if (OPTxs==3)  { return GetOpt3(K); }
-  else{
-    std::ostringstream errOs;
-    errOs << "BAD PROTON CROSS SECTION OPTION !!"  <<G4endl;
-    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
-    return 0.;
-  }
+  if (OPTxs==0)        { return GetOpt0( K); }
+  else if( OPTxs == 1) { return GetOpt1( K); }
+  else if( OPTxs == 2) { return GetOpt2( K); }
+  else                 { return GetOpt3( K); }
 }
 
 G4double G4PreCompoundProton::GetAlpha()
@@ -133,36 +127,35 @@ G4double G4PreCompoundProton::GetOpt1(G4double K)
   // JMQ  xsec is set constat above limit of validity
   if (K > 50*MeV) { Kc = 50*MeV; }
 
-  G4double landa, landa0, landa1, mu, mm0, mu1,nu, nu0, nu1, nu2,xs;
-  G4double p, p0, p1, p2,Ec,delta,q,r,ji;
-  
-  p0 = 15.72;
-  p1 = 9.65;
-  p2 = -449.0;
-  landa0 = 0.00437;
-  landa1 = -16.58;
-  mm0 = 244.7;
-  mu1 = 0.503;
-  nu0 = 273.1;
-  nu1 = -182.4;
-  nu2 = -1.872;  
-  delta=0.;  
+  const G4double p0 = 15.72;
+  const G4double p1 = 9.65;
+  const G4double p2 = -449.0;
+  const G4double landa0 = 0.00437;
+  const G4double landa1 = -16.58;
+  const G4double mm0 = 244.7;
+  const G4double mu1 = 0.503;
+  const G4double nu0 = 273.1;
+  const G4double nu1 = -182.4;
+  const G4double nu2 = -1.872;  
+  const G4double delta = 0.;  
 
-  Ec = 1.44*theZ*ResidualZ/(1.5*ResidualAthrd+delta);
-  p = p0 + p1/Ec + p2/(Ec*Ec);
-  landa = landa0*ResidualA + landa1;
+  G4double Ec = 1.44*theZ*ResidualZ/(1.5*ResidualAthrd+delta);
+  G4double p = p0 + p1/Ec + p2/(Ec*Ec);
+  G4double landa = landa0*ResidualA + landa1;
 
   G4double resmu1 = g4pow->powZ(ResidualA,mu1); 
-  mu = mm0*resmu1;
-  nu = resmu1*(nu0 + nu1*Ec + nu2*(Ec*Ec));
-  q = landa - nu/(Ec*Ec) - 2*p*Ec;
-  r = mu + 2*nu/Ec + p*(Ec*Ec);
+  G4double mu = mm0*resmu1;
+  G4double nu = resmu1*(nu0 + nu1*Ec + nu2*(Ec*Ec));
+  G4double q = landa - nu/(Ec*Ec) - 2*p*Ec;
+  G4double r = mu + 2*nu/Ec + p*(Ec*Ec);
+
+  G4double ji = std::max(Kc,Ec);
+  G4double xs = 0.0;
 
-  ji=std::max(Kc,Ec);
   if(Kc < Ec) { xs = p*Kc*Kc + q*Kc + r;}
   else {xs = p*(Kc - ji)*(Kc - ji) + landa*Kc + mu + nu*(2 - Kc/ji)/ji ;}
-  if (xs <0.0) {xs=0.0;}
 
+  xs = std::max(xs, 0.0);
   return xs; 
 }
 
@@ -170,44 +163,35 @@ G4double G4PreCompoundProton::GetOpt1(G4double K)
 
 G4double G4PreCompoundProton::GetOpt2(G4double K)
 {
-
-  G4double eekin,ekin,ff1,ff2,ff3,r0,fac,fac1,fac2,b0,xine_th(0);
- 
   // This is redundant when the Coulomb  barrier is overimposed to all 
   // cross sections 
   // It should be kept when Coulomb barrier only imposed at OPTxs=2
 
   if(!useSICB && K<=theCoulombBarrier) { return 0.0; }
 
-  eekin=K;
+  G4double eekin=K;
   G4int rnneu=ResidualA-ResidualZ;
-  ekin=eekin/1000;
-  r0=1.36*1.e-15;
-  fac=pi*r0*r0;
-  b0=2.247-0.915*(1.-1./ResidualAthrd);
-  fac1=b0*(1.-1./ResidualAthrd);
-  fac2=1.;
+  G4double ekin=eekin/1000;
+  G4double r0=1.36*1.e-15;
+  G4double fac=pi*r0*r0;
+  G4double b0=2.247-0.915*(1.-1./ResidualAthrd);
+  G4double fac1=b0*(1.-1./ResidualAthrd);
+  G4double fac2=1.;
   if(rnneu > 1.5) { fac2 = g4pow->logZ(rnneu); }
-  xine_th= 1.e+31*fac*fac2*(1.+ResidualAthrd-fac1);
+  G4double xine_th= 1.e+31*fac*fac2*(1.+ResidualAthrd-fac1);
   xine_th=(1.-0.15*G4Exp(-ekin))*xine_th/(1.00-0.0007*ResidualA);	
-  ff1=0.70-0.0020*ResidualA;
-  ff2=1.00+1/G4double(ResidualA);
-  ff3=0.8+18/G4double(ResidualA)-0.002*ResidualA;
+  G4double ff1=0.70-0.0020*ResidualA;
+  G4double ff2=1.00+1/G4double(ResidualA);
+  G4double ff3=0.8+18/G4double(ResidualA)-0.002*ResidualA;
   G4double log10E = G4Log(ekin)/g4pow->logZ(10);
   fac=1.-(1./(1.+G4Exp(-8.*ff1*(log10E + 1.37*ff2))));
   xine_th=xine_th*(1.+ff3*fac);
   ff1=1.-1/G4double(ResidualA)-0.001*ResidualA;
   ff2=1.17-2.7/G4double(ResidualA)-0.0014*ResidualA;
   fac=-8.*ff1*(log10E + 2.0*ff2);
-  fac=1./(1.+G4Exp(fac));
-  xine_th=xine_th*fac;            
-  if (xine_th < 0.0){
-    std::ostringstream errOs;
-    G4cout<<"WARNING:  negative Wellisch cross section "<<G4endl; 
-    errOs << "RESIDUAL: A=" << ResidualA << " Z=" << ResidualZ <<G4endl;
-    errOs <<"  xsec("<<ekin<<" MeV) ="<<xine_th <<G4endl;
-    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
-  }
+  xine_th /= (1.+G4Exp(fac));    
+        
+  xine_th = std::max(xine_th, 0.0);
   return xine_th;
 }
 
@@ -217,87 +201,70 @@ G4double G4PreCompoundProton::GetOpt3(const  G4double K)
   //     ** p from  becchetti and greenlees (but modified with sub-barrier
   //     ** correction function and xp2 changed from -449)
 
-  G4double landa, landa0, landa1, mu, mm0, mu1,nu, nu0, nu1, nu2;
-  G4double p, p0, p1, p2;
-  p0 = 15.72;
-  p1 = 9.65;
-  p2 = -300.;
-  landa0 = 0.00437;
-  landa1 = -16.58;
-  mm0 = 244.7;
-  mu1 = 0.503;
-  nu0 = 273.1;
-  nu1 = -182.4;
-  nu2 = -1.872;
+  const G4double p0 = 15.72;
+  const G4double p1 = 9.65;
+  const G4double p2 = -300.;
+  const G4double landa0 = 0.00437;
+  const G4double landa1 = -16.58;
+  const G4double mm0 = 244.7;
+  const G4double mu1 = 0.503;
+  const G4double nu0 = 273.1;
+  const G4double nu1 = -182.4;
+  const G4double nu2 = -1.872;
   
-  // parameters for  proton cross section refinement 
-  /*
-  G4double afit,bfit,a2,b2;
-  afit=-0.0785656;
-  bfit=5.10789;
-  a2= -0.00089076;
-  b2= 0.0231597;  
-  */
-
-  G4double ec,ecsq,xnulam,etest(0.),ra(0.),a,w,c,signor(1.),signor2,sig; 
-  G4double b,ecut,cut,ecut2,geom,elab;
-    
-  G4double	flow = 1.e-18;
-  G4double       spill= 1.e+18; 
+  const G4double flow  = 1.e-18;
+  const G4double spill = 1.e+18; 
+  const G4double ra = 0.0; 
    
+  G4double signor = 1.0;
   if (ResidualA <= 60)      { signor = 0.92; }
   else if (ResidualA < 100) { signor = 0.8 + ResidualA*0.002; }
   
-  ec = 1.44 * theZ * ResidualZ / (1.5*ResidualAthrd+ra);
-  ecsq = ec * ec;
-  p = p0 + p1/ec + p2/ecsq;
-  landa = landa0*ResidualA + landa1;
-  a = g4pow->powZ(ResidualA,mu1);
-  mu = mm0 * a;
-  nu = a* (nu0+nu1*ec+nu2*ecsq);
+  G4double ec = 1.44 * theZ * ResidualZ / (1.5*ResidualAthrd+ra);
+  G4double ecsq = ec * ec;
+  G4double p = p0 + p1/ec + p2/ecsq;
+  G4double landa = landa0*ResidualA + landa1;
+  G4double a = g4pow->powZ(ResidualA,mu1);
+  G4double mu = mm0 * a;
+  G4double nu = a* (nu0+nu1*ec+nu2*ecsq);
   
-  c =std::min(3.15,ec*0.5);
-  w = 0.7 * c / 3.15; 
+  G4double c =std::min(3.15,ec*0.5);
+  G4double w = 0.7 * c / 3.15; 
   
-  xnulam = nu / landa;
-  if (xnulam > spill) { xnulam=0.; }
-  if (xnulam >= flow) { etest =std::sqrt(xnulam) + 7.; }
+  G4double etest = 0.0;
+  G4double xnulam = nu / landa;
+  if(xnulam > spill)      { xnulam=0.; }
+  else if(xnulam >= flow) { etest = std::sqrt(xnulam) + 7.; }
   
   a = -2.*p*ec + landa - nu/ecsq;
-  b = p*ecsq + mu + 2.*nu/ec;
-  ecut = 0.;
-  cut = a*a - 4.*p*b;
+  G4double b = p*ecsq + mu + 2.*nu/ec;
+  G4double ecut = 0.;
+  G4double cut = a*a - 4.*p*b;
   if (cut > 0.) { ecut = std::sqrt(cut); }
-  ecut = (ecut-a) / (p+p);
-  ecut2 = ecut;
+  ecut = (ecut-a) / (2*p);
+ 
   //JMQ 290310 for avoiding unphysical increase below minimum (at ecut)
   // ecut<0 means that there is no cut with energy axis, i.e. xs is set 
   // to 0 bellow minimum
-  //  if (cut < 0.) ecut2 = ecut - 2.;
-  if (cut < 0.) { ecut2 = ecut; }
-  elab = K * FragmentA /G4double(ResidualA);
-  sig = 0.;
-  if (elab <= ec) { //start for E<Ec 
-    if (elab > ecut2) { sig = (p*elab*elab+a*elab+b) * signor; }
+
+  G4double elab = K * FragmentA /G4double(ResidualA);
+  G4double sig = 0.;
+  if (elab <= ec) { 
+    if (elab > ecut) { sig = (p*elab*elab+a*elab+b) * signor; }
     
-    signor2 = (ec-elab-c) / w;
-    signor2 = 1. + G4Exp(signor2);
-    sig = sig / signor2;
-  }              //end for E<=Ec
-  else{           //start for  E>Ec
+    G4double signor2 = (ec-elab-c) / w;
+    sig /= (1. + G4Exp(signor2));
+
+  } else { 
     sig = (landa*elab+mu+nu/elab) * signor;
-    geom = 0.;
-    
-    if (xnulam < flow || elab < etest) 
-      {
-        if (sig <0.0) {sig=0.0;}
-        return sig;
-      }
-    geom = std::sqrt(theA*K);
-    geom = 1.23*ResidualAthrd + ra + 4.573/geom;
-    geom = 31.416 * geom * geom;
-    sig = std::max(geom,sig);
-    
-  }   //end for E>Ec
+    G4double geom = 0.;    
+    if (xnulam >= flow && elab >= etest) { 
+      geom = std::sqrt(theA*K);
+      geom = 1.23*ResidualAthrd + ra + 4.573/geom;
+      geom = 31.416 * geom * geom;
+      sig = std::max(geom, sig);
+    }
+  }  
+  sig = std::max(sig, 0.0);
   return sig;
 }
diff --git a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundTransitions.cc b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundTransitions.cc
index 79a9b2970f7..945740108ae 100644
--- a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundTransitions.cc
+++ b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundTransitions.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4PreCompoundTransitions.cc 68028 2013-03-13 13:48:15Z gcosmo $
+// $Id: G4PreCompoundTransitions.cc 90591 2015-06-04 13:45:29Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -49,10 +49,13 @@
 #include "G4PhysicalConstants.hh"
 #include "G4SystemOfUnits.hh"
 #include "Randomize.hh"
-#include "G4Pow.hh"
-#include "G4HadronicException.hh"
 #include "G4PreCompoundParameters.hh"
+#include "G4Fragment.hh"
 #include "G4Proton.hh"
+#include "G4Exp.hh"
+#include "G4Log.hh"
+
+static const G4double sixdpi2 = 6.0/CLHEP::pi2;
 
 G4PreCompoundTransitions::G4PreCompoundTransitions() 
 {
@@ -61,7 +64,6 @@ G4PreCompoundTransitions::G4PreCompoundTransitions()
   FermiEnergy = param.GetFermiEnergy();
   r0 = param.GetTransitionsr0();
   aLDP = param.GetLevelDensity();
-  g4pow = G4Pow::GetInstance();
 }
 
 G4PreCompoundTransitions::~G4PreCompoundTransitions() 
@@ -82,6 +84,8 @@ CalculateProbability(const G4Fragment & aFragment)
   G4int A = aFragment.GetA_asInt();
   G4int Z = aFragment.GetZ_asInt();
   G4double U = aFragment.GetExcitationEnergy();
+  TransitionProb2 = 0.0;
+  TransitionProb3 = 0.0;
 
   //G4cout << aFragment << G4endl;
   
@@ -92,28 +96,24 @@ CalculateProbability(const G4Fragment & aFragment)
   //       (original in G4PreCompound from VL) 
   // OPT=2 Transitions are calculated according to Gupta's formulae
   //
-  if (useCEMtr){
-
+  if (useCEMtr) {
     // Relative Energy (T_{rel})
     G4double RelativeEnergy = 1.6*FermiEnergy + U/G4double(N);
     
     // Sample kind of nucleon-projectile 
     G4bool ChargedNucleon(false);
-    G4double chtest = 0.5;
-    if (P > 0) { 
-      chtest = G4double(aFragment.GetNumberOfCharged())/G4double(P); 
+    if(G4int(P*G4UniformRand()) <= aFragment.GetNumberOfCharged()) {
+      ChargedNucleon = true; 
     }
-    if (G4UniformRand() < chtest) { ChargedNucleon = true; }
     
     // Relative Velocity: 
     // <V_{rel}>^2
-    G4double RelativeVelocitySqr(0.0);
+    G4double RelativeVelocitySqr;
     if (ChargedNucleon) { 
-      RelativeVelocitySqr = 2.0*RelativeEnergy/CLHEP::proton_mass_c2; 
+      RelativeVelocitySqr = 2*RelativeEnergy/CLHEP::proton_mass_c2; 
     } else { 
-      RelativeVelocitySqr = 2.0*RelativeEnergy/CLHEP::neutron_mass_c2; 
+      RelativeVelocitySqr = 2*RelativeEnergy/CLHEP::neutron_mass_c2; 
     }
-    
     // <V_{rel}>
     G4double RelativeVelocity = std::sqrt(RelativeVelocitySqr);
     
@@ -127,18 +127,15 @@ CalculateProbability(const G4Fragment & aFragment)
       * CLHEP::millibarn;
     
     // Averaged Cross Section: \sigma(V_{rel})
-    //  G4double AveragedXSection = (ppXSection+npXSection)/2.0;
-    G4double AveragedXSection(0.0);
+    G4double AveragedXSection;
     if (ChargedNucleon)
       {
         //JMQ: small bug fixed
-        //AveragedXSection=((Z-1.0) * ppXSection + (A-Z-1.0) * npXSection)/(A-1.0);
         AveragedXSection = ((Z-1)*ppXSection + (A-Z)*npXSection)/G4double(A-1);
       }
     else 
       {
         AveragedXSection = ((A-Z-1)*ppXSection + Z*npXSection)/G4double(A-1);
-        //AveragedXSection = ((A-Z-1)*npXSection + Z*ppXSection)/G4double(A-1);
       }
     
     // Fermi relative energy ratio
@@ -149,82 +146,58 @@ CalculateProbability(const G4Fragment & aFragment)
     if (FermiRelRatio > 0.5) {
       G4double x = 2.0 - 1.0/FermiRelRatio;
       PauliFactor += 0.4*FermiRelRatio*x*x*std::sqrt(x);
-      //PauliFactor += 
-      //(2.0/5.0)*FermiRelRatio*std::pow(2.0 - (1.0/FermiRelRatio), 5.0/2.0);
     }
     // Interaction volume 
-    //  G4double Vint = (4.0/3.0)
-    //*pi*std::pow(2.0*r0 + hbarc/(proton_mass_c2*RelativeVelocity) , 3.0);
-    G4double xx = 2.0*r0 + hbarc/(CLHEP::proton_mass_c2*RelativeVelocity);
-    //    G4double Vint = (4.0/3.0)*CLHEP::pi*xx*xx*xx;
+    G4double xx = 2*r0 + CLHEP::hbarc/(CLHEP::proton_mass_c2*RelativeVelocity);
     G4double Vint = CLHEP::pi*xx*xx*xx/0.75;
     
     // Transition probability for \Delta n = +2
     
-    TransitionProb1 = AveragedXSection*PauliFactor
-      *std::sqrt(2.0*RelativeEnergy/CLHEP::proton_mass_c2)/Vint;
+    TransitionProb1 = std::max(0.0, AveragedXSection*PauliFactor
+      *std::sqrt(2.0*RelativeEnergy/CLHEP::proton_mass_c2)/Vint);
 
     //JMQ 281009  phenomenological factor in order to increase 
     //   equilibrium contribution
     //   G4double factor=5.0;
     //   TransitionProb1 *= factor;
-    //
-    if (TransitionProb1 < 0.0) { TransitionProb1 = 0.0; } 
     
     // GE = g*E where E is Excitation Energy
-    G4double GE = (6.0/pi2)*aLDP*A*U;
-    
-    //G4double Fph = ((P*P+H*H+P-H)/4.0 - H/2.0);
-    G4double Fph = G4double(P*P+H*H+P-3*H)/4.0;
-    
-    G4bool NeverGoBack(false);
-    if(useNGB) { NeverGoBack=true; }
+    G4double GE = sixdpi2*aLDP*A*U;
+    G4double Fph = G4double(P*P+H*H+P-3*H)*0.25;
     
-    //JMQ/AH  bug fixed: if (U-Fph < 0.0) NeverGoBack = true;
-    if (GE-Fph < 0.0) { NeverGoBack = true; }
-    
-    // F(p+1,h+1)
-    G4double Fph1 = Fph + N/2.0;
-    
-    G4double ProbFactor = g4pow->powN((GE-Fph)/(GE-Fph1),N+1);
+    if(!useNGB) { 
+        
+      // F(p+1,h+1)
+      G4double Fph1 = Fph + N*0.5;
+
+      static const G4double plimit = 100;
+
+      //JMQ/AH  bug fixed: if (U-Fph < 0.0) 
+      if (GE-Fph1 > 0.0) { 
+        G4double x0 = GE-Fph;
+	G4double x1 = (N+1)*G4Log(x0/(GE-Fph1));
+	if(x1 < plimit) {
+	  x1 = G4Exp(x1)*TransitionProb1/x0;
     
-    if (NeverGoBack)
-      {
-	TransitionProb2 = 0.0;
-	TransitionProb3 = 0.0;
-      }
-    else 
-      {
-        // Transition probability for \Delta n = -2 (at F(p,h) = 0)
-        TransitionProb2 = 
-	  TransitionProb1 * ProbFactor * (P*H*(N+1)*(N-2))/((GE-Fph)*(GE-Fph));
-        if (TransitionProb2 < 0.0) { TransitionProb2 = 0.0; } 
+	  // Transition probability for \Delta n = -2 (at F(p,h) = 0)
+	  TransitionProb2 = std::max(0.0, (P*H*(N+1)*(N-2))*x1/x0);
         
-        // Transition probability for \Delta n = 0 (at F(p,h) = 0)
-        TransitionProb3 = TransitionProb1*(N+1)* ProbFactor  
-	  * (P*(P-1) + 4.0*P*H + H*(H-1))/(N*(GE-Fph));
-        if (TransitionProb3 < 0.0) { TransitionProb3 = 0.0; }
+	  // Transition probability for \Delta n = 0 (at F(p,h) = 0)
+	  TransitionProb3 = std::max(0.0,((N+1)*(P*(P-1) + 4*P*H + H*(H-1)))*x1
+				     /G4double(N));
+	}
       }
+    }
+
   } else {
     //JMQ: Transition probabilities from Gupta's work    
     // GE = g*E where E is Excitation Energy
-    G4double GE = (6.0/pi2)*aLDP*A*U;
- 
-    G4double Kmfp=2.;
-        
-    //TransitionProb1=1./Kmfp*3./8.*1./c_light*1.0e-9*(1.4e+21*U-2./(N+1)*6.0e+18*U*U);
-    TransitionProb1 = 3.0e-9*(1.4e+21*U - 1.2e+19*U*U/G4double(N+1))
-      /(8*Kmfp*CLHEP::c_light);
-    if (TransitionProb1 < 0.0) { TransitionProb1 = 0.0; }
+    TransitionProb1 = std::max(0.0, U*(4.2e+12 - 3.6e+10*U/G4double(N+1)))
+      /(16*CLHEP::c_light); 
 
-    TransitionProb2=0.;
-    TransitionProb3=0.;
-    
     if (!useNGB && N > 1) {
-      // TransitionProb2=1./Kmfp*3./8.*1./c_light*1.0e-9*(N-1.)*(N-2.)*P*H/(GE*GE)*(1.4e+21*U - 2./(N-1)*6.0e+18*U*U);      
-      TransitionProb2 = 
-	3.0e-9*(N-2)*P*H*(1.4e+21*U*(N-1) - 1.2e+19*U*U)/(8*Kmfp*c_light*GE*GE);      
-      if (TransitionProb2 < 0.0) TransitionProb2 = 0.0; 
+      G4double GE = sixdpi2*aLDP*A*U; 
+      TransitionProb2 = ((N-1)*(N-2)*P*H)*TransitionProb1/(GE*GE);  
     }
   }
   //  G4cout<<"U = "<<U<<G4endl;
@@ -239,7 +212,6 @@ void G4PreCompoundTransitions::PerformTransition(G4Fragment & result)
   G4double ChosenTransition = 
     G4UniformRand()*(TransitionProb1 + TransitionProb2 + TransitionProb3);
   G4int deltaN = 0;
-  //  G4int Nexcitons = result.GetNumberOfExcitons();
   G4int Npart     = result.GetNumberOfParticles();
   G4int Ncharged  = result.GetNumberOfCharged();
   G4int Nholes    = result.GetNumberOfHoles();
@@ -261,22 +233,23 @@ void G4PreCompoundTransitions::PerformTransition(G4Fragment & result)
 
   //G4cout << "deltaN= " << deltaN << G4endl;
 
-  // JMQ the following lines have to be before SetNumberOfCharged, otherwise the check on 
-  // number of charged vs. number of particles fails
+  // JMQ the following lines have to be before SetNumberOfCharged, 
+  //     otherwise the check on number of charged vs. number of particles fails
   result.SetNumberOfParticles(Npart+deltaN);
   result.SetNumberOfHoles(Nholes+deltaN); 
 
   if(deltaN < 0) {
-    if( Ncharged >= 1 && G4int(Npart*G4UniformRand()) <= Ncharged) 
+    if( (Ncharged == Npart) ||
+	(Ncharged >= 1 && G4int(Npart*G4UniformRand()) <= Ncharged)) 
       { 
 	result.SetNumberOfCharged(Ncharged+deltaN); // deltaN is negative!
       }
 
   } else if ( deltaN > 0 ) {
     // With weight Z/A, number of charged particles is increased with +1
-    G4int A = result.GetA_asInt();
-    G4int Z = result.GetZ_asInt();
-    if( G4int(std::max(1, A - Npart)*G4UniformRand()) <= Z) 
+    G4int A = result.GetA_asInt() - Npart;
+    G4int Z = result.GetZ_asInt() - Ncharged;
+    if((Z == A) ||  (Z > 0 && G4int(A*G4UniformRand()) <= Z)) 
       {
 	result.SetNumberOfCharged(Ncharged+deltaN);
       }
diff --git a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundTriton.cc b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundTriton.cc
index 4d96ddfbb18..b7f3b0c0310 100644
--- a/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundTriton.cc
+++ b/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundTriton.cc
@@ -23,7 +23,7 @@
 // * acceptance of all terms of the Geant4 Software license.          *
 // ********************************************************************
 //
-// $Id: G4PreCompoundTriton.cc 82765 2014-07-08 14:25:39Z gcosmo $
+// $Id: G4PreCompoundTriton.cc 90591 2015-06-04 13:45:29Z gcosmo $
 //
 // -------------------------------------------------------------------
 //
@@ -138,17 +138,17 @@ G4double G4PreCompoundTriton::GetOpt12(G4double K)
 
   G4double landa ,mu ,nu ,p , Ec,q,r,ji,xs;
  
-  G4double    p0 = -11.04;
-  G4double    p1 = 619.1;
-  G4double    p2 = -2147.;
-  G4double    landa0 = -0.0426;
-  G4double    landa1 = -10.33;
-  G4double    mm0 = 601.9;
-  G4double    mu1 = 0.37;
-  G4double    nu0 = 583.0;
-  G4double    nu1 = -546.2;
-  G4double    nu2 = 1.718;  
-  G4double    delta=1.2;            
+  const G4double p0 = -11.04;
+  const G4double p1 = 619.1;
+  const G4double p2 = -2147.;
+  const G4double landa0 = -0.0426;
+  const G4double landa1 = -10.33;
+  const G4double mm0 = 601.9;
+  const G4double mu1 = 0.37;
+  const G4double nu0 = 583.0;
+  const G4double nu1 = -546.2;
+  const G4double nu2 = 1.718;  
+  const G4double delta=1.2;            
 
   Ec = 1.44*theZ*ResidualZ/(1.5*ResidualAthrd+delta);
   p = p0 + p1/Ec + p2/(Ec*Ec);
@@ -163,9 +163,8 @@ G4double G4PreCompoundTriton::GetOpt12(G4double K)
   ji=std::max(Kc,Ec);
   if(Kc < Ec) { xs = p*Kc*Kc + q*Kc + r;}
   else {xs = p*(Kc - ji)*(Kc - ji) + landa*Kc + mu + nu*(2 - Kc/ji)/ji ;}
-                 
-  if (xs <0.0) {xs=0.0;}
-              
+                               
+  xs = std::max(xs, 0.0);
   return xs;
 }
 
@@ -173,65 +172,63 @@ G4double G4PreCompoundTriton::GetOpt12(G4double K)
 G4double G4PreCompoundTriton::GetOpt34(G4double K)
 //     ** t from o.m. of hafele, flynn et al
 {
-  G4double landa, mu, nu, p , signor(1.),sig;
-  G4double ec,ecsq,xnulam,etest(0.),a; 
-  G4double b,ecut,cut,ecut2,geom,elab;
-
-  G4double     flow = 1.e-18;
-  G4double     spill= 1.e+18;
-
-  G4double     p0 = -21.45;
-  G4double     p1 = 484.7;
-  G4double     p2 = -1608.;
-  G4double     landa0 = 0.0186;
-  G4double     landa1 = -8.90;
-  G4double     mm0 = 686.3;
-  G4double     mu1 = 0.325;
-  G4double     nu0 = 368.9;
-  G4double     nu1 = -522.2;
-  G4double     nu2 = -4.998;  
+  const G4double  flow = 1.e-18;
+  const G4double  spill= 1.e+18;
+
+  const G4double  p0 = -21.45;
+  const G4double  p1 = 484.7;
+  const G4double  p2 = -1608.;
+  const G4double  landa0 = 0.0186;
+  const G4double  landa1 = -8.90;
+  const G4double  mm0 = 686.3;
+  const G4double  mu1 = 0.325;
+  const G4double  nu0 = 368.9;
+  const G4double  nu1 = -522.2;
+  const G4double  nu2 = -4.998;  
   
-  G4double      ra=0.80;
+  const G4double  ra = 0.80;
+  const G4double  signor = 1.0;
         
   //JMQ 13/02/09 increase of reduced radius to lower the barrier
   // ec = 1.44 * theZ * ResidualZ / (1.5*ResidualAthrd+ra);
-  ec = 1.44 * theZ * ResidualZ / (1.7*ResidualAthrd+ra);
-  ecsq = ec * ec;
-  p = p0 + p1/ec + p2/ecsq;
-  landa = landa0*ResidualA + landa1;
-  a = g4pow->powZ(ResidualA,mu1);
-  mu = mm0 * a;
-  nu = a* (nu0+nu1*ec+nu2*ecsq);  
-  xnulam = nu / landa;
-  if (xnulam > spill) { xnulam=0.; }
-  if (xnulam >= flow) { etest = 1.2 *std::sqrt(xnulam); }
+  G4double ec = 1.44 * theZ * ResidualZ / (1.7*ResidualAthrd+ra);
+  G4double ecsq = ec * ec;
+  G4double p = p0 + p1/ec + p2/ecsq;
+  G4double landa = landa0*ResidualA + landa1;
+  G4double a = g4pow->powZ(ResidualA,mu1);
+  G4double mu = mm0 * a;
+  G4double nu = a* (nu0+nu1*ec+nu2*ecsq);  
+  G4double xnulam = nu / landa;
+  G4double etest = 0.0;
+  if (xnulam > spill)      { xnulam=0.; }
+  else if (xnulam >= flow) { etest = 1.2 *std::sqrt(xnulam); }
  
   a = -2.*p*ec + landa - nu/ecsq;
-  b = p*ecsq + mu + 2.*nu/ec;
-  ecut = 0.;
-  cut = a*a - 4.*p*b;
+  G4double b = p*ecsq + mu + 2.*nu/ec;
+  G4double ecut = 0.;
+  G4double cut = a*a - 4.*p*b;
   if (cut > 0.) { ecut = std::sqrt(cut); }
-  ecut = (ecut-a) / (p+p);
-  ecut2 = ecut;
+  ecut = (ecut-a) / (2*p);
+ 
   //JMQ 290310 for avoiding unphysical increase below minimum (at ecut)
   // ecut<0 means that there is no cut with energy axis, i.e. xs is set 
   // to 0 bellow minimum
-  //  if (cut < 0.) ecut2 = ecut - 2.;
-  if (cut < 0.) { ecut2 = ecut; }
-  elab = K * FragmentA / G4double(ResidualA);
-  sig = 0.;
- 
-  if (elab <= ec) { //start for E<Ec
-    if (elab > ecut2) { sig = (p*elab*elab+a*elab+b) * signor; }
-  }           //end for E<Ec
-  else {           //start for E>Ec
+
+  G4double elab = K * FragmentA / G4double(ResidualA);
+  G4double sig = 0.;
+
+  if (elab <= ec) { 
+    if (elab > ecut) { sig = std::max(0.0,(p*elab*elab+a*elab+b) * signor); }
+
+  } else {           
     sig = (landa*elab+mu+nu/elab) * signor;
-    geom = 0.;
-    if (xnulam < flow || elab < etest) { return sig; }
-    geom = std::sqrt(theA*K);
-    geom = 1.23*ResidualAthrd + ra + 4.573/geom;
-    geom = 31.416 * geom * geom;
+    G4double geom = 0.;
+    if (xnulam >= flow && elab >= etest) { 
+      geom = std::sqrt(theA*K);
+      geom = 1.23*ResidualAthrd + ra + 4.573/geom;
+      geom = 31.416 * geom * geom;
+    }
     sig = std::max(geom,sig);
-  }           //end for E>Ec
+  }          
   return sig;
 }
diff --git a/source/processes/hadronic/models/quasi_elastic/History b/source/processes/hadronic/models/quasi_elastic/History
index 145d61f2b1e..b8615ef5012 100644
--- a/source/processes/hadronic/models/quasi_elastic/History
+++ b/source/processes/hadronic/models/quasi_elastic/History
@@ -14,6 +14,9 @@ code and to keep track of all tags.
      * Please list in reverse chronological order (last date on top)
      ---------------------------------------------------------------
 
+17-April-2015, W.Pokorski hadr-qelastic-V10-00-03
+- clean up of the code. Removing all the mess related to (unneeded) statics.
+
 16-Oct-2014, A.Dotti  hadr-qelastic-V10-00-01, -02
 - Retagging previous change that slipped out
 
diff --git a/source/processes/hadronic/models/quasi_elastic/include/G4QuasiElRatios.hh b/source/processes/hadronic/models/quasi_elastic/include/G4QuasiElRatios.hh
index 49de98618f4..a4e391f05df 100644
--- a/source/processes/hadronic/models/quasi_elastic/include/G4QuasiElRatios.hh
+++ b/source/processes/hadronic/models/quasi_elastic/include/G4QuasiElRatios.hh
@@ -51,16 +51,12 @@
 
 class G4QuasiElRatios
 {
-protected:
-    
-    G4QuasiElRatios();                 // Constructor
     
 public:
+    G4QuasiElRatios();                 // Constructor
     
     ~G4QuasiElRatios();                 // Destructor
     
-    static G4QuasiElRatios* GetPointer(); // Gives a pointer to this singletone
-    
     // Pair(QuasiFree/Inelastic,QuasiElastic/QuasiFree)
     std::pair<G4double,G4double> GetRatios(G4double pIU, G4int prPDG, G4int tgZ, G4int tgN);
     // ChargeExchange/QuasiElastic factor pair<for protons (Z), for neutrons(N)>
@@ -102,8 +98,40 @@ private:
     
     // Body
 private:
-    static G4ThreadLocal std::vector<G4double*> *vT_G4MT_TLS_;     // Vector of pointers to LinTable
-    static G4ThreadLocal std::vector<G4double*> *vL_G4MT_TLS_;     // Vector of pointers to LogTable
-    static G4ThreadLocal std::vector<std::pair<G4double,G4double>*> *vX_G4MT_TLS_; // Vector of ETPointers to LogTable
+    std::vector<G4double*> *vT;     // Vector of pointers to LinTable
+    std::vector<G4double*> *vL;     // Vector of pointers to LogTable
+    std::vector<std::pair<G4double,G4double>*> *vX; // Vector of ETPointers to LogTable
+    
+    G4double lastSRatio;             // The last sigma value for which R was calculated
+    G4double lastRRatio;             // The last ratio R which was calculated
+    std::vector<G4int> vARatio;
+    std::vector<G4double> vHRatio;     // Vector of max s initialized in the LinTable
+    std::vector<G4int> vNRatio;    // Vector of topBin number initialized in LinTable
+    std::vector<G4double> vMRatio;     // Vector of rel max ln(s) initialized in LogTable
+    std::vector<G4int> vKRatio;     // Vector of topBin number initialized in LogTable
+ 
+    G4int     lastARatio;             // theLast of calculated A
+    G4double  lastHRatio;            // theLast of max s initialized in the LinTable
+    G4int     lastNRatio;             // theLast of topBin number initialized in LinTable
+    G4double  lastMRatio;            // theLast of rel max ln(s) initialized in LogTable
+    G4int     lastKRatio;             // theLast of topBin number initialized in LogTable
+    G4double* lastTRatio;             // theLast of pointer to LinTable in the C++ heap
+    G4double* lastLRatio;             // theLast of pointer to LogTable in the C++ heap
+    
+    G4double lastPtot;              // The last momentum for which XS was calculated
+    G4int    lastHtot;               // The last projPDG for which XS was calculated
+    G4bool   lastFtot;            // The last nucleon for which XS was calculated
+    std::pair<G4double,G4double> lastRtot; // The last result
+    std::vector<G4int>  vItot;      // Vector of index for which XS was calculated
+    std::vector<G4double> vMtot;      // Vector of rel max ln(p) initialized in LogTable
+    std::vector<G4int> vKtot;      // Vector of topBin number initialized in LogTable
+    G4int     lastItot;              // The Last index for which XS was calculated
+    G4double  lastMtot;             // The Last rel max ln(p) initialized in LogTable
+    G4int     lastKtot;             // The Last topBin number initialized in LogTable
+    std::pair<G4double,G4double>* lastXtot; // The Last ETPointers to LogTable in heap
+
+
+    
+    
 };
 #endif
diff --git a/source/processes/hadronic/models/quasi_elastic/src/G4QuasiElRatios.cc b/source/processes/hadronic/models/quasi_elastic/src/G4QuasiElRatios.cc
index 992f1de8e2e..eecfbb15911 100644
--- a/source/processes/hadronic/models/quasi_elastic/src/G4QuasiElRatios.cc
+++ b/source/processes/hadronic/models/quasi_elastic/src/G4QuasiElRatios.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4QuasiElRatios.cc 84597 2014-10-17 07:37:45Z gcosmo $
+// $Id: G4QuasiElRatios.cc 90573 2015-06-04 09:38:49Z gcosmo $
 //
 //
 // G4 Physics class: G4QuasiElRatios for N+A elastic cross sections
@@ -51,14 +51,59 @@
 #include "G4ThreeVector.hh"
 #include "G4CrossSectionDataSetRegistry.hh"
 
+namespace  {
+    const G4int    nps=150;        // Number of steps in the R(s) LinTable
+    const G4int    mps=nps+1;      // Number of elements in the R(s) LinTable
+    const G4double sma=150.;       // The first LinTabEl(s=0)=1., s>sma -> logTab
+    const G4double ds=sma/nps;     // Step of the linear Table
+    const G4int    nls=100;        // Number of steps in the R(lns) logTable
+    const G4int    mls=nls+1;      // Number of elements in the R(lns) logTable
+    const G4double lsi=5.;         // The min ln(s) logTabEl(s=148.4 < sma=150.)
+    const G4double lsa=9.;         // The max ln(s) logTabEl(s=148.4 - 8103. mb)
+    const G4double mi=std::exp(lsi);// The min s of logTabEl(~ 148.4 mb)
+    const G4double min_s=std::exp(lsa);// The max s of logTabEl(~ 8103. mb)
+    const G4double dls=(lsa-lsi)/nls;// Step of the logarithmic Table
+    const G4double edls=std::exp(dls);// Multiplication step of the logarithmic Table
+    const G4double toler=.01;      // The tolarence mb defining the same cross-section
+    const G4double C=1.246;
+    const G4double lmi=3.5;       // min of (lnP-lmi)^2 parabola
+    const G4double pbe=.0557;     // elastic (lnP-lmi)^2 parabola coefficient
+    const G4double pbt=.3;        // total (lnP-lmi)^2 parabola coefficient
+    const G4double pmi=.1;        // Below that fast LE calculation is made
+    const G4double pma=1000.;     // Above that fast HE calculation is made
+    const G4int    nlp=300;         // Number of steps in the S(lnp) logTable(5% step)
+    const G4int    mlp=nlp+1;       // Number of elements in the S(lnp) logTable
+    const G4double lpi=-5.;         // The min ln(p) logTabEl(p=6.7 MeV/c - 22. TeV/c)
+    const G4double lpa=10.;         // The max ln(p) logTabEl(p=6.7 MeV/c - 22. TeV/c)
+    const G4double mip=std::exp(lpi);// The min p of logTabEl(~ 6.7 MeV/c)
+    const G4double map=std::exp(lpa);// The max p of logTabEl(~ 22. TeV)
+    const G4double dlp=(lpa-lpi)/nlp;// Step of the logarithmic Table
+    const G4double edlp=std::exp(dlp);// Multiplication step of the logarithmic Table
+}
 
-// initialisation of statics
-G4ThreadLocal std::vector<G4double*> *G4QuasiElRatios::vT_G4MT_TLS_ = 0; // Vector of pointers to LinTable in C++ heap
-G4ThreadLocal std::vector<G4double*> *G4QuasiElRatios::vL_G4MT_TLS_ = 0; // Vector of pointers to LogTable in C++ heap
-G4ThreadLocal std::vector<std::pair<G4double,G4double>*> *G4QuasiElRatios::vX_G4MT_TLS_ = 0; // ETPointers to LogTable
 
 G4QuasiElRatios::G4QuasiElRatios()
-{ if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ;
+{
+    vT = new std::vector<G4double*>;
+    vL = new std::vector<G4double*>;
+    vX = new std::vector<std::pair<G4double,G4double>*>;
+    
+    lastSRatio=0.;             // The last sigma value for which R was calculated
+    lastRRatio=0.;             // The last ratio R which was calculated
+    lastARatio=0;             // theLast of calculated A
+    lastHRatio=0.;            // theLast of max s initialized in the LinTable
+    lastNRatio=0;             // theLast of topBin number initialized in LinTable
+    lastMRatio=0.;            // theLast of rel max ln(s) initialized in LogTable
+    lastKRatio=0;             // theLast of topBin number initialized in LogTable
+    lastTRatio=0;             // theLast of pointer to LinTable in the C++ heap
+    lastLRatio=0;             // theLast of pointer to LogTable in the C++ heap
+    lastPtot=0.;              // The last momentum for which XS was calculated
+    lastHtot=0;               // The last projPDG for which XS was calculated
+    lastFtot=true;            // The last nucleon for which XS was calculated
+    lastItot=0;              // The Last index for which XS was calculated
+    lastMtot=0.;             // The Last rel max ln(p) initialized in LogTable
+    lastKtot=0;             // The Last topBin number initialized in LogTable
+    lastXtot = new std::pair<G4double,G4double>; // The Last ETPointers to LogTable in heap
     
     PCSmanager=(G4ChipsProtonElasticXS*)G4CrossSectionDataSetRegistry::Instance()->GetCrossSectionDataSet(G4ChipsProtonElasticXS::Default_Name());
     
@@ -66,32 +111,25 @@ G4QuasiElRatios::G4QuasiElRatios()
 }
 
 G4QuasiElRatios::~G4QuasiElRatios()
-{  ;;;   if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; std::vector<std::pair<G4double,G4double>*> &vX = *vX_G4MT_TLS_;  ;;;    ;;;   if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; std::vector<G4double*> &vL = *vL_G4MT_TLS_;  ;;;    ;;;   if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ; std::vector<G4double*> &vT = *vT_G4MT_TLS_;  ;;;  
+{
     std::vector<G4double*>::iterator pos;
-    for(pos=vT.begin(); pos<vT.end(); pos++)
+    for(pos=vT->begin(); pos<vT->end(); pos++)
     { delete [] *pos; }
-    vT.clear();
-    for(pos=vL.begin(); pos<vL.end(); pos++)
+    vT->clear();
+    for(pos=vL->begin(); pos<vL->end(); pos++)
     { delete [] *pos; }
-    vL.clear();
+    vL->clear();
     
     std::vector<std::pair<G4double,G4double>*>::iterator pos2;
-    for(pos2=vX.begin(); pos2<vX.end(); pos2++)
+    for(pos2=vX->begin(); pos2<vX->end(); pos2++)
     { delete [] *pos2; }
-    vX.clear();
-}
-
-// Returns Pointer to the G4VQCrossSection class
-G4QuasiElRatios* G4QuasiElRatios::GetPointer()
-{ if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ;
-    static G4ThreadLocal G4QuasiElRatios *theRatios_G4MT_TLS_ = 0 ; if (!theRatios_G4MT_TLS_) theRatios_G4MT_TLS_ = new  G4QuasiElRatios  ;  G4QuasiElRatios &theRatios = *theRatios_G4MT_TLS_;   // *** Static body of the QEl Cross Section ***
-    return &theRatios;
+    vX->clear();
 }
 
 // Calculation of pair(QuasiFree/Inelastic,QuasiElastic/QuasiFree)
 std::pair<G4double,G4double> G4QuasiElRatios::GetRatios(G4double pIU, G4int pPDG,
                                                          G4int tgZ,    G4int tgN)
-{ if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ;
+{
     G4double R=0.;
     G4double QF2In=1.;                        // Prototype of QuasiFree/Inel ratio for hN_tot
     G4int tgA=tgZ+tgN;
@@ -109,161 +147,133 @@ std::pair<G4double,G4double> G4QuasiElRatios::GetRatios(G4double pIU, G4int pPDG
 
 // Calculatio QasiFree/Inelastic Ratio as a function of total hN cross-section (mb) and A
 G4double G4QuasiElRatios::GetQF2IN_Ratio(G4double m_s, G4int A)
-{ if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ;  ;;;   if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; std::vector<G4double*> &vL = *vL_G4MT_TLS_;  ;;;    ;;;   if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ; std::vector<G4double*> &vT = *vT_G4MT_TLS_;  ;;;  
-    static const G4int    nps=150;        // Number of steps in the R(s) LinTable
-    static const G4int    mps=nps+1;      // Number of elements in the R(s) LinTable
-    static const G4double sma=150.;       // The first LinTabEl(s=0)=1., s>sma -> logTab
-    static const G4double ds=sma/nps;     // Step of the linear Table
-    static const G4int    nls=100;        // Number of steps in the R(lns) logTable
-    static const G4int    mls=nls+1;      // Number of elements in the R(lns) logTable
-    static const G4double lsi=5.;         // The min ln(s) logTabEl(s=148.4 < sma=150.)
-    static const G4double lsa=9.;         // The max ln(s) logTabEl(s=148.4 - 8103. mb)
-    static const G4double mi=std::exp(lsi);// The min s of logTabEl(~ 148.4 mb)
-    static const G4double min_s=std::exp(lsa);// The max s of logTabEl(~ 8103. mb)
-    static const G4double dl=(lsa-lsi)/nls;// Step of the logarithmic Table
-    static const G4double edl=std::exp(dl);// Multiplication step of the logarithmic Table
-    static const G4double toler=.01;      // The tolarence mb defining the same cross-section
-    static G4ThreadLocal G4double lastS=0.;             // The last sigma value for which R was calculated
-    static G4ThreadLocal G4double lastR=0.;             // The last ratio R which was calculated
-    // Local Associative Data Base:
-    static G4ThreadLocal std::vector<G4int>     *vA_G4MT_TLS_ = 0 ; if (!vA_G4MT_TLS_) vA_G4MT_TLS_ = new  std::vector<G4int>      ;  std::vector<G4int>     &vA = *vA_G4MT_TLS_;     // Vector of calculated A
-    static G4ThreadLocal std::vector<G4double>  *vH_G4MT_TLS_ = 0 ; if (!vH_G4MT_TLS_) vH_G4MT_TLS_ = new  std::vector<G4double>   ;  std::vector<G4double>  &vH = *vH_G4MT_TLS_;     // Vector of max s initialized in the LinTable
-    static G4ThreadLocal std::vector<G4int>     *vN_G4MT_TLS_ = 0 ; if (!vN_G4MT_TLS_) vN_G4MT_TLS_ = new  std::vector<G4int>      ;  std::vector<G4int>     &vN = *vN_G4MT_TLS_;     // Vector of topBin number initialized in LinTable
-    static G4ThreadLocal std::vector<G4double>  *vM_G4MT_TLS_ = 0 ; if (!vM_G4MT_TLS_) vM_G4MT_TLS_ = new  std::vector<G4double>   ;  std::vector<G4double>  &vM = *vM_G4MT_TLS_;     // Vector of rel max ln(s) initialized in LogTable
-    static G4ThreadLocal std::vector<G4int>     *vK_G4MT_TLS_ = 0 ; if (!vK_G4MT_TLS_) vK_G4MT_TLS_ = new  std::vector<G4int>      ;  std::vector<G4int>     &vK = *vK_G4MT_TLS_;     // Vector of topBin number initialized in LogTable
-    // Last values of the Associative Data Base:
-    static G4ThreadLocal G4int     lastA=0;             // theLast of calculated A
-    static G4ThreadLocal G4double  lastH=0.;            // theLast of max s initialized in the LinTable
-    static G4ThreadLocal G4int     lastN=0;             // theLast of topBin number initialized in LinTable
-    static G4ThreadLocal G4double  lastM=0.;            // theLast of rel max ln(s) initialized in LogTable
-    static G4ThreadLocal G4int     lastK=0;             // theLast of topBin number initialized in LogTable
-    static G4ThreadLocal G4double* lastT=0;             // theLast of pointer to LinTable in the C++ heap
-    static G4ThreadLocal G4double* lastL=0;             // theLast of pointer to LogTable in the C++ heap
+{
     // LogTable is created only if necessary. The ratio R(s>8100 mb) = 0 for any nuclei
     if(m_s<toler || A<2) return 1.;
     if(m_s>min_s) return 0.;
+    
     if(A>238)
     {
         G4cout<<"-Warning-G4QuasiElRatio::GetQF2IN_Ratio:A="<<A<<">238, return zero"<<G4endl;
         return 0.;
     }
-    G4int nDB=vA.size();                  // A number of nuclei already initialized in AMDB
-    if(nDB && lastA==A && m_s==lastS) return lastR;  // VI do not use tolerance
+    G4int nDB=vARatio.size();                  // A number of nuclei already initialized in AMDB
+    if(nDB && lastARatio==A && m_s==lastSRatio) return lastRRatio;  // VI do not use tolerance
     G4bool found=false;
     G4int i=-1;
-    if(nDB) for (i=0; i<nDB; i++) if(A==vA[i]) // Search for this A in AMDB
+    if(nDB) for (i=0; i<nDB; i++) if(A==vARatio[i]) // Search for this A in AMDB
     {
         found=true;                         // The A value is found
         break;
     }
     if(!nDB || !found)                    // Create new line in the AMDB
     {
-        lastA = A;
-        lastT = new G4double[mps];          // Create the linear Table
-        lastN = static_cast<int>(m_s/ds)+1;   // MaxBin to be initialized
-        if(lastN>nps)
+        lastARatio = A;
+        lastTRatio = new G4double[mps];          // Create the linear Table
+        lastNRatio = static_cast<int>(m_s/ds)+1;   // MaxBin to be initialized
+        if(lastNRatio>nps)
         {
-            lastN=nps;
-            lastH=sma;
+            lastNRatio=nps;
+            lastHRatio=sma;
         }
-        else lastH = lastN*ds;              // Calculate max initialized s for LinTab
+        else lastHRatio = lastNRatio*ds;              // Calculate max initialized s for LinTab
         G4double sv=0;
-        lastT[0]=1.;
-        for(G4int j=1; j<=lastN; j++)       // Calculate LogTab values
+        lastTRatio[0]=1.;
+        for(G4int j=1; j<=lastNRatio; j++)       // Calculate LogTab values
         {
             sv+=ds;
-            lastT[j]=CalcQF2IN_Ratio(sv,A);
+            lastTRatio[j]=CalcQF2IN_Ratio(sv,A);
         }
-        lastL=new G4double[mls];            // Create the logarithmic Table
+        lastLRatio=new G4double[mls];            // Create the logarithmic Table
         if(m_s>sma)                           // Initialize the logarithmic Table
         {
 	  G4double ls=std::log(m_s);
-            lastK = static_cast<int>((ls-lsi)/dl)+1; // MaxBin to be initialized in LogTaB
-            if(lastK>nls)
+            lastKRatio = static_cast<int>((ls-lsi)/dls)+1; // MaxBin to be initialized in LogTaB
+            if(lastKRatio>nls)
             {
-                lastK=nls;
-                lastM=lsa-lsi;
+                lastKRatio=nls;
+                lastMRatio=lsa-lsi;
             }
-            else lastM = lastK*dl;            // Calculate max initialized ln(s)-lsi for LogTab
+            else lastMRatio = lastKRatio*dls;            // Calculate max initialized ln(s)-lsi for LogTab
             sv=mi;
-            for(G4int j=0; j<=lastK; j++)     // Calculate LogTab values
+            for(G4int j=0; j<=lastKRatio; j++)     // Calculate LogTab values
             {
-                lastL[j]=CalcQF2IN_Ratio(sv,A);
-                if(j!=lastK) sv*=edl;
+                lastLRatio[j]=CalcQF2IN_Ratio(sv,A);
+                if(j!=lastKRatio) sv*=edls;
             }
         }
         else                                // LogTab is not initialized
         {
-            lastK = 0;
-            lastM = 0.;
+            lastKRatio = 0;
+            lastMRatio = 0.;
         }
         i++;                                // Make a new record to AMDB and position on it
-        vA.push_back(lastA);
-        vH.push_back(lastH);
-        vN.push_back(lastN);
-        vM.push_back(lastM);
-        vK.push_back(lastK);
-        vT.push_back(lastT);
-        vL.push_back(lastL);
+        vARatio.push_back(lastARatio);
+        vHRatio.push_back(lastHRatio);
+        vNRatio.push_back(lastNRatio);
+        vMRatio.push_back(lastMRatio);
+        vKRatio.push_back(lastKRatio);
+        vT->push_back(lastTRatio);
+        vL->push_back(lastLRatio);
     }
     else                                  // The A value was found in AMDB
     {
-        lastA=vA[i];
-        lastH=vH[i];
-        lastN=vN[i];
-        lastM=vM[i];
-        lastK=vK[i];
-        lastT=vT[i];
-        lastL=vL[i];
-        if(m_s>lastH)                          // At least LinTab must be updated
+        lastARatio=vARatio[i];
+        lastHRatio=vHRatio[i];
+        lastNRatio=vNRatio[i];
+        lastMRatio=vMRatio[i];
+        lastKRatio=vKRatio[i];
+        lastTRatio=(*vT)[i];
+        lastLRatio=(*vL)[i];
+        if(m_s>lastHRatio)                          // At least LinTab must be updated
         {
-            G4int nextN=lastN+1;               // The next bin to be initialized
-            if(lastN<nps)
+            G4int nextN=lastNRatio+1;               // The next bin to be initialized
+            if(lastNRatio<nps)
             {
-	      G4double sv=lastH; // bug fix by WP
+	      G4double sv=lastHRatio; // bug fix by WP
 
-                lastN = static_cast<int>(m_s/ds)+1;// MaxBin to be initialized
-                if(lastN>nps)
+                lastNRatio = static_cast<int>(m_s/ds)+1;// MaxBin to be initialized
+                if(lastNRatio>nps)
                 {
-                    lastN=nps;
-                    lastH=sma;
+                    lastNRatio=nps;
+                    lastHRatio=sma;
                 }
-                else lastH = lastN*ds;           // Calculate max initialized s for LinTab
+                else lastHRatio = lastNRatio*ds;           // Calculate max initialized s for LinTab
 
-                for(G4int j=nextN; j<=lastN; j++)// Calculate LogTab values
+                for(G4int j=nextN; j<=lastNRatio; j++)// Calculate LogTab values
                 {
                     sv+=ds;
-                    lastT[j]=CalcQF2IN_Ratio(sv,A);
+                    lastTRatio[j]=CalcQF2IN_Ratio(sv,A);
                 }
             } // End of LinTab update
-            if(lastN>=nextN)
+            if(lastNRatio>=nextN)
             {
-                vH[i]=lastH;
-                vN[i]=lastN;
+                vHRatio[i]=lastHRatio;
+                vNRatio[i]=lastNRatio;
             }
-            G4int nextK=lastK+1;
-            if(!lastK) nextK=0;
-            if(m_s>sma && lastK<nls)             // LogTab must be updated
+            G4int nextK=lastKRatio+1;
+            if(!lastKRatio) nextK=0;
+            if(m_s>sma && lastKRatio<nls)             // LogTab must be updated
             {
-                G4double sv=std::exp(lastM+lsi); // Define starting poit (lastM will be changed)
+                G4double sv=std::exp(lastMRatio+lsi); // Define starting poit (lastM will be changed)
                 G4double ls=std::log(m_s);
-                lastK = static_cast<int>((ls-lsi)/dl)+1; // MaxBin to be initialized in LogTaB
-                if(lastK>nls)
+                lastKRatio = static_cast<int>((ls-lsi)/dls)+1; // MaxBin to be initialized in LogTaB
+                if(lastKRatio>nls)
                 {
-                    lastK=nls;
-                    lastM=lsa-lsi;
+                    lastKRatio=nls;
+                    lastMRatio=lsa-lsi;
                 }
-                else lastM = lastK*dl;           // Calculate max initialized ln(s)-lsi for LogTab
-                for(G4int j=nextK; j<=lastK; j++)// Calculate LogTab values
+                else lastMRatio = lastKRatio*dls;           // Calculate max initialized ln(s)-lsi for LogTab
+                for(G4int j=nextK; j<=lastKRatio; j++)// Calculate LogTab values
                 {
-                    sv*=edl;
-                    lastL[j]=CalcQF2IN_Ratio(sv,A);
+                    sv*=edls;
+                    lastLRatio[j]=CalcQF2IN_Ratio(sv,A);
                 }
             } // End of LogTab update
-            if(lastK>=nextK)
+            if(lastKRatio>=nextK)
             {
-                vM[i]=lastM;
-                vK[i]=lastK;
+                vMRatio[i]=lastMRatio;
+                vKRatio[i]=lastKRatio;
             }
         }
     }
@@ -272,26 +282,25 @@ G4double G4QuasiElRatios::GetQF2IN_Ratio(G4double m_s, G4int A)
     {
         G4int n=static_cast<int>(m_s/ds);     // Low edge number of the bin
         G4double d=m_s-n*ds;                  // Linear shift
-        G4double v=lastT[n];                // Base
-        lastR=v+d*(lastT[n+1]-v)/ds;        // Result
+        G4double v=lastTRatio[n];                // Base
+        lastRRatio=v+d*(lastTRatio[n+1]-v)/ds;        // Result
     }
     else                                  // Use log table
     {
         G4double ls=std::log(m_s)-lsi;        // ln(s)-l_min
-        G4int n=static_cast<int>(ls/dl);    // Low edge number of the bin
-        G4double d=ls-n*dl;                 // Log shift
-        G4double v=lastL[n];                // Base
-        lastR=v+d*(lastL[n+1]-v)/dl;        // Result
+        G4int n=static_cast<int>(ls/dls);    // Low edge number of the bin
+        G4double d=ls-n*dls;                 // Log shift
+        G4double v=lastLRatio[n];                // Base
+        lastRRatio=v+d*(lastLRatio[n+1]-v)/dls;        // Result
     }
-    if(lastR<0.) lastR=0.;
-    if(lastR>1.) lastR=1.;
-    return lastR;
+    if(lastRRatio<0.) lastRRatio=0.;
+    if(lastRRatio>1.) lastRRatio=1.;
+    return lastRRatio;
 } // End of CalcQF2IN_Ratio
 
 // Calculatio QasiFree/Inelastic Ratio as a function of total hN cross-section and A
 G4double G4QuasiElRatios::CalcQF2IN_Ratio(G4double m_s, G4int A)
-{ if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ;
-    static const G4double C=1.246;
+{
     G4double s2=m_s*m_s;
     G4double s4=s2*s2;
     G4double ss=std::sqrt(std::sqrt(m_s));
@@ -303,13 +312,9 @@ G4double G4QuasiElRatios::CalcQF2IN_Ratio(G4double m_s, G4int A)
 
 // Calculatio pair(hN_el,hN_tot) (mb): p in GeV/c, index(PDG,F) (see FetchElTot)
 std::pair<G4double,G4double> G4QuasiElRatios::CalcElTot(G4double p, G4int I)
-{ if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ;
+{
     // ---------> Each parameter set can have not more than nPoints=128 parameters
-    static const G4double lmi=3.5;       // min of (lnP-lmi)^2 parabola
-    static const G4double pbe=.0557;     // elastic (lnP-lmi)^2 parabola coefficient
-    static const G4double pbt=.3;        // total (lnP-lmi)^2 parabola coefficient
-    static const G4double pmi=.1;        // Below that fast LE calculation is made
-    static const G4double pma=1000.;     // Above that fast HE calculation is made
+
     G4double El=0.;                      // prototype of the elastic hN cross-section
     G4double To=0.;                      // prototype of the total hN cross-section
     if(p<=0.)
@@ -559,7 +564,7 @@ std::pair<G4double,G4double> G4QuasiElRatios::CalcElTot(G4double p, G4int I)
 
 // For hadron PDG with momentum Mom (GeV/c) on N (p/n) calculate <sig_el,sig_tot> pair (mb)
 std::pair<G4double,G4double> G4QuasiElRatios::GetElTotXS(G4double p, G4int PDG, G4bool F)
-{ if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ;
+{
     G4int ind=0;                                 // Prototype of the reaction index
     G4bool kfl=true;                             // Flag of K0/aK0 oscillation
     G4bool kf=false;
@@ -586,35 +591,13 @@ std::pair<G4double,G4double> G4QuasiElRatios::GetElTotXS(G4double p, G4int PDG,
 
 // Calculatio pair(hN_el,hN_tot)(mb): p in GeV/c, F=true -> N=proton, F=false -> N=neutron
 std::pair<G4double,G4double> G4QuasiElRatios::FetchElTot(G4double p, G4int PDG, G4bool F)
-{  ;;;   if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; std::vector<std::pair<G4double,G4double>*> &vX = *vX_G4MT_TLS_;  ;;;   if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ;
-    static const G4int    nlp=300;         // Number of steps in the S(lnp) logTable(5% step)
-    static const G4int    mlp=nlp+1;       // Number of elements in the S(lnp) logTable
-    static const G4double lpi=-5.;         // The min ln(p) logTabEl(p=6.7 MeV/c - 22. TeV/c)
-    static const G4double lpa=10.;         // The max ln(p) logTabEl(p=6.7 MeV/c - 22. TeV/c)
-    static const G4double mi=std::exp(lpi);// The min p of logTabEl(~ 6.7 MeV/c)
-    static const G4double ma=std::exp(lpa);// The max p of logTabEl(~ 22. TeV)
-    static const G4double dl=(lpa-lpi)/nlp;// Step of the logarithmic Table
-    static const G4double edl=std::exp(dl);// Multiplication step of the logarithmic Table
-    //static const G4double toler=.001;      // Relative Tolarence defining "theSameMomentum"
-    static G4ThreadLocal G4double lastP=0.;              // The last momentum for which XS was calculated
-    static G4ThreadLocal G4int    lastH=0;               // The last projPDG for which XS was calculated
-    static G4ThreadLocal G4bool   lastF=true;            // The last nucleon for which XS was calculated
-    static G4ThreadLocal std::pair<G4double,G4double>* G4MT_lastR=0; if (!G4MT_lastR) G4MT_lastR = new std::pair<G4double,G4double>(0.,0.); std::pair<G4double,G4double> &lastR=*G4MT_lastR; // The last result
-    // Local Associative Data Base:
-    static G4ThreadLocal std::vector<G4int>     *vI_G4MT_TLS_ = 0 ; if (!vI_G4MT_TLS_) vI_G4MT_TLS_ = new  std::vector<G4int>      ;  std::vector<G4int>     &vI = *vI_G4MT_TLS_;      // Vector of index for which XS was calculated
-    static G4ThreadLocal std::vector<G4double>  *vM_G4MT_TLS_ = 0 ; if (!vM_G4MT_TLS_) vM_G4MT_TLS_ = new  std::vector<G4double>   ;  std::vector<G4double>  &vM = *vM_G4MT_TLS_;      // Vector of rel max ln(p) initialized in LogTable
-    static G4ThreadLocal std::vector<G4int>     *vK_G4MT_TLS_ = 0 ; if (!vK_G4MT_TLS_) vK_G4MT_TLS_ = new  std::vector<G4int>      ;  std::vector<G4int>     &vK = *vK_G4MT_TLS_;      // Vector of topBin number initialized in LogTable
-    // Last values of the Associative Data Base:
-    static G4ThreadLocal G4int     lastI=0;              // The Last index for which XS was calculated
-    static G4ThreadLocal G4double  lastM=0.;             // The Last rel max ln(p) initialized in LogTable
-    static G4ThreadLocal G4int     lastK=0;             // The Last topBin number initialized in LogTable
-    static G4ThreadLocal std::pair<G4double,G4double>* *lastX_G4MT_TLS_ = 0 ; if (!lastX_G4MT_TLS_) {lastX_G4MT_TLS_ = new  std::pair<G4double,G4double>*  ; *lastX_G4MT_TLS_=0 ; }  std::pair<G4double,G4double>* &lastX = *lastX_G4MT_TLS_; // The Last ETPointers to LogTable in heap
+{
     // LogTable is created only if necessary. The ratio R(s>8100 mb) = 0 for any nuclei
-    G4int nDB=vI.size();                   // A number of hadrons already initialized in AMDB
-    if(nDB && lastH==PDG && lastF==F && p>0. && p==lastP) return lastR;// VI don't use toler.
+    G4int nDB=vItot.size();                   // A number of hadrons already initialized in AMDB
+    if(nDB && lastHtot==PDG && lastFtot==F && p>0. && p==lastPtot) return lastRtot;// VI don't use toler.
     //  if(nDB && lastH==PDG && lastF==F && p>0. && std::fabs(p-lastP)/p<toler) return lastR;
-    lastH=PDG;
-    lastF=F;
+    lastHtot=PDG;
+    lastFtot=F;
     G4int ind=-1;                          // Prototipe of the index of the PDG/F combination
     // i=0: pp(nn), i=1: np(pn), i=2: pimp(pipn), i=3: pipp(pimn), i=4: Kmp(Kmn,K0n,K0p),
     // i=5: Kpp(Kpn,aK0n,aK0p), i=6: Hp(Hn), i=7: app(apn,ann,anp) 
@@ -638,12 +621,12 @@ std::pair<G4double,G4double> G4QuasiElRatios::FetchElTot(G4double p, G4int PDG,
         <<", while it is defined only for p,n,hyperons,anti-baryons,pi,K/antiK"<<G4endl;
         G4Exception("G4QuasiELRatio::FetchElTot:","22",FatalException,"QECrash");
     }
-    if(nDB && lastI==ind && p>0. && p==lastP) return lastR;  // VI do not use toler
+    if(nDB && lastItot==ind && p>0. && p==lastPtot) return lastRtot;  // VI do not use toler
     //  if(nDB && lastI==ind && p>0. && std::fabs(p-lastP)/p<toler) return lastR;
-    if(p<=mi || p>=ma) return CalcElTot(p,ind);   // @@ Slow calculation ! (Warning?)
+    if(p<=mip || p>=map) return CalcElTot(p,ind);   // @@ Slow calculation ! (Warning?)
     G4bool found=false;
     G4int i=-1;
-    if(nDB) for (i=0; i<nDB; i++) if(ind==vI[i])  // Sirch for this index in AMDB
+    if(nDB) for (i=0; i<nDB; i++) if(ind==vItot[i])  // Sirch for this index in AMDB
     {
         found=true;                                 // The index is found
         break;
@@ -651,75 +634,75 @@ std::pair<G4double,G4double> G4QuasiElRatios::FetchElTot(G4double p, G4int PDG,
     G4double lp=std::log(p);
     if(!nDB || !found)                            // Create new line in the AMDB
     {
-        lastX = new std::pair<G4double,G4double>[mlp]; // Create logarithmic Table for ElTot
-        lastI = ind;                                // Remember the initialized inex
-        lastK = static_cast<int>((lp-lpi)/dl)+1;    // MaxBin to be initialized in LogTaB
-        if(lastK>nlp)
+        lastXtot = new std::pair<G4double,G4double>[mlp]; // Create logarithmic Table for ElTot
+        lastItot = ind;                                // Remember the initialized inex
+        lastKtot = static_cast<int>((lp-lpi)/dlp)+1;    // MaxBin to be initialized in LogTaB
+        if(lastKtot>nlp)
         {
-            lastK=nlp;
-            lastM=lpa-lpi;
+            lastKtot=nlp;
+            lastMtot=lpa-lpi;
         }
-        else lastM = lastK*dl;               // Calculate max initialized ln(p)-lpi for LogTab
-        G4double pv=mi;
-        for(G4int j=0; j<=lastK; j++)        // Calculate LogTab values
+        else lastMtot = lastKtot*dlp;               // Calculate max initialized ln(p)-lpi for LogTab
+        G4double pv=mip;
+        for(G4int j=0; j<=lastKtot; j++)        // Calculate LogTab values
         {
-            lastX[j]=CalcElTot(pv,ind);
-            if(j!=lastK) pv*=edl;
+            lastXtot[j]=CalcElTot(pv,ind);
+            if(j!=lastKtot) pv*=edlp;
         }
         i++;                                 // Make a new record to AMDB and position on it
-        vI.push_back(lastI);
-        vM.push_back(lastM);
-        vK.push_back(lastK);
-        vX.push_back(lastX);
+        vItot.push_back(lastItot);
+        vMtot.push_back(lastMtot);
+        vKtot.push_back(lastKtot);
+        vX->push_back(lastXtot);
     }
     else                                   // The A value was found in AMDB
     {
-        lastI=vI[i];
-        lastM=vM[i];
-        lastK=vK[i];
-        lastX=vX[i];
-        G4int nextK=lastK+1;
-        G4double lpM=lastM+lpi;
-        if(lp>lpM && lastK<nlp)              // LogTab must be updated
+        lastItot=vItot[i];
+        lastMtot=vMtot[i];
+        lastKtot=vKtot[i];
+        lastXtot=(*vX)[i];
+        G4int nextK=lastKtot+1;
+        G4double lpM=lastMtot+lpi;
+        if(lp>lpM && lastKtot<nlp)              // LogTab must be updated
         {
-            lastK = static_cast<int>((lp-lpi)/dl)+1; // MaxBin to be initialized in LogTab
-            if(lastK>nlp)
+            lastKtot = static_cast<int>((lp-lpi)/dlp)+1; // MaxBin to be initialized in LogTab
+            if(lastKtot>nlp)
             {
-                lastK=nlp;
-                lastM=lpa-lpi;
+                lastKtot=nlp;
+                lastMtot=lpa-lpi;
             }
-            else lastM = lastK*dl;           // Calculate max initialized ln(p)-lpi for LogTab
+            else lastMtot = lastKtot*dlp;           // Calculate max initialized ln(p)-lpi for LogTab
             G4double pv=std::exp(lpM);       // momentum of the last calculated beam
-            for(G4int j=nextK; j<=lastK; j++)// Calculate LogTab values
+            for(G4int j=nextK; j<=lastKtot; j++)// Calculate LogTab values
             {
-                pv*=edl;
-                lastX[j]=CalcElTot(pv,ind);
+                pv*=edlp;
+                lastXtot[j]=CalcElTot(pv,ind);
             }
         } // End of LogTab update
-        if(lastK>=nextK)                   // The AMDB was apdated
+        if(lastKtot>=nextK)                   // The AMDB was apdated
         {
-            vM[i]=lastM;
-            vK[i]=lastK;
+            vMtot[i]=lastMtot;
+            vKtot[i]=lastKtot;
         }
     }
     // Now one can use tabeles to calculate the value
-    G4double dlp=lp-lpi;                       // Shifted log(p) value
-    G4int n=static_cast<int>(dlp/dl);          // Low edge number of the bin
-    G4double d=dlp-n*dl;                       // Log shift
-    G4double e=lastX[n].first;                 // E-Base
-    lastR.first=e+d*(lastX[n+1].first-e)/dl;   // E-Result
-    if(lastR.first<0.)  lastR.first = 0.;
-    G4double t=lastX[n].second;                // T-Base
-    lastR.second=t+d*(lastX[n+1].second-t)/dl; // T-Result
-    if(lastR.second<0.) lastR.second= 0.;
-    if(lastR.first>lastR.second) lastR.first = lastR.second;
-    return lastR;
+    G4double dlpp=lp-lpi;                       // Shifted log(p) value
+    G4int n=static_cast<int>(dlpp/dlp);          // Low edge number of the bin
+    G4double d=dlpp-n*dlp;                       // Log shift
+    G4double e=lastXtot[n].first;                 // E-Base
+    lastRtot.first=e+d*(lastXtot[n+1].first-e)/dlp;   // E-Result
+    if(lastRtot.first<0.)  lastRtot.first = 0.;
+    G4double t=lastXtot[n].second;                // T-Base
+    lastRtot.second=t+d*(lastXtot[n+1].second-t)/dlp; // T-Result
+    if(lastRtot.second<0.) lastRtot.second= 0.;
+    if(lastRtot.first>lastRtot.second) lastRtot.first = lastRtot.second;
+    return lastRtot;
 } // End of FetchElTot
 
 // (Mean Elastic and Mean Total) Cross-Sections (mb) for PDG+(Z,N) at P=p[GeV/c]
 std::pair<G4double,G4double> G4QuasiElRatios::GetElTot(G4double pIU, G4int hPDG,
                                                         G4int Z,       G4int N)
-{ if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ;
+{
     G4double pGeV=pIU/gigaelectronvolt;
     if(Z<1 && N<1)
     {
@@ -735,7 +718,7 @@ std::pair<G4double,G4double> G4QuasiElRatios::GetElTot(G4double pIU, G4int hPDG,
 // (Mean Elastic and Mean Total) Cross-Sections (mb) for PDG+(Z,N) at P=p[GeV/c]
 std::pair<G4double,G4double> G4QuasiElRatios::GetChExFactor(G4double pIU, G4int hPDG,
                                                              G4int Z, G4int N)
-{ if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ;
+{
     G4double pGeV=pIU/gigaelectronvolt;
     G4double resP=0.;
     G4double resN=0.;
@@ -778,7 +761,7 @@ std::pair<G4double,G4double> G4QuasiElRatios::GetChExFactor(G4double pIU, G4int
 // if(newN4M.e()==0.) - below threshold, XS=0, no scattering of the progectile happened
 std::pair<G4LorentzVector,G4LorentzVector> G4QuasiElRatios::Scatter(G4int NPDG,
                                                                      G4LorentzVector N4M, G4int pPDG, G4LorentzVector p4M)
-{ if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ;    
+{
     static const G4double mNeut= G4Neutron::Neutron()->GetPDGMass();
     static const G4double mProt= G4Proton::Proton()->GetPDGMass();
     static const G4double mDeut= G4Deuteron::Deuteron()->GetPDGMass();
@@ -892,7 +875,7 @@ std::pair<G4LorentzVector,G4LorentzVector> G4QuasiElRatios::Scatter(G4int NPDG,
 // User should himself change the charge (PDG) (e.g. pn->np, pi+n->pi0p, pi-p->pi0n etc.)
 std::pair<G4LorentzVector,G4LorentzVector> G4QuasiElRatios::ChExer(G4int NPDG,
                                                                     G4LorentzVector N4M, G4int pPDG, G4LorentzVector p4M)
-{ if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ;
+{
     static const G4double mNeut= G4Neutron::Neutron()->GetPDGMass();
     static const G4double mProt= G4Proton::Proton()->GetPDGMass();
     G4LorentzVector pr4M=p4M/megaelectronvolt;          // Convert 4-momenta in MeV(keep p4M)
@@ -1003,15 +986,16 @@ std::pair<G4LorentzVector,G4LorentzVector> G4QuasiElRatios::ChExer(G4int NPDG,
 
 // Calculate ChEx/El ratio (p is in independent units, (Z,N) is target, pPDG is projectile)
 G4double G4QuasiElRatios::ChExElCoef(G4double p, G4int Z, G4int N, G4int pPDG) 
-{ if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ;
+{
+    
     p/=MeV;                                // Converted from independent units
     G4double A=Z+N;
     if(A<1.5) return 0.;
-    G4double C=0.;
-    if     (pPDG==2212) C=N/(A+Z);
-    else if(pPDG==2112) C=Z/(A+N);
+    G4double Cex=0.;
+    if     (pPDG==2212) Cex=N/(A+Z);
+    else if(pPDG==2112) Cex=Z/(A+N);
     else G4cout<<"*Warning*G4CohChrgExchange::ChExElCoef: wrong PDG="<<pPDG<<G4endl;
-    C*=C;                         // Coherent processes squares the amplitude
+    Cex*=Cex;                         // Coherent processes squares the amplitude
     // @@ This is true only for nucleons: other projectiles must be treated differently
     G4double sp=std::sqrt(p);
     G4double p2=p*p;            
@@ -1020,13 +1004,13 @@ G4double G4QuasiElRatios::ChExElCoef(G4double p, G4int Z, G4int N, G4int pPDG)
     G4double T=(6.75+.14*dl1*dl1+13./p)/(1.+.14/p4)+.6/(p4+.00013);
     G4double U=(6.25+8.33e-5/p4/p)*(p*sp+.34)/p2/p; 
     G4double R=U/T;
-    return C*R*R;
+    return Cex*R*R;
 }
 
 // Decay of Hadron In2Particles f&s, f is in respect to the direction of HadronMomentumDir
 G4bool G4QuasiElRatios::RelDecayIn2(G4LorentzVector& theMomentum, G4LorentzVector& f4Mom, G4LorentzVector& s4Mom,
                                      G4LorentzVector& dir, G4double maxCost, G4double minCost)
-{ if (!vX_G4MT_TLS_) vX_G4MT_TLS_ = new std::vector<std::pair<G4double,G4double>*>  ; if (!vL_G4MT_TLS_) vL_G4MT_TLS_ = new std::vector<G4double*>  ; if (!vT_G4MT_TLS_) vT_G4MT_TLS_ = new std::vector<G4double*>  ;
+{
     G4double fM2 = f4Mom.m2();
     G4double fM  = std::sqrt(fM2);              // Mass of the 1st Hadron
     G4double sM2 = s4Mom.m2();
diff --git a/source/processes/hadronic/models/theo_high_energy/History b/source/processes/hadronic/models/theo_high_energy/History
index 855fa5325df..d7c786621d2 100644
--- a/source/processes/hadronic/models/theo_high_energy/History
+++ b/source/processes/hadronic/models/theo_high_energy/History
@@ -14,6 +14,15 @@ code and to keep track of all tags.
      * Please list in reverse chronological order (last date on top)
      ---------------------------------------------------------------
 
+17-Apr-2015, W.Pokorski                 (had-theo-HE-V10-00-08)
+- fixing memory leak
+
+17-Apr-2015, W.Pokorski
+- fixing stupid mistake in the previous tag
+
+17-Apr-2015, W.Pokorski
+- update for new quasi-elastic class structure
+
 6-Nov-2014, G.Folger                    (had-theo-HE-V10-00-07)
 - remove G4LMsdGenerator and G4LMsdChannel also in source.cmake
 
diff --git a/source/processes/hadronic/models/theo_high_energy/src/G4QuasiElasticChannel.cc b/source/processes/hadronic/models/theo_high_energy/src/G4QuasiElasticChannel.cc
index 968c708d5b2..771086d5f88 100644
--- a/source/processes/hadronic/models/theo_high_energy/src/G4QuasiElasticChannel.cc
+++ b/source/processes/hadronic/models/theo_high_energy/src/G4QuasiElasticChannel.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4QuasiElasticChannel.cc 81565 2014-06-03 08:42:52Z gcosmo $
+// $Id: G4QuasiElasticChannel.cc 90783 2015-06-09 14:55:15Z gcosmo $
 //
 
 // Author : Gunter Folger March 2007
@@ -60,12 +60,14 @@
 
 
 G4QuasiElasticChannel::G4QuasiElasticChannel()
-  : theQuasiElastic(G4QuasiElRatios::GetPointer()),
-    the3DNucleus(new G4Fancy3DNucleus) {}
+  : theQuasiElastic(new G4QuasiElRatios),
+    the3DNucleus(new G4Fancy3DNucleus) {
+}
 
 G4QuasiElasticChannel::~G4QuasiElasticChannel()
 {
   delete the3DNucleus;
+  delete theQuasiElastic;
 }
 
 G4double G4QuasiElasticChannel::GetFraction(G4Nucleus &theNucleus,
diff --git a/source/processes/transportation/History b/source/processes/transportation/History
index b0d1036fde0..b3231cecf1e 100644
--- a/source/processes/transportation/History
+++ b/source/processes/transportation/History
@@ -1,4 +1,4 @@
-$Id: History 89285 2015-03-31 08:14:25Z gcosmo $
+$Id: History 90840 2015-06-10 09:51:07Z gcosmo $
 -------------------------------------------------------------------
 
      =========================================================
@@ -17,7 +17,7 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
-January 10th 2015, M.Kelsey transport-V10-00-09
+January 10th 2015, M.Kelsey transport-V10-00-10
 ---------------------------
 - G4Transportation.cc, G4CoupledTransportation: In
   AlongStepGetPhysicalInteractionLength(), initialize restMass data member
@@ -25,6 +25,13 @@ January 10th 2015, M.Kelsey transport-V10-00-09
   Resolves inconsistent kinematics when dynamic mass is measurably different
   from "PDG" mass.
 
+December 17th 2014, J.Apostolakis
+--------------------------------- 
+- G4Transportation: Added ability to identify last step in volume for the case of
+   propagation in field.       
+   Requires use of tags in navigation (geomnav-V10-01-02) and track (track-V10-01-00) .
+   Addresses Bugzilla issue #1032.
+    
 November 21st 2014, J.Apostolakis transport-V10-00-06
 --------------------------------- (corrected version of transport-V10-00-04)
 - Added initialization of G4CoupledTransportation data members (fixes Coverity issue 15280)
diff --git a/source/processes/transportation/include/G4Transportation.hh b/source/processes/transportation/include/G4Transportation.hh
index 0a000b85bb4..b43b1e821b6 100644
--- a/source/processes/transportation/include/G4Transportation.hh
+++ b/source/processes/transportation/include/G4Transportation.hh
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4Transportation.hh 84478 2014-10-16 08:49:24Z gcosmo $
+// $Id: G4Transportation.hh 90840 2015-06-10 09:51:07Z gcosmo $
 //
 // 
 // ------------------------------------------------------------
@@ -92,6 +92,8 @@ class G4Transportation : public G4VProcess
        // Forces the PostStepDoIt action to be called, 
        // but does not limit the step.
 
+     G4bool FieldExertedForce() { return fFieldExertedForce; }
+   
      G4PropagatorInField* GetPropagatorInField();
      void SetPropagatorInField( G4PropagatorInField* pFieldPropagator);
        // Access/set the assistant class that Propagate in a Field.
@@ -166,17 +168,16 @@ class G4Transportation : public G4VProcess
        // The particle's state after this Step, Store for DoIt
 
      G4bool               fParticleIsLooping;
+     G4bool               fNewTrack;            // Flag from StartTracking 
+     G4bool               fFirstStepInVolume;
+     G4bool               fLastStepInVolume;     // Last step - almost same as next flag
+                                                 //             (temporary redundancy for checking) 
+     G4bool               fGeometryLimitedStep;  // Flag to determine whether a boundary was reached.
+
+     G4bool               fFieldExertedForce;   // During current step
 
      G4TouchableHandle    fCurrentTouchableHandle;
      
-     // G4bool         fFieldExists;
-       // Whether a magnetic field exists ...
-       // A data member for this is problematic: it is useful only if it
-       // can be initialised and updated -- and a scheme is not yet possible.
-
-     G4bool fGeometryLimitedStep;
-       // Flag to determine whether a boundary was reached.
-
      G4ThreeVector  fPreviousSftOrigin;
      G4double       fPreviousSafety; 
        // Remember last safety origin & value.
diff --git a/source/processes/transportation/src/G4CoupledTransportation.cc b/source/processes/transportation/src/G4CoupledTransportation.cc
index fa5e0078739..e2acabd6e24 100644
--- a/source/processes/transportation/src/G4CoupledTransportation.cc
+++ b/source/processes/transportation/src/G4CoupledTransportation.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4CoupledTransportation.cc 89285 2015-03-31 08:14:25Z gcosmo $
+// $Id: G4CoupledTransportation.cc 90840 2015-06-10 09:51:07Z gcosmo $
 //
 // ------------------------------------------------------------
 //  GEANT 4 class implementation
@@ -295,6 +295,8 @@ AlongStepGetPhysicalInteractionLength( const G4Track&  track,
         equationOfMotion->SetChargeMomentumMass( chargeState,
                                                  momentumMagnitude,
                                                  restMass );
+     }else{
+        G4cerr << " ERROR > Cannot find valid Equation of motion - Unable to pass Charge, Momentum and Mass "  << G4endl;
      }
   }
 
diff --git a/source/processes/transportation/src/G4Transportation.cc b/source/processes/transportation/src/G4Transportation.cc
index 838ca9335c7..05c04a88a33 100644
--- a/source/processes/transportation/src/G4Transportation.cc
+++ b/source/processes/transportation/src/G4Transportation.cc
@@ -39,7 +39,7 @@
 //   which will be used to update the post-step point's safety.
 //
 // =======================================================================
-// Modified:   
+// Modified:
 //   10 Jan  2015, M.Kelsey: Use G4DynamicParticle mass, NOT PDGMass
 //   28 Oct  2011, P.Gumpl./J.Ap: Detect gravity field, use magnetic moment 
 //   20 Nov  2008, J.Apostolakis: Push safety to helper - after ComputeSafety
@@ -73,6 +73,9 @@
 class G4VSensitiveDetector;
 
 G4bool G4Transportation::fUseMagneticMoment=false;
+
+// #define  G4DEBUG_TRANSPORT 1
+
 //////////////////////////////////////////////////////////////////////////
 //
 // Constructor
@@ -87,7 +90,11 @@ G4Transportation::G4Transportation( G4int verbosity )
     fEndGlobalTimeComputed(false), 
     fCandidateEndGlobalTime(0.0),
     fParticleIsLooping( false ),
+    fNewTrack( true ),
+    fFirstStepInVolume( true ),
+    fLastStepInVolume( false ), 
     fGeometryLimitedStep(true),
+    fFieldExertedForce( false ),
     fPreviousSftOrigin( 0.,0.,0. ),
     fPreviousSafety( 0.0 ),
     // fParticleChange(),
@@ -174,6 +181,13 @@ AlongStepGetPhysicalInteractionLength( const G4Track&  track,
   //
   *selection = CandidateForSelection ;
 
+  fFirstStepInVolume= fNewTrack || fLastStepInVolume;
+  // G4cout << "  Transport::AlongStep GPIL:  1st-step= "  << fFirstStepInVolume << "  newTrack= " << fNewTrack << " fLastStep-in-Vol= "  << fLastStepInVolume << G4endl;
+  fLastStepInVolume= false;
+  fNewTrack = false;
+
+  fParticleChange.ProposeFirstStepInVolume(fFirstStepInVolume);
+  
   // Get initial Energy/Momentum of the track
   //
   const G4DynamicParticle*    pParticle  = track.GetDynamicParticle() ;
@@ -246,6 +260,7 @@ AlongStepGetPhysicalInteractionLength( const G4Track&  track,
   }
   // G4cout << " G4Transport:  field exerts force= " << fieldExertsForce
   //        << "  fieldMgr= " << fieldMgr << G4endl;
+  fFieldExertedForce = fieldExertsForce; 
   
   if( !fieldExertsForce ) 
   {
@@ -342,16 +357,14 @@ AlongStepGetPhysicalInteractionLength( const G4Track&  track,
                                                           currentMinimumStep, 
                                                           currentSafety,
                                                           track.GetVolume() ) ;
-        fGeometryLimitedStep= lengthAlongCurve < currentMinimumStep; 
-        if( fGeometryLimitedStep )
-        {
-           geometryStepLength   = lengthAlongCurve ;
-        }
-        else
-        {
-           geometryStepLength   = currentMinimumStep ;
-        }
 
+        fGeometryLimitedStep= fFieldPropagator->IsLastStepInVolume();
+        // It is possible that step was reduced in PropagatorInField due to previous zero steps
+        // To cope with case that reduced step is taken in full, we must rely on PiF to obtain this
+        // value.
+
+        geometryStepLength = std::min( lengthAlongCurve, currentMinimumStep );
+        
         // Remember last safety origin & value.
         //
         fPreviousSftOrigin = startPosition ;
@@ -636,7 +649,8 @@ G4double G4Transportation::
 PostStepGetPhysicalInteractionLength( const G4Track&,
                                             G4double, // previousStepSize
                                             G4ForceCondition* pForceCond )
-{ 
+{
+  fFieldExertedForce = false; // Not known
   *pForceCond = Forced ; 
   return DBL_MAX ;  // was kInfinity ; but convention now is DBL_MAX
 }
@@ -682,22 +696,11 @@ G4VParticleChange* G4Transportation::PostStepDoIt( const G4Track& track,
     fParticleChange.SetTouchableHandle( fCurrentTouchableHandle ) ;
 
     // Update the Step flag which identifies the Last Step in a volume
-    isLastStep =  fLinearNavigator->ExitedMotherVolume() 
-                       | fLinearNavigator->EnteredDaughterVolume() ;
-
-#ifdef G4DEBUG_TRANSPORT
-    //  Checking first implementation of flagging Last Step in Volume
-    //
-    G4bool exiting =  fLinearNavigator->ExitedMotherVolume();
-    G4bool entering = fLinearNavigator->EnteredDaughterVolume();
-    if( ! (exiting || entering) )
-    { 
-      G4cout << " Transport> :  Proposed isLastStep= " << isLastStep 
-             << " Exiting "  << fLinearNavigator->ExitedMotherVolume()          
-             << " Entering " << fLinearNavigator->EnteredDaughterVolume() 
-             << G4endl;
-    } 
-#endif
+    if( !fFieldExertedForce )
+       isLastStep =  fLinearNavigator->ExitedMotherVolume() 
+                   | fLinearNavigator->EnteredDaughterVolume() ;
+    else
+       isLastStep = fFieldPropagator->IsLastStepInVolume(); 
   }
   else                 // fGeometryLimitedStep  is false
   {                    
@@ -714,15 +717,10 @@ G4VParticleChange* G4Transportation::PostStepDoIt( const G4Track& track,
     retCurrentTouchable = track.GetTouchableHandle() ;
 
     isLastStep= false;
-
-#ifdef G4DEBUG_TRANSPORT
-    //  Checking first implementation of flagging Last Step in Volume
-    //
-    G4cout << " Transport> Proposed isLastStep= " << isLastStep
-           << " Geometry did not limit step. " << G4endl;
-#endif
   }         // endif ( fGeometryLimitedStep ) 
-
+  fLastStepInVolume= isLastStep; 
+  
+  fParticleChange.ProposeFirstStepInVolume(fFirstStepInVolume);
   fParticleChange.ProposeLastStepInVolume(isLastStep);    
 
   const G4VPhysicalVolume* pNewVol = retCurrentTouchable->GetVolume() ;
@@ -776,7 +774,10 @@ void
 G4Transportation::StartTracking(G4Track* aTrack)
 {
   G4VProcess::StartTracking(aTrack);
-
+  fNewTrack= true;
+  fFirstStepInVolume= true;
+  fLastStepInVolume= false;
+  
   // The actions here are those that were taken in AlongStepGPIL
   //   when track.GetCurrentStepNumber()==1
 
@@ -811,6 +812,9 @@ G4Transportation::StartTracking(G4Track* aTrack)
   // Update the current touchable handle  (from the track's)
   //
   fCurrentTouchableHandle = aTrack->GetTouchableHandle();
+
+  // Inform field propagator of new track
+  fFieldPropagator->PrepareNewTrack();
 }
 
 #include "G4CoupledTransportation.hh"
diff --git a/source/track/History b/source/track/History
index e3d5c66f361..c9caff8b9a6 100644
--- a/source/track/History
+++ b/source/track/History
@@ -1,4 +1,4 @@
-$Id: History 89283 2015-03-31 08:09:48Z gcosmo $
+$Id: History 90842 2015-06-10 09:58:30Z gcosmo $
 -------------------------------------------------------------------
 
 
@@ -18,10 +18,13 @@ committal in the CVS repository !
      * Reverse chronological order (last date on top), please *
      ----------------------------------------------------------
 
-- January 15, 2015 J.Apostolakis (track-V10-00-06)
+- January 15, 2015 J.Apostolakis (track-V10-00-07)
 - Fixed FieldTrackUpdator to pass magnetic moment and PDG spin
   Is part of corrections needed for Bugzilla issue 1696.
      
+- December 16, 2014 J.Apostolakis
+- Improve G4ParticleChangeForTransport, by adding update for FirstStep in volume.
+     
 - August 19, 2014 K. Genser (track-V10-00-04)
 - Removed non cost requirement when using G4PhysicsModelCatalog getters and moved 
    implementations to icc file (requires global-V10-00-31)
diff --git a/source/track/src/G4ParticleChangeForTransport.cc b/source/track/src/G4ParticleChangeForTransport.cc
index ea32832b477..26385fd868a 100644
--- a/source/track/src/G4ParticleChangeForTransport.cc
+++ b/source/track/src/G4ParticleChangeForTransport.cc
@@ -24,7 +24,7 @@
 // ********************************************************************
 //
 //
-// $Id: G4ParticleChangeForTransport.cc 68795 2013-04-05 13:24:46Z gcosmo $
+// $Id: G4ParticleChangeForTransport.cc 90842 2015-06-10 09:58:30Z gcosmo $
 //
 // 
 // --------------------------------------------------------------
@@ -226,6 +226,11 @@ G4Step* G4ParticleChangeForTransport::UpdateStepForPostStep(G4Step* pStep)
     pPostStepPoint->SetMaterialCutsCouple( theMaterialCutsCoupleChange );
     pPostStepPoint->SetSensitiveDetector( theSensitiveDetectorChange );
   }
+  if( this->GetFirstStepInVolume() ){
+    pStep->SetFirstStepFlag();
+  }else{
+    pStep->ClearFirstStepFlag(); 
+  }  
   if( this->GetLastStepInVolume() ){
     pStep->SetLastStepFlag();
   }else{